Skip to content

Commit bfd68d5

Browse files
authored
Merge pull request #64 from Foxy/release/1.14.0
chore: release 1.14.0
2 parents de09d60 + e2374c6 commit bfd68d5

File tree

2 files changed

+13
-1
lines changed

2 files changed

+13
-1
lines changed

src/backend/Graph/user_invitations.d.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import type { Graph } from '../../core';
33
import type { UserInvitation } from './user_invitation';
44

55
export interface UserInvitations extends Graph {
6-
curie: 'fx:user_accesses';
6+
curie: 'fx:user_invitations';
77
links: CollectionGraphLinks<UserInvitations>;
88
props: CollectionGraphProps;
99
child: UserInvitation;

src/customer/Graph/customer_portal_settings.d.ts

+12
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,18 @@ export interface CustomerPortalSettings extends Graph {
6464
/** Public URL of your terms of service agreement. */
6565
url: string;
6666
};
67+
/** List of display preferences that comes from `cart_display_config` in the active `fx:template_config`. */
68+
cart_display_config: {
69+
show_product_weight: boolean;
70+
show_product_category: boolean;
71+
show_product_code: boolean;
72+
show_product_options: boolean;
73+
show_sub_frequency: boolean;
74+
show_sub_startdate: boolean;
75+
show_sub_nextdate: boolean;
76+
show_sub_enddate: boolean;
77+
hidden_product_options: string[];
78+
};
6779
/** Self-registration settings. Self-registration is disabled if this field is undefined. */
6880
sign_up?: {
6981
/** Client verification settings. */

0 commit comments

Comments
 (0)