File tree Expand file tree Collapse file tree 2 files changed +13
-1
lines changed
Expand file tree Collapse file tree 2 files changed +13
-1
lines changed Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ import type { Graph } from '../../core';
33import type { UserInvitation } from './user_invitation' ;
44
55export interface UserInvitations extends Graph {
6- curie : 'fx:user_accesses ' ;
6+ curie : 'fx:user_invitations ' ;
77 links : CollectionGraphLinks < UserInvitations > ;
88 props : CollectionGraphProps ;
99 child : UserInvitation ;
Original file line number Diff line number Diff 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. */
You can’t perform that action at this time.
0 commit comments