@deliverart/sdk-js-integration 0.0.2 → 0.0.3

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/dist/index.d.cts CHANGED
@@ -16174,8 +16174,8 @@ declare const integrationSchema: z.ZodDiscriminatedUnion<"service", [z.ZodObject
16174
16174
  importTaggedItems: z.ZodBoolean;
16175
16175
  tagsForImport: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
16176
16176
  isValidMenu: z.ZodBoolean;
16177
- latestMenuSyncAt: z.ZodEffects<z.ZodString, string, string>;
16178
- latestMenuCheckAt: z.ZodEffects<z.ZodString, string, string>;
16177
+ latestMenuSyncAt: z.ZodNullable<z.ZodEffects<z.ZodString, string, string>>;
16178
+ latestMenuCheckAt: z.ZodNullable<z.ZodEffects<z.ZodString, string, string>>;
16179
16179
  currentMenuVersion: z.ZodNullable<z.ZodObject<{
16180
16180
  id: z.ZodString;
16181
16181
  contentUrl: z.ZodString;
@@ -16200,7 +16200,7 @@ declare const integrationSchema: z.ZodDiscriminatedUnion<"service", [z.ZodObject
16200
16200
  syncType: z.ZodEnum<["ALL", "DELIVERY", "TAKE_AWAY"]>;
16201
16201
  defaultLanguage: z.ZodString;
16202
16202
  restaurantId: z.ZodString;
16203
- latestOpeningTimesSyncAt: z.ZodEffects<z.ZodString, string, string>;
16203
+ latestOpeningTimesSyncAt: z.ZodNullable<z.ZodEffects<z.ZodString, string, string>>;
16204
16204
  service: z.ZodEnum<["justeat"]>;
16205
16205
  autoAcceptOrders: z.ZodBoolean;
16206
16206
  nextSyncMenuScheduledAt: z.ZodNullable<z.ZodEffects<z.ZodString, string, string>>;
@@ -16219,8 +16219,8 @@ declare const integrationSchema: z.ZodDiscriminatedUnion<"service", [z.ZodObject
16219
16219
  skipNegativePrices: boolean;
16220
16220
  importTaggedItems: boolean;
16221
16221
  isValidMenu: boolean;
16222
- latestMenuSyncAt: string;
16223
- latestMenuCheckAt: string;
16222
+ latestMenuSyncAt: string | null;
16223
+ latestMenuCheckAt: string | null;
16224
16224
  currentMenuVersion: {
16225
16225
  id: string;
16226
16226
  createdAt: string;
@@ -16232,7 +16232,7 @@ declare const integrationSchema: z.ZodDiscriminatedUnion<"service", [z.ZodObject
16232
16232
  nextSyncMenuScheduledAt: string | null;
16233
16233
  syncType: "ALL" | "DELIVERY" | "TAKE_AWAY";
16234
16234
  defaultLanguage: string;
16235
- latestOpeningTimesSyncAt: string;
16235
+ latestOpeningTimesSyncAt: string | null;
16236
16236
  autoAcceptOrders: boolean;
16237
16237
  tagsForImport?: string[] | undefined;
16238
16238
  }, {
@@ -16250,8 +16250,8 @@ declare const integrationSchema: z.ZodDiscriminatedUnion<"service", [z.ZodObject
16250
16250
  skipNegativePrices: boolean;
16251
16251
  importTaggedItems: boolean;
16252
16252
  isValidMenu: boolean;
16253
- latestMenuSyncAt: string;
16254
- latestMenuCheckAt: string;
16253
+ latestMenuSyncAt: string | null;
16254
+ latestMenuCheckAt: string | null;
16255
16255
  currentMenuVersion: {
16256
16256
  id: string;
16257
16257
  createdAt: string;
@@ -16263,7 +16263,7 @@ declare const integrationSchema: z.ZodDiscriminatedUnion<"service", [z.ZodObject
16263
16263
  nextSyncMenuScheduledAt: string | null;
16264
16264
  syncType: "ALL" | "DELIVERY" | "TAKE_AWAY";
16265
16265
  defaultLanguage: string;
16266
- latestOpeningTimesSyncAt: string;
16266
+ latestOpeningTimesSyncAt: string | null;
16267
16267
  autoAcceptOrders: boolean;
16268
16268
  tagsForImport?: string[] | undefined;
16269
16269
  }>, z.ZodObject<Omit<{
@@ -16282,8 +16282,8 @@ declare const integrationSchema: z.ZodDiscriminatedUnion<"service", [z.ZodObject
16282
16282
  importTaggedItems: z.ZodBoolean;
16283
16283
  tagsForImport: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
16284
16284
  isValidMenu: z.ZodBoolean;
16285
- latestMenuSyncAt: z.ZodEffects<z.ZodString, string, string>;
16286
- latestMenuCheckAt: z.ZodEffects<z.ZodString, string, string>;
16285
+ latestMenuSyncAt: z.ZodNullable<z.ZodEffects<z.ZodString, string, string>>;
16286
+ latestMenuCheckAt: z.ZodNullable<z.ZodEffects<z.ZodString, string, string>>;
16287
16287
  currentMenuVersion: z.ZodNullable<z.ZodObject<{
16288
16288
  id: z.ZodString;
16289
16289
  contentUrl: z.ZodString;
@@ -16328,8 +16328,8 @@ declare const integrationSchema: z.ZodDiscriminatedUnion<"service", [z.ZodObject
16328
16328
  skipNegativePrices: boolean;
16329
16329
  importTaggedItems: boolean;
16330
16330
  isValidMenu: boolean;
16331
- latestMenuSyncAt: string;
16332
- latestMenuCheckAt: string;
16331
+ latestMenuSyncAt: string | null;
16332
+ latestMenuCheckAt: string | null;
16333
16333
  currentMenuVersion: {
16334
16334
  id: string;
16335
16335
  createdAt: string;
@@ -16359,8 +16359,8 @@ declare const integrationSchema: z.ZodDiscriminatedUnion<"service", [z.ZodObject
16359
16359
  skipNegativePrices: boolean;
16360
16360
  importTaggedItems: boolean;
16361
16361
  isValidMenu: boolean;
16362
- latestMenuSyncAt: string;
16363
- latestMenuCheckAt: string;
16362
+ latestMenuSyncAt: string | null;
16363
+ latestMenuCheckAt: string | null;
16364
16364
  currentMenuVersion: {
16365
16365
  id: string;
16366
16366
  createdAt: string;
@@ -16390,8 +16390,8 @@ declare const integrationSchema: z.ZodDiscriminatedUnion<"service", [z.ZodObject
16390
16390
  importTaggedItems: z.ZodBoolean;
16391
16391
  tagsForImport: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
16392
16392
  isValidMenu: z.ZodBoolean;
16393
- latestMenuSyncAt: z.ZodEffects<z.ZodString, string, string>;
16394
- latestMenuCheckAt: z.ZodEffects<z.ZodString, string, string>;
16393
+ latestMenuSyncAt: z.ZodNullable<z.ZodEffects<z.ZodString, string, string>>;
16394
+ latestMenuCheckAt: z.ZodNullable<z.ZodEffects<z.ZodString, string, string>>;
16395
16395
  currentMenuVersion: z.ZodNullable<z.ZodObject<{
16396
16396
  id: z.ZodString;
16397
16397
  contentUrl: z.ZodString;
@@ -16433,8 +16433,8 @@ declare const integrationSchema: z.ZodDiscriminatedUnion<"service", [z.ZodObject
16433
16433
  skipNegativePrices: boolean;
16434
16434
  importTaggedItems: boolean;
16435
16435
  isValidMenu: boolean;
16436
- latestMenuSyncAt: string;
16437
- latestMenuCheckAt: string;
16436
+ latestMenuSyncAt: string | null;
16437
+ latestMenuCheckAt: string | null;
16438
16438
  currentMenuVersion: {
16439
16439
  id: string;
16440
16440
  createdAt: string;
@@ -16461,8 +16461,8 @@ declare const integrationSchema: z.ZodDiscriminatedUnion<"service", [z.ZodObject
16461
16461
  skipNegativePrices: boolean;
16462
16462
  importTaggedItems: boolean;
16463
16463
  isValidMenu: boolean;
16464
- latestMenuSyncAt: string;
16465
- latestMenuCheckAt: string;
16464
+ latestMenuSyncAt: string | null;
16465
+ latestMenuCheckAt: string | null;
16466
16466
  currentMenuVersion: {
16467
16467
  id: string;
16468
16468
  createdAt: string;
@@ -16547,8 +16547,8 @@ declare const integrationDetailsSchema: z.ZodDiscriminatedUnion<"service", [z.Zo
16547
16547
  importTaggedItems: z.ZodBoolean;
16548
16548
  tagsForImport: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
16549
16549
  isValidMenu: z.ZodBoolean;
16550
- latestMenuSyncAt: z.ZodEffects<z.ZodString, string, string>;
16551
- latestMenuCheckAt: z.ZodEffects<z.ZodString, string, string>;
16550
+ latestMenuSyncAt: z.ZodNullable<z.ZodEffects<z.ZodString, string, string>>;
16551
+ latestMenuCheckAt: z.ZodNullable<z.ZodEffects<z.ZodString, string, string>>;
16552
16552
  currentMenuVersion: z.ZodNullable<z.ZodObject<{
16553
16553
  id: z.ZodString;
16554
16554
  contentUrl: z.ZodString;
@@ -16573,7 +16573,7 @@ declare const integrationDetailsSchema: z.ZodDiscriminatedUnion<"service", [z.Zo
16573
16573
  syncType: z.ZodEnum<["ALL", "DELIVERY", "TAKE_AWAY"]>;
16574
16574
  defaultLanguage: z.ZodString;
16575
16575
  restaurantId: z.ZodString;
16576
- latestOpeningTimesSyncAt: z.ZodEffects<z.ZodString, string, string>;
16576
+ latestOpeningTimesSyncAt: z.ZodNullable<z.ZodEffects<z.ZodString, string, string>>;
16577
16577
  service: z.ZodEnum<["justeat"]>;
16578
16578
  autoAcceptOrders: z.ZodBoolean;
16579
16579
  nextSyncMenuScheduledAt: z.ZodNullable<z.ZodEffects<z.ZodString, string, string>>;
@@ -16595,8 +16595,8 @@ declare const integrationDetailsSchema: z.ZodDiscriminatedUnion<"service", [z.Zo
16595
16595
  skipNegativePrices: boolean;
16596
16596
  importTaggedItems: boolean;
16597
16597
  isValidMenu: boolean;
16598
- latestMenuSyncAt: string;
16599
- latestMenuCheckAt: string;
16598
+ latestMenuSyncAt: string | null;
16599
+ latestMenuCheckAt: string | null;
16600
16600
  currentMenuVersion: {
16601
16601
  id: string;
16602
16602
  createdAt: string;
@@ -16608,7 +16608,7 @@ declare const integrationDetailsSchema: z.ZodDiscriminatedUnion<"service", [z.Zo
16608
16608
  nextSyncMenuScheduledAt: string | null;
16609
16609
  syncType: "ALL" | "DELIVERY" | "TAKE_AWAY";
16610
16610
  defaultLanguage: string;
16611
- latestOpeningTimesSyncAt: string;
16611
+ latestOpeningTimesSyncAt: string | null;
16612
16612
  autoAcceptOrders: boolean;
16613
16613
  tagsForImport?: string[] | undefined;
16614
16614
  }, {
@@ -16627,8 +16627,8 @@ declare const integrationDetailsSchema: z.ZodDiscriminatedUnion<"service", [z.Zo
16627
16627
  skipNegativePrices: boolean;
16628
16628
  importTaggedItems: boolean;
16629
16629
  isValidMenu: boolean;
16630
- latestMenuSyncAt: string;
16631
- latestMenuCheckAt: string;
16630
+ latestMenuSyncAt: string | null;
16631
+ latestMenuCheckAt: string | null;
16632
16632
  currentMenuVersion: {
16633
16633
  id: string;
16634
16634
  createdAt: string;
@@ -16640,7 +16640,7 @@ declare const integrationDetailsSchema: z.ZodDiscriminatedUnion<"service", [z.Zo
16640
16640
  nextSyncMenuScheduledAt: string | null;
16641
16641
  syncType: "ALL" | "DELIVERY" | "TAKE_AWAY";
16642
16642
  defaultLanguage: string;
16643
- latestOpeningTimesSyncAt: string;
16643
+ latestOpeningTimesSyncAt: string | null;
16644
16644
  autoAcceptOrders: boolean;
16645
16645
  tagsForImport?: string[] | undefined;
16646
16646
  }>, z.ZodObject<Omit<{
@@ -16659,8 +16659,8 @@ declare const integrationDetailsSchema: z.ZodDiscriminatedUnion<"service", [z.Zo
16659
16659
  importTaggedItems: z.ZodBoolean;
16660
16660
  tagsForImport: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
16661
16661
  isValidMenu: z.ZodBoolean;
16662
- latestMenuSyncAt: z.ZodEffects<z.ZodString, string, string>;
16663
- latestMenuCheckAt: z.ZodEffects<z.ZodString, string, string>;
16662
+ latestMenuSyncAt: z.ZodNullable<z.ZodEffects<z.ZodString, string, string>>;
16663
+ latestMenuCheckAt: z.ZodNullable<z.ZodEffects<z.ZodString, string, string>>;
16664
16664
  currentMenuVersion: z.ZodNullable<z.ZodObject<{
16665
16665
  id: z.ZodString;
16666
16666
  contentUrl: z.ZodString;
@@ -16708,8 +16708,8 @@ declare const integrationDetailsSchema: z.ZodDiscriminatedUnion<"service", [z.Zo
16708
16708
  skipNegativePrices: boolean;
16709
16709
  importTaggedItems: boolean;
16710
16710
  isValidMenu: boolean;
16711
- latestMenuSyncAt: string;
16712
- latestMenuCheckAt: string;
16711
+ latestMenuSyncAt: string | null;
16712
+ latestMenuCheckAt: string | null;
16713
16713
  currentMenuVersion: {
16714
16714
  id: string;
16715
16715
  createdAt: string;
@@ -16740,8 +16740,8 @@ declare const integrationDetailsSchema: z.ZodDiscriminatedUnion<"service", [z.Zo
16740
16740
  skipNegativePrices: boolean;
16741
16741
  importTaggedItems: boolean;
16742
16742
  isValidMenu: boolean;
16743
- latestMenuSyncAt: string;
16744
- latestMenuCheckAt: string;
16743
+ latestMenuSyncAt: string | null;
16744
+ latestMenuCheckAt: string | null;
16745
16745
  currentMenuVersion: {
16746
16746
  id: string;
16747
16747
  createdAt: string;
@@ -16771,8 +16771,8 @@ declare const integrationDetailsSchema: z.ZodDiscriminatedUnion<"service", [z.Zo
16771
16771
  importTaggedItems: z.ZodBoolean;
16772
16772
  tagsForImport: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
16773
16773
  isValidMenu: z.ZodBoolean;
16774
- latestMenuSyncAt: z.ZodEffects<z.ZodString, string, string>;
16775
- latestMenuCheckAt: z.ZodEffects<z.ZodString, string, string>;
16774
+ latestMenuSyncAt: z.ZodNullable<z.ZodEffects<z.ZodString, string, string>>;
16775
+ latestMenuCheckAt: z.ZodNullable<z.ZodEffects<z.ZodString, string, string>>;
16776
16776
  currentMenuVersion: z.ZodNullable<z.ZodObject<{
16777
16777
  id: z.ZodString;
16778
16778
  contentUrl: z.ZodString;
@@ -16817,8 +16817,8 @@ declare const integrationDetailsSchema: z.ZodDiscriminatedUnion<"service", [z.Zo
16817
16817
  skipNegativePrices: boolean;
16818
16818
  importTaggedItems: boolean;
16819
16819
  isValidMenu: boolean;
16820
- latestMenuSyncAt: string;
16821
- latestMenuCheckAt: string;
16820
+ latestMenuSyncAt: string | null;
16821
+ latestMenuCheckAt: string | null;
16822
16822
  currentMenuVersion: {
16823
16823
  id: string;
16824
16824
  createdAt: string;
@@ -16846,8 +16846,8 @@ declare const integrationDetailsSchema: z.ZodDiscriminatedUnion<"service", [z.Zo
16846
16846
  skipNegativePrices: boolean;
16847
16847
  importTaggedItems: boolean;
16848
16848
  isValidMenu: boolean;
16849
- latestMenuSyncAt: string;
16850
- latestMenuCheckAt: string;
16849
+ latestMenuSyncAt: string | null;
16850
+ latestMenuCheckAt: string | null;
16851
16851
  currentMenuVersion: {
16852
16852
  id: string;
16853
16853
  createdAt: string;
@@ -16938,8 +16938,8 @@ declare const getIntegrationDetailsResponseSchema: z.ZodDiscriminatedUnion<"serv
16938
16938
  importTaggedItems: z.ZodBoolean;
16939
16939
  tagsForImport: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
16940
16940
  isValidMenu: z.ZodBoolean;
16941
- latestMenuSyncAt: z.ZodEffects<z.ZodString, string, string>;
16942
- latestMenuCheckAt: z.ZodEffects<z.ZodString, string, string>;
16941
+ latestMenuSyncAt: z.ZodNullable<z.ZodEffects<z.ZodString, string, string>>;
16942
+ latestMenuCheckAt: z.ZodNullable<z.ZodEffects<z.ZodString, string, string>>;
16943
16943
  currentMenuVersion: z.ZodNullable<z.ZodObject<{
16944
16944
  id: z.ZodString;
16945
16945
  contentUrl: z.ZodString;
@@ -16964,7 +16964,7 @@ declare const getIntegrationDetailsResponseSchema: z.ZodDiscriminatedUnion<"serv
16964
16964
  syncType: z.ZodEnum<["ALL", "DELIVERY", "TAKE_AWAY"]>;
16965
16965
  defaultLanguage: z.ZodString;
16966
16966
  restaurantId: z.ZodString;
16967
- latestOpeningTimesSyncAt: z.ZodEffects<z.ZodString, string, string>;
16967
+ latestOpeningTimesSyncAt: z.ZodNullable<z.ZodEffects<z.ZodString, string, string>>;
16968
16968
  service: z.ZodEnum<["justeat"]>;
16969
16969
  autoAcceptOrders: z.ZodBoolean;
16970
16970
  nextSyncMenuScheduledAt: z.ZodNullable<z.ZodEffects<z.ZodString, string, string>>;
@@ -16986,8 +16986,8 @@ declare const getIntegrationDetailsResponseSchema: z.ZodDiscriminatedUnion<"serv
16986
16986
  skipNegativePrices: boolean;
16987
16987
  importTaggedItems: boolean;
16988
16988
  isValidMenu: boolean;
16989
- latestMenuSyncAt: string;
16990
- latestMenuCheckAt: string;
16989
+ latestMenuSyncAt: string | null;
16990
+ latestMenuCheckAt: string | null;
16991
16991
  currentMenuVersion: {
16992
16992
  id: string;
16993
16993
  createdAt: string;
@@ -16999,7 +16999,7 @@ declare const getIntegrationDetailsResponseSchema: z.ZodDiscriminatedUnion<"serv
16999
16999
  nextSyncMenuScheduledAt: string | null;
17000
17000
  syncType: "ALL" | "DELIVERY" | "TAKE_AWAY";
17001
17001
  defaultLanguage: string;
17002
- latestOpeningTimesSyncAt: string;
17002
+ latestOpeningTimesSyncAt: string | null;
17003
17003
  autoAcceptOrders: boolean;
17004
17004
  tagsForImport?: string[] | undefined;
17005
17005
  }, {
@@ -17018,8 +17018,8 @@ declare const getIntegrationDetailsResponseSchema: z.ZodDiscriminatedUnion<"serv
17018
17018
  skipNegativePrices: boolean;
17019
17019
  importTaggedItems: boolean;
17020
17020
  isValidMenu: boolean;
17021
- latestMenuSyncAt: string;
17022
- latestMenuCheckAt: string;
17021
+ latestMenuSyncAt: string | null;
17022
+ latestMenuCheckAt: string | null;
17023
17023
  currentMenuVersion: {
17024
17024
  id: string;
17025
17025
  createdAt: string;
@@ -17031,7 +17031,7 @@ declare const getIntegrationDetailsResponseSchema: z.ZodDiscriminatedUnion<"serv
17031
17031
  nextSyncMenuScheduledAt: string | null;
17032
17032
  syncType: "ALL" | "DELIVERY" | "TAKE_AWAY";
17033
17033
  defaultLanguage: string;
17034
- latestOpeningTimesSyncAt: string;
17034
+ latestOpeningTimesSyncAt: string | null;
17035
17035
  autoAcceptOrders: boolean;
17036
17036
  tagsForImport?: string[] | undefined;
17037
17037
  }>, z.ZodObject<Omit<{
@@ -17050,8 +17050,8 @@ declare const getIntegrationDetailsResponseSchema: z.ZodDiscriminatedUnion<"serv
17050
17050
  importTaggedItems: z.ZodBoolean;
17051
17051
  tagsForImport: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
17052
17052
  isValidMenu: z.ZodBoolean;
17053
- latestMenuSyncAt: z.ZodEffects<z.ZodString, string, string>;
17054
- latestMenuCheckAt: z.ZodEffects<z.ZodString, string, string>;
17053
+ latestMenuSyncAt: z.ZodNullable<z.ZodEffects<z.ZodString, string, string>>;
17054
+ latestMenuCheckAt: z.ZodNullable<z.ZodEffects<z.ZodString, string, string>>;
17055
17055
  currentMenuVersion: z.ZodNullable<z.ZodObject<{
17056
17056
  id: z.ZodString;
17057
17057
  contentUrl: z.ZodString;
@@ -17099,8 +17099,8 @@ declare const getIntegrationDetailsResponseSchema: z.ZodDiscriminatedUnion<"serv
17099
17099
  skipNegativePrices: boolean;
17100
17100
  importTaggedItems: boolean;
17101
17101
  isValidMenu: boolean;
17102
- latestMenuSyncAt: string;
17103
- latestMenuCheckAt: string;
17102
+ latestMenuSyncAt: string | null;
17103
+ latestMenuCheckAt: string | null;
17104
17104
  currentMenuVersion: {
17105
17105
  id: string;
17106
17106
  createdAt: string;
@@ -17131,8 +17131,8 @@ declare const getIntegrationDetailsResponseSchema: z.ZodDiscriminatedUnion<"serv
17131
17131
  skipNegativePrices: boolean;
17132
17132
  importTaggedItems: boolean;
17133
17133
  isValidMenu: boolean;
17134
- latestMenuSyncAt: string;
17135
- latestMenuCheckAt: string;
17134
+ latestMenuSyncAt: string | null;
17135
+ latestMenuCheckAt: string | null;
17136
17136
  currentMenuVersion: {
17137
17137
  id: string;
17138
17138
  createdAt: string;
@@ -17162,8 +17162,8 @@ declare const getIntegrationDetailsResponseSchema: z.ZodDiscriminatedUnion<"serv
17162
17162
  importTaggedItems: z.ZodBoolean;
17163
17163
  tagsForImport: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
17164
17164
  isValidMenu: z.ZodBoolean;
17165
- latestMenuSyncAt: z.ZodEffects<z.ZodString, string, string>;
17166
- latestMenuCheckAt: z.ZodEffects<z.ZodString, string, string>;
17165
+ latestMenuSyncAt: z.ZodNullable<z.ZodEffects<z.ZodString, string, string>>;
17166
+ latestMenuCheckAt: z.ZodNullable<z.ZodEffects<z.ZodString, string, string>>;
17167
17167
  currentMenuVersion: z.ZodNullable<z.ZodObject<{
17168
17168
  id: z.ZodString;
17169
17169
  contentUrl: z.ZodString;
@@ -17208,8 +17208,8 @@ declare const getIntegrationDetailsResponseSchema: z.ZodDiscriminatedUnion<"serv
17208
17208
  skipNegativePrices: boolean;
17209
17209
  importTaggedItems: boolean;
17210
17210
  isValidMenu: boolean;
17211
- latestMenuSyncAt: string;
17212
- latestMenuCheckAt: string;
17211
+ latestMenuSyncAt: string | null;
17212
+ latestMenuCheckAt: string | null;
17213
17213
  currentMenuVersion: {
17214
17214
  id: string;
17215
17215
  createdAt: string;
@@ -17237,8 +17237,8 @@ declare const getIntegrationDetailsResponseSchema: z.ZodDiscriminatedUnion<"serv
17237
17237
  skipNegativePrices: boolean;
17238
17238
  importTaggedItems: boolean;
17239
17239
  isValidMenu: boolean;
17240
- latestMenuSyncAt: string;
17241
- latestMenuCheckAt: string;
17240
+ latestMenuSyncAt: string | null;
17241
+ latestMenuCheckAt: string | null;
17242
17242
  currentMenuVersion: {
17243
17243
  id: string;
17244
17244
  createdAt: string;
@@ -17332,8 +17332,8 @@ declare class GetIntegrationDetails extends AbstractApiRequest<void, GetIntegrat
17332
17332
  importTaggedItems: z.ZodBoolean;
17333
17333
  tagsForImport: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
17334
17334
  isValidMenu: z.ZodBoolean;
17335
- latestMenuSyncAt: z.ZodEffects<z.ZodString, string, string>;
17336
- latestMenuCheckAt: z.ZodEffects<z.ZodString, string, string>;
17335
+ latestMenuSyncAt: z.ZodNullable<z.ZodEffects<z.ZodString, string, string>>;
17336
+ latestMenuCheckAt: z.ZodNullable<z.ZodEffects<z.ZodString, string, string>>;
17337
17337
  currentMenuVersion: z.ZodNullable<z.ZodObject<{
17338
17338
  id: z.ZodString;
17339
17339
  contentUrl: z.ZodString;
@@ -17358,7 +17358,7 @@ declare class GetIntegrationDetails extends AbstractApiRequest<void, GetIntegrat
17358
17358
  syncType: z.ZodEnum<["ALL", "DELIVERY", "TAKE_AWAY"]>;
17359
17359
  defaultLanguage: z.ZodString;
17360
17360
  restaurantId: z.ZodString;
17361
- latestOpeningTimesSyncAt: z.ZodEffects<z.ZodString, string, string>;
17361
+ latestOpeningTimesSyncAt: z.ZodNullable<z.ZodEffects<z.ZodString, string, string>>;
17362
17362
  service: z.ZodEnum<["justeat"]>;
17363
17363
  autoAcceptOrders: z.ZodBoolean;
17364
17364
  nextSyncMenuScheduledAt: z.ZodNullable<z.ZodEffects<z.ZodString, string, string>>;
@@ -17380,8 +17380,8 @@ declare class GetIntegrationDetails extends AbstractApiRequest<void, GetIntegrat
17380
17380
  skipNegativePrices: boolean;
17381
17381
  importTaggedItems: boolean;
17382
17382
  isValidMenu: boolean;
17383
- latestMenuSyncAt: string;
17384
- latestMenuCheckAt: string;
17383
+ latestMenuSyncAt: string | null;
17384
+ latestMenuCheckAt: string | null;
17385
17385
  currentMenuVersion: {
17386
17386
  id: string;
17387
17387
  createdAt: string;
@@ -17393,7 +17393,7 @@ declare class GetIntegrationDetails extends AbstractApiRequest<void, GetIntegrat
17393
17393
  nextSyncMenuScheduledAt: string | null;
17394
17394
  syncType: "ALL" | "DELIVERY" | "TAKE_AWAY";
17395
17395
  defaultLanguage: string;
17396
- latestOpeningTimesSyncAt: string;
17396
+ latestOpeningTimesSyncAt: string | null;
17397
17397
  autoAcceptOrders: boolean;
17398
17398
  tagsForImport?: string[] | undefined;
17399
17399
  }, {
@@ -17412,8 +17412,8 @@ declare class GetIntegrationDetails extends AbstractApiRequest<void, GetIntegrat
17412
17412
  skipNegativePrices: boolean;
17413
17413
  importTaggedItems: boolean;
17414
17414
  isValidMenu: boolean;
17415
- latestMenuSyncAt: string;
17416
- latestMenuCheckAt: string;
17415
+ latestMenuSyncAt: string | null;
17416
+ latestMenuCheckAt: string | null;
17417
17417
  currentMenuVersion: {
17418
17418
  id: string;
17419
17419
  createdAt: string;
@@ -17425,7 +17425,7 @@ declare class GetIntegrationDetails extends AbstractApiRequest<void, GetIntegrat
17425
17425
  nextSyncMenuScheduledAt: string | null;
17426
17426
  syncType: "ALL" | "DELIVERY" | "TAKE_AWAY";
17427
17427
  defaultLanguage: string;
17428
- latestOpeningTimesSyncAt: string;
17428
+ latestOpeningTimesSyncAt: string | null;
17429
17429
  autoAcceptOrders: boolean;
17430
17430
  tagsForImport?: string[] | undefined;
17431
17431
  }>, z.ZodObject<Omit<{
@@ -17444,8 +17444,8 @@ declare class GetIntegrationDetails extends AbstractApiRequest<void, GetIntegrat
17444
17444
  importTaggedItems: z.ZodBoolean;
17445
17445
  tagsForImport: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
17446
17446
  isValidMenu: z.ZodBoolean;
17447
- latestMenuSyncAt: z.ZodEffects<z.ZodString, string, string>;
17448
- latestMenuCheckAt: z.ZodEffects<z.ZodString, string, string>;
17447
+ latestMenuSyncAt: z.ZodNullable<z.ZodEffects<z.ZodString, string, string>>;
17448
+ latestMenuCheckAt: z.ZodNullable<z.ZodEffects<z.ZodString, string, string>>;
17449
17449
  currentMenuVersion: z.ZodNullable<z.ZodObject<{
17450
17450
  id: z.ZodString;
17451
17451
  contentUrl: z.ZodString;
@@ -17493,8 +17493,8 @@ declare class GetIntegrationDetails extends AbstractApiRequest<void, GetIntegrat
17493
17493
  skipNegativePrices: boolean;
17494
17494
  importTaggedItems: boolean;
17495
17495
  isValidMenu: boolean;
17496
- latestMenuSyncAt: string;
17497
- latestMenuCheckAt: string;
17496
+ latestMenuSyncAt: string | null;
17497
+ latestMenuCheckAt: string | null;
17498
17498
  currentMenuVersion: {
17499
17499
  id: string;
17500
17500
  createdAt: string;
@@ -17525,8 +17525,8 @@ declare class GetIntegrationDetails extends AbstractApiRequest<void, GetIntegrat
17525
17525
  skipNegativePrices: boolean;
17526
17526
  importTaggedItems: boolean;
17527
17527
  isValidMenu: boolean;
17528
- latestMenuSyncAt: string;
17529
- latestMenuCheckAt: string;
17528
+ latestMenuSyncAt: string | null;
17529
+ latestMenuCheckAt: string | null;
17530
17530
  currentMenuVersion: {
17531
17531
  id: string;
17532
17532
  createdAt: string;
@@ -17556,8 +17556,8 @@ declare class GetIntegrationDetails extends AbstractApiRequest<void, GetIntegrat
17556
17556
  importTaggedItems: z.ZodBoolean;
17557
17557
  tagsForImport: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
17558
17558
  isValidMenu: z.ZodBoolean;
17559
- latestMenuSyncAt: z.ZodEffects<z.ZodString, string, string>;
17560
- latestMenuCheckAt: z.ZodEffects<z.ZodString, string, string>;
17559
+ latestMenuSyncAt: z.ZodNullable<z.ZodEffects<z.ZodString, string, string>>;
17560
+ latestMenuCheckAt: z.ZodNullable<z.ZodEffects<z.ZodString, string, string>>;
17561
17561
  currentMenuVersion: z.ZodNullable<z.ZodObject<{
17562
17562
  id: z.ZodString;
17563
17563
  contentUrl: z.ZodString;
@@ -17602,8 +17602,8 @@ declare class GetIntegrationDetails extends AbstractApiRequest<void, GetIntegrat
17602
17602
  skipNegativePrices: boolean;
17603
17603
  importTaggedItems: boolean;
17604
17604
  isValidMenu: boolean;
17605
- latestMenuSyncAt: string;
17606
- latestMenuCheckAt: string;
17605
+ latestMenuSyncAt: string | null;
17606
+ latestMenuCheckAt: string | null;
17607
17607
  currentMenuVersion: {
17608
17608
  id: string;
17609
17609
  createdAt: string;
@@ -17631,8 +17631,8 @@ declare class GetIntegrationDetails extends AbstractApiRequest<void, GetIntegrat
17631
17631
  skipNegativePrices: boolean;
17632
17632
  importTaggedItems: boolean;
17633
17633
  isValidMenu: boolean;
17634
- latestMenuSyncAt: string;
17635
- latestMenuCheckAt: string;
17634
+ latestMenuSyncAt: string | null;
17635
+ latestMenuCheckAt: string | null;
17636
17636
  currentMenuVersion: {
17637
17637
  id: string;
17638
17638
  createdAt: string;
@@ -17782,8 +17782,8 @@ declare const getIntegrationsResponseSchema: z.ZodObject<{
17782
17782
  importTaggedItems: z.ZodBoolean;
17783
17783
  tagsForImport: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
17784
17784
  isValidMenu: z.ZodBoolean;
17785
- latestMenuSyncAt: z.ZodEffects<z.ZodString, string, string>;
17786
- latestMenuCheckAt: z.ZodEffects<z.ZodString, string, string>;
17785
+ latestMenuSyncAt: z.ZodNullable<z.ZodEffects<z.ZodString, string, string>>;
17786
+ latestMenuCheckAt: z.ZodNullable<z.ZodEffects<z.ZodString, string, string>>;
17787
17787
  currentMenuVersion: z.ZodNullable<z.ZodObject<{
17788
17788
  id: z.ZodString;
17789
17789
  contentUrl: z.ZodString;
@@ -17808,7 +17808,7 @@ declare const getIntegrationsResponseSchema: z.ZodObject<{
17808
17808
  syncType: z.ZodEnum<["ALL", "DELIVERY", "TAKE_AWAY"]>;
17809
17809
  defaultLanguage: z.ZodString;
17810
17810
  restaurantId: z.ZodString;
17811
- latestOpeningTimesSyncAt: z.ZodEffects<z.ZodString, string, string>;
17811
+ latestOpeningTimesSyncAt: z.ZodNullable<z.ZodEffects<z.ZodString, string, string>>;
17812
17812
  service: z.ZodEnum<["justeat"]>;
17813
17813
  autoAcceptOrders: z.ZodBoolean;
17814
17814
  nextSyncMenuScheduledAt: z.ZodNullable<z.ZodEffects<z.ZodString, string, string>>;
@@ -17827,8 +17827,8 @@ declare const getIntegrationsResponseSchema: z.ZodObject<{
17827
17827
  skipNegativePrices: boolean;
17828
17828
  importTaggedItems: boolean;
17829
17829
  isValidMenu: boolean;
17830
- latestMenuSyncAt: string;
17831
- latestMenuCheckAt: string;
17830
+ latestMenuSyncAt: string | null;
17831
+ latestMenuCheckAt: string | null;
17832
17832
  currentMenuVersion: {
17833
17833
  id: string;
17834
17834
  createdAt: string;
@@ -17840,7 +17840,7 @@ declare const getIntegrationsResponseSchema: z.ZodObject<{
17840
17840
  nextSyncMenuScheduledAt: string | null;
17841
17841
  syncType: "ALL" | "DELIVERY" | "TAKE_AWAY";
17842
17842
  defaultLanguage: string;
17843
- latestOpeningTimesSyncAt: string;
17843
+ latestOpeningTimesSyncAt: string | null;
17844
17844
  autoAcceptOrders: boolean;
17845
17845
  tagsForImport?: string[] | undefined;
17846
17846
  }, {
@@ -17858,8 +17858,8 @@ declare const getIntegrationsResponseSchema: z.ZodObject<{
17858
17858
  skipNegativePrices: boolean;
17859
17859
  importTaggedItems: boolean;
17860
17860
  isValidMenu: boolean;
17861
- latestMenuSyncAt: string;
17862
- latestMenuCheckAt: string;
17861
+ latestMenuSyncAt: string | null;
17862
+ latestMenuCheckAt: string | null;
17863
17863
  currentMenuVersion: {
17864
17864
  id: string;
17865
17865
  createdAt: string;
@@ -17871,7 +17871,7 @@ declare const getIntegrationsResponseSchema: z.ZodObject<{
17871
17871
  nextSyncMenuScheduledAt: string | null;
17872
17872
  syncType: "ALL" | "DELIVERY" | "TAKE_AWAY";
17873
17873
  defaultLanguage: string;
17874
- latestOpeningTimesSyncAt: string;
17874
+ latestOpeningTimesSyncAt: string | null;
17875
17875
  autoAcceptOrders: boolean;
17876
17876
  tagsForImport?: string[] | undefined;
17877
17877
  }>, z.ZodObject<Omit<{
@@ -17890,8 +17890,8 @@ declare const getIntegrationsResponseSchema: z.ZodObject<{
17890
17890
  importTaggedItems: z.ZodBoolean;
17891
17891
  tagsForImport: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
17892
17892
  isValidMenu: z.ZodBoolean;
17893
- latestMenuSyncAt: z.ZodEffects<z.ZodString, string, string>;
17894
- latestMenuCheckAt: z.ZodEffects<z.ZodString, string, string>;
17893
+ latestMenuSyncAt: z.ZodNullable<z.ZodEffects<z.ZodString, string, string>>;
17894
+ latestMenuCheckAt: z.ZodNullable<z.ZodEffects<z.ZodString, string, string>>;
17895
17895
  currentMenuVersion: z.ZodNullable<z.ZodObject<{
17896
17896
  id: z.ZodString;
17897
17897
  contentUrl: z.ZodString;
@@ -17936,8 +17936,8 @@ declare const getIntegrationsResponseSchema: z.ZodObject<{
17936
17936
  skipNegativePrices: boolean;
17937
17937
  importTaggedItems: boolean;
17938
17938
  isValidMenu: boolean;
17939
- latestMenuSyncAt: string;
17940
- latestMenuCheckAt: string;
17939
+ latestMenuSyncAt: string | null;
17940
+ latestMenuCheckAt: string | null;
17941
17941
  currentMenuVersion: {
17942
17942
  id: string;
17943
17943
  createdAt: string;
@@ -17967,8 +17967,8 @@ declare const getIntegrationsResponseSchema: z.ZodObject<{
17967
17967
  skipNegativePrices: boolean;
17968
17968
  importTaggedItems: boolean;
17969
17969
  isValidMenu: boolean;
17970
- latestMenuSyncAt: string;
17971
- latestMenuCheckAt: string;
17970
+ latestMenuSyncAt: string | null;
17971
+ latestMenuCheckAt: string | null;
17972
17972
  currentMenuVersion: {
17973
17973
  id: string;
17974
17974
  createdAt: string;
@@ -17998,8 +17998,8 @@ declare const getIntegrationsResponseSchema: z.ZodObject<{
17998
17998
  importTaggedItems: z.ZodBoolean;
17999
17999
  tagsForImport: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
18000
18000
  isValidMenu: z.ZodBoolean;
18001
- latestMenuSyncAt: z.ZodEffects<z.ZodString, string, string>;
18002
- latestMenuCheckAt: z.ZodEffects<z.ZodString, string, string>;
18001
+ latestMenuSyncAt: z.ZodNullable<z.ZodEffects<z.ZodString, string, string>>;
18002
+ latestMenuCheckAt: z.ZodNullable<z.ZodEffects<z.ZodString, string, string>>;
18003
18003
  currentMenuVersion: z.ZodNullable<z.ZodObject<{
18004
18004
  id: z.ZodString;
18005
18005
  contentUrl: z.ZodString;
@@ -18041,8 +18041,8 @@ declare const getIntegrationsResponseSchema: z.ZodObject<{
18041
18041
  skipNegativePrices: boolean;
18042
18042
  importTaggedItems: boolean;
18043
18043
  isValidMenu: boolean;
18044
- latestMenuSyncAt: string;
18045
- latestMenuCheckAt: string;
18044
+ latestMenuSyncAt: string | null;
18045
+ latestMenuCheckAt: string | null;
18046
18046
  currentMenuVersion: {
18047
18047
  id: string;
18048
18048
  createdAt: string;
@@ -18069,8 +18069,8 @@ declare const getIntegrationsResponseSchema: z.ZodObject<{
18069
18069
  skipNegativePrices: boolean;
18070
18070
  importTaggedItems: boolean;
18071
18071
  isValidMenu: boolean;
18072
- latestMenuSyncAt: string;
18073
- latestMenuCheckAt: string;
18072
+ latestMenuSyncAt: string | null;
18073
+ latestMenuCheckAt: string | null;
18074
18074
  currentMenuVersion: {
18075
18075
  id: string;
18076
18076
  createdAt: string;
@@ -18195,8 +18195,8 @@ declare const getIntegrationsResponseSchema: z.ZodObject<{
18195
18195
  skipNegativePrices: boolean;
18196
18196
  importTaggedItems: boolean;
18197
18197
  isValidMenu: boolean;
18198
- latestMenuSyncAt: string;
18199
- latestMenuCheckAt: string;
18198
+ latestMenuSyncAt: string | null;
18199
+ latestMenuCheckAt: string | null;
18200
18200
  currentMenuVersion: {
18201
18201
  id: string;
18202
18202
  createdAt: string;
@@ -18226,8 +18226,8 @@ declare const getIntegrationsResponseSchema: z.ZodObject<{
18226
18226
  skipNegativePrices: boolean;
18227
18227
  importTaggedItems: boolean;
18228
18228
  isValidMenu: boolean;
18229
- latestMenuSyncAt: string;
18230
- latestMenuCheckAt: string;
18229
+ latestMenuSyncAt: string | null;
18230
+ latestMenuCheckAt: string | null;
18231
18231
  currentMenuVersion: {
18232
18232
  id: string;
18233
18233
  createdAt: string;
@@ -18253,8 +18253,8 @@ declare const getIntegrationsResponseSchema: z.ZodObject<{
18253
18253
  skipNegativePrices: boolean;
18254
18254
  importTaggedItems: boolean;
18255
18255
  isValidMenu: boolean;
18256
- latestMenuSyncAt: string;
18257
- latestMenuCheckAt: string;
18256
+ latestMenuSyncAt: string | null;
18257
+ latestMenuCheckAt: string | null;
18258
18258
  currentMenuVersion: {
18259
18259
  id: string;
18260
18260
  createdAt: string;
@@ -18266,7 +18266,7 @@ declare const getIntegrationsResponseSchema: z.ZodObject<{
18266
18266
  nextSyncMenuScheduledAt: string | null;
18267
18267
  syncType: "ALL" | "DELIVERY" | "TAKE_AWAY";
18268
18268
  defaultLanguage: string;
18269
- latestOpeningTimesSyncAt: string;
18269
+ latestOpeningTimesSyncAt: string | null;
18270
18270
  autoAcceptOrders: boolean;
18271
18271
  tagsForImport?: string[] | undefined;
18272
18272
  })[];
@@ -18313,8 +18313,8 @@ declare const getIntegrationsResponseSchema: z.ZodObject<{
18313
18313
  skipNegativePrices: boolean;
18314
18314
  importTaggedItems: boolean;
18315
18315
  isValidMenu: boolean;
18316
- latestMenuSyncAt: string;
18317
- latestMenuCheckAt: string;
18316
+ latestMenuSyncAt: string | null;
18317
+ latestMenuCheckAt: string | null;
18318
18318
  currentMenuVersion: {
18319
18319
  id: string;
18320
18320
  createdAt: string;
@@ -18344,8 +18344,8 @@ declare const getIntegrationsResponseSchema: z.ZodObject<{
18344
18344
  skipNegativePrices: boolean;
18345
18345
  importTaggedItems: boolean;
18346
18346
  isValidMenu: boolean;
18347
- latestMenuSyncAt: string;
18348
- latestMenuCheckAt: string;
18347
+ latestMenuSyncAt: string | null;
18348
+ latestMenuCheckAt: string | null;
18349
18349
  currentMenuVersion: {
18350
18350
  id: string;
18351
18351
  createdAt: string;
@@ -18371,8 +18371,8 @@ declare const getIntegrationsResponseSchema: z.ZodObject<{
18371
18371
  skipNegativePrices: boolean;
18372
18372
  importTaggedItems: boolean;
18373
18373
  isValidMenu: boolean;
18374
- latestMenuSyncAt: string;
18375
- latestMenuCheckAt: string;
18374
+ latestMenuSyncAt: string | null;
18375
+ latestMenuCheckAt: string | null;
18376
18376
  currentMenuVersion: {
18377
18377
  id: string;
18378
18378
  createdAt: string;
@@ -18384,7 +18384,7 @@ declare const getIntegrationsResponseSchema: z.ZodObject<{
18384
18384
  nextSyncMenuScheduledAt: string | null;
18385
18385
  syncType: "ALL" | "DELIVERY" | "TAKE_AWAY";
18386
18386
  defaultLanguage: string;
18387
- latestOpeningTimesSyncAt: string;
18387
+ latestOpeningTimesSyncAt: string | null;
18388
18388
  autoAcceptOrders: boolean;
18389
18389
  tagsForImport?: string[] | undefined;
18390
18390
  })[];
@@ -18421,8 +18421,8 @@ declare class GetIntegrations extends AbstractApiRequest<void, GetIntegrationsRe
18421
18421
  importTaggedItems: z.ZodBoolean;
18422
18422
  tagsForImport: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
18423
18423
  isValidMenu: z.ZodBoolean;
18424
- latestMenuSyncAt: z.ZodEffects<z.ZodString, string, string>;
18425
- latestMenuCheckAt: z.ZodEffects<z.ZodString, string, string>;
18424
+ latestMenuSyncAt: z.ZodNullable<z.ZodEffects<z.ZodString, string, string>>;
18425
+ latestMenuCheckAt: z.ZodNullable<z.ZodEffects<z.ZodString, string, string>>;
18426
18426
  currentMenuVersion: z.ZodNullable<z.ZodObject<{
18427
18427
  id: z.ZodString;
18428
18428
  contentUrl: z.ZodString;
@@ -18447,7 +18447,7 @@ declare class GetIntegrations extends AbstractApiRequest<void, GetIntegrationsRe
18447
18447
  syncType: z.ZodEnum<["ALL", "DELIVERY", "TAKE_AWAY"]>;
18448
18448
  defaultLanguage: z.ZodString;
18449
18449
  restaurantId: z.ZodString;
18450
- latestOpeningTimesSyncAt: z.ZodEffects<z.ZodString, string, string>;
18450
+ latestOpeningTimesSyncAt: z.ZodNullable<z.ZodEffects<z.ZodString, string, string>>;
18451
18451
  service: z.ZodEnum<["justeat"]>;
18452
18452
  autoAcceptOrders: z.ZodBoolean;
18453
18453
  nextSyncMenuScheduledAt: z.ZodNullable<z.ZodEffects<z.ZodString, string, string>>;
@@ -18466,8 +18466,8 @@ declare class GetIntegrations extends AbstractApiRequest<void, GetIntegrationsRe
18466
18466
  skipNegativePrices: boolean;
18467
18467
  importTaggedItems: boolean;
18468
18468
  isValidMenu: boolean;
18469
- latestMenuSyncAt: string;
18470
- latestMenuCheckAt: string;
18469
+ latestMenuSyncAt: string | null;
18470
+ latestMenuCheckAt: string | null;
18471
18471
  currentMenuVersion: {
18472
18472
  id: string;
18473
18473
  createdAt: string;
@@ -18479,7 +18479,7 @@ declare class GetIntegrations extends AbstractApiRequest<void, GetIntegrationsRe
18479
18479
  nextSyncMenuScheduledAt: string | null;
18480
18480
  syncType: "ALL" | "DELIVERY" | "TAKE_AWAY";
18481
18481
  defaultLanguage: string;
18482
- latestOpeningTimesSyncAt: string;
18482
+ latestOpeningTimesSyncAt: string | null;
18483
18483
  autoAcceptOrders: boolean;
18484
18484
  tagsForImport?: string[] | undefined;
18485
18485
  }, {
@@ -18497,8 +18497,8 @@ declare class GetIntegrations extends AbstractApiRequest<void, GetIntegrationsRe
18497
18497
  skipNegativePrices: boolean;
18498
18498
  importTaggedItems: boolean;
18499
18499
  isValidMenu: boolean;
18500
- latestMenuSyncAt: string;
18501
- latestMenuCheckAt: string;
18500
+ latestMenuSyncAt: string | null;
18501
+ latestMenuCheckAt: string | null;
18502
18502
  currentMenuVersion: {
18503
18503
  id: string;
18504
18504
  createdAt: string;
@@ -18510,7 +18510,7 @@ declare class GetIntegrations extends AbstractApiRequest<void, GetIntegrationsRe
18510
18510
  nextSyncMenuScheduledAt: string | null;
18511
18511
  syncType: "ALL" | "DELIVERY" | "TAKE_AWAY";
18512
18512
  defaultLanguage: string;
18513
- latestOpeningTimesSyncAt: string;
18513
+ latestOpeningTimesSyncAt: string | null;
18514
18514
  autoAcceptOrders: boolean;
18515
18515
  tagsForImport?: string[] | undefined;
18516
18516
  }>, z.ZodObject<Omit<{
@@ -18529,8 +18529,8 @@ declare class GetIntegrations extends AbstractApiRequest<void, GetIntegrationsRe
18529
18529
  importTaggedItems: z.ZodBoolean;
18530
18530
  tagsForImport: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
18531
18531
  isValidMenu: z.ZodBoolean;
18532
- latestMenuSyncAt: z.ZodEffects<z.ZodString, string, string>;
18533
- latestMenuCheckAt: z.ZodEffects<z.ZodString, string, string>;
18532
+ latestMenuSyncAt: z.ZodNullable<z.ZodEffects<z.ZodString, string, string>>;
18533
+ latestMenuCheckAt: z.ZodNullable<z.ZodEffects<z.ZodString, string, string>>;
18534
18534
  currentMenuVersion: z.ZodNullable<z.ZodObject<{
18535
18535
  id: z.ZodString;
18536
18536
  contentUrl: z.ZodString;
@@ -18575,8 +18575,8 @@ declare class GetIntegrations extends AbstractApiRequest<void, GetIntegrationsRe
18575
18575
  skipNegativePrices: boolean;
18576
18576
  importTaggedItems: boolean;
18577
18577
  isValidMenu: boolean;
18578
- latestMenuSyncAt: string;
18579
- latestMenuCheckAt: string;
18578
+ latestMenuSyncAt: string | null;
18579
+ latestMenuCheckAt: string | null;
18580
18580
  currentMenuVersion: {
18581
18581
  id: string;
18582
18582
  createdAt: string;
@@ -18606,8 +18606,8 @@ declare class GetIntegrations extends AbstractApiRequest<void, GetIntegrationsRe
18606
18606
  skipNegativePrices: boolean;
18607
18607
  importTaggedItems: boolean;
18608
18608
  isValidMenu: boolean;
18609
- latestMenuSyncAt: string;
18610
- latestMenuCheckAt: string;
18609
+ latestMenuSyncAt: string | null;
18610
+ latestMenuCheckAt: string | null;
18611
18611
  currentMenuVersion: {
18612
18612
  id: string;
18613
18613
  createdAt: string;
@@ -18637,8 +18637,8 @@ declare class GetIntegrations extends AbstractApiRequest<void, GetIntegrationsRe
18637
18637
  importTaggedItems: z.ZodBoolean;
18638
18638
  tagsForImport: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
18639
18639
  isValidMenu: z.ZodBoolean;
18640
- latestMenuSyncAt: z.ZodEffects<z.ZodString, string, string>;
18641
- latestMenuCheckAt: z.ZodEffects<z.ZodString, string, string>;
18640
+ latestMenuSyncAt: z.ZodNullable<z.ZodEffects<z.ZodString, string, string>>;
18641
+ latestMenuCheckAt: z.ZodNullable<z.ZodEffects<z.ZodString, string, string>>;
18642
18642
  currentMenuVersion: z.ZodNullable<z.ZodObject<{
18643
18643
  id: z.ZodString;
18644
18644
  contentUrl: z.ZodString;
@@ -18680,8 +18680,8 @@ declare class GetIntegrations extends AbstractApiRequest<void, GetIntegrationsRe
18680
18680
  skipNegativePrices: boolean;
18681
18681
  importTaggedItems: boolean;
18682
18682
  isValidMenu: boolean;
18683
- latestMenuSyncAt: string;
18684
- latestMenuCheckAt: string;
18683
+ latestMenuSyncAt: string | null;
18684
+ latestMenuCheckAt: string | null;
18685
18685
  currentMenuVersion: {
18686
18686
  id: string;
18687
18687
  createdAt: string;
@@ -18708,8 +18708,8 @@ declare class GetIntegrations extends AbstractApiRequest<void, GetIntegrationsRe
18708
18708
  skipNegativePrices: boolean;
18709
18709
  importTaggedItems: boolean;
18710
18710
  isValidMenu: boolean;
18711
- latestMenuSyncAt: string;
18712
- latestMenuCheckAt: string;
18711
+ latestMenuSyncAt: string | null;
18712
+ latestMenuCheckAt: string | null;
18713
18713
  currentMenuVersion: {
18714
18714
  id: string;
18715
18715
  createdAt: string;
@@ -18834,8 +18834,8 @@ declare class GetIntegrations extends AbstractApiRequest<void, GetIntegrationsRe
18834
18834
  skipNegativePrices: boolean;
18835
18835
  importTaggedItems: boolean;
18836
18836
  isValidMenu: boolean;
18837
- latestMenuSyncAt: string;
18838
- latestMenuCheckAt: string;
18837
+ latestMenuSyncAt: string | null;
18838
+ latestMenuCheckAt: string | null;
18839
18839
  currentMenuVersion: {
18840
18840
  id: string;
18841
18841
  createdAt: string;
@@ -18865,8 +18865,8 @@ declare class GetIntegrations extends AbstractApiRequest<void, GetIntegrationsRe
18865
18865
  skipNegativePrices: boolean;
18866
18866
  importTaggedItems: boolean;
18867
18867
  isValidMenu: boolean;
18868
- latestMenuSyncAt: string;
18869
- latestMenuCheckAt: string;
18868
+ latestMenuSyncAt: string | null;
18869
+ latestMenuCheckAt: string | null;
18870
18870
  currentMenuVersion: {
18871
18871
  id: string;
18872
18872
  createdAt: string;
@@ -18892,8 +18892,8 @@ declare class GetIntegrations extends AbstractApiRequest<void, GetIntegrationsRe
18892
18892
  skipNegativePrices: boolean;
18893
18893
  importTaggedItems: boolean;
18894
18894
  isValidMenu: boolean;
18895
- latestMenuSyncAt: string;
18896
- latestMenuCheckAt: string;
18895
+ latestMenuSyncAt: string | null;
18896
+ latestMenuCheckAt: string | null;
18897
18897
  currentMenuVersion: {
18898
18898
  id: string;
18899
18899
  createdAt: string;
@@ -18905,7 +18905,7 @@ declare class GetIntegrations extends AbstractApiRequest<void, GetIntegrationsRe
18905
18905
  nextSyncMenuScheduledAt: string | null;
18906
18906
  syncType: "ALL" | "DELIVERY" | "TAKE_AWAY";
18907
18907
  defaultLanguage: string;
18908
- latestOpeningTimesSyncAt: string;
18908
+ latestOpeningTimesSyncAt: string | null;
18909
18909
  autoAcceptOrders: boolean;
18910
18910
  tagsForImport?: string[] | undefined;
18911
18911
  })[];
@@ -18952,8 +18952,8 @@ declare class GetIntegrations extends AbstractApiRequest<void, GetIntegrationsRe
18952
18952
  skipNegativePrices: boolean;
18953
18953
  importTaggedItems: boolean;
18954
18954
  isValidMenu: boolean;
18955
- latestMenuSyncAt: string;
18956
- latestMenuCheckAt: string;
18955
+ latestMenuSyncAt: string | null;
18956
+ latestMenuCheckAt: string | null;
18957
18957
  currentMenuVersion: {
18958
18958
  id: string;
18959
18959
  createdAt: string;
@@ -18983,8 +18983,8 @@ declare class GetIntegrations extends AbstractApiRequest<void, GetIntegrationsRe
18983
18983
  skipNegativePrices: boolean;
18984
18984
  importTaggedItems: boolean;
18985
18985
  isValidMenu: boolean;
18986
- latestMenuSyncAt: string;
18987
- latestMenuCheckAt: string;
18986
+ latestMenuSyncAt: string | null;
18987
+ latestMenuCheckAt: string | null;
18988
18988
  currentMenuVersion: {
18989
18989
  id: string;
18990
18990
  createdAt: string;
@@ -19010,8 +19010,8 @@ declare class GetIntegrations extends AbstractApiRequest<void, GetIntegrationsRe
19010
19010
  skipNegativePrices: boolean;
19011
19011
  importTaggedItems: boolean;
19012
19012
  isValidMenu: boolean;
19013
- latestMenuSyncAt: string;
19014
- latestMenuCheckAt: string;
19013
+ latestMenuSyncAt: string | null;
19014
+ latestMenuCheckAt: string | null;
19015
19015
  currentMenuVersion: {
19016
19016
  id: string;
19017
19017
  createdAt: string;
@@ -19023,7 +19023,7 @@ declare class GetIntegrations extends AbstractApiRequest<void, GetIntegrationsRe
19023
19023
  nextSyncMenuScheduledAt: string | null;
19024
19024
  syncType: "ALL" | "DELIVERY" | "TAKE_AWAY";
19025
19025
  defaultLanguage: string;
19026
- latestOpeningTimesSyncAt: string;
19026
+ latestOpeningTimesSyncAt: string | null;
19027
19027
  autoAcceptOrders: boolean;
19028
19028
  tagsForImport?: string[] | undefined;
19029
19029
  })[];
@@ -19691,8 +19691,8 @@ declare const integrationDeliveryProviderCommonSchema: z.ZodObject<{
19691
19691
  importTaggedItems: z.ZodBoolean;
19692
19692
  tagsForImport: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
19693
19693
  isValidMenu: z.ZodBoolean;
19694
- latestMenuSyncAt: z.ZodEffects<z.ZodString, string, string>;
19695
- latestMenuCheckAt: z.ZodEffects<z.ZodString, string, string>;
19694
+ latestMenuSyncAt: z.ZodNullable<z.ZodEffects<z.ZodString, string, string>>;
19695
+ latestMenuCheckAt: z.ZodNullable<z.ZodEffects<z.ZodString, string, string>>;
19696
19696
  currentMenuVersion: z.ZodNullable<z.ZodObject<{
19697
19697
  id: z.ZodString;
19698
19698
  contentUrl: z.ZodString;
@@ -19719,8 +19719,8 @@ declare const integrationDeliveryProviderCommonSchema: z.ZodObject<{
19719
19719
  skipNegativePrices: boolean;
19720
19720
  importTaggedItems: boolean;
19721
19721
  isValidMenu: boolean;
19722
- latestMenuSyncAt: string;
19723
- latestMenuCheckAt: string;
19722
+ latestMenuSyncAt: string | null;
19723
+ latestMenuCheckAt: string | null;
19724
19724
  currentMenuVersion: {
19725
19725
  id: string;
19726
19726
  createdAt: string;
@@ -19736,8 +19736,8 @@ declare const integrationDeliveryProviderCommonSchema: z.ZodObject<{
19736
19736
  skipNegativePrices: boolean;
19737
19737
  importTaggedItems: boolean;
19738
19738
  isValidMenu: boolean;
19739
- latestMenuSyncAt: string;
19740
- latestMenuCheckAt: string;
19739
+ latestMenuSyncAt: string | null;
19740
+ latestMenuCheckAt: string | null;
19741
19741
  currentMenuVersion: {
19742
19742
  id: string;
19743
19743
  createdAt: string;
@@ -21666,8 +21666,8 @@ declare const integrationDeliverooSchema: z.ZodObject<Omit<{
21666
21666
  importTaggedItems: z.ZodBoolean;
21667
21667
  tagsForImport: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
21668
21668
  isValidMenu: z.ZodBoolean;
21669
- latestMenuSyncAt: z.ZodEffects<z.ZodString, string, string>;
21670
- latestMenuCheckAt: z.ZodEffects<z.ZodString, string, string>;
21669
+ latestMenuSyncAt: z.ZodNullable<z.ZodEffects<z.ZodString, string, string>>;
21670
+ latestMenuCheckAt: z.ZodNullable<z.ZodEffects<z.ZodString, string, string>>;
21671
21671
  currentMenuVersion: z.ZodNullable<z.ZodObject<{
21672
21672
  id: z.ZodString;
21673
21673
  contentUrl: z.ZodString;
@@ -21712,8 +21712,8 @@ declare const integrationDeliverooSchema: z.ZodObject<Omit<{
21712
21712
  skipNegativePrices: boolean;
21713
21713
  importTaggedItems: boolean;
21714
21714
  isValidMenu: boolean;
21715
- latestMenuSyncAt: string;
21716
- latestMenuCheckAt: string;
21715
+ latestMenuSyncAt: string | null;
21716
+ latestMenuCheckAt: string | null;
21717
21717
  currentMenuVersion: {
21718
21718
  id: string;
21719
21719
  createdAt: string;
@@ -21743,8 +21743,8 @@ declare const integrationDeliverooSchema: z.ZodObject<Omit<{
21743
21743
  skipNegativePrices: boolean;
21744
21744
  importTaggedItems: boolean;
21745
21745
  isValidMenu: boolean;
21746
- latestMenuSyncAt: string;
21747
- latestMenuCheckAt: string;
21746
+ latestMenuSyncAt: string | null;
21747
+ latestMenuCheckAt: string | null;
21748
21748
  currentMenuVersion: {
21749
21749
  id: string;
21750
21750
  createdAt: string;
@@ -21776,8 +21776,8 @@ declare const integrationDeliverooDetailsSchema: z.ZodObject<Omit<{
21776
21776
  importTaggedItems: z.ZodBoolean;
21777
21777
  tagsForImport: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
21778
21778
  isValidMenu: z.ZodBoolean;
21779
- latestMenuSyncAt: z.ZodEffects<z.ZodString, string, string>;
21780
- latestMenuCheckAt: z.ZodEffects<z.ZodString, string, string>;
21779
+ latestMenuSyncAt: z.ZodNullable<z.ZodEffects<z.ZodString, string, string>>;
21780
+ latestMenuCheckAt: z.ZodNullable<z.ZodEffects<z.ZodString, string, string>>;
21781
21781
  currentMenuVersion: z.ZodNullable<z.ZodObject<{
21782
21782
  id: z.ZodString;
21783
21783
  contentUrl: z.ZodString;
@@ -21825,8 +21825,8 @@ declare const integrationDeliverooDetailsSchema: z.ZodObject<Omit<{
21825
21825
  skipNegativePrices: boolean;
21826
21826
  importTaggedItems: boolean;
21827
21827
  isValidMenu: boolean;
21828
- latestMenuSyncAt: string;
21829
- latestMenuCheckAt: string;
21828
+ latestMenuSyncAt: string | null;
21829
+ latestMenuCheckAt: string | null;
21830
21830
  currentMenuVersion: {
21831
21831
  id: string;
21832
21832
  createdAt: string;
@@ -21857,8 +21857,8 @@ declare const integrationDeliverooDetailsSchema: z.ZodObject<Omit<{
21857
21857
  skipNegativePrices: boolean;
21858
21858
  importTaggedItems: boolean;
21859
21859
  isValidMenu: boolean;
21860
- latestMenuSyncAt: string;
21861
- latestMenuCheckAt: string;
21860
+ latestMenuSyncAt: string | null;
21861
+ latestMenuCheckAt: string | null;
21862
21862
  currentMenuVersion: {
21863
21863
  id: string;
21864
21864
  createdAt: string;
@@ -21890,8 +21890,8 @@ declare const integrationDeliverooEditableFieldsSchema: z.ZodObject<Pick<Omit<{
21890
21890
  importTaggedItems: z.ZodBoolean;
21891
21891
  tagsForImport: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
21892
21892
  isValidMenu: z.ZodBoolean;
21893
- latestMenuSyncAt: z.ZodEffects<z.ZodString, string, string>;
21894
- latestMenuCheckAt: z.ZodEffects<z.ZodString, string, string>;
21893
+ latestMenuSyncAt: z.ZodNullable<z.ZodEffects<z.ZodString, string, string>>;
21894
+ latestMenuCheckAt: z.ZodNullable<z.ZodEffects<z.ZodString, string, string>>;
21895
21895
  currentMenuVersion: z.ZodNullable<z.ZodObject<{
21896
21896
  id: z.ZodString;
21897
21897
  contentUrl: z.ZodString;
@@ -22080,8 +22080,8 @@ declare const createIntegrationDeliverooInputSchema: z.ZodObject<Pick<Omit<{
22080
22080
  importTaggedItems: z.ZodBoolean;
22081
22081
  tagsForImport: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
22082
22082
  isValidMenu: z.ZodBoolean;
22083
- latestMenuSyncAt: z.ZodEffects<z.ZodString, string, string>;
22084
- latestMenuCheckAt: z.ZodEffects<z.ZodString, string, string>;
22083
+ latestMenuSyncAt: z.ZodNullable<z.ZodEffects<z.ZodString, string, string>>;
22084
+ latestMenuCheckAt: z.ZodNullable<z.ZodEffects<z.ZodString, string, string>>;
22085
22085
  currentMenuVersion: z.ZodNullable<z.ZodObject<{
22086
22086
  id: z.ZodString;
22087
22087
  contentUrl: z.ZodString;
@@ -22156,8 +22156,8 @@ declare const createIntegrationDeliverooResponseSchema: z.ZodObject<Omit<{
22156
22156
  importTaggedItems: z.ZodBoolean;
22157
22157
  tagsForImport: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
22158
22158
  isValidMenu: z.ZodBoolean;
22159
- latestMenuSyncAt: z.ZodEffects<z.ZodString, string, string>;
22160
- latestMenuCheckAt: z.ZodEffects<z.ZodString, string, string>;
22159
+ latestMenuSyncAt: z.ZodNullable<z.ZodEffects<z.ZodString, string, string>>;
22160
+ latestMenuCheckAt: z.ZodNullable<z.ZodEffects<z.ZodString, string, string>>;
22161
22161
  currentMenuVersion: z.ZodNullable<z.ZodObject<{
22162
22162
  id: z.ZodString;
22163
22163
  contentUrl: z.ZodString;
@@ -22205,8 +22205,8 @@ declare const createIntegrationDeliverooResponseSchema: z.ZodObject<Omit<{
22205
22205
  skipNegativePrices: boolean;
22206
22206
  importTaggedItems: boolean;
22207
22207
  isValidMenu: boolean;
22208
- latestMenuSyncAt: string;
22209
- latestMenuCheckAt: string;
22208
+ latestMenuSyncAt: string | null;
22209
+ latestMenuCheckAt: string | null;
22210
22210
  currentMenuVersion: {
22211
22211
  id: string;
22212
22212
  createdAt: string;
@@ -22237,8 +22237,8 @@ declare const createIntegrationDeliverooResponseSchema: z.ZodObject<Omit<{
22237
22237
  skipNegativePrices: boolean;
22238
22238
  importTaggedItems: boolean;
22239
22239
  isValidMenu: boolean;
22240
- latestMenuSyncAt: string;
22241
- latestMenuCheckAt: string;
22240
+ latestMenuSyncAt: string | null;
22241
+ latestMenuCheckAt: string | null;
22242
22242
  currentMenuVersion: {
22243
22243
  id: string;
22244
22244
  createdAt: string;
@@ -22274,8 +22274,8 @@ declare class CreateIntegrationDeliveroo extends AbstractApiRequest<CreateIntegr
22274
22274
  importTaggedItems: z.ZodBoolean;
22275
22275
  tagsForImport: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
22276
22276
  isValidMenu: z.ZodBoolean;
22277
- latestMenuSyncAt: z.ZodEffects<z.ZodString, string, string>;
22278
- latestMenuCheckAt: z.ZodEffects<z.ZodString, string, string>;
22277
+ latestMenuSyncAt: z.ZodNullable<z.ZodEffects<z.ZodString, string, string>>;
22278
+ latestMenuCheckAt: z.ZodNullable<z.ZodEffects<z.ZodString, string, string>>;
22279
22279
  currentMenuVersion: z.ZodNullable<z.ZodObject<{
22280
22280
  id: z.ZodString;
22281
22281
  contentUrl: z.ZodString;
@@ -22349,8 +22349,8 @@ declare class CreateIntegrationDeliveroo extends AbstractApiRequest<CreateIntegr
22349
22349
  importTaggedItems: z.ZodBoolean;
22350
22350
  tagsForImport: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
22351
22351
  isValidMenu: z.ZodBoolean;
22352
- latestMenuSyncAt: z.ZodEffects<z.ZodString, string, string>;
22353
- latestMenuCheckAt: z.ZodEffects<z.ZodString, string, string>;
22352
+ latestMenuSyncAt: z.ZodNullable<z.ZodEffects<z.ZodString, string, string>>;
22353
+ latestMenuCheckAt: z.ZodNullable<z.ZodEffects<z.ZodString, string, string>>;
22354
22354
  currentMenuVersion: z.ZodNullable<z.ZodObject<{
22355
22355
  id: z.ZodString;
22356
22356
  contentUrl: z.ZodString;
@@ -22398,8 +22398,8 @@ declare class CreateIntegrationDeliveroo extends AbstractApiRequest<CreateIntegr
22398
22398
  skipNegativePrices: boolean;
22399
22399
  importTaggedItems: boolean;
22400
22400
  isValidMenu: boolean;
22401
- latestMenuSyncAt: string;
22402
- latestMenuCheckAt: string;
22401
+ latestMenuSyncAt: string | null;
22402
+ latestMenuCheckAt: string | null;
22403
22403
  currentMenuVersion: {
22404
22404
  id: string;
22405
22405
  createdAt: string;
@@ -22430,8 +22430,8 @@ declare class CreateIntegrationDeliveroo extends AbstractApiRequest<CreateIntegr
22430
22430
  skipNegativePrices: boolean;
22431
22431
  importTaggedItems: boolean;
22432
22432
  isValidMenu: boolean;
22433
- latestMenuSyncAt: string;
22434
- latestMenuCheckAt: string;
22433
+ latestMenuSyncAt: string | null;
22434
+ latestMenuCheckAt: string | null;
22435
22435
  currentMenuVersion: {
22436
22436
  id: string;
22437
22437
  createdAt: string;
@@ -22822,8 +22822,8 @@ declare const getIntegrationDeliverooDetailsResponseSchema: z.ZodObject<Omit<{
22822
22822
  importTaggedItems: z.ZodBoolean;
22823
22823
  tagsForImport: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
22824
22824
  isValidMenu: z.ZodBoolean;
22825
- latestMenuSyncAt: z.ZodEffects<z.ZodString, string, string>;
22826
- latestMenuCheckAt: z.ZodEffects<z.ZodString, string, string>;
22825
+ latestMenuSyncAt: z.ZodNullable<z.ZodEffects<z.ZodString, string, string>>;
22826
+ latestMenuCheckAt: z.ZodNullable<z.ZodEffects<z.ZodString, string, string>>;
22827
22827
  currentMenuVersion: z.ZodNullable<z.ZodObject<{
22828
22828
  id: z.ZodString;
22829
22829
  contentUrl: z.ZodString;
@@ -22871,8 +22871,8 @@ declare const getIntegrationDeliverooDetailsResponseSchema: z.ZodObject<Omit<{
22871
22871
  skipNegativePrices: boolean;
22872
22872
  importTaggedItems: boolean;
22873
22873
  isValidMenu: boolean;
22874
- latestMenuSyncAt: string;
22875
- latestMenuCheckAt: string;
22874
+ latestMenuSyncAt: string | null;
22875
+ latestMenuCheckAt: string | null;
22876
22876
  currentMenuVersion: {
22877
22877
  id: string;
22878
22878
  createdAt: string;
@@ -22903,8 +22903,8 @@ declare const getIntegrationDeliverooDetailsResponseSchema: z.ZodObject<Omit<{
22903
22903
  skipNegativePrices: boolean;
22904
22904
  importTaggedItems: boolean;
22905
22905
  isValidMenu: boolean;
22906
- latestMenuSyncAt: string;
22907
- latestMenuCheckAt: string;
22906
+ latestMenuSyncAt: string | null;
22907
+ latestMenuCheckAt: string | null;
22908
22908
  currentMenuVersion: {
22909
22909
  id: string;
22910
22910
  createdAt: string;
@@ -22941,8 +22941,8 @@ declare class GetIntegrationDeliverooDetails extends AbstractApiRequest<void, Ge
22941
22941
  importTaggedItems: z.ZodBoolean;
22942
22942
  tagsForImport: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
22943
22943
  isValidMenu: z.ZodBoolean;
22944
- latestMenuSyncAt: z.ZodEffects<z.ZodString, string, string>;
22945
- latestMenuCheckAt: z.ZodEffects<z.ZodString, string, string>;
22944
+ latestMenuSyncAt: z.ZodNullable<z.ZodEffects<z.ZodString, string, string>>;
22945
+ latestMenuCheckAt: z.ZodNullable<z.ZodEffects<z.ZodString, string, string>>;
22946
22946
  currentMenuVersion: z.ZodNullable<z.ZodObject<{
22947
22947
  id: z.ZodString;
22948
22948
  contentUrl: z.ZodString;
@@ -22990,8 +22990,8 @@ declare class GetIntegrationDeliverooDetails extends AbstractApiRequest<void, Ge
22990
22990
  skipNegativePrices: boolean;
22991
22991
  importTaggedItems: boolean;
22992
22992
  isValidMenu: boolean;
22993
- latestMenuSyncAt: string;
22994
- latestMenuCheckAt: string;
22993
+ latestMenuSyncAt: string | null;
22994
+ latestMenuCheckAt: string | null;
22995
22995
  currentMenuVersion: {
22996
22996
  id: string;
22997
22997
  createdAt: string;
@@ -23022,8 +23022,8 @@ declare class GetIntegrationDeliverooDetails extends AbstractApiRequest<void, Ge
23022
23022
  skipNegativePrices: boolean;
23023
23023
  importTaggedItems: boolean;
23024
23024
  isValidMenu: boolean;
23025
- latestMenuSyncAt: string;
23026
- latestMenuCheckAt: string;
23025
+ latestMenuSyncAt: string | null;
23026
+ latestMenuCheckAt: string | null;
23027
23027
  currentMenuVersion: {
23028
23028
  id: string;
23029
23029
  createdAt: string;
@@ -23180,8 +23180,8 @@ declare const getIntegrationDeliverooListResponseSchema: z.ZodObject<{
23180
23180
  importTaggedItems: z.ZodBoolean;
23181
23181
  tagsForImport: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
23182
23182
  isValidMenu: z.ZodBoolean;
23183
- latestMenuSyncAt: z.ZodEffects<z.ZodString, string, string>;
23184
- latestMenuCheckAt: z.ZodEffects<z.ZodString, string, string>;
23183
+ latestMenuSyncAt: z.ZodNullable<z.ZodEffects<z.ZodString, string, string>>;
23184
+ latestMenuCheckAt: z.ZodNullable<z.ZodEffects<z.ZodString, string, string>>;
23185
23185
  currentMenuVersion: z.ZodNullable<z.ZodObject<{
23186
23186
  id: z.ZodString;
23187
23187
  contentUrl: z.ZodString;
@@ -23226,8 +23226,8 @@ declare const getIntegrationDeliverooListResponseSchema: z.ZodObject<{
23226
23226
  skipNegativePrices: boolean;
23227
23227
  importTaggedItems: boolean;
23228
23228
  isValidMenu: boolean;
23229
- latestMenuSyncAt: string;
23230
- latestMenuCheckAt: string;
23229
+ latestMenuSyncAt: string | null;
23230
+ latestMenuCheckAt: string | null;
23231
23231
  currentMenuVersion: {
23232
23232
  id: string;
23233
23233
  createdAt: string;
@@ -23257,8 +23257,8 @@ declare const getIntegrationDeliverooListResponseSchema: z.ZodObject<{
23257
23257
  skipNegativePrices: boolean;
23258
23258
  importTaggedItems: boolean;
23259
23259
  isValidMenu: boolean;
23260
- latestMenuSyncAt: string;
23261
- latestMenuCheckAt: string;
23260
+ latestMenuSyncAt: string | null;
23261
+ latestMenuCheckAt: string | null;
23262
23262
  currentMenuVersion: {
23263
23263
  id: string;
23264
23264
  createdAt: string;
@@ -23312,8 +23312,8 @@ declare const getIntegrationDeliverooListResponseSchema: z.ZodObject<{
23312
23312
  skipNegativePrices: boolean;
23313
23313
  importTaggedItems: boolean;
23314
23314
  isValidMenu: boolean;
23315
- latestMenuSyncAt: string;
23316
- latestMenuCheckAt: string;
23315
+ latestMenuSyncAt: string | null;
23316
+ latestMenuCheckAt: string | null;
23317
23317
  currentMenuVersion: {
23318
23318
  id: string;
23319
23319
  createdAt: string;
@@ -23353,8 +23353,8 @@ declare const getIntegrationDeliverooListResponseSchema: z.ZodObject<{
23353
23353
  skipNegativePrices: boolean;
23354
23354
  importTaggedItems: boolean;
23355
23355
  isValidMenu: boolean;
23356
- latestMenuSyncAt: string;
23357
- latestMenuCheckAt: string;
23356
+ latestMenuSyncAt: string | null;
23357
+ latestMenuCheckAt: string | null;
23358
23358
  currentMenuVersion: {
23359
23359
  id: string;
23360
23360
  createdAt: string;
@@ -23402,8 +23402,8 @@ declare class GetIntegrationDeliverooList extends AbstractApiRequest<void, GetIn
23402
23402
  importTaggedItems: z.ZodBoolean;
23403
23403
  tagsForImport: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
23404
23404
  isValidMenu: z.ZodBoolean;
23405
- latestMenuSyncAt: z.ZodEffects<z.ZodString, string, string>;
23406
- latestMenuCheckAt: z.ZodEffects<z.ZodString, string, string>;
23405
+ latestMenuSyncAt: z.ZodNullable<z.ZodEffects<z.ZodString, string, string>>;
23406
+ latestMenuCheckAt: z.ZodNullable<z.ZodEffects<z.ZodString, string, string>>;
23407
23407
  currentMenuVersion: z.ZodNullable<z.ZodObject<{
23408
23408
  id: z.ZodString;
23409
23409
  contentUrl: z.ZodString;
@@ -23448,8 +23448,8 @@ declare class GetIntegrationDeliverooList extends AbstractApiRequest<void, GetIn
23448
23448
  skipNegativePrices: boolean;
23449
23449
  importTaggedItems: boolean;
23450
23450
  isValidMenu: boolean;
23451
- latestMenuSyncAt: string;
23452
- latestMenuCheckAt: string;
23451
+ latestMenuSyncAt: string | null;
23452
+ latestMenuCheckAt: string | null;
23453
23453
  currentMenuVersion: {
23454
23454
  id: string;
23455
23455
  createdAt: string;
@@ -23479,8 +23479,8 @@ declare class GetIntegrationDeliverooList extends AbstractApiRequest<void, GetIn
23479
23479
  skipNegativePrices: boolean;
23480
23480
  importTaggedItems: boolean;
23481
23481
  isValidMenu: boolean;
23482
- latestMenuSyncAt: string;
23483
- latestMenuCheckAt: string;
23482
+ latestMenuSyncAt: string | null;
23483
+ latestMenuCheckAt: string | null;
23484
23484
  currentMenuVersion: {
23485
23485
  id: string;
23486
23486
  createdAt: string;
@@ -23534,8 +23534,8 @@ declare class GetIntegrationDeliverooList extends AbstractApiRequest<void, GetIn
23534
23534
  skipNegativePrices: boolean;
23535
23535
  importTaggedItems: boolean;
23536
23536
  isValidMenu: boolean;
23537
- latestMenuSyncAt: string;
23538
- latestMenuCheckAt: string;
23537
+ latestMenuSyncAt: string | null;
23538
+ latestMenuCheckAt: string | null;
23539
23539
  currentMenuVersion: {
23540
23540
  id: string;
23541
23541
  createdAt: string;
@@ -23575,8 +23575,8 @@ declare class GetIntegrationDeliverooList extends AbstractApiRequest<void, GetIn
23575
23575
  skipNegativePrices: boolean;
23576
23576
  importTaggedItems: boolean;
23577
23577
  isValidMenu: boolean;
23578
- latestMenuSyncAt: string;
23579
- latestMenuCheckAt: string;
23578
+ latestMenuSyncAt: string | null;
23579
+ latestMenuCheckAt: string | null;
23580
23580
  currentMenuVersion: {
23581
23581
  id: string;
23582
23582
  createdAt: string;
@@ -24539,8 +24539,8 @@ declare const updateIntegrationDeliverooInputSchema: zod.ZodObject<Pick<Omit<{
24539
24539
  importTaggedItems: zod.ZodBoolean;
24540
24540
  tagsForImport: zod.ZodOptional<zod.ZodArray<zod.ZodString, "many">>;
24541
24541
  isValidMenu: zod.ZodBoolean;
24542
- latestMenuSyncAt: zod.ZodEffects<zod.ZodString, string, string>;
24543
- latestMenuCheckAt: zod.ZodEffects<zod.ZodString, string, string>;
24542
+ latestMenuSyncAt: zod.ZodNullable<zod.ZodEffects<zod.ZodString, string, string>>;
24543
+ latestMenuCheckAt: zod.ZodNullable<zod.ZodEffects<zod.ZodString, string, string>>;
24544
24544
  currentMenuVersion: zod.ZodNullable<zod.ZodObject<{
24545
24545
  id: zod.ZodString;
24546
24546
  contentUrl: zod.ZodString;
@@ -24611,8 +24611,8 @@ declare const updateIntegrationDeliverooResponseSchema: zod.ZodObject<Omit<{
24611
24611
  importTaggedItems: zod.ZodBoolean;
24612
24612
  tagsForImport: zod.ZodOptional<zod.ZodArray<zod.ZodString, "many">>;
24613
24613
  isValidMenu: zod.ZodBoolean;
24614
- latestMenuSyncAt: zod.ZodEffects<zod.ZodString, string, string>;
24615
- latestMenuCheckAt: zod.ZodEffects<zod.ZodString, string, string>;
24614
+ latestMenuSyncAt: zod.ZodNullable<zod.ZodEffects<zod.ZodString, string, string>>;
24615
+ latestMenuCheckAt: zod.ZodNullable<zod.ZodEffects<zod.ZodString, string, string>>;
24616
24616
  currentMenuVersion: zod.ZodNullable<zod.ZodObject<{
24617
24617
  id: zod.ZodString;
24618
24618
  contentUrl: zod.ZodString;
@@ -24660,8 +24660,8 @@ declare const updateIntegrationDeliverooResponseSchema: zod.ZodObject<Omit<{
24660
24660
  skipNegativePrices: boolean;
24661
24661
  importTaggedItems: boolean;
24662
24662
  isValidMenu: boolean;
24663
- latestMenuSyncAt: string;
24664
- latestMenuCheckAt: string;
24663
+ latestMenuSyncAt: string | null;
24664
+ latestMenuCheckAt: string | null;
24665
24665
  currentMenuVersion: {
24666
24666
  id: string;
24667
24667
  createdAt: string;
@@ -24692,8 +24692,8 @@ declare const updateIntegrationDeliverooResponseSchema: zod.ZodObject<Omit<{
24692
24692
  skipNegativePrices: boolean;
24693
24693
  importTaggedItems: boolean;
24694
24694
  isValidMenu: boolean;
24695
- latestMenuSyncAt: string;
24696
- latestMenuCheckAt: string;
24695
+ latestMenuSyncAt: string | null;
24696
+ latestMenuCheckAt: string | null;
24697
24697
  currentMenuVersion: {
24698
24698
  id: string;
24699
24699
  createdAt: string;
@@ -24729,8 +24729,8 @@ declare class UpdateIntegrationDeliveroo extends AbstractApiRequest<UpdateIntegr
24729
24729
  importTaggedItems: zod.ZodBoolean;
24730
24730
  tagsForImport: zod.ZodOptional<zod.ZodArray<zod.ZodString, "many">>;
24731
24731
  isValidMenu: zod.ZodBoolean;
24732
- latestMenuSyncAt: zod.ZodEffects<zod.ZodString, string, string>;
24733
- latestMenuCheckAt: zod.ZodEffects<zod.ZodString, string, string>;
24732
+ latestMenuSyncAt: zod.ZodNullable<zod.ZodEffects<zod.ZodString, string, string>>;
24733
+ latestMenuCheckAt: zod.ZodNullable<zod.ZodEffects<zod.ZodString, string, string>>;
24734
24734
  currentMenuVersion: zod.ZodNullable<zod.ZodObject<{
24735
24735
  id: zod.ZodString;
24736
24736
  contentUrl: zod.ZodString;
@@ -24800,8 +24800,8 @@ declare class UpdateIntegrationDeliveroo extends AbstractApiRequest<UpdateIntegr
24800
24800
  importTaggedItems: zod.ZodBoolean;
24801
24801
  tagsForImport: zod.ZodOptional<zod.ZodArray<zod.ZodString, "many">>;
24802
24802
  isValidMenu: zod.ZodBoolean;
24803
- latestMenuSyncAt: zod.ZodEffects<zod.ZodString, string, string>;
24804
- latestMenuCheckAt: zod.ZodEffects<zod.ZodString, string, string>;
24803
+ latestMenuSyncAt: zod.ZodNullable<zod.ZodEffects<zod.ZodString, string, string>>;
24804
+ latestMenuCheckAt: zod.ZodNullable<zod.ZodEffects<zod.ZodString, string, string>>;
24805
24805
  currentMenuVersion: zod.ZodNullable<zod.ZodObject<{
24806
24806
  id: zod.ZodString;
24807
24807
  contentUrl: zod.ZodString;
@@ -24849,8 +24849,8 @@ declare class UpdateIntegrationDeliveroo extends AbstractApiRequest<UpdateIntegr
24849
24849
  skipNegativePrices: boolean;
24850
24850
  importTaggedItems: boolean;
24851
24851
  isValidMenu: boolean;
24852
- latestMenuSyncAt: string;
24853
- latestMenuCheckAt: string;
24852
+ latestMenuSyncAt: string | null;
24853
+ latestMenuCheckAt: string | null;
24854
24854
  currentMenuVersion: {
24855
24855
  id: string;
24856
24856
  createdAt: string;
@@ -24881,8 +24881,8 @@ declare class UpdateIntegrationDeliveroo extends AbstractApiRequest<UpdateIntegr
24881
24881
  skipNegativePrices: boolean;
24882
24882
  importTaggedItems: boolean;
24883
24883
  isValidMenu: boolean;
24884
- latestMenuSyncAt: string;
24885
- latestMenuCheckAt: string;
24884
+ latestMenuSyncAt: string | null;
24885
+ latestMenuCheckAt: string | null;
24886
24886
  currentMenuVersion: {
24887
24887
  id: string;
24888
24888
  createdAt: string;
@@ -24928,8 +24928,8 @@ declare const updateIntegrationDeliverooSiteStatusResponseSchema: z.ZodObject<Om
24928
24928
  importTaggedItems: z.ZodBoolean;
24929
24929
  tagsForImport: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
24930
24930
  isValidMenu: z.ZodBoolean;
24931
- latestMenuSyncAt: z.ZodEffects<z.ZodString, string, string>;
24932
- latestMenuCheckAt: z.ZodEffects<z.ZodString, string, string>;
24931
+ latestMenuSyncAt: z.ZodNullable<z.ZodEffects<z.ZodString, string, string>>;
24932
+ latestMenuCheckAt: z.ZodNullable<z.ZodEffects<z.ZodString, string, string>>;
24933
24933
  currentMenuVersion: z.ZodNullable<z.ZodObject<{
24934
24934
  id: z.ZodString;
24935
24935
  contentUrl: z.ZodString;
@@ -24977,8 +24977,8 @@ declare const updateIntegrationDeliverooSiteStatusResponseSchema: z.ZodObject<Om
24977
24977
  skipNegativePrices: boolean;
24978
24978
  importTaggedItems: boolean;
24979
24979
  isValidMenu: boolean;
24980
- latestMenuSyncAt: string;
24981
- latestMenuCheckAt: string;
24980
+ latestMenuSyncAt: string | null;
24981
+ latestMenuCheckAt: string | null;
24982
24982
  currentMenuVersion: {
24983
24983
  id: string;
24984
24984
  createdAt: string;
@@ -25009,8 +25009,8 @@ declare const updateIntegrationDeliverooSiteStatusResponseSchema: z.ZodObject<Om
25009
25009
  skipNegativePrices: boolean;
25010
25010
  importTaggedItems: boolean;
25011
25011
  isValidMenu: boolean;
25012
- latestMenuSyncAt: string;
25013
- latestMenuCheckAt: string;
25012
+ latestMenuSyncAt: string | null;
25013
+ latestMenuCheckAt: string | null;
25014
25014
  currentMenuVersion: {
25015
25015
  id: string;
25016
25016
  createdAt: string;
@@ -25053,8 +25053,8 @@ declare class UpdateIntegrationDeliverooSiteStatus extends AbstractApiRequest<Up
25053
25053
  importTaggedItems: z.ZodBoolean;
25054
25054
  tagsForImport: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
25055
25055
  isValidMenu: z.ZodBoolean;
25056
- latestMenuSyncAt: z.ZodEffects<z.ZodString, string, string>;
25057
- latestMenuCheckAt: z.ZodEffects<z.ZodString, string, string>;
25056
+ latestMenuSyncAt: z.ZodNullable<z.ZodEffects<z.ZodString, string, string>>;
25057
+ latestMenuCheckAt: z.ZodNullable<z.ZodEffects<z.ZodString, string, string>>;
25058
25058
  currentMenuVersion: z.ZodNullable<z.ZodObject<{
25059
25059
  id: z.ZodString;
25060
25060
  contentUrl: z.ZodString;
@@ -25102,8 +25102,8 @@ declare class UpdateIntegrationDeliverooSiteStatus extends AbstractApiRequest<Up
25102
25102
  skipNegativePrices: boolean;
25103
25103
  importTaggedItems: boolean;
25104
25104
  isValidMenu: boolean;
25105
- latestMenuSyncAt: string;
25106
- latestMenuCheckAt: string;
25105
+ latestMenuSyncAt: string | null;
25106
+ latestMenuCheckAt: string | null;
25107
25107
  currentMenuVersion: {
25108
25108
  id: string;
25109
25109
  createdAt: string;
@@ -25134,8 +25134,8 @@ declare class UpdateIntegrationDeliverooSiteStatus extends AbstractApiRequest<Up
25134
25134
  skipNegativePrices: boolean;
25135
25135
  importTaggedItems: boolean;
25136
25136
  isValidMenu: boolean;
25137
- latestMenuSyncAt: string;
25138
- latestMenuCheckAt: string;
25137
+ latestMenuSyncAt: string | null;
25138
+ latestMenuCheckAt: string | null;
25139
25139
  currentMenuVersion: {
25140
25140
  id: string;
25141
25141
  createdAt: string;
@@ -25173,8 +25173,8 @@ declare const integrationGlovoSchema: z.ZodObject<Omit<{
25173
25173
  importTaggedItems: z.ZodBoolean;
25174
25174
  tagsForImport: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
25175
25175
  isValidMenu: z.ZodBoolean;
25176
- latestMenuSyncAt: z.ZodEffects<z.ZodString, string, string>;
25177
- latestMenuCheckAt: z.ZodEffects<z.ZodString, string, string>;
25176
+ latestMenuSyncAt: z.ZodNullable<z.ZodEffects<z.ZodString, string, string>>;
25177
+ latestMenuCheckAt: z.ZodNullable<z.ZodEffects<z.ZodString, string, string>>;
25178
25178
  currentMenuVersion: z.ZodNullable<z.ZodObject<{
25179
25179
  id: z.ZodString;
25180
25180
  contentUrl: z.ZodString;
@@ -25216,8 +25216,8 @@ declare const integrationGlovoSchema: z.ZodObject<Omit<{
25216
25216
  skipNegativePrices: boolean;
25217
25217
  importTaggedItems: boolean;
25218
25218
  isValidMenu: boolean;
25219
- latestMenuSyncAt: string;
25220
- latestMenuCheckAt: string;
25219
+ latestMenuSyncAt: string | null;
25220
+ latestMenuCheckAt: string | null;
25221
25221
  currentMenuVersion: {
25222
25222
  id: string;
25223
25223
  createdAt: string;
@@ -25244,8 +25244,8 @@ declare const integrationGlovoSchema: z.ZodObject<Omit<{
25244
25244
  skipNegativePrices: boolean;
25245
25245
  importTaggedItems: boolean;
25246
25246
  isValidMenu: boolean;
25247
- latestMenuSyncAt: string;
25248
- latestMenuCheckAt: string;
25247
+ latestMenuSyncAt: string | null;
25248
+ latestMenuCheckAt: string | null;
25249
25249
  currentMenuVersion: {
25250
25250
  id: string;
25251
25251
  createdAt: string;
@@ -25274,8 +25274,8 @@ declare const integrationGlovoDetailsSchema: z.ZodObject<Omit<{
25274
25274
  importTaggedItems: z.ZodBoolean;
25275
25275
  tagsForImport: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
25276
25276
  isValidMenu: z.ZodBoolean;
25277
- latestMenuSyncAt: z.ZodEffects<z.ZodString, string, string>;
25278
- latestMenuCheckAt: z.ZodEffects<z.ZodString, string, string>;
25277
+ latestMenuSyncAt: z.ZodNullable<z.ZodEffects<z.ZodString, string, string>>;
25278
+ latestMenuCheckAt: z.ZodNullable<z.ZodEffects<z.ZodString, string, string>>;
25279
25279
  currentMenuVersion: z.ZodNullable<z.ZodObject<{
25280
25280
  id: z.ZodString;
25281
25281
  contentUrl: z.ZodString;
@@ -25320,8 +25320,8 @@ declare const integrationGlovoDetailsSchema: z.ZodObject<Omit<{
25320
25320
  skipNegativePrices: boolean;
25321
25321
  importTaggedItems: boolean;
25322
25322
  isValidMenu: boolean;
25323
- latestMenuSyncAt: string;
25324
- latestMenuCheckAt: string;
25323
+ latestMenuSyncAt: string | null;
25324
+ latestMenuCheckAt: string | null;
25325
25325
  currentMenuVersion: {
25326
25326
  id: string;
25327
25327
  createdAt: string;
@@ -25349,8 +25349,8 @@ declare const integrationGlovoDetailsSchema: z.ZodObject<Omit<{
25349
25349
  skipNegativePrices: boolean;
25350
25350
  importTaggedItems: boolean;
25351
25351
  isValidMenu: boolean;
25352
- latestMenuSyncAt: string;
25353
- latestMenuCheckAt: string;
25352
+ latestMenuSyncAt: string | null;
25353
+ latestMenuCheckAt: string | null;
25354
25354
  currentMenuVersion: {
25355
25355
  id: string;
25356
25356
  createdAt: string;
@@ -25574,8 +25574,8 @@ declare const createIntegrationGlovoResponseSchema: z.ZodObject<Omit<{
25574
25574
  importTaggedItems: z.ZodBoolean;
25575
25575
  tagsForImport: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
25576
25576
  isValidMenu: z.ZodBoolean;
25577
- latestMenuSyncAt: z.ZodEffects<z.ZodString, string, string>;
25578
- latestMenuCheckAt: z.ZodEffects<z.ZodString, string, string>;
25577
+ latestMenuSyncAt: z.ZodNullable<z.ZodEffects<z.ZodString, string, string>>;
25578
+ latestMenuCheckAt: z.ZodNullable<z.ZodEffects<z.ZodString, string, string>>;
25579
25579
  currentMenuVersion: z.ZodNullable<z.ZodObject<{
25580
25580
  id: z.ZodString;
25581
25581
  contentUrl: z.ZodString;
@@ -25620,8 +25620,8 @@ declare const createIntegrationGlovoResponseSchema: z.ZodObject<Omit<{
25620
25620
  skipNegativePrices: boolean;
25621
25621
  importTaggedItems: boolean;
25622
25622
  isValidMenu: boolean;
25623
- latestMenuSyncAt: string;
25624
- latestMenuCheckAt: string;
25623
+ latestMenuSyncAt: string | null;
25624
+ latestMenuCheckAt: string | null;
25625
25625
  currentMenuVersion: {
25626
25626
  id: string;
25627
25627
  createdAt: string;
@@ -25649,8 +25649,8 @@ declare const createIntegrationGlovoResponseSchema: z.ZodObject<Omit<{
25649
25649
  skipNegativePrices: boolean;
25650
25650
  importTaggedItems: boolean;
25651
25651
  isValidMenu: boolean;
25652
- latestMenuSyncAt: string;
25653
- latestMenuCheckAt: string;
25652
+ latestMenuSyncAt: string | null;
25653
+ latestMenuCheckAt: string | null;
25654
25654
  currentMenuVersion: {
25655
25655
  id: string;
25656
25656
  createdAt: string;
@@ -25718,8 +25718,8 @@ declare class CreateIntegrationGlovo extends AbstractApiRequest<CreateIntegratio
25718
25718
  importTaggedItems: z.ZodBoolean;
25719
25719
  tagsForImport: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
25720
25720
  isValidMenu: z.ZodBoolean;
25721
- latestMenuSyncAt: z.ZodEffects<z.ZodString, string, string>;
25722
- latestMenuCheckAt: z.ZodEffects<z.ZodString, string, string>;
25721
+ latestMenuSyncAt: z.ZodNullable<z.ZodEffects<z.ZodString, string, string>>;
25722
+ latestMenuCheckAt: z.ZodNullable<z.ZodEffects<z.ZodString, string, string>>;
25723
25723
  currentMenuVersion: z.ZodNullable<z.ZodObject<{
25724
25724
  id: z.ZodString;
25725
25725
  contentUrl: z.ZodString;
@@ -25764,8 +25764,8 @@ declare class CreateIntegrationGlovo extends AbstractApiRequest<CreateIntegratio
25764
25764
  skipNegativePrices: boolean;
25765
25765
  importTaggedItems: boolean;
25766
25766
  isValidMenu: boolean;
25767
- latestMenuSyncAt: string;
25768
- latestMenuCheckAt: string;
25767
+ latestMenuSyncAt: string | null;
25768
+ latestMenuCheckAt: string | null;
25769
25769
  currentMenuVersion: {
25770
25770
  id: string;
25771
25771
  createdAt: string;
@@ -25793,8 +25793,8 @@ declare class CreateIntegrationGlovo extends AbstractApiRequest<CreateIntegratio
25793
25793
  skipNegativePrices: boolean;
25794
25794
  importTaggedItems: boolean;
25795
25795
  isValidMenu: boolean;
25796
- latestMenuSyncAt: string;
25797
- latestMenuCheckAt: string;
25796
+ latestMenuSyncAt: string | null;
25797
+ latestMenuCheckAt: string | null;
25798
25798
  currentMenuVersion: {
25799
25799
  id: string;
25800
25800
  createdAt: string;
@@ -26182,8 +26182,8 @@ declare const getIntegrationGlovoDetailsResponseSchema: z.ZodObject<Omit<{
26182
26182
  importTaggedItems: z.ZodBoolean;
26183
26183
  tagsForImport: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
26184
26184
  isValidMenu: z.ZodBoolean;
26185
- latestMenuSyncAt: z.ZodEffects<z.ZodString, string, string>;
26186
- latestMenuCheckAt: z.ZodEffects<z.ZodString, string, string>;
26185
+ latestMenuSyncAt: z.ZodNullable<z.ZodEffects<z.ZodString, string, string>>;
26186
+ latestMenuCheckAt: z.ZodNullable<z.ZodEffects<z.ZodString, string, string>>;
26187
26187
  currentMenuVersion: z.ZodNullable<z.ZodObject<{
26188
26188
  id: z.ZodString;
26189
26189
  contentUrl: z.ZodString;
@@ -26228,8 +26228,8 @@ declare const getIntegrationGlovoDetailsResponseSchema: z.ZodObject<Omit<{
26228
26228
  skipNegativePrices: boolean;
26229
26229
  importTaggedItems: boolean;
26230
26230
  isValidMenu: boolean;
26231
- latestMenuSyncAt: string;
26232
- latestMenuCheckAt: string;
26231
+ latestMenuSyncAt: string | null;
26232
+ latestMenuCheckAt: string | null;
26233
26233
  currentMenuVersion: {
26234
26234
  id: string;
26235
26235
  createdAt: string;
@@ -26257,8 +26257,8 @@ declare const getIntegrationGlovoDetailsResponseSchema: z.ZodObject<Omit<{
26257
26257
  skipNegativePrices: boolean;
26258
26258
  importTaggedItems: boolean;
26259
26259
  isValidMenu: boolean;
26260
- latestMenuSyncAt: string;
26261
- latestMenuCheckAt: string;
26260
+ latestMenuSyncAt: string | null;
26261
+ latestMenuCheckAt: string | null;
26262
26262
  currentMenuVersion: {
26263
26263
  id: string;
26264
26264
  createdAt: string;
@@ -26292,8 +26292,8 @@ declare class GetIntegrationGlovoDetails extends AbstractApiRequest<void, GetInt
26292
26292
  importTaggedItems: z.ZodBoolean;
26293
26293
  tagsForImport: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
26294
26294
  isValidMenu: z.ZodBoolean;
26295
- latestMenuSyncAt: z.ZodEffects<z.ZodString, string, string>;
26296
- latestMenuCheckAt: z.ZodEffects<z.ZodString, string, string>;
26295
+ latestMenuSyncAt: z.ZodNullable<z.ZodEffects<z.ZodString, string, string>>;
26296
+ latestMenuCheckAt: z.ZodNullable<z.ZodEffects<z.ZodString, string, string>>;
26297
26297
  currentMenuVersion: z.ZodNullable<z.ZodObject<{
26298
26298
  id: z.ZodString;
26299
26299
  contentUrl: z.ZodString;
@@ -26338,8 +26338,8 @@ declare class GetIntegrationGlovoDetails extends AbstractApiRequest<void, GetInt
26338
26338
  skipNegativePrices: boolean;
26339
26339
  importTaggedItems: boolean;
26340
26340
  isValidMenu: boolean;
26341
- latestMenuSyncAt: string;
26342
- latestMenuCheckAt: string;
26341
+ latestMenuSyncAt: string | null;
26342
+ latestMenuCheckAt: string | null;
26343
26343
  currentMenuVersion: {
26344
26344
  id: string;
26345
26345
  createdAt: string;
@@ -26367,8 +26367,8 @@ declare class GetIntegrationGlovoDetails extends AbstractApiRequest<void, GetInt
26367
26367
  skipNegativePrices: boolean;
26368
26368
  importTaggedItems: boolean;
26369
26369
  isValidMenu: boolean;
26370
- latestMenuSyncAt: string;
26371
- latestMenuCheckAt: string;
26370
+ latestMenuSyncAt: string | null;
26371
+ latestMenuCheckAt: string | null;
26372
26372
  currentMenuVersion: {
26373
26373
  id: string;
26374
26374
  createdAt: string;
@@ -26501,8 +26501,8 @@ declare const getIntegrationGlovoListResponseSchema: z.ZodObject<{
26501
26501
  importTaggedItems: z.ZodBoolean;
26502
26502
  tagsForImport: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
26503
26503
  isValidMenu: z.ZodBoolean;
26504
- latestMenuSyncAt: z.ZodEffects<z.ZodString, string, string>;
26505
- latestMenuCheckAt: z.ZodEffects<z.ZodString, string, string>;
26504
+ latestMenuSyncAt: z.ZodNullable<z.ZodEffects<z.ZodString, string, string>>;
26505
+ latestMenuCheckAt: z.ZodNullable<z.ZodEffects<z.ZodString, string, string>>;
26506
26506
  currentMenuVersion: z.ZodNullable<z.ZodObject<{
26507
26507
  id: z.ZodString;
26508
26508
  contentUrl: z.ZodString;
@@ -26544,8 +26544,8 @@ declare const getIntegrationGlovoListResponseSchema: z.ZodObject<{
26544
26544
  skipNegativePrices: boolean;
26545
26545
  importTaggedItems: boolean;
26546
26546
  isValidMenu: boolean;
26547
- latestMenuSyncAt: string;
26548
- latestMenuCheckAt: string;
26547
+ latestMenuSyncAt: string | null;
26548
+ latestMenuCheckAt: string | null;
26549
26549
  currentMenuVersion: {
26550
26550
  id: string;
26551
26551
  createdAt: string;
@@ -26572,8 +26572,8 @@ declare const getIntegrationGlovoListResponseSchema: z.ZodObject<{
26572
26572
  skipNegativePrices: boolean;
26573
26573
  importTaggedItems: boolean;
26574
26574
  isValidMenu: boolean;
26575
- latestMenuSyncAt: string;
26576
- latestMenuCheckAt: string;
26575
+ latestMenuSyncAt: string | null;
26576
+ latestMenuCheckAt: string | null;
26577
26577
  currentMenuVersion: {
26578
26578
  id: string;
26579
26579
  createdAt: string;
@@ -26624,8 +26624,8 @@ declare const getIntegrationGlovoListResponseSchema: z.ZodObject<{
26624
26624
  skipNegativePrices: boolean;
26625
26625
  importTaggedItems: boolean;
26626
26626
  isValidMenu: boolean;
26627
- latestMenuSyncAt: string;
26628
- latestMenuCheckAt: string;
26627
+ latestMenuSyncAt: string | null;
26628
+ latestMenuCheckAt: string | null;
26629
26629
  currentMenuVersion: {
26630
26630
  id: string;
26631
26631
  createdAt: string;
@@ -26662,8 +26662,8 @@ declare const getIntegrationGlovoListResponseSchema: z.ZodObject<{
26662
26662
  skipNegativePrices: boolean;
26663
26663
  importTaggedItems: boolean;
26664
26664
  isValidMenu: boolean;
26665
- latestMenuSyncAt: string;
26666
- latestMenuCheckAt: string;
26665
+ latestMenuSyncAt: string | null;
26666
+ latestMenuCheckAt: string | null;
26667
26667
  currentMenuVersion: {
26668
26668
  id: string;
26669
26669
  createdAt: string;
@@ -26708,8 +26708,8 @@ declare class GetIntegrationGlovoList extends AbstractApiRequest<void, GetIntegr
26708
26708
  importTaggedItems: z.ZodBoolean;
26709
26709
  tagsForImport: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
26710
26710
  isValidMenu: z.ZodBoolean;
26711
- latestMenuSyncAt: z.ZodEffects<z.ZodString, string, string>;
26712
- latestMenuCheckAt: z.ZodEffects<z.ZodString, string, string>;
26711
+ latestMenuSyncAt: z.ZodNullable<z.ZodEffects<z.ZodString, string, string>>;
26712
+ latestMenuCheckAt: z.ZodNullable<z.ZodEffects<z.ZodString, string, string>>;
26713
26713
  currentMenuVersion: z.ZodNullable<z.ZodObject<{
26714
26714
  id: z.ZodString;
26715
26715
  contentUrl: z.ZodString;
@@ -26751,8 +26751,8 @@ declare class GetIntegrationGlovoList extends AbstractApiRequest<void, GetIntegr
26751
26751
  skipNegativePrices: boolean;
26752
26752
  importTaggedItems: boolean;
26753
26753
  isValidMenu: boolean;
26754
- latestMenuSyncAt: string;
26755
- latestMenuCheckAt: string;
26754
+ latestMenuSyncAt: string | null;
26755
+ latestMenuCheckAt: string | null;
26756
26756
  currentMenuVersion: {
26757
26757
  id: string;
26758
26758
  createdAt: string;
@@ -26779,8 +26779,8 @@ declare class GetIntegrationGlovoList extends AbstractApiRequest<void, GetIntegr
26779
26779
  skipNegativePrices: boolean;
26780
26780
  importTaggedItems: boolean;
26781
26781
  isValidMenu: boolean;
26782
- latestMenuSyncAt: string;
26783
- latestMenuCheckAt: string;
26782
+ latestMenuSyncAt: string | null;
26783
+ latestMenuCheckAt: string | null;
26784
26784
  currentMenuVersion: {
26785
26785
  id: string;
26786
26786
  createdAt: string;
@@ -26831,8 +26831,8 @@ declare class GetIntegrationGlovoList extends AbstractApiRequest<void, GetIntegr
26831
26831
  skipNegativePrices: boolean;
26832
26832
  importTaggedItems: boolean;
26833
26833
  isValidMenu: boolean;
26834
- latestMenuSyncAt: string;
26835
- latestMenuCheckAt: string;
26834
+ latestMenuSyncAt: string | null;
26835
+ latestMenuCheckAt: string | null;
26836
26836
  currentMenuVersion: {
26837
26837
  id: string;
26838
26838
  createdAt: string;
@@ -26869,8 +26869,8 @@ declare class GetIntegrationGlovoList extends AbstractApiRequest<void, GetIntegr
26869
26869
  skipNegativePrices: boolean;
26870
26870
  importTaggedItems: boolean;
26871
26871
  isValidMenu: boolean;
26872
- latestMenuSyncAt: string;
26873
- latestMenuCheckAt: string;
26872
+ latestMenuSyncAt: string | null;
26873
+ latestMenuCheckAt: string | null;
26874
26874
  currentMenuVersion: {
26875
26875
  id: string;
26876
26876
  createdAt: string;
@@ -27848,8 +27848,8 @@ declare const updateIntegrationGlovoResponseSchema: zod.ZodObject<Omit<{
27848
27848
  importTaggedItems: zod.ZodBoolean;
27849
27849
  tagsForImport: zod.ZodOptional<zod.ZodArray<zod.ZodString, "many">>;
27850
27850
  isValidMenu: zod.ZodBoolean;
27851
- latestMenuSyncAt: zod.ZodEffects<zod.ZodString, string, string>;
27852
- latestMenuCheckAt: zod.ZodEffects<zod.ZodString, string, string>;
27851
+ latestMenuSyncAt: zod.ZodNullable<zod.ZodEffects<zod.ZodString, string, string>>;
27852
+ latestMenuCheckAt: zod.ZodNullable<zod.ZodEffects<zod.ZodString, string, string>>;
27853
27853
  currentMenuVersion: zod.ZodNullable<zod.ZodObject<{
27854
27854
  id: zod.ZodString;
27855
27855
  contentUrl: zod.ZodString;
@@ -27894,8 +27894,8 @@ declare const updateIntegrationGlovoResponseSchema: zod.ZodObject<Omit<{
27894
27894
  skipNegativePrices: boolean;
27895
27895
  importTaggedItems: boolean;
27896
27896
  isValidMenu: boolean;
27897
- latestMenuSyncAt: string;
27898
- latestMenuCheckAt: string;
27897
+ latestMenuSyncAt: string | null;
27898
+ latestMenuCheckAt: string | null;
27899
27899
  currentMenuVersion: {
27900
27900
  id: string;
27901
27901
  createdAt: string;
@@ -27923,8 +27923,8 @@ declare const updateIntegrationGlovoResponseSchema: zod.ZodObject<Omit<{
27923
27923
  skipNegativePrices: boolean;
27924
27924
  importTaggedItems: boolean;
27925
27925
  isValidMenu: boolean;
27926
- latestMenuSyncAt: string;
27927
- latestMenuCheckAt: string;
27926
+ latestMenuSyncAt: string | null;
27927
+ latestMenuCheckAt: string | null;
27928
27928
  currentMenuVersion: {
27929
27929
  id: string;
27930
27930
  createdAt: string;
@@ -27988,8 +27988,8 @@ declare class UpdateIntegrationGlovo extends AbstractApiRequest<UpdateIntegratio
27988
27988
  importTaggedItems: zod.ZodBoolean;
27989
27989
  tagsForImport: zod.ZodOptional<zod.ZodArray<zod.ZodString, "many">>;
27990
27990
  isValidMenu: zod.ZodBoolean;
27991
- latestMenuSyncAt: zod.ZodEffects<zod.ZodString, string, string>;
27992
- latestMenuCheckAt: zod.ZodEffects<zod.ZodString, string, string>;
27991
+ latestMenuSyncAt: zod.ZodNullable<zod.ZodEffects<zod.ZodString, string, string>>;
27992
+ latestMenuCheckAt: zod.ZodNullable<zod.ZodEffects<zod.ZodString, string, string>>;
27993
27993
  currentMenuVersion: zod.ZodNullable<zod.ZodObject<{
27994
27994
  id: zod.ZodString;
27995
27995
  contentUrl: zod.ZodString;
@@ -28034,8 +28034,8 @@ declare class UpdateIntegrationGlovo extends AbstractApiRequest<UpdateIntegratio
28034
28034
  skipNegativePrices: boolean;
28035
28035
  importTaggedItems: boolean;
28036
28036
  isValidMenu: boolean;
28037
- latestMenuSyncAt: string;
28038
- latestMenuCheckAt: string;
28037
+ latestMenuSyncAt: string | null;
28038
+ latestMenuCheckAt: string | null;
28039
28039
  currentMenuVersion: {
28040
28040
  id: string;
28041
28041
  createdAt: string;
@@ -28063,8 +28063,8 @@ declare class UpdateIntegrationGlovo extends AbstractApiRequest<UpdateIntegratio
28063
28063
  skipNegativePrices: boolean;
28064
28064
  importTaggedItems: boolean;
28065
28065
  isValidMenu: boolean;
28066
- latestMenuSyncAt: string;
28067
- latestMenuCheckAt: string;
28066
+ latestMenuSyncAt: string | null;
28067
+ latestMenuCheckAt: string | null;
28068
28068
  currentMenuVersion: {
28069
28069
  id: string;
28070
28070
  createdAt: string;
@@ -28107,8 +28107,8 @@ declare const updateIntegrationGlovoStoreStatusResponseSchema: z.ZodObject<Omit<
28107
28107
  importTaggedItems: z.ZodBoolean;
28108
28108
  tagsForImport: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
28109
28109
  isValidMenu: z.ZodBoolean;
28110
- latestMenuSyncAt: z.ZodEffects<z.ZodString, string, string>;
28111
- latestMenuCheckAt: z.ZodEffects<z.ZodString, string, string>;
28110
+ latestMenuSyncAt: z.ZodNullable<z.ZodEffects<z.ZodString, string, string>>;
28111
+ latestMenuCheckAt: z.ZodNullable<z.ZodEffects<z.ZodString, string, string>>;
28112
28112
  currentMenuVersion: z.ZodNullable<z.ZodObject<{
28113
28113
  id: z.ZodString;
28114
28114
  contentUrl: z.ZodString;
@@ -28153,8 +28153,8 @@ declare const updateIntegrationGlovoStoreStatusResponseSchema: z.ZodObject<Omit<
28153
28153
  skipNegativePrices: boolean;
28154
28154
  importTaggedItems: boolean;
28155
28155
  isValidMenu: boolean;
28156
- latestMenuSyncAt: string;
28157
- latestMenuCheckAt: string;
28156
+ latestMenuSyncAt: string | null;
28157
+ latestMenuCheckAt: string | null;
28158
28158
  currentMenuVersion: {
28159
28159
  id: string;
28160
28160
  createdAt: string;
@@ -28182,8 +28182,8 @@ declare const updateIntegrationGlovoStoreStatusResponseSchema: z.ZodObject<Omit<
28182
28182
  skipNegativePrices: boolean;
28183
28183
  importTaggedItems: boolean;
28184
28184
  isValidMenu: boolean;
28185
- latestMenuSyncAt: string;
28186
- latestMenuCheckAt: string;
28185
+ latestMenuSyncAt: string | null;
28186
+ latestMenuCheckAt: string | null;
28187
28187
  currentMenuVersion: {
28188
28188
  id: string;
28189
28189
  createdAt: string;
@@ -28223,8 +28223,8 @@ declare class UpdateIntegrationGlovoStoreStatus extends AbstractApiRequest<Updat
28223
28223
  importTaggedItems: z.ZodBoolean;
28224
28224
  tagsForImport: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
28225
28225
  isValidMenu: z.ZodBoolean;
28226
- latestMenuSyncAt: z.ZodEffects<z.ZodString, string, string>;
28227
- latestMenuCheckAt: z.ZodEffects<z.ZodString, string, string>;
28226
+ latestMenuSyncAt: z.ZodNullable<z.ZodEffects<z.ZodString, string, string>>;
28227
+ latestMenuCheckAt: z.ZodNullable<z.ZodEffects<z.ZodString, string, string>>;
28228
28228
  currentMenuVersion: z.ZodNullable<z.ZodObject<{
28229
28229
  id: z.ZodString;
28230
28230
  contentUrl: z.ZodString;
@@ -28269,8 +28269,8 @@ declare class UpdateIntegrationGlovoStoreStatus extends AbstractApiRequest<Updat
28269
28269
  skipNegativePrices: boolean;
28270
28270
  importTaggedItems: boolean;
28271
28271
  isValidMenu: boolean;
28272
- latestMenuSyncAt: string;
28273
- latestMenuCheckAt: string;
28272
+ latestMenuSyncAt: string | null;
28273
+ latestMenuCheckAt: string | null;
28274
28274
  currentMenuVersion: {
28275
28275
  id: string;
28276
28276
  createdAt: string;
@@ -28298,8 +28298,8 @@ declare class UpdateIntegrationGlovoStoreStatus extends AbstractApiRequest<Updat
28298
28298
  skipNegativePrices: boolean;
28299
28299
  importTaggedItems: boolean;
28300
28300
  isValidMenu: boolean;
28301
- latestMenuSyncAt: string;
28302
- latestMenuCheckAt: string;
28301
+ latestMenuSyncAt: string | null;
28302
+ latestMenuCheckAt: string | null;
28303
28303
  currentMenuVersion: {
28304
28304
  id: string;
28305
28305
  createdAt: string;
@@ -28334,8 +28334,8 @@ declare const integrationJustEatSchema: z.ZodObject<Omit<{
28334
28334
  importTaggedItems: z.ZodBoolean;
28335
28335
  tagsForImport: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
28336
28336
  isValidMenu: z.ZodBoolean;
28337
- latestMenuSyncAt: z.ZodEffects<z.ZodString, string, string>;
28338
- latestMenuCheckAt: z.ZodEffects<z.ZodString, string, string>;
28337
+ latestMenuSyncAt: z.ZodNullable<z.ZodEffects<z.ZodString, string, string>>;
28338
+ latestMenuCheckAt: z.ZodNullable<z.ZodEffects<z.ZodString, string, string>>;
28339
28339
  currentMenuVersion: z.ZodNullable<z.ZodObject<{
28340
28340
  id: z.ZodString;
28341
28341
  contentUrl: z.ZodString;
@@ -28360,7 +28360,7 @@ declare const integrationJustEatSchema: z.ZodObject<Omit<{
28360
28360
  syncType: z.ZodEnum<["ALL", "DELIVERY", "TAKE_AWAY"]>;
28361
28361
  defaultLanguage: z.ZodString;
28362
28362
  restaurantId: z.ZodString;
28363
- latestOpeningTimesSyncAt: z.ZodEffects<z.ZodString, string, string>;
28363
+ latestOpeningTimesSyncAt: z.ZodNullable<z.ZodEffects<z.ZodString, string, string>>;
28364
28364
  service: z.ZodEnum<["justeat"]>;
28365
28365
  autoAcceptOrders: z.ZodBoolean;
28366
28366
  nextSyncMenuScheduledAt: z.ZodNullable<z.ZodEffects<z.ZodString, string, string>>;
@@ -28379,8 +28379,8 @@ declare const integrationJustEatSchema: z.ZodObject<Omit<{
28379
28379
  skipNegativePrices: boolean;
28380
28380
  importTaggedItems: boolean;
28381
28381
  isValidMenu: boolean;
28382
- latestMenuSyncAt: string;
28383
- latestMenuCheckAt: string;
28382
+ latestMenuSyncAt: string | null;
28383
+ latestMenuCheckAt: string | null;
28384
28384
  currentMenuVersion: {
28385
28385
  id: string;
28386
28386
  createdAt: string;
@@ -28392,7 +28392,7 @@ declare const integrationJustEatSchema: z.ZodObject<Omit<{
28392
28392
  nextSyncMenuScheduledAt: string | null;
28393
28393
  syncType: "ALL" | "DELIVERY" | "TAKE_AWAY";
28394
28394
  defaultLanguage: string;
28395
- latestOpeningTimesSyncAt: string;
28395
+ latestOpeningTimesSyncAt: string | null;
28396
28396
  autoAcceptOrders: boolean;
28397
28397
  tagsForImport?: string[] | undefined;
28398
28398
  }, {
@@ -28410,8 +28410,8 @@ declare const integrationJustEatSchema: z.ZodObject<Omit<{
28410
28410
  skipNegativePrices: boolean;
28411
28411
  importTaggedItems: boolean;
28412
28412
  isValidMenu: boolean;
28413
- latestMenuSyncAt: string;
28414
- latestMenuCheckAt: string;
28413
+ latestMenuSyncAt: string | null;
28414
+ latestMenuCheckAt: string | null;
28415
28415
  currentMenuVersion: {
28416
28416
  id: string;
28417
28417
  createdAt: string;
@@ -28423,7 +28423,7 @@ declare const integrationJustEatSchema: z.ZodObject<Omit<{
28423
28423
  nextSyncMenuScheduledAt: string | null;
28424
28424
  syncType: "ALL" | "DELIVERY" | "TAKE_AWAY";
28425
28425
  defaultLanguage: string;
28426
- latestOpeningTimesSyncAt: string;
28426
+ latestOpeningTimesSyncAt: string | null;
28427
28427
  autoAcceptOrders: boolean;
28428
28428
  tagsForImport?: string[] | undefined;
28429
28429
  }>;
@@ -28444,8 +28444,8 @@ declare const integrationJustEatDetailsSchema: z.ZodObject<Omit<{
28444
28444
  importTaggedItems: z.ZodBoolean;
28445
28445
  tagsForImport: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
28446
28446
  isValidMenu: z.ZodBoolean;
28447
- latestMenuSyncAt: z.ZodEffects<z.ZodString, string, string>;
28448
- latestMenuCheckAt: z.ZodEffects<z.ZodString, string, string>;
28447
+ latestMenuSyncAt: z.ZodNullable<z.ZodEffects<z.ZodString, string, string>>;
28448
+ latestMenuCheckAt: z.ZodNullable<z.ZodEffects<z.ZodString, string, string>>;
28449
28449
  currentMenuVersion: z.ZodNullable<z.ZodObject<{
28450
28450
  id: z.ZodString;
28451
28451
  contentUrl: z.ZodString;
@@ -28470,7 +28470,7 @@ declare const integrationJustEatDetailsSchema: z.ZodObject<Omit<{
28470
28470
  syncType: z.ZodEnum<["ALL", "DELIVERY", "TAKE_AWAY"]>;
28471
28471
  defaultLanguage: z.ZodString;
28472
28472
  restaurantId: z.ZodString;
28473
- latestOpeningTimesSyncAt: z.ZodEffects<z.ZodString, string, string>;
28473
+ latestOpeningTimesSyncAt: z.ZodNullable<z.ZodEffects<z.ZodString, string, string>>;
28474
28474
  service: z.ZodEnum<["justeat"]>;
28475
28475
  autoAcceptOrders: z.ZodBoolean;
28476
28476
  nextSyncMenuScheduledAt: z.ZodNullable<z.ZodEffects<z.ZodString, string, string>>;
@@ -28492,8 +28492,8 @@ declare const integrationJustEatDetailsSchema: z.ZodObject<Omit<{
28492
28492
  skipNegativePrices: boolean;
28493
28493
  importTaggedItems: boolean;
28494
28494
  isValidMenu: boolean;
28495
- latestMenuSyncAt: string;
28496
- latestMenuCheckAt: string;
28495
+ latestMenuSyncAt: string | null;
28496
+ latestMenuCheckAt: string | null;
28497
28497
  currentMenuVersion: {
28498
28498
  id: string;
28499
28499
  createdAt: string;
@@ -28505,7 +28505,7 @@ declare const integrationJustEatDetailsSchema: z.ZodObject<Omit<{
28505
28505
  nextSyncMenuScheduledAt: string | null;
28506
28506
  syncType: "ALL" | "DELIVERY" | "TAKE_AWAY";
28507
28507
  defaultLanguage: string;
28508
- latestOpeningTimesSyncAt: string;
28508
+ latestOpeningTimesSyncAt: string | null;
28509
28509
  autoAcceptOrders: boolean;
28510
28510
  tagsForImport?: string[] | undefined;
28511
28511
  }, {
@@ -28524,8 +28524,8 @@ declare const integrationJustEatDetailsSchema: z.ZodObject<Omit<{
28524
28524
  skipNegativePrices: boolean;
28525
28525
  importTaggedItems: boolean;
28526
28526
  isValidMenu: boolean;
28527
- latestMenuSyncAt: string;
28528
- latestMenuCheckAt: string;
28527
+ latestMenuSyncAt: string | null;
28528
+ latestMenuCheckAt: string | null;
28529
28529
  currentMenuVersion: {
28530
28530
  id: string;
28531
28531
  createdAt: string;
@@ -28537,7 +28537,7 @@ declare const integrationJustEatDetailsSchema: z.ZodObject<Omit<{
28537
28537
  nextSyncMenuScheduledAt: string | null;
28538
28538
  syncType: "ALL" | "DELIVERY" | "TAKE_AWAY";
28539
28539
  defaultLanguage: string;
28540
- latestOpeningTimesSyncAt: string;
28540
+ latestOpeningTimesSyncAt: string | null;
28541
28541
  autoAcceptOrders: boolean;
28542
28542
  tagsForImport?: string[] | undefined;
28543
28543
  }>;
@@ -28671,8 +28671,8 @@ declare const createIntegrationJustEatResponseSchema: z.ZodObject<Omit<{
28671
28671
  importTaggedItems: z.ZodBoolean;
28672
28672
  tagsForImport: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
28673
28673
  isValidMenu: z.ZodBoolean;
28674
- latestMenuSyncAt: z.ZodEffects<z.ZodString, string, string>;
28675
- latestMenuCheckAt: z.ZodEffects<z.ZodString, string, string>;
28674
+ latestMenuSyncAt: z.ZodNullable<z.ZodEffects<z.ZodString, string, string>>;
28675
+ latestMenuCheckAt: z.ZodNullable<z.ZodEffects<z.ZodString, string, string>>;
28676
28676
  currentMenuVersion: z.ZodNullable<z.ZodObject<{
28677
28677
  id: z.ZodString;
28678
28678
  contentUrl: z.ZodString;
@@ -28697,7 +28697,7 @@ declare const createIntegrationJustEatResponseSchema: z.ZodObject<Omit<{
28697
28697
  syncType: z.ZodEnum<["ALL", "DELIVERY", "TAKE_AWAY"]>;
28698
28698
  defaultLanguage: z.ZodString;
28699
28699
  restaurantId: z.ZodString;
28700
- latestOpeningTimesSyncAt: z.ZodEffects<z.ZodString, string, string>;
28700
+ latestOpeningTimesSyncAt: z.ZodNullable<z.ZodEffects<z.ZodString, string, string>>;
28701
28701
  service: z.ZodEnum<["justeat"]>;
28702
28702
  autoAcceptOrders: z.ZodBoolean;
28703
28703
  nextSyncMenuScheduledAt: z.ZodNullable<z.ZodEffects<z.ZodString, string, string>>;
@@ -28719,8 +28719,8 @@ declare const createIntegrationJustEatResponseSchema: z.ZodObject<Omit<{
28719
28719
  skipNegativePrices: boolean;
28720
28720
  importTaggedItems: boolean;
28721
28721
  isValidMenu: boolean;
28722
- latestMenuSyncAt: string;
28723
- latestMenuCheckAt: string;
28722
+ latestMenuSyncAt: string | null;
28723
+ latestMenuCheckAt: string | null;
28724
28724
  currentMenuVersion: {
28725
28725
  id: string;
28726
28726
  createdAt: string;
@@ -28732,7 +28732,7 @@ declare const createIntegrationJustEatResponseSchema: z.ZodObject<Omit<{
28732
28732
  nextSyncMenuScheduledAt: string | null;
28733
28733
  syncType: "ALL" | "DELIVERY" | "TAKE_AWAY";
28734
28734
  defaultLanguage: string;
28735
- latestOpeningTimesSyncAt: string;
28735
+ latestOpeningTimesSyncAt: string | null;
28736
28736
  autoAcceptOrders: boolean;
28737
28737
  tagsForImport?: string[] | undefined;
28738
28738
  }, {
@@ -28751,8 +28751,8 @@ declare const createIntegrationJustEatResponseSchema: z.ZodObject<Omit<{
28751
28751
  skipNegativePrices: boolean;
28752
28752
  importTaggedItems: boolean;
28753
28753
  isValidMenu: boolean;
28754
- latestMenuSyncAt: string;
28755
- latestMenuCheckAt: string;
28754
+ latestMenuSyncAt: string | null;
28755
+ latestMenuCheckAt: string | null;
28756
28756
  currentMenuVersion: {
28757
28757
  id: string;
28758
28758
  createdAt: string;
@@ -28764,7 +28764,7 @@ declare const createIntegrationJustEatResponseSchema: z.ZodObject<Omit<{
28764
28764
  nextSyncMenuScheduledAt: string | null;
28765
28765
  syncType: "ALL" | "DELIVERY" | "TAKE_AWAY";
28766
28766
  defaultLanguage: string;
28767
- latestOpeningTimesSyncAt: string;
28767
+ latestOpeningTimesSyncAt: string | null;
28768
28768
  autoAcceptOrders: boolean;
28769
28769
  tagsForImport?: string[] | undefined;
28770
28770
  }>;
@@ -28827,8 +28827,8 @@ declare class CreateIntegrationJustEat extends AbstractApiRequest<CreateIntegrat
28827
28827
  importTaggedItems: z.ZodBoolean;
28828
28828
  tagsForImport: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
28829
28829
  isValidMenu: z.ZodBoolean;
28830
- latestMenuSyncAt: z.ZodEffects<z.ZodString, string, string>;
28831
- latestMenuCheckAt: z.ZodEffects<z.ZodString, string, string>;
28830
+ latestMenuSyncAt: z.ZodNullable<z.ZodEffects<z.ZodString, string, string>>;
28831
+ latestMenuCheckAt: z.ZodNullable<z.ZodEffects<z.ZodString, string, string>>;
28832
28832
  currentMenuVersion: z.ZodNullable<z.ZodObject<{
28833
28833
  id: z.ZodString;
28834
28834
  contentUrl: z.ZodString;
@@ -28853,7 +28853,7 @@ declare class CreateIntegrationJustEat extends AbstractApiRequest<CreateIntegrat
28853
28853
  syncType: z.ZodEnum<["ALL", "DELIVERY", "TAKE_AWAY"]>;
28854
28854
  defaultLanguage: z.ZodString;
28855
28855
  restaurantId: z.ZodString;
28856
- latestOpeningTimesSyncAt: z.ZodEffects<z.ZodString, string, string>;
28856
+ latestOpeningTimesSyncAt: z.ZodNullable<z.ZodEffects<z.ZodString, string, string>>;
28857
28857
  service: z.ZodEnum<["justeat"]>;
28858
28858
  autoAcceptOrders: z.ZodBoolean;
28859
28859
  nextSyncMenuScheduledAt: z.ZodNullable<z.ZodEffects<z.ZodString, string, string>>;
@@ -28875,8 +28875,8 @@ declare class CreateIntegrationJustEat extends AbstractApiRequest<CreateIntegrat
28875
28875
  skipNegativePrices: boolean;
28876
28876
  importTaggedItems: boolean;
28877
28877
  isValidMenu: boolean;
28878
- latestMenuSyncAt: string;
28879
- latestMenuCheckAt: string;
28878
+ latestMenuSyncAt: string | null;
28879
+ latestMenuCheckAt: string | null;
28880
28880
  currentMenuVersion: {
28881
28881
  id: string;
28882
28882
  createdAt: string;
@@ -28888,7 +28888,7 @@ declare class CreateIntegrationJustEat extends AbstractApiRequest<CreateIntegrat
28888
28888
  nextSyncMenuScheduledAt: string | null;
28889
28889
  syncType: "ALL" | "DELIVERY" | "TAKE_AWAY";
28890
28890
  defaultLanguage: string;
28891
- latestOpeningTimesSyncAt: string;
28891
+ latestOpeningTimesSyncAt: string | null;
28892
28892
  autoAcceptOrders: boolean;
28893
28893
  tagsForImport?: string[] | undefined;
28894
28894
  }, {
@@ -28907,8 +28907,8 @@ declare class CreateIntegrationJustEat extends AbstractApiRequest<CreateIntegrat
28907
28907
  skipNegativePrices: boolean;
28908
28908
  importTaggedItems: boolean;
28909
28909
  isValidMenu: boolean;
28910
- latestMenuSyncAt: string;
28911
- latestMenuCheckAt: string;
28910
+ latestMenuSyncAt: string | null;
28911
+ latestMenuCheckAt: string | null;
28912
28912
  currentMenuVersion: {
28913
28913
  id: string;
28914
28914
  createdAt: string;
@@ -28920,7 +28920,7 @@ declare class CreateIntegrationJustEat extends AbstractApiRequest<CreateIntegrat
28920
28920
  nextSyncMenuScheduledAt: string | null;
28921
28921
  syncType: "ALL" | "DELIVERY" | "TAKE_AWAY";
28922
28922
  defaultLanguage: string;
28923
- latestOpeningTimesSyncAt: string;
28923
+ latestOpeningTimesSyncAt: string | null;
28924
28924
  autoAcceptOrders: boolean;
28925
28925
  tagsForImport?: string[] | undefined;
28926
28926
  }>;
@@ -29300,8 +29300,8 @@ declare const getIntegrationJustEatDetailsResponseSchema: z.ZodObject<Omit<{
29300
29300
  importTaggedItems: z.ZodBoolean;
29301
29301
  tagsForImport: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
29302
29302
  isValidMenu: z.ZodBoolean;
29303
- latestMenuSyncAt: z.ZodEffects<z.ZodString, string, string>;
29304
- latestMenuCheckAt: z.ZodEffects<z.ZodString, string, string>;
29303
+ latestMenuSyncAt: z.ZodNullable<z.ZodEffects<z.ZodString, string, string>>;
29304
+ latestMenuCheckAt: z.ZodNullable<z.ZodEffects<z.ZodString, string, string>>;
29305
29305
  currentMenuVersion: z.ZodNullable<z.ZodObject<{
29306
29306
  id: z.ZodString;
29307
29307
  contentUrl: z.ZodString;
@@ -29326,7 +29326,7 @@ declare const getIntegrationJustEatDetailsResponseSchema: z.ZodObject<Omit<{
29326
29326
  syncType: z.ZodEnum<["ALL", "DELIVERY", "TAKE_AWAY"]>;
29327
29327
  defaultLanguage: z.ZodString;
29328
29328
  restaurantId: z.ZodString;
29329
- latestOpeningTimesSyncAt: z.ZodEffects<z.ZodString, string, string>;
29329
+ latestOpeningTimesSyncAt: z.ZodNullable<z.ZodEffects<z.ZodString, string, string>>;
29330
29330
  service: z.ZodEnum<["justeat"]>;
29331
29331
  autoAcceptOrders: z.ZodBoolean;
29332
29332
  nextSyncMenuScheduledAt: z.ZodNullable<z.ZodEffects<z.ZodString, string, string>>;
@@ -29348,8 +29348,8 @@ declare const getIntegrationJustEatDetailsResponseSchema: z.ZodObject<Omit<{
29348
29348
  skipNegativePrices: boolean;
29349
29349
  importTaggedItems: boolean;
29350
29350
  isValidMenu: boolean;
29351
- latestMenuSyncAt: string;
29352
- latestMenuCheckAt: string;
29351
+ latestMenuSyncAt: string | null;
29352
+ latestMenuCheckAt: string | null;
29353
29353
  currentMenuVersion: {
29354
29354
  id: string;
29355
29355
  createdAt: string;
@@ -29361,7 +29361,7 @@ declare const getIntegrationJustEatDetailsResponseSchema: z.ZodObject<Omit<{
29361
29361
  nextSyncMenuScheduledAt: string | null;
29362
29362
  syncType: "ALL" | "DELIVERY" | "TAKE_AWAY";
29363
29363
  defaultLanguage: string;
29364
- latestOpeningTimesSyncAt: string;
29364
+ latestOpeningTimesSyncAt: string | null;
29365
29365
  autoAcceptOrders: boolean;
29366
29366
  tagsForImport?: string[] | undefined;
29367
29367
  }, {
@@ -29380,8 +29380,8 @@ declare const getIntegrationJustEatDetailsResponseSchema: z.ZodObject<Omit<{
29380
29380
  skipNegativePrices: boolean;
29381
29381
  importTaggedItems: boolean;
29382
29382
  isValidMenu: boolean;
29383
- latestMenuSyncAt: string;
29384
- latestMenuCheckAt: string;
29383
+ latestMenuSyncAt: string | null;
29384
+ latestMenuCheckAt: string | null;
29385
29385
  currentMenuVersion: {
29386
29386
  id: string;
29387
29387
  createdAt: string;
@@ -29393,7 +29393,7 @@ declare const getIntegrationJustEatDetailsResponseSchema: z.ZodObject<Omit<{
29393
29393
  nextSyncMenuScheduledAt: string | null;
29394
29394
  syncType: "ALL" | "DELIVERY" | "TAKE_AWAY";
29395
29395
  defaultLanguage: string;
29396
- latestOpeningTimesSyncAt: string;
29396
+ latestOpeningTimesSyncAt: string | null;
29397
29397
  autoAcceptOrders: boolean;
29398
29398
  tagsForImport?: string[] | undefined;
29399
29399
  }>;
@@ -29419,8 +29419,8 @@ declare class GetIntegrationJustEatDetails extends AbstractApiRequest<void, GetI
29419
29419
  importTaggedItems: z.ZodBoolean;
29420
29420
  tagsForImport: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
29421
29421
  isValidMenu: z.ZodBoolean;
29422
- latestMenuSyncAt: z.ZodEffects<z.ZodString, string, string>;
29423
- latestMenuCheckAt: z.ZodEffects<z.ZodString, string, string>;
29422
+ latestMenuSyncAt: z.ZodNullable<z.ZodEffects<z.ZodString, string, string>>;
29423
+ latestMenuCheckAt: z.ZodNullable<z.ZodEffects<z.ZodString, string, string>>;
29424
29424
  currentMenuVersion: z.ZodNullable<z.ZodObject<{
29425
29425
  id: z.ZodString;
29426
29426
  contentUrl: z.ZodString;
@@ -29445,7 +29445,7 @@ declare class GetIntegrationJustEatDetails extends AbstractApiRequest<void, GetI
29445
29445
  syncType: z.ZodEnum<["ALL", "DELIVERY", "TAKE_AWAY"]>;
29446
29446
  defaultLanguage: z.ZodString;
29447
29447
  restaurantId: z.ZodString;
29448
- latestOpeningTimesSyncAt: z.ZodEffects<z.ZodString, string, string>;
29448
+ latestOpeningTimesSyncAt: z.ZodNullable<z.ZodEffects<z.ZodString, string, string>>;
29449
29449
  service: z.ZodEnum<["justeat"]>;
29450
29450
  autoAcceptOrders: z.ZodBoolean;
29451
29451
  nextSyncMenuScheduledAt: z.ZodNullable<z.ZodEffects<z.ZodString, string, string>>;
@@ -29467,8 +29467,8 @@ declare class GetIntegrationJustEatDetails extends AbstractApiRequest<void, GetI
29467
29467
  skipNegativePrices: boolean;
29468
29468
  importTaggedItems: boolean;
29469
29469
  isValidMenu: boolean;
29470
- latestMenuSyncAt: string;
29471
- latestMenuCheckAt: string;
29470
+ latestMenuSyncAt: string | null;
29471
+ latestMenuCheckAt: string | null;
29472
29472
  currentMenuVersion: {
29473
29473
  id: string;
29474
29474
  createdAt: string;
@@ -29480,7 +29480,7 @@ declare class GetIntegrationJustEatDetails extends AbstractApiRequest<void, GetI
29480
29480
  nextSyncMenuScheduledAt: string | null;
29481
29481
  syncType: "ALL" | "DELIVERY" | "TAKE_AWAY";
29482
29482
  defaultLanguage: string;
29483
- latestOpeningTimesSyncAt: string;
29483
+ latestOpeningTimesSyncAt: string | null;
29484
29484
  autoAcceptOrders: boolean;
29485
29485
  tagsForImport?: string[] | undefined;
29486
29486
  }, {
@@ -29499,8 +29499,8 @@ declare class GetIntegrationJustEatDetails extends AbstractApiRequest<void, GetI
29499
29499
  skipNegativePrices: boolean;
29500
29500
  importTaggedItems: boolean;
29501
29501
  isValidMenu: boolean;
29502
- latestMenuSyncAt: string;
29503
- latestMenuCheckAt: string;
29502
+ latestMenuSyncAt: string | null;
29503
+ latestMenuCheckAt: string | null;
29504
29504
  currentMenuVersion: {
29505
29505
  id: string;
29506
29506
  createdAt: string;
@@ -29512,7 +29512,7 @@ declare class GetIntegrationJustEatDetails extends AbstractApiRequest<void, GetI
29512
29512
  nextSyncMenuScheduledAt: string | null;
29513
29513
  syncType: "ALL" | "DELIVERY" | "TAKE_AWAY";
29514
29514
  defaultLanguage: string;
29515
- latestOpeningTimesSyncAt: string;
29515
+ latestOpeningTimesSyncAt: string | null;
29516
29516
  autoAcceptOrders: boolean;
29517
29517
  tagsForImport?: string[] | undefined;
29518
29518
  }>;
@@ -29673,8 +29673,8 @@ declare const getIntegrationJustEatListResponseSchema: z.ZodObject<{
29673
29673
  importTaggedItems: z.ZodBoolean;
29674
29674
  tagsForImport: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
29675
29675
  isValidMenu: z.ZodBoolean;
29676
- latestMenuSyncAt: z.ZodEffects<z.ZodString, string, string>;
29677
- latestMenuCheckAt: z.ZodEffects<z.ZodString, string, string>;
29676
+ latestMenuSyncAt: z.ZodNullable<z.ZodEffects<z.ZodString, string, string>>;
29677
+ latestMenuCheckAt: z.ZodNullable<z.ZodEffects<z.ZodString, string, string>>;
29678
29678
  currentMenuVersion: z.ZodNullable<z.ZodObject<{
29679
29679
  id: z.ZodString;
29680
29680
  contentUrl: z.ZodString;
@@ -29699,7 +29699,7 @@ declare const getIntegrationJustEatListResponseSchema: z.ZodObject<{
29699
29699
  syncType: z.ZodEnum<["ALL", "DELIVERY", "TAKE_AWAY"]>;
29700
29700
  defaultLanguage: z.ZodString;
29701
29701
  restaurantId: z.ZodString;
29702
- latestOpeningTimesSyncAt: z.ZodEffects<z.ZodString, string, string>;
29702
+ latestOpeningTimesSyncAt: z.ZodNullable<z.ZodEffects<z.ZodString, string, string>>;
29703
29703
  service: z.ZodEnum<["justeat"]>;
29704
29704
  autoAcceptOrders: z.ZodBoolean;
29705
29705
  nextSyncMenuScheduledAt: z.ZodNullable<z.ZodEffects<z.ZodString, string, string>>;
@@ -29718,8 +29718,8 @@ declare const getIntegrationJustEatListResponseSchema: z.ZodObject<{
29718
29718
  skipNegativePrices: boolean;
29719
29719
  importTaggedItems: boolean;
29720
29720
  isValidMenu: boolean;
29721
- latestMenuSyncAt: string;
29722
- latestMenuCheckAt: string;
29721
+ latestMenuSyncAt: string | null;
29722
+ latestMenuCheckAt: string | null;
29723
29723
  currentMenuVersion: {
29724
29724
  id: string;
29725
29725
  createdAt: string;
@@ -29731,7 +29731,7 @@ declare const getIntegrationJustEatListResponseSchema: z.ZodObject<{
29731
29731
  nextSyncMenuScheduledAt: string | null;
29732
29732
  syncType: "ALL" | "DELIVERY" | "TAKE_AWAY";
29733
29733
  defaultLanguage: string;
29734
- latestOpeningTimesSyncAt: string;
29734
+ latestOpeningTimesSyncAt: string | null;
29735
29735
  autoAcceptOrders: boolean;
29736
29736
  tagsForImport?: string[] | undefined;
29737
29737
  }, {
@@ -29749,8 +29749,8 @@ declare const getIntegrationJustEatListResponseSchema: z.ZodObject<{
29749
29749
  skipNegativePrices: boolean;
29750
29750
  importTaggedItems: boolean;
29751
29751
  isValidMenu: boolean;
29752
- latestMenuSyncAt: string;
29753
- latestMenuCheckAt: string;
29752
+ latestMenuSyncAt: string | null;
29753
+ latestMenuCheckAt: string | null;
29754
29754
  currentMenuVersion: {
29755
29755
  id: string;
29756
29756
  createdAt: string;
@@ -29762,7 +29762,7 @@ declare const getIntegrationJustEatListResponseSchema: z.ZodObject<{
29762
29762
  nextSyncMenuScheduledAt: string | null;
29763
29763
  syncType: "ALL" | "DELIVERY" | "TAKE_AWAY";
29764
29764
  defaultLanguage: string;
29765
- latestOpeningTimesSyncAt: string;
29765
+ latestOpeningTimesSyncAt: string | null;
29766
29766
  autoAcceptOrders: boolean;
29767
29767
  tagsForImport?: string[] | undefined;
29768
29768
  }>, "many">;
@@ -29804,8 +29804,8 @@ declare const getIntegrationJustEatListResponseSchema: z.ZodObject<{
29804
29804
  skipNegativePrices: boolean;
29805
29805
  importTaggedItems: boolean;
29806
29806
  isValidMenu: boolean;
29807
- latestMenuSyncAt: string;
29808
- latestMenuCheckAt: string;
29807
+ latestMenuSyncAt: string | null;
29808
+ latestMenuCheckAt: string | null;
29809
29809
  currentMenuVersion: {
29810
29810
  id: string;
29811
29811
  createdAt: string;
@@ -29817,7 +29817,7 @@ declare const getIntegrationJustEatListResponseSchema: z.ZodObject<{
29817
29817
  nextSyncMenuScheduledAt: string | null;
29818
29818
  syncType: "ALL" | "DELIVERY" | "TAKE_AWAY";
29819
29819
  defaultLanguage: string;
29820
- latestOpeningTimesSyncAt: string;
29820
+ latestOpeningTimesSyncAt: string | null;
29821
29821
  autoAcceptOrders: boolean;
29822
29822
  tagsForImport?: string[] | undefined;
29823
29823
  }[];
@@ -29845,8 +29845,8 @@ declare const getIntegrationJustEatListResponseSchema: z.ZodObject<{
29845
29845
  skipNegativePrices: boolean;
29846
29846
  importTaggedItems: boolean;
29847
29847
  isValidMenu: boolean;
29848
- latestMenuSyncAt: string;
29849
- latestMenuCheckAt: string;
29848
+ latestMenuSyncAt: string | null;
29849
+ latestMenuCheckAt: string | null;
29850
29850
  currentMenuVersion: {
29851
29851
  id: string;
29852
29852
  createdAt: string;
@@ -29858,7 +29858,7 @@ declare const getIntegrationJustEatListResponseSchema: z.ZodObject<{
29858
29858
  nextSyncMenuScheduledAt: string | null;
29859
29859
  syncType: "ALL" | "DELIVERY" | "TAKE_AWAY";
29860
29860
  defaultLanguage: string;
29861
- latestOpeningTimesSyncAt: string;
29861
+ latestOpeningTimesSyncAt: string | null;
29862
29862
  autoAcceptOrders: boolean;
29863
29863
  tagsForImport?: string[] | undefined;
29864
29864
  }[];
@@ -29895,8 +29895,8 @@ declare class GetIntegrationJustEatList extends AbstractApiRequest<void, GetInte
29895
29895
  importTaggedItems: z.ZodBoolean;
29896
29896
  tagsForImport: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
29897
29897
  isValidMenu: z.ZodBoolean;
29898
- latestMenuSyncAt: z.ZodEffects<z.ZodString, string, string>;
29899
- latestMenuCheckAt: z.ZodEffects<z.ZodString, string, string>;
29898
+ latestMenuSyncAt: z.ZodNullable<z.ZodEffects<z.ZodString, string, string>>;
29899
+ latestMenuCheckAt: z.ZodNullable<z.ZodEffects<z.ZodString, string, string>>;
29900
29900
  currentMenuVersion: z.ZodNullable<z.ZodObject<{
29901
29901
  id: z.ZodString;
29902
29902
  contentUrl: z.ZodString;
@@ -29921,7 +29921,7 @@ declare class GetIntegrationJustEatList extends AbstractApiRequest<void, GetInte
29921
29921
  syncType: z.ZodEnum<["ALL", "DELIVERY", "TAKE_AWAY"]>;
29922
29922
  defaultLanguage: z.ZodString;
29923
29923
  restaurantId: z.ZodString;
29924
- latestOpeningTimesSyncAt: z.ZodEffects<z.ZodString, string, string>;
29924
+ latestOpeningTimesSyncAt: z.ZodNullable<z.ZodEffects<z.ZodString, string, string>>;
29925
29925
  service: z.ZodEnum<["justeat"]>;
29926
29926
  autoAcceptOrders: z.ZodBoolean;
29927
29927
  nextSyncMenuScheduledAt: z.ZodNullable<z.ZodEffects<z.ZodString, string, string>>;
@@ -29940,8 +29940,8 @@ declare class GetIntegrationJustEatList extends AbstractApiRequest<void, GetInte
29940
29940
  skipNegativePrices: boolean;
29941
29941
  importTaggedItems: boolean;
29942
29942
  isValidMenu: boolean;
29943
- latestMenuSyncAt: string;
29944
- latestMenuCheckAt: string;
29943
+ latestMenuSyncAt: string | null;
29944
+ latestMenuCheckAt: string | null;
29945
29945
  currentMenuVersion: {
29946
29946
  id: string;
29947
29947
  createdAt: string;
@@ -29953,7 +29953,7 @@ declare class GetIntegrationJustEatList extends AbstractApiRequest<void, GetInte
29953
29953
  nextSyncMenuScheduledAt: string | null;
29954
29954
  syncType: "ALL" | "DELIVERY" | "TAKE_AWAY";
29955
29955
  defaultLanguage: string;
29956
- latestOpeningTimesSyncAt: string;
29956
+ latestOpeningTimesSyncAt: string | null;
29957
29957
  autoAcceptOrders: boolean;
29958
29958
  tagsForImport?: string[] | undefined;
29959
29959
  }, {
@@ -29971,8 +29971,8 @@ declare class GetIntegrationJustEatList extends AbstractApiRequest<void, GetInte
29971
29971
  skipNegativePrices: boolean;
29972
29972
  importTaggedItems: boolean;
29973
29973
  isValidMenu: boolean;
29974
- latestMenuSyncAt: string;
29975
- latestMenuCheckAt: string;
29974
+ latestMenuSyncAt: string | null;
29975
+ latestMenuCheckAt: string | null;
29976
29976
  currentMenuVersion: {
29977
29977
  id: string;
29978
29978
  createdAt: string;
@@ -29984,7 +29984,7 @@ declare class GetIntegrationJustEatList extends AbstractApiRequest<void, GetInte
29984
29984
  nextSyncMenuScheduledAt: string | null;
29985
29985
  syncType: "ALL" | "DELIVERY" | "TAKE_AWAY";
29986
29986
  defaultLanguage: string;
29987
- latestOpeningTimesSyncAt: string;
29987
+ latestOpeningTimesSyncAt: string | null;
29988
29988
  autoAcceptOrders: boolean;
29989
29989
  tagsForImport?: string[] | undefined;
29990
29990
  }>, "many">;
@@ -30026,8 +30026,8 @@ declare class GetIntegrationJustEatList extends AbstractApiRequest<void, GetInte
30026
30026
  skipNegativePrices: boolean;
30027
30027
  importTaggedItems: boolean;
30028
30028
  isValidMenu: boolean;
30029
- latestMenuSyncAt: string;
30030
- latestMenuCheckAt: string;
30029
+ latestMenuSyncAt: string | null;
30030
+ latestMenuCheckAt: string | null;
30031
30031
  currentMenuVersion: {
30032
30032
  id: string;
30033
30033
  createdAt: string;
@@ -30039,7 +30039,7 @@ declare class GetIntegrationJustEatList extends AbstractApiRequest<void, GetInte
30039
30039
  nextSyncMenuScheduledAt: string | null;
30040
30040
  syncType: "ALL" | "DELIVERY" | "TAKE_AWAY";
30041
30041
  defaultLanguage: string;
30042
- latestOpeningTimesSyncAt: string;
30042
+ latestOpeningTimesSyncAt: string | null;
30043
30043
  autoAcceptOrders: boolean;
30044
30044
  tagsForImport?: string[] | undefined;
30045
30045
  }[];
@@ -30067,8 +30067,8 @@ declare class GetIntegrationJustEatList extends AbstractApiRequest<void, GetInte
30067
30067
  skipNegativePrices: boolean;
30068
30068
  importTaggedItems: boolean;
30069
30069
  isValidMenu: boolean;
30070
- latestMenuSyncAt: string;
30071
- latestMenuCheckAt: string;
30070
+ latestMenuSyncAt: string | null;
30071
+ latestMenuCheckAt: string | null;
30072
30072
  currentMenuVersion: {
30073
30073
  id: string;
30074
30074
  createdAt: string;
@@ -30080,7 +30080,7 @@ declare class GetIntegrationJustEatList extends AbstractApiRequest<void, GetInte
30080
30080
  nextSyncMenuScheduledAt: string | null;
30081
30081
  syncType: "ALL" | "DELIVERY" | "TAKE_AWAY";
30082
30082
  defaultLanguage: string;
30083
- latestOpeningTimesSyncAt: string;
30083
+ latestOpeningTimesSyncAt: string | null;
30084
30084
  autoAcceptOrders: boolean;
30085
30085
  tagsForImport?: string[] | undefined;
30086
30086
  }[];
@@ -30782,8 +30782,8 @@ declare const updateIntegrationJustEatResponseSchema: zod.ZodObject<Omit<{
30782
30782
  importTaggedItems: zod.ZodBoolean;
30783
30783
  tagsForImport: zod.ZodOptional<zod.ZodArray<zod.ZodString, "many">>;
30784
30784
  isValidMenu: zod.ZodBoolean;
30785
- latestMenuSyncAt: zod.ZodEffects<zod.ZodString, string, string>;
30786
- latestMenuCheckAt: zod.ZodEffects<zod.ZodString, string, string>;
30785
+ latestMenuSyncAt: zod.ZodNullable<zod.ZodEffects<zod.ZodString, string, string>>;
30786
+ latestMenuCheckAt: zod.ZodNullable<zod.ZodEffects<zod.ZodString, string, string>>;
30787
30787
  currentMenuVersion: zod.ZodNullable<zod.ZodObject<{
30788
30788
  id: zod.ZodString;
30789
30789
  contentUrl: zod.ZodString;
@@ -30808,7 +30808,7 @@ declare const updateIntegrationJustEatResponseSchema: zod.ZodObject<Omit<{
30808
30808
  syncType: zod.ZodEnum<["ALL", "DELIVERY", "TAKE_AWAY"]>;
30809
30809
  defaultLanguage: zod.ZodString;
30810
30810
  restaurantId: zod.ZodString;
30811
- latestOpeningTimesSyncAt: zod.ZodEffects<zod.ZodString, string, string>;
30811
+ latestOpeningTimesSyncAt: zod.ZodNullable<zod.ZodEffects<zod.ZodString, string, string>>;
30812
30812
  service: zod.ZodEnum<["justeat"]>;
30813
30813
  autoAcceptOrders: zod.ZodBoolean;
30814
30814
  nextSyncMenuScheduledAt: zod.ZodNullable<zod.ZodEffects<zod.ZodString, string, string>>;
@@ -30830,8 +30830,8 @@ declare const updateIntegrationJustEatResponseSchema: zod.ZodObject<Omit<{
30830
30830
  skipNegativePrices: boolean;
30831
30831
  importTaggedItems: boolean;
30832
30832
  isValidMenu: boolean;
30833
- latestMenuSyncAt: string;
30834
- latestMenuCheckAt: string;
30833
+ latestMenuSyncAt: string | null;
30834
+ latestMenuCheckAt: string | null;
30835
30835
  currentMenuVersion: {
30836
30836
  id: string;
30837
30837
  createdAt: string;
@@ -30843,7 +30843,7 @@ declare const updateIntegrationJustEatResponseSchema: zod.ZodObject<Omit<{
30843
30843
  nextSyncMenuScheduledAt: string | null;
30844
30844
  syncType: "ALL" | "DELIVERY" | "TAKE_AWAY";
30845
30845
  defaultLanguage: string;
30846
- latestOpeningTimesSyncAt: string;
30846
+ latestOpeningTimesSyncAt: string | null;
30847
30847
  autoAcceptOrders: boolean;
30848
30848
  tagsForImport?: string[] | undefined;
30849
30849
  }, {
@@ -30862,8 +30862,8 @@ declare const updateIntegrationJustEatResponseSchema: zod.ZodObject<Omit<{
30862
30862
  skipNegativePrices: boolean;
30863
30863
  importTaggedItems: boolean;
30864
30864
  isValidMenu: boolean;
30865
- latestMenuSyncAt: string;
30866
- latestMenuCheckAt: string;
30865
+ latestMenuSyncAt: string | null;
30866
+ latestMenuCheckAt: string | null;
30867
30867
  currentMenuVersion: {
30868
30868
  id: string;
30869
30869
  createdAt: string;
@@ -30875,7 +30875,7 @@ declare const updateIntegrationJustEatResponseSchema: zod.ZodObject<Omit<{
30875
30875
  nextSyncMenuScheduledAt: string | null;
30876
30876
  syncType: "ALL" | "DELIVERY" | "TAKE_AWAY";
30877
30877
  defaultLanguage: string;
30878
- latestOpeningTimesSyncAt: string;
30878
+ latestOpeningTimesSyncAt: string | null;
30879
30879
  autoAcceptOrders: boolean;
30880
30880
  tagsForImport?: string[] | undefined;
30881
30881
  }>;
@@ -30934,8 +30934,8 @@ declare class UpdateIntegrationJustEat extends AbstractApiRequest<UpdateIntegrat
30934
30934
  importTaggedItems: zod.ZodBoolean;
30935
30935
  tagsForImport: zod.ZodOptional<zod.ZodArray<zod.ZodString, "many">>;
30936
30936
  isValidMenu: zod.ZodBoolean;
30937
- latestMenuSyncAt: zod.ZodEffects<zod.ZodString, string, string>;
30938
- latestMenuCheckAt: zod.ZodEffects<zod.ZodString, string, string>;
30937
+ latestMenuSyncAt: zod.ZodNullable<zod.ZodEffects<zod.ZodString, string, string>>;
30938
+ latestMenuCheckAt: zod.ZodNullable<zod.ZodEffects<zod.ZodString, string, string>>;
30939
30939
  currentMenuVersion: zod.ZodNullable<zod.ZodObject<{
30940
30940
  id: zod.ZodString;
30941
30941
  contentUrl: zod.ZodString;
@@ -30960,7 +30960,7 @@ declare class UpdateIntegrationJustEat extends AbstractApiRequest<UpdateIntegrat
30960
30960
  syncType: zod.ZodEnum<["ALL", "DELIVERY", "TAKE_AWAY"]>;
30961
30961
  defaultLanguage: zod.ZodString;
30962
30962
  restaurantId: zod.ZodString;
30963
- latestOpeningTimesSyncAt: zod.ZodEffects<zod.ZodString, string, string>;
30963
+ latestOpeningTimesSyncAt: zod.ZodNullable<zod.ZodEffects<zod.ZodString, string, string>>;
30964
30964
  service: zod.ZodEnum<["justeat"]>;
30965
30965
  autoAcceptOrders: zod.ZodBoolean;
30966
30966
  nextSyncMenuScheduledAt: zod.ZodNullable<zod.ZodEffects<zod.ZodString, string, string>>;
@@ -30982,8 +30982,8 @@ declare class UpdateIntegrationJustEat extends AbstractApiRequest<UpdateIntegrat
30982
30982
  skipNegativePrices: boolean;
30983
30983
  importTaggedItems: boolean;
30984
30984
  isValidMenu: boolean;
30985
- latestMenuSyncAt: string;
30986
- latestMenuCheckAt: string;
30985
+ latestMenuSyncAt: string | null;
30986
+ latestMenuCheckAt: string | null;
30987
30987
  currentMenuVersion: {
30988
30988
  id: string;
30989
30989
  createdAt: string;
@@ -30995,7 +30995,7 @@ declare class UpdateIntegrationJustEat extends AbstractApiRequest<UpdateIntegrat
30995
30995
  nextSyncMenuScheduledAt: string | null;
30996
30996
  syncType: "ALL" | "DELIVERY" | "TAKE_AWAY";
30997
30997
  defaultLanguage: string;
30998
- latestOpeningTimesSyncAt: string;
30998
+ latestOpeningTimesSyncAt: string | null;
30999
30999
  autoAcceptOrders: boolean;
31000
31000
  tagsForImport?: string[] | undefined;
31001
31001
  }, {
@@ -31014,8 +31014,8 @@ declare class UpdateIntegrationJustEat extends AbstractApiRequest<UpdateIntegrat
31014
31014
  skipNegativePrices: boolean;
31015
31015
  importTaggedItems: boolean;
31016
31016
  isValidMenu: boolean;
31017
- latestMenuSyncAt: string;
31018
- latestMenuCheckAt: string;
31017
+ latestMenuSyncAt: string | null;
31018
+ latestMenuCheckAt: string | null;
31019
31019
  currentMenuVersion: {
31020
31020
  id: string;
31021
31021
  createdAt: string;
@@ -31027,7 +31027,7 @@ declare class UpdateIntegrationJustEat extends AbstractApiRequest<UpdateIntegrat
31027
31027
  nextSyncMenuScheduledAt: string | null;
31028
31028
  syncType: "ALL" | "DELIVERY" | "TAKE_AWAY";
31029
31029
  defaultLanguage: string;
31030
- latestOpeningTimesSyncAt: string;
31030
+ latestOpeningTimesSyncAt: string | null;
31031
31031
  autoAcceptOrders: boolean;
31032
31032
  tagsForImport?: string[] | undefined;
31033
31033
  }>;
@@ -31062,8 +31062,8 @@ declare const updateIntegrationJustEatRestaurantStatusResponseSchema: z.ZodObjec
31062
31062
  importTaggedItems: z.ZodBoolean;
31063
31063
  tagsForImport: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
31064
31064
  isValidMenu: z.ZodBoolean;
31065
- latestMenuSyncAt: z.ZodEffects<z.ZodString, string, string>;
31066
- latestMenuCheckAt: z.ZodEffects<z.ZodString, string, string>;
31065
+ latestMenuSyncAt: z.ZodNullable<z.ZodEffects<z.ZodString, string, string>>;
31066
+ latestMenuCheckAt: z.ZodNullable<z.ZodEffects<z.ZodString, string, string>>;
31067
31067
  currentMenuVersion: z.ZodNullable<z.ZodObject<{
31068
31068
  id: z.ZodString;
31069
31069
  contentUrl: z.ZodString;
@@ -31088,7 +31088,7 @@ declare const updateIntegrationJustEatRestaurantStatusResponseSchema: z.ZodObjec
31088
31088
  syncType: z.ZodEnum<["ALL", "DELIVERY", "TAKE_AWAY"]>;
31089
31089
  defaultLanguage: z.ZodString;
31090
31090
  restaurantId: z.ZodString;
31091
- latestOpeningTimesSyncAt: z.ZodEffects<z.ZodString, string, string>;
31091
+ latestOpeningTimesSyncAt: z.ZodNullable<z.ZodEffects<z.ZodString, string, string>>;
31092
31092
  service: z.ZodEnum<["justeat"]>;
31093
31093
  autoAcceptOrders: z.ZodBoolean;
31094
31094
  nextSyncMenuScheduledAt: z.ZodNullable<z.ZodEffects<z.ZodString, string, string>>;
@@ -31110,8 +31110,8 @@ declare const updateIntegrationJustEatRestaurantStatusResponseSchema: z.ZodObjec
31110
31110
  skipNegativePrices: boolean;
31111
31111
  importTaggedItems: boolean;
31112
31112
  isValidMenu: boolean;
31113
- latestMenuSyncAt: string;
31114
- latestMenuCheckAt: string;
31113
+ latestMenuSyncAt: string | null;
31114
+ latestMenuCheckAt: string | null;
31115
31115
  currentMenuVersion: {
31116
31116
  id: string;
31117
31117
  createdAt: string;
@@ -31123,7 +31123,7 @@ declare const updateIntegrationJustEatRestaurantStatusResponseSchema: z.ZodObjec
31123
31123
  nextSyncMenuScheduledAt: string | null;
31124
31124
  syncType: "ALL" | "DELIVERY" | "TAKE_AWAY";
31125
31125
  defaultLanguage: string;
31126
- latestOpeningTimesSyncAt: string;
31126
+ latestOpeningTimesSyncAt: string | null;
31127
31127
  autoAcceptOrders: boolean;
31128
31128
  tagsForImport?: string[] | undefined;
31129
31129
  }, {
@@ -31142,8 +31142,8 @@ declare const updateIntegrationJustEatRestaurantStatusResponseSchema: z.ZodObjec
31142
31142
  skipNegativePrices: boolean;
31143
31143
  importTaggedItems: boolean;
31144
31144
  isValidMenu: boolean;
31145
- latestMenuSyncAt: string;
31146
- latestMenuCheckAt: string;
31145
+ latestMenuSyncAt: string | null;
31146
+ latestMenuCheckAt: string | null;
31147
31147
  currentMenuVersion: {
31148
31148
  id: string;
31149
31149
  createdAt: string;
@@ -31155,7 +31155,7 @@ declare const updateIntegrationJustEatRestaurantStatusResponseSchema: z.ZodObjec
31155
31155
  nextSyncMenuScheduledAt: string | null;
31156
31156
  syncType: "ALL" | "DELIVERY" | "TAKE_AWAY";
31157
31157
  defaultLanguage: string;
31158
- latestOpeningTimesSyncAt: string;
31158
+ latestOpeningTimesSyncAt: string | null;
31159
31159
  autoAcceptOrders: boolean;
31160
31160
  tagsForImport?: string[] | undefined;
31161
31161
  }>;
@@ -31187,8 +31187,8 @@ declare class UpdateIntegrationJustEatRestaurantStatus extends AbstractApiReques
31187
31187
  importTaggedItems: z.ZodBoolean;
31188
31188
  tagsForImport: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
31189
31189
  isValidMenu: z.ZodBoolean;
31190
- latestMenuSyncAt: z.ZodEffects<z.ZodString, string, string>;
31191
- latestMenuCheckAt: z.ZodEffects<z.ZodString, string, string>;
31190
+ latestMenuSyncAt: z.ZodNullable<z.ZodEffects<z.ZodString, string, string>>;
31191
+ latestMenuCheckAt: z.ZodNullable<z.ZodEffects<z.ZodString, string, string>>;
31192
31192
  currentMenuVersion: z.ZodNullable<z.ZodObject<{
31193
31193
  id: z.ZodString;
31194
31194
  contentUrl: z.ZodString;
@@ -31213,7 +31213,7 @@ declare class UpdateIntegrationJustEatRestaurantStatus extends AbstractApiReques
31213
31213
  syncType: z.ZodEnum<["ALL", "DELIVERY", "TAKE_AWAY"]>;
31214
31214
  defaultLanguage: z.ZodString;
31215
31215
  restaurantId: z.ZodString;
31216
- latestOpeningTimesSyncAt: z.ZodEffects<z.ZodString, string, string>;
31216
+ latestOpeningTimesSyncAt: z.ZodNullable<z.ZodEffects<z.ZodString, string, string>>;
31217
31217
  service: z.ZodEnum<["justeat"]>;
31218
31218
  autoAcceptOrders: z.ZodBoolean;
31219
31219
  nextSyncMenuScheduledAt: z.ZodNullable<z.ZodEffects<z.ZodString, string, string>>;
@@ -31235,8 +31235,8 @@ declare class UpdateIntegrationJustEatRestaurantStatus extends AbstractApiReques
31235
31235
  skipNegativePrices: boolean;
31236
31236
  importTaggedItems: boolean;
31237
31237
  isValidMenu: boolean;
31238
- latestMenuSyncAt: string;
31239
- latestMenuCheckAt: string;
31238
+ latestMenuSyncAt: string | null;
31239
+ latestMenuCheckAt: string | null;
31240
31240
  currentMenuVersion: {
31241
31241
  id: string;
31242
31242
  createdAt: string;
@@ -31248,7 +31248,7 @@ declare class UpdateIntegrationJustEatRestaurantStatus extends AbstractApiReques
31248
31248
  nextSyncMenuScheduledAt: string | null;
31249
31249
  syncType: "ALL" | "DELIVERY" | "TAKE_AWAY";
31250
31250
  defaultLanguage: string;
31251
- latestOpeningTimesSyncAt: string;
31251
+ latestOpeningTimesSyncAt: string | null;
31252
31252
  autoAcceptOrders: boolean;
31253
31253
  tagsForImport?: string[] | undefined;
31254
31254
  }, {
@@ -31267,8 +31267,8 @@ declare class UpdateIntegrationJustEatRestaurantStatus extends AbstractApiReques
31267
31267
  skipNegativePrices: boolean;
31268
31268
  importTaggedItems: boolean;
31269
31269
  isValidMenu: boolean;
31270
- latestMenuSyncAt: string;
31271
- latestMenuCheckAt: string;
31270
+ latestMenuSyncAt: string | null;
31271
+ latestMenuCheckAt: string | null;
31272
31272
  currentMenuVersion: {
31273
31273
  id: string;
31274
31274
  createdAt: string;
@@ -31280,7 +31280,7 @@ declare class UpdateIntegrationJustEatRestaurantStatus extends AbstractApiReques
31280
31280
  nextSyncMenuScheduledAt: string | null;
31281
31281
  syncType: "ALL" | "DELIVERY" | "TAKE_AWAY";
31282
31282
  defaultLanguage: string;
31283
- latestOpeningTimesSyncAt: string;
31283
+ latestOpeningTimesSyncAt: string | null;
31284
31284
  autoAcceptOrders: boolean;
31285
31285
  tagsForImport?: string[] | undefined;
31286
31286
  }>;
@@ -31318,8 +31318,8 @@ declare const updateIntegrationResponseSchema: z.ZodDiscriminatedUnion<"service"
31318
31318
  importTaggedItems: z.ZodBoolean;
31319
31319
  tagsForImport: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
31320
31320
  isValidMenu: z.ZodBoolean;
31321
- latestMenuSyncAt: z.ZodEffects<z.ZodString, string, string>;
31322
- latestMenuCheckAt: z.ZodEffects<z.ZodString, string, string>;
31321
+ latestMenuSyncAt: z.ZodNullable<z.ZodEffects<z.ZodString, string, string>>;
31322
+ latestMenuCheckAt: z.ZodNullable<z.ZodEffects<z.ZodString, string, string>>;
31323
31323
  currentMenuVersion: z.ZodNullable<z.ZodObject<{
31324
31324
  id: z.ZodString;
31325
31325
  contentUrl: z.ZodString;
@@ -31344,7 +31344,7 @@ declare const updateIntegrationResponseSchema: z.ZodDiscriminatedUnion<"service"
31344
31344
  syncType: z.ZodEnum<["ALL", "DELIVERY", "TAKE_AWAY"]>;
31345
31345
  defaultLanguage: z.ZodString;
31346
31346
  restaurantId: z.ZodString;
31347
- latestOpeningTimesSyncAt: z.ZodEffects<z.ZodString, string, string>;
31347
+ latestOpeningTimesSyncAt: z.ZodNullable<z.ZodEffects<z.ZodString, string, string>>;
31348
31348
  service: z.ZodEnum<["justeat"]>;
31349
31349
  autoAcceptOrders: z.ZodBoolean;
31350
31350
  nextSyncMenuScheduledAt: z.ZodNullable<z.ZodEffects<z.ZodString, string, string>>;
@@ -31366,8 +31366,8 @@ declare const updateIntegrationResponseSchema: z.ZodDiscriminatedUnion<"service"
31366
31366
  skipNegativePrices: boolean;
31367
31367
  importTaggedItems: boolean;
31368
31368
  isValidMenu: boolean;
31369
- latestMenuSyncAt: string;
31370
- latestMenuCheckAt: string;
31369
+ latestMenuSyncAt: string | null;
31370
+ latestMenuCheckAt: string | null;
31371
31371
  currentMenuVersion: {
31372
31372
  id: string;
31373
31373
  createdAt: string;
@@ -31379,7 +31379,7 @@ declare const updateIntegrationResponseSchema: z.ZodDiscriminatedUnion<"service"
31379
31379
  nextSyncMenuScheduledAt: string | null;
31380
31380
  syncType: "ALL" | "DELIVERY" | "TAKE_AWAY";
31381
31381
  defaultLanguage: string;
31382
- latestOpeningTimesSyncAt: string;
31382
+ latestOpeningTimesSyncAt: string | null;
31383
31383
  autoAcceptOrders: boolean;
31384
31384
  tagsForImport?: string[] | undefined;
31385
31385
  }, {
@@ -31398,8 +31398,8 @@ declare const updateIntegrationResponseSchema: z.ZodDiscriminatedUnion<"service"
31398
31398
  skipNegativePrices: boolean;
31399
31399
  importTaggedItems: boolean;
31400
31400
  isValidMenu: boolean;
31401
- latestMenuSyncAt: string;
31402
- latestMenuCheckAt: string;
31401
+ latestMenuSyncAt: string | null;
31402
+ latestMenuCheckAt: string | null;
31403
31403
  currentMenuVersion: {
31404
31404
  id: string;
31405
31405
  createdAt: string;
@@ -31411,7 +31411,7 @@ declare const updateIntegrationResponseSchema: z.ZodDiscriminatedUnion<"service"
31411
31411
  nextSyncMenuScheduledAt: string | null;
31412
31412
  syncType: "ALL" | "DELIVERY" | "TAKE_AWAY";
31413
31413
  defaultLanguage: string;
31414
- latestOpeningTimesSyncAt: string;
31414
+ latestOpeningTimesSyncAt: string | null;
31415
31415
  autoAcceptOrders: boolean;
31416
31416
  tagsForImport?: string[] | undefined;
31417
31417
  }>, z.ZodObject<Omit<{
@@ -31430,8 +31430,8 @@ declare const updateIntegrationResponseSchema: z.ZodDiscriminatedUnion<"service"
31430
31430
  importTaggedItems: z.ZodBoolean;
31431
31431
  tagsForImport: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
31432
31432
  isValidMenu: z.ZodBoolean;
31433
- latestMenuSyncAt: z.ZodEffects<z.ZodString, string, string>;
31434
- latestMenuCheckAt: z.ZodEffects<z.ZodString, string, string>;
31433
+ latestMenuSyncAt: z.ZodNullable<z.ZodEffects<z.ZodString, string, string>>;
31434
+ latestMenuCheckAt: z.ZodNullable<z.ZodEffects<z.ZodString, string, string>>;
31435
31435
  currentMenuVersion: z.ZodNullable<z.ZodObject<{
31436
31436
  id: z.ZodString;
31437
31437
  contentUrl: z.ZodString;
@@ -31479,8 +31479,8 @@ declare const updateIntegrationResponseSchema: z.ZodDiscriminatedUnion<"service"
31479
31479
  skipNegativePrices: boolean;
31480
31480
  importTaggedItems: boolean;
31481
31481
  isValidMenu: boolean;
31482
- latestMenuSyncAt: string;
31483
- latestMenuCheckAt: string;
31482
+ latestMenuSyncAt: string | null;
31483
+ latestMenuCheckAt: string | null;
31484
31484
  currentMenuVersion: {
31485
31485
  id: string;
31486
31486
  createdAt: string;
@@ -31511,8 +31511,8 @@ declare const updateIntegrationResponseSchema: z.ZodDiscriminatedUnion<"service"
31511
31511
  skipNegativePrices: boolean;
31512
31512
  importTaggedItems: boolean;
31513
31513
  isValidMenu: boolean;
31514
- latestMenuSyncAt: string;
31515
- latestMenuCheckAt: string;
31514
+ latestMenuSyncAt: string | null;
31515
+ latestMenuCheckAt: string | null;
31516
31516
  currentMenuVersion: {
31517
31517
  id: string;
31518
31518
  createdAt: string;
@@ -31542,8 +31542,8 @@ declare const updateIntegrationResponseSchema: z.ZodDiscriminatedUnion<"service"
31542
31542
  importTaggedItems: z.ZodBoolean;
31543
31543
  tagsForImport: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
31544
31544
  isValidMenu: z.ZodBoolean;
31545
- latestMenuSyncAt: z.ZodEffects<z.ZodString, string, string>;
31546
- latestMenuCheckAt: z.ZodEffects<z.ZodString, string, string>;
31545
+ latestMenuSyncAt: z.ZodNullable<z.ZodEffects<z.ZodString, string, string>>;
31546
+ latestMenuCheckAt: z.ZodNullable<z.ZodEffects<z.ZodString, string, string>>;
31547
31547
  currentMenuVersion: z.ZodNullable<z.ZodObject<{
31548
31548
  id: z.ZodString;
31549
31549
  contentUrl: z.ZodString;
@@ -31588,8 +31588,8 @@ declare const updateIntegrationResponseSchema: z.ZodDiscriminatedUnion<"service"
31588
31588
  skipNegativePrices: boolean;
31589
31589
  importTaggedItems: boolean;
31590
31590
  isValidMenu: boolean;
31591
- latestMenuSyncAt: string;
31592
- latestMenuCheckAt: string;
31591
+ latestMenuSyncAt: string | null;
31592
+ latestMenuCheckAt: string | null;
31593
31593
  currentMenuVersion: {
31594
31594
  id: string;
31595
31595
  createdAt: string;
@@ -31617,8 +31617,8 @@ declare const updateIntegrationResponseSchema: z.ZodDiscriminatedUnion<"service"
31617
31617
  skipNegativePrices: boolean;
31618
31618
  importTaggedItems: boolean;
31619
31619
  isValidMenu: boolean;
31620
- latestMenuSyncAt: string;
31621
- latestMenuCheckAt: string;
31620
+ latestMenuSyncAt: string | null;
31621
+ latestMenuCheckAt: string | null;
31622
31622
  currentMenuVersion: {
31623
31623
  id: string;
31624
31624
  createdAt: string;
@@ -31721,8 +31721,8 @@ declare class UpdateIntegration extends AbstractApiRequest<UpdateIntegrationInpu
31721
31721
  importTaggedItems: z.ZodBoolean;
31722
31722
  tagsForImport: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
31723
31723
  isValidMenu: z.ZodBoolean;
31724
- latestMenuSyncAt: z.ZodEffects<z.ZodString, string, string>;
31725
- latestMenuCheckAt: z.ZodEffects<z.ZodString, string, string>;
31724
+ latestMenuSyncAt: z.ZodNullable<z.ZodEffects<z.ZodString, string, string>>;
31725
+ latestMenuCheckAt: z.ZodNullable<z.ZodEffects<z.ZodString, string, string>>;
31726
31726
  currentMenuVersion: z.ZodNullable<z.ZodObject<{
31727
31727
  id: z.ZodString;
31728
31728
  contentUrl: z.ZodString;
@@ -31747,7 +31747,7 @@ declare class UpdateIntegration extends AbstractApiRequest<UpdateIntegrationInpu
31747
31747
  syncType: z.ZodEnum<["ALL", "DELIVERY", "TAKE_AWAY"]>;
31748
31748
  defaultLanguage: z.ZodString;
31749
31749
  restaurantId: z.ZodString;
31750
- latestOpeningTimesSyncAt: z.ZodEffects<z.ZodString, string, string>;
31750
+ latestOpeningTimesSyncAt: z.ZodNullable<z.ZodEffects<z.ZodString, string, string>>;
31751
31751
  service: z.ZodEnum<["justeat"]>;
31752
31752
  autoAcceptOrders: z.ZodBoolean;
31753
31753
  nextSyncMenuScheduledAt: z.ZodNullable<z.ZodEffects<z.ZodString, string, string>>;
@@ -31769,8 +31769,8 @@ declare class UpdateIntegration extends AbstractApiRequest<UpdateIntegrationInpu
31769
31769
  skipNegativePrices: boolean;
31770
31770
  importTaggedItems: boolean;
31771
31771
  isValidMenu: boolean;
31772
- latestMenuSyncAt: string;
31773
- latestMenuCheckAt: string;
31772
+ latestMenuSyncAt: string | null;
31773
+ latestMenuCheckAt: string | null;
31774
31774
  currentMenuVersion: {
31775
31775
  id: string;
31776
31776
  createdAt: string;
@@ -31782,7 +31782,7 @@ declare class UpdateIntegration extends AbstractApiRequest<UpdateIntegrationInpu
31782
31782
  nextSyncMenuScheduledAt: string | null;
31783
31783
  syncType: "ALL" | "DELIVERY" | "TAKE_AWAY";
31784
31784
  defaultLanguage: string;
31785
- latestOpeningTimesSyncAt: string;
31785
+ latestOpeningTimesSyncAt: string | null;
31786
31786
  autoAcceptOrders: boolean;
31787
31787
  tagsForImport?: string[] | undefined;
31788
31788
  }, {
@@ -31801,8 +31801,8 @@ declare class UpdateIntegration extends AbstractApiRequest<UpdateIntegrationInpu
31801
31801
  skipNegativePrices: boolean;
31802
31802
  importTaggedItems: boolean;
31803
31803
  isValidMenu: boolean;
31804
- latestMenuSyncAt: string;
31805
- latestMenuCheckAt: string;
31804
+ latestMenuSyncAt: string | null;
31805
+ latestMenuCheckAt: string | null;
31806
31806
  currentMenuVersion: {
31807
31807
  id: string;
31808
31808
  createdAt: string;
@@ -31814,7 +31814,7 @@ declare class UpdateIntegration extends AbstractApiRequest<UpdateIntegrationInpu
31814
31814
  nextSyncMenuScheduledAt: string | null;
31815
31815
  syncType: "ALL" | "DELIVERY" | "TAKE_AWAY";
31816
31816
  defaultLanguage: string;
31817
- latestOpeningTimesSyncAt: string;
31817
+ latestOpeningTimesSyncAt: string | null;
31818
31818
  autoAcceptOrders: boolean;
31819
31819
  tagsForImport?: string[] | undefined;
31820
31820
  }>, z.ZodObject<Omit<{
@@ -31833,8 +31833,8 @@ declare class UpdateIntegration extends AbstractApiRequest<UpdateIntegrationInpu
31833
31833
  importTaggedItems: z.ZodBoolean;
31834
31834
  tagsForImport: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
31835
31835
  isValidMenu: z.ZodBoolean;
31836
- latestMenuSyncAt: z.ZodEffects<z.ZodString, string, string>;
31837
- latestMenuCheckAt: z.ZodEffects<z.ZodString, string, string>;
31836
+ latestMenuSyncAt: z.ZodNullable<z.ZodEffects<z.ZodString, string, string>>;
31837
+ latestMenuCheckAt: z.ZodNullable<z.ZodEffects<z.ZodString, string, string>>;
31838
31838
  currentMenuVersion: z.ZodNullable<z.ZodObject<{
31839
31839
  id: z.ZodString;
31840
31840
  contentUrl: z.ZodString;
@@ -31882,8 +31882,8 @@ declare class UpdateIntegration extends AbstractApiRequest<UpdateIntegrationInpu
31882
31882
  skipNegativePrices: boolean;
31883
31883
  importTaggedItems: boolean;
31884
31884
  isValidMenu: boolean;
31885
- latestMenuSyncAt: string;
31886
- latestMenuCheckAt: string;
31885
+ latestMenuSyncAt: string | null;
31886
+ latestMenuCheckAt: string | null;
31887
31887
  currentMenuVersion: {
31888
31888
  id: string;
31889
31889
  createdAt: string;
@@ -31914,8 +31914,8 @@ declare class UpdateIntegration extends AbstractApiRequest<UpdateIntegrationInpu
31914
31914
  skipNegativePrices: boolean;
31915
31915
  importTaggedItems: boolean;
31916
31916
  isValidMenu: boolean;
31917
- latestMenuSyncAt: string;
31918
- latestMenuCheckAt: string;
31917
+ latestMenuSyncAt: string | null;
31918
+ latestMenuCheckAt: string | null;
31919
31919
  currentMenuVersion: {
31920
31920
  id: string;
31921
31921
  createdAt: string;
@@ -31945,8 +31945,8 @@ declare class UpdateIntegration extends AbstractApiRequest<UpdateIntegrationInpu
31945
31945
  importTaggedItems: z.ZodBoolean;
31946
31946
  tagsForImport: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
31947
31947
  isValidMenu: z.ZodBoolean;
31948
- latestMenuSyncAt: z.ZodEffects<z.ZodString, string, string>;
31949
- latestMenuCheckAt: z.ZodEffects<z.ZodString, string, string>;
31948
+ latestMenuSyncAt: z.ZodNullable<z.ZodEffects<z.ZodString, string, string>>;
31949
+ latestMenuCheckAt: z.ZodNullable<z.ZodEffects<z.ZodString, string, string>>;
31950
31950
  currentMenuVersion: z.ZodNullable<z.ZodObject<{
31951
31951
  id: z.ZodString;
31952
31952
  contentUrl: z.ZodString;
@@ -31991,8 +31991,8 @@ declare class UpdateIntegration extends AbstractApiRequest<UpdateIntegrationInpu
31991
31991
  skipNegativePrices: boolean;
31992
31992
  importTaggedItems: boolean;
31993
31993
  isValidMenu: boolean;
31994
- latestMenuSyncAt: string;
31995
- latestMenuCheckAt: string;
31994
+ latestMenuSyncAt: string | null;
31995
+ latestMenuCheckAt: string | null;
31996
31996
  currentMenuVersion: {
31997
31997
  id: string;
31998
31998
  createdAt: string;
@@ -32020,8 +32020,8 @@ declare class UpdateIntegration extends AbstractApiRequest<UpdateIntegrationInpu
32020
32020
  skipNegativePrices: boolean;
32021
32021
  importTaggedItems: boolean;
32022
32022
  isValidMenu: boolean;
32023
- latestMenuSyncAt: string;
32024
- latestMenuCheckAt: string;
32023
+ latestMenuSyncAt: string | null;
32024
+ latestMenuCheckAt: string | null;
32025
32025
  currentMenuVersion: {
32026
32026
  id: string;
32027
32027
  createdAt: string;