@deliverart/sdk-js-integration 0.0.3 → 0.0.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +12 -0
- package/dist/index.cjs +54 -6
- package/dist/index.d.cts +264 -2311
- package/dist/index.d.ts +264 -2311
- package/dist/index.js +47 -6
- package/package.json +1 -1
- package/src/cancellation-request-types.ts +12 -4
- package/src/schemas.ts +8 -1
- package/src/types.ts +57 -1
package/dist/index.d.cts
CHANGED
|
@@ -16176,25 +16176,7 @@ declare const integrationSchema: z.ZodDiscriminatedUnion<"service", [z.ZodObject
|
|
|
16176
16176
|
isValidMenu: z.ZodBoolean;
|
|
16177
16177
|
latestMenuSyncAt: z.ZodNullable<z.ZodEffects<z.ZodString, string, string>>;
|
|
16178
16178
|
latestMenuCheckAt: z.ZodNullable<z.ZodEffects<z.ZodString, string, string>>;
|
|
16179
|
-
currentMenuVersion: z.ZodNullable<z.
|
|
16180
|
-
id: z.ZodString;
|
|
16181
|
-
contentUrl: z.ZodString;
|
|
16182
|
-
filePath: z.ZodString;
|
|
16183
|
-
createdAt: z.ZodEffects<z.ZodString, string, string>;
|
|
16184
|
-
updatedAt: z.ZodEffects<z.ZodString, string, string>;
|
|
16185
|
-
}, "strip", z.ZodTypeAny, {
|
|
16186
|
-
id: string;
|
|
16187
|
-
createdAt: string;
|
|
16188
|
-
updatedAt: string;
|
|
16189
|
-
contentUrl: string;
|
|
16190
|
-
filePath: string;
|
|
16191
|
-
}, {
|
|
16192
|
-
id: string;
|
|
16193
|
-
createdAt: string;
|
|
16194
|
-
updatedAt: string;
|
|
16195
|
-
contentUrl: string;
|
|
16196
|
-
filePath: string;
|
|
16197
|
-
}>>;
|
|
16179
|
+
currentMenuVersion: z.ZodUnion<[z.ZodEffects<z.ZodNullable<z.ZodString>, string | null, string | null>, z.ZodEffects<z.ZodNullable<z.ZodString>, string | null, string | null>, z.ZodEffects<z.ZodNullable<z.ZodString>, string | null, string | null>]>;
|
|
16198
16180
|
salesMode: z.ZodEffects<z.ZodNullable<z.ZodString>, string | null, string | null>;
|
|
16199
16181
|
} & {
|
|
16200
16182
|
syncType: z.ZodEnum<["ALL", "DELIVERY", "TAKE_AWAY"]>;
|
|
@@ -16221,13 +16203,7 @@ declare const integrationSchema: z.ZodDiscriminatedUnion<"service", [z.ZodObject
|
|
|
16221
16203
|
isValidMenu: boolean;
|
|
16222
16204
|
latestMenuSyncAt: string | null;
|
|
16223
16205
|
latestMenuCheckAt: string | null;
|
|
16224
|
-
currentMenuVersion:
|
|
16225
|
-
id: string;
|
|
16226
|
-
createdAt: string;
|
|
16227
|
-
updatedAt: string;
|
|
16228
|
-
contentUrl: string;
|
|
16229
|
-
filePath: string;
|
|
16230
|
-
} | null;
|
|
16206
|
+
currentMenuVersion: string | null;
|
|
16231
16207
|
salesMode: string | null;
|
|
16232
16208
|
nextSyncMenuScheduledAt: string | null;
|
|
16233
16209
|
syncType: "ALL" | "DELIVERY" | "TAKE_AWAY";
|
|
@@ -16252,13 +16228,7 @@ declare const integrationSchema: z.ZodDiscriminatedUnion<"service", [z.ZodObject
|
|
|
16252
16228
|
isValidMenu: boolean;
|
|
16253
16229
|
latestMenuSyncAt: string | null;
|
|
16254
16230
|
latestMenuCheckAt: string | null;
|
|
16255
|
-
currentMenuVersion:
|
|
16256
|
-
id: string;
|
|
16257
|
-
createdAt: string;
|
|
16258
|
-
updatedAt: string;
|
|
16259
|
-
contentUrl: string;
|
|
16260
|
-
filePath: string;
|
|
16261
|
-
} | null;
|
|
16231
|
+
currentMenuVersion: string | null;
|
|
16262
16232
|
salesMode: string | null;
|
|
16263
16233
|
nextSyncMenuScheduledAt: string | null;
|
|
16264
16234
|
syncType: "ALL" | "DELIVERY" | "TAKE_AWAY";
|
|
@@ -16284,25 +16254,7 @@ declare const integrationSchema: z.ZodDiscriminatedUnion<"service", [z.ZodObject
|
|
|
16284
16254
|
isValidMenu: z.ZodBoolean;
|
|
16285
16255
|
latestMenuSyncAt: z.ZodNullable<z.ZodEffects<z.ZodString, string, string>>;
|
|
16286
16256
|
latestMenuCheckAt: z.ZodNullable<z.ZodEffects<z.ZodString, string, string>>;
|
|
16287
|
-
currentMenuVersion: z.ZodNullable<z.
|
|
16288
|
-
id: z.ZodString;
|
|
16289
|
-
contentUrl: z.ZodString;
|
|
16290
|
-
filePath: z.ZodString;
|
|
16291
|
-
createdAt: z.ZodEffects<z.ZodString, string, string>;
|
|
16292
|
-
updatedAt: z.ZodEffects<z.ZodString, string, string>;
|
|
16293
|
-
}, "strip", z.ZodTypeAny, {
|
|
16294
|
-
id: string;
|
|
16295
|
-
createdAt: string;
|
|
16296
|
-
updatedAt: string;
|
|
16297
|
-
contentUrl: string;
|
|
16298
|
-
filePath: string;
|
|
16299
|
-
}, {
|
|
16300
|
-
id: string;
|
|
16301
|
-
createdAt: string;
|
|
16302
|
-
updatedAt: string;
|
|
16303
|
-
contentUrl: string;
|
|
16304
|
-
filePath: string;
|
|
16305
|
-
}>>;
|
|
16257
|
+
currentMenuVersion: z.ZodUnion<[z.ZodEffects<z.ZodNullable<z.ZodString>, string | null, string | null>, z.ZodEffects<z.ZodNullable<z.ZodString>, string | null, string | null>, z.ZodEffects<z.ZodNullable<z.ZodString>, string | null, string | null>]>;
|
|
16306
16258
|
salesMode: z.ZodEffects<z.ZodNullable<z.ZodString>, string | null, string | null>;
|
|
16307
16259
|
} & {
|
|
16308
16260
|
brandId: z.ZodString;
|
|
@@ -16330,13 +16282,7 @@ declare const integrationSchema: z.ZodDiscriminatedUnion<"service", [z.ZodObject
|
|
|
16330
16282
|
isValidMenu: boolean;
|
|
16331
16283
|
latestMenuSyncAt: string | null;
|
|
16332
16284
|
latestMenuCheckAt: string | null;
|
|
16333
|
-
currentMenuVersion:
|
|
16334
|
-
id: string;
|
|
16335
|
-
createdAt: string;
|
|
16336
|
-
updatedAt: string;
|
|
16337
|
-
contentUrl: string;
|
|
16338
|
-
filePath: string;
|
|
16339
|
-
} | null;
|
|
16285
|
+
currentMenuVersion: string | null;
|
|
16340
16286
|
salesMode: string | null;
|
|
16341
16287
|
imageMenuUrl: string | null;
|
|
16342
16288
|
latestOpeningHoursSyncAt: string | null;
|
|
@@ -16361,13 +16307,7 @@ declare const integrationSchema: z.ZodDiscriminatedUnion<"service", [z.ZodObject
|
|
|
16361
16307
|
isValidMenu: boolean;
|
|
16362
16308
|
latestMenuSyncAt: string | null;
|
|
16363
16309
|
latestMenuCheckAt: string | null;
|
|
16364
|
-
currentMenuVersion:
|
|
16365
|
-
id: string;
|
|
16366
|
-
createdAt: string;
|
|
16367
|
-
updatedAt: string;
|
|
16368
|
-
contentUrl: string;
|
|
16369
|
-
filePath: string;
|
|
16370
|
-
} | null;
|
|
16310
|
+
currentMenuVersion: string | null;
|
|
16371
16311
|
salesMode: string | null;
|
|
16372
16312
|
imageMenuUrl: string | null;
|
|
16373
16313
|
latestOpeningHoursSyncAt: string | null;
|
|
@@ -16392,25 +16332,7 @@ declare const integrationSchema: z.ZodDiscriminatedUnion<"service", [z.ZodObject
|
|
|
16392
16332
|
isValidMenu: z.ZodBoolean;
|
|
16393
16333
|
latestMenuSyncAt: z.ZodNullable<z.ZodEffects<z.ZodString, string, string>>;
|
|
16394
16334
|
latestMenuCheckAt: z.ZodNullable<z.ZodEffects<z.ZodString, string, string>>;
|
|
16395
|
-
currentMenuVersion: z.ZodNullable<z.
|
|
16396
|
-
id: z.ZodString;
|
|
16397
|
-
contentUrl: z.ZodString;
|
|
16398
|
-
filePath: z.ZodString;
|
|
16399
|
-
createdAt: z.ZodEffects<z.ZodString, string, string>;
|
|
16400
|
-
updatedAt: z.ZodEffects<z.ZodString, string, string>;
|
|
16401
|
-
}, "strip", z.ZodTypeAny, {
|
|
16402
|
-
id: string;
|
|
16403
|
-
createdAt: string;
|
|
16404
|
-
updatedAt: string;
|
|
16405
|
-
contentUrl: string;
|
|
16406
|
-
filePath: string;
|
|
16407
|
-
}, {
|
|
16408
|
-
id: string;
|
|
16409
|
-
createdAt: string;
|
|
16410
|
-
updatedAt: string;
|
|
16411
|
-
contentUrl: string;
|
|
16412
|
-
filePath: string;
|
|
16413
|
-
}>>;
|
|
16335
|
+
currentMenuVersion: z.ZodUnion<[z.ZodEffects<z.ZodNullable<z.ZodString>, string | null, string | null>, z.ZodEffects<z.ZodNullable<z.ZodString>, string | null, string | null>, z.ZodEffects<z.ZodNullable<z.ZodString>, string | null, string | null>]>;
|
|
16414
16336
|
salesMode: z.ZodEffects<z.ZodNullable<z.ZodString>, string | null, string | null>;
|
|
16415
16337
|
} & {
|
|
16416
16338
|
storeId: z.ZodString;
|
|
@@ -16435,13 +16357,7 @@ declare const integrationSchema: z.ZodDiscriminatedUnion<"service", [z.ZodObject
|
|
|
16435
16357
|
isValidMenu: boolean;
|
|
16436
16358
|
latestMenuSyncAt: string | null;
|
|
16437
16359
|
latestMenuCheckAt: string | null;
|
|
16438
|
-
currentMenuVersion:
|
|
16439
|
-
id: string;
|
|
16440
|
-
createdAt: string;
|
|
16441
|
-
updatedAt: string;
|
|
16442
|
-
contentUrl: string;
|
|
16443
|
-
filePath: string;
|
|
16444
|
-
} | null;
|
|
16360
|
+
currentMenuVersion: string | null;
|
|
16445
16361
|
salesMode: string | null;
|
|
16446
16362
|
pendingMenuChanges: boolean;
|
|
16447
16363
|
tagsForImport?: string[] | undefined;
|
|
@@ -16463,13 +16379,7 @@ declare const integrationSchema: z.ZodDiscriminatedUnion<"service", [z.ZodObject
|
|
|
16463
16379
|
isValidMenu: boolean;
|
|
16464
16380
|
latestMenuSyncAt: string | null;
|
|
16465
16381
|
latestMenuCheckAt: string | null;
|
|
16466
|
-
currentMenuVersion:
|
|
16467
|
-
id: string;
|
|
16468
|
-
createdAt: string;
|
|
16469
|
-
updatedAt: string;
|
|
16470
|
-
contentUrl: string;
|
|
16471
|
-
filePath: string;
|
|
16472
|
-
} | null;
|
|
16382
|
+
currentMenuVersion: string | null;
|
|
16473
16383
|
salesMode: string | null;
|
|
16474
16384
|
pendingMenuChanges: boolean;
|
|
16475
16385
|
tagsForImport?: string[] | undefined;
|
|
@@ -16549,25 +16459,7 @@ declare const integrationDetailsSchema: z.ZodDiscriminatedUnion<"service", [z.Zo
|
|
|
16549
16459
|
isValidMenu: z.ZodBoolean;
|
|
16550
16460
|
latestMenuSyncAt: z.ZodNullable<z.ZodEffects<z.ZodString, string, string>>;
|
|
16551
16461
|
latestMenuCheckAt: z.ZodNullable<z.ZodEffects<z.ZodString, string, string>>;
|
|
16552
|
-
currentMenuVersion: z.ZodNullable<z.
|
|
16553
|
-
id: z.ZodString;
|
|
16554
|
-
contentUrl: z.ZodString;
|
|
16555
|
-
filePath: z.ZodString;
|
|
16556
|
-
createdAt: z.ZodEffects<z.ZodString, string, string>;
|
|
16557
|
-
updatedAt: z.ZodEffects<z.ZodString, string, string>;
|
|
16558
|
-
}, "strip", z.ZodTypeAny, {
|
|
16559
|
-
id: string;
|
|
16560
|
-
createdAt: string;
|
|
16561
|
-
updatedAt: string;
|
|
16562
|
-
contentUrl: string;
|
|
16563
|
-
filePath: string;
|
|
16564
|
-
}, {
|
|
16565
|
-
id: string;
|
|
16566
|
-
createdAt: string;
|
|
16567
|
-
updatedAt: string;
|
|
16568
|
-
contentUrl: string;
|
|
16569
|
-
filePath: string;
|
|
16570
|
-
}>>;
|
|
16462
|
+
currentMenuVersion: z.ZodUnion<[z.ZodEffects<z.ZodNullable<z.ZodString>, string | null, string | null>, z.ZodEffects<z.ZodNullable<z.ZodString>, string | null, string | null>, z.ZodEffects<z.ZodNullable<z.ZodString>, string | null, string | null>]>;
|
|
16571
16463
|
salesMode: z.ZodEffects<z.ZodNullable<z.ZodString>, string | null, string | null>;
|
|
16572
16464
|
} & {
|
|
16573
16465
|
syncType: z.ZodEnum<["ALL", "DELIVERY", "TAKE_AWAY"]>;
|
|
@@ -16597,13 +16489,7 @@ declare const integrationDetailsSchema: z.ZodDiscriminatedUnion<"service", [z.Zo
|
|
|
16597
16489
|
isValidMenu: boolean;
|
|
16598
16490
|
latestMenuSyncAt: string | null;
|
|
16599
16491
|
latestMenuCheckAt: string | null;
|
|
16600
|
-
currentMenuVersion:
|
|
16601
|
-
id: string;
|
|
16602
|
-
createdAt: string;
|
|
16603
|
-
updatedAt: string;
|
|
16604
|
-
contentUrl: string;
|
|
16605
|
-
filePath: string;
|
|
16606
|
-
} | null;
|
|
16492
|
+
currentMenuVersion: string | null;
|
|
16607
16493
|
salesMode: string | null;
|
|
16608
16494
|
nextSyncMenuScheduledAt: string | null;
|
|
16609
16495
|
syncType: "ALL" | "DELIVERY" | "TAKE_AWAY";
|
|
@@ -16629,13 +16515,7 @@ declare const integrationDetailsSchema: z.ZodDiscriminatedUnion<"service", [z.Zo
|
|
|
16629
16515
|
isValidMenu: boolean;
|
|
16630
16516
|
latestMenuSyncAt: string | null;
|
|
16631
16517
|
latestMenuCheckAt: string | null;
|
|
16632
|
-
currentMenuVersion:
|
|
16633
|
-
id: string;
|
|
16634
|
-
createdAt: string;
|
|
16635
|
-
updatedAt: string;
|
|
16636
|
-
contentUrl: string;
|
|
16637
|
-
filePath: string;
|
|
16638
|
-
} | null;
|
|
16518
|
+
currentMenuVersion: string | null;
|
|
16639
16519
|
salesMode: string | null;
|
|
16640
16520
|
nextSyncMenuScheduledAt: string | null;
|
|
16641
16521
|
syncType: "ALL" | "DELIVERY" | "TAKE_AWAY";
|
|
@@ -16661,25 +16541,7 @@ declare const integrationDetailsSchema: z.ZodDiscriminatedUnion<"service", [z.Zo
|
|
|
16661
16541
|
isValidMenu: z.ZodBoolean;
|
|
16662
16542
|
latestMenuSyncAt: z.ZodNullable<z.ZodEffects<z.ZodString, string, string>>;
|
|
16663
16543
|
latestMenuCheckAt: z.ZodNullable<z.ZodEffects<z.ZodString, string, string>>;
|
|
16664
|
-
currentMenuVersion: z.ZodNullable<z.
|
|
16665
|
-
id: z.ZodString;
|
|
16666
|
-
contentUrl: z.ZodString;
|
|
16667
|
-
filePath: z.ZodString;
|
|
16668
|
-
createdAt: z.ZodEffects<z.ZodString, string, string>;
|
|
16669
|
-
updatedAt: z.ZodEffects<z.ZodString, string, string>;
|
|
16670
|
-
}, "strip", z.ZodTypeAny, {
|
|
16671
|
-
id: string;
|
|
16672
|
-
createdAt: string;
|
|
16673
|
-
updatedAt: string;
|
|
16674
|
-
contentUrl: string;
|
|
16675
|
-
filePath: string;
|
|
16676
|
-
}, {
|
|
16677
|
-
id: string;
|
|
16678
|
-
createdAt: string;
|
|
16679
|
-
updatedAt: string;
|
|
16680
|
-
contentUrl: string;
|
|
16681
|
-
filePath: string;
|
|
16682
|
-
}>>;
|
|
16544
|
+
currentMenuVersion: z.ZodUnion<[z.ZodEffects<z.ZodNullable<z.ZodString>, string | null, string | null>, z.ZodEffects<z.ZodNullable<z.ZodString>, string | null, string | null>, z.ZodEffects<z.ZodNullable<z.ZodString>, string | null, string | null>]>;
|
|
16683
16545
|
salesMode: z.ZodEffects<z.ZodNullable<z.ZodString>, string | null, string | null>;
|
|
16684
16546
|
} & {
|
|
16685
16547
|
brandId: z.ZodString;
|
|
@@ -16710,13 +16572,7 @@ declare const integrationDetailsSchema: z.ZodDiscriminatedUnion<"service", [z.Zo
|
|
|
16710
16572
|
isValidMenu: boolean;
|
|
16711
16573
|
latestMenuSyncAt: string | null;
|
|
16712
16574
|
latestMenuCheckAt: string | null;
|
|
16713
|
-
currentMenuVersion:
|
|
16714
|
-
id: string;
|
|
16715
|
-
createdAt: string;
|
|
16716
|
-
updatedAt: string;
|
|
16717
|
-
contentUrl: string;
|
|
16718
|
-
filePath: string;
|
|
16719
|
-
} | null;
|
|
16575
|
+
currentMenuVersion: string | null;
|
|
16720
16576
|
salesMode: string | null;
|
|
16721
16577
|
imageMenuUrl: string | null;
|
|
16722
16578
|
latestOpeningHoursSyncAt: string | null;
|
|
@@ -16742,13 +16598,7 @@ declare const integrationDetailsSchema: z.ZodDiscriminatedUnion<"service", [z.Zo
|
|
|
16742
16598
|
isValidMenu: boolean;
|
|
16743
16599
|
latestMenuSyncAt: string | null;
|
|
16744
16600
|
latestMenuCheckAt: string | null;
|
|
16745
|
-
currentMenuVersion:
|
|
16746
|
-
id: string;
|
|
16747
|
-
createdAt: string;
|
|
16748
|
-
updatedAt: string;
|
|
16749
|
-
contentUrl: string;
|
|
16750
|
-
filePath: string;
|
|
16751
|
-
} | null;
|
|
16601
|
+
currentMenuVersion: string | null;
|
|
16752
16602
|
salesMode: string | null;
|
|
16753
16603
|
imageMenuUrl: string | null;
|
|
16754
16604
|
latestOpeningHoursSyncAt: string | null;
|
|
@@ -16773,25 +16623,7 @@ declare const integrationDetailsSchema: z.ZodDiscriminatedUnion<"service", [z.Zo
|
|
|
16773
16623
|
isValidMenu: z.ZodBoolean;
|
|
16774
16624
|
latestMenuSyncAt: z.ZodNullable<z.ZodEffects<z.ZodString, string, string>>;
|
|
16775
16625
|
latestMenuCheckAt: z.ZodNullable<z.ZodEffects<z.ZodString, string, string>>;
|
|
16776
|
-
currentMenuVersion: z.ZodNullable<z.
|
|
16777
|
-
id: z.ZodString;
|
|
16778
|
-
contentUrl: z.ZodString;
|
|
16779
|
-
filePath: z.ZodString;
|
|
16780
|
-
createdAt: z.ZodEffects<z.ZodString, string, string>;
|
|
16781
|
-
updatedAt: z.ZodEffects<z.ZodString, string, string>;
|
|
16782
|
-
}, "strip", z.ZodTypeAny, {
|
|
16783
|
-
id: string;
|
|
16784
|
-
createdAt: string;
|
|
16785
|
-
updatedAt: string;
|
|
16786
|
-
contentUrl: string;
|
|
16787
|
-
filePath: string;
|
|
16788
|
-
}, {
|
|
16789
|
-
id: string;
|
|
16790
|
-
createdAt: string;
|
|
16791
|
-
updatedAt: string;
|
|
16792
|
-
contentUrl: string;
|
|
16793
|
-
filePath: string;
|
|
16794
|
-
}>>;
|
|
16626
|
+
currentMenuVersion: z.ZodUnion<[z.ZodEffects<z.ZodNullable<z.ZodString>, string | null, string | null>, z.ZodEffects<z.ZodNullable<z.ZodString>, string | null, string | null>, z.ZodEffects<z.ZodNullable<z.ZodString>, string | null, string | null>]>;
|
|
16795
16627
|
salesMode: z.ZodEffects<z.ZodNullable<z.ZodString>, string | null, string | null>;
|
|
16796
16628
|
} & {
|
|
16797
16629
|
storeId: z.ZodString;
|
|
@@ -16819,13 +16651,7 @@ declare const integrationDetailsSchema: z.ZodDiscriminatedUnion<"service", [z.Zo
|
|
|
16819
16651
|
isValidMenu: boolean;
|
|
16820
16652
|
latestMenuSyncAt: string | null;
|
|
16821
16653
|
latestMenuCheckAt: string | null;
|
|
16822
|
-
currentMenuVersion:
|
|
16823
|
-
id: string;
|
|
16824
|
-
createdAt: string;
|
|
16825
|
-
updatedAt: string;
|
|
16826
|
-
contentUrl: string;
|
|
16827
|
-
filePath: string;
|
|
16828
|
-
} | null;
|
|
16654
|
+
currentMenuVersion: string | null;
|
|
16829
16655
|
salesMode: string | null;
|
|
16830
16656
|
pendingMenuChanges: boolean;
|
|
16831
16657
|
tagsForImport?: string[] | undefined;
|
|
@@ -16848,13 +16674,7 @@ declare const integrationDetailsSchema: z.ZodDiscriminatedUnion<"service", [z.Zo
|
|
|
16848
16674
|
isValidMenu: boolean;
|
|
16849
16675
|
latestMenuSyncAt: string | null;
|
|
16850
16676
|
latestMenuCheckAt: string | null;
|
|
16851
|
-
currentMenuVersion:
|
|
16852
|
-
id: string;
|
|
16853
|
-
createdAt: string;
|
|
16854
|
-
updatedAt: string;
|
|
16855
|
-
contentUrl: string;
|
|
16856
|
-
filePath: string;
|
|
16857
|
-
} | null;
|
|
16677
|
+
currentMenuVersion: string | null;
|
|
16858
16678
|
salesMode: string | null;
|
|
16859
16679
|
pendingMenuChanges: boolean;
|
|
16860
16680
|
tagsForImport?: string[] | undefined;
|
|
@@ -16940,25 +16760,7 @@ declare const getIntegrationDetailsResponseSchema: z.ZodDiscriminatedUnion<"serv
|
|
|
16940
16760
|
isValidMenu: z.ZodBoolean;
|
|
16941
16761
|
latestMenuSyncAt: z.ZodNullable<z.ZodEffects<z.ZodString, string, string>>;
|
|
16942
16762
|
latestMenuCheckAt: z.ZodNullable<z.ZodEffects<z.ZodString, string, string>>;
|
|
16943
|
-
currentMenuVersion: z.ZodNullable<z.
|
|
16944
|
-
id: z.ZodString;
|
|
16945
|
-
contentUrl: z.ZodString;
|
|
16946
|
-
filePath: z.ZodString;
|
|
16947
|
-
createdAt: z.ZodEffects<z.ZodString, string, string>;
|
|
16948
|
-
updatedAt: z.ZodEffects<z.ZodString, string, string>;
|
|
16949
|
-
}, "strip", z.ZodTypeAny, {
|
|
16950
|
-
id: string;
|
|
16951
|
-
createdAt: string;
|
|
16952
|
-
updatedAt: string;
|
|
16953
|
-
contentUrl: string;
|
|
16954
|
-
filePath: string;
|
|
16955
|
-
}, {
|
|
16956
|
-
id: string;
|
|
16957
|
-
createdAt: string;
|
|
16958
|
-
updatedAt: string;
|
|
16959
|
-
contentUrl: string;
|
|
16960
|
-
filePath: string;
|
|
16961
|
-
}>>;
|
|
16763
|
+
currentMenuVersion: z.ZodUnion<[z.ZodEffects<z.ZodNullable<z.ZodString>, string | null, string | null>, z.ZodEffects<z.ZodNullable<z.ZodString>, string | null, string | null>, z.ZodEffects<z.ZodNullable<z.ZodString>, string | null, string | null>]>;
|
|
16962
16764
|
salesMode: z.ZodEffects<z.ZodNullable<z.ZodString>, string | null, string | null>;
|
|
16963
16765
|
} & {
|
|
16964
16766
|
syncType: z.ZodEnum<["ALL", "DELIVERY", "TAKE_AWAY"]>;
|
|
@@ -16988,13 +16790,7 @@ declare const getIntegrationDetailsResponseSchema: z.ZodDiscriminatedUnion<"serv
|
|
|
16988
16790
|
isValidMenu: boolean;
|
|
16989
16791
|
latestMenuSyncAt: string | null;
|
|
16990
16792
|
latestMenuCheckAt: string | null;
|
|
16991
|
-
currentMenuVersion:
|
|
16992
|
-
id: string;
|
|
16993
|
-
createdAt: string;
|
|
16994
|
-
updatedAt: string;
|
|
16995
|
-
contentUrl: string;
|
|
16996
|
-
filePath: string;
|
|
16997
|
-
} | null;
|
|
16793
|
+
currentMenuVersion: string | null;
|
|
16998
16794
|
salesMode: string | null;
|
|
16999
16795
|
nextSyncMenuScheduledAt: string | null;
|
|
17000
16796
|
syncType: "ALL" | "DELIVERY" | "TAKE_AWAY";
|
|
@@ -17020,13 +16816,7 @@ declare const getIntegrationDetailsResponseSchema: z.ZodDiscriminatedUnion<"serv
|
|
|
17020
16816
|
isValidMenu: boolean;
|
|
17021
16817
|
latestMenuSyncAt: string | null;
|
|
17022
16818
|
latestMenuCheckAt: string | null;
|
|
17023
|
-
currentMenuVersion:
|
|
17024
|
-
id: string;
|
|
17025
|
-
createdAt: string;
|
|
17026
|
-
updatedAt: string;
|
|
17027
|
-
contentUrl: string;
|
|
17028
|
-
filePath: string;
|
|
17029
|
-
} | null;
|
|
16819
|
+
currentMenuVersion: string | null;
|
|
17030
16820
|
salesMode: string | null;
|
|
17031
16821
|
nextSyncMenuScheduledAt: string | null;
|
|
17032
16822
|
syncType: "ALL" | "DELIVERY" | "TAKE_AWAY";
|
|
@@ -17052,25 +16842,7 @@ declare const getIntegrationDetailsResponseSchema: z.ZodDiscriminatedUnion<"serv
|
|
|
17052
16842
|
isValidMenu: z.ZodBoolean;
|
|
17053
16843
|
latestMenuSyncAt: z.ZodNullable<z.ZodEffects<z.ZodString, string, string>>;
|
|
17054
16844
|
latestMenuCheckAt: z.ZodNullable<z.ZodEffects<z.ZodString, string, string>>;
|
|
17055
|
-
currentMenuVersion: z.ZodNullable<z.
|
|
17056
|
-
id: z.ZodString;
|
|
17057
|
-
contentUrl: z.ZodString;
|
|
17058
|
-
filePath: z.ZodString;
|
|
17059
|
-
createdAt: z.ZodEffects<z.ZodString, string, string>;
|
|
17060
|
-
updatedAt: z.ZodEffects<z.ZodString, string, string>;
|
|
17061
|
-
}, "strip", z.ZodTypeAny, {
|
|
17062
|
-
id: string;
|
|
17063
|
-
createdAt: string;
|
|
17064
|
-
updatedAt: string;
|
|
17065
|
-
contentUrl: string;
|
|
17066
|
-
filePath: string;
|
|
17067
|
-
}, {
|
|
17068
|
-
id: string;
|
|
17069
|
-
createdAt: string;
|
|
17070
|
-
updatedAt: string;
|
|
17071
|
-
contentUrl: string;
|
|
17072
|
-
filePath: string;
|
|
17073
|
-
}>>;
|
|
16845
|
+
currentMenuVersion: z.ZodUnion<[z.ZodEffects<z.ZodNullable<z.ZodString>, string | null, string | null>, z.ZodEffects<z.ZodNullable<z.ZodString>, string | null, string | null>, z.ZodEffects<z.ZodNullable<z.ZodString>, string | null, string | null>]>;
|
|
17074
16846
|
salesMode: z.ZodEffects<z.ZodNullable<z.ZodString>, string | null, string | null>;
|
|
17075
16847
|
} & {
|
|
17076
16848
|
brandId: z.ZodString;
|
|
@@ -17101,13 +16873,7 @@ declare const getIntegrationDetailsResponseSchema: z.ZodDiscriminatedUnion<"serv
|
|
|
17101
16873
|
isValidMenu: boolean;
|
|
17102
16874
|
latestMenuSyncAt: string | null;
|
|
17103
16875
|
latestMenuCheckAt: string | null;
|
|
17104
|
-
currentMenuVersion:
|
|
17105
|
-
id: string;
|
|
17106
|
-
createdAt: string;
|
|
17107
|
-
updatedAt: string;
|
|
17108
|
-
contentUrl: string;
|
|
17109
|
-
filePath: string;
|
|
17110
|
-
} | null;
|
|
16876
|
+
currentMenuVersion: string | null;
|
|
17111
16877
|
salesMode: string | null;
|
|
17112
16878
|
imageMenuUrl: string | null;
|
|
17113
16879
|
latestOpeningHoursSyncAt: string | null;
|
|
@@ -17133,13 +16899,7 @@ declare const getIntegrationDetailsResponseSchema: z.ZodDiscriminatedUnion<"serv
|
|
|
17133
16899
|
isValidMenu: boolean;
|
|
17134
16900
|
latestMenuSyncAt: string | null;
|
|
17135
16901
|
latestMenuCheckAt: string | null;
|
|
17136
|
-
currentMenuVersion:
|
|
17137
|
-
id: string;
|
|
17138
|
-
createdAt: string;
|
|
17139
|
-
updatedAt: string;
|
|
17140
|
-
contentUrl: string;
|
|
17141
|
-
filePath: string;
|
|
17142
|
-
} | null;
|
|
16902
|
+
currentMenuVersion: string | null;
|
|
17143
16903
|
salesMode: string | null;
|
|
17144
16904
|
imageMenuUrl: string | null;
|
|
17145
16905
|
latestOpeningHoursSyncAt: string | null;
|
|
@@ -17164,25 +16924,7 @@ declare const getIntegrationDetailsResponseSchema: z.ZodDiscriminatedUnion<"serv
|
|
|
17164
16924
|
isValidMenu: z.ZodBoolean;
|
|
17165
16925
|
latestMenuSyncAt: z.ZodNullable<z.ZodEffects<z.ZodString, string, string>>;
|
|
17166
16926
|
latestMenuCheckAt: z.ZodNullable<z.ZodEffects<z.ZodString, string, string>>;
|
|
17167
|
-
currentMenuVersion: z.ZodNullable<z.
|
|
17168
|
-
id: z.ZodString;
|
|
17169
|
-
contentUrl: z.ZodString;
|
|
17170
|
-
filePath: z.ZodString;
|
|
17171
|
-
createdAt: z.ZodEffects<z.ZodString, string, string>;
|
|
17172
|
-
updatedAt: z.ZodEffects<z.ZodString, string, string>;
|
|
17173
|
-
}, "strip", z.ZodTypeAny, {
|
|
17174
|
-
id: string;
|
|
17175
|
-
createdAt: string;
|
|
17176
|
-
updatedAt: string;
|
|
17177
|
-
contentUrl: string;
|
|
17178
|
-
filePath: string;
|
|
17179
|
-
}, {
|
|
17180
|
-
id: string;
|
|
17181
|
-
createdAt: string;
|
|
17182
|
-
updatedAt: string;
|
|
17183
|
-
contentUrl: string;
|
|
17184
|
-
filePath: string;
|
|
17185
|
-
}>>;
|
|
16927
|
+
currentMenuVersion: z.ZodUnion<[z.ZodEffects<z.ZodNullable<z.ZodString>, string | null, string | null>, z.ZodEffects<z.ZodNullable<z.ZodString>, string | null, string | null>, z.ZodEffects<z.ZodNullable<z.ZodString>, string | null, string | null>]>;
|
|
17186
16928
|
salesMode: z.ZodEffects<z.ZodNullable<z.ZodString>, string | null, string | null>;
|
|
17187
16929
|
} & {
|
|
17188
16930
|
storeId: z.ZodString;
|
|
@@ -17210,13 +16952,7 @@ declare const getIntegrationDetailsResponseSchema: z.ZodDiscriminatedUnion<"serv
|
|
|
17210
16952
|
isValidMenu: boolean;
|
|
17211
16953
|
latestMenuSyncAt: string | null;
|
|
17212
16954
|
latestMenuCheckAt: string | null;
|
|
17213
|
-
currentMenuVersion:
|
|
17214
|
-
id: string;
|
|
17215
|
-
createdAt: string;
|
|
17216
|
-
updatedAt: string;
|
|
17217
|
-
contentUrl: string;
|
|
17218
|
-
filePath: string;
|
|
17219
|
-
} | null;
|
|
16955
|
+
currentMenuVersion: string | null;
|
|
17220
16956
|
salesMode: string | null;
|
|
17221
16957
|
pendingMenuChanges: boolean;
|
|
17222
16958
|
tagsForImport?: string[] | undefined;
|
|
@@ -17239,13 +16975,7 @@ declare const getIntegrationDetailsResponseSchema: z.ZodDiscriminatedUnion<"serv
|
|
|
17239
16975
|
isValidMenu: boolean;
|
|
17240
16976
|
latestMenuSyncAt: string | null;
|
|
17241
16977
|
latestMenuCheckAt: string | null;
|
|
17242
|
-
currentMenuVersion:
|
|
17243
|
-
id: string;
|
|
17244
|
-
createdAt: string;
|
|
17245
|
-
updatedAt: string;
|
|
17246
|
-
contentUrl: string;
|
|
17247
|
-
filePath: string;
|
|
17248
|
-
} | null;
|
|
16978
|
+
currentMenuVersion: string | null;
|
|
17249
16979
|
salesMode: string | null;
|
|
17250
16980
|
pendingMenuChanges: boolean;
|
|
17251
16981
|
tagsForImport?: string[] | undefined;
|
|
@@ -17334,25 +17064,7 @@ declare class GetIntegrationDetails extends AbstractApiRequest<void, GetIntegrat
|
|
|
17334
17064
|
isValidMenu: z.ZodBoolean;
|
|
17335
17065
|
latestMenuSyncAt: z.ZodNullable<z.ZodEffects<z.ZodString, string, string>>;
|
|
17336
17066
|
latestMenuCheckAt: z.ZodNullable<z.ZodEffects<z.ZodString, string, string>>;
|
|
17337
|
-
currentMenuVersion: z.ZodNullable<z.
|
|
17338
|
-
id: z.ZodString;
|
|
17339
|
-
contentUrl: z.ZodString;
|
|
17340
|
-
filePath: z.ZodString;
|
|
17341
|
-
createdAt: z.ZodEffects<z.ZodString, string, string>;
|
|
17342
|
-
updatedAt: z.ZodEffects<z.ZodString, string, string>;
|
|
17343
|
-
}, "strip", z.ZodTypeAny, {
|
|
17344
|
-
id: string;
|
|
17345
|
-
createdAt: string;
|
|
17346
|
-
updatedAt: string;
|
|
17347
|
-
contentUrl: string;
|
|
17348
|
-
filePath: string;
|
|
17349
|
-
}, {
|
|
17350
|
-
id: string;
|
|
17351
|
-
createdAt: string;
|
|
17352
|
-
updatedAt: string;
|
|
17353
|
-
contentUrl: string;
|
|
17354
|
-
filePath: string;
|
|
17355
|
-
}>>;
|
|
17067
|
+
currentMenuVersion: z.ZodUnion<[z.ZodEffects<z.ZodNullable<z.ZodString>, string | null, string | null>, z.ZodEffects<z.ZodNullable<z.ZodString>, string | null, string | null>, z.ZodEffects<z.ZodNullable<z.ZodString>, string | null, string | null>]>;
|
|
17356
17068
|
salesMode: z.ZodEffects<z.ZodNullable<z.ZodString>, string | null, string | null>;
|
|
17357
17069
|
} & {
|
|
17358
17070
|
syncType: z.ZodEnum<["ALL", "DELIVERY", "TAKE_AWAY"]>;
|
|
@@ -17382,13 +17094,7 @@ declare class GetIntegrationDetails extends AbstractApiRequest<void, GetIntegrat
|
|
|
17382
17094
|
isValidMenu: boolean;
|
|
17383
17095
|
latestMenuSyncAt: string | null;
|
|
17384
17096
|
latestMenuCheckAt: string | null;
|
|
17385
|
-
currentMenuVersion:
|
|
17386
|
-
id: string;
|
|
17387
|
-
createdAt: string;
|
|
17388
|
-
updatedAt: string;
|
|
17389
|
-
contentUrl: string;
|
|
17390
|
-
filePath: string;
|
|
17391
|
-
} | null;
|
|
17097
|
+
currentMenuVersion: string | null;
|
|
17392
17098
|
salesMode: string | null;
|
|
17393
17099
|
nextSyncMenuScheduledAt: string | null;
|
|
17394
17100
|
syncType: "ALL" | "DELIVERY" | "TAKE_AWAY";
|
|
@@ -17414,13 +17120,7 @@ declare class GetIntegrationDetails extends AbstractApiRequest<void, GetIntegrat
|
|
|
17414
17120
|
isValidMenu: boolean;
|
|
17415
17121
|
latestMenuSyncAt: string | null;
|
|
17416
17122
|
latestMenuCheckAt: string | null;
|
|
17417
|
-
currentMenuVersion:
|
|
17418
|
-
id: string;
|
|
17419
|
-
createdAt: string;
|
|
17420
|
-
updatedAt: string;
|
|
17421
|
-
contentUrl: string;
|
|
17422
|
-
filePath: string;
|
|
17423
|
-
} | null;
|
|
17123
|
+
currentMenuVersion: string | null;
|
|
17424
17124
|
salesMode: string | null;
|
|
17425
17125
|
nextSyncMenuScheduledAt: string | null;
|
|
17426
17126
|
syncType: "ALL" | "DELIVERY" | "TAKE_AWAY";
|
|
@@ -17446,25 +17146,7 @@ declare class GetIntegrationDetails extends AbstractApiRequest<void, GetIntegrat
|
|
|
17446
17146
|
isValidMenu: z.ZodBoolean;
|
|
17447
17147
|
latestMenuSyncAt: z.ZodNullable<z.ZodEffects<z.ZodString, string, string>>;
|
|
17448
17148
|
latestMenuCheckAt: z.ZodNullable<z.ZodEffects<z.ZodString, string, string>>;
|
|
17449
|
-
currentMenuVersion: z.ZodNullable<z.
|
|
17450
|
-
id: z.ZodString;
|
|
17451
|
-
contentUrl: z.ZodString;
|
|
17452
|
-
filePath: z.ZodString;
|
|
17453
|
-
createdAt: z.ZodEffects<z.ZodString, string, string>;
|
|
17454
|
-
updatedAt: z.ZodEffects<z.ZodString, string, string>;
|
|
17455
|
-
}, "strip", z.ZodTypeAny, {
|
|
17456
|
-
id: string;
|
|
17457
|
-
createdAt: string;
|
|
17458
|
-
updatedAt: string;
|
|
17459
|
-
contentUrl: string;
|
|
17460
|
-
filePath: string;
|
|
17461
|
-
}, {
|
|
17462
|
-
id: string;
|
|
17463
|
-
createdAt: string;
|
|
17464
|
-
updatedAt: string;
|
|
17465
|
-
contentUrl: string;
|
|
17466
|
-
filePath: string;
|
|
17467
|
-
}>>;
|
|
17149
|
+
currentMenuVersion: z.ZodUnion<[z.ZodEffects<z.ZodNullable<z.ZodString>, string | null, string | null>, z.ZodEffects<z.ZodNullable<z.ZodString>, string | null, string | null>, z.ZodEffects<z.ZodNullable<z.ZodString>, string | null, string | null>]>;
|
|
17468
17150
|
salesMode: z.ZodEffects<z.ZodNullable<z.ZodString>, string | null, string | null>;
|
|
17469
17151
|
} & {
|
|
17470
17152
|
brandId: z.ZodString;
|
|
@@ -17495,13 +17177,7 @@ declare class GetIntegrationDetails extends AbstractApiRequest<void, GetIntegrat
|
|
|
17495
17177
|
isValidMenu: boolean;
|
|
17496
17178
|
latestMenuSyncAt: string | null;
|
|
17497
17179
|
latestMenuCheckAt: string | null;
|
|
17498
|
-
currentMenuVersion:
|
|
17499
|
-
id: string;
|
|
17500
|
-
createdAt: string;
|
|
17501
|
-
updatedAt: string;
|
|
17502
|
-
contentUrl: string;
|
|
17503
|
-
filePath: string;
|
|
17504
|
-
} | null;
|
|
17180
|
+
currentMenuVersion: string | null;
|
|
17505
17181
|
salesMode: string | null;
|
|
17506
17182
|
imageMenuUrl: string | null;
|
|
17507
17183
|
latestOpeningHoursSyncAt: string | null;
|
|
@@ -17527,13 +17203,7 @@ declare class GetIntegrationDetails extends AbstractApiRequest<void, GetIntegrat
|
|
|
17527
17203
|
isValidMenu: boolean;
|
|
17528
17204
|
latestMenuSyncAt: string | null;
|
|
17529
17205
|
latestMenuCheckAt: string | null;
|
|
17530
|
-
currentMenuVersion:
|
|
17531
|
-
id: string;
|
|
17532
|
-
createdAt: string;
|
|
17533
|
-
updatedAt: string;
|
|
17534
|
-
contentUrl: string;
|
|
17535
|
-
filePath: string;
|
|
17536
|
-
} | null;
|
|
17206
|
+
currentMenuVersion: string | null;
|
|
17537
17207
|
salesMode: string | null;
|
|
17538
17208
|
imageMenuUrl: string | null;
|
|
17539
17209
|
latestOpeningHoursSyncAt: string | null;
|
|
@@ -17558,25 +17228,7 @@ declare class GetIntegrationDetails extends AbstractApiRequest<void, GetIntegrat
|
|
|
17558
17228
|
isValidMenu: z.ZodBoolean;
|
|
17559
17229
|
latestMenuSyncAt: z.ZodNullable<z.ZodEffects<z.ZodString, string, string>>;
|
|
17560
17230
|
latestMenuCheckAt: z.ZodNullable<z.ZodEffects<z.ZodString, string, string>>;
|
|
17561
|
-
currentMenuVersion: z.ZodNullable<z.
|
|
17562
|
-
id: z.ZodString;
|
|
17563
|
-
contentUrl: z.ZodString;
|
|
17564
|
-
filePath: z.ZodString;
|
|
17565
|
-
createdAt: z.ZodEffects<z.ZodString, string, string>;
|
|
17566
|
-
updatedAt: z.ZodEffects<z.ZodString, string, string>;
|
|
17567
|
-
}, "strip", z.ZodTypeAny, {
|
|
17568
|
-
id: string;
|
|
17569
|
-
createdAt: string;
|
|
17570
|
-
updatedAt: string;
|
|
17571
|
-
contentUrl: string;
|
|
17572
|
-
filePath: string;
|
|
17573
|
-
}, {
|
|
17574
|
-
id: string;
|
|
17575
|
-
createdAt: string;
|
|
17576
|
-
updatedAt: string;
|
|
17577
|
-
contentUrl: string;
|
|
17578
|
-
filePath: string;
|
|
17579
|
-
}>>;
|
|
17231
|
+
currentMenuVersion: z.ZodUnion<[z.ZodEffects<z.ZodNullable<z.ZodString>, string | null, string | null>, z.ZodEffects<z.ZodNullable<z.ZodString>, string | null, string | null>, z.ZodEffects<z.ZodNullable<z.ZodString>, string | null, string | null>]>;
|
|
17580
17232
|
salesMode: z.ZodEffects<z.ZodNullable<z.ZodString>, string | null, string | null>;
|
|
17581
17233
|
} & {
|
|
17582
17234
|
storeId: z.ZodString;
|
|
@@ -17604,13 +17256,7 @@ declare class GetIntegrationDetails extends AbstractApiRequest<void, GetIntegrat
|
|
|
17604
17256
|
isValidMenu: boolean;
|
|
17605
17257
|
latestMenuSyncAt: string | null;
|
|
17606
17258
|
latestMenuCheckAt: string | null;
|
|
17607
|
-
currentMenuVersion:
|
|
17608
|
-
id: string;
|
|
17609
|
-
createdAt: string;
|
|
17610
|
-
updatedAt: string;
|
|
17611
|
-
contentUrl: string;
|
|
17612
|
-
filePath: string;
|
|
17613
|
-
} | null;
|
|
17259
|
+
currentMenuVersion: string | null;
|
|
17614
17260
|
salesMode: string | null;
|
|
17615
17261
|
pendingMenuChanges: boolean;
|
|
17616
17262
|
tagsForImport?: string[] | undefined;
|
|
@@ -17633,13 +17279,7 @@ declare class GetIntegrationDetails extends AbstractApiRequest<void, GetIntegrat
|
|
|
17633
17279
|
isValidMenu: boolean;
|
|
17634
17280
|
latestMenuSyncAt: string | null;
|
|
17635
17281
|
latestMenuCheckAt: string | null;
|
|
17636
|
-
currentMenuVersion:
|
|
17637
|
-
id: string;
|
|
17638
|
-
createdAt: string;
|
|
17639
|
-
updatedAt: string;
|
|
17640
|
-
contentUrl: string;
|
|
17641
|
-
filePath: string;
|
|
17642
|
-
} | null;
|
|
17282
|
+
currentMenuVersion: string | null;
|
|
17643
17283
|
salesMode: string | null;
|
|
17644
17284
|
pendingMenuChanges: boolean;
|
|
17645
17285
|
tagsForImport?: string[] | undefined;
|
|
@@ -17784,25 +17424,7 @@ declare const getIntegrationsResponseSchema: z.ZodObject<{
|
|
|
17784
17424
|
isValidMenu: z.ZodBoolean;
|
|
17785
17425
|
latestMenuSyncAt: z.ZodNullable<z.ZodEffects<z.ZodString, string, string>>;
|
|
17786
17426
|
latestMenuCheckAt: z.ZodNullable<z.ZodEffects<z.ZodString, string, string>>;
|
|
17787
|
-
currentMenuVersion: z.ZodNullable<z.
|
|
17788
|
-
id: z.ZodString;
|
|
17789
|
-
contentUrl: z.ZodString;
|
|
17790
|
-
filePath: z.ZodString;
|
|
17791
|
-
createdAt: z.ZodEffects<z.ZodString, string, string>;
|
|
17792
|
-
updatedAt: z.ZodEffects<z.ZodString, string, string>;
|
|
17793
|
-
}, "strip", z.ZodTypeAny, {
|
|
17794
|
-
id: string;
|
|
17795
|
-
createdAt: string;
|
|
17796
|
-
updatedAt: string;
|
|
17797
|
-
contentUrl: string;
|
|
17798
|
-
filePath: string;
|
|
17799
|
-
}, {
|
|
17800
|
-
id: string;
|
|
17801
|
-
createdAt: string;
|
|
17802
|
-
updatedAt: string;
|
|
17803
|
-
contentUrl: string;
|
|
17804
|
-
filePath: string;
|
|
17805
|
-
}>>;
|
|
17427
|
+
currentMenuVersion: z.ZodUnion<[z.ZodEffects<z.ZodNullable<z.ZodString>, string | null, string | null>, z.ZodEffects<z.ZodNullable<z.ZodString>, string | null, string | null>, z.ZodEffects<z.ZodNullable<z.ZodString>, string | null, string | null>]>;
|
|
17806
17428
|
salesMode: z.ZodEffects<z.ZodNullable<z.ZodString>, string | null, string | null>;
|
|
17807
17429
|
} & {
|
|
17808
17430
|
syncType: z.ZodEnum<["ALL", "DELIVERY", "TAKE_AWAY"]>;
|
|
@@ -17829,13 +17451,7 @@ declare const getIntegrationsResponseSchema: z.ZodObject<{
|
|
|
17829
17451
|
isValidMenu: boolean;
|
|
17830
17452
|
latestMenuSyncAt: string | null;
|
|
17831
17453
|
latestMenuCheckAt: string | null;
|
|
17832
|
-
currentMenuVersion:
|
|
17833
|
-
id: string;
|
|
17834
|
-
createdAt: string;
|
|
17835
|
-
updatedAt: string;
|
|
17836
|
-
contentUrl: string;
|
|
17837
|
-
filePath: string;
|
|
17838
|
-
} | null;
|
|
17454
|
+
currentMenuVersion: string | null;
|
|
17839
17455
|
salesMode: string | null;
|
|
17840
17456
|
nextSyncMenuScheduledAt: string | null;
|
|
17841
17457
|
syncType: "ALL" | "DELIVERY" | "TAKE_AWAY";
|
|
@@ -17860,13 +17476,7 @@ declare const getIntegrationsResponseSchema: z.ZodObject<{
|
|
|
17860
17476
|
isValidMenu: boolean;
|
|
17861
17477
|
latestMenuSyncAt: string | null;
|
|
17862
17478
|
latestMenuCheckAt: string | null;
|
|
17863
|
-
currentMenuVersion:
|
|
17864
|
-
id: string;
|
|
17865
|
-
createdAt: string;
|
|
17866
|
-
updatedAt: string;
|
|
17867
|
-
contentUrl: string;
|
|
17868
|
-
filePath: string;
|
|
17869
|
-
} | null;
|
|
17479
|
+
currentMenuVersion: string | null;
|
|
17870
17480
|
salesMode: string | null;
|
|
17871
17481
|
nextSyncMenuScheduledAt: string | null;
|
|
17872
17482
|
syncType: "ALL" | "DELIVERY" | "TAKE_AWAY";
|
|
@@ -17892,25 +17502,7 @@ declare const getIntegrationsResponseSchema: z.ZodObject<{
|
|
|
17892
17502
|
isValidMenu: z.ZodBoolean;
|
|
17893
17503
|
latestMenuSyncAt: z.ZodNullable<z.ZodEffects<z.ZodString, string, string>>;
|
|
17894
17504
|
latestMenuCheckAt: z.ZodNullable<z.ZodEffects<z.ZodString, string, string>>;
|
|
17895
|
-
currentMenuVersion: z.ZodNullable<z.
|
|
17896
|
-
id: z.ZodString;
|
|
17897
|
-
contentUrl: z.ZodString;
|
|
17898
|
-
filePath: z.ZodString;
|
|
17899
|
-
createdAt: z.ZodEffects<z.ZodString, string, string>;
|
|
17900
|
-
updatedAt: z.ZodEffects<z.ZodString, string, string>;
|
|
17901
|
-
}, "strip", z.ZodTypeAny, {
|
|
17902
|
-
id: string;
|
|
17903
|
-
createdAt: string;
|
|
17904
|
-
updatedAt: string;
|
|
17905
|
-
contentUrl: string;
|
|
17906
|
-
filePath: string;
|
|
17907
|
-
}, {
|
|
17908
|
-
id: string;
|
|
17909
|
-
createdAt: string;
|
|
17910
|
-
updatedAt: string;
|
|
17911
|
-
contentUrl: string;
|
|
17912
|
-
filePath: string;
|
|
17913
|
-
}>>;
|
|
17505
|
+
currentMenuVersion: z.ZodUnion<[z.ZodEffects<z.ZodNullable<z.ZodString>, string | null, string | null>, z.ZodEffects<z.ZodNullable<z.ZodString>, string | null, string | null>, z.ZodEffects<z.ZodNullable<z.ZodString>, string | null, string | null>]>;
|
|
17914
17506
|
salesMode: z.ZodEffects<z.ZodNullable<z.ZodString>, string | null, string | null>;
|
|
17915
17507
|
} & {
|
|
17916
17508
|
brandId: z.ZodString;
|
|
@@ -17938,13 +17530,7 @@ declare const getIntegrationsResponseSchema: z.ZodObject<{
|
|
|
17938
17530
|
isValidMenu: boolean;
|
|
17939
17531
|
latestMenuSyncAt: string | null;
|
|
17940
17532
|
latestMenuCheckAt: string | null;
|
|
17941
|
-
currentMenuVersion:
|
|
17942
|
-
id: string;
|
|
17943
|
-
createdAt: string;
|
|
17944
|
-
updatedAt: string;
|
|
17945
|
-
contentUrl: string;
|
|
17946
|
-
filePath: string;
|
|
17947
|
-
} | null;
|
|
17533
|
+
currentMenuVersion: string | null;
|
|
17948
17534
|
salesMode: string | null;
|
|
17949
17535
|
imageMenuUrl: string | null;
|
|
17950
17536
|
latestOpeningHoursSyncAt: string | null;
|
|
@@ -17969,13 +17555,7 @@ declare const getIntegrationsResponseSchema: z.ZodObject<{
|
|
|
17969
17555
|
isValidMenu: boolean;
|
|
17970
17556
|
latestMenuSyncAt: string | null;
|
|
17971
17557
|
latestMenuCheckAt: string | null;
|
|
17972
|
-
currentMenuVersion:
|
|
17973
|
-
id: string;
|
|
17974
|
-
createdAt: string;
|
|
17975
|
-
updatedAt: string;
|
|
17976
|
-
contentUrl: string;
|
|
17977
|
-
filePath: string;
|
|
17978
|
-
} | null;
|
|
17558
|
+
currentMenuVersion: string | null;
|
|
17979
17559
|
salesMode: string | null;
|
|
17980
17560
|
imageMenuUrl: string | null;
|
|
17981
17561
|
latestOpeningHoursSyncAt: string | null;
|
|
@@ -18000,25 +17580,7 @@ declare const getIntegrationsResponseSchema: z.ZodObject<{
|
|
|
18000
17580
|
isValidMenu: z.ZodBoolean;
|
|
18001
17581
|
latestMenuSyncAt: z.ZodNullable<z.ZodEffects<z.ZodString, string, string>>;
|
|
18002
17582
|
latestMenuCheckAt: z.ZodNullable<z.ZodEffects<z.ZodString, string, string>>;
|
|
18003
|
-
currentMenuVersion: z.ZodNullable<z.
|
|
18004
|
-
id: z.ZodString;
|
|
18005
|
-
contentUrl: z.ZodString;
|
|
18006
|
-
filePath: z.ZodString;
|
|
18007
|
-
createdAt: z.ZodEffects<z.ZodString, string, string>;
|
|
18008
|
-
updatedAt: z.ZodEffects<z.ZodString, string, string>;
|
|
18009
|
-
}, "strip", z.ZodTypeAny, {
|
|
18010
|
-
id: string;
|
|
18011
|
-
createdAt: string;
|
|
18012
|
-
updatedAt: string;
|
|
18013
|
-
contentUrl: string;
|
|
18014
|
-
filePath: string;
|
|
18015
|
-
}, {
|
|
18016
|
-
id: string;
|
|
18017
|
-
createdAt: string;
|
|
18018
|
-
updatedAt: string;
|
|
18019
|
-
contentUrl: string;
|
|
18020
|
-
filePath: string;
|
|
18021
|
-
}>>;
|
|
17583
|
+
currentMenuVersion: z.ZodUnion<[z.ZodEffects<z.ZodNullable<z.ZodString>, string | null, string | null>, z.ZodEffects<z.ZodNullable<z.ZodString>, string | null, string | null>, z.ZodEffects<z.ZodNullable<z.ZodString>, string | null, string | null>]>;
|
|
18022
17584
|
salesMode: z.ZodEffects<z.ZodNullable<z.ZodString>, string | null, string | null>;
|
|
18023
17585
|
} & {
|
|
18024
17586
|
storeId: z.ZodString;
|
|
@@ -18043,13 +17605,7 @@ declare const getIntegrationsResponseSchema: z.ZodObject<{
|
|
|
18043
17605
|
isValidMenu: boolean;
|
|
18044
17606
|
latestMenuSyncAt: string | null;
|
|
18045
17607
|
latestMenuCheckAt: string | null;
|
|
18046
|
-
currentMenuVersion:
|
|
18047
|
-
id: string;
|
|
18048
|
-
createdAt: string;
|
|
18049
|
-
updatedAt: string;
|
|
18050
|
-
contentUrl: string;
|
|
18051
|
-
filePath: string;
|
|
18052
|
-
} | null;
|
|
17608
|
+
currentMenuVersion: string | null;
|
|
18053
17609
|
salesMode: string | null;
|
|
18054
17610
|
pendingMenuChanges: boolean;
|
|
18055
17611
|
tagsForImport?: string[] | undefined;
|
|
@@ -18071,13 +17627,7 @@ declare const getIntegrationsResponseSchema: z.ZodObject<{
|
|
|
18071
17627
|
isValidMenu: boolean;
|
|
18072
17628
|
latestMenuSyncAt: string | null;
|
|
18073
17629
|
latestMenuCheckAt: string | null;
|
|
18074
|
-
currentMenuVersion:
|
|
18075
|
-
id: string;
|
|
18076
|
-
createdAt: string;
|
|
18077
|
-
updatedAt: string;
|
|
18078
|
-
contentUrl: string;
|
|
18079
|
-
filePath: string;
|
|
18080
|
-
} | null;
|
|
17630
|
+
currentMenuVersion: string | null;
|
|
18081
17631
|
salesMode: string | null;
|
|
18082
17632
|
pendingMenuChanges: boolean;
|
|
18083
17633
|
tagsForImport?: string[] | undefined;
|
|
@@ -18197,13 +17747,7 @@ declare const getIntegrationsResponseSchema: z.ZodObject<{
|
|
|
18197
17747
|
isValidMenu: boolean;
|
|
18198
17748
|
latestMenuSyncAt: string | null;
|
|
18199
17749
|
latestMenuCheckAt: string | null;
|
|
18200
|
-
currentMenuVersion:
|
|
18201
|
-
id: string;
|
|
18202
|
-
createdAt: string;
|
|
18203
|
-
updatedAt: string;
|
|
18204
|
-
contentUrl: string;
|
|
18205
|
-
filePath: string;
|
|
18206
|
-
} | null;
|
|
17750
|
+
currentMenuVersion: string | null;
|
|
18207
17751
|
salesMode: string | null;
|
|
18208
17752
|
imageMenuUrl: string | null;
|
|
18209
17753
|
latestOpeningHoursSyncAt: string | null;
|
|
@@ -18228,13 +17772,7 @@ declare const getIntegrationsResponseSchema: z.ZodObject<{
|
|
|
18228
17772
|
isValidMenu: boolean;
|
|
18229
17773
|
latestMenuSyncAt: string | null;
|
|
18230
17774
|
latestMenuCheckAt: string | null;
|
|
18231
|
-
currentMenuVersion:
|
|
18232
|
-
id: string;
|
|
18233
|
-
createdAt: string;
|
|
18234
|
-
updatedAt: string;
|
|
18235
|
-
contentUrl: string;
|
|
18236
|
-
filePath: string;
|
|
18237
|
-
} | null;
|
|
17775
|
+
currentMenuVersion: string | null;
|
|
18238
17776
|
salesMode: string | null;
|
|
18239
17777
|
pendingMenuChanges: boolean;
|
|
18240
17778
|
tagsForImport?: string[] | undefined;
|
|
@@ -18255,13 +17793,7 @@ declare const getIntegrationsResponseSchema: z.ZodObject<{
|
|
|
18255
17793
|
isValidMenu: boolean;
|
|
18256
17794
|
latestMenuSyncAt: string | null;
|
|
18257
17795
|
latestMenuCheckAt: string | null;
|
|
18258
|
-
currentMenuVersion:
|
|
18259
|
-
id: string;
|
|
18260
|
-
createdAt: string;
|
|
18261
|
-
updatedAt: string;
|
|
18262
|
-
contentUrl: string;
|
|
18263
|
-
filePath: string;
|
|
18264
|
-
} | null;
|
|
17796
|
+
currentMenuVersion: string | null;
|
|
18265
17797
|
salesMode: string | null;
|
|
18266
17798
|
nextSyncMenuScheduledAt: string | null;
|
|
18267
17799
|
syncType: "ALL" | "DELIVERY" | "TAKE_AWAY";
|
|
@@ -18315,13 +17847,7 @@ declare const getIntegrationsResponseSchema: z.ZodObject<{
|
|
|
18315
17847
|
isValidMenu: boolean;
|
|
18316
17848
|
latestMenuSyncAt: string | null;
|
|
18317
17849
|
latestMenuCheckAt: string | null;
|
|
18318
|
-
currentMenuVersion:
|
|
18319
|
-
id: string;
|
|
18320
|
-
createdAt: string;
|
|
18321
|
-
updatedAt: string;
|
|
18322
|
-
contentUrl: string;
|
|
18323
|
-
filePath: string;
|
|
18324
|
-
} | null;
|
|
17850
|
+
currentMenuVersion: string | null;
|
|
18325
17851
|
salesMode: string | null;
|
|
18326
17852
|
imageMenuUrl: string | null;
|
|
18327
17853
|
latestOpeningHoursSyncAt: string | null;
|
|
@@ -18346,13 +17872,7 @@ declare const getIntegrationsResponseSchema: z.ZodObject<{
|
|
|
18346
17872
|
isValidMenu: boolean;
|
|
18347
17873
|
latestMenuSyncAt: string | null;
|
|
18348
17874
|
latestMenuCheckAt: string | null;
|
|
18349
|
-
currentMenuVersion:
|
|
18350
|
-
id: string;
|
|
18351
|
-
createdAt: string;
|
|
18352
|
-
updatedAt: string;
|
|
18353
|
-
contentUrl: string;
|
|
18354
|
-
filePath: string;
|
|
18355
|
-
} | null;
|
|
17875
|
+
currentMenuVersion: string | null;
|
|
18356
17876
|
salesMode: string | null;
|
|
18357
17877
|
pendingMenuChanges: boolean;
|
|
18358
17878
|
tagsForImport?: string[] | undefined;
|
|
@@ -18373,13 +17893,7 @@ declare const getIntegrationsResponseSchema: z.ZodObject<{
|
|
|
18373
17893
|
isValidMenu: boolean;
|
|
18374
17894
|
latestMenuSyncAt: string | null;
|
|
18375
17895
|
latestMenuCheckAt: string | null;
|
|
18376
|
-
currentMenuVersion:
|
|
18377
|
-
id: string;
|
|
18378
|
-
createdAt: string;
|
|
18379
|
-
updatedAt: string;
|
|
18380
|
-
contentUrl: string;
|
|
18381
|
-
filePath: string;
|
|
18382
|
-
} | null;
|
|
17896
|
+
currentMenuVersion: string | null;
|
|
18383
17897
|
salesMode: string | null;
|
|
18384
17898
|
nextSyncMenuScheduledAt: string | null;
|
|
18385
17899
|
syncType: "ALL" | "DELIVERY" | "TAKE_AWAY";
|
|
@@ -18423,25 +17937,7 @@ declare class GetIntegrations extends AbstractApiRequest<void, GetIntegrationsRe
|
|
|
18423
17937
|
isValidMenu: z.ZodBoolean;
|
|
18424
17938
|
latestMenuSyncAt: z.ZodNullable<z.ZodEffects<z.ZodString, string, string>>;
|
|
18425
17939
|
latestMenuCheckAt: z.ZodNullable<z.ZodEffects<z.ZodString, string, string>>;
|
|
18426
|
-
currentMenuVersion: z.ZodNullable<z.
|
|
18427
|
-
id: z.ZodString;
|
|
18428
|
-
contentUrl: z.ZodString;
|
|
18429
|
-
filePath: z.ZodString;
|
|
18430
|
-
createdAt: z.ZodEffects<z.ZodString, string, string>;
|
|
18431
|
-
updatedAt: z.ZodEffects<z.ZodString, string, string>;
|
|
18432
|
-
}, "strip", z.ZodTypeAny, {
|
|
18433
|
-
id: string;
|
|
18434
|
-
createdAt: string;
|
|
18435
|
-
updatedAt: string;
|
|
18436
|
-
contentUrl: string;
|
|
18437
|
-
filePath: string;
|
|
18438
|
-
}, {
|
|
18439
|
-
id: string;
|
|
18440
|
-
createdAt: string;
|
|
18441
|
-
updatedAt: string;
|
|
18442
|
-
contentUrl: string;
|
|
18443
|
-
filePath: string;
|
|
18444
|
-
}>>;
|
|
17940
|
+
currentMenuVersion: z.ZodUnion<[z.ZodEffects<z.ZodNullable<z.ZodString>, string | null, string | null>, z.ZodEffects<z.ZodNullable<z.ZodString>, string | null, string | null>, z.ZodEffects<z.ZodNullable<z.ZodString>, string | null, string | null>]>;
|
|
18445
17941
|
salesMode: z.ZodEffects<z.ZodNullable<z.ZodString>, string | null, string | null>;
|
|
18446
17942
|
} & {
|
|
18447
17943
|
syncType: z.ZodEnum<["ALL", "DELIVERY", "TAKE_AWAY"]>;
|
|
@@ -18468,13 +17964,7 @@ declare class GetIntegrations extends AbstractApiRequest<void, GetIntegrationsRe
|
|
|
18468
17964
|
isValidMenu: boolean;
|
|
18469
17965
|
latestMenuSyncAt: string | null;
|
|
18470
17966
|
latestMenuCheckAt: string | null;
|
|
18471
|
-
currentMenuVersion:
|
|
18472
|
-
id: string;
|
|
18473
|
-
createdAt: string;
|
|
18474
|
-
updatedAt: string;
|
|
18475
|
-
contentUrl: string;
|
|
18476
|
-
filePath: string;
|
|
18477
|
-
} | null;
|
|
17967
|
+
currentMenuVersion: string | null;
|
|
18478
17968
|
salesMode: string | null;
|
|
18479
17969
|
nextSyncMenuScheduledAt: string | null;
|
|
18480
17970
|
syncType: "ALL" | "DELIVERY" | "TAKE_AWAY";
|
|
@@ -18499,13 +17989,7 @@ declare class GetIntegrations extends AbstractApiRequest<void, GetIntegrationsRe
|
|
|
18499
17989
|
isValidMenu: boolean;
|
|
18500
17990
|
latestMenuSyncAt: string | null;
|
|
18501
17991
|
latestMenuCheckAt: string | null;
|
|
18502
|
-
currentMenuVersion:
|
|
18503
|
-
id: string;
|
|
18504
|
-
createdAt: string;
|
|
18505
|
-
updatedAt: string;
|
|
18506
|
-
contentUrl: string;
|
|
18507
|
-
filePath: string;
|
|
18508
|
-
} | null;
|
|
17992
|
+
currentMenuVersion: string | null;
|
|
18509
17993
|
salesMode: string | null;
|
|
18510
17994
|
nextSyncMenuScheduledAt: string | null;
|
|
18511
17995
|
syncType: "ALL" | "DELIVERY" | "TAKE_AWAY";
|
|
@@ -18531,25 +18015,7 @@ declare class GetIntegrations extends AbstractApiRequest<void, GetIntegrationsRe
|
|
|
18531
18015
|
isValidMenu: z.ZodBoolean;
|
|
18532
18016
|
latestMenuSyncAt: z.ZodNullable<z.ZodEffects<z.ZodString, string, string>>;
|
|
18533
18017
|
latestMenuCheckAt: z.ZodNullable<z.ZodEffects<z.ZodString, string, string>>;
|
|
18534
|
-
currentMenuVersion: z.ZodNullable<z.
|
|
18535
|
-
id: z.ZodString;
|
|
18536
|
-
contentUrl: z.ZodString;
|
|
18537
|
-
filePath: z.ZodString;
|
|
18538
|
-
createdAt: z.ZodEffects<z.ZodString, string, string>;
|
|
18539
|
-
updatedAt: z.ZodEffects<z.ZodString, string, string>;
|
|
18540
|
-
}, "strip", z.ZodTypeAny, {
|
|
18541
|
-
id: string;
|
|
18542
|
-
createdAt: string;
|
|
18543
|
-
updatedAt: string;
|
|
18544
|
-
contentUrl: string;
|
|
18545
|
-
filePath: string;
|
|
18546
|
-
}, {
|
|
18547
|
-
id: string;
|
|
18548
|
-
createdAt: string;
|
|
18549
|
-
updatedAt: string;
|
|
18550
|
-
contentUrl: string;
|
|
18551
|
-
filePath: string;
|
|
18552
|
-
}>>;
|
|
18018
|
+
currentMenuVersion: z.ZodUnion<[z.ZodEffects<z.ZodNullable<z.ZodString>, string | null, string | null>, z.ZodEffects<z.ZodNullable<z.ZodString>, string | null, string | null>, z.ZodEffects<z.ZodNullable<z.ZodString>, string | null, string | null>]>;
|
|
18553
18019
|
salesMode: z.ZodEffects<z.ZodNullable<z.ZodString>, string | null, string | null>;
|
|
18554
18020
|
} & {
|
|
18555
18021
|
brandId: z.ZodString;
|
|
@@ -18577,13 +18043,7 @@ declare class GetIntegrations extends AbstractApiRequest<void, GetIntegrationsRe
|
|
|
18577
18043
|
isValidMenu: boolean;
|
|
18578
18044
|
latestMenuSyncAt: string | null;
|
|
18579
18045
|
latestMenuCheckAt: string | null;
|
|
18580
|
-
currentMenuVersion:
|
|
18581
|
-
id: string;
|
|
18582
|
-
createdAt: string;
|
|
18583
|
-
updatedAt: string;
|
|
18584
|
-
contentUrl: string;
|
|
18585
|
-
filePath: string;
|
|
18586
|
-
} | null;
|
|
18046
|
+
currentMenuVersion: string | null;
|
|
18587
18047
|
salesMode: string | null;
|
|
18588
18048
|
imageMenuUrl: string | null;
|
|
18589
18049
|
latestOpeningHoursSyncAt: string | null;
|
|
@@ -18608,13 +18068,7 @@ declare class GetIntegrations extends AbstractApiRequest<void, GetIntegrationsRe
|
|
|
18608
18068
|
isValidMenu: boolean;
|
|
18609
18069
|
latestMenuSyncAt: string | null;
|
|
18610
18070
|
latestMenuCheckAt: string | null;
|
|
18611
|
-
currentMenuVersion:
|
|
18612
|
-
id: string;
|
|
18613
|
-
createdAt: string;
|
|
18614
|
-
updatedAt: string;
|
|
18615
|
-
contentUrl: string;
|
|
18616
|
-
filePath: string;
|
|
18617
|
-
} | null;
|
|
18071
|
+
currentMenuVersion: string | null;
|
|
18618
18072
|
salesMode: string | null;
|
|
18619
18073
|
imageMenuUrl: string | null;
|
|
18620
18074
|
latestOpeningHoursSyncAt: string | null;
|
|
@@ -18639,25 +18093,7 @@ declare class GetIntegrations extends AbstractApiRequest<void, GetIntegrationsRe
|
|
|
18639
18093
|
isValidMenu: z.ZodBoolean;
|
|
18640
18094
|
latestMenuSyncAt: z.ZodNullable<z.ZodEffects<z.ZodString, string, string>>;
|
|
18641
18095
|
latestMenuCheckAt: z.ZodNullable<z.ZodEffects<z.ZodString, string, string>>;
|
|
18642
|
-
currentMenuVersion: z.ZodNullable<z.
|
|
18643
|
-
id: z.ZodString;
|
|
18644
|
-
contentUrl: z.ZodString;
|
|
18645
|
-
filePath: z.ZodString;
|
|
18646
|
-
createdAt: z.ZodEffects<z.ZodString, string, string>;
|
|
18647
|
-
updatedAt: z.ZodEffects<z.ZodString, string, string>;
|
|
18648
|
-
}, "strip", z.ZodTypeAny, {
|
|
18649
|
-
id: string;
|
|
18650
|
-
createdAt: string;
|
|
18651
|
-
updatedAt: string;
|
|
18652
|
-
contentUrl: string;
|
|
18653
|
-
filePath: string;
|
|
18654
|
-
}, {
|
|
18655
|
-
id: string;
|
|
18656
|
-
createdAt: string;
|
|
18657
|
-
updatedAt: string;
|
|
18658
|
-
contentUrl: string;
|
|
18659
|
-
filePath: string;
|
|
18660
|
-
}>>;
|
|
18096
|
+
currentMenuVersion: z.ZodUnion<[z.ZodEffects<z.ZodNullable<z.ZodString>, string | null, string | null>, z.ZodEffects<z.ZodNullable<z.ZodString>, string | null, string | null>, z.ZodEffects<z.ZodNullable<z.ZodString>, string | null, string | null>]>;
|
|
18661
18097
|
salesMode: z.ZodEffects<z.ZodNullable<z.ZodString>, string | null, string | null>;
|
|
18662
18098
|
} & {
|
|
18663
18099
|
storeId: z.ZodString;
|
|
@@ -18682,13 +18118,7 @@ declare class GetIntegrations extends AbstractApiRequest<void, GetIntegrationsRe
|
|
|
18682
18118
|
isValidMenu: boolean;
|
|
18683
18119
|
latestMenuSyncAt: string | null;
|
|
18684
18120
|
latestMenuCheckAt: string | null;
|
|
18685
|
-
currentMenuVersion:
|
|
18686
|
-
id: string;
|
|
18687
|
-
createdAt: string;
|
|
18688
|
-
updatedAt: string;
|
|
18689
|
-
contentUrl: string;
|
|
18690
|
-
filePath: string;
|
|
18691
|
-
} | null;
|
|
18121
|
+
currentMenuVersion: string | null;
|
|
18692
18122
|
salesMode: string | null;
|
|
18693
18123
|
pendingMenuChanges: boolean;
|
|
18694
18124
|
tagsForImport?: string[] | undefined;
|
|
@@ -18710,13 +18140,7 @@ declare class GetIntegrations extends AbstractApiRequest<void, GetIntegrationsRe
|
|
|
18710
18140
|
isValidMenu: boolean;
|
|
18711
18141
|
latestMenuSyncAt: string | null;
|
|
18712
18142
|
latestMenuCheckAt: string | null;
|
|
18713
|
-
currentMenuVersion:
|
|
18714
|
-
id: string;
|
|
18715
|
-
createdAt: string;
|
|
18716
|
-
updatedAt: string;
|
|
18717
|
-
contentUrl: string;
|
|
18718
|
-
filePath: string;
|
|
18719
|
-
} | null;
|
|
18143
|
+
currentMenuVersion: string | null;
|
|
18720
18144
|
salesMode: string | null;
|
|
18721
18145
|
pendingMenuChanges: boolean;
|
|
18722
18146
|
tagsForImport?: string[] | undefined;
|
|
@@ -18836,13 +18260,7 @@ declare class GetIntegrations extends AbstractApiRequest<void, GetIntegrationsRe
|
|
|
18836
18260
|
isValidMenu: boolean;
|
|
18837
18261
|
latestMenuSyncAt: string | null;
|
|
18838
18262
|
latestMenuCheckAt: string | null;
|
|
18839
|
-
currentMenuVersion:
|
|
18840
|
-
id: string;
|
|
18841
|
-
createdAt: string;
|
|
18842
|
-
updatedAt: string;
|
|
18843
|
-
contentUrl: string;
|
|
18844
|
-
filePath: string;
|
|
18845
|
-
} | null;
|
|
18263
|
+
currentMenuVersion: string | null;
|
|
18846
18264
|
salesMode: string | null;
|
|
18847
18265
|
imageMenuUrl: string | null;
|
|
18848
18266
|
latestOpeningHoursSyncAt: string | null;
|
|
@@ -18867,13 +18285,7 @@ declare class GetIntegrations extends AbstractApiRequest<void, GetIntegrationsRe
|
|
|
18867
18285
|
isValidMenu: boolean;
|
|
18868
18286
|
latestMenuSyncAt: string | null;
|
|
18869
18287
|
latestMenuCheckAt: string | null;
|
|
18870
|
-
currentMenuVersion:
|
|
18871
|
-
id: string;
|
|
18872
|
-
createdAt: string;
|
|
18873
|
-
updatedAt: string;
|
|
18874
|
-
contentUrl: string;
|
|
18875
|
-
filePath: string;
|
|
18876
|
-
} | null;
|
|
18288
|
+
currentMenuVersion: string | null;
|
|
18877
18289
|
salesMode: string | null;
|
|
18878
18290
|
pendingMenuChanges: boolean;
|
|
18879
18291
|
tagsForImport?: string[] | undefined;
|
|
@@ -18894,13 +18306,7 @@ declare class GetIntegrations extends AbstractApiRequest<void, GetIntegrationsRe
|
|
|
18894
18306
|
isValidMenu: boolean;
|
|
18895
18307
|
latestMenuSyncAt: string | null;
|
|
18896
18308
|
latestMenuCheckAt: string | null;
|
|
18897
|
-
currentMenuVersion:
|
|
18898
|
-
id: string;
|
|
18899
|
-
createdAt: string;
|
|
18900
|
-
updatedAt: string;
|
|
18901
|
-
contentUrl: string;
|
|
18902
|
-
filePath: string;
|
|
18903
|
-
} | null;
|
|
18309
|
+
currentMenuVersion: string | null;
|
|
18904
18310
|
salesMode: string | null;
|
|
18905
18311
|
nextSyncMenuScheduledAt: string | null;
|
|
18906
18312
|
syncType: "ALL" | "DELIVERY" | "TAKE_AWAY";
|
|
@@ -18954,13 +18360,7 @@ declare class GetIntegrations extends AbstractApiRequest<void, GetIntegrationsRe
|
|
|
18954
18360
|
isValidMenu: boolean;
|
|
18955
18361
|
latestMenuSyncAt: string | null;
|
|
18956
18362
|
latestMenuCheckAt: string | null;
|
|
18957
|
-
currentMenuVersion:
|
|
18958
|
-
id: string;
|
|
18959
|
-
createdAt: string;
|
|
18960
|
-
updatedAt: string;
|
|
18961
|
-
contentUrl: string;
|
|
18962
|
-
filePath: string;
|
|
18963
|
-
} | null;
|
|
18363
|
+
currentMenuVersion: string | null;
|
|
18964
18364
|
salesMode: string | null;
|
|
18965
18365
|
imageMenuUrl: string | null;
|
|
18966
18366
|
latestOpeningHoursSyncAt: string | null;
|
|
@@ -18985,13 +18385,7 @@ declare class GetIntegrations extends AbstractApiRequest<void, GetIntegrationsRe
|
|
|
18985
18385
|
isValidMenu: boolean;
|
|
18986
18386
|
latestMenuSyncAt: string | null;
|
|
18987
18387
|
latestMenuCheckAt: string | null;
|
|
18988
|
-
currentMenuVersion:
|
|
18989
|
-
id: string;
|
|
18990
|
-
createdAt: string;
|
|
18991
|
-
updatedAt: string;
|
|
18992
|
-
contentUrl: string;
|
|
18993
|
-
filePath: string;
|
|
18994
|
-
} | null;
|
|
18388
|
+
currentMenuVersion: string | null;
|
|
18995
18389
|
salesMode: string | null;
|
|
18996
18390
|
pendingMenuChanges: boolean;
|
|
18997
18391
|
tagsForImport?: string[] | undefined;
|
|
@@ -19012,13 +18406,7 @@ declare class GetIntegrations extends AbstractApiRequest<void, GetIntegrationsRe
|
|
|
19012
18406
|
isValidMenu: boolean;
|
|
19013
18407
|
latestMenuSyncAt: string | null;
|
|
19014
18408
|
latestMenuCheckAt: string | null;
|
|
19015
|
-
currentMenuVersion:
|
|
19016
|
-
id: string;
|
|
19017
|
-
createdAt: string;
|
|
19018
|
-
updatedAt: string;
|
|
19019
|
-
contentUrl: string;
|
|
19020
|
-
filePath: string;
|
|
19021
|
-
} | null;
|
|
18409
|
+
currentMenuVersion: string | null;
|
|
19022
18410
|
salesMode: string | null;
|
|
19023
18411
|
nextSyncMenuScheduledAt: string | null;
|
|
19024
18412
|
syncType: "ALL" | "DELIVERY" | "TAKE_AWAY";
|
|
@@ -19693,41 +19081,17 @@ declare const integrationDeliveryProviderCommonSchema: z.ZodObject<{
|
|
|
19693
19081
|
isValidMenu: z.ZodBoolean;
|
|
19694
19082
|
latestMenuSyncAt: z.ZodNullable<z.ZodEffects<z.ZodString, string, string>>;
|
|
19695
19083
|
latestMenuCheckAt: z.ZodNullable<z.ZodEffects<z.ZodString, string, string>>;
|
|
19696
|
-
currentMenuVersion: z.ZodNullable<z.
|
|
19697
|
-
id: z.ZodString;
|
|
19698
|
-
contentUrl: z.ZodString;
|
|
19699
|
-
filePath: z.ZodString;
|
|
19700
|
-
createdAt: z.ZodEffects<z.ZodString, string, string>;
|
|
19701
|
-
updatedAt: z.ZodEffects<z.ZodString, string, string>;
|
|
19702
|
-
}, "strip", z.ZodTypeAny, {
|
|
19703
|
-
id: string;
|
|
19704
|
-
createdAt: string;
|
|
19705
|
-
updatedAt: string;
|
|
19706
|
-
contentUrl: string;
|
|
19707
|
-
filePath: string;
|
|
19708
|
-
}, {
|
|
19709
|
-
id: string;
|
|
19710
|
-
createdAt: string;
|
|
19711
|
-
updatedAt: string;
|
|
19712
|
-
contentUrl: string;
|
|
19713
|
-
filePath: string;
|
|
19714
|
-
}>>;
|
|
19084
|
+
currentMenuVersion: z.ZodUnion<[z.ZodEffects<z.ZodNullable<z.ZodString>, string | null, string | null>, z.ZodEffects<z.ZodNullable<z.ZodString>, string | null, string | null>, z.ZodEffects<z.ZodNullable<z.ZodString>, string | null, string | null>]>;
|
|
19715
19085
|
salesMode: z.ZodEffects<z.ZodNullable<z.ZodString>, string | null, string | null>;
|
|
19716
19086
|
}, "strip", z.ZodTypeAny, {
|
|
19717
19087
|
name: string;
|
|
19718
19088
|
skipInvalidItem: boolean;
|
|
19719
19089
|
skipNegativePrices: boolean;
|
|
19720
19090
|
importTaggedItems: boolean;
|
|
19721
|
-
isValidMenu: boolean;
|
|
19722
|
-
latestMenuSyncAt: string | null;
|
|
19723
|
-
latestMenuCheckAt: string | null;
|
|
19724
|
-
currentMenuVersion:
|
|
19725
|
-
id: string;
|
|
19726
|
-
createdAt: string;
|
|
19727
|
-
updatedAt: string;
|
|
19728
|
-
contentUrl: string;
|
|
19729
|
-
filePath: string;
|
|
19730
|
-
} | null;
|
|
19091
|
+
isValidMenu: boolean;
|
|
19092
|
+
latestMenuSyncAt: string | null;
|
|
19093
|
+
latestMenuCheckAt: string | null;
|
|
19094
|
+
currentMenuVersion: string | null;
|
|
19731
19095
|
salesMode: string | null;
|
|
19732
19096
|
tagsForImport?: string[] | undefined;
|
|
19733
19097
|
}, {
|
|
@@ -19738,13 +19102,7 @@ declare const integrationDeliveryProviderCommonSchema: z.ZodObject<{
|
|
|
19738
19102
|
isValidMenu: boolean;
|
|
19739
19103
|
latestMenuSyncAt: string | null;
|
|
19740
19104
|
latestMenuCheckAt: string | null;
|
|
19741
|
-
currentMenuVersion:
|
|
19742
|
-
id: string;
|
|
19743
|
-
createdAt: string;
|
|
19744
|
-
updatedAt: string;
|
|
19745
|
-
contentUrl: string;
|
|
19746
|
-
filePath: string;
|
|
19747
|
-
} | null;
|
|
19105
|
+
currentMenuVersion: string | null;
|
|
19748
19106
|
salesMode: string | null;
|
|
19749
19107
|
tagsForImport?: string[] | undefined;
|
|
19750
19108
|
}>;
|
|
@@ -21668,25 +21026,7 @@ declare const integrationDeliverooSchema: z.ZodObject<Omit<{
|
|
|
21668
21026
|
isValidMenu: z.ZodBoolean;
|
|
21669
21027
|
latestMenuSyncAt: z.ZodNullable<z.ZodEffects<z.ZodString, string, string>>;
|
|
21670
21028
|
latestMenuCheckAt: z.ZodNullable<z.ZodEffects<z.ZodString, string, string>>;
|
|
21671
|
-
currentMenuVersion: z.ZodNullable<z.
|
|
21672
|
-
id: z.ZodString;
|
|
21673
|
-
contentUrl: z.ZodString;
|
|
21674
|
-
filePath: z.ZodString;
|
|
21675
|
-
createdAt: z.ZodEffects<z.ZodString, string, string>;
|
|
21676
|
-
updatedAt: z.ZodEffects<z.ZodString, string, string>;
|
|
21677
|
-
}, "strip", z.ZodTypeAny, {
|
|
21678
|
-
id: string;
|
|
21679
|
-
createdAt: string;
|
|
21680
|
-
updatedAt: string;
|
|
21681
|
-
contentUrl: string;
|
|
21682
|
-
filePath: string;
|
|
21683
|
-
}, {
|
|
21684
|
-
id: string;
|
|
21685
|
-
createdAt: string;
|
|
21686
|
-
updatedAt: string;
|
|
21687
|
-
contentUrl: string;
|
|
21688
|
-
filePath: string;
|
|
21689
|
-
}>>;
|
|
21029
|
+
currentMenuVersion: z.ZodUnion<[z.ZodEffects<z.ZodNullable<z.ZodString>, string | null, string | null>, z.ZodEffects<z.ZodNullable<z.ZodString>, string | null, string | null>, z.ZodEffects<z.ZodNullable<z.ZodString>, string | null, string | null>]>;
|
|
21690
21030
|
salesMode: z.ZodEffects<z.ZodNullable<z.ZodString>, string | null, string | null>;
|
|
21691
21031
|
} & {
|
|
21692
21032
|
brandId: z.ZodString;
|
|
@@ -21714,13 +21054,7 @@ declare const integrationDeliverooSchema: z.ZodObject<Omit<{
|
|
|
21714
21054
|
isValidMenu: boolean;
|
|
21715
21055
|
latestMenuSyncAt: string | null;
|
|
21716
21056
|
latestMenuCheckAt: string | null;
|
|
21717
|
-
currentMenuVersion:
|
|
21718
|
-
id: string;
|
|
21719
|
-
createdAt: string;
|
|
21720
|
-
updatedAt: string;
|
|
21721
|
-
contentUrl: string;
|
|
21722
|
-
filePath: string;
|
|
21723
|
-
} | null;
|
|
21057
|
+
currentMenuVersion: string | null;
|
|
21724
21058
|
salesMode: string | null;
|
|
21725
21059
|
imageMenuUrl: string | null;
|
|
21726
21060
|
latestOpeningHoursSyncAt: string | null;
|
|
@@ -21745,13 +21079,7 @@ declare const integrationDeliverooSchema: z.ZodObject<Omit<{
|
|
|
21745
21079
|
isValidMenu: boolean;
|
|
21746
21080
|
latestMenuSyncAt: string | null;
|
|
21747
21081
|
latestMenuCheckAt: string | null;
|
|
21748
|
-
currentMenuVersion:
|
|
21749
|
-
id: string;
|
|
21750
|
-
createdAt: string;
|
|
21751
|
-
updatedAt: string;
|
|
21752
|
-
contentUrl: string;
|
|
21753
|
-
filePath: string;
|
|
21754
|
-
} | null;
|
|
21082
|
+
currentMenuVersion: string | null;
|
|
21755
21083
|
salesMode: string | null;
|
|
21756
21084
|
imageMenuUrl: string | null;
|
|
21757
21085
|
latestOpeningHoursSyncAt: string | null;
|
|
@@ -21778,25 +21106,7 @@ declare const integrationDeliverooDetailsSchema: z.ZodObject<Omit<{
|
|
|
21778
21106
|
isValidMenu: z.ZodBoolean;
|
|
21779
21107
|
latestMenuSyncAt: z.ZodNullable<z.ZodEffects<z.ZodString, string, string>>;
|
|
21780
21108
|
latestMenuCheckAt: z.ZodNullable<z.ZodEffects<z.ZodString, string, string>>;
|
|
21781
|
-
currentMenuVersion: z.ZodNullable<z.
|
|
21782
|
-
id: z.ZodString;
|
|
21783
|
-
contentUrl: z.ZodString;
|
|
21784
|
-
filePath: z.ZodString;
|
|
21785
|
-
createdAt: z.ZodEffects<z.ZodString, string, string>;
|
|
21786
|
-
updatedAt: z.ZodEffects<z.ZodString, string, string>;
|
|
21787
|
-
}, "strip", z.ZodTypeAny, {
|
|
21788
|
-
id: string;
|
|
21789
|
-
createdAt: string;
|
|
21790
|
-
updatedAt: string;
|
|
21791
|
-
contentUrl: string;
|
|
21792
|
-
filePath: string;
|
|
21793
|
-
}, {
|
|
21794
|
-
id: string;
|
|
21795
|
-
createdAt: string;
|
|
21796
|
-
updatedAt: string;
|
|
21797
|
-
contentUrl: string;
|
|
21798
|
-
filePath: string;
|
|
21799
|
-
}>>;
|
|
21109
|
+
currentMenuVersion: z.ZodUnion<[z.ZodEffects<z.ZodNullable<z.ZodString>, string | null, string | null>, z.ZodEffects<z.ZodNullable<z.ZodString>, string | null, string | null>, z.ZodEffects<z.ZodNullable<z.ZodString>, string | null, string | null>]>;
|
|
21800
21110
|
salesMode: z.ZodEffects<z.ZodNullable<z.ZodString>, string | null, string | null>;
|
|
21801
21111
|
} & {
|
|
21802
21112
|
brandId: z.ZodString;
|
|
@@ -21827,13 +21137,7 @@ declare const integrationDeliverooDetailsSchema: z.ZodObject<Omit<{
|
|
|
21827
21137
|
isValidMenu: boolean;
|
|
21828
21138
|
latestMenuSyncAt: string | null;
|
|
21829
21139
|
latestMenuCheckAt: string | null;
|
|
21830
|
-
currentMenuVersion:
|
|
21831
|
-
id: string;
|
|
21832
|
-
createdAt: string;
|
|
21833
|
-
updatedAt: string;
|
|
21834
|
-
contentUrl: string;
|
|
21835
|
-
filePath: string;
|
|
21836
|
-
} | null;
|
|
21140
|
+
currentMenuVersion: string | null;
|
|
21837
21141
|
salesMode: string | null;
|
|
21838
21142
|
imageMenuUrl: string | null;
|
|
21839
21143
|
latestOpeningHoursSyncAt: string | null;
|
|
@@ -21859,13 +21163,7 @@ declare const integrationDeliverooDetailsSchema: z.ZodObject<Omit<{
|
|
|
21859
21163
|
isValidMenu: boolean;
|
|
21860
21164
|
latestMenuSyncAt: string | null;
|
|
21861
21165
|
latestMenuCheckAt: string | null;
|
|
21862
|
-
currentMenuVersion:
|
|
21863
|
-
id: string;
|
|
21864
|
-
createdAt: string;
|
|
21865
|
-
updatedAt: string;
|
|
21866
|
-
contentUrl: string;
|
|
21867
|
-
filePath: string;
|
|
21868
|
-
} | null;
|
|
21166
|
+
currentMenuVersion: string | null;
|
|
21869
21167
|
salesMode: string | null;
|
|
21870
21168
|
imageMenuUrl: string | null;
|
|
21871
21169
|
latestOpeningHoursSyncAt: string | null;
|
|
@@ -21892,25 +21190,7 @@ declare const integrationDeliverooEditableFieldsSchema: z.ZodObject<Pick<Omit<{
|
|
|
21892
21190
|
isValidMenu: z.ZodBoolean;
|
|
21893
21191
|
latestMenuSyncAt: z.ZodNullable<z.ZodEffects<z.ZodString, string, string>>;
|
|
21894
21192
|
latestMenuCheckAt: z.ZodNullable<z.ZodEffects<z.ZodString, string, string>>;
|
|
21895
|
-
currentMenuVersion: z.ZodNullable<z.
|
|
21896
|
-
id: z.ZodString;
|
|
21897
|
-
contentUrl: z.ZodString;
|
|
21898
|
-
filePath: z.ZodString;
|
|
21899
|
-
createdAt: z.ZodEffects<z.ZodString, string, string>;
|
|
21900
|
-
updatedAt: z.ZodEffects<z.ZodString, string, string>;
|
|
21901
|
-
}, "strip", z.ZodTypeAny, {
|
|
21902
|
-
id: string;
|
|
21903
|
-
createdAt: string;
|
|
21904
|
-
updatedAt: string;
|
|
21905
|
-
contentUrl: string;
|
|
21906
|
-
filePath: string;
|
|
21907
|
-
}, {
|
|
21908
|
-
id: string;
|
|
21909
|
-
createdAt: string;
|
|
21910
|
-
updatedAt: string;
|
|
21911
|
-
contentUrl: string;
|
|
21912
|
-
filePath: string;
|
|
21913
|
-
}>>;
|
|
21193
|
+
currentMenuVersion: z.ZodUnion<[z.ZodEffects<z.ZodNullable<z.ZodString>, string | null, string | null>, z.ZodEffects<z.ZodNullable<z.ZodString>, string | null, string | null>, z.ZodEffects<z.ZodNullable<z.ZodString>, string | null, string | null>]>;
|
|
21914
21194
|
salesMode: z.ZodEffects<z.ZodNullable<z.ZodString>, string | null, string | null>;
|
|
21915
21195
|
} & {
|
|
21916
21196
|
brandId: z.ZodString;
|
|
@@ -22082,25 +21362,7 @@ declare const createIntegrationDeliverooInputSchema: z.ZodObject<Pick<Omit<{
|
|
|
22082
21362
|
isValidMenu: z.ZodBoolean;
|
|
22083
21363
|
latestMenuSyncAt: z.ZodNullable<z.ZodEffects<z.ZodString, string, string>>;
|
|
22084
21364
|
latestMenuCheckAt: z.ZodNullable<z.ZodEffects<z.ZodString, string, string>>;
|
|
22085
|
-
currentMenuVersion: z.ZodNullable<z.
|
|
22086
|
-
id: z.ZodString;
|
|
22087
|
-
contentUrl: z.ZodString;
|
|
22088
|
-
filePath: z.ZodString;
|
|
22089
|
-
createdAt: z.ZodEffects<z.ZodString, string, string>;
|
|
22090
|
-
updatedAt: z.ZodEffects<z.ZodString, string, string>;
|
|
22091
|
-
}, "strip", z.ZodTypeAny, {
|
|
22092
|
-
id: string;
|
|
22093
|
-
createdAt: string;
|
|
22094
|
-
updatedAt: string;
|
|
22095
|
-
contentUrl: string;
|
|
22096
|
-
filePath: string;
|
|
22097
|
-
}, {
|
|
22098
|
-
id: string;
|
|
22099
|
-
createdAt: string;
|
|
22100
|
-
updatedAt: string;
|
|
22101
|
-
contentUrl: string;
|
|
22102
|
-
filePath: string;
|
|
22103
|
-
}>>;
|
|
21365
|
+
currentMenuVersion: z.ZodUnion<[z.ZodEffects<z.ZodNullable<z.ZodString>, string | null, string | null>, z.ZodEffects<z.ZodNullable<z.ZodString>, string | null, string | null>, z.ZodEffects<z.ZodNullable<z.ZodString>, string | null, string | null>]>;
|
|
22104
21366
|
salesMode: z.ZodEffects<z.ZodNullable<z.ZodString>, string | null, string | null>;
|
|
22105
21367
|
} & {
|
|
22106
21368
|
brandId: z.ZodString;
|
|
@@ -22158,25 +21420,7 @@ declare const createIntegrationDeliverooResponseSchema: z.ZodObject<Omit<{
|
|
|
22158
21420
|
isValidMenu: z.ZodBoolean;
|
|
22159
21421
|
latestMenuSyncAt: z.ZodNullable<z.ZodEffects<z.ZodString, string, string>>;
|
|
22160
21422
|
latestMenuCheckAt: z.ZodNullable<z.ZodEffects<z.ZodString, string, string>>;
|
|
22161
|
-
currentMenuVersion: z.ZodNullable<z.
|
|
22162
|
-
id: z.ZodString;
|
|
22163
|
-
contentUrl: z.ZodString;
|
|
22164
|
-
filePath: z.ZodString;
|
|
22165
|
-
createdAt: z.ZodEffects<z.ZodString, string, string>;
|
|
22166
|
-
updatedAt: z.ZodEffects<z.ZodString, string, string>;
|
|
22167
|
-
}, "strip", z.ZodTypeAny, {
|
|
22168
|
-
id: string;
|
|
22169
|
-
createdAt: string;
|
|
22170
|
-
updatedAt: string;
|
|
22171
|
-
contentUrl: string;
|
|
22172
|
-
filePath: string;
|
|
22173
|
-
}, {
|
|
22174
|
-
id: string;
|
|
22175
|
-
createdAt: string;
|
|
22176
|
-
updatedAt: string;
|
|
22177
|
-
contentUrl: string;
|
|
22178
|
-
filePath: string;
|
|
22179
|
-
}>>;
|
|
21423
|
+
currentMenuVersion: z.ZodUnion<[z.ZodEffects<z.ZodNullable<z.ZodString>, string | null, string | null>, z.ZodEffects<z.ZodNullable<z.ZodString>, string | null, string | null>, z.ZodEffects<z.ZodNullable<z.ZodString>, string | null, string | null>]>;
|
|
22180
21424
|
salesMode: z.ZodEffects<z.ZodNullable<z.ZodString>, string | null, string | null>;
|
|
22181
21425
|
} & {
|
|
22182
21426
|
brandId: z.ZodString;
|
|
@@ -22207,13 +21451,7 @@ declare const createIntegrationDeliverooResponseSchema: z.ZodObject<Omit<{
|
|
|
22207
21451
|
isValidMenu: boolean;
|
|
22208
21452
|
latestMenuSyncAt: string | null;
|
|
22209
21453
|
latestMenuCheckAt: string | null;
|
|
22210
|
-
currentMenuVersion:
|
|
22211
|
-
id: string;
|
|
22212
|
-
createdAt: string;
|
|
22213
|
-
updatedAt: string;
|
|
22214
|
-
contentUrl: string;
|
|
22215
|
-
filePath: string;
|
|
22216
|
-
} | null;
|
|
21454
|
+
currentMenuVersion: string | null;
|
|
22217
21455
|
salesMode: string | null;
|
|
22218
21456
|
imageMenuUrl: string | null;
|
|
22219
21457
|
latestOpeningHoursSyncAt: string | null;
|
|
@@ -22239,13 +21477,7 @@ declare const createIntegrationDeliverooResponseSchema: z.ZodObject<Omit<{
|
|
|
22239
21477
|
isValidMenu: boolean;
|
|
22240
21478
|
latestMenuSyncAt: string | null;
|
|
22241
21479
|
latestMenuCheckAt: string | null;
|
|
22242
|
-
currentMenuVersion:
|
|
22243
|
-
id: string;
|
|
22244
|
-
createdAt: string;
|
|
22245
|
-
updatedAt: string;
|
|
22246
|
-
contentUrl: string;
|
|
22247
|
-
filePath: string;
|
|
22248
|
-
} | null;
|
|
21480
|
+
currentMenuVersion: string | null;
|
|
22249
21481
|
salesMode: string | null;
|
|
22250
21482
|
imageMenuUrl: string | null;
|
|
22251
21483
|
latestOpeningHoursSyncAt: string | null;
|
|
@@ -22276,25 +21508,7 @@ declare class CreateIntegrationDeliveroo extends AbstractApiRequest<CreateIntegr
|
|
|
22276
21508
|
isValidMenu: z.ZodBoolean;
|
|
22277
21509
|
latestMenuSyncAt: z.ZodNullable<z.ZodEffects<z.ZodString, string, string>>;
|
|
22278
21510
|
latestMenuCheckAt: z.ZodNullable<z.ZodEffects<z.ZodString, string, string>>;
|
|
22279
|
-
currentMenuVersion: z.ZodNullable<z.
|
|
22280
|
-
id: z.ZodString;
|
|
22281
|
-
contentUrl: z.ZodString;
|
|
22282
|
-
filePath: z.ZodString;
|
|
22283
|
-
createdAt: z.ZodEffects<z.ZodString, string, string>;
|
|
22284
|
-
updatedAt: z.ZodEffects<z.ZodString, string, string>;
|
|
22285
|
-
}, "strip", z.ZodTypeAny, {
|
|
22286
|
-
id: string;
|
|
22287
|
-
createdAt: string;
|
|
22288
|
-
updatedAt: string;
|
|
22289
|
-
contentUrl: string;
|
|
22290
|
-
filePath: string;
|
|
22291
|
-
}, {
|
|
22292
|
-
id: string;
|
|
22293
|
-
createdAt: string;
|
|
22294
|
-
updatedAt: string;
|
|
22295
|
-
contentUrl: string;
|
|
22296
|
-
filePath: string;
|
|
22297
|
-
}>>;
|
|
21511
|
+
currentMenuVersion: z.ZodUnion<[z.ZodEffects<z.ZodNullable<z.ZodString>, string | null, string | null>, z.ZodEffects<z.ZodNullable<z.ZodString>, string | null, string | null>, z.ZodEffects<z.ZodNullable<z.ZodString>, string | null, string | null>]>;
|
|
22298
21512
|
salesMode: z.ZodEffects<z.ZodNullable<z.ZodString>, string | null, string | null>;
|
|
22299
21513
|
} & {
|
|
22300
21514
|
brandId: z.ZodString;
|
|
@@ -22351,25 +21565,7 @@ declare class CreateIntegrationDeliveroo extends AbstractApiRequest<CreateIntegr
|
|
|
22351
21565
|
isValidMenu: z.ZodBoolean;
|
|
22352
21566
|
latestMenuSyncAt: z.ZodNullable<z.ZodEffects<z.ZodString, string, string>>;
|
|
22353
21567
|
latestMenuCheckAt: z.ZodNullable<z.ZodEffects<z.ZodString, string, string>>;
|
|
22354
|
-
currentMenuVersion: z.ZodNullable<z.
|
|
22355
|
-
id: z.ZodString;
|
|
22356
|
-
contentUrl: z.ZodString;
|
|
22357
|
-
filePath: z.ZodString;
|
|
22358
|
-
createdAt: z.ZodEffects<z.ZodString, string, string>;
|
|
22359
|
-
updatedAt: z.ZodEffects<z.ZodString, string, string>;
|
|
22360
|
-
}, "strip", z.ZodTypeAny, {
|
|
22361
|
-
id: string;
|
|
22362
|
-
createdAt: string;
|
|
22363
|
-
updatedAt: string;
|
|
22364
|
-
contentUrl: string;
|
|
22365
|
-
filePath: string;
|
|
22366
|
-
}, {
|
|
22367
|
-
id: string;
|
|
22368
|
-
createdAt: string;
|
|
22369
|
-
updatedAt: string;
|
|
22370
|
-
contentUrl: string;
|
|
22371
|
-
filePath: string;
|
|
22372
|
-
}>>;
|
|
21568
|
+
currentMenuVersion: z.ZodUnion<[z.ZodEffects<z.ZodNullable<z.ZodString>, string | null, string | null>, z.ZodEffects<z.ZodNullable<z.ZodString>, string | null, string | null>, z.ZodEffects<z.ZodNullable<z.ZodString>, string | null, string | null>]>;
|
|
22373
21569
|
salesMode: z.ZodEffects<z.ZodNullable<z.ZodString>, string | null, string | null>;
|
|
22374
21570
|
} & {
|
|
22375
21571
|
brandId: z.ZodString;
|
|
@@ -22400,13 +21596,7 @@ declare class CreateIntegrationDeliveroo extends AbstractApiRequest<CreateIntegr
|
|
|
22400
21596
|
isValidMenu: boolean;
|
|
22401
21597
|
latestMenuSyncAt: string | null;
|
|
22402
21598
|
latestMenuCheckAt: string | null;
|
|
22403
|
-
currentMenuVersion:
|
|
22404
|
-
id: string;
|
|
22405
|
-
createdAt: string;
|
|
22406
|
-
updatedAt: string;
|
|
22407
|
-
contentUrl: string;
|
|
22408
|
-
filePath: string;
|
|
22409
|
-
} | null;
|
|
21599
|
+
currentMenuVersion: string | null;
|
|
22410
21600
|
salesMode: string | null;
|
|
22411
21601
|
imageMenuUrl: string | null;
|
|
22412
21602
|
latestOpeningHoursSyncAt: string | null;
|
|
@@ -22432,13 +21622,7 @@ declare class CreateIntegrationDeliveroo extends AbstractApiRequest<CreateIntegr
|
|
|
22432
21622
|
isValidMenu: boolean;
|
|
22433
21623
|
latestMenuSyncAt: string | null;
|
|
22434
21624
|
latestMenuCheckAt: string | null;
|
|
22435
|
-
currentMenuVersion:
|
|
22436
|
-
id: string;
|
|
22437
|
-
createdAt: string;
|
|
22438
|
-
updatedAt: string;
|
|
22439
|
-
contentUrl: string;
|
|
22440
|
-
filePath: string;
|
|
22441
|
-
} | null;
|
|
21625
|
+
currentMenuVersion: string | null;
|
|
22442
21626
|
salesMode: string | null;
|
|
22443
21627
|
imageMenuUrl: string | null;
|
|
22444
21628
|
latestOpeningHoursSyncAt: string | null;
|
|
@@ -22824,25 +22008,7 @@ declare const getIntegrationDeliverooDetailsResponseSchema: z.ZodObject<Omit<{
|
|
|
22824
22008
|
isValidMenu: z.ZodBoolean;
|
|
22825
22009
|
latestMenuSyncAt: z.ZodNullable<z.ZodEffects<z.ZodString, string, string>>;
|
|
22826
22010
|
latestMenuCheckAt: z.ZodNullable<z.ZodEffects<z.ZodString, string, string>>;
|
|
22827
|
-
currentMenuVersion: z.ZodNullable<z.
|
|
22828
|
-
id: z.ZodString;
|
|
22829
|
-
contentUrl: z.ZodString;
|
|
22830
|
-
filePath: z.ZodString;
|
|
22831
|
-
createdAt: z.ZodEffects<z.ZodString, string, string>;
|
|
22832
|
-
updatedAt: z.ZodEffects<z.ZodString, string, string>;
|
|
22833
|
-
}, "strip", z.ZodTypeAny, {
|
|
22834
|
-
id: string;
|
|
22835
|
-
createdAt: string;
|
|
22836
|
-
updatedAt: string;
|
|
22837
|
-
contentUrl: string;
|
|
22838
|
-
filePath: string;
|
|
22839
|
-
}, {
|
|
22840
|
-
id: string;
|
|
22841
|
-
createdAt: string;
|
|
22842
|
-
updatedAt: string;
|
|
22843
|
-
contentUrl: string;
|
|
22844
|
-
filePath: string;
|
|
22845
|
-
}>>;
|
|
22011
|
+
currentMenuVersion: z.ZodUnion<[z.ZodEffects<z.ZodNullable<z.ZodString>, string | null, string | null>, z.ZodEffects<z.ZodNullable<z.ZodString>, string | null, string | null>, z.ZodEffects<z.ZodNullable<z.ZodString>, string | null, string | null>]>;
|
|
22846
22012
|
salesMode: z.ZodEffects<z.ZodNullable<z.ZodString>, string | null, string | null>;
|
|
22847
22013
|
} & {
|
|
22848
22014
|
brandId: z.ZodString;
|
|
@@ -22873,13 +22039,7 @@ declare const getIntegrationDeliverooDetailsResponseSchema: z.ZodObject<Omit<{
|
|
|
22873
22039
|
isValidMenu: boolean;
|
|
22874
22040
|
latestMenuSyncAt: string | null;
|
|
22875
22041
|
latestMenuCheckAt: string | null;
|
|
22876
|
-
currentMenuVersion:
|
|
22877
|
-
id: string;
|
|
22878
|
-
createdAt: string;
|
|
22879
|
-
updatedAt: string;
|
|
22880
|
-
contentUrl: string;
|
|
22881
|
-
filePath: string;
|
|
22882
|
-
} | null;
|
|
22042
|
+
currentMenuVersion: string | null;
|
|
22883
22043
|
salesMode: string | null;
|
|
22884
22044
|
imageMenuUrl: string | null;
|
|
22885
22045
|
latestOpeningHoursSyncAt: string | null;
|
|
@@ -22905,13 +22065,7 @@ declare const getIntegrationDeliverooDetailsResponseSchema: z.ZodObject<Omit<{
|
|
|
22905
22065
|
isValidMenu: boolean;
|
|
22906
22066
|
latestMenuSyncAt: string | null;
|
|
22907
22067
|
latestMenuCheckAt: string | null;
|
|
22908
|
-
currentMenuVersion:
|
|
22909
|
-
id: string;
|
|
22910
|
-
createdAt: string;
|
|
22911
|
-
updatedAt: string;
|
|
22912
|
-
contentUrl: string;
|
|
22913
|
-
filePath: string;
|
|
22914
|
-
} | null;
|
|
22068
|
+
currentMenuVersion: string | null;
|
|
22915
22069
|
salesMode: string | null;
|
|
22916
22070
|
imageMenuUrl: string | null;
|
|
22917
22071
|
latestOpeningHoursSyncAt: string | null;
|
|
@@ -22943,25 +22097,7 @@ declare class GetIntegrationDeliverooDetails extends AbstractApiRequest<void, Ge
|
|
|
22943
22097
|
isValidMenu: z.ZodBoolean;
|
|
22944
22098
|
latestMenuSyncAt: z.ZodNullable<z.ZodEffects<z.ZodString, string, string>>;
|
|
22945
22099
|
latestMenuCheckAt: z.ZodNullable<z.ZodEffects<z.ZodString, string, string>>;
|
|
22946
|
-
currentMenuVersion: z.ZodNullable<z.
|
|
22947
|
-
id: z.ZodString;
|
|
22948
|
-
contentUrl: z.ZodString;
|
|
22949
|
-
filePath: z.ZodString;
|
|
22950
|
-
createdAt: z.ZodEffects<z.ZodString, string, string>;
|
|
22951
|
-
updatedAt: z.ZodEffects<z.ZodString, string, string>;
|
|
22952
|
-
}, "strip", z.ZodTypeAny, {
|
|
22953
|
-
id: string;
|
|
22954
|
-
createdAt: string;
|
|
22955
|
-
updatedAt: string;
|
|
22956
|
-
contentUrl: string;
|
|
22957
|
-
filePath: string;
|
|
22958
|
-
}, {
|
|
22959
|
-
id: string;
|
|
22960
|
-
createdAt: string;
|
|
22961
|
-
updatedAt: string;
|
|
22962
|
-
contentUrl: string;
|
|
22963
|
-
filePath: string;
|
|
22964
|
-
}>>;
|
|
22100
|
+
currentMenuVersion: z.ZodUnion<[z.ZodEffects<z.ZodNullable<z.ZodString>, string | null, string | null>, z.ZodEffects<z.ZodNullable<z.ZodString>, string | null, string | null>, z.ZodEffects<z.ZodNullable<z.ZodString>, string | null, string | null>]>;
|
|
22965
22101
|
salesMode: z.ZodEffects<z.ZodNullable<z.ZodString>, string | null, string | null>;
|
|
22966
22102
|
} & {
|
|
22967
22103
|
brandId: z.ZodString;
|
|
@@ -22992,13 +22128,7 @@ declare class GetIntegrationDeliverooDetails extends AbstractApiRequest<void, Ge
|
|
|
22992
22128
|
isValidMenu: boolean;
|
|
22993
22129
|
latestMenuSyncAt: string | null;
|
|
22994
22130
|
latestMenuCheckAt: string | null;
|
|
22995
|
-
currentMenuVersion:
|
|
22996
|
-
id: string;
|
|
22997
|
-
createdAt: string;
|
|
22998
|
-
updatedAt: string;
|
|
22999
|
-
contentUrl: string;
|
|
23000
|
-
filePath: string;
|
|
23001
|
-
} | null;
|
|
22131
|
+
currentMenuVersion: string | null;
|
|
23002
22132
|
salesMode: string | null;
|
|
23003
22133
|
imageMenuUrl: string | null;
|
|
23004
22134
|
latestOpeningHoursSyncAt: string | null;
|
|
@@ -23024,13 +22154,7 @@ declare class GetIntegrationDeliverooDetails extends AbstractApiRequest<void, Ge
|
|
|
23024
22154
|
isValidMenu: boolean;
|
|
23025
22155
|
latestMenuSyncAt: string | null;
|
|
23026
22156
|
latestMenuCheckAt: string | null;
|
|
23027
|
-
currentMenuVersion:
|
|
23028
|
-
id: string;
|
|
23029
|
-
createdAt: string;
|
|
23030
|
-
updatedAt: string;
|
|
23031
|
-
contentUrl: string;
|
|
23032
|
-
filePath: string;
|
|
23033
|
-
} | null;
|
|
22157
|
+
currentMenuVersion: string | null;
|
|
23034
22158
|
salesMode: string | null;
|
|
23035
22159
|
imageMenuUrl: string | null;
|
|
23036
22160
|
latestOpeningHoursSyncAt: string | null;
|
|
@@ -23174,33 +22298,15 @@ declare const getIntegrationDeliverooListResponseSchema: z.ZodObject<{
|
|
|
23174
22298
|
createdAt: z.ZodEffects<z.ZodString, string, string>;
|
|
23175
22299
|
updatedAt: z.ZodEffects<z.ZodString, string, string>;
|
|
23176
22300
|
}, "service"> & {
|
|
23177
|
-
name: z.ZodString;
|
|
23178
|
-
skipInvalidItem: z.ZodBoolean;
|
|
23179
|
-
skipNegativePrices: z.ZodBoolean;
|
|
23180
|
-
importTaggedItems: z.ZodBoolean;
|
|
23181
|
-
tagsForImport: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
23182
|
-
isValidMenu: z.ZodBoolean;
|
|
23183
|
-
latestMenuSyncAt: z.ZodNullable<z.ZodEffects<z.ZodString, string, string>>;
|
|
23184
|
-
latestMenuCheckAt: z.ZodNullable<z.ZodEffects<z.ZodString, string, string>>;
|
|
23185
|
-
currentMenuVersion: z.ZodNullable<z.
|
|
23186
|
-
id: z.ZodString;
|
|
23187
|
-
contentUrl: z.ZodString;
|
|
23188
|
-
filePath: z.ZodString;
|
|
23189
|
-
createdAt: z.ZodEffects<z.ZodString, string, string>;
|
|
23190
|
-
updatedAt: z.ZodEffects<z.ZodString, string, string>;
|
|
23191
|
-
}, "strip", z.ZodTypeAny, {
|
|
23192
|
-
id: string;
|
|
23193
|
-
createdAt: string;
|
|
23194
|
-
updatedAt: string;
|
|
23195
|
-
contentUrl: string;
|
|
23196
|
-
filePath: string;
|
|
23197
|
-
}, {
|
|
23198
|
-
id: string;
|
|
23199
|
-
createdAt: string;
|
|
23200
|
-
updatedAt: string;
|
|
23201
|
-
contentUrl: string;
|
|
23202
|
-
filePath: string;
|
|
23203
|
-
}>>;
|
|
22301
|
+
name: z.ZodString;
|
|
22302
|
+
skipInvalidItem: z.ZodBoolean;
|
|
22303
|
+
skipNegativePrices: z.ZodBoolean;
|
|
22304
|
+
importTaggedItems: z.ZodBoolean;
|
|
22305
|
+
tagsForImport: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
22306
|
+
isValidMenu: z.ZodBoolean;
|
|
22307
|
+
latestMenuSyncAt: z.ZodNullable<z.ZodEffects<z.ZodString, string, string>>;
|
|
22308
|
+
latestMenuCheckAt: z.ZodNullable<z.ZodEffects<z.ZodString, string, string>>;
|
|
22309
|
+
currentMenuVersion: z.ZodUnion<[z.ZodEffects<z.ZodNullable<z.ZodString>, string | null, string | null>, z.ZodEffects<z.ZodNullable<z.ZodString>, string | null, string | null>, z.ZodEffects<z.ZodNullable<z.ZodString>, string | null, string | null>]>;
|
|
23204
22310
|
salesMode: z.ZodEffects<z.ZodNullable<z.ZodString>, string | null, string | null>;
|
|
23205
22311
|
} & {
|
|
23206
22312
|
brandId: z.ZodString;
|
|
@@ -23228,13 +22334,7 @@ declare const getIntegrationDeliverooListResponseSchema: z.ZodObject<{
|
|
|
23228
22334
|
isValidMenu: boolean;
|
|
23229
22335
|
latestMenuSyncAt: string | null;
|
|
23230
22336
|
latestMenuCheckAt: string | null;
|
|
23231
|
-
currentMenuVersion:
|
|
23232
|
-
id: string;
|
|
23233
|
-
createdAt: string;
|
|
23234
|
-
updatedAt: string;
|
|
23235
|
-
contentUrl: string;
|
|
23236
|
-
filePath: string;
|
|
23237
|
-
} | null;
|
|
22337
|
+
currentMenuVersion: string | null;
|
|
23238
22338
|
salesMode: string | null;
|
|
23239
22339
|
imageMenuUrl: string | null;
|
|
23240
22340
|
latestOpeningHoursSyncAt: string | null;
|
|
@@ -23259,13 +22359,7 @@ declare const getIntegrationDeliverooListResponseSchema: z.ZodObject<{
|
|
|
23259
22359
|
isValidMenu: boolean;
|
|
23260
22360
|
latestMenuSyncAt: string | null;
|
|
23261
22361
|
latestMenuCheckAt: string | null;
|
|
23262
|
-
currentMenuVersion:
|
|
23263
|
-
id: string;
|
|
23264
|
-
createdAt: string;
|
|
23265
|
-
updatedAt: string;
|
|
23266
|
-
contentUrl: string;
|
|
23267
|
-
filePath: string;
|
|
23268
|
-
} | null;
|
|
22362
|
+
currentMenuVersion: string | null;
|
|
23269
22363
|
salesMode: string | null;
|
|
23270
22364
|
imageMenuUrl: string | null;
|
|
23271
22365
|
latestOpeningHoursSyncAt: string | null;
|
|
@@ -23314,13 +22408,7 @@ declare const getIntegrationDeliverooListResponseSchema: z.ZodObject<{
|
|
|
23314
22408
|
isValidMenu: boolean;
|
|
23315
22409
|
latestMenuSyncAt: string | null;
|
|
23316
22410
|
latestMenuCheckAt: string | null;
|
|
23317
|
-
currentMenuVersion:
|
|
23318
|
-
id: string;
|
|
23319
|
-
createdAt: string;
|
|
23320
|
-
updatedAt: string;
|
|
23321
|
-
contentUrl: string;
|
|
23322
|
-
filePath: string;
|
|
23323
|
-
} | null;
|
|
22411
|
+
currentMenuVersion: string | null;
|
|
23324
22412
|
salesMode: string | null;
|
|
23325
22413
|
imageMenuUrl: string | null;
|
|
23326
22414
|
latestOpeningHoursSyncAt: string | null;
|
|
@@ -23355,13 +22443,7 @@ declare const getIntegrationDeliverooListResponseSchema: z.ZodObject<{
|
|
|
23355
22443
|
isValidMenu: boolean;
|
|
23356
22444
|
latestMenuSyncAt: string | null;
|
|
23357
22445
|
latestMenuCheckAt: string | null;
|
|
23358
|
-
currentMenuVersion:
|
|
23359
|
-
id: string;
|
|
23360
|
-
createdAt: string;
|
|
23361
|
-
updatedAt: string;
|
|
23362
|
-
contentUrl: string;
|
|
23363
|
-
filePath: string;
|
|
23364
|
-
} | null;
|
|
22446
|
+
currentMenuVersion: string | null;
|
|
23365
22447
|
salesMode: string | null;
|
|
23366
22448
|
imageMenuUrl: string | null;
|
|
23367
22449
|
latestOpeningHoursSyncAt: string | null;
|
|
@@ -23404,25 +22486,7 @@ declare class GetIntegrationDeliverooList extends AbstractApiRequest<void, GetIn
|
|
|
23404
22486
|
isValidMenu: z.ZodBoolean;
|
|
23405
22487
|
latestMenuSyncAt: z.ZodNullable<z.ZodEffects<z.ZodString, string, string>>;
|
|
23406
22488
|
latestMenuCheckAt: z.ZodNullable<z.ZodEffects<z.ZodString, string, string>>;
|
|
23407
|
-
currentMenuVersion: z.ZodNullable<z.
|
|
23408
|
-
id: z.ZodString;
|
|
23409
|
-
contentUrl: z.ZodString;
|
|
23410
|
-
filePath: z.ZodString;
|
|
23411
|
-
createdAt: z.ZodEffects<z.ZodString, string, string>;
|
|
23412
|
-
updatedAt: z.ZodEffects<z.ZodString, string, string>;
|
|
23413
|
-
}, "strip", z.ZodTypeAny, {
|
|
23414
|
-
id: string;
|
|
23415
|
-
createdAt: string;
|
|
23416
|
-
updatedAt: string;
|
|
23417
|
-
contentUrl: string;
|
|
23418
|
-
filePath: string;
|
|
23419
|
-
}, {
|
|
23420
|
-
id: string;
|
|
23421
|
-
createdAt: string;
|
|
23422
|
-
updatedAt: string;
|
|
23423
|
-
contentUrl: string;
|
|
23424
|
-
filePath: string;
|
|
23425
|
-
}>>;
|
|
22489
|
+
currentMenuVersion: z.ZodUnion<[z.ZodEffects<z.ZodNullable<z.ZodString>, string | null, string | null>, z.ZodEffects<z.ZodNullable<z.ZodString>, string | null, string | null>, z.ZodEffects<z.ZodNullable<z.ZodString>, string | null, string | null>]>;
|
|
23426
22490
|
salesMode: z.ZodEffects<z.ZodNullable<z.ZodString>, string | null, string | null>;
|
|
23427
22491
|
} & {
|
|
23428
22492
|
brandId: z.ZodString;
|
|
@@ -23450,13 +22514,7 @@ declare class GetIntegrationDeliverooList extends AbstractApiRequest<void, GetIn
|
|
|
23450
22514
|
isValidMenu: boolean;
|
|
23451
22515
|
latestMenuSyncAt: string | null;
|
|
23452
22516
|
latestMenuCheckAt: string | null;
|
|
23453
|
-
currentMenuVersion:
|
|
23454
|
-
id: string;
|
|
23455
|
-
createdAt: string;
|
|
23456
|
-
updatedAt: string;
|
|
23457
|
-
contentUrl: string;
|
|
23458
|
-
filePath: string;
|
|
23459
|
-
} | null;
|
|
22517
|
+
currentMenuVersion: string | null;
|
|
23460
22518
|
salesMode: string | null;
|
|
23461
22519
|
imageMenuUrl: string | null;
|
|
23462
22520
|
latestOpeningHoursSyncAt: string | null;
|
|
@@ -23481,13 +22539,7 @@ declare class GetIntegrationDeliverooList extends AbstractApiRequest<void, GetIn
|
|
|
23481
22539
|
isValidMenu: boolean;
|
|
23482
22540
|
latestMenuSyncAt: string | null;
|
|
23483
22541
|
latestMenuCheckAt: string | null;
|
|
23484
|
-
currentMenuVersion:
|
|
23485
|
-
id: string;
|
|
23486
|
-
createdAt: string;
|
|
23487
|
-
updatedAt: string;
|
|
23488
|
-
contentUrl: string;
|
|
23489
|
-
filePath: string;
|
|
23490
|
-
} | null;
|
|
22542
|
+
currentMenuVersion: string | null;
|
|
23491
22543
|
salesMode: string | null;
|
|
23492
22544
|
imageMenuUrl: string | null;
|
|
23493
22545
|
latestOpeningHoursSyncAt: string | null;
|
|
@@ -23536,13 +22588,7 @@ declare class GetIntegrationDeliverooList extends AbstractApiRequest<void, GetIn
|
|
|
23536
22588
|
isValidMenu: boolean;
|
|
23537
22589
|
latestMenuSyncAt: string | null;
|
|
23538
22590
|
latestMenuCheckAt: string | null;
|
|
23539
|
-
currentMenuVersion:
|
|
23540
|
-
id: string;
|
|
23541
|
-
createdAt: string;
|
|
23542
|
-
updatedAt: string;
|
|
23543
|
-
contentUrl: string;
|
|
23544
|
-
filePath: string;
|
|
23545
|
-
} | null;
|
|
22591
|
+
currentMenuVersion: string | null;
|
|
23546
22592
|
salesMode: string | null;
|
|
23547
22593
|
imageMenuUrl: string | null;
|
|
23548
22594
|
latestOpeningHoursSyncAt: string | null;
|
|
@@ -23577,13 +22623,7 @@ declare class GetIntegrationDeliverooList extends AbstractApiRequest<void, GetIn
|
|
|
23577
22623
|
isValidMenu: boolean;
|
|
23578
22624
|
latestMenuSyncAt: string | null;
|
|
23579
22625
|
latestMenuCheckAt: string | null;
|
|
23580
|
-
currentMenuVersion:
|
|
23581
|
-
id: string;
|
|
23582
|
-
createdAt: string;
|
|
23583
|
-
updatedAt: string;
|
|
23584
|
-
contentUrl: string;
|
|
23585
|
-
filePath: string;
|
|
23586
|
-
} | null;
|
|
22626
|
+
currentMenuVersion: string | null;
|
|
23587
22627
|
salesMode: string | null;
|
|
23588
22628
|
imageMenuUrl: string | null;
|
|
23589
22629
|
latestOpeningHoursSyncAt: string | null;
|
|
@@ -24541,25 +23581,7 @@ declare const updateIntegrationDeliverooInputSchema: zod.ZodObject<Pick<Omit<{
|
|
|
24541
23581
|
isValidMenu: zod.ZodBoolean;
|
|
24542
23582
|
latestMenuSyncAt: zod.ZodNullable<zod.ZodEffects<zod.ZodString, string, string>>;
|
|
24543
23583
|
latestMenuCheckAt: zod.ZodNullable<zod.ZodEffects<zod.ZodString, string, string>>;
|
|
24544
|
-
currentMenuVersion: zod.ZodNullable<zod.
|
|
24545
|
-
id: zod.ZodString;
|
|
24546
|
-
contentUrl: zod.ZodString;
|
|
24547
|
-
filePath: zod.ZodString;
|
|
24548
|
-
createdAt: zod.ZodEffects<zod.ZodString, string, string>;
|
|
24549
|
-
updatedAt: zod.ZodEffects<zod.ZodString, string, string>;
|
|
24550
|
-
}, "strip", zod.ZodTypeAny, {
|
|
24551
|
-
id: string;
|
|
24552
|
-
createdAt: string;
|
|
24553
|
-
updatedAt: string;
|
|
24554
|
-
contentUrl: string;
|
|
24555
|
-
filePath: string;
|
|
24556
|
-
}, {
|
|
24557
|
-
id: string;
|
|
24558
|
-
createdAt: string;
|
|
24559
|
-
updatedAt: string;
|
|
24560
|
-
contentUrl: string;
|
|
24561
|
-
filePath: string;
|
|
24562
|
-
}>>;
|
|
23584
|
+
currentMenuVersion: zod.ZodUnion<[zod.ZodEffects<zod.ZodNullable<zod.ZodString>, string | null, string | null>, zod.ZodEffects<zod.ZodNullable<zod.ZodString>, string | null, string | null>, zod.ZodEffects<zod.ZodNullable<zod.ZodString>, string | null, string | null>]>;
|
|
24563
23585
|
salesMode: zod.ZodEffects<zod.ZodNullable<zod.ZodString>, string | null, string | null>;
|
|
24564
23586
|
} & {
|
|
24565
23587
|
brandId: zod.ZodString;
|
|
@@ -24613,25 +23635,7 @@ declare const updateIntegrationDeliverooResponseSchema: zod.ZodObject<Omit<{
|
|
|
24613
23635
|
isValidMenu: zod.ZodBoolean;
|
|
24614
23636
|
latestMenuSyncAt: zod.ZodNullable<zod.ZodEffects<zod.ZodString, string, string>>;
|
|
24615
23637
|
latestMenuCheckAt: zod.ZodNullable<zod.ZodEffects<zod.ZodString, string, string>>;
|
|
24616
|
-
currentMenuVersion: zod.ZodNullable<zod.
|
|
24617
|
-
id: zod.ZodString;
|
|
24618
|
-
contentUrl: zod.ZodString;
|
|
24619
|
-
filePath: zod.ZodString;
|
|
24620
|
-
createdAt: zod.ZodEffects<zod.ZodString, string, string>;
|
|
24621
|
-
updatedAt: zod.ZodEffects<zod.ZodString, string, string>;
|
|
24622
|
-
}, "strip", zod.ZodTypeAny, {
|
|
24623
|
-
id: string;
|
|
24624
|
-
createdAt: string;
|
|
24625
|
-
updatedAt: string;
|
|
24626
|
-
contentUrl: string;
|
|
24627
|
-
filePath: string;
|
|
24628
|
-
}, {
|
|
24629
|
-
id: string;
|
|
24630
|
-
createdAt: string;
|
|
24631
|
-
updatedAt: string;
|
|
24632
|
-
contentUrl: string;
|
|
24633
|
-
filePath: string;
|
|
24634
|
-
}>>;
|
|
23638
|
+
currentMenuVersion: zod.ZodUnion<[zod.ZodEffects<zod.ZodNullable<zod.ZodString>, string | null, string | null>, zod.ZodEffects<zod.ZodNullable<zod.ZodString>, string | null, string | null>, zod.ZodEffects<zod.ZodNullable<zod.ZodString>, string | null, string | null>]>;
|
|
24635
23639
|
salesMode: zod.ZodEffects<zod.ZodNullable<zod.ZodString>, string | null, string | null>;
|
|
24636
23640
|
} & {
|
|
24637
23641
|
brandId: zod.ZodString;
|
|
@@ -24662,13 +23666,7 @@ declare const updateIntegrationDeliverooResponseSchema: zod.ZodObject<Omit<{
|
|
|
24662
23666
|
isValidMenu: boolean;
|
|
24663
23667
|
latestMenuSyncAt: string | null;
|
|
24664
23668
|
latestMenuCheckAt: string | null;
|
|
24665
|
-
currentMenuVersion:
|
|
24666
|
-
id: string;
|
|
24667
|
-
createdAt: string;
|
|
24668
|
-
updatedAt: string;
|
|
24669
|
-
contentUrl: string;
|
|
24670
|
-
filePath: string;
|
|
24671
|
-
} | null;
|
|
23669
|
+
currentMenuVersion: string | null;
|
|
24672
23670
|
salesMode: string | null;
|
|
24673
23671
|
imageMenuUrl: string | null;
|
|
24674
23672
|
latestOpeningHoursSyncAt: string | null;
|
|
@@ -24694,13 +23692,7 @@ declare const updateIntegrationDeliverooResponseSchema: zod.ZodObject<Omit<{
|
|
|
24694
23692
|
isValidMenu: boolean;
|
|
24695
23693
|
latestMenuSyncAt: string | null;
|
|
24696
23694
|
latestMenuCheckAt: string | null;
|
|
24697
|
-
currentMenuVersion:
|
|
24698
|
-
id: string;
|
|
24699
|
-
createdAt: string;
|
|
24700
|
-
updatedAt: string;
|
|
24701
|
-
contentUrl: string;
|
|
24702
|
-
filePath: string;
|
|
24703
|
-
} | null;
|
|
23695
|
+
currentMenuVersion: string | null;
|
|
24704
23696
|
salesMode: string | null;
|
|
24705
23697
|
imageMenuUrl: string | null;
|
|
24706
23698
|
latestOpeningHoursSyncAt: string | null;
|
|
@@ -24731,25 +23723,7 @@ declare class UpdateIntegrationDeliveroo extends AbstractApiRequest<UpdateIntegr
|
|
|
24731
23723
|
isValidMenu: zod.ZodBoolean;
|
|
24732
23724
|
latestMenuSyncAt: zod.ZodNullable<zod.ZodEffects<zod.ZodString, string, string>>;
|
|
24733
23725
|
latestMenuCheckAt: zod.ZodNullable<zod.ZodEffects<zod.ZodString, string, string>>;
|
|
24734
|
-
currentMenuVersion: zod.ZodNullable<zod.
|
|
24735
|
-
id: zod.ZodString;
|
|
24736
|
-
contentUrl: zod.ZodString;
|
|
24737
|
-
filePath: zod.ZodString;
|
|
24738
|
-
createdAt: zod.ZodEffects<zod.ZodString, string, string>;
|
|
24739
|
-
updatedAt: zod.ZodEffects<zod.ZodString, string, string>;
|
|
24740
|
-
}, "strip", zod.ZodTypeAny, {
|
|
24741
|
-
id: string;
|
|
24742
|
-
createdAt: string;
|
|
24743
|
-
updatedAt: string;
|
|
24744
|
-
contentUrl: string;
|
|
24745
|
-
filePath: string;
|
|
24746
|
-
}, {
|
|
24747
|
-
id: string;
|
|
24748
|
-
createdAt: string;
|
|
24749
|
-
updatedAt: string;
|
|
24750
|
-
contentUrl: string;
|
|
24751
|
-
filePath: string;
|
|
24752
|
-
}>>;
|
|
23726
|
+
currentMenuVersion: zod.ZodUnion<[zod.ZodEffects<zod.ZodNullable<zod.ZodString>, string | null, string | null>, zod.ZodEffects<zod.ZodNullable<zod.ZodString>, string | null, string | null>, zod.ZodEffects<zod.ZodNullable<zod.ZodString>, string | null, string | null>]>;
|
|
24753
23727
|
salesMode: zod.ZodEffects<zod.ZodNullable<zod.ZodString>, string | null, string | null>;
|
|
24754
23728
|
} & {
|
|
24755
23729
|
brandId: zod.ZodString;
|
|
@@ -24802,25 +23776,7 @@ declare class UpdateIntegrationDeliveroo extends AbstractApiRequest<UpdateIntegr
|
|
|
24802
23776
|
isValidMenu: zod.ZodBoolean;
|
|
24803
23777
|
latestMenuSyncAt: zod.ZodNullable<zod.ZodEffects<zod.ZodString, string, string>>;
|
|
24804
23778
|
latestMenuCheckAt: zod.ZodNullable<zod.ZodEffects<zod.ZodString, string, string>>;
|
|
24805
|
-
currentMenuVersion: zod.ZodNullable<zod.
|
|
24806
|
-
id: zod.ZodString;
|
|
24807
|
-
contentUrl: zod.ZodString;
|
|
24808
|
-
filePath: zod.ZodString;
|
|
24809
|
-
createdAt: zod.ZodEffects<zod.ZodString, string, string>;
|
|
24810
|
-
updatedAt: zod.ZodEffects<zod.ZodString, string, string>;
|
|
24811
|
-
}, "strip", zod.ZodTypeAny, {
|
|
24812
|
-
id: string;
|
|
24813
|
-
createdAt: string;
|
|
24814
|
-
updatedAt: string;
|
|
24815
|
-
contentUrl: string;
|
|
24816
|
-
filePath: string;
|
|
24817
|
-
}, {
|
|
24818
|
-
id: string;
|
|
24819
|
-
createdAt: string;
|
|
24820
|
-
updatedAt: string;
|
|
24821
|
-
contentUrl: string;
|
|
24822
|
-
filePath: string;
|
|
24823
|
-
}>>;
|
|
23779
|
+
currentMenuVersion: zod.ZodUnion<[zod.ZodEffects<zod.ZodNullable<zod.ZodString>, string | null, string | null>, zod.ZodEffects<zod.ZodNullable<zod.ZodString>, string | null, string | null>, zod.ZodEffects<zod.ZodNullable<zod.ZodString>, string | null, string | null>]>;
|
|
24824
23780
|
salesMode: zod.ZodEffects<zod.ZodNullable<zod.ZodString>, string | null, string | null>;
|
|
24825
23781
|
} & {
|
|
24826
23782
|
brandId: zod.ZodString;
|
|
@@ -24851,13 +23807,7 @@ declare class UpdateIntegrationDeliveroo extends AbstractApiRequest<UpdateIntegr
|
|
|
24851
23807
|
isValidMenu: boolean;
|
|
24852
23808
|
latestMenuSyncAt: string | null;
|
|
24853
23809
|
latestMenuCheckAt: string | null;
|
|
24854
|
-
currentMenuVersion:
|
|
24855
|
-
id: string;
|
|
24856
|
-
createdAt: string;
|
|
24857
|
-
updatedAt: string;
|
|
24858
|
-
contentUrl: string;
|
|
24859
|
-
filePath: string;
|
|
24860
|
-
} | null;
|
|
23810
|
+
currentMenuVersion: string | null;
|
|
24861
23811
|
salesMode: string | null;
|
|
24862
23812
|
imageMenuUrl: string | null;
|
|
24863
23813
|
latestOpeningHoursSyncAt: string | null;
|
|
@@ -24883,13 +23833,7 @@ declare class UpdateIntegrationDeliveroo extends AbstractApiRequest<UpdateIntegr
|
|
|
24883
23833
|
isValidMenu: boolean;
|
|
24884
23834
|
latestMenuSyncAt: string | null;
|
|
24885
23835
|
latestMenuCheckAt: string | null;
|
|
24886
|
-
currentMenuVersion:
|
|
24887
|
-
id: string;
|
|
24888
|
-
createdAt: string;
|
|
24889
|
-
updatedAt: string;
|
|
24890
|
-
contentUrl: string;
|
|
24891
|
-
filePath: string;
|
|
24892
|
-
} | null;
|
|
23836
|
+
currentMenuVersion: string | null;
|
|
24893
23837
|
salesMode: string | null;
|
|
24894
23838
|
imageMenuUrl: string | null;
|
|
24895
23839
|
latestOpeningHoursSyncAt: string | null;
|
|
@@ -24930,25 +23874,7 @@ declare const updateIntegrationDeliverooSiteStatusResponseSchema: z.ZodObject<Om
|
|
|
24930
23874
|
isValidMenu: z.ZodBoolean;
|
|
24931
23875
|
latestMenuSyncAt: z.ZodNullable<z.ZodEffects<z.ZodString, string, string>>;
|
|
24932
23876
|
latestMenuCheckAt: z.ZodNullable<z.ZodEffects<z.ZodString, string, string>>;
|
|
24933
|
-
currentMenuVersion: z.ZodNullable<z.
|
|
24934
|
-
id: z.ZodString;
|
|
24935
|
-
contentUrl: z.ZodString;
|
|
24936
|
-
filePath: z.ZodString;
|
|
24937
|
-
createdAt: z.ZodEffects<z.ZodString, string, string>;
|
|
24938
|
-
updatedAt: z.ZodEffects<z.ZodString, string, string>;
|
|
24939
|
-
}, "strip", z.ZodTypeAny, {
|
|
24940
|
-
id: string;
|
|
24941
|
-
createdAt: string;
|
|
24942
|
-
updatedAt: string;
|
|
24943
|
-
contentUrl: string;
|
|
24944
|
-
filePath: string;
|
|
24945
|
-
}, {
|
|
24946
|
-
id: string;
|
|
24947
|
-
createdAt: string;
|
|
24948
|
-
updatedAt: string;
|
|
24949
|
-
contentUrl: string;
|
|
24950
|
-
filePath: string;
|
|
24951
|
-
}>>;
|
|
23877
|
+
currentMenuVersion: z.ZodUnion<[z.ZodEffects<z.ZodNullable<z.ZodString>, string | null, string | null>, z.ZodEffects<z.ZodNullable<z.ZodString>, string | null, string | null>, z.ZodEffects<z.ZodNullable<z.ZodString>, string | null, string | null>]>;
|
|
24952
23878
|
salesMode: z.ZodEffects<z.ZodNullable<z.ZodString>, string | null, string | null>;
|
|
24953
23879
|
} & {
|
|
24954
23880
|
brandId: z.ZodString;
|
|
@@ -24979,13 +23905,7 @@ declare const updateIntegrationDeliverooSiteStatusResponseSchema: z.ZodObject<Om
|
|
|
24979
23905
|
isValidMenu: boolean;
|
|
24980
23906
|
latestMenuSyncAt: string | null;
|
|
24981
23907
|
latestMenuCheckAt: string | null;
|
|
24982
|
-
currentMenuVersion:
|
|
24983
|
-
id: string;
|
|
24984
|
-
createdAt: string;
|
|
24985
|
-
updatedAt: string;
|
|
24986
|
-
contentUrl: string;
|
|
24987
|
-
filePath: string;
|
|
24988
|
-
} | null;
|
|
23908
|
+
currentMenuVersion: string | null;
|
|
24989
23909
|
salesMode: string | null;
|
|
24990
23910
|
imageMenuUrl: string | null;
|
|
24991
23911
|
latestOpeningHoursSyncAt: string | null;
|
|
@@ -25011,13 +23931,7 @@ declare const updateIntegrationDeliverooSiteStatusResponseSchema: z.ZodObject<Om
|
|
|
25011
23931
|
isValidMenu: boolean;
|
|
25012
23932
|
latestMenuSyncAt: string | null;
|
|
25013
23933
|
latestMenuCheckAt: string | null;
|
|
25014
|
-
currentMenuVersion:
|
|
25015
|
-
id: string;
|
|
25016
|
-
createdAt: string;
|
|
25017
|
-
updatedAt: string;
|
|
25018
|
-
contentUrl: string;
|
|
25019
|
-
filePath: string;
|
|
25020
|
-
} | null;
|
|
23934
|
+
currentMenuVersion: string | null;
|
|
25021
23935
|
salesMode: string | null;
|
|
25022
23936
|
imageMenuUrl: string | null;
|
|
25023
23937
|
latestOpeningHoursSyncAt: string | null;
|
|
@@ -25055,25 +23969,7 @@ declare class UpdateIntegrationDeliverooSiteStatus extends AbstractApiRequest<Up
|
|
|
25055
23969
|
isValidMenu: z.ZodBoolean;
|
|
25056
23970
|
latestMenuSyncAt: z.ZodNullable<z.ZodEffects<z.ZodString, string, string>>;
|
|
25057
23971
|
latestMenuCheckAt: z.ZodNullable<z.ZodEffects<z.ZodString, string, string>>;
|
|
25058
|
-
currentMenuVersion: z.ZodNullable<z.
|
|
25059
|
-
id: z.ZodString;
|
|
25060
|
-
contentUrl: z.ZodString;
|
|
25061
|
-
filePath: z.ZodString;
|
|
25062
|
-
createdAt: z.ZodEffects<z.ZodString, string, string>;
|
|
25063
|
-
updatedAt: z.ZodEffects<z.ZodString, string, string>;
|
|
25064
|
-
}, "strip", z.ZodTypeAny, {
|
|
25065
|
-
id: string;
|
|
25066
|
-
createdAt: string;
|
|
25067
|
-
updatedAt: string;
|
|
25068
|
-
contentUrl: string;
|
|
25069
|
-
filePath: string;
|
|
25070
|
-
}, {
|
|
25071
|
-
id: string;
|
|
25072
|
-
createdAt: string;
|
|
25073
|
-
updatedAt: string;
|
|
25074
|
-
contentUrl: string;
|
|
25075
|
-
filePath: string;
|
|
25076
|
-
}>>;
|
|
23972
|
+
currentMenuVersion: z.ZodUnion<[z.ZodEffects<z.ZodNullable<z.ZodString>, string | null, string | null>, z.ZodEffects<z.ZodNullable<z.ZodString>, string | null, string | null>, z.ZodEffects<z.ZodNullable<z.ZodString>, string | null, string | null>]>;
|
|
25077
23973
|
salesMode: z.ZodEffects<z.ZodNullable<z.ZodString>, string | null, string | null>;
|
|
25078
23974
|
} & {
|
|
25079
23975
|
brandId: z.ZodString;
|
|
@@ -25104,13 +24000,7 @@ declare class UpdateIntegrationDeliverooSiteStatus extends AbstractApiRequest<Up
|
|
|
25104
24000
|
isValidMenu: boolean;
|
|
25105
24001
|
latestMenuSyncAt: string | null;
|
|
25106
24002
|
latestMenuCheckAt: string | null;
|
|
25107
|
-
currentMenuVersion:
|
|
25108
|
-
id: string;
|
|
25109
|
-
createdAt: string;
|
|
25110
|
-
updatedAt: string;
|
|
25111
|
-
contentUrl: string;
|
|
25112
|
-
filePath: string;
|
|
25113
|
-
} | null;
|
|
24003
|
+
currentMenuVersion: string | null;
|
|
25114
24004
|
salesMode: string | null;
|
|
25115
24005
|
imageMenuUrl: string | null;
|
|
25116
24006
|
latestOpeningHoursSyncAt: string | null;
|
|
@@ -25136,13 +24026,7 @@ declare class UpdateIntegrationDeliverooSiteStatus extends AbstractApiRequest<Up
|
|
|
25136
24026
|
isValidMenu: boolean;
|
|
25137
24027
|
latestMenuSyncAt: string | null;
|
|
25138
24028
|
latestMenuCheckAt: string | null;
|
|
25139
|
-
currentMenuVersion:
|
|
25140
|
-
id: string;
|
|
25141
|
-
createdAt: string;
|
|
25142
|
-
updatedAt: string;
|
|
25143
|
-
contentUrl: string;
|
|
25144
|
-
filePath: string;
|
|
25145
|
-
} | null;
|
|
24029
|
+
currentMenuVersion: string | null;
|
|
25146
24030
|
salesMode: string | null;
|
|
25147
24031
|
imageMenuUrl: string | null;
|
|
25148
24032
|
latestOpeningHoursSyncAt: string | null;
|
|
@@ -25175,25 +24059,7 @@ declare const integrationGlovoSchema: z.ZodObject<Omit<{
|
|
|
25175
24059
|
isValidMenu: z.ZodBoolean;
|
|
25176
24060
|
latestMenuSyncAt: z.ZodNullable<z.ZodEffects<z.ZodString, string, string>>;
|
|
25177
24061
|
latestMenuCheckAt: z.ZodNullable<z.ZodEffects<z.ZodString, string, string>>;
|
|
25178
|
-
currentMenuVersion: z.ZodNullable<z.
|
|
25179
|
-
id: z.ZodString;
|
|
25180
|
-
contentUrl: z.ZodString;
|
|
25181
|
-
filePath: z.ZodString;
|
|
25182
|
-
createdAt: z.ZodEffects<z.ZodString, string, string>;
|
|
25183
|
-
updatedAt: z.ZodEffects<z.ZodString, string, string>;
|
|
25184
|
-
}, "strip", z.ZodTypeAny, {
|
|
25185
|
-
id: string;
|
|
25186
|
-
createdAt: string;
|
|
25187
|
-
updatedAt: string;
|
|
25188
|
-
contentUrl: string;
|
|
25189
|
-
filePath: string;
|
|
25190
|
-
}, {
|
|
25191
|
-
id: string;
|
|
25192
|
-
createdAt: string;
|
|
25193
|
-
updatedAt: string;
|
|
25194
|
-
contentUrl: string;
|
|
25195
|
-
filePath: string;
|
|
25196
|
-
}>>;
|
|
24062
|
+
currentMenuVersion: z.ZodUnion<[z.ZodEffects<z.ZodNullable<z.ZodString>, string | null, string | null>, z.ZodEffects<z.ZodNullable<z.ZodString>, string | null, string | null>, z.ZodEffects<z.ZodNullable<z.ZodString>, string | null, string | null>]>;
|
|
25197
24063
|
salesMode: z.ZodEffects<z.ZodNullable<z.ZodString>, string | null, string | null>;
|
|
25198
24064
|
} & {
|
|
25199
24065
|
storeId: z.ZodString;
|
|
@@ -25218,13 +24084,7 @@ declare const integrationGlovoSchema: z.ZodObject<Omit<{
|
|
|
25218
24084
|
isValidMenu: boolean;
|
|
25219
24085
|
latestMenuSyncAt: string | null;
|
|
25220
24086
|
latestMenuCheckAt: string | null;
|
|
25221
|
-
currentMenuVersion:
|
|
25222
|
-
id: string;
|
|
25223
|
-
createdAt: string;
|
|
25224
|
-
updatedAt: string;
|
|
25225
|
-
contentUrl: string;
|
|
25226
|
-
filePath: string;
|
|
25227
|
-
} | null;
|
|
24087
|
+
currentMenuVersion: string | null;
|
|
25228
24088
|
salesMode: string | null;
|
|
25229
24089
|
pendingMenuChanges: boolean;
|
|
25230
24090
|
tagsForImport?: string[] | undefined;
|
|
@@ -25246,13 +24106,7 @@ declare const integrationGlovoSchema: z.ZodObject<Omit<{
|
|
|
25246
24106
|
isValidMenu: boolean;
|
|
25247
24107
|
latestMenuSyncAt: string | null;
|
|
25248
24108
|
latestMenuCheckAt: string | null;
|
|
25249
|
-
currentMenuVersion:
|
|
25250
|
-
id: string;
|
|
25251
|
-
createdAt: string;
|
|
25252
|
-
updatedAt: string;
|
|
25253
|
-
contentUrl: string;
|
|
25254
|
-
filePath: string;
|
|
25255
|
-
} | null;
|
|
24109
|
+
currentMenuVersion: string | null;
|
|
25256
24110
|
salesMode: string | null;
|
|
25257
24111
|
pendingMenuChanges: boolean;
|
|
25258
24112
|
tagsForImport?: string[] | undefined;
|
|
@@ -25276,25 +24130,7 @@ declare const integrationGlovoDetailsSchema: z.ZodObject<Omit<{
|
|
|
25276
24130
|
isValidMenu: z.ZodBoolean;
|
|
25277
24131
|
latestMenuSyncAt: z.ZodNullable<z.ZodEffects<z.ZodString, string, string>>;
|
|
25278
24132
|
latestMenuCheckAt: z.ZodNullable<z.ZodEffects<z.ZodString, string, string>>;
|
|
25279
|
-
currentMenuVersion: z.ZodNullable<z.
|
|
25280
|
-
id: z.ZodString;
|
|
25281
|
-
contentUrl: z.ZodString;
|
|
25282
|
-
filePath: z.ZodString;
|
|
25283
|
-
createdAt: z.ZodEffects<z.ZodString, string, string>;
|
|
25284
|
-
updatedAt: z.ZodEffects<z.ZodString, string, string>;
|
|
25285
|
-
}, "strip", z.ZodTypeAny, {
|
|
25286
|
-
id: string;
|
|
25287
|
-
createdAt: string;
|
|
25288
|
-
updatedAt: string;
|
|
25289
|
-
contentUrl: string;
|
|
25290
|
-
filePath: string;
|
|
25291
|
-
}, {
|
|
25292
|
-
id: string;
|
|
25293
|
-
createdAt: string;
|
|
25294
|
-
updatedAt: string;
|
|
25295
|
-
contentUrl: string;
|
|
25296
|
-
filePath: string;
|
|
25297
|
-
}>>;
|
|
24133
|
+
currentMenuVersion: z.ZodUnion<[z.ZodEffects<z.ZodNullable<z.ZodString>, string | null, string | null>, z.ZodEffects<z.ZodNullable<z.ZodString>, string | null, string | null>, z.ZodEffects<z.ZodNullable<z.ZodString>, string | null, string | null>]>;
|
|
25298
24134
|
salesMode: z.ZodEffects<z.ZodNullable<z.ZodString>, string | null, string | null>;
|
|
25299
24135
|
} & {
|
|
25300
24136
|
storeId: z.ZodString;
|
|
@@ -25322,13 +24158,7 @@ declare const integrationGlovoDetailsSchema: z.ZodObject<Omit<{
|
|
|
25322
24158
|
isValidMenu: boolean;
|
|
25323
24159
|
latestMenuSyncAt: string | null;
|
|
25324
24160
|
latestMenuCheckAt: string | null;
|
|
25325
|
-
currentMenuVersion:
|
|
25326
|
-
id: string;
|
|
25327
|
-
createdAt: string;
|
|
25328
|
-
updatedAt: string;
|
|
25329
|
-
contentUrl: string;
|
|
25330
|
-
filePath: string;
|
|
25331
|
-
} | null;
|
|
24161
|
+
currentMenuVersion: string | null;
|
|
25332
24162
|
salesMode: string | null;
|
|
25333
24163
|
pendingMenuChanges: boolean;
|
|
25334
24164
|
tagsForImport?: string[] | undefined;
|
|
@@ -25351,13 +24181,7 @@ declare const integrationGlovoDetailsSchema: z.ZodObject<Omit<{
|
|
|
25351
24181
|
isValidMenu: boolean;
|
|
25352
24182
|
latestMenuSyncAt: string | null;
|
|
25353
24183
|
latestMenuCheckAt: string | null;
|
|
25354
|
-
currentMenuVersion:
|
|
25355
|
-
id: string;
|
|
25356
|
-
createdAt: string;
|
|
25357
|
-
updatedAt: string;
|
|
25358
|
-
contentUrl: string;
|
|
25359
|
-
filePath: string;
|
|
25360
|
-
} | null;
|
|
24184
|
+
currentMenuVersion: string | null;
|
|
25361
24185
|
salesMode: string | null;
|
|
25362
24186
|
pendingMenuChanges: boolean;
|
|
25363
24187
|
tagsForImport?: string[] | undefined;
|
|
@@ -25563,38 +24387,20 @@ declare const createIntegrationGlovoResponseSchema: z.ZodObject<Omit<{
|
|
|
25563
24387
|
cancellationRequest: z.ZodEffects<z.ZodNullable<z.ZodString>, string | null, string | null>;
|
|
25564
24388
|
connectionId: z.ZodNullable<z.ZodString>;
|
|
25565
24389
|
service: z.ZodEnum<["deliveroo", "justeat", "glovo", "cassa_in_cloud"]>;
|
|
25566
|
-
status: z.ZodEnum<["pending", "active", "deleting"]>;
|
|
25567
|
-
provider: z.ZodEnum<["deliverart", "cassa_in_cloud"]>;
|
|
25568
|
-
createdAt: z.ZodEffects<z.ZodString, string, string>;
|
|
25569
|
-
updatedAt: z.ZodEffects<z.ZodString, string, string>;
|
|
25570
|
-
}, "service"> & {
|
|
25571
|
-
name: z.ZodString;
|
|
25572
|
-
skipInvalidItem: z.ZodBoolean;
|
|
25573
|
-
skipNegativePrices: z.ZodBoolean;
|
|
25574
|
-
importTaggedItems: z.ZodBoolean;
|
|
25575
|
-
tagsForImport: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
25576
|
-
isValidMenu: z.ZodBoolean;
|
|
25577
|
-
latestMenuSyncAt: z.ZodNullable<z.ZodEffects<z.ZodString, string, string>>;
|
|
25578
|
-
latestMenuCheckAt: z.ZodNullable<z.ZodEffects<z.ZodString, string, string>>;
|
|
25579
|
-
currentMenuVersion: z.ZodNullable<z.
|
|
25580
|
-
id: z.ZodString;
|
|
25581
|
-
contentUrl: z.ZodString;
|
|
25582
|
-
filePath: z.ZodString;
|
|
25583
|
-
createdAt: z.ZodEffects<z.ZodString, string, string>;
|
|
25584
|
-
updatedAt: z.ZodEffects<z.ZodString, string, string>;
|
|
25585
|
-
}, "strip", z.ZodTypeAny, {
|
|
25586
|
-
id: string;
|
|
25587
|
-
createdAt: string;
|
|
25588
|
-
updatedAt: string;
|
|
25589
|
-
contentUrl: string;
|
|
25590
|
-
filePath: string;
|
|
25591
|
-
}, {
|
|
25592
|
-
id: string;
|
|
25593
|
-
createdAt: string;
|
|
25594
|
-
updatedAt: string;
|
|
25595
|
-
contentUrl: string;
|
|
25596
|
-
filePath: string;
|
|
25597
|
-
}>>;
|
|
24390
|
+
status: z.ZodEnum<["pending", "active", "deleting"]>;
|
|
24391
|
+
provider: z.ZodEnum<["deliverart", "cassa_in_cloud"]>;
|
|
24392
|
+
createdAt: z.ZodEffects<z.ZodString, string, string>;
|
|
24393
|
+
updatedAt: z.ZodEffects<z.ZodString, string, string>;
|
|
24394
|
+
}, "service"> & {
|
|
24395
|
+
name: z.ZodString;
|
|
24396
|
+
skipInvalidItem: z.ZodBoolean;
|
|
24397
|
+
skipNegativePrices: z.ZodBoolean;
|
|
24398
|
+
importTaggedItems: z.ZodBoolean;
|
|
24399
|
+
tagsForImport: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
24400
|
+
isValidMenu: z.ZodBoolean;
|
|
24401
|
+
latestMenuSyncAt: z.ZodNullable<z.ZodEffects<z.ZodString, string, string>>;
|
|
24402
|
+
latestMenuCheckAt: z.ZodNullable<z.ZodEffects<z.ZodString, string, string>>;
|
|
24403
|
+
currentMenuVersion: z.ZodUnion<[z.ZodEffects<z.ZodNullable<z.ZodString>, string | null, string | null>, z.ZodEffects<z.ZodNullable<z.ZodString>, string | null, string | null>, z.ZodEffects<z.ZodNullable<z.ZodString>, string | null, string | null>]>;
|
|
25598
24404
|
salesMode: z.ZodEffects<z.ZodNullable<z.ZodString>, string | null, string | null>;
|
|
25599
24405
|
} & {
|
|
25600
24406
|
storeId: z.ZodString;
|
|
@@ -25622,13 +24428,7 @@ declare const createIntegrationGlovoResponseSchema: z.ZodObject<Omit<{
|
|
|
25622
24428
|
isValidMenu: boolean;
|
|
25623
24429
|
latestMenuSyncAt: string | null;
|
|
25624
24430
|
latestMenuCheckAt: string | null;
|
|
25625
|
-
currentMenuVersion:
|
|
25626
|
-
id: string;
|
|
25627
|
-
createdAt: string;
|
|
25628
|
-
updatedAt: string;
|
|
25629
|
-
contentUrl: string;
|
|
25630
|
-
filePath: string;
|
|
25631
|
-
} | null;
|
|
24431
|
+
currentMenuVersion: string | null;
|
|
25632
24432
|
salesMode: string | null;
|
|
25633
24433
|
pendingMenuChanges: boolean;
|
|
25634
24434
|
tagsForImport?: string[] | undefined;
|
|
@@ -25651,13 +24451,7 @@ declare const createIntegrationGlovoResponseSchema: z.ZodObject<Omit<{
|
|
|
25651
24451
|
isValidMenu: boolean;
|
|
25652
24452
|
latestMenuSyncAt: string | null;
|
|
25653
24453
|
latestMenuCheckAt: string | null;
|
|
25654
|
-
currentMenuVersion:
|
|
25655
|
-
id: string;
|
|
25656
|
-
createdAt: string;
|
|
25657
|
-
updatedAt: string;
|
|
25658
|
-
contentUrl: string;
|
|
25659
|
-
filePath: string;
|
|
25660
|
-
} | null;
|
|
24454
|
+
currentMenuVersion: string | null;
|
|
25661
24455
|
salesMode: string | null;
|
|
25662
24456
|
pendingMenuChanges: boolean;
|
|
25663
24457
|
tagsForImport?: string[] | undefined;
|
|
@@ -25720,25 +24514,7 @@ declare class CreateIntegrationGlovo extends AbstractApiRequest<CreateIntegratio
|
|
|
25720
24514
|
isValidMenu: z.ZodBoolean;
|
|
25721
24515
|
latestMenuSyncAt: z.ZodNullable<z.ZodEffects<z.ZodString, string, string>>;
|
|
25722
24516
|
latestMenuCheckAt: z.ZodNullable<z.ZodEffects<z.ZodString, string, string>>;
|
|
25723
|
-
currentMenuVersion: z.ZodNullable<z.
|
|
25724
|
-
id: z.ZodString;
|
|
25725
|
-
contentUrl: z.ZodString;
|
|
25726
|
-
filePath: z.ZodString;
|
|
25727
|
-
createdAt: z.ZodEffects<z.ZodString, string, string>;
|
|
25728
|
-
updatedAt: z.ZodEffects<z.ZodString, string, string>;
|
|
25729
|
-
}, "strip", z.ZodTypeAny, {
|
|
25730
|
-
id: string;
|
|
25731
|
-
createdAt: string;
|
|
25732
|
-
updatedAt: string;
|
|
25733
|
-
contentUrl: string;
|
|
25734
|
-
filePath: string;
|
|
25735
|
-
}, {
|
|
25736
|
-
id: string;
|
|
25737
|
-
createdAt: string;
|
|
25738
|
-
updatedAt: string;
|
|
25739
|
-
contentUrl: string;
|
|
25740
|
-
filePath: string;
|
|
25741
|
-
}>>;
|
|
24517
|
+
currentMenuVersion: z.ZodUnion<[z.ZodEffects<z.ZodNullable<z.ZodString>, string | null, string | null>, z.ZodEffects<z.ZodNullable<z.ZodString>, string | null, string | null>, z.ZodEffects<z.ZodNullable<z.ZodString>, string | null, string | null>]>;
|
|
25742
24518
|
salesMode: z.ZodEffects<z.ZodNullable<z.ZodString>, string | null, string | null>;
|
|
25743
24519
|
} & {
|
|
25744
24520
|
storeId: z.ZodString;
|
|
@@ -25766,13 +24542,7 @@ declare class CreateIntegrationGlovo extends AbstractApiRequest<CreateIntegratio
|
|
|
25766
24542
|
isValidMenu: boolean;
|
|
25767
24543
|
latestMenuSyncAt: string | null;
|
|
25768
24544
|
latestMenuCheckAt: string | null;
|
|
25769
|
-
currentMenuVersion:
|
|
25770
|
-
id: string;
|
|
25771
|
-
createdAt: string;
|
|
25772
|
-
updatedAt: string;
|
|
25773
|
-
contentUrl: string;
|
|
25774
|
-
filePath: string;
|
|
25775
|
-
} | null;
|
|
24545
|
+
currentMenuVersion: string | null;
|
|
25776
24546
|
salesMode: string | null;
|
|
25777
24547
|
pendingMenuChanges: boolean;
|
|
25778
24548
|
tagsForImport?: string[] | undefined;
|
|
@@ -25795,13 +24565,7 @@ declare class CreateIntegrationGlovo extends AbstractApiRequest<CreateIntegratio
|
|
|
25795
24565
|
isValidMenu: boolean;
|
|
25796
24566
|
latestMenuSyncAt: string | null;
|
|
25797
24567
|
latestMenuCheckAt: string | null;
|
|
25798
|
-
currentMenuVersion:
|
|
25799
|
-
id: string;
|
|
25800
|
-
createdAt: string;
|
|
25801
|
-
updatedAt: string;
|
|
25802
|
-
contentUrl: string;
|
|
25803
|
-
filePath: string;
|
|
25804
|
-
} | null;
|
|
24568
|
+
currentMenuVersion: string | null;
|
|
25805
24569
|
salesMode: string | null;
|
|
25806
24570
|
pendingMenuChanges: boolean;
|
|
25807
24571
|
tagsForImport?: string[] | undefined;
|
|
@@ -26184,25 +24948,7 @@ declare const getIntegrationGlovoDetailsResponseSchema: z.ZodObject<Omit<{
|
|
|
26184
24948
|
isValidMenu: z.ZodBoolean;
|
|
26185
24949
|
latestMenuSyncAt: z.ZodNullable<z.ZodEffects<z.ZodString, string, string>>;
|
|
26186
24950
|
latestMenuCheckAt: z.ZodNullable<z.ZodEffects<z.ZodString, string, string>>;
|
|
26187
|
-
currentMenuVersion: z.ZodNullable<z.
|
|
26188
|
-
id: z.ZodString;
|
|
26189
|
-
contentUrl: z.ZodString;
|
|
26190
|
-
filePath: z.ZodString;
|
|
26191
|
-
createdAt: z.ZodEffects<z.ZodString, string, string>;
|
|
26192
|
-
updatedAt: z.ZodEffects<z.ZodString, string, string>;
|
|
26193
|
-
}, "strip", z.ZodTypeAny, {
|
|
26194
|
-
id: string;
|
|
26195
|
-
createdAt: string;
|
|
26196
|
-
updatedAt: string;
|
|
26197
|
-
contentUrl: string;
|
|
26198
|
-
filePath: string;
|
|
26199
|
-
}, {
|
|
26200
|
-
id: string;
|
|
26201
|
-
createdAt: string;
|
|
26202
|
-
updatedAt: string;
|
|
26203
|
-
contentUrl: string;
|
|
26204
|
-
filePath: string;
|
|
26205
|
-
}>>;
|
|
24951
|
+
currentMenuVersion: z.ZodUnion<[z.ZodEffects<z.ZodNullable<z.ZodString>, string | null, string | null>, z.ZodEffects<z.ZodNullable<z.ZodString>, string | null, string | null>, z.ZodEffects<z.ZodNullable<z.ZodString>, string | null, string | null>]>;
|
|
26206
24952
|
salesMode: z.ZodEffects<z.ZodNullable<z.ZodString>, string | null, string | null>;
|
|
26207
24953
|
} & {
|
|
26208
24954
|
storeId: z.ZodString;
|
|
@@ -26230,13 +24976,7 @@ declare const getIntegrationGlovoDetailsResponseSchema: z.ZodObject<Omit<{
|
|
|
26230
24976
|
isValidMenu: boolean;
|
|
26231
24977
|
latestMenuSyncAt: string | null;
|
|
26232
24978
|
latestMenuCheckAt: string | null;
|
|
26233
|
-
currentMenuVersion:
|
|
26234
|
-
id: string;
|
|
26235
|
-
createdAt: string;
|
|
26236
|
-
updatedAt: string;
|
|
26237
|
-
contentUrl: string;
|
|
26238
|
-
filePath: string;
|
|
26239
|
-
} | null;
|
|
24979
|
+
currentMenuVersion: string | null;
|
|
26240
24980
|
salesMode: string | null;
|
|
26241
24981
|
pendingMenuChanges: boolean;
|
|
26242
24982
|
tagsForImport?: string[] | undefined;
|
|
@@ -26259,13 +24999,7 @@ declare const getIntegrationGlovoDetailsResponseSchema: z.ZodObject<Omit<{
|
|
|
26259
24999
|
isValidMenu: boolean;
|
|
26260
25000
|
latestMenuSyncAt: string | null;
|
|
26261
25001
|
latestMenuCheckAt: string | null;
|
|
26262
|
-
currentMenuVersion:
|
|
26263
|
-
id: string;
|
|
26264
|
-
createdAt: string;
|
|
26265
|
-
updatedAt: string;
|
|
26266
|
-
contentUrl: string;
|
|
26267
|
-
filePath: string;
|
|
26268
|
-
} | null;
|
|
25002
|
+
currentMenuVersion: string | null;
|
|
26269
25003
|
salesMode: string | null;
|
|
26270
25004
|
pendingMenuChanges: boolean;
|
|
26271
25005
|
tagsForImport?: string[] | undefined;
|
|
@@ -26294,25 +25028,7 @@ declare class GetIntegrationGlovoDetails extends AbstractApiRequest<void, GetInt
|
|
|
26294
25028
|
isValidMenu: z.ZodBoolean;
|
|
26295
25029
|
latestMenuSyncAt: z.ZodNullable<z.ZodEffects<z.ZodString, string, string>>;
|
|
26296
25030
|
latestMenuCheckAt: z.ZodNullable<z.ZodEffects<z.ZodString, string, string>>;
|
|
26297
|
-
currentMenuVersion: z.ZodNullable<z.
|
|
26298
|
-
id: z.ZodString;
|
|
26299
|
-
contentUrl: z.ZodString;
|
|
26300
|
-
filePath: z.ZodString;
|
|
26301
|
-
createdAt: z.ZodEffects<z.ZodString, string, string>;
|
|
26302
|
-
updatedAt: z.ZodEffects<z.ZodString, string, string>;
|
|
26303
|
-
}, "strip", z.ZodTypeAny, {
|
|
26304
|
-
id: string;
|
|
26305
|
-
createdAt: string;
|
|
26306
|
-
updatedAt: string;
|
|
26307
|
-
contentUrl: string;
|
|
26308
|
-
filePath: string;
|
|
26309
|
-
}, {
|
|
26310
|
-
id: string;
|
|
26311
|
-
createdAt: string;
|
|
26312
|
-
updatedAt: string;
|
|
26313
|
-
contentUrl: string;
|
|
26314
|
-
filePath: string;
|
|
26315
|
-
}>>;
|
|
25031
|
+
currentMenuVersion: z.ZodUnion<[z.ZodEffects<z.ZodNullable<z.ZodString>, string | null, string | null>, z.ZodEffects<z.ZodNullable<z.ZodString>, string | null, string | null>, z.ZodEffects<z.ZodNullable<z.ZodString>, string | null, string | null>]>;
|
|
26316
25032
|
salesMode: z.ZodEffects<z.ZodNullable<z.ZodString>, string | null, string | null>;
|
|
26317
25033
|
} & {
|
|
26318
25034
|
storeId: z.ZodString;
|
|
@@ -26340,13 +25056,7 @@ declare class GetIntegrationGlovoDetails extends AbstractApiRequest<void, GetInt
|
|
|
26340
25056
|
isValidMenu: boolean;
|
|
26341
25057
|
latestMenuSyncAt: string | null;
|
|
26342
25058
|
latestMenuCheckAt: string | null;
|
|
26343
|
-
currentMenuVersion:
|
|
26344
|
-
id: string;
|
|
26345
|
-
createdAt: string;
|
|
26346
|
-
updatedAt: string;
|
|
26347
|
-
contentUrl: string;
|
|
26348
|
-
filePath: string;
|
|
26349
|
-
} | null;
|
|
25059
|
+
currentMenuVersion: string | null;
|
|
26350
25060
|
salesMode: string | null;
|
|
26351
25061
|
pendingMenuChanges: boolean;
|
|
26352
25062
|
tagsForImport?: string[] | undefined;
|
|
@@ -26369,13 +25079,7 @@ declare class GetIntegrationGlovoDetails extends AbstractApiRequest<void, GetInt
|
|
|
26369
25079
|
isValidMenu: boolean;
|
|
26370
25080
|
latestMenuSyncAt: string | null;
|
|
26371
25081
|
latestMenuCheckAt: string | null;
|
|
26372
|
-
currentMenuVersion:
|
|
26373
|
-
id: string;
|
|
26374
|
-
createdAt: string;
|
|
26375
|
-
updatedAt: string;
|
|
26376
|
-
contentUrl: string;
|
|
26377
|
-
filePath: string;
|
|
26378
|
-
} | null;
|
|
25082
|
+
currentMenuVersion: string | null;
|
|
26379
25083
|
salesMode: string | null;
|
|
26380
25084
|
pendingMenuChanges: boolean;
|
|
26381
25085
|
tagsForImport?: string[] | undefined;
|
|
@@ -26503,25 +25207,7 @@ declare const getIntegrationGlovoListResponseSchema: z.ZodObject<{
|
|
|
26503
25207
|
isValidMenu: z.ZodBoolean;
|
|
26504
25208
|
latestMenuSyncAt: z.ZodNullable<z.ZodEffects<z.ZodString, string, string>>;
|
|
26505
25209
|
latestMenuCheckAt: z.ZodNullable<z.ZodEffects<z.ZodString, string, string>>;
|
|
26506
|
-
currentMenuVersion: z.ZodNullable<z.
|
|
26507
|
-
id: z.ZodString;
|
|
26508
|
-
contentUrl: z.ZodString;
|
|
26509
|
-
filePath: z.ZodString;
|
|
26510
|
-
createdAt: z.ZodEffects<z.ZodString, string, string>;
|
|
26511
|
-
updatedAt: z.ZodEffects<z.ZodString, string, string>;
|
|
26512
|
-
}, "strip", z.ZodTypeAny, {
|
|
26513
|
-
id: string;
|
|
26514
|
-
createdAt: string;
|
|
26515
|
-
updatedAt: string;
|
|
26516
|
-
contentUrl: string;
|
|
26517
|
-
filePath: string;
|
|
26518
|
-
}, {
|
|
26519
|
-
id: string;
|
|
26520
|
-
createdAt: string;
|
|
26521
|
-
updatedAt: string;
|
|
26522
|
-
contentUrl: string;
|
|
26523
|
-
filePath: string;
|
|
26524
|
-
}>>;
|
|
25210
|
+
currentMenuVersion: z.ZodUnion<[z.ZodEffects<z.ZodNullable<z.ZodString>, string | null, string | null>, z.ZodEffects<z.ZodNullable<z.ZodString>, string | null, string | null>, z.ZodEffects<z.ZodNullable<z.ZodString>, string | null, string | null>]>;
|
|
26525
25211
|
salesMode: z.ZodEffects<z.ZodNullable<z.ZodString>, string | null, string | null>;
|
|
26526
25212
|
} & {
|
|
26527
25213
|
storeId: z.ZodString;
|
|
@@ -26546,13 +25232,7 @@ declare const getIntegrationGlovoListResponseSchema: z.ZodObject<{
|
|
|
26546
25232
|
isValidMenu: boolean;
|
|
26547
25233
|
latestMenuSyncAt: string | null;
|
|
26548
25234
|
latestMenuCheckAt: string | null;
|
|
26549
|
-
currentMenuVersion:
|
|
26550
|
-
id: string;
|
|
26551
|
-
createdAt: string;
|
|
26552
|
-
updatedAt: string;
|
|
26553
|
-
contentUrl: string;
|
|
26554
|
-
filePath: string;
|
|
26555
|
-
} | null;
|
|
25235
|
+
currentMenuVersion: string | null;
|
|
26556
25236
|
salesMode: string | null;
|
|
26557
25237
|
pendingMenuChanges: boolean;
|
|
26558
25238
|
tagsForImport?: string[] | undefined;
|
|
@@ -26574,13 +25254,7 @@ declare const getIntegrationGlovoListResponseSchema: z.ZodObject<{
|
|
|
26574
25254
|
isValidMenu: boolean;
|
|
26575
25255
|
latestMenuSyncAt: string | null;
|
|
26576
25256
|
latestMenuCheckAt: string | null;
|
|
26577
|
-
currentMenuVersion:
|
|
26578
|
-
id: string;
|
|
26579
|
-
createdAt: string;
|
|
26580
|
-
updatedAt: string;
|
|
26581
|
-
contentUrl: string;
|
|
26582
|
-
filePath: string;
|
|
26583
|
-
} | null;
|
|
25257
|
+
currentMenuVersion: string | null;
|
|
26584
25258
|
salesMode: string | null;
|
|
26585
25259
|
pendingMenuChanges: boolean;
|
|
26586
25260
|
tagsForImport?: string[] | undefined;
|
|
@@ -26626,13 +25300,7 @@ declare const getIntegrationGlovoListResponseSchema: z.ZodObject<{
|
|
|
26626
25300
|
isValidMenu: boolean;
|
|
26627
25301
|
latestMenuSyncAt: string | null;
|
|
26628
25302
|
latestMenuCheckAt: string | null;
|
|
26629
|
-
currentMenuVersion:
|
|
26630
|
-
id: string;
|
|
26631
|
-
createdAt: string;
|
|
26632
|
-
updatedAt: string;
|
|
26633
|
-
contentUrl: string;
|
|
26634
|
-
filePath: string;
|
|
26635
|
-
} | null;
|
|
25303
|
+
currentMenuVersion: string | null;
|
|
26636
25304
|
salesMode: string | null;
|
|
26637
25305
|
pendingMenuChanges: boolean;
|
|
26638
25306
|
tagsForImport?: string[] | undefined;
|
|
@@ -26664,13 +25332,7 @@ declare const getIntegrationGlovoListResponseSchema: z.ZodObject<{
|
|
|
26664
25332
|
isValidMenu: boolean;
|
|
26665
25333
|
latestMenuSyncAt: string | null;
|
|
26666
25334
|
latestMenuCheckAt: string | null;
|
|
26667
|
-
currentMenuVersion:
|
|
26668
|
-
id: string;
|
|
26669
|
-
createdAt: string;
|
|
26670
|
-
updatedAt: string;
|
|
26671
|
-
contentUrl: string;
|
|
26672
|
-
filePath: string;
|
|
26673
|
-
} | null;
|
|
25335
|
+
currentMenuVersion: string | null;
|
|
26674
25336
|
salesMode: string | null;
|
|
26675
25337
|
pendingMenuChanges: boolean;
|
|
26676
25338
|
tagsForImport?: string[] | undefined;
|
|
@@ -26710,25 +25372,7 @@ declare class GetIntegrationGlovoList extends AbstractApiRequest<void, GetIntegr
|
|
|
26710
25372
|
isValidMenu: z.ZodBoolean;
|
|
26711
25373
|
latestMenuSyncAt: z.ZodNullable<z.ZodEffects<z.ZodString, string, string>>;
|
|
26712
25374
|
latestMenuCheckAt: z.ZodNullable<z.ZodEffects<z.ZodString, string, string>>;
|
|
26713
|
-
currentMenuVersion: z.ZodNullable<z.
|
|
26714
|
-
id: z.ZodString;
|
|
26715
|
-
contentUrl: z.ZodString;
|
|
26716
|
-
filePath: z.ZodString;
|
|
26717
|
-
createdAt: z.ZodEffects<z.ZodString, string, string>;
|
|
26718
|
-
updatedAt: z.ZodEffects<z.ZodString, string, string>;
|
|
26719
|
-
}, "strip", z.ZodTypeAny, {
|
|
26720
|
-
id: string;
|
|
26721
|
-
createdAt: string;
|
|
26722
|
-
updatedAt: string;
|
|
26723
|
-
contentUrl: string;
|
|
26724
|
-
filePath: string;
|
|
26725
|
-
}, {
|
|
26726
|
-
id: string;
|
|
26727
|
-
createdAt: string;
|
|
26728
|
-
updatedAt: string;
|
|
26729
|
-
contentUrl: string;
|
|
26730
|
-
filePath: string;
|
|
26731
|
-
}>>;
|
|
25375
|
+
currentMenuVersion: z.ZodUnion<[z.ZodEffects<z.ZodNullable<z.ZodString>, string | null, string | null>, z.ZodEffects<z.ZodNullable<z.ZodString>, string | null, string | null>, z.ZodEffects<z.ZodNullable<z.ZodString>, string | null, string | null>]>;
|
|
26732
25376
|
salesMode: z.ZodEffects<z.ZodNullable<z.ZodString>, string | null, string | null>;
|
|
26733
25377
|
} & {
|
|
26734
25378
|
storeId: z.ZodString;
|
|
@@ -26753,13 +25397,7 @@ declare class GetIntegrationGlovoList extends AbstractApiRequest<void, GetIntegr
|
|
|
26753
25397
|
isValidMenu: boolean;
|
|
26754
25398
|
latestMenuSyncAt: string | null;
|
|
26755
25399
|
latestMenuCheckAt: string | null;
|
|
26756
|
-
currentMenuVersion:
|
|
26757
|
-
id: string;
|
|
26758
|
-
createdAt: string;
|
|
26759
|
-
updatedAt: string;
|
|
26760
|
-
contentUrl: string;
|
|
26761
|
-
filePath: string;
|
|
26762
|
-
} | null;
|
|
25400
|
+
currentMenuVersion: string | null;
|
|
26763
25401
|
salesMode: string | null;
|
|
26764
25402
|
pendingMenuChanges: boolean;
|
|
26765
25403
|
tagsForImport?: string[] | undefined;
|
|
@@ -26781,13 +25419,7 @@ declare class GetIntegrationGlovoList extends AbstractApiRequest<void, GetIntegr
|
|
|
26781
25419
|
isValidMenu: boolean;
|
|
26782
25420
|
latestMenuSyncAt: string | null;
|
|
26783
25421
|
latestMenuCheckAt: string | null;
|
|
26784
|
-
currentMenuVersion:
|
|
26785
|
-
id: string;
|
|
26786
|
-
createdAt: string;
|
|
26787
|
-
updatedAt: string;
|
|
26788
|
-
contentUrl: string;
|
|
26789
|
-
filePath: string;
|
|
26790
|
-
} | null;
|
|
25422
|
+
currentMenuVersion: string | null;
|
|
26791
25423
|
salesMode: string | null;
|
|
26792
25424
|
pendingMenuChanges: boolean;
|
|
26793
25425
|
tagsForImport?: string[] | undefined;
|
|
@@ -26833,13 +25465,7 @@ declare class GetIntegrationGlovoList extends AbstractApiRequest<void, GetIntegr
|
|
|
26833
25465
|
isValidMenu: boolean;
|
|
26834
25466
|
latestMenuSyncAt: string | null;
|
|
26835
25467
|
latestMenuCheckAt: string | null;
|
|
26836
|
-
currentMenuVersion:
|
|
26837
|
-
id: string;
|
|
26838
|
-
createdAt: string;
|
|
26839
|
-
updatedAt: string;
|
|
26840
|
-
contentUrl: string;
|
|
26841
|
-
filePath: string;
|
|
26842
|
-
} | null;
|
|
25468
|
+
currentMenuVersion: string | null;
|
|
26843
25469
|
salesMode: string | null;
|
|
26844
25470
|
pendingMenuChanges: boolean;
|
|
26845
25471
|
tagsForImport?: string[] | undefined;
|
|
@@ -26871,13 +25497,7 @@ declare class GetIntegrationGlovoList extends AbstractApiRequest<void, GetIntegr
|
|
|
26871
25497
|
isValidMenu: boolean;
|
|
26872
25498
|
latestMenuSyncAt: string | null;
|
|
26873
25499
|
latestMenuCheckAt: string | null;
|
|
26874
|
-
currentMenuVersion:
|
|
26875
|
-
id: string;
|
|
26876
|
-
createdAt: string;
|
|
26877
|
-
updatedAt: string;
|
|
26878
|
-
contentUrl: string;
|
|
26879
|
-
filePath: string;
|
|
26880
|
-
} | null;
|
|
25500
|
+
currentMenuVersion: string | null;
|
|
26881
25501
|
salesMode: string | null;
|
|
26882
25502
|
pendingMenuChanges: boolean;
|
|
26883
25503
|
tagsForImport?: string[] | undefined;
|
|
@@ -27850,25 +26470,7 @@ declare const updateIntegrationGlovoResponseSchema: zod.ZodObject<Omit<{
|
|
|
27850
26470
|
isValidMenu: zod.ZodBoolean;
|
|
27851
26471
|
latestMenuSyncAt: zod.ZodNullable<zod.ZodEffects<zod.ZodString, string, string>>;
|
|
27852
26472
|
latestMenuCheckAt: zod.ZodNullable<zod.ZodEffects<zod.ZodString, string, string>>;
|
|
27853
|
-
currentMenuVersion: zod.ZodNullable<zod.
|
|
27854
|
-
id: zod.ZodString;
|
|
27855
|
-
contentUrl: zod.ZodString;
|
|
27856
|
-
filePath: zod.ZodString;
|
|
27857
|
-
createdAt: zod.ZodEffects<zod.ZodString, string, string>;
|
|
27858
|
-
updatedAt: zod.ZodEffects<zod.ZodString, string, string>;
|
|
27859
|
-
}, "strip", zod.ZodTypeAny, {
|
|
27860
|
-
id: string;
|
|
27861
|
-
createdAt: string;
|
|
27862
|
-
updatedAt: string;
|
|
27863
|
-
contentUrl: string;
|
|
27864
|
-
filePath: string;
|
|
27865
|
-
}, {
|
|
27866
|
-
id: string;
|
|
27867
|
-
createdAt: string;
|
|
27868
|
-
updatedAt: string;
|
|
27869
|
-
contentUrl: string;
|
|
27870
|
-
filePath: string;
|
|
27871
|
-
}>>;
|
|
26473
|
+
currentMenuVersion: zod.ZodUnion<[zod.ZodEffects<zod.ZodNullable<zod.ZodString>, string | null, string | null>, zod.ZodEffects<zod.ZodNullable<zod.ZodString>, string | null, string | null>, zod.ZodEffects<zod.ZodNullable<zod.ZodString>, string | null, string | null>]>;
|
|
27872
26474
|
salesMode: zod.ZodEffects<zod.ZodNullable<zod.ZodString>, string | null, string | null>;
|
|
27873
26475
|
} & {
|
|
27874
26476
|
storeId: zod.ZodString;
|
|
@@ -27896,13 +26498,7 @@ declare const updateIntegrationGlovoResponseSchema: zod.ZodObject<Omit<{
|
|
|
27896
26498
|
isValidMenu: boolean;
|
|
27897
26499
|
latestMenuSyncAt: string | null;
|
|
27898
26500
|
latestMenuCheckAt: string | null;
|
|
27899
|
-
currentMenuVersion:
|
|
27900
|
-
id: string;
|
|
27901
|
-
createdAt: string;
|
|
27902
|
-
updatedAt: string;
|
|
27903
|
-
contentUrl: string;
|
|
27904
|
-
filePath: string;
|
|
27905
|
-
} | null;
|
|
26501
|
+
currentMenuVersion: string | null;
|
|
27906
26502
|
salesMode: string | null;
|
|
27907
26503
|
pendingMenuChanges: boolean;
|
|
27908
26504
|
tagsForImport?: string[] | undefined;
|
|
@@ -27925,13 +26521,7 @@ declare const updateIntegrationGlovoResponseSchema: zod.ZodObject<Omit<{
|
|
|
27925
26521
|
isValidMenu: boolean;
|
|
27926
26522
|
latestMenuSyncAt: string | null;
|
|
27927
26523
|
latestMenuCheckAt: string | null;
|
|
27928
|
-
currentMenuVersion:
|
|
27929
|
-
id: string;
|
|
27930
|
-
createdAt: string;
|
|
27931
|
-
updatedAt: string;
|
|
27932
|
-
contentUrl: string;
|
|
27933
|
-
filePath: string;
|
|
27934
|
-
} | null;
|
|
26524
|
+
currentMenuVersion: string | null;
|
|
27935
26525
|
salesMode: string | null;
|
|
27936
26526
|
pendingMenuChanges: boolean;
|
|
27937
26527
|
tagsForImport?: string[] | undefined;
|
|
@@ -27990,25 +26580,7 @@ declare class UpdateIntegrationGlovo extends AbstractApiRequest<UpdateIntegratio
|
|
|
27990
26580
|
isValidMenu: zod.ZodBoolean;
|
|
27991
26581
|
latestMenuSyncAt: zod.ZodNullable<zod.ZodEffects<zod.ZodString, string, string>>;
|
|
27992
26582
|
latestMenuCheckAt: zod.ZodNullable<zod.ZodEffects<zod.ZodString, string, string>>;
|
|
27993
|
-
currentMenuVersion: zod.ZodNullable<zod.
|
|
27994
|
-
id: zod.ZodString;
|
|
27995
|
-
contentUrl: zod.ZodString;
|
|
27996
|
-
filePath: zod.ZodString;
|
|
27997
|
-
createdAt: zod.ZodEffects<zod.ZodString, string, string>;
|
|
27998
|
-
updatedAt: zod.ZodEffects<zod.ZodString, string, string>;
|
|
27999
|
-
}, "strip", zod.ZodTypeAny, {
|
|
28000
|
-
id: string;
|
|
28001
|
-
createdAt: string;
|
|
28002
|
-
updatedAt: string;
|
|
28003
|
-
contentUrl: string;
|
|
28004
|
-
filePath: string;
|
|
28005
|
-
}, {
|
|
28006
|
-
id: string;
|
|
28007
|
-
createdAt: string;
|
|
28008
|
-
updatedAt: string;
|
|
28009
|
-
contentUrl: string;
|
|
28010
|
-
filePath: string;
|
|
28011
|
-
}>>;
|
|
26583
|
+
currentMenuVersion: zod.ZodUnion<[zod.ZodEffects<zod.ZodNullable<zod.ZodString>, string | null, string | null>, zod.ZodEffects<zod.ZodNullable<zod.ZodString>, string | null, string | null>, zod.ZodEffects<zod.ZodNullable<zod.ZodString>, string | null, string | null>]>;
|
|
28012
26584
|
salesMode: zod.ZodEffects<zod.ZodNullable<zod.ZodString>, string | null, string | null>;
|
|
28013
26585
|
} & {
|
|
28014
26586
|
storeId: zod.ZodString;
|
|
@@ -28036,13 +26608,7 @@ declare class UpdateIntegrationGlovo extends AbstractApiRequest<UpdateIntegratio
|
|
|
28036
26608
|
isValidMenu: boolean;
|
|
28037
26609
|
latestMenuSyncAt: string | null;
|
|
28038
26610
|
latestMenuCheckAt: string | null;
|
|
28039
|
-
currentMenuVersion:
|
|
28040
|
-
id: string;
|
|
28041
|
-
createdAt: string;
|
|
28042
|
-
updatedAt: string;
|
|
28043
|
-
contentUrl: string;
|
|
28044
|
-
filePath: string;
|
|
28045
|
-
} | null;
|
|
26611
|
+
currentMenuVersion: string | null;
|
|
28046
26612
|
salesMode: string | null;
|
|
28047
26613
|
pendingMenuChanges: boolean;
|
|
28048
26614
|
tagsForImport?: string[] | undefined;
|
|
@@ -28065,13 +26631,7 @@ declare class UpdateIntegrationGlovo extends AbstractApiRequest<UpdateIntegratio
|
|
|
28065
26631
|
isValidMenu: boolean;
|
|
28066
26632
|
latestMenuSyncAt: string | null;
|
|
28067
26633
|
latestMenuCheckAt: string | null;
|
|
28068
|
-
currentMenuVersion:
|
|
28069
|
-
id: string;
|
|
28070
|
-
createdAt: string;
|
|
28071
|
-
updatedAt: string;
|
|
28072
|
-
contentUrl: string;
|
|
28073
|
-
filePath: string;
|
|
28074
|
-
} | null;
|
|
26634
|
+
currentMenuVersion: string | null;
|
|
28075
26635
|
salesMode: string | null;
|
|
28076
26636
|
pendingMenuChanges: boolean;
|
|
28077
26637
|
tagsForImport?: string[] | undefined;
|
|
@@ -28109,25 +26669,7 @@ declare const updateIntegrationGlovoStoreStatusResponseSchema: z.ZodObject<Omit<
|
|
|
28109
26669
|
isValidMenu: z.ZodBoolean;
|
|
28110
26670
|
latestMenuSyncAt: z.ZodNullable<z.ZodEffects<z.ZodString, string, string>>;
|
|
28111
26671
|
latestMenuCheckAt: z.ZodNullable<z.ZodEffects<z.ZodString, string, string>>;
|
|
28112
|
-
currentMenuVersion: z.ZodNullable<z.
|
|
28113
|
-
id: z.ZodString;
|
|
28114
|
-
contentUrl: z.ZodString;
|
|
28115
|
-
filePath: z.ZodString;
|
|
28116
|
-
createdAt: z.ZodEffects<z.ZodString, string, string>;
|
|
28117
|
-
updatedAt: z.ZodEffects<z.ZodString, string, string>;
|
|
28118
|
-
}, "strip", z.ZodTypeAny, {
|
|
28119
|
-
id: string;
|
|
28120
|
-
createdAt: string;
|
|
28121
|
-
updatedAt: string;
|
|
28122
|
-
contentUrl: string;
|
|
28123
|
-
filePath: string;
|
|
28124
|
-
}, {
|
|
28125
|
-
id: string;
|
|
28126
|
-
createdAt: string;
|
|
28127
|
-
updatedAt: string;
|
|
28128
|
-
contentUrl: string;
|
|
28129
|
-
filePath: string;
|
|
28130
|
-
}>>;
|
|
26672
|
+
currentMenuVersion: z.ZodUnion<[z.ZodEffects<z.ZodNullable<z.ZodString>, string | null, string | null>, z.ZodEffects<z.ZodNullable<z.ZodString>, string | null, string | null>, z.ZodEffects<z.ZodNullable<z.ZodString>, string | null, string | null>]>;
|
|
28131
26673
|
salesMode: z.ZodEffects<z.ZodNullable<z.ZodString>, string | null, string | null>;
|
|
28132
26674
|
} & {
|
|
28133
26675
|
storeId: z.ZodString;
|
|
@@ -28155,13 +26697,7 @@ declare const updateIntegrationGlovoStoreStatusResponseSchema: z.ZodObject<Omit<
|
|
|
28155
26697
|
isValidMenu: boolean;
|
|
28156
26698
|
latestMenuSyncAt: string | null;
|
|
28157
26699
|
latestMenuCheckAt: string | null;
|
|
28158
|
-
currentMenuVersion:
|
|
28159
|
-
id: string;
|
|
28160
|
-
createdAt: string;
|
|
28161
|
-
updatedAt: string;
|
|
28162
|
-
contentUrl: string;
|
|
28163
|
-
filePath: string;
|
|
28164
|
-
} | null;
|
|
26700
|
+
currentMenuVersion: string | null;
|
|
28165
26701
|
salesMode: string | null;
|
|
28166
26702
|
pendingMenuChanges: boolean;
|
|
28167
26703
|
tagsForImport?: string[] | undefined;
|
|
@@ -28184,13 +26720,7 @@ declare const updateIntegrationGlovoStoreStatusResponseSchema: z.ZodObject<Omit<
|
|
|
28184
26720
|
isValidMenu: boolean;
|
|
28185
26721
|
latestMenuSyncAt: string | null;
|
|
28186
26722
|
latestMenuCheckAt: string | null;
|
|
28187
|
-
currentMenuVersion:
|
|
28188
|
-
id: string;
|
|
28189
|
-
createdAt: string;
|
|
28190
|
-
updatedAt: string;
|
|
28191
|
-
contentUrl: string;
|
|
28192
|
-
filePath: string;
|
|
28193
|
-
} | null;
|
|
26723
|
+
currentMenuVersion: string | null;
|
|
28194
26724
|
salesMode: string | null;
|
|
28195
26725
|
pendingMenuChanges: boolean;
|
|
28196
26726
|
tagsForImport?: string[] | undefined;
|
|
@@ -28217,33 +26747,15 @@ declare class UpdateIntegrationGlovoStoreStatus extends AbstractApiRequest<Updat
|
|
|
28217
26747
|
createdAt: z.ZodEffects<z.ZodString, string, string>;
|
|
28218
26748
|
updatedAt: z.ZodEffects<z.ZodString, string, string>;
|
|
28219
26749
|
}, "service"> & {
|
|
28220
|
-
name: z.ZodString;
|
|
28221
|
-
skipInvalidItem: z.ZodBoolean;
|
|
28222
|
-
skipNegativePrices: z.ZodBoolean;
|
|
28223
|
-
importTaggedItems: z.ZodBoolean;
|
|
28224
|
-
tagsForImport: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
28225
|
-
isValidMenu: z.ZodBoolean;
|
|
28226
|
-
latestMenuSyncAt: z.ZodNullable<z.ZodEffects<z.ZodString, string, string>>;
|
|
28227
|
-
latestMenuCheckAt: z.ZodNullable<z.ZodEffects<z.ZodString, string, string>>;
|
|
28228
|
-
currentMenuVersion: z.ZodNullable<z.
|
|
28229
|
-
id: z.ZodString;
|
|
28230
|
-
contentUrl: z.ZodString;
|
|
28231
|
-
filePath: z.ZodString;
|
|
28232
|
-
createdAt: z.ZodEffects<z.ZodString, string, string>;
|
|
28233
|
-
updatedAt: z.ZodEffects<z.ZodString, string, string>;
|
|
28234
|
-
}, "strip", z.ZodTypeAny, {
|
|
28235
|
-
id: string;
|
|
28236
|
-
createdAt: string;
|
|
28237
|
-
updatedAt: string;
|
|
28238
|
-
contentUrl: string;
|
|
28239
|
-
filePath: string;
|
|
28240
|
-
}, {
|
|
28241
|
-
id: string;
|
|
28242
|
-
createdAt: string;
|
|
28243
|
-
updatedAt: string;
|
|
28244
|
-
contentUrl: string;
|
|
28245
|
-
filePath: string;
|
|
28246
|
-
}>>;
|
|
26750
|
+
name: z.ZodString;
|
|
26751
|
+
skipInvalidItem: z.ZodBoolean;
|
|
26752
|
+
skipNegativePrices: z.ZodBoolean;
|
|
26753
|
+
importTaggedItems: z.ZodBoolean;
|
|
26754
|
+
tagsForImport: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
26755
|
+
isValidMenu: z.ZodBoolean;
|
|
26756
|
+
latestMenuSyncAt: z.ZodNullable<z.ZodEffects<z.ZodString, string, string>>;
|
|
26757
|
+
latestMenuCheckAt: z.ZodNullable<z.ZodEffects<z.ZodString, string, string>>;
|
|
26758
|
+
currentMenuVersion: z.ZodUnion<[z.ZodEffects<z.ZodNullable<z.ZodString>, string | null, string | null>, z.ZodEffects<z.ZodNullable<z.ZodString>, string | null, string | null>, z.ZodEffects<z.ZodNullable<z.ZodString>, string | null, string | null>]>;
|
|
28247
26759
|
salesMode: z.ZodEffects<z.ZodNullable<z.ZodString>, string | null, string | null>;
|
|
28248
26760
|
} & {
|
|
28249
26761
|
storeId: z.ZodString;
|
|
@@ -28271,13 +26783,7 @@ declare class UpdateIntegrationGlovoStoreStatus extends AbstractApiRequest<Updat
|
|
|
28271
26783
|
isValidMenu: boolean;
|
|
28272
26784
|
latestMenuSyncAt: string | null;
|
|
28273
26785
|
latestMenuCheckAt: string | null;
|
|
28274
|
-
currentMenuVersion:
|
|
28275
|
-
id: string;
|
|
28276
|
-
createdAt: string;
|
|
28277
|
-
updatedAt: string;
|
|
28278
|
-
contentUrl: string;
|
|
28279
|
-
filePath: string;
|
|
28280
|
-
} | null;
|
|
26786
|
+
currentMenuVersion: string | null;
|
|
28281
26787
|
salesMode: string | null;
|
|
28282
26788
|
pendingMenuChanges: boolean;
|
|
28283
26789
|
tagsForImport?: string[] | undefined;
|
|
@@ -28300,13 +26806,7 @@ declare class UpdateIntegrationGlovoStoreStatus extends AbstractApiRequest<Updat
|
|
|
28300
26806
|
isValidMenu: boolean;
|
|
28301
26807
|
latestMenuSyncAt: string | null;
|
|
28302
26808
|
latestMenuCheckAt: string | null;
|
|
28303
|
-
currentMenuVersion:
|
|
28304
|
-
id: string;
|
|
28305
|
-
createdAt: string;
|
|
28306
|
-
updatedAt: string;
|
|
28307
|
-
contentUrl: string;
|
|
28308
|
-
filePath: string;
|
|
28309
|
-
} | null;
|
|
26809
|
+
currentMenuVersion: string | null;
|
|
28310
26810
|
salesMode: string | null;
|
|
28311
26811
|
pendingMenuChanges: boolean;
|
|
28312
26812
|
tagsForImport?: string[] | undefined;
|
|
@@ -28336,25 +26836,7 @@ declare const integrationJustEatSchema: z.ZodObject<Omit<{
|
|
|
28336
26836
|
isValidMenu: z.ZodBoolean;
|
|
28337
26837
|
latestMenuSyncAt: z.ZodNullable<z.ZodEffects<z.ZodString, string, string>>;
|
|
28338
26838
|
latestMenuCheckAt: z.ZodNullable<z.ZodEffects<z.ZodString, string, string>>;
|
|
28339
|
-
currentMenuVersion: z.ZodNullable<z.
|
|
28340
|
-
id: z.ZodString;
|
|
28341
|
-
contentUrl: z.ZodString;
|
|
28342
|
-
filePath: z.ZodString;
|
|
28343
|
-
createdAt: z.ZodEffects<z.ZodString, string, string>;
|
|
28344
|
-
updatedAt: z.ZodEffects<z.ZodString, string, string>;
|
|
28345
|
-
}, "strip", z.ZodTypeAny, {
|
|
28346
|
-
id: string;
|
|
28347
|
-
createdAt: string;
|
|
28348
|
-
updatedAt: string;
|
|
28349
|
-
contentUrl: string;
|
|
28350
|
-
filePath: string;
|
|
28351
|
-
}, {
|
|
28352
|
-
id: string;
|
|
28353
|
-
createdAt: string;
|
|
28354
|
-
updatedAt: string;
|
|
28355
|
-
contentUrl: string;
|
|
28356
|
-
filePath: string;
|
|
28357
|
-
}>>;
|
|
26839
|
+
currentMenuVersion: z.ZodUnion<[z.ZodEffects<z.ZodNullable<z.ZodString>, string | null, string | null>, z.ZodEffects<z.ZodNullable<z.ZodString>, string | null, string | null>, z.ZodEffects<z.ZodNullable<z.ZodString>, string | null, string | null>]>;
|
|
28358
26840
|
salesMode: z.ZodEffects<z.ZodNullable<z.ZodString>, string | null, string | null>;
|
|
28359
26841
|
} & {
|
|
28360
26842
|
syncType: z.ZodEnum<["ALL", "DELIVERY", "TAKE_AWAY"]>;
|
|
@@ -28381,13 +26863,7 @@ declare const integrationJustEatSchema: z.ZodObject<Omit<{
|
|
|
28381
26863
|
isValidMenu: boolean;
|
|
28382
26864
|
latestMenuSyncAt: string | null;
|
|
28383
26865
|
latestMenuCheckAt: string | null;
|
|
28384
|
-
currentMenuVersion:
|
|
28385
|
-
id: string;
|
|
28386
|
-
createdAt: string;
|
|
28387
|
-
updatedAt: string;
|
|
28388
|
-
contentUrl: string;
|
|
28389
|
-
filePath: string;
|
|
28390
|
-
} | null;
|
|
26866
|
+
currentMenuVersion: string | null;
|
|
28391
26867
|
salesMode: string | null;
|
|
28392
26868
|
nextSyncMenuScheduledAt: string | null;
|
|
28393
26869
|
syncType: "ALL" | "DELIVERY" | "TAKE_AWAY";
|
|
@@ -28412,13 +26888,7 @@ declare const integrationJustEatSchema: z.ZodObject<Omit<{
|
|
|
28412
26888
|
isValidMenu: boolean;
|
|
28413
26889
|
latestMenuSyncAt: string | null;
|
|
28414
26890
|
latestMenuCheckAt: string | null;
|
|
28415
|
-
currentMenuVersion:
|
|
28416
|
-
id: string;
|
|
28417
|
-
createdAt: string;
|
|
28418
|
-
updatedAt: string;
|
|
28419
|
-
contentUrl: string;
|
|
28420
|
-
filePath: string;
|
|
28421
|
-
} | null;
|
|
26891
|
+
currentMenuVersion: string | null;
|
|
28422
26892
|
salesMode: string | null;
|
|
28423
26893
|
nextSyncMenuScheduledAt: string | null;
|
|
28424
26894
|
syncType: "ALL" | "DELIVERY" | "TAKE_AWAY";
|
|
@@ -28446,25 +26916,7 @@ declare const integrationJustEatDetailsSchema: z.ZodObject<Omit<{
|
|
|
28446
26916
|
isValidMenu: z.ZodBoolean;
|
|
28447
26917
|
latestMenuSyncAt: z.ZodNullable<z.ZodEffects<z.ZodString, string, string>>;
|
|
28448
26918
|
latestMenuCheckAt: z.ZodNullable<z.ZodEffects<z.ZodString, string, string>>;
|
|
28449
|
-
currentMenuVersion: z.ZodNullable<z.
|
|
28450
|
-
id: z.ZodString;
|
|
28451
|
-
contentUrl: z.ZodString;
|
|
28452
|
-
filePath: z.ZodString;
|
|
28453
|
-
createdAt: z.ZodEffects<z.ZodString, string, string>;
|
|
28454
|
-
updatedAt: z.ZodEffects<z.ZodString, string, string>;
|
|
28455
|
-
}, "strip", z.ZodTypeAny, {
|
|
28456
|
-
id: string;
|
|
28457
|
-
createdAt: string;
|
|
28458
|
-
updatedAt: string;
|
|
28459
|
-
contentUrl: string;
|
|
28460
|
-
filePath: string;
|
|
28461
|
-
}, {
|
|
28462
|
-
id: string;
|
|
28463
|
-
createdAt: string;
|
|
28464
|
-
updatedAt: string;
|
|
28465
|
-
contentUrl: string;
|
|
28466
|
-
filePath: string;
|
|
28467
|
-
}>>;
|
|
26919
|
+
currentMenuVersion: z.ZodUnion<[z.ZodEffects<z.ZodNullable<z.ZodString>, string | null, string | null>, z.ZodEffects<z.ZodNullable<z.ZodString>, string | null, string | null>, z.ZodEffects<z.ZodNullable<z.ZodString>, string | null, string | null>]>;
|
|
28468
26920
|
salesMode: z.ZodEffects<z.ZodNullable<z.ZodString>, string | null, string | null>;
|
|
28469
26921
|
} & {
|
|
28470
26922
|
syncType: z.ZodEnum<["ALL", "DELIVERY", "TAKE_AWAY"]>;
|
|
@@ -28494,13 +26946,7 @@ declare const integrationJustEatDetailsSchema: z.ZodObject<Omit<{
|
|
|
28494
26946
|
isValidMenu: boolean;
|
|
28495
26947
|
latestMenuSyncAt: string | null;
|
|
28496
26948
|
latestMenuCheckAt: string | null;
|
|
28497
|
-
currentMenuVersion:
|
|
28498
|
-
id: string;
|
|
28499
|
-
createdAt: string;
|
|
28500
|
-
updatedAt: string;
|
|
28501
|
-
contentUrl: string;
|
|
28502
|
-
filePath: string;
|
|
28503
|
-
} | null;
|
|
26949
|
+
currentMenuVersion: string | null;
|
|
28504
26950
|
salesMode: string | null;
|
|
28505
26951
|
nextSyncMenuScheduledAt: string | null;
|
|
28506
26952
|
syncType: "ALL" | "DELIVERY" | "TAKE_AWAY";
|
|
@@ -28526,13 +26972,7 @@ declare const integrationJustEatDetailsSchema: z.ZodObject<Omit<{
|
|
|
28526
26972
|
isValidMenu: boolean;
|
|
28527
26973
|
latestMenuSyncAt: string | null;
|
|
28528
26974
|
latestMenuCheckAt: string | null;
|
|
28529
|
-
currentMenuVersion:
|
|
28530
|
-
id: string;
|
|
28531
|
-
createdAt: string;
|
|
28532
|
-
updatedAt: string;
|
|
28533
|
-
contentUrl: string;
|
|
28534
|
-
filePath: string;
|
|
28535
|
-
} | null;
|
|
26975
|
+
currentMenuVersion: string | null;
|
|
28536
26976
|
salesMode: string | null;
|
|
28537
26977
|
nextSyncMenuScheduledAt: string | null;
|
|
28538
26978
|
syncType: "ALL" | "DELIVERY" | "TAKE_AWAY";
|
|
@@ -28673,25 +27113,7 @@ declare const createIntegrationJustEatResponseSchema: z.ZodObject<Omit<{
|
|
|
28673
27113
|
isValidMenu: z.ZodBoolean;
|
|
28674
27114
|
latestMenuSyncAt: z.ZodNullable<z.ZodEffects<z.ZodString, string, string>>;
|
|
28675
27115
|
latestMenuCheckAt: z.ZodNullable<z.ZodEffects<z.ZodString, string, string>>;
|
|
28676
|
-
currentMenuVersion: z.ZodNullable<z.
|
|
28677
|
-
id: z.ZodString;
|
|
28678
|
-
contentUrl: z.ZodString;
|
|
28679
|
-
filePath: z.ZodString;
|
|
28680
|
-
createdAt: z.ZodEffects<z.ZodString, string, string>;
|
|
28681
|
-
updatedAt: z.ZodEffects<z.ZodString, string, string>;
|
|
28682
|
-
}, "strip", z.ZodTypeAny, {
|
|
28683
|
-
id: string;
|
|
28684
|
-
createdAt: string;
|
|
28685
|
-
updatedAt: string;
|
|
28686
|
-
contentUrl: string;
|
|
28687
|
-
filePath: string;
|
|
28688
|
-
}, {
|
|
28689
|
-
id: string;
|
|
28690
|
-
createdAt: string;
|
|
28691
|
-
updatedAt: string;
|
|
28692
|
-
contentUrl: string;
|
|
28693
|
-
filePath: string;
|
|
28694
|
-
}>>;
|
|
27116
|
+
currentMenuVersion: z.ZodUnion<[z.ZodEffects<z.ZodNullable<z.ZodString>, string | null, string | null>, z.ZodEffects<z.ZodNullable<z.ZodString>, string | null, string | null>, z.ZodEffects<z.ZodNullable<z.ZodString>, string | null, string | null>]>;
|
|
28695
27117
|
salesMode: z.ZodEffects<z.ZodNullable<z.ZodString>, string | null, string | null>;
|
|
28696
27118
|
} & {
|
|
28697
27119
|
syncType: z.ZodEnum<["ALL", "DELIVERY", "TAKE_AWAY"]>;
|
|
@@ -28721,13 +27143,7 @@ declare const createIntegrationJustEatResponseSchema: z.ZodObject<Omit<{
|
|
|
28721
27143
|
isValidMenu: boolean;
|
|
28722
27144
|
latestMenuSyncAt: string | null;
|
|
28723
27145
|
latestMenuCheckAt: string | null;
|
|
28724
|
-
currentMenuVersion:
|
|
28725
|
-
id: string;
|
|
28726
|
-
createdAt: string;
|
|
28727
|
-
updatedAt: string;
|
|
28728
|
-
contentUrl: string;
|
|
28729
|
-
filePath: string;
|
|
28730
|
-
} | null;
|
|
27146
|
+
currentMenuVersion: string | null;
|
|
28731
27147
|
salesMode: string | null;
|
|
28732
27148
|
nextSyncMenuScheduledAt: string | null;
|
|
28733
27149
|
syncType: "ALL" | "DELIVERY" | "TAKE_AWAY";
|
|
@@ -28753,13 +27169,7 @@ declare const createIntegrationJustEatResponseSchema: z.ZodObject<Omit<{
|
|
|
28753
27169
|
isValidMenu: boolean;
|
|
28754
27170
|
latestMenuSyncAt: string | null;
|
|
28755
27171
|
latestMenuCheckAt: string | null;
|
|
28756
|
-
currentMenuVersion:
|
|
28757
|
-
id: string;
|
|
28758
|
-
createdAt: string;
|
|
28759
|
-
updatedAt: string;
|
|
28760
|
-
contentUrl: string;
|
|
28761
|
-
filePath: string;
|
|
28762
|
-
} | null;
|
|
27172
|
+
currentMenuVersion: string | null;
|
|
28763
27173
|
salesMode: string | null;
|
|
28764
27174
|
nextSyncMenuScheduledAt: string | null;
|
|
28765
27175
|
syncType: "ALL" | "DELIVERY" | "TAKE_AWAY";
|
|
@@ -28829,25 +27239,7 @@ declare class CreateIntegrationJustEat extends AbstractApiRequest<CreateIntegrat
|
|
|
28829
27239
|
isValidMenu: z.ZodBoolean;
|
|
28830
27240
|
latestMenuSyncAt: z.ZodNullable<z.ZodEffects<z.ZodString, string, string>>;
|
|
28831
27241
|
latestMenuCheckAt: z.ZodNullable<z.ZodEffects<z.ZodString, string, string>>;
|
|
28832
|
-
currentMenuVersion: z.ZodNullable<z.
|
|
28833
|
-
id: z.ZodString;
|
|
28834
|
-
contentUrl: z.ZodString;
|
|
28835
|
-
filePath: z.ZodString;
|
|
28836
|
-
createdAt: z.ZodEffects<z.ZodString, string, string>;
|
|
28837
|
-
updatedAt: z.ZodEffects<z.ZodString, string, string>;
|
|
28838
|
-
}, "strip", z.ZodTypeAny, {
|
|
28839
|
-
id: string;
|
|
28840
|
-
createdAt: string;
|
|
28841
|
-
updatedAt: string;
|
|
28842
|
-
contentUrl: string;
|
|
28843
|
-
filePath: string;
|
|
28844
|
-
}, {
|
|
28845
|
-
id: string;
|
|
28846
|
-
createdAt: string;
|
|
28847
|
-
updatedAt: string;
|
|
28848
|
-
contentUrl: string;
|
|
28849
|
-
filePath: string;
|
|
28850
|
-
}>>;
|
|
27242
|
+
currentMenuVersion: z.ZodUnion<[z.ZodEffects<z.ZodNullable<z.ZodString>, string | null, string | null>, z.ZodEffects<z.ZodNullable<z.ZodString>, string | null, string | null>, z.ZodEffects<z.ZodNullable<z.ZodString>, string | null, string | null>]>;
|
|
28851
27243
|
salesMode: z.ZodEffects<z.ZodNullable<z.ZodString>, string | null, string | null>;
|
|
28852
27244
|
} & {
|
|
28853
27245
|
syncType: z.ZodEnum<["ALL", "DELIVERY", "TAKE_AWAY"]>;
|
|
@@ -28877,13 +27269,7 @@ declare class CreateIntegrationJustEat extends AbstractApiRequest<CreateIntegrat
|
|
|
28877
27269
|
isValidMenu: boolean;
|
|
28878
27270
|
latestMenuSyncAt: string | null;
|
|
28879
27271
|
latestMenuCheckAt: string | null;
|
|
28880
|
-
currentMenuVersion:
|
|
28881
|
-
id: string;
|
|
28882
|
-
createdAt: string;
|
|
28883
|
-
updatedAt: string;
|
|
28884
|
-
contentUrl: string;
|
|
28885
|
-
filePath: string;
|
|
28886
|
-
} | null;
|
|
27272
|
+
currentMenuVersion: string | null;
|
|
28887
27273
|
salesMode: string | null;
|
|
28888
27274
|
nextSyncMenuScheduledAt: string | null;
|
|
28889
27275
|
syncType: "ALL" | "DELIVERY" | "TAKE_AWAY";
|
|
@@ -28909,13 +27295,7 @@ declare class CreateIntegrationJustEat extends AbstractApiRequest<CreateIntegrat
|
|
|
28909
27295
|
isValidMenu: boolean;
|
|
28910
27296
|
latestMenuSyncAt: string | null;
|
|
28911
27297
|
latestMenuCheckAt: string | null;
|
|
28912
|
-
currentMenuVersion:
|
|
28913
|
-
id: string;
|
|
28914
|
-
createdAt: string;
|
|
28915
|
-
updatedAt: string;
|
|
28916
|
-
contentUrl: string;
|
|
28917
|
-
filePath: string;
|
|
28918
|
-
} | null;
|
|
27298
|
+
currentMenuVersion: string | null;
|
|
28919
27299
|
salesMode: string | null;
|
|
28920
27300
|
nextSyncMenuScheduledAt: string | null;
|
|
28921
27301
|
syncType: "ALL" | "DELIVERY" | "TAKE_AWAY";
|
|
@@ -29302,25 +27682,7 @@ declare const getIntegrationJustEatDetailsResponseSchema: z.ZodObject<Omit<{
|
|
|
29302
27682
|
isValidMenu: z.ZodBoolean;
|
|
29303
27683
|
latestMenuSyncAt: z.ZodNullable<z.ZodEffects<z.ZodString, string, string>>;
|
|
29304
27684
|
latestMenuCheckAt: z.ZodNullable<z.ZodEffects<z.ZodString, string, string>>;
|
|
29305
|
-
currentMenuVersion: z.ZodNullable<z.
|
|
29306
|
-
id: z.ZodString;
|
|
29307
|
-
contentUrl: z.ZodString;
|
|
29308
|
-
filePath: z.ZodString;
|
|
29309
|
-
createdAt: z.ZodEffects<z.ZodString, string, string>;
|
|
29310
|
-
updatedAt: z.ZodEffects<z.ZodString, string, string>;
|
|
29311
|
-
}, "strip", z.ZodTypeAny, {
|
|
29312
|
-
id: string;
|
|
29313
|
-
createdAt: string;
|
|
29314
|
-
updatedAt: string;
|
|
29315
|
-
contentUrl: string;
|
|
29316
|
-
filePath: string;
|
|
29317
|
-
}, {
|
|
29318
|
-
id: string;
|
|
29319
|
-
createdAt: string;
|
|
29320
|
-
updatedAt: string;
|
|
29321
|
-
contentUrl: string;
|
|
29322
|
-
filePath: string;
|
|
29323
|
-
}>>;
|
|
27685
|
+
currentMenuVersion: z.ZodUnion<[z.ZodEffects<z.ZodNullable<z.ZodString>, string | null, string | null>, z.ZodEffects<z.ZodNullable<z.ZodString>, string | null, string | null>, z.ZodEffects<z.ZodNullable<z.ZodString>, string | null, string | null>]>;
|
|
29324
27686
|
salesMode: z.ZodEffects<z.ZodNullable<z.ZodString>, string | null, string | null>;
|
|
29325
27687
|
} & {
|
|
29326
27688
|
syncType: z.ZodEnum<["ALL", "DELIVERY", "TAKE_AWAY"]>;
|
|
@@ -29350,13 +27712,7 @@ declare const getIntegrationJustEatDetailsResponseSchema: z.ZodObject<Omit<{
|
|
|
29350
27712
|
isValidMenu: boolean;
|
|
29351
27713
|
latestMenuSyncAt: string | null;
|
|
29352
27714
|
latestMenuCheckAt: string | null;
|
|
29353
|
-
currentMenuVersion:
|
|
29354
|
-
id: string;
|
|
29355
|
-
createdAt: string;
|
|
29356
|
-
updatedAt: string;
|
|
29357
|
-
contentUrl: string;
|
|
29358
|
-
filePath: string;
|
|
29359
|
-
} | null;
|
|
27715
|
+
currentMenuVersion: string | null;
|
|
29360
27716
|
salesMode: string | null;
|
|
29361
27717
|
nextSyncMenuScheduledAt: string | null;
|
|
29362
27718
|
syncType: "ALL" | "DELIVERY" | "TAKE_AWAY";
|
|
@@ -29382,13 +27738,7 @@ declare const getIntegrationJustEatDetailsResponseSchema: z.ZodObject<Omit<{
|
|
|
29382
27738
|
isValidMenu: boolean;
|
|
29383
27739
|
latestMenuSyncAt: string | null;
|
|
29384
27740
|
latestMenuCheckAt: string | null;
|
|
29385
|
-
currentMenuVersion:
|
|
29386
|
-
id: string;
|
|
29387
|
-
createdAt: string;
|
|
29388
|
-
updatedAt: string;
|
|
29389
|
-
contentUrl: string;
|
|
29390
|
-
filePath: string;
|
|
29391
|
-
} | null;
|
|
27741
|
+
currentMenuVersion: string | null;
|
|
29392
27742
|
salesMode: string | null;
|
|
29393
27743
|
nextSyncMenuScheduledAt: string | null;
|
|
29394
27744
|
syncType: "ALL" | "DELIVERY" | "TAKE_AWAY";
|
|
@@ -29421,25 +27771,7 @@ declare class GetIntegrationJustEatDetails extends AbstractApiRequest<void, GetI
|
|
|
29421
27771
|
isValidMenu: z.ZodBoolean;
|
|
29422
27772
|
latestMenuSyncAt: z.ZodNullable<z.ZodEffects<z.ZodString, string, string>>;
|
|
29423
27773
|
latestMenuCheckAt: z.ZodNullable<z.ZodEffects<z.ZodString, string, string>>;
|
|
29424
|
-
currentMenuVersion: z.ZodNullable<z.
|
|
29425
|
-
id: z.ZodString;
|
|
29426
|
-
contentUrl: z.ZodString;
|
|
29427
|
-
filePath: z.ZodString;
|
|
29428
|
-
createdAt: z.ZodEffects<z.ZodString, string, string>;
|
|
29429
|
-
updatedAt: z.ZodEffects<z.ZodString, string, string>;
|
|
29430
|
-
}, "strip", z.ZodTypeAny, {
|
|
29431
|
-
id: string;
|
|
29432
|
-
createdAt: string;
|
|
29433
|
-
updatedAt: string;
|
|
29434
|
-
contentUrl: string;
|
|
29435
|
-
filePath: string;
|
|
29436
|
-
}, {
|
|
29437
|
-
id: string;
|
|
29438
|
-
createdAt: string;
|
|
29439
|
-
updatedAt: string;
|
|
29440
|
-
contentUrl: string;
|
|
29441
|
-
filePath: string;
|
|
29442
|
-
}>>;
|
|
27774
|
+
currentMenuVersion: z.ZodUnion<[z.ZodEffects<z.ZodNullable<z.ZodString>, string | null, string | null>, z.ZodEffects<z.ZodNullable<z.ZodString>, string | null, string | null>, z.ZodEffects<z.ZodNullable<z.ZodString>, string | null, string | null>]>;
|
|
29443
27775
|
salesMode: z.ZodEffects<z.ZodNullable<z.ZodString>, string | null, string | null>;
|
|
29444
27776
|
} & {
|
|
29445
27777
|
syncType: z.ZodEnum<["ALL", "DELIVERY", "TAKE_AWAY"]>;
|
|
@@ -29469,13 +27801,7 @@ declare class GetIntegrationJustEatDetails extends AbstractApiRequest<void, GetI
|
|
|
29469
27801
|
isValidMenu: boolean;
|
|
29470
27802
|
latestMenuSyncAt: string | null;
|
|
29471
27803
|
latestMenuCheckAt: string | null;
|
|
29472
|
-
currentMenuVersion:
|
|
29473
|
-
id: string;
|
|
29474
|
-
createdAt: string;
|
|
29475
|
-
updatedAt: string;
|
|
29476
|
-
contentUrl: string;
|
|
29477
|
-
filePath: string;
|
|
29478
|
-
} | null;
|
|
27804
|
+
currentMenuVersion: string | null;
|
|
29479
27805
|
salesMode: string | null;
|
|
29480
27806
|
nextSyncMenuScheduledAt: string | null;
|
|
29481
27807
|
syncType: "ALL" | "DELIVERY" | "TAKE_AWAY";
|
|
@@ -29501,13 +27827,7 @@ declare class GetIntegrationJustEatDetails extends AbstractApiRequest<void, GetI
|
|
|
29501
27827
|
isValidMenu: boolean;
|
|
29502
27828
|
latestMenuSyncAt: string | null;
|
|
29503
27829
|
latestMenuCheckAt: string | null;
|
|
29504
|
-
currentMenuVersion:
|
|
29505
|
-
id: string;
|
|
29506
|
-
createdAt: string;
|
|
29507
|
-
updatedAt: string;
|
|
29508
|
-
contentUrl: string;
|
|
29509
|
-
filePath: string;
|
|
29510
|
-
} | null;
|
|
27830
|
+
currentMenuVersion: string | null;
|
|
29511
27831
|
salesMode: string | null;
|
|
29512
27832
|
nextSyncMenuScheduledAt: string | null;
|
|
29513
27833
|
syncType: "ALL" | "DELIVERY" | "TAKE_AWAY";
|
|
@@ -29675,25 +27995,7 @@ declare const getIntegrationJustEatListResponseSchema: z.ZodObject<{
|
|
|
29675
27995
|
isValidMenu: z.ZodBoolean;
|
|
29676
27996
|
latestMenuSyncAt: z.ZodNullable<z.ZodEffects<z.ZodString, string, string>>;
|
|
29677
27997
|
latestMenuCheckAt: z.ZodNullable<z.ZodEffects<z.ZodString, string, string>>;
|
|
29678
|
-
currentMenuVersion: z.ZodNullable<z.
|
|
29679
|
-
id: z.ZodString;
|
|
29680
|
-
contentUrl: z.ZodString;
|
|
29681
|
-
filePath: z.ZodString;
|
|
29682
|
-
createdAt: z.ZodEffects<z.ZodString, string, string>;
|
|
29683
|
-
updatedAt: z.ZodEffects<z.ZodString, string, string>;
|
|
29684
|
-
}, "strip", z.ZodTypeAny, {
|
|
29685
|
-
id: string;
|
|
29686
|
-
createdAt: string;
|
|
29687
|
-
updatedAt: string;
|
|
29688
|
-
contentUrl: string;
|
|
29689
|
-
filePath: string;
|
|
29690
|
-
}, {
|
|
29691
|
-
id: string;
|
|
29692
|
-
createdAt: string;
|
|
29693
|
-
updatedAt: string;
|
|
29694
|
-
contentUrl: string;
|
|
29695
|
-
filePath: string;
|
|
29696
|
-
}>>;
|
|
27998
|
+
currentMenuVersion: z.ZodUnion<[z.ZodEffects<z.ZodNullable<z.ZodString>, string | null, string | null>, z.ZodEffects<z.ZodNullable<z.ZodString>, string | null, string | null>, z.ZodEffects<z.ZodNullable<z.ZodString>, string | null, string | null>]>;
|
|
29697
27999
|
salesMode: z.ZodEffects<z.ZodNullable<z.ZodString>, string | null, string | null>;
|
|
29698
28000
|
} & {
|
|
29699
28001
|
syncType: z.ZodEnum<["ALL", "DELIVERY", "TAKE_AWAY"]>;
|
|
@@ -29720,13 +28022,7 @@ declare const getIntegrationJustEatListResponseSchema: z.ZodObject<{
|
|
|
29720
28022
|
isValidMenu: boolean;
|
|
29721
28023
|
latestMenuSyncAt: string | null;
|
|
29722
28024
|
latestMenuCheckAt: string | null;
|
|
29723
|
-
currentMenuVersion:
|
|
29724
|
-
id: string;
|
|
29725
|
-
createdAt: string;
|
|
29726
|
-
updatedAt: string;
|
|
29727
|
-
contentUrl: string;
|
|
29728
|
-
filePath: string;
|
|
29729
|
-
} | null;
|
|
28025
|
+
currentMenuVersion: string | null;
|
|
29730
28026
|
salesMode: string | null;
|
|
29731
28027
|
nextSyncMenuScheduledAt: string | null;
|
|
29732
28028
|
syncType: "ALL" | "DELIVERY" | "TAKE_AWAY";
|
|
@@ -29751,13 +28047,7 @@ declare const getIntegrationJustEatListResponseSchema: z.ZodObject<{
|
|
|
29751
28047
|
isValidMenu: boolean;
|
|
29752
28048
|
latestMenuSyncAt: string | null;
|
|
29753
28049
|
latestMenuCheckAt: string | null;
|
|
29754
|
-
currentMenuVersion:
|
|
29755
|
-
id: string;
|
|
29756
|
-
createdAt: string;
|
|
29757
|
-
updatedAt: string;
|
|
29758
|
-
contentUrl: string;
|
|
29759
|
-
filePath: string;
|
|
29760
|
-
} | null;
|
|
28050
|
+
currentMenuVersion: string | null;
|
|
29761
28051
|
salesMode: string | null;
|
|
29762
28052
|
nextSyncMenuScheduledAt: string | null;
|
|
29763
28053
|
syncType: "ALL" | "DELIVERY" | "TAKE_AWAY";
|
|
@@ -29806,13 +28096,7 @@ declare const getIntegrationJustEatListResponseSchema: z.ZodObject<{
|
|
|
29806
28096
|
isValidMenu: boolean;
|
|
29807
28097
|
latestMenuSyncAt: string | null;
|
|
29808
28098
|
latestMenuCheckAt: string | null;
|
|
29809
|
-
currentMenuVersion:
|
|
29810
|
-
id: string;
|
|
29811
|
-
createdAt: string;
|
|
29812
|
-
updatedAt: string;
|
|
29813
|
-
contentUrl: string;
|
|
29814
|
-
filePath: string;
|
|
29815
|
-
} | null;
|
|
28099
|
+
currentMenuVersion: string | null;
|
|
29816
28100
|
salesMode: string | null;
|
|
29817
28101
|
nextSyncMenuScheduledAt: string | null;
|
|
29818
28102
|
syncType: "ALL" | "DELIVERY" | "TAKE_AWAY";
|
|
@@ -29847,13 +28131,7 @@ declare const getIntegrationJustEatListResponseSchema: z.ZodObject<{
|
|
|
29847
28131
|
isValidMenu: boolean;
|
|
29848
28132
|
latestMenuSyncAt: string | null;
|
|
29849
28133
|
latestMenuCheckAt: string | null;
|
|
29850
|
-
currentMenuVersion:
|
|
29851
|
-
id: string;
|
|
29852
|
-
createdAt: string;
|
|
29853
|
-
updatedAt: string;
|
|
29854
|
-
contentUrl: string;
|
|
29855
|
-
filePath: string;
|
|
29856
|
-
} | null;
|
|
28134
|
+
currentMenuVersion: string | null;
|
|
29857
28135
|
salesMode: string | null;
|
|
29858
28136
|
nextSyncMenuScheduledAt: string | null;
|
|
29859
28137
|
syncType: "ALL" | "DELIVERY" | "TAKE_AWAY";
|
|
@@ -29897,25 +28175,7 @@ declare class GetIntegrationJustEatList extends AbstractApiRequest<void, GetInte
|
|
|
29897
28175
|
isValidMenu: z.ZodBoolean;
|
|
29898
28176
|
latestMenuSyncAt: z.ZodNullable<z.ZodEffects<z.ZodString, string, string>>;
|
|
29899
28177
|
latestMenuCheckAt: z.ZodNullable<z.ZodEffects<z.ZodString, string, string>>;
|
|
29900
|
-
currentMenuVersion: z.ZodNullable<z.
|
|
29901
|
-
id: z.ZodString;
|
|
29902
|
-
contentUrl: z.ZodString;
|
|
29903
|
-
filePath: z.ZodString;
|
|
29904
|
-
createdAt: z.ZodEffects<z.ZodString, string, string>;
|
|
29905
|
-
updatedAt: z.ZodEffects<z.ZodString, string, string>;
|
|
29906
|
-
}, "strip", z.ZodTypeAny, {
|
|
29907
|
-
id: string;
|
|
29908
|
-
createdAt: string;
|
|
29909
|
-
updatedAt: string;
|
|
29910
|
-
contentUrl: string;
|
|
29911
|
-
filePath: string;
|
|
29912
|
-
}, {
|
|
29913
|
-
id: string;
|
|
29914
|
-
createdAt: string;
|
|
29915
|
-
updatedAt: string;
|
|
29916
|
-
contentUrl: string;
|
|
29917
|
-
filePath: string;
|
|
29918
|
-
}>>;
|
|
28178
|
+
currentMenuVersion: z.ZodUnion<[z.ZodEffects<z.ZodNullable<z.ZodString>, string | null, string | null>, z.ZodEffects<z.ZodNullable<z.ZodString>, string | null, string | null>, z.ZodEffects<z.ZodNullable<z.ZodString>, string | null, string | null>]>;
|
|
29919
28179
|
salesMode: z.ZodEffects<z.ZodNullable<z.ZodString>, string | null, string | null>;
|
|
29920
28180
|
} & {
|
|
29921
28181
|
syncType: z.ZodEnum<["ALL", "DELIVERY", "TAKE_AWAY"]>;
|
|
@@ -29942,13 +28202,7 @@ declare class GetIntegrationJustEatList extends AbstractApiRequest<void, GetInte
|
|
|
29942
28202
|
isValidMenu: boolean;
|
|
29943
28203
|
latestMenuSyncAt: string | null;
|
|
29944
28204
|
latestMenuCheckAt: string | null;
|
|
29945
|
-
currentMenuVersion:
|
|
29946
|
-
id: string;
|
|
29947
|
-
createdAt: string;
|
|
29948
|
-
updatedAt: string;
|
|
29949
|
-
contentUrl: string;
|
|
29950
|
-
filePath: string;
|
|
29951
|
-
} | null;
|
|
28205
|
+
currentMenuVersion: string | null;
|
|
29952
28206
|
salesMode: string | null;
|
|
29953
28207
|
nextSyncMenuScheduledAt: string | null;
|
|
29954
28208
|
syncType: "ALL" | "DELIVERY" | "TAKE_AWAY";
|
|
@@ -29973,13 +28227,7 @@ declare class GetIntegrationJustEatList extends AbstractApiRequest<void, GetInte
|
|
|
29973
28227
|
isValidMenu: boolean;
|
|
29974
28228
|
latestMenuSyncAt: string | null;
|
|
29975
28229
|
latestMenuCheckAt: string | null;
|
|
29976
|
-
currentMenuVersion:
|
|
29977
|
-
id: string;
|
|
29978
|
-
createdAt: string;
|
|
29979
|
-
updatedAt: string;
|
|
29980
|
-
contentUrl: string;
|
|
29981
|
-
filePath: string;
|
|
29982
|
-
} | null;
|
|
28230
|
+
currentMenuVersion: string | null;
|
|
29983
28231
|
salesMode: string | null;
|
|
29984
28232
|
nextSyncMenuScheduledAt: string | null;
|
|
29985
28233
|
syncType: "ALL" | "DELIVERY" | "TAKE_AWAY";
|
|
@@ -30028,13 +28276,7 @@ declare class GetIntegrationJustEatList extends AbstractApiRequest<void, GetInte
|
|
|
30028
28276
|
isValidMenu: boolean;
|
|
30029
28277
|
latestMenuSyncAt: string | null;
|
|
30030
28278
|
latestMenuCheckAt: string | null;
|
|
30031
|
-
currentMenuVersion:
|
|
30032
|
-
id: string;
|
|
30033
|
-
createdAt: string;
|
|
30034
|
-
updatedAt: string;
|
|
30035
|
-
contentUrl: string;
|
|
30036
|
-
filePath: string;
|
|
30037
|
-
} | null;
|
|
28279
|
+
currentMenuVersion: string | null;
|
|
30038
28280
|
salesMode: string | null;
|
|
30039
28281
|
nextSyncMenuScheduledAt: string | null;
|
|
30040
28282
|
syncType: "ALL" | "DELIVERY" | "TAKE_AWAY";
|
|
@@ -30069,13 +28311,7 @@ declare class GetIntegrationJustEatList extends AbstractApiRequest<void, GetInte
|
|
|
30069
28311
|
isValidMenu: boolean;
|
|
30070
28312
|
latestMenuSyncAt: string | null;
|
|
30071
28313
|
latestMenuCheckAt: string | null;
|
|
30072
|
-
currentMenuVersion:
|
|
30073
|
-
id: string;
|
|
30074
|
-
createdAt: string;
|
|
30075
|
-
updatedAt: string;
|
|
30076
|
-
contentUrl: string;
|
|
30077
|
-
filePath: string;
|
|
30078
|
-
} | null;
|
|
28314
|
+
currentMenuVersion: string | null;
|
|
30079
28315
|
salesMode: string | null;
|
|
30080
28316
|
nextSyncMenuScheduledAt: string | null;
|
|
30081
28317
|
syncType: "ALL" | "DELIVERY" | "TAKE_AWAY";
|
|
@@ -30784,25 +29020,7 @@ declare const updateIntegrationJustEatResponseSchema: zod.ZodObject<Omit<{
|
|
|
30784
29020
|
isValidMenu: zod.ZodBoolean;
|
|
30785
29021
|
latestMenuSyncAt: zod.ZodNullable<zod.ZodEffects<zod.ZodString, string, string>>;
|
|
30786
29022
|
latestMenuCheckAt: zod.ZodNullable<zod.ZodEffects<zod.ZodString, string, string>>;
|
|
30787
|
-
currentMenuVersion: zod.ZodNullable<zod.
|
|
30788
|
-
id: zod.ZodString;
|
|
30789
|
-
contentUrl: zod.ZodString;
|
|
30790
|
-
filePath: zod.ZodString;
|
|
30791
|
-
createdAt: zod.ZodEffects<zod.ZodString, string, string>;
|
|
30792
|
-
updatedAt: zod.ZodEffects<zod.ZodString, string, string>;
|
|
30793
|
-
}, "strip", zod.ZodTypeAny, {
|
|
30794
|
-
id: string;
|
|
30795
|
-
createdAt: string;
|
|
30796
|
-
updatedAt: string;
|
|
30797
|
-
contentUrl: string;
|
|
30798
|
-
filePath: string;
|
|
30799
|
-
}, {
|
|
30800
|
-
id: string;
|
|
30801
|
-
createdAt: string;
|
|
30802
|
-
updatedAt: string;
|
|
30803
|
-
contentUrl: string;
|
|
30804
|
-
filePath: string;
|
|
30805
|
-
}>>;
|
|
29023
|
+
currentMenuVersion: zod.ZodUnion<[zod.ZodEffects<zod.ZodNullable<zod.ZodString>, string | null, string | null>, zod.ZodEffects<zod.ZodNullable<zod.ZodString>, string | null, string | null>, zod.ZodEffects<zod.ZodNullable<zod.ZodString>, string | null, string | null>]>;
|
|
30806
29024
|
salesMode: zod.ZodEffects<zod.ZodNullable<zod.ZodString>, string | null, string | null>;
|
|
30807
29025
|
} & {
|
|
30808
29026
|
syncType: zod.ZodEnum<["ALL", "DELIVERY", "TAKE_AWAY"]>;
|
|
@@ -30830,15 +29048,9 @@ declare const updateIntegrationJustEatResponseSchema: zod.ZodObject<Omit<{
|
|
|
30830
29048
|
skipNegativePrices: boolean;
|
|
30831
29049
|
importTaggedItems: boolean;
|
|
30832
29050
|
isValidMenu: boolean;
|
|
30833
|
-
latestMenuSyncAt: string | null;
|
|
30834
|
-
latestMenuCheckAt: string | null;
|
|
30835
|
-
currentMenuVersion:
|
|
30836
|
-
id: string;
|
|
30837
|
-
createdAt: string;
|
|
30838
|
-
updatedAt: string;
|
|
30839
|
-
contentUrl: string;
|
|
30840
|
-
filePath: string;
|
|
30841
|
-
} | null;
|
|
29051
|
+
latestMenuSyncAt: string | null;
|
|
29052
|
+
latestMenuCheckAt: string | null;
|
|
29053
|
+
currentMenuVersion: string | null;
|
|
30842
29054
|
salesMode: string | null;
|
|
30843
29055
|
nextSyncMenuScheduledAt: string | null;
|
|
30844
29056
|
syncType: "ALL" | "DELIVERY" | "TAKE_AWAY";
|
|
@@ -30864,13 +29076,7 @@ declare const updateIntegrationJustEatResponseSchema: zod.ZodObject<Omit<{
|
|
|
30864
29076
|
isValidMenu: boolean;
|
|
30865
29077
|
latestMenuSyncAt: string | null;
|
|
30866
29078
|
latestMenuCheckAt: string | null;
|
|
30867
|
-
currentMenuVersion:
|
|
30868
|
-
id: string;
|
|
30869
|
-
createdAt: string;
|
|
30870
|
-
updatedAt: string;
|
|
30871
|
-
contentUrl: string;
|
|
30872
|
-
filePath: string;
|
|
30873
|
-
} | null;
|
|
29079
|
+
currentMenuVersion: string | null;
|
|
30874
29080
|
salesMode: string | null;
|
|
30875
29081
|
nextSyncMenuScheduledAt: string | null;
|
|
30876
29082
|
syncType: "ALL" | "DELIVERY" | "TAKE_AWAY";
|
|
@@ -30936,25 +29142,7 @@ declare class UpdateIntegrationJustEat extends AbstractApiRequest<UpdateIntegrat
|
|
|
30936
29142
|
isValidMenu: zod.ZodBoolean;
|
|
30937
29143
|
latestMenuSyncAt: zod.ZodNullable<zod.ZodEffects<zod.ZodString, string, string>>;
|
|
30938
29144
|
latestMenuCheckAt: zod.ZodNullable<zod.ZodEffects<zod.ZodString, string, string>>;
|
|
30939
|
-
currentMenuVersion: zod.ZodNullable<zod.
|
|
30940
|
-
id: zod.ZodString;
|
|
30941
|
-
contentUrl: zod.ZodString;
|
|
30942
|
-
filePath: zod.ZodString;
|
|
30943
|
-
createdAt: zod.ZodEffects<zod.ZodString, string, string>;
|
|
30944
|
-
updatedAt: zod.ZodEffects<zod.ZodString, string, string>;
|
|
30945
|
-
}, "strip", zod.ZodTypeAny, {
|
|
30946
|
-
id: string;
|
|
30947
|
-
createdAt: string;
|
|
30948
|
-
updatedAt: string;
|
|
30949
|
-
contentUrl: string;
|
|
30950
|
-
filePath: string;
|
|
30951
|
-
}, {
|
|
30952
|
-
id: string;
|
|
30953
|
-
createdAt: string;
|
|
30954
|
-
updatedAt: string;
|
|
30955
|
-
contentUrl: string;
|
|
30956
|
-
filePath: string;
|
|
30957
|
-
}>>;
|
|
29145
|
+
currentMenuVersion: zod.ZodUnion<[zod.ZodEffects<zod.ZodNullable<zod.ZodString>, string | null, string | null>, zod.ZodEffects<zod.ZodNullable<zod.ZodString>, string | null, string | null>, zod.ZodEffects<zod.ZodNullable<zod.ZodString>, string | null, string | null>]>;
|
|
30958
29146
|
salesMode: zod.ZodEffects<zod.ZodNullable<zod.ZodString>, string | null, string | null>;
|
|
30959
29147
|
} & {
|
|
30960
29148
|
syncType: zod.ZodEnum<["ALL", "DELIVERY", "TAKE_AWAY"]>;
|
|
@@ -30984,13 +29172,7 @@ declare class UpdateIntegrationJustEat extends AbstractApiRequest<UpdateIntegrat
|
|
|
30984
29172
|
isValidMenu: boolean;
|
|
30985
29173
|
latestMenuSyncAt: string | null;
|
|
30986
29174
|
latestMenuCheckAt: string | null;
|
|
30987
|
-
currentMenuVersion:
|
|
30988
|
-
id: string;
|
|
30989
|
-
createdAt: string;
|
|
30990
|
-
updatedAt: string;
|
|
30991
|
-
contentUrl: string;
|
|
30992
|
-
filePath: string;
|
|
30993
|
-
} | null;
|
|
29175
|
+
currentMenuVersion: string | null;
|
|
30994
29176
|
salesMode: string | null;
|
|
30995
29177
|
nextSyncMenuScheduledAt: string | null;
|
|
30996
29178
|
syncType: "ALL" | "DELIVERY" | "TAKE_AWAY";
|
|
@@ -31016,13 +29198,7 @@ declare class UpdateIntegrationJustEat extends AbstractApiRequest<UpdateIntegrat
|
|
|
31016
29198
|
isValidMenu: boolean;
|
|
31017
29199
|
latestMenuSyncAt: string | null;
|
|
31018
29200
|
latestMenuCheckAt: string | null;
|
|
31019
|
-
currentMenuVersion:
|
|
31020
|
-
id: string;
|
|
31021
|
-
createdAt: string;
|
|
31022
|
-
updatedAt: string;
|
|
31023
|
-
contentUrl: string;
|
|
31024
|
-
filePath: string;
|
|
31025
|
-
} | null;
|
|
29201
|
+
currentMenuVersion: string | null;
|
|
31026
29202
|
salesMode: string | null;
|
|
31027
29203
|
nextSyncMenuScheduledAt: string | null;
|
|
31028
29204
|
syncType: "ALL" | "DELIVERY" | "TAKE_AWAY";
|
|
@@ -31064,25 +29240,7 @@ declare const updateIntegrationJustEatRestaurantStatusResponseSchema: z.ZodObjec
|
|
|
31064
29240
|
isValidMenu: z.ZodBoolean;
|
|
31065
29241
|
latestMenuSyncAt: z.ZodNullable<z.ZodEffects<z.ZodString, string, string>>;
|
|
31066
29242
|
latestMenuCheckAt: z.ZodNullable<z.ZodEffects<z.ZodString, string, string>>;
|
|
31067
|
-
currentMenuVersion: z.ZodNullable<z.
|
|
31068
|
-
id: z.ZodString;
|
|
31069
|
-
contentUrl: z.ZodString;
|
|
31070
|
-
filePath: z.ZodString;
|
|
31071
|
-
createdAt: z.ZodEffects<z.ZodString, string, string>;
|
|
31072
|
-
updatedAt: z.ZodEffects<z.ZodString, string, string>;
|
|
31073
|
-
}, "strip", z.ZodTypeAny, {
|
|
31074
|
-
id: string;
|
|
31075
|
-
createdAt: string;
|
|
31076
|
-
updatedAt: string;
|
|
31077
|
-
contentUrl: string;
|
|
31078
|
-
filePath: string;
|
|
31079
|
-
}, {
|
|
31080
|
-
id: string;
|
|
31081
|
-
createdAt: string;
|
|
31082
|
-
updatedAt: string;
|
|
31083
|
-
contentUrl: string;
|
|
31084
|
-
filePath: string;
|
|
31085
|
-
}>>;
|
|
29243
|
+
currentMenuVersion: z.ZodUnion<[z.ZodEffects<z.ZodNullable<z.ZodString>, string | null, string | null>, z.ZodEffects<z.ZodNullable<z.ZodString>, string | null, string | null>, z.ZodEffects<z.ZodNullable<z.ZodString>, string | null, string | null>]>;
|
|
31086
29244
|
salesMode: z.ZodEffects<z.ZodNullable<z.ZodString>, string | null, string | null>;
|
|
31087
29245
|
} & {
|
|
31088
29246
|
syncType: z.ZodEnum<["ALL", "DELIVERY", "TAKE_AWAY"]>;
|
|
@@ -31112,13 +29270,7 @@ declare const updateIntegrationJustEatRestaurantStatusResponseSchema: z.ZodObjec
|
|
|
31112
29270
|
isValidMenu: boolean;
|
|
31113
29271
|
latestMenuSyncAt: string | null;
|
|
31114
29272
|
latestMenuCheckAt: string | null;
|
|
31115
|
-
currentMenuVersion:
|
|
31116
|
-
id: string;
|
|
31117
|
-
createdAt: string;
|
|
31118
|
-
updatedAt: string;
|
|
31119
|
-
contentUrl: string;
|
|
31120
|
-
filePath: string;
|
|
31121
|
-
} | null;
|
|
29273
|
+
currentMenuVersion: string | null;
|
|
31122
29274
|
salesMode: string | null;
|
|
31123
29275
|
nextSyncMenuScheduledAt: string | null;
|
|
31124
29276
|
syncType: "ALL" | "DELIVERY" | "TAKE_AWAY";
|
|
@@ -31144,13 +29296,7 @@ declare const updateIntegrationJustEatRestaurantStatusResponseSchema: z.ZodObjec
|
|
|
31144
29296
|
isValidMenu: boolean;
|
|
31145
29297
|
latestMenuSyncAt: string | null;
|
|
31146
29298
|
latestMenuCheckAt: string | null;
|
|
31147
|
-
currentMenuVersion:
|
|
31148
|
-
id: string;
|
|
31149
|
-
createdAt: string;
|
|
31150
|
-
updatedAt: string;
|
|
31151
|
-
contentUrl: string;
|
|
31152
|
-
filePath: string;
|
|
31153
|
-
} | null;
|
|
29299
|
+
currentMenuVersion: string | null;
|
|
31154
29300
|
salesMode: string | null;
|
|
31155
29301
|
nextSyncMenuScheduledAt: string | null;
|
|
31156
29302
|
syncType: "ALL" | "DELIVERY" | "TAKE_AWAY";
|
|
@@ -31189,25 +29335,7 @@ declare class UpdateIntegrationJustEatRestaurantStatus extends AbstractApiReques
|
|
|
31189
29335
|
isValidMenu: z.ZodBoolean;
|
|
31190
29336
|
latestMenuSyncAt: z.ZodNullable<z.ZodEffects<z.ZodString, string, string>>;
|
|
31191
29337
|
latestMenuCheckAt: z.ZodNullable<z.ZodEffects<z.ZodString, string, string>>;
|
|
31192
|
-
currentMenuVersion: z.ZodNullable<z.
|
|
31193
|
-
id: z.ZodString;
|
|
31194
|
-
contentUrl: z.ZodString;
|
|
31195
|
-
filePath: z.ZodString;
|
|
31196
|
-
createdAt: z.ZodEffects<z.ZodString, string, string>;
|
|
31197
|
-
updatedAt: z.ZodEffects<z.ZodString, string, string>;
|
|
31198
|
-
}, "strip", z.ZodTypeAny, {
|
|
31199
|
-
id: string;
|
|
31200
|
-
createdAt: string;
|
|
31201
|
-
updatedAt: string;
|
|
31202
|
-
contentUrl: string;
|
|
31203
|
-
filePath: string;
|
|
31204
|
-
}, {
|
|
31205
|
-
id: string;
|
|
31206
|
-
createdAt: string;
|
|
31207
|
-
updatedAt: string;
|
|
31208
|
-
contentUrl: string;
|
|
31209
|
-
filePath: string;
|
|
31210
|
-
}>>;
|
|
29338
|
+
currentMenuVersion: z.ZodUnion<[z.ZodEffects<z.ZodNullable<z.ZodString>, string | null, string | null>, z.ZodEffects<z.ZodNullable<z.ZodString>, string | null, string | null>, z.ZodEffects<z.ZodNullable<z.ZodString>, string | null, string | null>]>;
|
|
31211
29339
|
salesMode: z.ZodEffects<z.ZodNullable<z.ZodString>, string | null, string | null>;
|
|
31212
29340
|
} & {
|
|
31213
29341
|
syncType: z.ZodEnum<["ALL", "DELIVERY", "TAKE_AWAY"]>;
|
|
@@ -31237,13 +29365,7 @@ declare class UpdateIntegrationJustEatRestaurantStatus extends AbstractApiReques
|
|
|
31237
29365
|
isValidMenu: boolean;
|
|
31238
29366
|
latestMenuSyncAt: string | null;
|
|
31239
29367
|
latestMenuCheckAt: string | null;
|
|
31240
|
-
currentMenuVersion:
|
|
31241
|
-
id: string;
|
|
31242
|
-
createdAt: string;
|
|
31243
|
-
updatedAt: string;
|
|
31244
|
-
contentUrl: string;
|
|
31245
|
-
filePath: string;
|
|
31246
|
-
} | null;
|
|
29368
|
+
currentMenuVersion: string | null;
|
|
31247
29369
|
salesMode: string | null;
|
|
31248
29370
|
nextSyncMenuScheduledAt: string | null;
|
|
31249
29371
|
syncType: "ALL" | "DELIVERY" | "TAKE_AWAY";
|
|
@@ -31269,13 +29391,7 @@ declare class UpdateIntegrationJustEatRestaurantStatus extends AbstractApiReques
|
|
|
31269
29391
|
isValidMenu: boolean;
|
|
31270
29392
|
latestMenuSyncAt: string | null;
|
|
31271
29393
|
latestMenuCheckAt: string | null;
|
|
31272
|
-
currentMenuVersion:
|
|
31273
|
-
id: string;
|
|
31274
|
-
createdAt: string;
|
|
31275
|
-
updatedAt: string;
|
|
31276
|
-
contentUrl: string;
|
|
31277
|
-
filePath: string;
|
|
31278
|
-
} | null;
|
|
29394
|
+
currentMenuVersion: string | null;
|
|
31279
29395
|
salesMode: string | null;
|
|
31280
29396
|
nextSyncMenuScheduledAt: string | null;
|
|
31281
29397
|
syncType: "ALL" | "DELIVERY" | "TAKE_AWAY";
|
|
@@ -31320,25 +29436,7 @@ declare const updateIntegrationResponseSchema: z.ZodDiscriminatedUnion<"service"
|
|
|
31320
29436
|
isValidMenu: z.ZodBoolean;
|
|
31321
29437
|
latestMenuSyncAt: z.ZodNullable<z.ZodEffects<z.ZodString, string, string>>;
|
|
31322
29438
|
latestMenuCheckAt: z.ZodNullable<z.ZodEffects<z.ZodString, string, string>>;
|
|
31323
|
-
currentMenuVersion: z.ZodNullable<z.
|
|
31324
|
-
id: z.ZodString;
|
|
31325
|
-
contentUrl: z.ZodString;
|
|
31326
|
-
filePath: z.ZodString;
|
|
31327
|
-
createdAt: z.ZodEffects<z.ZodString, string, string>;
|
|
31328
|
-
updatedAt: z.ZodEffects<z.ZodString, string, string>;
|
|
31329
|
-
}, "strip", z.ZodTypeAny, {
|
|
31330
|
-
id: string;
|
|
31331
|
-
createdAt: string;
|
|
31332
|
-
updatedAt: string;
|
|
31333
|
-
contentUrl: string;
|
|
31334
|
-
filePath: string;
|
|
31335
|
-
}, {
|
|
31336
|
-
id: string;
|
|
31337
|
-
createdAt: string;
|
|
31338
|
-
updatedAt: string;
|
|
31339
|
-
contentUrl: string;
|
|
31340
|
-
filePath: string;
|
|
31341
|
-
}>>;
|
|
29439
|
+
currentMenuVersion: z.ZodUnion<[z.ZodEffects<z.ZodNullable<z.ZodString>, string | null, string | null>, z.ZodEffects<z.ZodNullable<z.ZodString>, string | null, string | null>, z.ZodEffects<z.ZodNullable<z.ZodString>, string | null, string | null>]>;
|
|
31342
29440
|
salesMode: z.ZodEffects<z.ZodNullable<z.ZodString>, string | null, string | null>;
|
|
31343
29441
|
} & {
|
|
31344
29442
|
syncType: z.ZodEnum<["ALL", "DELIVERY", "TAKE_AWAY"]>;
|
|
@@ -31368,13 +29466,7 @@ declare const updateIntegrationResponseSchema: z.ZodDiscriminatedUnion<"service"
|
|
|
31368
29466
|
isValidMenu: boolean;
|
|
31369
29467
|
latestMenuSyncAt: string | null;
|
|
31370
29468
|
latestMenuCheckAt: string | null;
|
|
31371
|
-
currentMenuVersion:
|
|
31372
|
-
id: string;
|
|
31373
|
-
createdAt: string;
|
|
31374
|
-
updatedAt: string;
|
|
31375
|
-
contentUrl: string;
|
|
31376
|
-
filePath: string;
|
|
31377
|
-
} | null;
|
|
29469
|
+
currentMenuVersion: string | null;
|
|
31378
29470
|
salesMode: string | null;
|
|
31379
29471
|
nextSyncMenuScheduledAt: string | null;
|
|
31380
29472
|
syncType: "ALL" | "DELIVERY" | "TAKE_AWAY";
|
|
@@ -31400,13 +29492,7 @@ declare const updateIntegrationResponseSchema: z.ZodDiscriminatedUnion<"service"
|
|
|
31400
29492
|
isValidMenu: boolean;
|
|
31401
29493
|
latestMenuSyncAt: string | null;
|
|
31402
29494
|
latestMenuCheckAt: string | null;
|
|
31403
|
-
currentMenuVersion:
|
|
31404
|
-
id: string;
|
|
31405
|
-
createdAt: string;
|
|
31406
|
-
updatedAt: string;
|
|
31407
|
-
contentUrl: string;
|
|
31408
|
-
filePath: string;
|
|
31409
|
-
} | null;
|
|
29495
|
+
currentMenuVersion: string | null;
|
|
31410
29496
|
salesMode: string | null;
|
|
31411
29497
|
nextSyncMenuScheduledAt: string | null;
|
|
31412
29498
|
syncType: "ALL" | "DELIVERY" | "TAKE_AWAY";
|
|
@@ -31432,25 +29518,7 @@ declare const updateIntegrationResponseSchema: z.ZodDiscriminatedUnion<"service"
|
|
|
31432
29518
|
isValidMenu: z.ZodBoolean;
|
|
31433
29519
|
latestMenuSyncAt: z.ZodNullable<z.ZodEffects<z.ZodString, string, string>>;
|
|
31434
29520
|
latestMenuCheckAt: z.ZodNullable<z.ZodEffects<z.ZodString, string, string>>;
|
|
31435
|
-
currentMenuVersion: z.ZodNullable<z.
|
|
31436
|
-
id: z.ZodString;
|
|
31437
|
-
contentUrl: z.ZodString;
|
|
31438
|
-
filePath: z.ZodString;
|
|
31439
|
-
createdAt: z.ZodEffects<z.ZodString, string, string>;
|
|
31440
|
-
updatedAt: z.ZodEffects<z.ZodString, string, string>;
|
|
31441
|
-
}, "strip", z.ZodTypeAny, {
|
|
31442
|
-
id: string;
|
|
31443
|
-
createdAt: string;
|
|
31444
|
-
updatedAt: string;
|
|
31445
|
-
contentUrl: string;
|
|
31446
|
-
filePath: string;
|
|
31447
|
-
}, {
|
|
31448
|
-
id: string;
|
|
31449
|
-
createdAt: string;
|
|
31450
|
-
updatedAt: string;
|
|
31451
|
-
contentUrl: string;
|
|
31452
|
-
filePath: string;
|
|
31453
|
-
}>>;
|
|
29521
|
+
currentMenuVersion: z.ZodUnion<[z.ZodEffects<z.ZodNullable<z.ZodString>, string | null, string | null>, z.ZodEffects<z.ZodNullable<z.ZodString>, string | null, string | null>, z.ZodEffects<z.ZodNullable<z.ZodString>, string | null, string | null>]>;
|
|
31454
29522
|
salesMode: z.ZodEffects<z.ZodNullable<z.ZodString>, string | null, string | null>;
|
|
31455
29523
|
} & {
|
|
31456
29524
|
brandId: z.ZodString;
|
|
@@ -31481,13 +29549,7 @@ declare const updateIntegrationResponseSchema: z.ZodDiscriminatedUnion<"service"
|
|
|
31481
29549
|
isValidMenu: boolean;
|
|
31482
29550
|
latestMenuSyncAt: string | null;
|
|
31483
29551
|
latestMenuCheckAt: string | null;
|
|
31484
|
-
currentMenuVersion:
|
|
31485
|
-
id: string;
|
|
31486
|
-
createdAt: string;
|
|
31487
|
-
updatedAt: string;
|
|
31488
|
-
contentUrl: string;
|
|
31489
|
-
filePath: string;
|
|
31490
|
-
} | null;
|
|
29552
|
+
currentMenuVersion: string | null;
|
|
31491
29553
|
salesMode: string | null;
|
|
31492
29554
|
imageMenuUrl: string | null;
|
|
31493
29555
|
latestOpeningHoursSyncAt: string | null;
|
|
@@ -31513,13 +29575,7 @@ declare const updateIntegrationResponseSchema: z.ZodDiscriminatedUnion<"service"
|
|
|
31513
29575
|
isValidMenu: boolean;
|
|
31514
29576
|
latestMenuSyncAt: string | null;
|
|
31515
29577
|
latestMenuCheckAt: string | null;
|
|
31516
|
-
currentMenuVersion:
|
|
31517
|
-
id: string;
|
|
31518
|
-
createdAt: string;
|
|
31519
|
-
updatedAt: string;
|
|
31520
|
-
contentUrl: string;
|
|
31521
|
-
filePath: string;
|
|
31522
|
-
} | null;
|
|
29578
|
+
currentMenuVersion: string | null;
|
|
31523
29579
|
salesMode: string | null;
|
|
31524
29580
|
imageMenuUrl: string | null;
|
|
31525
29581
|
latestOpeningHoursSyncAt: string | null;
|
|
@@ -31544,25 +29600,7 @@ declare const updateIntegrationResponseSchema: z.ZodDiscriminatedUnion<"service"
|
|
|
31544
29600
|
isValidMenu: z.ZodBoolean;
|
|
31545
29601
|
latestMenuSyncAt: z.ZodNullable<z.ZodEffects<z.ZodString, string, string>>;
|
|
31546
29602
|
latestMenuCheckAt: z.ZodNullable<z.ZodEffects<z.ZodString, string, string>>;
|
|
31547
|
-
currentMenuVersion: z.ZodNullable<z.
|
|
31548
|
-
id: z.ZodString;
|
|
31549
|
-
contentUrl: z.ZodString;
|
|
31550
|
-
filePath: z.ZodString;
|
|
31551
|
-
createdAt: z.ZodEffects<z.ZodString, string, string>;
|
|
31552
|
-
updatedAt: z.ZodEffects<z.ZodString, string, string>;
|
|
31553
|
-
}, "strip", z.ZodTypeAny, {
|
|
31554
|
-
id: string;
|
|
31555
|
-
createdAt: string;
|
|
31556
|
-
updatedAt: string;
|
|
31557
|
-
contentUrl: string;
|
|
31558
|
-
filePath: string;
|
|
31559
|
-
}, {
|
|
31560
|
-
id: string;
|
|
31561
|
-
createdAt: string;
|
|
31562
|
-
updatedAt: string;
|
|
31563
|
-
contentUrl: string;
|
|
31564
|
-
filePath: string;
|
|
31565
|
-
}>>;
|
|
29603
|
+
currentMenuVersion: z.ZodUnion<[z.ZodEffects<z.ZodNullable<z.ZodString>, string | null, string | null>, z.ZodEffects<z.ZodNullable<z.ZodString>, string | null, string | null>, z.ZodEffects<z.ZodNullable<z.ZodString>, string | null, string | null>]>;
|
|
31566
29604
|
salesMode: z.ZodEffects<z.ZodNullable<z.ZodString>, string | null, string | null>;
|
|
31567
29605
|
} & {
|
|
31568
29606
|
storeId: z.ZodString;
|
|
@@ -31590,13 +29628,7 @@ declare const updateIntegrationResponseSchema: z.ZodDiscriminatedUnion<"service"
|
|
|
31590
29628
|
isValidMenu: boolean;
|
|
31591
29629
|
latestMenuSyncAt: string | null;
|
|
31592
29630
|
latestMenuCheckAt: string | null;
|
|
31593
|
-
currentMenuVersion:
|
|
31594
|
-
id: string;
|
|
31595
|
-
createdAt: string;
|
|
31596
|
-
updatedAt: string;
|
|
31597
|
-
contentUrl: string;
|
|
31598
|
-
filePath: string;
|
|
31599
|
-
} | null;
|
|
29631
|
+
currentMenuVersion: string | null;
|
|
31600
29632
|
salesMode: string | null;
|
|
31601
29633
|
pendingMenuChanges: boolean;
|
|
31602
29634
|
tagsForImport?: string[] | undefined;
|
|
@@ -31619,13 +29651,7 @@ declare const updateIntegrationResponseSchema: z.ZodDiscriminatedUnion<"service"
|
|
|
31619
29651
|
isValidMenu: boolean;
|
|
31620
29652
|
latestMenuSyncAt: string | null;
|
|
31621
29653
|
latestMenuCheckAt: string | null;
|
|
31622
|
-
currentMenuVersion:
|
|
31623
|
-
id: string;
|
|
31624
|
-
createdAt: string;
|
|
31625
|
-
updatedAt: string;
|
|
31626
|
-
contentUrl: string;
|
|
31627
|
-
filePath: string;
|
|
31628
|
-
} | null;
|
|
29654
|
+
currentMenuVersion: string | null;
|
|
31629
29655
|
salesMode: string | null;
|
|
31630
29656
|
pendingMenuChanges: boolean;
|
|
31631
29657
|
tagsForImport?: string[] | undefined;
|
|
@@ -31723,25 +29749,7 @@ declare class UpdateIntegration extends AbstractApiRequest<UpdateIntegrationInpu
|
|
|
31723
29749
|
isValidMenu: z.ZodBoolean;
|
|
31724
29750
|
latestMenuSyncAt: z.ZodNullable<z.ZodEffects<z.ZodString, string, string>>;
|
|
31725
29751
|
latestMenuCheckAt: z.ZodNullable<z.ZodEffects<z.ZodString, string, string>>;
|
|
31726
|
-
currentMenuVersion: z.ZodNullable<z.
|
|
31727
|
-
id: z.ZodString;
|
|
31728
|
-
contentUrl: z.ZodString;
|
|
31729
|
-
filePath: z.ZodString;
|
|
31730
|
-
createdAt: z.ZodEffects<z.ZodString, string, string>;
|
|
31731
|
-
updatedAt: z.ZodEffects<z.ZodString, string, string>;
|
|
31732
|
-
}, "strip", z.ZodTypeAny, {
|
|
31733
|
-
id: string;
|
|
31734
|
-
createdAt: string;
|
|
31735
|
-
updatedAt: string;
|
|
31736
|
-
contentUrl: string;
|
|
31737
|
-
filePath: string;
|
|
31738
|
-
}, {
|
|
31739
|
-
id: string;
|
|
31740
|
-
createdAt: string;
|
|
31741
|
-
updatedAt: string;
|
|
31742
|
-
contentUrl: string;
|
|
31743
|
-
filePath: string;
|
|
31744
|
-
}>>;
|
|
29752
|
+
currentMenuVersion: z.ZodUnion<[z.ZodEffects<z.ZodNullable<z.ZodString>, string | null, string | null>, z.ZodEffects<z.ZodNullable<z.ZodString>, string | null, string | null>, z.ZodEffects<z.ZodNullable<z.ZodString>, string | null, string | null>]>;
|
|
31745
29753
|
salesMode: z.ZodEffects<z.ZodNullable<z.ZodString>, string | null, string | null>;
|
|
31746
29754
|
} & {
|
|
31747
29755
|
syncType: z.ZodEnum<["ALL", "DELIVERY", "TAKE_AWAY"]>;
|
|
@@ -31771,13 +29779,7 @@ declare class UpdateIntegration extends AbstractApiRequest<UpdateIntegrationInpu
|
|
|
31771
29779
|
isValidMenu: boolean;
|
|
31772
29780
|
latestMenuSyncAt: string | null;
|
|
31773
29781
|
latestMenuCheckAt: string | null;
|
|
31774
|
-
currentMenuVersion:
|
|
31775
|
-
id: string;
|
|
31776
|
-
createdAt: string;
|
|
31777
|
-
updatedAt: string;
|
|
31778
|
-
contentUrl: string;
|
|
31779
|
-
filePath: string;
|
|
31780
|
-
} | null;
|
|
29782
|
+
currentMenuVersion: string | null;
|
|
31781
29783
|
salesMode: string | null;
|
|
31782
29784
|
nextSyncMenuScheduledAt: string | null;
|
|
31783
29785
|
syncType: "ALL" | "DELIVERY" | "TAKE_AWAY";
|
|
@@ -31803,13 +29805,7 @@ declare class UpdateIntegration extends AbstractApiRequest<UpdateIntegrationInpu
|
|
|
31803
29805
|
isValidMenu: boolean;
|
|
31804
29806
|
latestMenuSyncAt: string | null;
|
|
31805
29807
|
latestMenuCheckAt: string | null;
|
|
31806
|
-
currentMenuVersion:
|
|
31807
|
-
id: string;
|
|
31808
|
-
createdAt: string;
|
|
31809
|
-
updatedAt: string;
|
|
31810
|
-
contentUrl: string;
|
|
31811
|
-
filePath: string;
|
|
31812
|
-
} | null;
|
|
29808
|
+
currentMenuVersion: string | null;
|
|
31813
29809
|
salesMode: string | null;
|
|
31814
29810
|
nextSyncMenuScheduledAt: string | null;
|
|
31815
29811
|
syncType: "ALL" | "DELIVERY" | "TAKE_AWAY";
|
|
@@ -31835,25 +29831,7 @@ declare class UpdateIntegration extends AbstractApiRequest<UpdateIntegrationInpu
|
|
|
31835
29831
|
isValidMenu: z.ZodBoolean;
|
|
31836
29832
|
latestMenuSyncAt: z.ZodNullable<z.ZodEffects<z.ZodString, string, string>>;
|
|
31837
29833
|
latestMenuCheckAt: z.ZodNullable<z.ZodEffects<z.ZodString, string, string>>;
|
|
31838
|
-
currentMenuVersion: z.ZodNullable<z.
|
|
31839
|
-
id: z.ZodString;
|
|
31840
|
-
contentUrl: z.ZodString;
|
|
31841
|
-
filePath: z.ZodString;
|
|
31842
|
-
createdAt: z.ZodEffects<z.ZodString, string, string>;
|
|
31843
|
-
updatedAt: z.ZodEffects<z.ZodString, string, string>;
|
|
31844
|
-
}, "strip", z.ZodTypeAny, {
|
|
31845
|
-
id: string;
|
|
31846
|
-
createdAt: string;
|
|
31847
|
-
updatedAt: string;
|
|
31848
|
-
contentUrl: string;
|
|
31849
|
-
filePath: string;
|
|
31850
|
-
}, {
|
|
31851
|
-
id: string;
|
|
31852
|
-
createdAt: string;
|
|
31853
|
-
updatedAt: string;
|
|
31854
|
-
contentUrl: string;
|
|
31855
|
-
filePath: string;
|
|
31856
|
-
}>>;
|
|
29834
|
+
currentMenuVersion: z.ZodUnion<[z.ZodEffects<z.ZodNullable<z.ZodString>, string | null, string | null>, z.ZodEffects<z.ZodNullable<z.ZodString>, string | null, string | null>, z.ZodEffects<z.ZodNullable<z.ZodString>, string | null, string | null>]>;
|
|
31857
29835
|
salesMode: z.ZodEffects<z.ZodNullable<z.ZodString>, string | null, string | null>;
|
|
31858
29836
|
} & {
|
|
31859
29837
|
brandId: z.ZodString;
|
|
@@ -31884,13 +29862,7 @@ declare class UpdateIntegration extends AbstractApiRequest<UpdateIntegrationInpu
|
|
|
31884
29862
|
isValidMenu: boolean;
|
|
31885
29863
|
latestMenuSyncAt: string | null;
|
|
31886
29864
|
latestMenuCheckAt: string | null;
|
|
31887
|
-
currentMenuVersion:
|
|
31888
|
-
id: string;
|
|
31889
|
-
createdAt: string;
|
|
31890
|
-
updatedAt: string;
|
|
31891
|
-
contentUrl: string;
|
|
31892
|
-
filePath: string;
|
|
31893
|
-
} | null;
|
|
29865
|
+
currentMenuVersion: string | null;
|
|
31894
29866
|
salesMode: string | null;
|
|
31895
29867
|
imageMenuUrl: string | null;
|
|
31896
29868
|
latestOpeningHoursSyncAt: string | null;
|
|
@@ -31916,13 +29888,7 @@ declare class UpdateIntegration extends AbstractApiRequest<UpdateIntegrationInpu
|
|
|
31916
29888
|
isValidMenu: boolean;
|
|
31917
29889
|
latestMenuSyncAt: string | null;
|
|
31918
29890
|
latestMenuCheckAt: string | null;
|
|
31919
|
-
currentMenuVersion:
|
|
31920
|
-
id: string;
|
|
31921
|
-
createdAt: string;
|
|
31922
|
-
updatedAt: string;
|
|
31923
|
-
contentUrl: string;
|
|
31924
|
-
filePath: string;
|
|
31925
|
-
} | null;
|
|
29891
|
+
currentMenuVersion: string | null;
|
|
31926
29892
|
salesMode: string | null;
|
|
31927
29893
|
imageMenuUrl: string | null;
|
|
31928
29894
|
latestOpeningHoursSyncAt: string | null;
|
|
@@ -31947,25 +29913,7 @@ declare class UpdateIntegration extends AbstractApiRequest<UpdateIntegrationInpu
|
|
|
31947
29913
|
isValidMenu: z.ZodBoolean;
|
|
31948
29914
|
latestMenuSyncAt: z.ZodNullable<z.ZodEffects<z.ZodString, string, string>>;
|
|
31949
29915
|
latestMenuCheckAt: z.ZodNullable<z.ZodEffects<z.ZodString, string, string>>;
|
|
31950
|
-
currentMenuVersion: z.ZodNullable<z.
|
|
31951
|
-
id: z.ZodString;
|
|
31952
|
-
contentUrl: z.ZodString;
|
|
31953
|
-
filePath: z.ZodString;
|
|
31954
|
-
createdAt: z.ZodEffects<z.ZodString, string, string>;
|
|
31955
|
-
updatedAt: z.ZodEffects<z.ZodString, string, string>;
|
|
31956
|
-
}, "strip", z.ZodTypeAny, {
|
|
31957
|
-
id: string;
|
|
31958
|
-
createdAt: string;
|
|
31959
|
-
updatedAt: string;
|
|
31960
|
-
contentUrl: string;
|
|
31961
|
-
filePath: string;
|
|
31962
|
-
}, {
|
|
31963
|
-
id: string;
|
|
31964
|
-
createdAt: string;
|
|
31965
|
-
updatedAt: string;
|
|
31966
|
-
contentUrl: string;
|
|
31967
|
-
filePath: string;
|
|
31968
|
-
}>>;
|
|
29916
|
+
currentMenuVersion: z.ZodUnion<[z.ZodEffects<z.ZodNullable<z.ZodString>, string | null, string | null>, z.ZodEffects<z.ZodNullable<z.ZodString>, string | null, string | null>, z.ZodEffects<z.ZodNullable<z.ZodString>, string | null, string | null>]>;
|
|
31969
29917
|
salesMode: z.ZodEffects<z.ZodNullable<z.ZodString>, string | null, string | null>;
|
|
31970
29918
|
} & {
|
|
31971
29919
|
storeId: z.ZodString;
|
|
@@ -31993,13 +29941,7 @@ declare class UpdateIntegration extends AbstractApiRequest<UpdateIntegrationInpu
|
|
|
31993
29941
|
isValidMenu: boolean;
|
|
31994
29942
|
latestMenuSyncAt: string | null;
|
|
31995
29943
|
latestMenuCheckAt: string | null;
|
|
31996
|
-
currentMenuVersion:
|
|
31997
|
-
id: string;
|
|
31998
|
-
createdAt: string;
|
|
31999
|
-
updatedAt: string;
|
|
32000
|
-
contentUrl: string;
|
|
32001
|
-
filePath: string;
|
|
32002
|
-
} | null;
|
|
29944
|
+
currentMenuVersion: string | null;
|
|
32003
29945
|
salesMode: string | null;
|
|
32004
29946
|
pendingMenuChanges: boolean;
|
|
32005
29947
|
tagsForImport?: string[] | undefined;
|
|
@@ -32022,13 +29964,7 @@ declare class UpdateIntegration extends AbstractApiRequest<UpdateIntegrationInpu
|
|
|
32022
29964
|
isValidMenu: boolean;
|
|
32023
29965
|
latestMenuSyncAt: string | null;
|
|
32024
29966
|
latestMenuCheckAt: string | null;
|
|
32025
|
-
currentMenuVersion:
|
|
32026
|
-
id: string;
|
|
32027
|
-
createdAt: string;
|
|
32028
|
-
updatedAt: string;
|
|
32029
|
-
contentUrl: string;
|
|
32030
|
-
filePath: string;
|
|
32031
|
-
} | null;
|
|
29967
|
+
currentMenuVersion: string | null;
|
|
32032
29968
|
salesMode: string | null;
|
|
32033
29969
|
pendingMenuChanges: boolean;
|
|
32034
29970
|
tagsForImport?: string[] | undefined;
|
|
@@ -32152,19 +30088,36 @@ declare function createIntegrationPathSchemas(service: IntegrationService): {
|
|
|
32152
30088
|
pathSchema: z.ZodEffects<z.ZodString, string, string>;
|
|
32153
30089
|
nullablePathSchema: z.ZodEffects<z.ZodNullable<z.ZodString>, string | null, string | null>;
|
|
32154
30090
|
};
|
|
30091
|
+
declare function createIntegrationMenuVersionPathSchemas(service: IntegrationService): {
|
|
30092
|
+
pathSchema: z.ZodEffects<z.ZodString, string, string>;
|
|
30093
|
+
nullablePathSchema: z.ZodEffects<z.ZodNullable<z.ZodString>, string | null, string | null>;
|
|
30094
|
+
};
|
|
32155
30095
|
declare const integrationPathSchemas: Record<IntegrationService, ReturnType<typeof createIntegrationPathSchemas>>;
|
|
30096
|
+
declare const integrationMenuVersionPathSchemas: Record<IntegrationService, ReturnType<typeof createIntegrationMenuVersionPathSchemas>>;
|
|
32156
30097
|
declare const integrationDeliverooPathSchema: z.ZodEffects<z.ZodString, string, string>;
|
|
32157
30098
|
declare const integrationDeliverooNullablePathSchema: z.ZodEffects<z.ZodNullable<z.ZodString>, string | null, string | null>;
|
|
32158
30099
|
type IntegrationDeliverooPath = z.infer<typeof integrationDeliverooPathSchema>;
|
|
32159
30100
|
type IntegrationDeliverooNullablePath = z.infer<typeof integrationDeliverooNullablePathSchema>;
|
|
30101
|
+
declare const integrationDeliverooMenuVersionPathSchema: z.ZodEffects<z.ZodString, string, string>;
|
|
30102
|
+
declare const integrationDeliverooMenuVersionNullablePathSchema: z.ZodEffects<z.ZodNullable<z.ZodString>, string | null, string | null>;
|
|
30103
|
+
type IntegrationDeliverooMenuVersionPath = z.infer<typeof integrationDeliverooMenuVersionPathSchema>;
|
|
30104
|
+
type IntegrationDeliverooMenuVersionNullablePath = z.infer<typeof integrationDeliverooMenuVersionNullablePathSchema>;
|
|
32160
30105
|
declare const integrationGlovoPathSchema: z.ZodEffects<z.ZodString, string, string>;
|
|
32161
30106
|
declare const integrationGlovoNullablePathSchema: z.ZodEffects<z.ZodNullable<z.ZodString>, string | null, string | null>;
|
|
32162
30107
|
type IntegrationGlovoPath = z.infer<typeof integrationGlovoPathSchema>;
|
|
32163
30108
|
type IntegrationGlovoNullablePath = z.infer<typeof integrationGlovoNullablePathSchema>;
|
|
30109
|
+
declare const integrationGlovoMenuVersionPathSchema: z.ZodEffects<z.ZodString, string, string>;
|
|
30110
|
+
declare const integrationGlovoMenuVersionNullablePathSchema: z.ZodEffects<z.ZodNullable<z.ZodString>, string | null, string | null>;
|
|
30111
|
+
type IntegrationGlovoMenuVersionPath = z.infer<typeof integrationGlovoMenuVersionPathSchema>;
|
|
30112
|
+
type IntegrationGlovoMenuVersionNullablePath = z.infer<typeof integrationGlovoMenuVersionNullablePathSchema>;
|
|
32164
30113
|
declare const integrationJustEatPathSchema: z.ZodEffects<z.ZodString, string, string>;
|
|
32165
30114
|
declare const integrationJustEatNullablePathSchema: z.ZodEffects<z.ZodNullable<z.ZodString>, string | null, string | null>;
|
|
32166
30115
|
type IntegrationJustEatPath = z.infer<typeof integrationJustEatPathSchema>;
|
|
32167
30116
|
type IntegrationJustEatNullablePath = z.infer<typeof integrationJustEatNullablePathSchema>;
|
|
30117
|
+
declare const integrationJustEatMenuVersionPathSchema: z.ZodEffects<z.ZodString, string, string>;
|
|
30118
|
+
declare const integrationJustEatMenuVersionNullablePathSchema: z.ZodEffects<z.ZodNullable<z.ZodString>, string | null, string | null>;
|
|
30119
|
+
type IntegrationJustEatMenuVersionPath = z.infer<typeof integrationJustEatMenuVersionPathSchema>;
|
|
30120
|
+
type IntegrationJustEatMenuVersionNullablePath = z.infer<typeof integrationJustEatMenuVersionNullablePathSchema>;
|
|
32168
30121
|
declare const integrationCassaInCloudPathSchema: z.ZodEffects<z.ZodString, string, string>;
|
|
32169
30122
|
declare const integrationCassaInCloudNullablePathSchema: z.ZodEffects<z.ZodNullable<z.ZodString>, string | null, string | null>;
|
|
32170
30123
|
type IntegrationCassaInCloudPath = z.infer<typeof integrationCassaInCloudPathSchema>;
|
|
@@ -32178,4 +30131,4 @@ type IntegrationCassaInCloudSyncMenuErrorLogPath = z.infer<typeof integrationCas
|
|
|
32178
30131
|
declare const integrationCassaInCloudSyncMenuErrorLogNullablePathSchema: z.ZodEffects<z.ZodNullable<z.ZodString>, string | null, string | null>;
|
|
32179
30132
|
type IntegrationCassaInCloudSyncMenuErrorLogNullablePath = z.infer<typeof integrationCassaInCloudSyncMenuErrorLogNullablePathSchema>;
|
|
32180
30133
|
|
|
32181
|
-
export { type ActivatableIntegration, type ActivatableIntegrationHealthStatus, type ActivatableIntegrationStatus, ActivateIntegrationActivationRequest, type ActivateIntegrationActivationRequestResponse, AnnotateIntegrationActivationRequest, type AnnotateIntegrationActivationRequestInput, type AnnotateIntegrationActivationRequestResponse, CancelIntegrationCancellationRequest, type CancelIntegrationCancellationRequestResponse, type ClientLogRequestQuery, CreateIntegrationActivationRequest, type CreateIntegrationActivationRequestInput, type CreateIntegrationActivationRequestResponse, CreateIntegrationCancellationRequest, type CreateIntegrationCancellationRequestInput, type CreateIntegrationCancellationRequestResponse, CreateIntegrationCassaInCloud, type CreateIntegrationCassaInCloudInput, type CreateIntegrationCassaInCloudResponse, CreateIntegrationDeliveroo, type CreateIntegrationDeliverooInput, type CreateIntegrationDeliverooResponse, CreateIntegrationGlovo, type CreateIntegrationGlovoInput, type CreateIntegrationGlovoResponse, CreateIntegrationJustEat, type CreateIntegrationJustEatInput, type CreateIntegrationJustEatResponse, DeleteIntegration, DeleteIntegrationActivationRequest, DeleteIntegrationCancellationRequest, DeleteIntegrationCassaInCloud, DeleteIntegrationDeliveroo, DeleteIntegrationGlovo, DeleteIntegrationJustEat, GetIntegrationActivationRequestDetails, type GetIntegrationActivationRequestDetailsResponse, GetIntegrationActivationRequests, type GetIntegrationActivationRequestsQueryParams, type GetIntegrationActivationRequestsResponse, GetIntegrationCancellationRequestDetails, type GetIntegrationCancellationRequestDetailsResponse, GetIntegrationCancellationRequests, type GetIntegrationCancellationRequestsQueryParams, type GetIntegrationCancellationRequestsResponse, GetIntegrationCassaInCloudClientLogRequestDetails, type GetIntegrationCassaInCloudClientLogRequestDetailsResponse, GetIntegrationCassaInCloudClientLogRequests, type GetIntegrationCassaInCloudClientLogRequestsQueryParams, type GetIntegrationCassaInCloudClientLogRequestsResponse, GetIntegrationCassaInCloudDetails, type GetIntegrationCassaInCloudDetailsResponse, GetIntegrationCassaInCloudList, type GetIntegrationCassaInCloudListQueryParams, type GetIntegrationCassaInCloudListResponse, GetIntegrationCassaInCloudSyncMenuProcessDetails, type GetIntegrationCassaInCloudSyncMenuProcessDetailsResponse, GetIntegrationCassaInCloudSyncMenuProcesses, type GetIntegrationCassaInCloudSyncMenuProcessesQueryParams, type GetIntegrationCassaInCloudSyncMenuProcessesResponse, GetIntegrationCassaInCloudWebHookEventDetails, type GetIntegrationCassaInCloudWebHookEventDetailsResponse, GetIntegrationCassaInCloudWebHookEvents, type GetIntegrationCassaInCloudWebHookEventsQueryParams, type GetIntegrationCassaInCloudWebHookEventsResponse, GetIntegrationDeliverooClientLogRequestDetails, type GetIntegrationDeliverooClientLogRequestDetailsResponse, GetIntegrationDeliverooClientLogRequests, type GetIntegrationDeliverooClientLogRequestsQueryParams, type GetIntegrationDeliverooClientLogRequestsResponse, GetIntegrationDeliverooDetails, type GetIntegrationDeliverooDetailsResponse, GetIntegrationDeliverooList, type GetIntegrationDeliverooListQueryParams, type GetIntegrationDeliverooListResponse, GetIntegrationDeliverooMenuVersionDetails, type GetIntegrationDeliverooMenuVersionDetailsResponse, GetIntegrationDeliverooMenuVersions, type GetIntegrationDeliverooMenuVersionsQueryParams, type GetIntegrationDeliverooMenuVersionsResponse, GetIntegrationDeliverooSyncMenuProcessDetails, type GetIntegrationDeliverooSyncMenuProcessDetailsResponse, GetIntegrationDeliverooSyncMenuProcesses, type GetIntegrationDeliverooSyncMenuProcessesQueryParams, type GetIntegrationDeliverooSyncMenuProcessesResponse, GetIntegrationDeliverooWebhookEventDetails, type GetIntegrationDeliverooWebhookEventDetailsResponse, GetIntegrationDeliverooWebhookEvents, type GetIntegrationDeliverooWebhookEventsQueryParams, type GetIntegrationDeliverooWebhookEventsResponse, GetIntegrationDetails, type GetIntegrationDetailsResponse, GetIntegrationGlovoClientLogRequestDetails, type GetIntegrationGlovoClientLogRequestDetailsResponse, GetIntegrationGlovoClientLogRequests, type GetIntegrationGlovoClientLogRequestsQueryParams, type GetIntegrationGlovoClientLogRequestsResponse, GetIntegrationGlovoDetails, type GetIntegrationGlovoDetailsResponse, GetIntegrationGlovoList, type GetIntegrationGlovoListQueryParams, type GetIntegrationGlovoListResponse, GetIntegrationGlovoMenuUpdateDetails, type GetIntegrationGlovoMenuUpdateDetailsResponse, GetIntegrationGlovoMenuUpdates, type GetIntegrationGlovoMenuUpdatesQueryParams, type GetIntegrationGlovoMenuUpdatesResponse, GetIntegrationGlovoMenuVersionDetails, type GetIntegrationGlovoMenuVersionDetailsResponse, GetIntegrationGlovoMenuVersions, type GetIntegrationGlovoMenuVersionsQueryParams, type GetIntegrationGlovoMenuVersionsResponse, GetIntegrationGlovoWebhookEventDetails, type GetIntegrationGlovoWebhookEventDetailsResponse, GetIntegrationGlovoWebhookEvents, type GetIntegrationGlovoWebhookEventsQueryParams, type GetIntegrationGlovoWebhookEventsResponse, GetIntegrationJustEatClientLogRequestDetails, type GetIntegrationJustEatClientLogRequestDetailsResponse, GetIntegrationJustEatClientLogRequests, type GetIntegrationJustEatClientLogRequestsQueryParams, type GetIntegrationJustEatClientLogRequestsResponse, GetIntegrationJustEatDetails, type GetIntegrationJustEatDetailsResponse, GetIntegrationJustEatList, type GetIntegrationJustEatListQueryParams, type GetIntegrationJustEatListResponse, GetIntegrationJustEatMenuVersionDetails, type GetIntegrationJustEatMenuVersionDetailsResponse, GetIntegrationJustEatMenuVersions, type GetIntegrationJustEatMenuVersionsQueryParams, type GetIntegrationJustEatMenuVersionsResponse, GetIntegrationJustEatSyncMenuProcessDetails, type GetIntegrationJustEatSyncMenuProcessDetailsResponse, GetIntegrationJustEatSyncMenuProcesses, type GetIntegrationJustEatSyncMenuProcessesQueryParams, type GetIntegrationJustEatSyncMenuProcessesResponse, GetIntegrations, type GetIntegrationsQueryParams, type GetIntegrationsResponse, type IntegrationActivationRequest, type IntegrationActivationRequestDetails, type IntegrationCancellationRequest, type IntegrationCancellationRequestDetails, type IntegrationCancellationRequestNullablePath, type IntegrationCancellationRequestPath, type IntegrationCancellationRequestStatus, type IntegrationCassaInCloudData, type IntegrationCassaInCloudDirection, type IntegrationCassaInCloudNullablePath, type IntegrationCassaInCloudPath, type IntegrationCassaInCloudProductChannel, IntegrationCassaInCloudSyncCustomers, type IntegrationCassaInCloudSyncMenuErrorLogNullablePath, type IntegrationCassaInCloudSyncMenuErrorLogPath, IntegrationCassaInCloudSyncOrganizations, IntegrationCassaInCloudSyncProducts, IntegrationCassaInCloudSyncSalesModes, IntegrationCassaInCloudSyncStock, IntegrationCassaInCloudSyncTimetables, type IntegrationCassaInCloudWebHookEventEntity, type IntegrationCassaInCloudWebHookEventEvent, type IntegrationClientLogRequest, type IntegrationClientLogRequestDetails, type IntegrationClientLogRequestMethod, type IntegrationDeliverooData, type IntegrationDeliverooNullablePath, type IntegrationDeliverooPath, type IntegrationDeliverooSiteStatus, IntegrationDeliverooSyncMenu, type IntegrationDeliverooSyncMenuProcessMode, IntegrationDeliverooSyncOpeningHours, type IntegrationDeliverooWebhookEventType, type IntegrationGlovoData, type IntegrationGlovoMenuUpdateStatus, type IntegrationGlovoNullablePath, type IntegrationGlovoPath, type IntegrationGlovoStoreStatus, IntegrationGlovoSyncMenu, type IntegrationGlovoWebhookEventType, type IntegrationJustEatData, type IntegrationJustEatNullablePath, type IntegrationJustEatPath, type IntegrationJustEatRestaurantStatus, IntegrationJustEatSyncMenu, IntegrationJustEatSyncOpeningTimes, type IntegrationJustEatSyncType, type IntegrationNullablePath, type IntegrationPath, type IntegrationProvider, type IntegrationService, type IntegrationServiceData, type IntegrationStatus, type MenuVersion, type MenuVersionDetails, RespondIntegrationActivationRequest, type RespondIntegrationActivationRequestInput, type RespondIntegrationActivationRequestResponse, SendIntegrationActivationRequestToPartner, type SendIntegrationActivationRequestToPartnerResponse, UpdateIntegration, UpdateIntegrationActivationRequest, type UpdateIntegrationActivationRequestInput, type UpdateIntegrationActivationRequestResponse, UpdateIntegrationCassaInCloud, type UpdateIntegrationCassaInCloudInput, type UpdateIntegrationCassaInCloudResponse, UpdateIntegrationDeliveroo, type UpdateIntegrationDeliverooInput, type UpdateIntegrationDeliverooResponse, UpdateIntegrationDeliverooSiteStatus, type UpdateIntegrationDeliverooSiteStatusInput, type UpdateIntegrationDeliverooSiteStatusResponse, UpdateIntegrationGlovo, type UpdateIntegrationGlovoInput, type UpdateIntegrationGlovoResponse, UpdateIntegrationGlovoStoreStatus, type UpdateIntegrationGlovoStoreStatusInput, type UpdateIntegrationGlovoStoreStatusResponse, type UpdateIntegrationInput, UpdateIntegrationJustEat, type UpdateIntegrationJustEatInput, type UpdateIntegrationJustEatResponse, UpdateIntegrationJustEatRestaurantStatus, type UpdateIntegrationJustEatRestaurantStatusInput, type UpdateIntegrationJustEatRestaurantStatusResponse, type UpdateIntegrationResponse, activatableIntegrationBaseSchema, activatableIntegrationHealthStatusSchema, activatableIntegrationHealthStatuses, activatableIntegrationSchema, activatableIntegrationStatusSchema, activatableIntegrationStatuses, activateIntegrationActivationRequestInputSchema, activateIntegrationActivationRequestResponseSchema, annotateIntegrationActivationRequestInputSchema, annotateIntegrationActivationRequestResponseSchema, cancelIntegrationCancellationRequestInputSchema, cancelIntegrationCancellationRequestResponseSchema, clientLogRequestQuerySchema, createIntegrationActivationRequestInputSchema, createIntegrationActivationRequestResponseSchema, createIntegrationCancellationRequestInputSchema, createIntegrationCancellationRequestResponseSchema, createIntegrationCassaInCloudInputSchema, createIntegrationCassaInCloudResponseSchema, createIntegrationDeliverooInputSchema, createIntegrationDeliverooResponseSchema, createIntegrationGlovoInputSchema, createIntegrationGlovoResponseSchema, createIntegrationJustEatInputSchema, createIntegrationJustEatResponseSchema, deleteIntegrationActivationRequestInputSchema, deleteIntegrationActivationRequestResponseSchema, deleteIntegrationCancellationRequestInputSchema, deleteIntegrationCancellationRequestResponseSchema, deleteIntegrationCassaInCloudInputSchema, deleteIntegrationCassaInCloudResponseSchema, deleteIntegrationDeliverooInputSchema, deleteIntegrationDeliverooResponseSchema, deleteIntegrationGlovoInputSchema, deleteIntegrationGlovoResponseSchema, deleteIntegrationInputSchema, deleteIntegrationJustEatInputSchema, deleteIntegrationJustEatResponseSchema, deleteIntegrationResponseSchema, getIntegrationActivationRequestDetailsInputSchema, getIntegrationActivationRequestDetailsResponseSchema, getIntegrationActivationRequestsInputSchema, getIntegrationActivationRequestsQuerySchema, getIntegrationActivationRequestsResponseSchema, getIntegrationCancellationRequestDetailsInputSchema, getIntegrationCancellationRequestDetailsResponseSchema, getIntegrationCancellationRequestsInputSchema, getIntegrationCancellationRequestsQuerySchema, getIntegrationCancellationRequestsResponseSchema, getIntegrationCassaInCloudClientLogRequestDetailsInputSchema, getIntegrationCassaInCloudClientLogRequestDetailsResponseSchema, getIntegrationCassaInCloudClientLogRequestsInputSchema, getIntegrationCassaInCloudClientLogRequestsQuerySchema, getIntegrationCassaInCloudClientLogRequestsResponseSchema, getIntegrationCassaInCloudDetailsInputSchema, getIntegrationCassaInCloudDetailsResponseSchema, getIntegrationCassaInCloudListInputSchema, getIntegrationCassaInCloudListQuerySchema, getIntegrationCassaInCloudListResponseSchema, getIntegrationCassaInCloudSyncMenuProcessDetailsInputSchema, getIntegrationCassaInCloudSyncMenuProcessDetailsResponseSchema, getIntegrationCassaInCloudSyncMenuProcessesInputSchema, getIntegrationCassaInCloudSyncMenuProcessesQuerySchema, getIntegrationCassaInCloudSyncMenuProcessesResponseSchema, getIntegrationCassaInCloudWebHookEventDetailsInputSchema, getIntegrationCassaInCloudWebHookEventDetailsResponseSchema, getIntegrationCassaInCloudWebHookEventsInputSchema, getIntegrationCassaInCloudWebHookEventsQuerySchema, getIntegrationCassaInCloudWebHookEventsResponseSchema, getIntegrationDeliverooClientLogRequestDetailsInputSchema, getIntegrationDeliverooClientLogRequestDetailsResponseSchema, getIntegrationDeliverooClientLogRequestsInputSchema, getIntegrationDeliverooClientLogRequestsQuerySchema, getIntegrationDeliverooClientLogRequestsResponseSchema, getIntegrationDeliverooDetailsInputSchema, getIntegrationDeliverooDetailsResponseSchema, getIntegrationDeliverooListInputSchema, getIntegrationDeliverooListQuerySchema, getIntegrationDeliverooListResponseSchema, getIntegrationDeliverooMenuVersionDetailsInputSchema, getIntegrationDeliverooMenuVersionDetailsResponseSchema, getIntegrationDeliverooMenuVersionsInputSchema, getIntegrationDeliverooMenuVersionsQuerySchema, getIntegrationDeliverooMenuVersionsResponseSchema, getIntegrationDeliverooSyncMenuProcessDetailsInputSchema, getIntegrationDeliverooSyncMenuProcessDetailsResponseSchema, getIntegrationDeliverooSyncMenuProcessesInputSchema, getIntegrationDeliverooSyncMenuProcessesQuerySchema, getIntegrationDeliverooSyncMenuProcessesResponseSchema, getIntegrationDeliverooWebhookEventDetailsInputSchema, getIntegrationDeliverooWebhookEventDetailsResponseSchema, getIntegrationDeliverooWebhookEventsInputSchema, getIntegrationDeliverooWebhookEventsQuerySchema, getIntegrationDeliverooWebhookEventsResponseSchema, getIntegrationDetailsInputSchema, getIntegrationDetailsResponseSchema, getIntegrationGlovoClientLogRequestDetailsInputSchema, getIntegrationGlovoClientLogRequestDetailsResponseSchema, getIntegrationGlovoClientLogRequestsInputSchema, getIntegrationGlovoClientLogRequestsQuerySchema, getIntegrationGlovoClientLogRequestsResponseSchema, getIntegrationGlovoDetailsInputSchema, getIntegrationGlovoDetailsResponseSchema, getIntegrationGlovoListInputSchema, getIntegrationGlovoListQuerySchema, getIntegrationGlovoListResponseSchema, getIntegrationGlovoMenuUpdateDetailsInputSchema, getIntegrationGlovoMenuUpdateDetailsResponseSchema, getIntegrationGlovoMenuUpdatesInputSchema, getIntegrationGlovoMenuUpdatesQuerySchema, getIntegrationGlovoMenuUpdatesResponseSchema, getIntegrationGlovoMenuVersionDetailsInputSchema, getIntegrationGlovoMenuVersionDetailsResponseSchema, getIntegrationGlovoMenuVersionsInputSchema, getIntegrationGlovoMenuVersionsQuerySchema, getIntegrationGlovoMenuVersionsResponseSchema, getIntegrationGlovoWebhookEventDetailsInputSchema, getIntegrationGlovoWebhookEventDetailsResponseSchema, getIntegrationGlovoWebhookEventsInputSchema, getIntegrationGlovoWebhookEventsQuerySchema, getIntegrationGlovoWebhookEventsResponseSchema, getIntegrationJustEatClientLogRequestDetailsInputSchema, getIntegrationJustEatClientLogRequestDetailsResponseSchema, getIntegrationJustEatClientLogRequestsInputSchema, getIntegrationJustEatClientLogRequestsQuerySchema, getIntegrationJustEatClientLogRequestsResponseSchema, getIntegrationJustEatDetailsInputSchema, getIntegrationJustEatDetailsResponseSchema, getIntegrationJustEatListInputSchema, getIntegrationJustEatListQuerySchema, getIntegrationJustEatListResponseSchema, getIntegrationJustEatMenuVersionDetailsInputSchema, getIntegrationJustEatMenuVersionDetailsResponseSchema, getIntegrationJustEatMenuVersionsInputSchema, getIntegrationJustEatMenuVersionsQuerySchema, getIntegrationJustEatMenuVersionsResponseSchema, getIntegrationJustEatSyncMenuProcessDetailsInputSchema, getIntegrationJustEatSyncMenuProcessDetailsResponseSchema, getIntegrationJustEatSyncMenuProcessesInputSchema, getIntegrationJustEatSyncMenuProcessesQuerySchema, getIntegrationJustEatSyncMenuProcessesResponseSchema, getIntegrationsInputSchema, getIntegrationsQuerySchema, getIntegrationsResponseSchema, integrationActivationRequestDetailsSchema, integrationActivationRequestSchema, integrationBaseSchema, integrationCancellationRequestDetailsSchema, integrationCancellationRequestNullablePathSchema, integrationCancellationRequestPathSchema, integrationCancellationRequestSchema, integrationCancellationRequestStatusSchema, integrationCancellationRequestStatuses, integrationCassaInCloudDataSchema, integrationCassaInCloudDirectionSchema, integrationCassaInCloudDirections, integrationCassaInCloudNullablePathSchema, integrationCassaInCloudPathSchema, integrationCassaInCloudProductChannelSchema, integrationCassaInCloudProductChannels, integrationCassaInCloudSyncCustomersInputSchema, integrationCassaInCloudSyncCustomersResponseSchema, integrationCassaInCloudSyncMenuErrorLogNullablePathSchema, integrationCassaInCloudSyncMenuErrorLogPathSchema, integrationCassaInCloudSyncOrganizationsInputSchema, integrationCassaInCloudSyncOrganizationsResponseSchema, integrationCassaInCloudSyncProductsInputSchema, integrationCassaInCloudSyncProductsResponseSchema, integrationCassaInCloudSyncSalesModesInputSchema, integrationCassaInCloudSyncSalesModesResponseSchema, integrationCassaInCloudSyncStockInputSchema, integrationCassaInCloudSyncStockResponseSchema, integrationCassaInCloudSyncTimetablesInputSchema, integrationCassaInCloudSyncTimetablesResponseSchema, integrationCassaInCloudWebHookEventEntities, integrationCassaInCloudWebHookEventEntitySchema, integrationCassaInCloudWebHookEventEventSchema, integrationCassaInCloudWebHookEventEvents, integrationClientLogRequestDetailsSchema, integrationClientLogRequestMethodSchema, integrationClientLogRequestMethods, integrationClientLogRequestSchema, integrationDeliverooDataSchema, integrationDeliverooNullablePathSchema, integrationDeliverooPathSchema, integrationDeliverooSiteStatusSchema, integrationDeliverooSiteStatuses, integrationDeliverooSyncMenuInputSchema, integrationDeliverooSyncMenuProcessModeSchema, integrationDeliverooSyncMenuProcessModes, integrationDeliverooSyncMenuResponseSchema, integrationDeliverooSyncOpeningHoursInputSchema, integrationDeliverooSyncOpeningHoursResponseSchema, integrationDeliverooWebhookEventTypeSchema, integrationDeliverooWebhookEventTypes, integrationDeliveryProviderCommonSchema, integrationDetailsFieldsSchema, integrationGlovoDataSchema, integrationGlovoMenuUpdateStatusSchema, integrationGlovoMenuUpdateStatuses, integrationGlovoNullablePathSchema, integrationGlovoPathSchema, integrationGlovoStoreStatusSchema, integrationGlovoStoreStatuses, integrationGlovoSyncMenuInputSchema, integrationGlovoSyncMenuResponseSchema, integrationGlovoWebhookEventTypeSchema, integrationGlovoWebhookEventTypes, integrationJustEatDataSchema, integrationJustEatNullablePathSchema, integrationJustEatPathSchema, integrationJustEatRestaurantStatusSchema, integrationJustEatRestaurantStatuses, integrationJustEatSyncMenuInputSchema, integrationJustEatSyncMenuResponseSchema, integrationJustEatSyncOpeningHoursInputSchema, integrationJustEatSyncOpeningHoursResponseSchema, integrationJustEatSyncTypeSchema, integrationJustEatSyncTypes, integrationNullablePathSchema, integrationPathSchema, integrationPathSchemas, integrationProviderSchema, integrationProviders, integrationServiceDataSchema, integrationServiceSchema, integrationServices, integrationStatusSchema, integrationStatuses, menuVersionDetailsSchema, menuVersionSchema, respondIntegrationActivationRequestInputSchema, respondIntegrationActivationRequestResponseSchema, sendIntegrationActivationRequestToPartnerInputSchema, sendIntegrationActivationRequestToPartnerResponseSchema, updateIntegrationActivationRequestInputSchema, updateIntegrationActivationRequestResponseSchema, updateIntegrationCassaInCloudInputSchema, updateIntegrationCassaInCloudResponseSchema, updateIntegrationDeliverooInputSchema, updateIntegrationDeliverooResponseSchema, updateIntegrationDeliverooSiteStatusInputSchema, updateIntegrationDeliverooSiteStatusResponseSchema, updateIntegrationGlovoInputSchema, updateIntegrationGlovoResponseSchema, updateIntegrationGlovoStoreStatusInputSchema, updateIntegrationGlovoStoreStatusResponseSchema, updateIntegrationInputSchema, updateIntegrationJustEatInputSchema, updateIntegrationJustEatResponseSchema, updateIntegrationJustEatRestaurantStatusInputSchema, updateIntegrationJustEatRestaurantStatusResponseSchema, updateIntegrationResponseSchema, writableIntegrationSchema };
|
|
30134
|
+
export { type ActivatableIntegration, type ActivatableIntegrationHealthStatus, type ActivatableIntegrationStatus, ActivateIntegrationActivationRequest, type ActivateIntegrationActivationRequestResponse, AnnotateIntegrationActivationRequest, type AnnotateIntegrationActivationRequestInput, type AnnotateIntegrationActivationRequestResponse, CancelIntegrationCancellationRequest, type CancelIntegrationCancellationRequestResponse, type ClientLogRequestQuery, CreateIntegrationActivationRequest, type CreateIntegrationActivationRequestInput, type CreateIntegrationActivationRequestResponse, CreateIntegrationCancellationRequest, type CreateIntegrationCancellationRequestInput, type CreateIntegrationCancellationRequestResponse, CreateIntegrationCassaInCloud, type CreateIntegrationCassaInCloudInput, type CreateIntegrationCassaInCloudResponse, CreateIntegrationDeliveroo, type CreateIntegrationDeliverooInput, type CreateIntegrationDeliverooResponse, CreateIntegrationGlovo, type CreateIntegrationGlovoInput, type CreateIntegrationGlovoResponse, CreateIntegrationJustEat, type CreateIntegrationJustEatInput, type CreateIntegrationJustEatResponse, DeleteIntegration, DeleteIntegrationActivationRequest, DeleteIntegrationCancellationRequest, DeleteIntegrationCassaInCloud, DeleteIntegrationDeliveroo, DeleteIntegrationGlovo, DeleteIntegrationJustEat, GetIntegrationActivationRequestDetails, type GetIntegrationActivationRequestDetailsResponse, GetIntegrationActivationRequests, type GetIntegrationActivationRequestsQueryParams, type GetIntegrationActivationRequestsResponse, GetIntegrationCancellationRequestDetails, type GetIntegrationCancellationRequestDetailsResponse, GetIntegrationCancellationRequests, type GetIntegrationCancellationRequestsQueryParams, type GetIntegrationCancellationRequestsResponse, GetIntegrationCassaInCloudClientLogRequestDetails, type GetIntegrationCassaInCloudClientLogRequestDetailsResponse, GetIntegrationCassaInCloudClientLogRequests, type GetIntegrationCassaInCloudClientLogRequestsQueryParams, type GetIntegrationCassaInCloudClientLogRequestsResponse, GetIntegrationCassaInCloudDetails, type GetIntegrationCassaInCloudDetailsResponse, GetIntegrationCassaInCloudList, type GetIntegrationCassaInCloudListQueryParams, type GetIntegrationCassaInCloudListResponse, GetIntegrationCassaInCloudSyncMenuProcessDetails, type GetIntegrationCassaInCloudSyncMenuProcessDetailsResponse, GetIntegrationCassaInCloudSyncMenuProcesses, type GetIntegrationCassaInCloudSyncMenuProcessesQueryParams, type GetIntegrationCassaInCloudSyncMenuProcessesResponse, GetIntegrationCassaInCloudWebHookEventDetails, type GetIntegrationCassaInCloudWebHookEventDetailsResponse, GetIntegrationCassaInCloudWebHookEvents, type GetIntegrationCassaInCloudWebHookEventsQueryParams, type GetIntegrationCassaInCloudWebHookEventsResponse, GetIntegrationDeliverooClientLogRequestDetails, type GetIntegrationDeliverooClientLogRequestDetailsResponse, GetIntegrationDeliverooClientLogRequests, type GetIntegrationDeliverooClientLogRequestsQueryParams, type GetIntegrationDeliverooClientLogRequestsResponse, GetIntegrationDeliverooDetails, type GetIntegrationDeliverooDetailsResponse, GetIntegrationDeliverooList, type GetIntegrationDeliverooListQueryParams, type GetIntegrationDeliverooListResponse, GetIntegrationDeliverooMenuVersionDetails, type GetIntegrationDeliverooMenuVersionDetailsResponse, GetIntegrationDeliverooMenuVersions, type GetIntegrationDeliverooMenuVersionsQueryParams, type GetIntegrationDeliverooMenuVersionsResponse, GetIntegrationDeliverooSyncMenuProcessDetails, type GetIntegrationDeliverooSyncMenuProcessDetailsResponse, GetIntegrationDeliverooSyncMenuProcesses, type GetIntegrationDeliverooSyncMenuProcessesQueryParams, type GetIntegrationDeliverooSyncMenuProcessesResponse, GetIntegrationDeliverooWebhookEventDetails, type GetIntegrationDeliverooWebhookEventDetailsResponse, GetIntegrationDeliverooWebhookEvents, type GetIntegrationDeliverooWebhookEventsQueryParams, type GetIntegrationDeliverooWebhookEventsResponse, GetIntegrationDetails, type GetIntegrationDetailsResponse, GetIntegrationGlovoClientLogRequestDetails, type GetIntegrationGlovoClientLogRequestDetailsResponse, GetIntegrationGlovoClientLogRequests, type GetIntegrationGlovoClientLogRequestsQueryParams, type GetIntegrationGlovoClientLogRequestsResponse, GetIntegrationGlovoDetails, type GetIntegrationGlovoDetailsResponse, GetIntegrationGlovoList, type GetIntegrationGlovoListQueryParams, type GetIntegrationGlovoListResponse, GetIntegrationGlovoMenuUpdateDetails, type GetIntegrationGlovoMenuUpdateDetailsResponse, GetIntegrationGlovoMenuUpdates, type GetIntegrationGlovoMenuUpdatesQueryParams, type GetIntegrationGlovoMenuUpdatesResponse, GetIntegrationGlovoMenuVersionDetails, type GetIntegrationGlovoMenuVersionDetailsResponse, GetIntegrationGlovoMenuVersions, type GetIntegrationGlovoMenuVersionsQueryParams, type GetIntegrationGlovoMenuVersionsResponse, GetIntegrationGlovoWebhookEventDetails, type GetIntegrationGlovoWebhookEventDetailsResponse, GetIntegrationGlovoWebhookEvents, type GetIntegrationGlovoWebhookEventsQueryParams, type GetIntegrationGlovoWebhookEventsResponse, GetIntegrationJustEatClientLogRequestDetails, type GetIntegrationJustEatClientLogRequestDetailsResponse, GetIntegrationJustEatClientLogRequests, type GetIntegrationJustEatClientLogRequestsQueryParams, type GetIntegrationJustEatClientLogRequestsResponse, GetIntegrationJustEatDetails, type GetIntegrationJustEatDetailsResponse, GetIntegrationJustEatList, type GetIntegrationJustEatListQueryParams, type GetIntegrationJustEatListResponse, GetIntegrationJustEatMenuVersionDetails, type GetIntegrationJustEatMenuVersionDetailsResponse, GetIntegrationJustEatMenuVersions, type GetIntegrationJustEatMenuVersionsQueryParams, type GetIntegrationJustEatMenuVersionsResponse, GetIntegrationJustEatSyncMenuProcessDetails, type GetIntegrationJustEatSyncMenuProcessDetailsResponse, GetIntegrationJustEatSyncMenuProcesses, type GetIntegrationJustEatSyncMenuProcessesQueryParams, type GetIntegrationJustEatSyncMenuProcessesResponse, GetIntegrations, type GetIntegrationsQueryParams, type GetIntegrationsResponse, type IntegrationActivationRequest, type IntegrationActivationRequestDetails, type IntegrationCancellationRequest, type IntegrationCancellationRequestDetails, type IntegrationCancellationRequestNullablePath, type IntegrationCancellationRequestPath, type IntegrationCancellationRequestStatus, type IntegrationCassaInCloudData, type IntegrationCassaInCloudDirection, type IntegrationCassaInCloudNullablePath, type IntegrationCassaInCloudPath, type IntegrationCassaInCloudProductChannel, IntegrationCassaInCloudSyncCustomers, type IntegrationCassaInCloudSyncMenuErrorLogNullablePath, type IntegrationCassaInCloudSyncMenuErrorLogPath, IntegrationCassaInCloudSyncOrganizations, IntegrationCassaInCloudSyncProducts, IntegrationCassaInCloudSyncSalesModes, IntegrationCassaInCloudSyncStock, IntegrationCassaInCloudSyncTimetables, type IntegrationCassaInCloudWebHookEventEntity, type IntegrationCassaInCloudWebHookEventEvent, type IntegrationClientLogRequest, type IntegrationClientLogRequestDetails, type IntegrationClientLogRequestMethod, type IntegrationDeliverooData, type IntegrationDeliverooMenuVersionNullablePath, type IntegrationDeliverooMenuVersionPath, type IntegrationDeliverooNullablePath, type IntegrationDeliverooPath, type IntegrationDeliverooSiteStatus, IntegrationDeliverooSyncMenu, type IntegrationDeliverooSyncMenuProcessMode, IntegrationDeliverooSyncOpeningHours, type IntegrationDeliverooWebhookEventType, type IntegrationGlovoData, type IntegrationGlovoMenuUpdateStatus, type IntegrationGlovoMenuVersionNullablePath, type IntegrationGlovoMenuVersionPath, type IntegrationGlovoNullablePath, type IntegrationGlovoPath, type IntegrationGlovoStoreStatus, IntegrationGlovoSyncMenu, type IntegrationGlovoWebhookEventType, type IntegrationJustEatData, type IntegrationJustEatMenuVersionNullablePath, type IntegrationJustEatMenuVersionPath, type IntegrationJustEatNullablePath, type IntegrationJustEatPath, type IntegrationJustEatRestaurantStatus, IntegrationJustEatSyncMenu, IntegrationJustEatSyncOpeningTimes, type IntegrationJustEatSyncType, type IntegrationNullablePath, type IntegrationPath, type IntegrationProvider, type IntegrationService, type IntegrationServiceData, type IntegrationStatus, type MenuVersion, type MenuVersionDetails, RespondIntegrationActivationRequest, type RespondIntegrationActivationRequestInput, type RespondIntegrationActivationRequestResponse, SendIntegrationActivationRequestToPartner, type SendIntegrationActivationRequestToPartnerResponse, UpdateIntegration, UpdateIntegrationActivationRequest, type UpdateIntegrationActivationRequestInput, type UpdateIntegrationActivationRequestResponse, UpdateIntegrationCassaInCloud, type UpdateIntegrationCassaInCloudInput, type UpdateIntegrationCassaInCloudResponse, UpdateIntegrationDeliveroo, type UpdateIntegrationDeliverooInput, type UpdateIntegrationDeliverooResponse, UpdateIntegrationDeliverooSiteStatus, type UpdateIntegrationDeliverooSiteStatusInput, type UpdateIntegrationDeliverooSiteStatusResponse, UpdateIntegrationGlovo, type UpdateIntegrationGlovoInput, type UpdateIntegrationGlovoResponse, UpdateIntegrationGlovoStoreStatus, type UpdateIntegrationGlovoStoreStatusInput, type UpdateIntegrationGlovoStoreStatusResponse, type UpdateIntegrationInput, UpdateIntegrationJustEat, type UpdateIntegrationJustEatInput, type UpdateIntegrationJustEatResponse, UpdateIntegrationJustEatRestaurantStatus, type UpdateIntegrationJustEatRestaurantStatusInput, type UpdateIntegrationJustEatRestaurantStatusResponse, type UpdateIntegrationResponse, activatableIntegrationBaseSchema, activatableIntegrationHealthStatusSchema, activatableIntegrationHealthStatuses, activatableIntegrationSchema, activatableIntegrationStatusSchema, activatableIntegrationStatuses, activateIntegrationActivationRequestInputSchema, activateIntegrationActivationRequestResponseSchema, annotateIntegrationActivationRequestInputSchema, annotateIntegrationActivationRequestResponseSchema, cancelIntegrationCancellationRequestInputSchema, cancelIntegrationCancellationRequestResponseSchema, clientLogRequestQuerySchema, createIntegrationActivationRequestInputSchema, createIntegrationActivationRequestResponseSchema, createIntegrationCancellationRequestInputSchema, createIntegrationCancellationRequestResponseSchema, createIntegrationCassaInCloudInputSchema, createIntegrationCassaInCloudResponseSchema, createIntegrationDeliverooInputSchema, createIntegrationDeliverooResponseSchema, createIntegrationGlovoInputSchema, createIntegrationGlovoResponseSchema, createIntegrationJustEatInputSchema, createIntegrationJustEatResponseSchema, deleteIntegrationActivationRequestInputSchema, deleteIntegrationActivationRequestResponseSchema, deleteIntegrationCancellationRequestInputSchema, deleteIntegrationCancellationRequestResponseSchema, deleteIntegrationCassaInCloudInputSchema, deleteIntegrationCassaInCloudResponseSchema, deleteIntegrationDeliverooInputSchema, deleteIntegrationDeliverooResponseSchema, deleteIntegrationGlovoInputSchema, deleteIntegrationGlovoResponseSchema, deleteIntegrationInputSchema, deleteIntegrationJustEatInputSchema, deleteIntegrationJustEatResponseSchema, deleteIntegrationResponseSchema, getIntegrationActivationRequestDetailsInputSchema, getIntegrationActivationRequestDetailsResponseSchema, getIntegrationActivationRequestsInputSchema, getIntegrationActivationRequestsQuerySchema, getIntegrationActivationRequestsResponseSchema, getIntegrationCancellationRequestDetailsInputSchema, getIntegrationCancellationRequestDetailsResponseSchema, getIntegrationCancellationRequestsInputSchema, getIntegrationCancellationRequestsQuerySchema, getIntegrationCancellationRequestsResponseSchema, getIntegrationCassaInCloudClientLogRequestDetailsInputSchema, getIntegrationCassaInCloudClientLogRequestDetailsResponseSchema, getIntegrationCassaInCloudClientLogRequestsInputSchema, getIntegrationCassaInCloudClientLogRequestsQuerySchema, getIntegrationCassaInCloudClientLogRequestsResponseSchema, getIntegrationCassaInCloudDetailsInputSchema, getIntegrationCassaInCloudDetailsResponseSchema, getIntegrationCassaInCloudListInputSchema, getIntegrationCassaInCloudListQuerySchema, getIntegrationCassaInCloudListResponseSchema, getIntegrationCassaInCloudSyncMenuProcessDetailsInputSchema, getIntegrationCassaInCloudSyncMenuProcessDetailsResponseSchema, getIntegrationCassaInCloudSyncMenuProcessesInputSchema, getIntegrationCassaInCloudSyncMenuProcessesQuerySchema, getIntegrationCassaInCloudSyncMenuProcessesResponseSchema, getIntegrationCassaInCloudWebHookEventDetailsInputSchema, getIntegrationCassaInCloudWebHookEventDetailsResponseSchema, getIntegrationCassaInCloudWebHookEventsInputSchema, getIntegrationCassaInCloudWebHookEventsQuerySchema, getIntegrationCassaInCloudWebHookEventsResponseSchema, getIntegrationDeliverooClientLogRequestDetailsInputSchema, getIntegrationDeliverooClientLogRequestDetailsResponseSchema, getIntegrationDeliverooClientLogRequestsInputSchema, getIntegrationDeliverooClientLogRequestsQuerySchema, getIntegrationDeliverooClientLogRequestsResponseSchema, getIntegrationDeliverooDetailsInputSchema, getIntegrationDeliverooDetailsResponseSchema, getIntegrationDeliverooListInputSchema, getIntegrationDeliverooListQuerySchema, getIntegrationDeliverooListResponseSchema, getIntegrationDeliverooMenuVersionDetailsInputSchema, getIntegrationDeliverooMenuVersionDetailsResponseSchema, getIntegrationDeliverooMenuVersionsInputSchema, getIntegrationDeliverooMenuVersionsQuerySchema, getIntegrationDeliverooMenuVersionsResponseSchema, getIntegrationDeliverooSyncMenuProcessDetailsInputSchema, getIntegrationDeliverooSyncMenuProcessDetailsResponseSchema, getIntegrationDeliverooSyncMenuProcessesInputSchema, getIntegrationDeliverooSyncMenuProcessesQuerySchema, getIntegrationDeliverooSyncMenuProcessesResponseSchema, getIntegrationDeliverooWebhookEventDetailsInputSchema, getIntegrationDeliverooWebhookEventDetailsResponseSchema, getIntegrationDeliverooWebhookEventsInputSchema, getIntegrationDeliverooWebhookEventsQuerySchema, getIntegrationDeliverooWebhookEventsResponseSchema, getIntegrationDetailsInputSchema, getIntegrationDetailsResponseSchema, getIntegrationGlovoClientLogRequestDetailsInputSchema, getIntegrationGlovoClientLogRequestDetailsResponseSchema, getIntegrationGlovoClientLogRequestsInputSchema, getIntegrationGlovoClientLogRequestsQuerySchema, getIntegrationGlovoClientLogRequestsResponseSchema, getIntegrationGlovoDetailsInputSchema, getIntegrationGlovoDetailsResponseSchema, getIntegrationGlovoListInputSchema, getIntegrationGlovoListQuerySchema, getIntegrationGlovoListResponseSchema, getIntegrationGlovoMenuUpdateDetailsInputSchema, getIntegrationGlovoMenuUpdateDetailsResponseSchema, getIntegrationGlovoMenuUpdatesInputSchema, getIntegrationGlovoMenuUpdatesQuerySchema, getIntegrationGlovoMenuUpdatesResponseSchema, getIntegrationGlovoMenuVersionDetailsInputSchema, getIntegrationGlovoMenuVersionDetailsResponseSchema, getIntegrationGlovoMenuVersionsInputSchema, getIntegrationGlovoMenuVersionsQuerySchema, getIntegrationGlovoMenuVersionsResponseSchema, getIntegrationGlovoWebhookEventDetailsInputSchema, getIntegrationGlovoWebhookEventDetailsResponseSchema, getIntegrationGlovoWebhookEventsInputSchema, getIntegrationGlovoWebhookEventsQuerySchema, getIntegrationGlovoWebhookEventsResponseSchema, getIntegrationJustEatClientLogRequestDetailsInputSchema, getIntegrationJustEatClientLogRequestDetailsResponseSchema, getIntegrationJustEatClientLogRequestsInputSchema, getIntegrationJustEatClientLogRequestsQuerySchema, getIntegrationJustEatClientLogRequestsResponseSchema, getIntegrationJustEatDetailsInputSchema, getIntegrationJustEatDetailsResponseSchema, getIntegrationJustEatListInputSchema, getIntegrationJustEatListQuerySchema, getIntegrationJustEatListResponseSchema, getIntegrationJustEatMenuVersionDetailsInputSchema, getIntegrationJustEatMenuVersionDetailsResponseSchema, getIntegrationJustEatMenuVersionsInputSchema, getIntegrationJustEatMenuVersionsQuerySchema, getIntegrationJustEatMenuVersionsResponseSchema, getIntegrationJustEatSyncMenuProcessDetailsInputSchema, getIntegrationJustEatSyncMenuProcessDetailsResponseSchema, getIntegrationJustEatSyncMenuProcessesInputSchema, getIntegrationJustEatSyncMenuProcessesQuerySchema, getIntegrationJustEatSyncMenuProcessesResponseSchema, getIntegrationsInputSchema, getIntegrationsQuerySchema, getIntegrationsResponseSchema, integrationActivationRequestDetailsSchema, integrationActivationRequestSchema, integrationBaseSchema, integrationCancellationRequestDetailsSchema, integrationCancellationRequestNullablePathSchema, integrationCancellationRequestPathSchema, integrationCancellationRequestSchema, integrationCancellationRequestStatusSchema, integrationCancellationRequestStatuses, integrationCassaInCloudDataSchema, integrationCassaInCloudDirectionSchema, integrationCassaInCloudDirections, integrationCassaInCloudNullablePathSchema, integrationCassaInCloudPathSchema, integrationCassaInCloudProductChannelSchema, integrationCassaInCloudProductChannels, integrationCassaInCloudSyncCustomersInputSchema, integrationCassaInCloudSyncCustomersResponseSchema, integrationCassaInCloudSyncMenuErrorLogNullablePathSchema, integrationCassaInCloudSyncMenuErrorLogPathSchema, integrationCassaInCloudSyncOrganizationsInputSchema, integrationCassaInCloudSyncOrganizationsResponseSchema, integrationCassaInCloudSyncProductsInputSchema, integrationCassaInCloudSyncProductsResponseSchema, integrationCassaInCloudSyncSalesModesInputSchema, integrationCassaInCloudSyncSalesModesResponseSchema, integrationCassaInCloudSyncStockInputSchema, integrationCassaInCloudSyncStockResponseSchema, integrationCassaInCloudSyncTimetablesInputSchema, integrationCassaInCloudSyncTimetablesResponseSchema, integrationCassaInCloudWebHookEventEntities, integrationCassaInCloudWebHookEventEntitySchema, integrationCassaInCloudWebHookEventEventSchema, integrationCassaInCloudWebHookEventEvents, integrationClientLogRequestDetailsSchema, integrationClientLogRequestMethodSchema, integrationClientLogRequestMethods, integrationClientLogRequestSchema, integrationDeliverooDataSchema, integrationDeliverooMenuVersionNullablePathSchema, integrationDeliverooMenuVersionPathSchema, integrationDeliverooNullablePathSchema, integrationDeliverooPathSchema, integrationDeliverooSiteStatusSchema, integrationDeliverooSiteStatuses, integrationDeliverooSyncMenuInputSchema, integrationDeliverooSyncMenuProcessModeSchema, integrationDeliverooSyncMenuProcessModes, integrationDeliverooSyncMenuResponseSchema, integrationDeliverooSyncOpeningHoursInputSchema, integrationDeliverooSyncOpeningHoursResponseSchema, integrationDeliverooWebhookEventTypeSchema, integrationDeliverooWebhookEventTypes, integrationDeliveryProviderCommonSchema, integrationDetailsFieldsSchema, integrationGlovoDataSchema, integrationGlovoMenuUpdateStatusSchema, integrationGlovoMenuUpdateStatuses, integrationGlovoMenuVersionNullablePathSchema, integrationGlovoMenuVersionPathSchema, integrationGlovoNullablePathSchema, integrationGlovoPathSchema, integrationGlovoStoreStatusSchema, integrationGlovoStoreStatuses, integrationGlovoSyncMenuInputSchema, integrationGlovoSyncMenuResponseSchema, integrationGlovoWebhookEventTypeSchema, integrationGlovoWebhookEventTypes, integrationJustEatDataSchema, integrationJustEatMenuVersionNullablePathSchema, integrationJustEatMenuVersionPathSchema, integrationJustEatNullablePathSchema, integrationJustEatPathSchema, integrationJustEatRestaurantStatusSchema, integrationJustEatRestaurantStatuses, integrationJustEatSyncMenuInputSchema, integrationJustEatSyncMenuResponseSchema, integrationJustEatSyncOpeningHoursInputSchema, integrationJustEatSyncOpeningHoursResponseSchema, integrationJustEatSyncTypeSchema, integrationJustEatSyncTypes, integrationMenuVersionPathSchemas, integrationNullablePathSchema, integrationPathSchema, integrationPathSchemas, integrationProviderSchema, integrationProviders, integrationServiceDataSchema, integrationServiceSchema, integrationServices, integrationStatusSchema, integrationStatuses, menuVersionDetailsSchema, menuVersionSchema, respondIntegrationActivationRequestInputSchema, respondIntegrationActivationRequestResponseSchema, sendIntegrationActivationRequestToPartnerInputSchema, sendIntegrationActivationRequestToPartnerResponseSchema, updateIntegrationActivationRequestInputSchema, updateIntegrationActivationRequestResponseSchema, updateIntegrationCassaInCloudInputSchema, updateIntegrationCassaInCloudResponseSchema, updateIntegrationDeliverooInputSchema, updateIntegrationDeliverooResponseSchema, updateIntegrationDeliverooSiteStatusInputSchema, updateIntegrationDeliverooSiteStatusResponseSchema, updateIntegrationGlovoInputSchema, updateIntegrationGlovoResponseSchema, updateIntegrationGlovoStoreStatusInputSchema, updateIntegrationGlovoStoreStatusResponseSchema, updateIntegrationInputSchema, updateIntegrationJustEatInputSchema, updateIntegrationJustEatResponseSchema, updateIntegrationJustEatRestaurantStatusInputSchema, updateIntegrationJustEatRestaurantStatusResponseSchema, updateIntegrationResponseSchema, writableIntegrationSchema };
|