File tree Expand file tree Collapse file tree 2 files changed +4
-0
lines changed
services/workflows-service/src Expand file tree Collapse file tree 2 files changed +4
-0
lines changed Original file line number Diff line number Diff line change @@ -13,6 +13,8 @@ const CustomerConfigSchema = z.object({
13
13
maxBusinessReports : z . number ( ) . default ( 10 ) . optional ( ) ,
14
14
withQualityControl : z . boolean ( ) . default ( true ) . optional ( ) ,
15
15
disableBusinessSyncToUnifiedApi : z . boolean ( ) . default ( false ) . nullish ( ) ,
16
+ showFullAccessPopup : z . boolean ( ) . default ( false ) . nullish ( ) ,
17
+ isDemoAccount : z . boolean ( ) . default ( false ) . nullish ( ) ,
16
18
} ) ;
17
19
18
20
export type TCustomerConfig = z . infer < typeof CustomerConfigSchema > ;
Original file line number Diff line number Diff line change @@ -64,6 +64,8 @@ export const ConfigSchema = z
64
64
isMerchantMonitoringEnabled : z . boolean ( ) . optional ( ) ,
65
65
showFullAccessPopup : z . boolean ( ) . optional ( ) ,
66
66
isDemoAccount : z . boolean ( ) . optional ( ) ,
67
+ withQualityControl : z . boolean ( ) . optional ( ) ,
68
+ disableBusinessSyncToUnifiedApi : z . boolean ( ) . optional ( ) ,
67
69
uiOptions : z
68
70
. object ( {
69
71
redirectUrls : z
You can’t perform that action at this time.
0 commit comments