@deliverart/sdk-js-integration 2.1.30 → 2.1.31

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
@@ -38,7 +38,7 @@ declare const activatableIntegrationBaseSchema: z.ZodObject<{
38
38
  request_sent_partner: "request_sent_partner";
39
39
  failed: "failed";
40
40
  }>;
41
- message: z.ZodString;
41
+ message: z.ZodNullable<z.ZodString>;
42
42
  updatedAt: z.ZodString;
43
43
  }, z.core.$strip>>>>;
44
44
  }, z.core.$strip>;
@@ -81,7 +81,7 @@ declare const activatableIntegrationSchema: z.ZodDiscriminatedUnion<[z.ZodObject
81
81
  request_sent_partner: "request_sent_partner";
82
82
  failed: "failed";
83
83
  }>;
84
- message: z.ZodString;
84
+ message: z.ZodNullable<z.ZodString>;
85
85
  updatedAt: z.ZodString;
86
86
  }, z.core.$strip>>>>;
87
87
  }, z.core.$strip>, z.ZodObject<{
@@ -122,7 +122,7 @@ declare const activatableIntegrationSchema: z.ZodDiscriminatedUnion<[z.ZodObject
122
122
  request_sent_partner: "request_sent_partner";
123
123
  failed: "failed";
124
124
  }>;
125
- message: z.ZodString;
125
+ message: z.ZodNullable<z.ZodString>;
126
126
  updatedAt: z.ZodString;
127
127
  }, z.core.$strip>>>>;
128
128
  }, z.core.$strip>, z.ZodObject<{
@@ -163,7 +163,7 @@ declare const activatableIntegrationSchema: z.ZodDiscriminatedUnion<[z.ZodObject
163
163
  request_sent_partner: "request_sent_partner";
164
164
  failed: "failed";
165
165
  }>;
166
- message: z.ZodString;
166
+ message: z.ZodNullable<z.ZodString>;
167
167
  updatedAt: z.ZodString;
168
168
  }, z.core.$strip>>>>;
169
169
  }, z.core.$strip>, z.ZodObject<{
@@ -209,7 +209,7 @@ declare const activatableIntegrationSchema: z.ZodDiscriminatedUnion<[z.ZodObject
209
209
  request_sent_partner: "request_sent_partner";
210
210
  failed: "failed";
211
211
  }>;
212
- message: z.ZodString;
212
+ message: z.ZodNullable<z.ZodString>;
213
213
  updatedAt: z.ZodString;
214
214
  }, z.core.$strip>>>>;
215
215
  }, z.core.$strip>]>;
@@ -330,7 +330,7 @@ declare const integrationActivationRequestSchema: z.ZodDiscriminatedUnion<[z.Zod
330
330
  request_sent_partner: "request_sent_partner";
331
331
  failed: "failed";
332
332
  }>;
333
- message: z.ZodString;
333
+ message: z.ZodNullable<z.ZodString>;
334
334
  updatedAt: z.ZodString;
335
335
  }, z.core.$strip>>>>;
336
336
  }, z.core.$strip>, z.ZodObject<{
@@ -371,7 +371,7 @@ declare const integrationActivationRequestSchema: z.ZodDiscriminatedUnion<[z.Zod
371
371
  request_sent_partner: "request_sent_partner";
372
372
  failed: "failed";
373
373
  }>;
374
- message: z.ZodString;
374
+ message: z.ZodNullable<z.ZodString>;
375
375
  updatedAt: z.ZodString;
376
376
  }, z.core.$strip>>>>;
377
377
  }, z.core.$strip>, z.ZodObject<{
@@ -412,7 +412,7 @@ declare const integrationActivationRequestSchema: z.ZodDiscriminatedUnion<[z.Zod
412
412
  request_sent_partner: "request_sent_partner";
413
413
  failed: "failed";
414
414
  }>;
415
- message: z.ZodString;
415
+ message: z.ZodNullable<z.ZodString>;
416
416
  updatedAt: z.ZodString;
417
417
  }, z.core.$strip>>>>;
418
418
  }, z.core.$strip>, z.ZodObject<{
@@ -458,40 +458,13 @@ declare const integrationActivationRequestSchema: z.ZodDiscriminatedUnion<[z.Zod
458
458
  request_sent_partner: "request_sent_partner";
459
459
  failed: "failed";
460
460
  }>;
461
- message: z.ZodString;
461
+ message: z.ZodNullable<z.ZodString>;
462
462
  updatedAt: z.ZodString;
463
463
  }, z.core.$strip>>>>;
464
464
  }, z.core.$strip>]>;
465
465
  type IntegrationActivationRequest = z.infer<typeof integrationActivationRequestSchema>;
466
466
  declare const integrationActivationRequestDetailsSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
467
- pointOfSale: z.ZodObject<{
468
- id: z.ZodString;
469
- name: z.ZodString;
470
- address: z.ZodObject<{
471
- line1: z.ZodOptional<z.ZodNullable<z.ZodString>>;
472
- line2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
473
- city: z.ZodOptional<z.ZodNullable<z.ZodString>>;
474
- region: z.ZodOptional<z.ZodNullable<z.ZodString>>;
475
- postalCode: z.ZodOptional<z.ZodNullable<z.ZodString>>;
476
- country: z.ZodOptional<z.ZodNullable<z.ZodString>>;
477
- }, z.core.$strip>;
478
- timezone: z.ZodString;
479
- location: z.ZodObject<{
480
- latitude: z.ZodNumber;
481
- longitude: z.ZodNumber;
482
- }, z.core.$strip>;
483
- capabilities: z.ZodArray<z.ZodEnum<{
484
- DELIVERY_OPTIMIZATION: "DELIVERY_OPTIMIZATION";
485
- }>>;
486
- openingStatus: z.ZodEnum<{
487
- OPEN: "OPEN";
488
- CLOSED: "CLOSED";
489
- }>;
490
- nextSyncMenuScheduledAt: z.ZodNullable<z.ZodString>;
491
- currentMenuVersion: z.ZodType<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id/menu_versions/:menuVersionId"> | null, unknown, z.core.$ZodTypeInternals<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id/menu_versions/:menuVersionId"> | null, unknown>>;
492
- createdAt: z.ZodString;
493
- updatedAt: z.ZodString;
494
- }, z.core.$strip>;
467
+ pointOfSale: z.ZodType<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id">, unknown, z.core.$ZodTypeInternals<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id">, unknown>>;
495
468
  service: z.ZodLiteral<"deliveroo">;
496
469
  data: z.ZodObject<{
497
470
  brandId: z.ZodString;
@@ -530,38 +503,11 @@ declare const integrationActivationRequestDetailsSchema: z.ZodDiscriminatedUnion
530
503
  request_sent_partner: "request_sent_partner";
531
504
  failed: "failed";
532
505
  }>;
533
- message: z.ZodString;
506
+ message: z.ZodNullable<z.ZodString>;
534
507
  updatedAt: z.ZodString;
535
508
  }, z.core.$strip>>>>;
536
509
  }, z.core.$strip>, z.ZodObject<{
537
- pointOfSale: z.ZodObject<{
538
- id: z.ZodString;
539
- name: z.ZodString;
540
- address: z.ZodObject<{
541
- line1: z.ZodOptional<z.ZodNullable<z.ZodString>>;
542
- line2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
543
- city: z.ZodOptional<z.ZodNullable<z.ZodString>>;
544
- region: z.ZodOptional<z.ZodNullable<z.ZodString>>;
545
- postalCode: z.ZodOptional<z.ZodNullable<z.ZodString>>;
546
- country: z.ZodOptional<z.ZodNullable<z.ZodString>>;
547
- }, z.core.$strip>;
548
- timezone: z.ZodString;
549
- location: z.ZodObject<{
550
- latitude: z.ZodNumber;
551
- longitude: z.ZodNumber;
552
- }, z.core.$strip>;
553
- capabilities: z.ZodArray<z.ZodEnum<{
554
- DELIVERY_OPTIMIZATION: "DELIVERY_OPTIMIZATION";
555
- }>>;
556
- openingStatus: z.ZodEnum<{
557
- OPEN: "OPEN";
558
- CLOSED: "CLOSED";
559
- }>;
560
- nextSyncMenuScheduledAt: z.ZodNullable<z.ZodString>;
561
- currentMenuVersion: z.ZodType<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id/menu_versions/:menuVersionId"> | null, unknown, z.core.$ZodTypeInternals<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id/menu_versions/:menuVersionId"> | null, unknown>>;
562
- createdAt: z.ZodString;
563
- updatedAt: z.ZodString;
564
- }, z.core.$strip>;
510
+ pointOfSale: z.ZodType<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id">, unknown, z.core.$ZodTypeInternals<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id">, unknown>>;
565
511
  service: z.ZodLiteral<"glovo">;
566
512
  data: z.ZodObject<{
567
513
  storeId: z.ZodString;
@@ -599,38 +545,11 @@ declare const integrationActivationRequestDetailsSchema: z.ZodDiscriminatedUnion
599
545
  request_sent_partner: "request_sent_partner";
600
546
  failed: "failed";
601
547
  }>;
602
- message: z.ZodString;
548
+ message: z.ZodNullable<z.ZodString>;
603
549
  updatedAt: z.ZodString;
604
550
  }, z.core.$strip>>>>;
605
551
  }, z.core.$strip>, z.ZodObject<{
606
- pointOfSale: z.ZodObject<{
607
- id: z.ZodString;
608
- name: z.ZodString;
609
- address: z.ZodObject<{
610
- line1: z.ZodOptional<z.ZodNullable<z.ZodString>>;
611
- line2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
612
- city: z.ZodOptional<z.ZodNullable<z.ZodString>>;
613
- region: z.ZodOptional<z.ZodNullable<z.ZodString>>;
614
- postalCode: z.ZodOptional<z.ZodNullable<z.ZodString>>;
615
- country: z.ZodOptional<z.ZodNullable<z.ZodString>>;
616
- }, z.core.$strip>;
617
- timezone: z.ZodString;
618
- location: z.ZodObject<{
619
- latitude: z.ZodNumber;
620
- longitude: z.ZodNumber;
621
- }, z.core.$strip>;
622
- capabilities: z.ZodArray<z.ZodEnum<{
623
- DELIVERY_OPTIMIZATION: "DELIVERY_OPTIMIZATION";
624
- }>>;
625
- openingStatus: z.ZodEnum<{
626
- OPEN: "OPEN";
627
- CLOSED: "CLOSED";
628
- }>;
629
- nextSyncMenuScheduledAt: z.ZodNullable<z.ZodString>;
630
- currentMenuVersion: z.ZodType<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id/menu_versions/:menuVersionId"> | null, unknown, z.core.$ZodTypeInternals<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id/menu_versions/:menuVersionId"> | null, unknown>>;
631
- createdAt: z.ZodString;
632
- updatedAt: z.ZodString;
633
- }, z.core.$strip>;
552
+ pointOfSale: z.ZodType<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id">, unknown, z.core.$ZodTypeInternals<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id">, unknown>>;
634
553
  service: z.ZodLiteral<"justeat">;
635
554
  data: z.ZodObject<{
636
555
  restaurantId: z.ZodString;
@@ -668,38 +587,11 @@ declare const integrationActivationRequestDetailsSchema: z.ZodDiscriminatedUnion
668
587
  request_sent_partner: "request_sent_partner";
669
588
  failed: "failed";
670
589
  }>;
671
- message: z.ZodString;
590
+ message: z.ZodNullable<z.ZodString>;
672
591
  updatedAt: z.ZodString;
673
592
  }, z.core.$strip>>>>;
674
593
  }, z.core.$strip>, z.ZodObject<{
675
- pointOfSale: z.ZodObject<{
676
- id: z.ZodString;
677
- name: z.ZodString;
678
- address: z.ZodObject<{
679
- line1: z.ZodOptional<z.ZodNullable<z.ZodString>>;
680
- line2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
681
- city: z.ZodOptional<z.ZodNullable<z.ZodString>>;
682
- region: z.ZodOptional<z.ZodNullable<z.ZodString>>;
683
- postalCode: z.ZodOptional<z.ZodNullable<z.ZodString>>;
684
- country: z.ZodOptional<z.ZodNullable<z.ZodString>>;
685
- }, z.core.$strip>;
686
- timezone: z.ZodString;
687
- location: z.ZodObject<{
688
- latitude: z.ZodNumber;
689
- longitude: z.ZodNumber;
690
- }, z.core.$strip>;
691
- capabilities: z.ZodArray<z.ZodEnum<{
692
- DELIVERY_OPTIMIZATION: "DELIVERY_OPTIMIZATION";
693
- }>>;
694
- openingStatus: z.ZodEnum<{
695
- OPEN: "OPEN";
696
- CLOSED: "CLOSED";
697
- }>;
698
- nextSyncMenuScheduledAt: z.ZodNullable<z.ZodString>;
699
- currentMenuVersion: z.ZodType<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id/menu_versions/:menuVersionId"> | null, unknown, z.core.$ZodTypeInternals<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id/menu_versions/:menuVersionId"> | null, unknown>>;
700
- createdAt: z.ZodString;
701
- updatedAt: z.ZodString;
702
- }, z.core.$strip>;
594
+ pointOfSale: z.ZodType<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id">, unknown, z.core.$ZodTypeInternals<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id">, unknown>>;
703
595
  service: z.ZodLiteral<"cassa_in_cloud">;
704
596
  data: z.ZodObject<{
705
597
  apiKey: z.ZodString;
@@ -742,7 +634,7 @@ declare const integrationActivationRequestDetailsSchema: z.ZodDiscriminatedUnion
742
634
  request_sent_partner: "request_sent_partner";
743
635
  failed: "failed";
744
636
  }>;
745
- message: z.ZodString;
637
+ message: z.ZodNullable<z.ZodString>;
746
638
  updatedAt: z.ZodString;
747
639
  }, z.core.$strip>>>>;
748
640
  }, z.core.$strip>]>;
@@ -1086,34 +978,7 @@ type IntegrationDetails = z.infer<typeof integrationDetailsSchema>;
1086
978
  declare const activateIntegrationActivationRequestInputSchema: z.ZodUndefined;
1087
979
  type ActivateIntegrationActivationRequestInput = z.input<typeof activateIntegrationActivationRequestInputSchema>;
1088
980
  declare const activateIntegrationActivationRequestResponseSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
1089
- pointOfSale: z.ZodObject<{
1090
- id: z.ZodString;
1091
- name: z.ZodString;
1092
- address: z.ZodObject<{
1093
- line1: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1094
- line2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1095
- city: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1096
- region: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1097
- postalCode: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1098
- country: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1099
- }, z.core.$strip>;
1100
- timezone: z.ZodString;
1101
- location: z.ZodObject<{
1102
- latitude: z.ZodNumber;
1103
- longitude: z.ZodNumber;
1104
- }, z.core.$strip>;
1105
- capabilities: z.ZodArray<z.ZodEnum<{
1106
- DELIVERY_OPTIMIZATION: "DELIVERY_OPTIMIZATION";
1107
- }>>;
1108
- openingStatus: z.ZodEnum<{
1109
- OPEN: "OPEN";
1110
- CLOSED: "CLOSED";
1111
- }>;
1112
- nextSyncMenuScheduledAt: z.ZodNullable<z.ZodString>;
1113
- currentMenuVersion: z.ZodType<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id/menu_versions/:menuVersionId"> | null, unknown, z.core.$ZodTypeInternals<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id/menu_versions/:menuVersionId"> | null, unknown>>;
1114
- createdAt: z.ZodString;
1115
- updatedAt: z.ZodString;
1116
- }, z.core.$strip>;
981
+ pointOfSale: z.ZodType<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id">, unknown, z.core.$ZodTypeInternals<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id">, unknown>>;
1117
982
  service: z.ZodLiteral<"deliveroo">;
1118
983
  data: z.ZodObject<{
1119
984
  brandId: z.ZodString;
@@ -1152,38 +1017,11 @@ declare const activateIntegrationActivationRequestResponseSchema: z.ZodDiscrimin
1152
1017
  request_sent_partner: "request_sent_partner";
1153
1018
  failed: "failed";
1154
1019
  }>;
1155
- message: z.ZodString;
1020
+ message: z.ZodNullable<z.ZodString>;
1156
1021
  updatedAt: z.ZodString;
1157
1022
  }, z.core.$strip>>>>;
1158
1023
  }, z.core.$strip>, z.ZodObject<{
1159
- pointOfSale: z.ZodObject<{
1160
- id: z.ZodString;
1161
- name: z.ZodString;
1162
- address: z.ZodObject<{
1163
- line1: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1164
- line2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1165
- city: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1166
- region: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1167
- postalCode: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1168
- country: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1169
- }, z.core.$strip>;
1170
- timezone: z.ZodString;
1171
- location: z.ZodObject<{
1172
- latitude: z.ZodNumber;
1173
- longitude: z.ZodNumber;
1174
- }, z.core.$strip>;
1175
- capabilities: z.ZodArray<z.ZodEnum<{
1176
- DELIVERY_OPTIMIZATION: "DELIVERY_OPTIMIZATION";
1177
- }>>;
1178
- openingStatus: z.ZodEnum<{
1179
- OPEN: "OPEN";
1180
- CLOSED: "CLOSED";
1181
- }>;
1182
- nextSyncMenuScheduledAt: z.ZodNullable<z.ZodString>;
1183
- currentMenuVersion: z.ZodType<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id/menu_versions/:menuVersionId"> | null, unknown, z.core.$ZodTypeInternals<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id/menu_versions/:menuVersionId"> | null, unknown>>;
1184
- createdAt: z.ZodString;
1185
- updatedAt: z.ZodString;
1186
- }, z.core.$strip>;
1024
+ pointOfSale: z.ZodType<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id">, unknown, z.core.$ZodTypeInternals<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id">, unknown>>;
1187
1025
  service: z.ZodLiteral<"glovo">;
1188
1026
  data: z.ZodObject<{
1189
1027
  storeId: z.ZodString;
@@ -1221,38 +1059,11 @@ declare const activateIntegrationActivationRequestResponseSchema: z.ZodDiscrimin
1221
1059
  request_sent_partner: "request_sent_partner";
1222
1060
  failed: "failed";
1223
1061
  }>;
1224
- message: z.ZodString;
1062
+ message: z.ZodNullable<z.ZodString>;
1225
1063
  updatedAt: z.ZodString;
1226
1064
  }, z.core.$strip>>>>;
1227
1065
  }, z.core.$strip>, z.ZodObject<{
1228
- pointOfSale: z.ZodObject<{
1229
- id: z.ZodString;
1230
- name: z.ZodString;
1231
- address: z.ZodObject<{
1232
- line1: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1233
- line2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1234
- city: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1235
- region: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1236
- postalCode: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1237
- country: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1238
- }, z.core.$strip>;
1239
- timezone: z.ZodString;
1240
- location: z.ZodObject<{
1241
- latitude: z.ZodNumber;
1242
- longitude: z.ZodNumber;
1243
- }, z.core.$strip>;
1244
- capabilities: z.ZodArray<z.ZodEnum<{
1245
- DELIVERY_OPTIMIZATION: "DELIVERY_OPTIMIZATION";
1246
- }>>;
1247
- openingStatus: z.ZodEnum<{
1248
- OPEN: "OPEN";
1249
- CLOSED: "CLOSED";
1250
- }>;
1251
- nextSyncMenuScheduledAt: z.ZodNullable<z.ZodString>;
1252
- currentMenuVersion: z.ZodType<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id/menu_versions/:menuVersionId"> | null, unknown, z.core.$ZodTypeInternals<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id/menu_versions/:menuVersionId"> | null, unknown>>;
1253
- createdAt: z.ZodString;
1254
- updatedAt: z.ZodString;
1255
- }, z.core.$strip>;
1066
+ pointOfSale: z.ZodType<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id">, unknown, z.core.$ZodTypeInternals<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id">, unknown>>;
1256
1067
  service: z.ZodLiteral<"justeat">;
1257
1068
  data: z.ZodObject<{
1258
1069
  restaurantId: z.ZodString;
@@ -1290,38 +1101,11 @@ declare const activateIntegrationActivationRequestResponseSchema: z.ZodDiscrimin
1290
1101
  request_sent_partner: "request_sent_partner";
1291
1102
  failed: "failed";
1292
1103
  }>;
1293
- message: z.ZodString;
1104
+ message: z.ZodNullable<z.ZodString>;
1294
1105
  updatedAt: z.ZodString;
1295
1106
  }, z.core.$strip>>>>;
1296
1107
  }, z.core.$strip>, z.ZodObject<{
1297
- pointOfSale: z.ZodObject<{
1298
- id: z.ZodString;
1299
- name: z.ZodString;
1300
- address: z.ZodObject<{
1301
- line1: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1302
- line2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1303
- city: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1304
- region: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1305
- postalCode: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1306
- country: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1307
- }, z.core.$strip>;
1308
- timezone: z.ZodString;
1309
- location: z.ZodObject<{
1310
- latitude: z.ZodNumber;
1311
- longitude: z.ZodNumber;
1312
- }, z.core.$strip>;
1313
- capabilities: z.ZodArray<z.ZodEnum<{
1314
- DELIVERY_OPTIMIZATION: "DELIVERY_OPTIMIZATION";
1315
- }>>;
1316
- openingStatus: z.ZodEnum<{
1317
- OPEN: "OPEN";
1318
- CLOSED: "CLOSED";
1319
- }>;
1320
- nextSyncMenuScheduledAt: z.ZodNullable<z.ZodString>;
1321
- currentMenuVersion: z.ZodType<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id/menu_versions/:menuVersionId"> | null, unknown, z.core.$ZodTypeInternals<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id/menu_versions/:menuVersionId"> | null, unknown>>;
1322
- createdAt: z.ZodString;
1323
- updatedAt: z.ZodString;
1324
- }, z.core.$strip>;
1108
+ pointOfSale: z.ZodType<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id">, unknown, z.core.$ZodTypeInternals<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id">, unknown>>;
1325
1109
  service: z.ZodLiteral<"cassa_in_cloud">;
1326
1110
  data: z.ZodObject<{
1327
1111
  apiKey: z.ZodString;
@@ -1364,7 +1148,7 @@ declare const activateIntegrationActivationRequestResponseSchema: z.ZodDiscrimin
1364
1148
  request_sent_partner: "request_sent_partner";
1365
1149
  failed: "failed";
1366
1150
  }>;
1367
- message: z.ZodString;
1151
+ message: z.ZodNullable<z.ZodString>;
1368
1152
  updatedAt: z.ZodString;
1369
1153
  }, z.core.$strip>>>>;
1370
1154
  }, z.core.$strip>]>;
@@ -1375,34 +1159,7 @@ declare class ActivateIntegrationActivationRequest extends AbstractApiRequest<ty
1375
1159
  readonly accept = "application/json";
1376
1160
  readonly inputSchema: z.ZodUndefined;
1377
1161
  readonly outputSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
1378
- pointOfSale: z.ZodObject<{
1379
- id: z.ZodString;
1380
- name: z.ZodString;
1381
- address: z.ZodObject<{
1382
- line1: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1383
- line2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1384
- city: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1385
- region: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1386
- postalCode: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1387
- country: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1388
- }, z.core.$strip>;
1389
- timezone: z.ZodString;
1390
- location: z.ZodObject<{
1391
- latitude: z.ZodNumber;
1392
- longitude: z.ZodNumber;
1393
- }, z.core.$strip>;
1394
- capabilities: z.ZodArray<z.ZodEnum<{
1395
- DELIVERY_OPTIMIZATION: "DELIVERY_OPTIMIZATION";
1396
- }>>;
1397
- openingStatus: z.ZodEnum<{
1398
- OPEN: "OPEN";
1399
- CLOSED: "CLOSED";
1400
- }>;
1401
- nextSyncMenuScheduledAt: z.ZodNullable<z.ZodString>;
1402
- currentMenuVersion: z.ZodType<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id/menu_versions/:menuVersionId"> | null, unknown, z.core.$ZodTypeInternals<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id/menu_versions/:menuVersionId"> | null, unknown>>;
1403
- createdAt: z.ZodString;
1404
- updatedAt: z.ZodString;
1405
- }, z.core.$strip>;
1162
+ pointOfSale: z.ZodType<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id">, unknown, z.core.$ZodTypeInternals<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id">, unknown>>;
1406
1163
  service: z.ZodLiteral<"deliveroo">;
1407
1164
  data: z.ZodObject<{
1408
1165
  brandId: z.ZodString;
@@ -1441,38 +1198,11 @@ declare class ActivateIntegrationActivationRequest extends AbstractApiRequest<ty
1441
1198
  request_sent_partner: "request_sent_partner";
1442
1199
  failed: "failed";
1443
1200
  }>;
1444
- message: z.ZodString;
1201
+ message: z.ZodNullable<z.ZodString>;
1445
1202
  updatedAt: z.ZodString;
1446
1203
  }, z.core.$strip>>>>;
1447
1204
  }, z.core.$strip>, z.ZodObject<{
1448
- pointOfSale: z.ZodObject<{
1449
- id: z.ZodString;
1450
- name: z.ZodString;
1451
- address: z.ZodObject<{
1452
- line1: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1453
- line2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1454
- city: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1455
- region: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1456
- postalCode: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1457
- country: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1458
- }, z.core.$strip>;
1459
- timezone: z.ZodString;
1460
- location: z.ZodObject<{
1461
- latitude: z.ZodNumber;
1462
- longitude: z.ZodNumber;
1463
- }, z.core.$strip>;
1464
- capabilities: z.ZodArray<z.ZodEnum<{
1465
- DELIVERY_OPTIMIZATION: "DELIVERY_OPTIMIZATION";
1466
- }>>;
1467
- openingStatus: z.ZodEnum<{
1468
- OPEN: "OPEN";
1469
- CLOSED: "CLOSED";
1470
- }>;
1471
- nextSyncMenuScheduledAt: z.ZodNullable<z.ZodString>;
1472
- currentMenuVersion: z.ZodType<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id/menu_versions/:menuVersionId"> | null, unknown, z.core.$ZodTypeInternals<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id/menu_versions/:menuVersionId"> | null, unknown>>;
1473
- createdAt: z.ZodString;
1474
- updatedAt: z.ZodString;
1475
- }, z.core.$strip>;
1205
+ pointOfSale: z.ZodType<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id">, unknown, z.core.$ZodTypeInternals<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id">, unknown>>;
1476
1206
  service: z.ZodLiteral<"glovo">;
1477
1207
  data: z.ZodObject<{
1478
1208
  storeId: z.ZodString;
@@ -1510,38 +1240,11 @@ declare class ActivateIntegrationActivationRequest extends AbstractApiRequest<ty
1510
1240
  request_sent_partner: "request_sent_partner";
1511
1241
  failed: "failed";
1512
1242
  }>;
1513
- message: z.ZodString;
1243
+ message: z.ZodNullable<z.ZodString>;
1514
1244
  updatedAt: z.ZodString;
1515
1245
  }, z.core.$strip>>>>;
1516
1246
  }, z.core.$strip>, z.ZodObject<{
1517
- pointOfSale: z.ZodObject<{
1518
- id: z.ZodString;
1519
- name: z.ZodString;
1520
- address: z.ZodObject<{
1521
- line1: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1522
- line2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1523
- city: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1524
- region: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1525
- postalCode: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1526
- country: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1527
- }, z.core.$strip>;
1528
- timezone: z.ZodString;
1529
- location: z.ZodObject<{
1530
- latitude: z.ZodNumber;
1531
- longitude: z.ZodNumber;
1532
- }, z.core.$strip>;
1533
- capabilities: z.ZodArray<z.ZodEnum<{
1534
- DELIVERY_OPTIMIZATION: "DELIVERY_OPTIMIZATION";
1535
- }>>;
1536
- openingStatus: z.ZodEnum<{
1537
- OPEN: "OPEN";
1538
- CLOSED: "CLOSED";
1539
- }>;
1540
- nextSyncMenuScheduledAt: z.ZodNullable<z.ZodString>;
1541
- currentMenuVersion: z.ZodType<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id/menu_versions/:menuVersionId"> | null, unknown, z.core.$ZodTypeInternals<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id/menu_versions/:menuVersionId"> | null, unknown>>;
1542
- createdAt: z.ZodString;
1543
- updatedAt: z.ZodString;
1544
- }, z.core.$strip>;
1247
+ pointOfSale: z.ZodType<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id">, unknown, z.core.$ZodTypeInternals<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id">, unknown>>;
1545
1248
  service: z.ZodLiteral<"justeat">;
1546
1249
  data: z.ZodObject<{
1547
1250
  restaurantId: z.ZodString;
@@ -1579,38 +1282,11 @@ declare class ActivateIntegrationActivationRequest extends AbstractApiRequest<ty
1579
1282
  request_sent_partner: "request_sent_partner";
1580
1283
  failed: "failed";
1581
1284
  }>;
1582
- message: z.ZodString;
1285
+ message: z.ZodNullable<z.ZodString>;
1583
1286
  updatedAt: z.ZodString;
1584
1287
  }, z.core.$strip>>>>;
1585
1288
  }, z.core.$strip>, z.ZodObject<{
1586
- pointOfSale: z.ZodObject<{
1587
- id: z.ZodString;
1588
- name: z.ZodString;
1589
- address: z.ZodObject<{
1590
- line1: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1591
- line2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1592
- city: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1593
- region: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1594
- postalCode: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1595
- country: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1596
- }, z.core.$strip>;
1597
- timezone: z.ZodString;
1598
- location: z.ZodObject<{
1599
- latitude: z.ZodNumber;
1600
- longitude: z.ZodNumber;
1601
- }, z.core.$strip>;
1602
- capabilities: z.ZodArray<z.ZodEnum<{
1603
- DELIVERY_OPTIMIZATION: "DELIVERY_OPTIMIZATION";
1604
- }>>;
1605
- openingStatus: z.ZodEnum<{
1606
- OPEN: "OPEN";
1607
- CLOSED: "CLOSED";
1608
- }>;
1609
- nextSyncMenuScheduledAt: z.ZodNullable<z.ZodString>;
1610
- currentMenuVersion: z.ZodType<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id/menu_versions/:menuVersionId"> | null, unknown, z.core.$ZodTypeInternals<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id/menu_versions/:menuVersionId"> | null, unknown>>;
1611
- createdAt: z.ZodString;
1612
- updatedAt: z.ZodString;
1613
- }, z.core.$strip>;
1289
+ pointOfSale: z.ZodType<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id">, unknown, z.core.$ZodTypeInternals<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id">, unknown>>;
1614
1290
  service: z.ZodLiteral<"cassa_in_cloud">;
1615
1291
  data: z.ZodObject<{
1616
1292
  apiKey: z.ZodString;
@@ -1653,7 +1329,7 @@ declare class ActivateIntegrationActivationRequest extends AbstractApiRequest<ty
1653
1329
  request_sent_partner: "request_sent_partner";
1654
1330
  failed: "failed";
1655
1331
  }>;
1656
- message: z.ZodString;
1332
+ message: z.ZodNullable<z.ZodString>;
1657
1333
  updatedAt: z.ZodString;
1658
1334
  }, z.core.$strip>>>>;
1659
1335
  }, z.core.$strip>]>;
@@ -1669,34 +1345,7 @@ declare const annotateIntegrationActivationRequestInputSchema: z.ZodObject<{
1669
1345
  }, z.core.$strip>;
1670
1346
  type AnnotateIntegrationActivationRequestInput = z.input<typeof annotateIntegrationActivationRequestInputSchema>;
1671
1347
  declare const annotateIntegrationActivationRequestResponseSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
1672
- pointOfSale: z.ZodObject<{
1673
- id: z.ZodString;
1674
- name: z.ZodString;
1675
- address: z.ZodObject<{
1676
- line1: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1677
- line2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1678
- city: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1679
- region: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1680
- postalCode: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1681
- country: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1682
- }, z.core.$strip>;
1683
- timezone: z.ZodString;
1684
- location: z.ZodObject<{
1685
- latitude: z.ZodNumber;
1686
- longitude: z.ZodNumber;
1687
- }, z.core.$strip>;
1688
- capabilities: z.ZodArray<z.ZodEnum<{
1689
- DELIVERY_OPTIMIZATION: "DELIVERY_OPTIMIZATION";
1690
- }>>;
1691
- openingStatus: z.ZodEnum<{
1692
- OPEN: "OPEN";
1693
- CLOSED: "CLOSED";
1694
- }>;
1695
- nextSyncMenuScheduledAt: z.ZodNullable<z.ZodString>;
1696
- currentMenuVersion: z.ZodType<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id/menu_versions/:menuVersionId"> | null, unknown, z.core.$ZodTypeInternals<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id/menu_versions/:menuVersionId"> | null, unknown>>;
1697
- createdAt: z.ZodString;
1698
- updatedAt: z.ZodString;
1699
- }, z.core.$strip>;
1348
+ pointOfSale: z.ZodType<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id">, unknown, z.core.$ZodTypeInternals<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id">, unknown>>;
1700
1349
  service: z.ZodLiteral<"deliveroo">;
1701
1350
  data: z.ZodObject<{
1702
1351
  brandId: z.ZodString;
@@ -1735,38 +1384,11 @@ declare const annotateIntegrationActivationRequestResponseSchema: z.ZodDiscrimin
1735
1384
  request_sent_partner: "request_sent_partner";
1736
1385
  failed: "failed";
1737
1386
  }>;
1738
- message: z.ZodString;
1387
+ message: z.ZodNullable<z.ZodString>;
1739
1388
  updatedAt: z.ZodString;
1740
1389
  }, z.core.$strip>>>>;
1741
1390
  }, z.core.$strip>, z.ZodObject<{
1742
- pointOfSale: z.ZodObject<{
1743
- id: z.ZodString;
1744
- name: z.ZodString;
1745
- address: z.ZodObject<{
1746
- line1: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1747
- line2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1748
- city: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1749
- region: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1750
- postalCode: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1751
- country: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1752
- }, z.core.$strip>;
1753
- timezone: z.ZodString;
1754
- location: z.ZodObject<{
1755
- latitude: z.ZodNumber;
1756
- longitude: z.ZodNumber;
1757
- }, z.core.$strip>;
1758
- capabilities: z.ZodArray<z.ZodEnum<{
1759
- DELIVERY_OPTIMIZATION: "DELIVERY_OPTIMIZATION";
1760
- }>>;
1761
- openingStatus: z.ZodEnum<{
1762
- OPEN: "OPEN";
1763
- CLOSED: "CLOSED";
1764
- }>;
1765
- nextSyncMenuScheduledAt: z.ZodNullable<z.ZodString>;
1766
- currentMenuVersion: z.ZodType<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id/menu_versions/:menuVersionId"> | null, unknown, z.core.$ZodTypeInternals<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id/menu_versions/:menuVersionId"> | null, unknown>>;
1767
- createdAt: z.ZodString;
1768
- updatedAt: z.ZodString;
1769
- }, z.core.$strip>;
1391
+ pointOfSale: z.ZodType<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id">, unknown, z.core.$ZodTypeInternals<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id">, unknown>>;
1770
1392
  service: z.ZodLiteral<"glovo">;
1771
1393
  data: z.ZodObject<{
1772
1394
  storeId: z.ZodString;
@@ -1804,38 +1426,11 @@ declare const annotateIntegrationActivationRequestResponseSchema: z.ZodDiscrimin
1804
1426
  request_sent_partner: "request_sent_partner";
1805
1427
  failed: "failed";
1806
1428
  }>;
1807
- message: z.ZodString;
1429
+ message: z.ZodNullable<z.ZodString>;
1808
1430
  updatedAt: z.ZodString;
1809
1431
  }, z.core.$strip>>>>;
1810
1432
  }, z.core.$strip>, z.ZodObject<{
1811
- pointOfSale: z.ZodObject<{
1812
- id: z.ZodString;
1813
- name: z.ZodString;
1814
- address: z.ZodObject<{
1815
- line1: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1816
- line2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1817
- city: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1818
- region: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1819
- postalCode: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1820
- country: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1821
- }, z.core.$strip>;
1822
- timezone: z.ZodString;
1823
- location: z.ZodObject<{
1824
- latitude: z.ZodNumber;
1825
- longitude: z.ZodNumber;
1826
- }, z.core.$strip>;
1827
- capabilities: z.ZodArray<z.ZodEnum<{
1828
- DELIVERY_OPTIMIZATION: "DELIVERY_OPTIMIZATION";
1829
- }>>;
1830
- openingStatus: z.ZodEnum<{
1831
- OPEN: "OPEN";
1832
- CLOSED: "CLOSED";
1833
- }>;
1834
- nextSyncMenuScheduledAt: z.ZodNullable<z.ZodString>;
1835
- currentMenuVersion: z.ZodType<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id/menu_versions/:menuVersionId"> | null, unknown, z.core.$ZodTypeInternals<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id/menu_versions/:menuVersionId"> | null, unknown>>;
1836
- createdAt: z.ZodString;
1837
- updatedAt: z.ZodString;
1838
- }, z.core.$strip>;
1433
+ pointOfSale: z.ZodType<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id">, unknown, z.core.$ZodTypeInternals<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id">, unknown>>;
1839
1434
  service: z.ZodLiteral<"justeat">;
1840
1435
  data: z.ZodObject<{
1841
1436
  restaurantId: z.ZodString;
@@ -1873,38 +1468,11 @@ declare const annotateIntegrationActivationRequestResponseSchema: z.ZodDiscrimin
1873
1468
  request_sent_partner: "request_sent_partner";
1874
1469
  failed: "failed";
1875
1470
  }>;
1876
- message: z.ZodString;
1471
+ message: z.ZodNullable<z.ZodString>;
1877
1472
  updatedAt: z.ZodString;
1878
1473
  }, z.core.$strip>>>>;
1879
1474
  }, z.core.$strip>, z.ZodObject<{
1880
- pointOfSale: z.ZodObject<{
1881
- id: z.ZodString;
1882
- name: z.ZodString;
1883
- address: z.ZodObject<{
1884
- line1: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1885
- line2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1886
- city: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1887
- region: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1888
- postalCode: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1889
- country: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1890
- }, z.core.$strip>;
1891
- timezone: z.ZodString;
1892
- location: z.ZodObject<{
1893
- latitude: z.ZodNumber;
1894
- longitude: z.ZodNumber;
1895
- }, z.core.$strip>;
1896
- capabilities: z.ZodArray<z.ZodEnum<{
1897
- DELIVERY_OPTIMIZATION: "DELIVERY_OPTIMIZATION";
1898
- }>>;
1899
- openingStatus: z.ZodEnum<{
1900
- OPEN: "OPEN";
1901
- CLOSED: "CLOSED";
1902
- }>;
1903
- nextSyncMenuScheduledAt: z.ZodNullable<z.ZodString>;
1904
- currentMenuVersion: z.ZodType<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id/menu_versions/:menuVersionId"> | null, unknown, z.core.$ZodTypeInternals<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id/menu_versions/:menuVersionId"> | null, unknown>>;
1905
- createdAt: z.ZodString;
1906
- updatedAt: z.ZodString;
1907
- }, z.core.$strip>;
1475
+ pointOfSale: z.ZodType<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id">, unknown, z.core.$ZodTypeInternals<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id">, unknown>>;
1908
1476
  service: z.ZodLiteral<"cassa_in_cloud">;
1909
1477
  data: z.ZodObject<{
1910
1478
  apiKey: z.ZodString;
@@ -1947,7 +1515,7 @@ declare const annotateIntegrationActivationRequestResponseSchema: z.ZodDiscrimin
1947
1515
  request_sent_partner: "request_sent_partner";
1948
1516
  failed: "failed";
1949
1517
  }>;
1950
- message: z.ZodString;
1518
+ message: z.ZodNullable<z.ZodString>;
1951
1519
  updatedAt: z.ZodString;
1952
1520
  }, z.core.$strip>>>>;
1953
1521
  }, z.core.$strip>]>;
@@ -1960,34 +1528,7 @@ declare class AnnotateIntegrationActivationRequest extends AbstractApiRequest<ty
1960
1528
  message: z.ZodString;
1961
1529
  }, z.core.$strip>;
1962
1530
  readonly outputSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
1963
- pointOfSale: z.ZodObject<{
1964
- id: z.ZodString;
1965
- name: z.ZodString;
1966
- address: z.ZodObject<{
1967
- line1: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1968
- line2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1969
- city: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1970
- region: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1971
- postalCode: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1972
- country: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1973
- }, z.core.$strip>;
1974
- timezone: z.ZodString;
1975
- location: z.ZodObject<{
1976
- latitude: z.ZodNumber;
1977
- longitude: z.ZodNumber;
1978
- }, z.core.$strip>;
1979
- capabilities: z.ZodArray<z.ZodEnum<{
1980
- DELIVERY_OPTIMIZATION: "DELIVERY_OPTIMIZATION";
1981
- }>>;
1982
- openingStatus: z.ZodEnum<{
1983
- OPEN: "OPEN";
1984
- CLOSED: "CLOSED";
1985
- }>;
1986
- nextSyncMenuScheduledAt: z.ZodNullable<z.ZodString>;
1987
- currentMenuVersion: z.ZodType<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id/menu_versions/:menuVersionId"> | null, unknown, z.core.$ZodTypeInternals<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id/menu_versions/:menuVersionId"> | null, unknown>>;
1988
- createdAt: z.ZodString;
1989
- updatedAt: z.ZodString;
1990
- }, z.core.$strip>;
1531
+ pointOfSale: z.ZodType<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id">, unknown, z.core.$ZodTypeInternals<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id">, unknown>>;
1991
1532
  service: z.ZodLiteral<"deliveroo">;
1992
1533
  data: z.ZodObject<{
1993
1534
  brandId: z.ZodString;
@@ -2026,38 +1567,11 @@ declare class AnnotateIntegrationActivationRequest extends AbstractApiRequest<ty
2026
1567
  request_sent_partner: "request_sent_partner";
2027
1568
  failed: "failed";
2028
1569
  }>;
2029
- message: z.ZodString;
1570
+ message: z.ZodNullable<z.ZodString>;
2030
1571
  updatedAt: z.ZodString;
2031
1572
  }, z.core.$strip>>>>;
2032
1573
  }, z.core.$strip>, z.ZodObject<{
2033
- pointOfSale: z.ZodObject<{
2034
- id: z.ZodString;
2035
- name: z.ZodString;
2036
- address: z.ZodObject<{
2037
- line1: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2038
- line2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2039
- city: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2040
- region: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2041
- postalCode: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2042
- country: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2043
- }, z.core.$strip>;
2044
- timezone: z.ZodString;
2045
- location: z.ZodObject<{
2046
- latitude: z.ZodNumber;
2047
- longitude: z.ZodNumber;
2048
- }, z.core.$strip>;
2049
- capabilities: z.ZodArray<z.ZodEnum<{
2050
- DELIVERY_OPTIMIZATION: "DELIVERY_OPTIMIZATION";
2051
- }>>;
2052
- openingStatus: z.ZodEnum<{
2053
- OPEN: "OPEN";
2054
- CLOSED: "CLOSED";
2055
- }>;
2056
- nextSyncMenuScheduledAt: z.ZodNullable<z.ZodString>;
2057
- currentMenuVersion: z.ZodType<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id/menu_versions/:menuVersionId"> | null, unknown, z.core.$ZodTypeInternals<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id/menu_versions/:menuVersionId"> | null, unknown>>;
2058
- createdAt: z.ZodString;
2059
- updatedAt: z.ZodString;
2060
- }, z.core.$strip>;
1574
+ pointOfSale: z.ZodType<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id">, unknown, z.core.$ZodTypeInternals<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id">, unknown>>;
2061
1575
  service: z.ZodLiteral<"glovo">;
2062
1576
  data: z.ZodObject<{
2063
1577
  storeId: z.ZodString;
@@ -2095,38 +1609,11 @@ declare class AnnotateIntegrationActivationRequest extends AbstractApiRequest<ty
2095
1609
  request_sent_partner: "request_sent_partner";
2096
1610
  failed: "failed";
2097
1611
  }>;
2098
- message: z.ZodString;
1612
+ message: z.ZodNullable<z.ZodString>;
2099
1613
  updatedAt: z.ZodString;
2100
1614
  }, z.core.$strip>>>>;
2101
1615
  }, z.core.$strip>, z.ZodObject<{
2102
- pointOfSale: z.ZodObject<{
2103
- id: z.ZodString;
2104
- name: z.ZodString;
2105
- address: z.ZodObject<{
2106
- line1: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2107
- line2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2108
- city: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2109
- region: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2110
- postalCode: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2111
- country: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2112
- }, z.core.$strip>;
2113
- timezone: z.ZodString;
2114
- location: z.ZodObject<{
2115
- latitude: z.ZodNumber;
2116
- longitude: z.ZodNumber;
2117
- }, z.core.$strip>;
2118
- capabilities: z.ZodArray<z.ZodEnum<{
2119
- DELIVERY_OPTIMIZATION: "DELIVERY_OPTIMIZATION";
2120
- }>>;
2121
- openingStatus: z.ZodEnum<{
2122
- OPEN: "OPEN";
2123
- CLOSED: "CLOSED";
2124
- }>;
2125
- nextSyncMenuScheduledAt: z.ZodNullable<z.ZodString>;
2126
- currentMenuVersion: z.ZodType<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id/menu_versions/:menuVersionId"> | null, unknown, z.core.$ZodTypeInternals<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id/menu_versions/:menuVersionId"> | null, unknown>>;
2127
- createdAt: z.ZodString;
2128
- updatedAt: z.ZodString;
2129
- }, z.core.$strip>;
1616
+ pointOfSale: z.ZodType<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id">, unknown, z.core.$ZodTypeInternals<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id">, unknown>>;
2130
1617
  service: z.ZodLiteral<"justeat">;
2131
1618
  data: z.ZodObject<{
2132
1619
  restaurantId: z.ZodString;
@@ -2164,38 +1651,11 @@ declare class AnnotateIntegrationActivationRequest extends AbstractApiRequest<ty
2164
1651
  request_sent_partner: "request_sent_partner";
2165
1652
  failed: "failed";
2166
1653
  }>;
2167
- message: z.ZodString;
1654
+ message: z.ZodNullable<z.ZodString>;
2168
1655
  updatedAt: z.ZodString;
2169
1656
  }, z.core.$strip>>>>;
2170
1657
  }, z.core.$strip>, z.ZodObject<{
2171
- pointOfSale: z.ZodObject<{
2172
- id: z.ZodString;
2173
- name: z.ZodString;
2174
- address: z.ZodObject<{
2175
- line1: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2176
- line2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2177
- city: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2178
- region: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2179
- postalCode: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2180
- country: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2181
- }, z.core.$strip>;
2182
- timezone: z.ZodString;
2183
- location: z.ZodObject<{
2184
- latitude: z.ZodNumber;
2185
- longitude: z.ZodNumber;
2186
- }, z.core.$strip>;
2187
- capabilities: z.ZodArray<z.ZodEnum<{
2188
- DELIVERY_OPTIMIZATION: "DELIVERY_OPTIMIZATION";
2189
- }>>;
2190
- openingStatus: z.ZodEnum<{
2191
- OPEN: "OPEN";
2192
- CLOSED: "CLOSED";
2193
- }>;
2194
- nextSyncMenuScheduledAt: z.ZodNullable<z.ZodString>;
2195
- currentMenuVersion: z.ZodType<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id/menu_versions/:menuVersionId"> | null, unknown, z.core.$ZodTypeInternals<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id/menu_versions/:menuVersionId"> | null, unknown>>;
2196
- createdAt: z.ZodString;
2197
- updatedAt: z.ZodString;
2198
- }, z.core.$strip>;
1658
+ pointOfSale: z.ZodType<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id">, unknown, z.core.$ZodTypeInternals<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id">, unknown>>;
2199
1659
  service: z.ZodLiteral<"cassa_in_cloud">;
2200
1660
  data: z.ZodObject<{
2201
1661
  apiKey: z.ZodString;
@@ -2238,7 +1698,7 @@ declare class AnnotateIntegrationActivationRequest extends AbstractApiRequest<ty
2238
1698
  request_sent_partner: "request_sent_partner";
2239
1699
  failed: "failed";
2240
1700
  }>;
2241
- message: z.ZodString;
1701
+ message: z.ZodNullable<z.ZodString>;
2242
1702
  updatedAt: z.ZodString;
2243
1703
  }, z.core.$strip>>>>;
2244
1704
  }, z.core.$strip>]>;
@@ -2306,34 +1766,7 @@ declare const createIntegrationActivationRequestInputSchema: z.ZodDiscriminatedU
2306
1766
  }, z.core.$strip>]>;
2307
1767
  type CreateIntegrationActivationRequestInput = z.input<typeof createIntegrationActivationRequestInputSchema>;
2308
1768
  declare const createIntegrationActivationRequestResponseSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
2309
- pointOfSale: z.ZodObject<{
2310
- id: z.ZodString;
2311
- name: z.ZodString;
2312
- address: z.ZodObject<{
2313
- line1: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2314
- line2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2315
- city: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2316
- region: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2317
- postalCode: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2318
- country: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2319
- }, z.core.$strip>;
2320
- timezone: z.ZodString;
2321
- location: z.ZodObject<{
2322
- latitude: z.ZodNumber;
2323
- longitude: z.ZodNumber;
2324
- }, z.core.$strip>;
2325
- capabilities: z.ZodArray<z.ZodEnum<{
2326
- DELIVERY_OPTIMIZATION: "DELIVERY_OPTIMIZATION";
2327
- }>>;
2328
- openingStatus: z.ZodEnum<{
2329
- OPEN: "OPEN";
2330
- CLOSED: "CLOSED";
2331
- }>;
2332
- nextSyncMenuScheduledAt: z.ZodNullable<z.ZodString>;
2333
- currentMenuVersion: z.ZodType<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id/menu_versions/:menuVersionId"> | null, unknown, z.core.$ZodTypeInternals<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id/menu_versions/:menuVersionId"> | null, unknown>>;
2334
- createdAt: z.ZodString;
2335
- updatedAt: z.ZodString;
2336
- }, z.core.$strip>;
1769
+ pointOfSale: z.ZodType<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id">, unknown, z.core.$ZodTypeInternals<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id">, unknown>>;
2337
1770
  service: z.ZodLiteral<"deliveroo">;
2338
1771
  data: z.ZodObject<{
2339
1772
  brandId: z.ZodString;
@@ -2372,38 +1805,11 @@ declare const createIntegrationActivationRequestResponseSchema: z.ZodDiscriminat
2372
1805
  request_sent_partner: "request_sent_partner";
2373
1806
  failed: "failed";
2374
1807
  }>;
2375
- message: z.ZodString;
1808
+ message: z.ZodNullable<z.ZodString>;
2376
1809
  updatedAt: z.ZodString;
2377
1810
  }, z.core.$strip>>>>;
2378
1811
  }, z.core.$strip>, z.ZodObject<{
2379
- pointOfSale: z.ZodObject<{
2380
- id: z.ZodString;
2381
- name: z.ZodString;
2382
- address: z.ZodObject<{
2383
- line1: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2384
- line2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2385
- city: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2386
- region: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2387
- postalCode: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2388
- country: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2389
- }, z.core.$strip>;
2390
- timezone: z.ZodString;
2391
- location: z.ZodObject<{
2392
- latitude: z.ZodNumber;
2393
- longitude: z.ZodNumber;
2394
- }, z.core.$strip>;
2395
- capabilities: z.ZodArray<z.ZodEnum<{
2396
- DELIVERY_OPTIMIZATION: "DELIVERY_OPTIMIZATION";
2397
- }>>;
2398
- openingStatus: z.ZodEnum<{
2399
- OPEN: "OPEN";
2400
- CLOSED: "CLOSED";
2401
- }>;
2402
- nextSyncMenuScheduledAt: z.ZodNullable<z.ZodString>;
2403
- currentMenuVersion: z.ZodType<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id/menu_versions/:menuVersionId"> | null, unknown, z.core.$ZodTypeInternals<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id/menu_versions/:menuVersionId"> | null, unknown>>;
2404
- createdAt: z.ZodString;
2405
- updatedAt: z.ZodString;
2406
- }, z.core.$strip>;
1812
+ pointOfSale: z.ZodType<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id">, unknown, z.core.$ZodTypeInternals<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id">, unknown>>;
2407
1813
  service: z.ZodLiteral<"glovo">;
2408
1814
  data: z.ZodObject<{
2409
1815
  storeId: z.ZodString;
@@ -2441,38 +1847,11 @@ declare const createIntegrationActivationRequestResponseSchema: z.ZodDiscriminat
2441
1847
  request_sent_partner: "request_sent_partner";
2442
1848
  failed: "failed";
2443
1849
  }>;
2444
- message: z.ZodString;
1850
+ message: z.ZodNullable<z.ZodString>;
2445
1851
  updatedAt: z.ZodString;
2446
1852
  }, z.core.$strip>>>>;
2447
1853
  }, z.core.$strip>, z.ZodObject<{
2448
- pointOfSale: z.ZodObject<{
2449
- id: z.ZodString;
2450
- name: z.ZodString;
2451
- address: z.ZodObject<{
2452
- line1: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2453
- line2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2454
- city: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2455
- region: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2456
- postalCode: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2457
- country: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2458
- }, z.core.$strip>;
2459
- timezone: z.ZodString;
2460
- location: z.ZodObject<{
2461
- latitude: z.ZodNumber;
2462
- longitude: z.ZodNumber;
2463
- }, z.core.$strip>;
2464
- capabilities: z.ZodArray<z.ZodEnum<{
2465
- DELIVERY_OPTIMIZATION: "DELIVERY_OPTIMIZATION";
2466
- }>>;
2467
- openingStatus: z.ZodEnum<{
2468
- OPEN: "OPEN";
2469
- CLOSED: "CLOSED";
2470
- }>;
2471
- nextSyncMenuScheduledAt: z.ZodNullable<z.ZodString>;
2472
- currentMenuVersion: z.ZodType<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id/menu_versions/:menuVersionId"> | null, unknown, z.core.$ZodTypeInternals<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id/menu_versions/:menuVersionId"> | null, unknown>>;
2473
- createdAt: z.ZodString;
2474
- updatedAt: z.ZodString;
2475
- }, z.core.$strip>;
1854
+ pointOfSale: z.ZodType<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id">, unknown, z.core.$ZodTypeInternals<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id">, unknown>>;
2476
1855
  service: z.ZodLiteral<"justeat">;
2477
1856
  data: z.ZodObject<{
2478
1857
  restaurantId: z.ZodString;
@@ -2510,38 +1889,11 @@ declare const createIntegrationActivationRequestResponseSchema: z.ZodDiscriminat
2510
1889
  request_sent_partner: "request_sent_partner";
2511
1890
  failed: "failed";
2512
1891
  }>;
2513
- message: z.ZodString;
1892
+ message: z.ZodNullable<z.ZodString>;
2514
1893
  updatedAt: z.ZodString;
2515
1894
  }, z.core.$strip>>>>;
2516
1895
  }, z.core.$strip>, z.ZodObject<{
2517
- pointOfSale: z.ZodObject<{
2518
- id: z.ZodString;
2519
- name: z.ZodString;
2520
- address: z.ZodObject<{
2521
- line1: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2522
- line2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2523
- city: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2524
- region: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2525
- postalCode: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2526
- country: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2527
- }, z.core.$strip>;
2528
- timezone: z.ZodString;
2529
- location: z.ZodObject<{
2530
- latitude: z.ZodNumber;
2531
- longitude: z.ZodNumber;
2532
- }, z.core.$strip>;
2533
- capabilities: z.ZodArray<z.ZodEnum<{
2534
- DELIVERY_OPTIMIZATION: "DELIVERY_OPTIMIZATION";
2535
- }>>;
2536
- openingStatus: z.ZodEnum<{
2537
- OPEN: "OPEN";
2538
- CLOSED: "CLOSED";
2539
- }>;
2540
- nextSyncMenuScheduledAt: z.ZodNullable<z.ZodString>;
2541
- currentMenuVersion: z.ZodType<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id/menu_versions/:menuVersionId"> | null, unknown, z.core.$ZodTypeInternals<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id/menu_versions/:menuVersionId"> | null, unknown>>;
2542
- createdAt: z.ZodString;
2543
- updatedAt: z.ZodString;
2544
- }, z.core.$strip>;
1896
+ pointOfSale: z.ZodType<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id">, unknown, z.core.$ZodTypeInternals<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id">, unknown>>;
2545
1897
  service: z.ZodLiteral<"cassa_in_cloud">;
2546
1898
  data: z.ZodObject<{
2547
1899
  apiKey: z.ZodString;
@@ -2584,7 +1936,7 @@ declare const createIntegrationActivationRequestResponseSchema: z.ZodDiscriminat
2584
1936
  request_sent_partner: "request_sent_partner";
2585
1937
  failed: "failed";
2586
1938
  }>;
2587
- message: z.ZodString;
1939
+ message: z.ZodNullable<z.ZodString>;
2588
1940
  updatedAt: z.ZodString;
2589
1941
  }, z.core.$strip>>>>;
2590
1942
  }, z.core.$strip>]>;
@@ -2649,34 +2001,7 @@ declare class CreateIntegrationActivationRequest extends AbstractApiRequest<type
2649
2001
  pointOfSale: z.ZodType<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id">, unknown, z.core.$ZodTypeInternals<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id">, unknown>>;
2650
2002
  }, z.core.$strip>]>;
2651
2003
  readonly outputSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
2652
- pointOfSale: z.ZodObject<{
2653
- id: z.ZodString;
2654
- name: z.ZodString;
2655
- address: z.ZodObject<{
2656
- line1: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2657
- line2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2658
- city: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2659
- region: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2660
- postalCode: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2661
- country: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2662
- }, z.core.$strip>;
2663
- timezone: z.ZodString;
2664
- location: z.ZodObject<{
2665
- latitude: z.ZodNumber;
2666
- longitude: z.ZodNumber;
2667
- }, z.core.$strip>;
2668
- capabilities: z.ZodArray<z.ZodEnum<{
2669
- DELIVERY_OPTIMIZATION: "DELIVERY_OPTIMIZATION";
2670
- }>>;
2671
- openingStatus: z.ZodEnum<{
2672
- OPEN: "OPEN";
2673
- CLOSED: "CLOSED";
2674
- }>;
2675
- nextSyncMenuScheduledAt: z.ZodNullable<z.ZodString>;
2676
- currentMenuVersion: z.ZodType<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id/menu_versions/:menuVersionId"> | null, unknown, z.core.$ZodTypeInternals<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id/menu_versions/:menuVersionId"> | null, unknown>>;
2677
- createdAt: z.ZodString;
2678
- updatedAt: z.ZodString;
2679
- }, z.core.$strip>;
2004
+ pointOfSale: z.ZodType<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id">, unknown, z.core.$ZodTypeInternals<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id">, unknown>>;
2680
2005
  service: z.ZodLiteral<"deliveroo">;
2681
2006
  data: z.ZodObject<{
2682
2007
  brandId: z.ZodString;
@@ -2715,38 +2040,11 @@ declare class CreateIntegrationActivationRequest extends AbstractApiRequest<type
2715
2040
  request_sent_partner: "request_sent_partner";
2716
2041
  failed: "failed";
2717
2042
  }>;
2718
- message: z.ZodString;
2043
+ message: z.ZodNullable<z.ZodString>;
2719
2044
  updatedAt: z.ZodString;
2720
2045
  }, z.core.$strip>>>>;
2721
2046
  }, z.core.$strip>, z.ZodObject<{
2722
- pointOfSale: z.ZodObject<{
2723
- id: z.ZodString;
2724
- name: z.ZodString;
2725
- address: z.ZodObject<{
2726
- line1: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2727
- line2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2728
- city: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2729
- region: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2730
- postalCode: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2731
- country: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2732
- }, z.core.$strip>;
2733
- timezone: z.ZodString;
2734
- location: z.ZodObject<{
2735
- latitude: z.ZodNumber;
2736
- longitude: z.ZodNumber;
2737
- }, z.core.$strip>;
2738
- capabilities: z.ZodArray<z.ZodEnum<{
2739
- DELIVERY_OPTIMIZATION: "DELIVERY_OPTIMIZATION";
2740
- }>>;
2741
- openingStatus: z.ZodEnum<{
2742
- OPEN: "OPEN";
2743
- CLOSED: "CLOSED";
2744
- }>;
2745
- nextSyncMenuScheduledAt: z.ZodNullable<z.ZodString>;
2746
- currentMenuVersion: z.ZodType<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id/menu_versions/:menuVersionId"> | null, unknown, z.core.$ZodTypeInternals<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id/menu_versions/:menuVersionId"> | null, unknown>>;
2747
- createdAt: z.ZodString;
2748
- updatedAt: z.ZodString;
2749
- }, z.core.$strip>;
2047
+ pointOfSale: z.ZodType<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id">, unknown, z.core.$ZodTypeInternals<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id">, unknown>>;
2750
2048
  service: z.ZodLiteral<"glovo">;
2751
2049
  data: z.ZodObject<{
2752
2050
  storeId: z.ZodString;
@@ -2784,38 +2082,11 @@ declare class CreateIntegrationActivationRequest extends AbstractApiRequest<type
2784
2082
  request_sent_partner: "request_sent_partner";
2785
2083
  failed: "failed";
2786
2084
  }>;
2787
- message: z.ZodString;
2085
+ message: z.ZodNullable<z.ZodString>;
2788
2086
  updatedAt: z.ZodString;
2789
2087
  }, z.core.$strip>>>>;
2790
2088
  }, z.core.$strip>, z.ZodObject<{
2791
- pointOfSale: z.ZodObject<{
2792
- id: z.ZodString;
2793
- name: z.ZodString;
2794
- address: z.ZodObject<{
2795
- line1: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2796
- line2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2797
- city: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2798
- region: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2799
- postalCode: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2800
- country: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2801
- }, z.core.$strip>;
2802
- timezone: z.ZodString;
2803
- location: z.ZodObject<{
2804
- latitude: z.ZodNumber;
2805
- longitude: z.ZodNumber;
2806
- }, z.core.$strip>;
2807
- capabilities: z.ZodArray<z.ZodEnum<{
2808
- DELIVERY_OPTIMIZATION: "DELIVERY_OPTIMIZATION";
2809
- }>>;
2810
- openingStatus: z.ZodEnum<{
2811
- OPEN: "OPEN";
2812
- CLOSED: "CLOSED";
2813
- }>;
2814
- nextSyncMenuScheduledAt: z.ZodNullable<z.ZodString>;
2815
- currentMenuVersion: z.ZodType<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id/menu_versions/:menuVersionId"> | null, unknown, z.core.$ZodTypeInternals<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id/menu_versions/:menuVersionId"> | null, unknown>>;
2816
- createdAt: z.ZodString;
2817
- updatedAt: z.ZodString;
2818
- }, z.core.$strip>;
2089
+ pointOfSale: z.ZodType<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id">, unknown, z.core.$ZodTypeInternals<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id">, unknown>>;
2819
2090
  service: z.ZodLiteral<"justeat">;
2820
2091
  data: z.ZodObject<{
2821
2092
  restaurantId: z.ZodString;
@@ -2853,38 +2124,11 @@ declare class CreateIntegrationActivationRequest extends AbstractApiRequest<type
2853
2124
  request_sent_partner: "request_sent_partner";
2854
2125
  failed: "failed";
2855
2126
  }>;
2856
- message: z.ZodString;
2127
+ message: z.ZodNullable<z.ZodString>;
2857
2128
  updatedAt: z.ZodString;
2858
2129
  }, z.core.$strip>>>>;
2859
2130
  }, z.core.$strip>, z.ZodObject<{
2860
- pointOfSale: z.ZodObject<{
2861
- id: z.ZodString;
2862
- name: z.ZodString;
2863
- address: z.ZodObject<{
2864
- line1: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2865
- line2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2866
- city: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2867
- region: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2868
- postalCode: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2869
- country: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2870
- }, z.core.$strip>;
2871
- timezone: z.ZodString;
2872
- location: z.ZodObject<{
2873
- latitude: z.ZodNumber;
2874
- longitude: z.ZodNumber;
2875
- }, z.core.$strip>;
2876
- capabilities: z.ZodArray<z.ZodEnum<{
2877
- DELIVERY_OPTIMIZATION: "DELIVERY_OPTIMIZATION";
2878
- }>>;
2879
- openingStatus: z.ZodEnum<{
2880
- OPEN: "OPEN";
2881
- CLOSED: "CLOSED";
2882
- }>;
2883
- nextSyncMenuScheduledAt: z.ZodNullable<z.ZodString>;
2884
- currentMenuVersion: z.ZodType<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id/menu_versions/:menuVersionId"> | null, unknown, z.core.$ZodTypeInternals<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id/menu_versions/:menuVersionId"> | null, unknown>>;
2885
- createdAt: z.ZodString;
2886
- updatedAt: z.ZodString;
2887
- }, z.core.$strip>;
2131
+ pointOfSale: z.ZodType<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id">, unknown, z.core.$ZodTypeInternals<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id">, unknown>>;
2888
2132
  service: z.ZodLiteral<"cassa_in_cloud">;
2889
2133
  data: z.ZodObject<{
2890
2134
  apiKey: z.ZodString;
@@ -2927,7 +2171,7 @@ declare class CreateIntegrationActivationRequest extends AbstractApiRequest<type
2927
2171
  request_sent_partner: "request_sent_partner";
2928
2172
  failed: "failed";
2929
2173
  }>;
2930
- message: z.ZodString;
2174
+ message: z.ZodNullable<z.ZodString>;
2931
2175
  updatedAt: z.ZodString;
2932
2176
  }, z.core.$strip>>>>;
2933
2177
  }, z.core.$strip>]>;
@@ -2955,34 +2199,7 @@ declare class DeleteIntegrationActivationRequest extends AbstractApiRequest<type
2955
2199
  declare const getIntegrationActivationRequestDetailsInputSchema: z.ZodUndefined;
2956
2200
  type GetIntegrationActivationRequestDetailsInput = z.infer<typeof getIntegrationActivationRequestDetailsInputSchema>;
2957
2201
  declare const getIntegrationActivationRequestDetailsResponseSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
2958
- pointOfSale: z.ZodObject<{
2959
- id: z.ZodString;
2960
- name: z.ZodString;
2961
- address: z.ZodObject<{
2962
- line1: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2963
- line2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2964
- city: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2965
- region: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2966
- postalCode: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2967
- country: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2968
- }, z.core.$strip>;
2969
- timezone: z.ZodString;
2970
- location: z.ZodObject<{
2971
- latitude: z.ZodNumber;
2972
- longitude: z.ZodNumber;
2973
- }, z.core.$strip>;
2974
- capabilities: z.ZodArray<z.ZodEnum<{
2975
- DELIVERY_OPTIMIZATION: "DELIVERY_OPTIMIZATION";
2976
- }>>;
2977
- openingStatus: z.ZodEnum<{
2978
- OPEN: "OPEN";
2979
- CLOSED: "CLOSED";
2980
- }>;
2981
- nextSyncMenuScheduledAt: z.ZodNullable<z.ZodString>;
2982
- currentMenuVersion: z.ZodType<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id/menu_versions/:menuVersionId"> | null, unknown, z.core.$ZodTypeInternals<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id/menu_versions/:menuVersionId"> | null, unknown>>;
2983
- createdAt: z.ZodString;
2984
- updatedAt: z.ZodString;
2985
- }, z.core.$strip>;
2202
+ pointOfSale: z.ZodType<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id">, unknown, z.core.$ZodTypeInternals<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id">, unknown>>;
2986
2203
  service: z.ZodLiteral<"deliveroo">;
2987
2204
  data: z.ZodObject<{
2988
2205
  brandId: z.ZodString;
@@ -3021,38 +2238,11 @@ declare const getIntegrationActivationRequestDetailsResponseSchema: z.ZodDiscrim
3021
2238
  request_sent_partner: "request_sent_partner";
3022
2239
  failed: "failed";
3023
2240
  }>;
3024
- message: z.ZodString;
2241
+ message: z.ZodNullable<z.ZodString>;
3025
2242
  updatedAt: z.ZodString;
3026
2243
  }, z.core.$strip>>>>;
3027
2244
  }, z.core.$strip>, z.ZodObject<{
3028
- pointOfSale: z.ZodObject<{
3029
- id: z.ZodString;
3030
- name: z.ZodString;
3031
- address: z.ZodObject<{
3032
- line1: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3033
- line2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3034
- city: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3035
- region: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3036
- postalCode: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3037
- country: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3038
- }, z.core.$strip>;
3039
- timezone: z.ZodString;
3040
- location: z.ZodObject<{
3041
- latitude: z.ZodNumber;
3042
- longitude: z.ZodNumber;
3043
- }, z.core.$strip>;
3044
- capabilities: z.ZodArray<z.ZodEnum<{
3045
- DELIVERY_OPTIMIZATION: "DELIVERY_OPTIMIZATION";
3046
- }>>;
3047
- openingStatus: z.ZodEnum<{
3048
- OPEN: "OPEN";
3049
- CLOSED: "CLOSED";
3050
- }>;
3051
- nextSyncMenuScheduledAt: z.ZodNullable<z.ZodString>;
3052
- currentMenuVersion: z.ZodType<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id/menu_versions/:menuVersionId"> | null, unknown, z.core.$ZodTypeInternals<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id/menu_versions/:menuVersionId"> | null, unknown>>;
3053
- createdAt: z.ZodString;
3054
- updatedAt: z.ZodString;
3055
- }, z.core.$strip>;
2245
+ pointOfSale: z.ZodType<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id">, unknown, z.core.$ZodTypeInternals<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id">, unknown>>;
3056
2246
  service: z.ZodLiteral<"glovo">;
3057
2247
  data: z.ZodObject<{
3058
2248
  storeId: z.ZodString;
@@ -3090,38 +2280,11 @@ declare const getIntegrationActivationRequestDetailsResponseSchema: z.ZodDiscrim
3090
2280
  request_sent_partner: "request_sent_partner";
3091
2281
  failed: "failed";
3092
2282
  }>;
3093
- message: z.ZodString;
2283
+ message: z.ZodNullable<z.ZodString>;
3094
2284
  updatedAt: z.ZodString;
3095
2285
  }, z.core.$strip>>>>;
3096
2286
  }, z.core.$strip>, z.ZodObject<{
3097
- pointOfSale: z.ZodObject<{
3098
- id: z.ZodString;
3099
- name: z.ZodString;
3100
- address: z.ZodObject<{
3101
- line1: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3102
- line2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3103
- city: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3104
- region: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3105
- postalCode: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3106
- country: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3107
- }, z.core.$strip>;
3108
- timezone: z.ZodString;
3109
- location: z.ZodObject<{
3110
- latitude: z.ZodNumber;
3111
- longitude: z.ZodNumber;
3112
- }, z.core.$strip>;
3113
- capabilities: z.ZodArray<z.ZodEnum<{
3114
- DELIVERY_OPTIMIZATION: "DELIVERY_OPTIMIZATION";
3115
- }>>;
3116
- openingStatus: z.ZodEnum<{
3117
- OPEN: "OPEN";
3118
- CLOSED: "CLOSED";
3119
- }>;
3120
- nextSyncMenuScheduledAt: z.ZodNullable<z.ZodString>;
3121
- currentMenuVersion: z.ZodType<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id/menu_versions/:menuVersionId"> | null, unknown, z.core.$ZodTypeInternals<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id/menu_versions/:menuVersionId"> | null, unknown>>;
3122
- createdAt: z.ZodString;
3123
- updatedAt: z.ZodString;
3124
- }, z.core.$strip>;
2287
+ pointOfSale: z.ZodType<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id">, unknown, z.core.$ZodTypeInternals<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id">, unknown>>;
3125
2288
  service: z.ZodLiteral<"justeat">;
3126
2289
  data: z.ZodObject<{
3127
2290
  restaurantId: z.ZodString;
@@ -3159,38 +2322,11 @@ declare const getIntegrationActivationRequestDetailsResponseSchema: z.ZodDiscrim
3159
2322
  request_sent_partner: "request_sent_partner";
3160
2323
  failed: "failed";
3161
2324
  }>;
3162
- message: z.ZodString;
2325
+ message: z.ZodNullable<z.ZodString>;
3163
2326
  updatedAt: z.ZodString;
3164
2327
  }, z.core.$strip>>>>;
3165
2328
  }, z.core.$strip>, z.ZodObject<{
3166
- pointOfSale: z.ZodObject<{
3167
- id: z.ZodString;
3168
- name: z.ZodString;
3169
- address: z.ZodObject<{
3170
- line1: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3171
- line2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3172
- city: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3173
- region: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3174
- postalCode: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3175
- country: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3176
- }, z.core.$strip>;
3177
- timezone: z.ZodString;
3178
- location: z.ZodObject<{
3179
- latitude: z.ZodNumber;
3180
- longitude: z.ZodNumber;
3181
- }, z.core.$strip>;
3182
- capabilities: z.ZodArray<z.ZodEnum<{
3183
- DELIVERY_OPTIMIZATION: "DELIVERY_OPTIMIZATION";
3184
- }>>;
3185
- openingStatus: z.ZodEnum<{
3186
- OPEN: "OPEN";
3187
- CLOSED: "CLOSED";
3188
- }>;
3189
- nextSyncMenuScheduledAt: z.ZodNullable<z.ZodString>;
3190
- currentMenuVersion: z.ZodType<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id/menu_versions/:menuVersionId"> | null, unknown, z.core.$ZodTypeInternals<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id/menu_versions/:menuVersionId"> | null, unknown>>;
3191
- createdAt: z.ZodString;
3192
- updatedAt: z.ZodString;
3193
- }, z.core.$strip>;
2329
+ pointOfSale: z.ZodType<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id">, unknown, z.core.$ZodTypeInternals<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id">, unknown>>;
3194
2330
  service: z.ZodLiteral<"cassa_in_cloud">;
3195
2331
  data: z.ZodObject<{
3196
2332
  apiKey: z.ZodString;
@@ -3233,7 +2369,7 @@ declare const getIntegrationActivationRequestDetailsResponseSchema: z.ZodDiscrim
3233
2369
  request_sent_partner: "request_sent_partner";
3234
2370
  failed: "failed";
3235
2371
  }>;
3236
- message: z.ZodString;
2372
+ message: z.ZodNullable<z.ZodString>;
3237
2373
  updatedAt: z.ZodString;
3238
2374
  }, z.core.$strip>>>>;
3239
2375
  }, z.core.$strip>]>;
@@ -3244,34 +2380,7 @@ declare class GetIntegrationActivationRequestDetails extends AbstractApiRequest<
3244
2380
  readonly accept = "application/json";
3245
2381
  readonly inputSchema: z.ZodUndefined;
3246
2382
  readonly outputSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
3247
- pointOfSale: z.ZodObject<{
3248
- id: z.ZodString;
3249
- name: z.ZodString;
3250
- address: z.ZodObject<{
3251
- line1: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3252
- line2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3253
- city: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3254
- region: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3255
- postalCode: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3256
- country: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3257
- }, z.core.$strip>;
3258
- timezone: z.ZodString;
3259
- location: z.ZodObject<{
3260
- latitude: z.ZodNumber;
3261
- longitude: z.ZodNumber;
3262
- }, z.core.$strip>;
3263
- capabilities: z.ZodArray<z.ZodEnum<{
3264
- DELIVERY_OPTIMIZATION: "DELIVERY_OPTIMIZATION";
3265
- }>>;
3266
- openingStatus: z.ZodEnum<{
3267
- OPEN: "OPEN";
3268
- CLOSED: "CLOSED";
3269
- }>;
3270
- nextSyncMenuScheduledAt: z.ZodNullable<z.ZodString>;
3271
- currentMenuVersion: z.ZodType<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id/menu_versions/:menuVersionId"> | null, unknown, z.core.$ZodTypeInternals<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id/menu_versions/:menuVersionId"> | null, unknown>>;
3272
- createdAt: z.ZodString;
3273
- updatedAt: z.ZodString;
3274
- }, z.core.$strip>;
2383
+ pointOfSale: z.ZodType<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id">, unknown, z.core.$ZodTypeInternals<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id">, unknown>>;
3275
2384
  service: z.ZodLiteral<"deliveroo">;
3276
2385
  data: z.ZodObject<{
3277
2386
  brandId: z.ZodString;
@@ -3310,38 +2419,11 @@ declare class GetIntegrationActivationRequestDetails extends AbstractApiRequest<
3310
2419
  request_sent_partner: "request_sent_partner";
3311
2420
  failed: "failed";
3312
2421
  }>;
3313
- message: z.ZodString;
2422
+ message: z.ZodNullable<z.ZodString>;
3314
2423
  updatedAt: z.ZodString;
3315
2424
  }, z.core.$strip>>>>;
3316
2425
  }, z.core.$strip>, z.ZodObject<{
3317
- pointOfSale: z.ZodObject<{
3318
- id: z.ZodString;
3319
- name: z.ZodString;
3320
- address: z.ZodObject<{
3321
- line1: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3322
- line2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3323
- city: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3324
- region: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3325
- postalCode: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3326
- country: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3327
- }, z.core.$strip>;
3328
- timezone: z.ZodString;
3329
- location: z.ZodObject<{
3330
- latitude: z.ZodNumber;
3331
- longitude: z.ZodNumber;
3332
- }, z.core.$strip>;
3333
- capabilities: z.ZodArray<z.ZodEnum<{
3334
- DELIVERY_OPTIMIZATION: "DELIVERY_OPTIMIZATION";
3335
- }>>;
3336
- openingStatus: z.ZodEnum<{
3337
- OPEN: "OPEN";
3338
- CLOSED: "CLOSED";
3339
- }>;
3340
- nextSyncMenuScheduledAt: z.ZodNullable<z.ZodString>;
3341
- currentMenuVersion: z.ZodType<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id/menu_versions/:menuVersionId"> | null, unknown, z.core.$ZodTypeInternals<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id/menu_versions/:menuVersionId"> | null, unknown>>;
3342
- createdAt: z.ZodString;
3343
- updatedAt: z.ZodString;
3344
- }, z.core.$strip>;
2426
+ pointOfSale: z.ZodType<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id">, unknown, z.core.$ZodTypeInternals<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id">, unknown>>;
3345
2427
  service: z.ZodLiteral<"glovo">;
3346
2428
  data: z.ZodObject<{
3347
2429
  storeId: z.ZodString;
@@ -3379,38 +2461,11 @@ declare class GetIntegrationActivationRequestDetails extends AbstractApiRequest<
3379
2461
  request_sent_partner: "request_sent_partner";
3380
2462
  failed: "failed";
3381
2463
  }>;
3382
- message: z.ZodString;
2464
+ message: z.ZodNullable<z.ZodString>;
3383
2465
  updatedAt: z.ZodString;
3384
2466
  }, z.core.$strip>>>>;
3385
2467
  }, z.core.$strip>, z.ZodObject<{
3386
- pointOfSale: z.ZodObject<{
3387
- id: z.ZodString;
3388
- name: z.ZodString;
3389
- address: z.ZodObject<{
3390
- line1: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3391
- line2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3392
- city: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3393
- region: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3394
- postalCode: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3395
- country: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3396
- }, z.core.$strip>;
3397
- timezone: z.ZodString;
3398
- location: z.ZodObject<{
3399
- latitude: z.ZodNumber;
3400
- longitude: z.ZodNumber;
3401
- }, z.core.$strip>;
3402
- capabilities: z.ZodArray<z.ZodEnum<{
3403
- DELIVERY_OPTIMIZATION: "DELIVERY_OPTIMIZATION";
3404
- }>>;
3405
- openingStatus: z.ZodEnum<{
3406
- OPEN: "OPEN";
3407
- CLOSED: "CLOSED";
3408
- }>;
3409
- nextSyncMenuScheduledAt: z.ZodNullable<z.ZodString>;
3410
- currentMenuVersion: z.ZodType<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id/menu_versions/:menuVersionId"> | null, unknown, z.core.$ZodTypeInternals<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id/menu_versions/:menuVersionId"> | null, unknown>>;
3411
- createdAt: z.ZodString;
3412
- updatedAt: z.ZodString;
3413
- }, z.core.$strip>;
2468
+ pointOfSale: z.ZodType<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id">, unknown, z.core.$ZodTypeInternals<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id">, unknown>>;
3414
2469
  service: z.ZodLiteral<"justeat">;
3415
2470
  data: z.ZodObject<{
3416
2471
  restaurantId: z.ZodString;
@@ -3448,38 +2503,11 @@ declare class GetIntegrationActivationRequestDetails extends AbstractApiRequest<
3448
2503
  request_sent_partner: "request_sent_partner";
3449
2504
  failed: "failed";
3450
2505
  }>;
3451
- message: z.ZodString;
2506
+ message: z.ZodNullable<z.ZodString>;
3452
2507
  updatedAt: z.ZodString;
3453
2508
  }, z.core.$strip>>>>;
3454
2509
  }, z.core.$strip>, z.ZodObject<{
3455
- pointOfSale: z.ZodObject<{
3456
- id: z.ZodString;
3457
- name: z.ZodString;
3458
- address: z.ZodObject<{
3459
- line1: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3460
- line2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3461
- city: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3462
- region: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3463
- postalCode: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3464
- country: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3465
- }, z.core.$strip>;
3466
- timezone: z.ZodString;
3467
- location: z.ZodObject<{
3468
- latitude: z.ZodNumber;
3469
- longitude: z.ZodNumber;
3470
- }, z.core.$strip>;
3471
- capabilities: z.ZodArray<z.ZodEnum<{
3472
- DELIVERY_OPTIMIZATION: "DELIVERY_OPTIMIZATION";
3473
- }>>;
3474
- openingStatus: z.ZodEnum<{
3475
- OPEN: "OPEN";
3476
- CLOSED: "CLOSED";
3477
- }>;
3478
- nextSyncMenuScheduledAt: z.ZodNullable<z.ZodString>;
3479
- currentMenuVersion: z.ZodType<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id/menu_versions/:menuVersionId"> | null, unknown, z.core.$ZodTypeInternals<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id/menu_versions/:menuVersionId"> | null, unknown>>;
3480
- createdAt: z.ZodString;
3481
- updatedAt: z.ZodString;
3482
- }, z.core.$strip>;
2510
+ pointOfSale: z.ZodType<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id">, unknown, z.core.$ZodTypeInternals<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id">, unknown>>;
3483
2511
  service: z.ZodLiteral<"cassa_in_cloud">;
3484
2512
  data: z.ZodObject<{
3485
2513
  apiKey: z.ZodString;
@@ -3522,7 +2550,7 @@ declare class GetIntegrationActivationRequestDetails extends AbstractApiRequest<
3522
2550
  request_sent_partner: "request_sent_partner";
3523
2551
  failed: "failed";
3524
2552
  }>;
3525
- message: z.ZodString;
2553
+ message: z.ZodNullable<z.ZodString>;
3526
2554
  updatedAt: z.ZodString;
3527
2555
  }, z.core.$strip>>>>;
3528
2556
  }, z.core.$strip>]>;
@@ -3644,7 +2672,7 @@ declare const getIntegrationActivationRequestsResponseSchema: z.ZodObject<{
3644
2672
  request_sent_partner: "request_sent_partner";
3645
2673
  failed: "failed";
3646
2674
  }>;
3647
- message: z.ZodString;
2675
+ message: z.ZodNullable<z.ZodString>;
3648
2676
  updatedAt: z.ZodString;
3649
2677
  }, z.core.$strip>>>>;
3650
2678
  }, z.core.$strip>, z.ZodObject<{
@@ -3685,7 +2713,7 @@ declare const getIntegrationActivationRequestsResponseSchema: z.ZodObject<{
3685
2713
  request_sent_partner: "request_sent_partner";
3686
2714
  failed: "failed";
3687
2715
  }>;
3688
- message: z.ZodString;
2716
+ message: z.ZodNullable<z.ZodString>;
3689
2717
  updatedAt: z.ZodString;
3690
2718
  }, z.core.$strip>>>>;
3691
2719
  }, z.core.$strip>, z.ZodObject<{
@@ -3726,7 +2754,7 @@ declare const getIntegrationActivationRequestsResponseSchema: z.ZodObject<{
3726
2754
  request_sent_partner: "request_sent_partner";
3727
2755
  failed: "failed";
3728
2756
  }>;
3729
- message: z.ZodString;
2757
+ message: z.ZodNullable<z.ZodString>;
3730
2758
  updatedAt: z.ZodString;
3731
2759
  }, z.core.$strip>>>>;
3732
2760
  }, z.core.$strip>, z.ZodObject<{
@@ -3772,7 +2800,7 @@ declare const getIntegrationActivationRequestsResponseSchema: z.ZodObject<{
3772
2800
  request_sent_partner: "request_sent_partner";
3773
2801
  failed: "failed";
3774
2802
  }>;
3775
- message: z.ZodString;
2803
+ message: z.ZodNullable<z.ZodString>;
3776
2804
  updatedAt: z.ZodString;
3777
2805
  }, z.core.$strip>>>>;
3778
2806
  }, z.core.$strip>]>>;
@@ -3831,7 +2859,7 @@ declare class GetIntegrationActivationRequests extends AbstractApiRequest<typeof
3831
2859
  request_sent_partner: "request_sent_partner";
3832
2860
  failed: "failed";
3833
2861
  }>;
3834
- message: z.ZodString;
2862
+ message: z.ZodNullable<z.ZodString>;
3835
2863
  updatedAt: z.ZodString;
3836
2864
  }, z.core.$strip>>>>;
3837
2865
  }, z.core.$strip>, z.ZodObject<{
@@ -3872,7 +2900,7 @@ declare class GetIntegrationActivationRequests extends AbstractApiRequest<typeof
3872
2900
  request_sent_partner: "request_sent_partner";
3873
2901
  failed: "failed";
3874
2902
  }>;
3875
- message: z.ZodString;
2903
+ message: z.ZodNullable<z.ZodString>;
3876
2904
  updatedAt: z.ZodString;
3877
2905
  }, z.core.$strip>>>>;
3878
2906
  }, z.core.$strip>, z.ZodObject<{
@@ -3913,7 +2941,7 @@ declare class GetIntegrationActivationRequests extends AbstractApiRequest<typeof
3913
2941
  request_sent_partner: "request_sent_partner";
3914
2942
  failed: "failed";
3915
2943
  }>;
3916
- message: z.ZodString;
2944
+ message: z.ZodNullable<z.ZodString>;
3917
2945
  updatedAt: z.ZodString;
3918
2946
  }, z.core.$strip>>>>;
3919
2947
  }, z.core.$strip>, z.ZodObject<{
@@ -3959,7 +2987,7 @@ declare class GetIntegrationActivationRequests extends AbstractApiRequest<typeof
3959
2987
  request_sent_partner: "request_sent_partner";
3960
2988
  failed: "failed";
3961
2989
  }>;
3962
- message: z.ZodString;
2990
+ message: z.ZodNullable<z.ZodString>;
3963
2991
  updatedAt: z.ZodString;
3964
2992
  }, z.core.$strip>>>>;
3965
2993
  }, z.core.$strip>]>>;
@@ -4158,7 +3186,7 @@ declare const getIntegrationActivationRequestsFromPointOfSaleResponseSchema: z.Z
4158
3186
  request_sent_partner: "request_sent_partner";
4159
3187
  failed: "failed";
4160
3188
  }>;
4161
- message: z.ZodString;
3189
+ message: z.ZodNullable<z.ZodString>;
4162
3190
  updatedAt: z.ZodString;
4163
3191
  }, z.core.$strip>>>>;
4164
3192
  }, z.core.$strip>, z.ZodObject<{
@@ -4199,7 +3227,7 @@ declare const getIntegrationActivationRequestsFromPointOfSaleResponseSchema: z.Z
4199
3227
  request_sent_partner: "request_sent_partner";
4200
3228
  failed: "failed";
4201
3229
  }>;
4202
- message: z.ZodString;
3230
+ message: z.ZodNullable<z.ZodString>;
4203
3231
  updatedAt: z.ZodString;
4204
3232
  }, z.core.$strip>>>>;
4205
3233
  }, z.core.$strip>, z.ZodObject<{
@@ -4240,7 +3268,7 @@ declare const getIntegrationActivationRequestsFromPointOfSaleResponseSchema: z.Z
4240
3268
  request_sent_partner: "request_sent_partner";
4241
3269
  failed: "failed";
4242
3270
  }>;
4243
- message: z.ZodString;
3271
+ message: z.ZodNullable<z.ZodString>;
4244
3272
  updatedAt: z.ZodString;
4245
3273
  }, z.core.$strip>>>>;
4246
3274
  }, z.core.$strip>, z.ZodObject<{
@@ -4286,7 +3314,7 @@ declare const getIntegrationActivationRequestsFromPointOfSaleResponseSchema: z.Z
4286
3314
  request_sent_partner: "request_sent_partner";
4287
3315
  failed: "failed";
4288
3316
  }>;
4289
- message: z.ZodString;
3317
+ message: z.ZodNullable<z.ZodString>;
4290
3318
  updatedAt: z.ZodString;
4291
3319
  }, z.core.$strip>>>>;
4292
3320
  }, z.core.$strip>]>>;
@@ -4335,7 +3363,7 @@ declare class GetIntegrationActivationRequestsFromPointOfSale extends AbstractAp
4335
3363
  request_sent_partner: "request_sent_partner";
4336
3364
  failed: "failed";
4337
3365
  }>;
4338
- message: z.ZodString;
3366
+ message: z.ZodNullable<z.ZodString>;
4339
3367
  updatedAt: z.ZodString;
4340
3368
  }, z.core.$strip>>>>;
4341
3369
  }, z.core.$strip>, z.ZodObject<{
@@ -4376,7 +3404,7 @@ declare class GetIntegrationActivationRequestsFromPointOfSale extends AbstractAp
4376
3404
  request_sent_partner: "request_sent_partner";
4377
3405
  failed: "failed";
4378
3406
  }>;
4379
- message: z.ZodString;
3407
+ message: z.ZodNullable<z.ZodString>;
4380
3408
  updatedAt: z.ZodString;
4381
3409
  }, z.core.$strip>>>>;
4382
3410
  }, z.core.$strip>, z.ZodObject<{
@@ -4417,7 +3445,7 @@ declare class GetIntegrationActivationRequestsFromPointOfSale extends AbstractAp
4417
3445
  request_sent_partner: "request_sent_partner";
4418
3446
  failed: "failed";
4419
3447
  }>;
4420
- message: z.ZodString;
3448
+ message: z.ZodNullable<z.ZodString>;
4421
3449
  updatedAt: z.ZodString;
4422
3450
  }, z.core.$strip>>>>;
4423
3451
  }, z.core.$strip>, z.ZodObject<{
@@ -4463,7 +3491,7 @@ declare class GetIntegrationActivationRequestsFromPointOfSale extends AbstractAp
4463
3491
  request_sent_partner: "request_sent_partner";
4464
3492
  failed: "failed";
4465
3493
  }>;
4466
- message: z.ZodString;
3494
+ message: z.ZodNullable<z.ZodString>;
4467
3495
  updatedAt: z.ZodString;
4468
3496
  }, z.core.$strip>>>>;
4469
3497
  }, z.core.$strip>]>>;
@@ -4568,34 +3596,7 @@ declare const respondIntegrationActivationRequestInputSchema: z.ZodObject<{
4568
3596
  }, z.core.$strip>;
4569
3597
  type RespondIntegrationActivationRequestInput = z.input<typeof respondIntegrationActivationRequestInputSchema>;
4570
3598
  declare const respondIntegrationActivationRequestResponseSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
4571
- pointOfSale: z.ZodObject<{
4572
- id: z.ZodString;
4573
- name: z.ZodString;
4574
- address: z.ZodObject<{
4575
- line1: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4576
- line2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4577
- city: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4578
- region: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4579
- postalCode: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4580
- country: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4581
- }, z.core.$strip>;
4582
- timezone: z.ZodString;
4583
- location: z.ZodObject<{
4584
- latitude: z.ZodNumber;
4585
- longitude: z.ZodNumber;
4586
- }, z.core.$strip>;
4587
- capabilities: z.ZodArray<z.ZodEnum<{
4588
- DELIVERY_OPTIMIZATION: "DELIVERY_OPTIMIZATION";
4589
- }>>;
4590
- openingStatus: z.ZodEnum<{
4591
- OPEN: "OPEN";
4592
- CLOSED: "CLOSED";
4593
- }>;
4594
- nextSyncMenuScheduledAt: z.ZodNullable<z.ZodString>;
4595
- currentMenuVersion: z.ZodType<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id/menu_versions/:menuVersionId"> | null, unknown, z.core.$ZodTypeInternals<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id/menu_versions/:menuVersionId"> | null, unknown>>;
4596
- createdAt: z.ZodString;
4597
- updatedAt: z.ZodString;
4598
- }, z.core.$strip>;
3599
+ pointOfSale: z.ZodType<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id">, unknown, z.core.$ZodTypeInternals<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id">, unknown>>;
4599
3600
  service: z.ZodLiteral<"deliveroo">;
4600
3601
  data: z.ZodObject<{
4601
3602
  brandId: z.ZodString;
@@ -4634,38 +3635,11 @@ declare const respondIntegrationActivationRequestResponseSchema: z.ZodDiscrimina
4634
3635
  request_sent_partner: "request_sent_partner";
4635
3636
  failed: "failed";
4636
3637
  }>;
4637
- message: z.ZodString;
3638
+ message: z.ZodNullable<z.ZodString>;
4638
3639
  updatedAt: z.ZodString;
4639
3640
  }, z.core.$strip>>>>;
4640
3641
  }, z.core.$strip>, z.ZodObject<{
4641
- pointOfSale: z.ZodObject<{
4642
- id: z.ZodString;
4643
- name: z.ZodString;
4644
- address: z.ZodObject<{
4645
- line1: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4646
- line2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4647
- city: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4648
- region: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4649
- postalCode: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4650
- country: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4651
- }, z.core.$strip>;
4652
- timezone: z.ZodString;
4653
- location: z.ZodObject<{
4654
- latitude: z.ZodNumber;
4655
- longitude: z.ZodNumber;
4656
- }, z.core.$strip>;
4657
- capabilities: z.ZodArray<z.ZodEnum<{
4658
- DELIVERY_OPTIMIZATION: "DELIVERY_OPTIMIZATION";
4659
- }>>;
4660
- openingStatus: z.ZodEnum<{
4661
- OPEN: "OPEN";
4662
- CLOSED: "CLOSED";
4663
- }>;
4664
- nextSyncMenuScheduledAt: z.ZodNullable<z.ZodString>;
4665
- currentMenuVersion: z.ZodType<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id/menu_versions/:menuVersionId"> | null, unknown, z.core.$ZodTypeInternals<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id/menu_versions/:menuVersionId"> | null, unknown>>;
4666
- createdAt: z.ZodString;
4667
- updatedAt: z.ZodString;
4668
- }, z.core.$strip>;
3642
+ pointOfSale: z.ZodType<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id">, unknown, z.core.$ZodTypeInternals<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id">, unknown>>;
4669
3643
  service: z.ZodLiteral<"glovo">;
4670
3644
  data: z.ZodObject<{
4671
3645
  storeId: z.ZodString;
@@ -4703,38 +3677,11 @@ declare const respondIntegrationActivationRequestResponseSchema: z.ZodDiscrimina
4703
3677
  request_sent_partner: "request_sent_partner";
4704
3678
  failed: "failed";
4705
3679
  }>;
4706
- message: z.ZodString;
3680
+ message: z.ZodNullable<z.ZodString>;
4707
3681
  updatedAt: z.ZodString;
4708
3682
  }, z.core.$strip>>>>;
4709
3683
  }, z.core.$strip>, z.ZodObject<{
4710
- pointOfSale: z.ZodObject<{
4711
- id: z.ZodString;
4712
- name: z.ZodString;
4713
- address: z.ZodObject<{
4714
- line1: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4715
- line2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4716
- city: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4717
- region: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4718
- postalCode: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4719
- country: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4720
- }, z.core.$strip>;
4721
- timezone: z.ZodString;
4722
- location: z.ZodObject<{
4723
- latitude: z.ZodNumber;
4724
- longitude: z.ZodNumber;
4725
- }, z.core.$strip>;
4726
- capabilities: z.ZodArray<z.ZodEnum<{
4727
- DELIVERY_OPTIMIZATION: "DELIVERY_OPTIMIZATION";
4728
- }>>;
4729
- openingStatus: z.ZodEnum<{
4730
- OPEN: "OPEN";
4731
- CLOSED: "CLOSED";
4732
- }>;
4733
- nextSyncMenuScheduledAt: z.ZodNullable<z.ZodString>;
4734
- currentMenuVersion: z.ZodType<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id/menu_versions/:menuVersionId"> | null, unknown, z.core.$ZodTypeInternals<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id/menu_versions/:menuVersionId"> | null, unknown>>;
4735
- createdAt: z.ZodString;
4736
- updatedAt: z.ZodString;
4737
- }, z.core.$strip>;
3684
+ pointOfSale: z.ZodType<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id">, unknown, z.core.$ZodTypeInternals<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id">, unknown>>;
4738
3685
  service: z.ZodLiteral<"justeat">;
4739
3686
  data: z.ZodObject<{
4740
3687
  restaurantId: z.ZodString;
@@ -4772,38 +3719,11 @@ declare const respondIntegrationActivationRequestResponseSchema: z.ZodDiscrimina
4772
3719
  request_sent_partner: "request_sent_partner";
4773
3720
  failed: "failed";
4774
3721
  }>;
4775
- message: z.ZodString;
3722
+ message: z.ZodNullable<z.ZodString>;
4776
3723
  updatedAt: z.ZodString;
4777
3724
  }, z.core.$strip>>>>;
4778
3725
  }, z.core.$strip>, z.ZodObject<{
4779
- pointOfSale: z.ZodObject<{
4780
- id: z.ZodString;
4781
- name: z.ZodString;
4782
- address: z.ZodObject<{
4783
- line1: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4784
- line2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4785
- city: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4786
- region: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4787
- postalCode: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4788
- country: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4789
- }, z.core.$strip>;
4790
- timezone: z.ZodString;
4791
- location: z.ZodObject<{
4792
- latitude: z.ZodNumber;
4793
- longitude: z.ZodNumber;
4794
- }, z.core.$strip>;
4795
- capabilities: z.ZodArray<z.ZodEnum<{
4796
- DELIVERY_OPTIMIZATION: "DELIVERY_OPTIMIZATION";
4797
- }>>;
4798
- openingStatus: z.ZodEnum<{
4799
- OPEN: "OPEN";
4800
- CLOSED: "CLOSED";
4801
- }>;
4802
- nextSyncMenuScheduledAt: z.ZodNullable<z.ZodString>;
4803
- currentMenuVersion: z.ZodType<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id/menu_versions/:menuVersionId"> | null, unknown, z.core.$ZodTypeInternals<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id/menu_versions/:menuVersionId"> | null, unknown>>;
4804
- createdAt: z.ZodString;
4805
- updatedAt: z.ZodString;
4806
- }, z.core.$strip>;
3726
+ pointOfSale: z.ZodType<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id">, unknown, z.core.$ZodTypeInternals<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id">, unknown>>;
4807
3727
  service: z.ZodLiteral<"cassa_in_cloud">;
4808
3728
  data: z.ZodObject<{
4809
3729
  apiKey: z.ZodString;
@@ -4846,7 +3766,7 @@ declare const respondIntegrationActivationRequestResponseSchema: z.ZodDiscrimina
4846
3766
  request_sent_partner: "request_sent_partner";
4847
3767
  failed: "failed";
4848
3768
  }>;
4849
- message: z.ZodString;
3769
+ message: z.ZodNullable<z.ZodString>;
4850
3770
  updatedAt: z.ZodString;
4851
3771
  }, z.core.$strip>>>>;
4852
3772
  }, z.core.$strip>]>;
@@ -4878,34 +3798,7 @@ declare class RespondIntegrationActivationRequest extends AbstractApiRequest<typ
4878
3798
  }, z.core.$strip>]>;
4879
3799
  }, z.core.$strip>;
4880
3800
  readonly outputSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
4881
- pointOfSale: z.ZodObject<{
4882
- id: z.ZodString;
4883
- name: z.ZodString;
4884
- address: z.ZodObject<{
4885
- line1: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4886
- line2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4887
- city: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4888
- region: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4889
- postalCode: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4890
- country: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4891
- }, z.core.$strip>;
4892
- timezone: z.ZodString;
4893
- location: z.ZodObject<{
4894
- latitude: z.ZodNumber;
4895
- longitude: z.ZodNumber;
4896
- }, z.core.$strip>;
4897
- capabilities: z.ZodArray<z.ZodEnum<{
4898
- DELIVERY_OPTIMIZATION: "DELIVERY_OPTIMIZATION";
4899
- }>>;
4900
- openingStatus: z.ZodEnum<{
4901
- OPEN: "OPEN";
4902
- CLOSED: "CLOSED";
4903
- }>;
4904
- nextSyncMenuScheduledAt: z.ZodNullable<z.ZodString>;
4905
- currentMenuVersion: z.ZodType<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id/menu_versions/:menuVersionId"> | null, unknown, z.core.$ZodTypeInternals<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id/menu_versions/:menuVersionId"> | null, unknown>>;
4906
- createdAt: z.ZodString;
4907
- updatedAt: z.ZodString;
4908
- }, z.core.$strip>;
3801
+ pointOfSale: z.ZodType<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id">, unknown, z.core.$ZodTypeInternals<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id">, unknown>>;
4909
3802
  service: z.ZodLiteral<"deliveroo">;
4910
3803
  data: z.ZodObject<{
4911
3804
  brandId: z.ZodString;
@@ -4944,38 +3837,11 @@ declare class RespondIntegrationActivationRequest extends AbstractApiRequest<typ
4944
3837
  request_sent_partner: "request_sent_partner";
4945
3838
  failed: "failed";
4946
3839
  }>;
4947
- message: z.ZodString;
3840
+ message: z.ZodNullable<z.ZodString>;
4948
3841
  updatedAt: z.ZodString;
4949
3842
  }, z.core.$strip>>>>;
4950
3843
  }, z.core.$strip>, z.ZodObject<{
4951
- pointOfSale: z.ZodObject<{
4952
- id: z.ZodString;
4953
- name: z.ZodString;
4954
- address: z.ZodObject<{
4955
- line1: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4956
- line2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4957
- city: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4958
- region: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4959
- postalCode: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4960
- country: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4961
- }, z.core.$strip>;
4962
- timezone: z.ZodString;
4963
- location: z.ZodObject<{
4964
- latitude: z.ZodNumber;
4965
- longitude: z.ZodNumber;
4966
- }, z.core.$strip>;
4967
- capabilities: z.ZodArray<z.ZodEnum<{
4968
- DELIVERY_OPTIMIZATION: "DELIVERY_OPTIMIZATION";
4969
- }>>;
4970
- openingStatus: z.ZodEnum<{
4971
- OPEN: "OPEN";
4972
- CLOSED: "CLOSED";
4973
- }>;
4974
- nextSyncMenuScheduledAt: z.ZodNullable<z.ZodString>;
4975
- currentMenuVersion: z.ZodType<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id/menu_versions/:menuVersionId"> | null, unknown, z.core.$ZodTypeInternals<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id/menu_versions/:menuVersionId"> | null, unknown>>;
4976
- createdAt: z.ZodString;
4977
- updatedAt: z.ZodString;
4978
- }, z.core.$strip>;
3844
+ pointOfSale: z.ZodType<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id">, unknown, z.core.$ZodTypeInternals<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id">, unknown>>;
4979
3845
  service: z.ZodLiteral<"glovo">;
4980
3846
  data: z.ZodObject<{
4981
3847
  storeId: z.ZodString;
@@ -5013,38 +3879,11 @@ declare class RespondIntegrationActivationRequest extends AbstractApiRequest<typ
5013
3879
  request_sent_partner: "request_sent_partner";
5014
3880
  failed: "failed";
5015
3881
  }>;
5016
- message: z.ZodString;
3882
+ message: z.ZodNullable<z.ZodString>;
5017
3883
  updatedAt: z.ZodString;
5018
3884
  }, z.core.$strip>>>>;
5019
3885
  }, z.core.$strip>, z.ZodObject<{
5020
- pointOfSale: z.ZodObject<{
5021
- id: z.ZodString;
5022
- name: z.ZodString;
5023
- address: z.ZodObject<{
5024
- line1: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5025
- line2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5026
- city: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5027
- region: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5028
- postalCode: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5029
- country: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5030
- }, z.core.$strip>;
5031
- timezone: z.ZodString;
5032
- location: z.ZodObject<{
5033
- latitude: z.ZodNumber;
5034
- longitude: z.ZodNumber;
5035
- }, z.core.$strip>;
5036
- capabilities: z.ZodArray<z.ZodEnum<{
5037
- DELIVERY_OPTIMIZATION: "DELIVERY_OPTIMIZATION";
5038
- }>>;
5039
- openingStatus: z.ZodEnum<{
5040
- OPEN: "OPEN";
5041
- CLOSED: "CLOSED";
5042
- }>;
5043
- nextSyncMenuScheduledAt: z.ZodNullable<z.ZodString>;
5044
- currentMenuVersion: z.ZodType<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id/menu_versions/:menuVersionId"> | null, unknown, z.core.$ZodTypeInternals<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id/menu_versions/:menuVersionId"> | null, unknown>>;
5045
- createdAt: z.ZodString;
5046
- updatedAt: z.ZodString;
5047
- }, z.core.$strip>;
3886
+ pointOfSale: z.ZodType<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id">, unknown, z.core.$ZodTypeInternals<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id">, unknown>>;
5048
3887
  service: z.ZodLiteral<"justeat">;
5049
3888
  data: z.ZodObject<{
5050
3889
  restaurantId: z.ZodString;
@@ -5082,38 +3921,11 @@ declare class RespondIntegrationActivationRequest extends AbstractApiRequest<typ
5082
3921
  request_sent_partner: "request_sent_partner";
5083
3922
  failed: "failed";
5084
3923
  }>;
5085
- message: z.ZodString;
3924
+ message: z.ZodNullable<z.ZodString>;
5086
3925
  updatedAt: z.ZodString;
5087
3926
  }, z.core.$strip>>>>;
5088
3927
  }, z.core.$strip>, z.ZodObject<{
5089
- pointOfSale: z.ZodObject<{
5090
- id: z.ZodString;
5091
- name: z.ZodString;
5092
- address: z.ZodObject<{
5093
- line1: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5094
- line2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5095
- city: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5096
- region: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5097
- postalCode: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5098
- country: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5099
- }, z.core.$strip>;
5100
- timezone: z.ZodString;
5101
- location: z.ZodObject<{
5102
- latitude: z.ZodNumber;
5103
- longitude: z.ZodNumber;
5104
- }, z.core.$strip>;
5105
- capabilities: z.ZodArray<z.ZodEnum<{
5106
- DELIVERY_OPTIMIZATION: "DELIVERY_OPTIMIZATION";
5107
- }>>;
5108
- openingStatus: z.ZodEnum<{
5109
- OPEN: "OPEN";
5110
- CLOSED: "CLOSED";
5111
- }>;
5112
- nextSyncMenuScheduledAt: z.ZodNullable<z.ZodString>;
5113
- currentMenuVersion: z.ZodType<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id/menu_versions/:menuVersionId"> | null, unknown, z.core.$ZodTypeInternals<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id/menu_versions/:menuVersionId"> | null, unknown>>;
5114
- createdAt: z.ZodString;
5115
- updatedAt: z.ZodString;
5116
- }, z.core.$strip>;
3928
+ pointOfSale: z.ZodType<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id">, unknown, z.core.$ZodTypeInternals<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id">, unknown>>;
5117
3929
  service: z.ZodLiteral<"cassa_in_cloud">;
5118
3930
  data: z.ZodObject<{
5119
3931
  apiKey: z.ZodString;
@@ -5156,7 +3968,7 @@ declare class RespondIntegrationActivationRequest extends AbstractApiRequest<typ
5156
3968
  request_sent_partner: "request_sent_partner";
5157
3969
  failed: "failed";
5158
3970
  }>;
5159
- message: z.ZodString;
3971
+ message: z.ZodNullable<z.ZodString>;
5160
3972
  updatedAt: z.ZodString;
5161
3973
  }, z.core.$strip>>>>;
5162
3974
  }, z.core.$strip>]>;
@@ -5170,34 +3982,7 @@ declare class RespondIntegrationActivationRequest extends AbstractApiRequest<typ
5170
3982
  declare const sendIntegrationActivationRequestToPartnerInputSchema: z.ZodUndefined;
5171
3983
  type SendIntegrationActivationRequestToPartnerInput = z.infer<typeof sendIntegrationActivationRequestToPartnerInputSchema>;
5172
3984
  declare const sendIntegrationActivationRequestToPartnerResponseSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
5173
- pointOfSale: z.ZodObject<{
5174
- id: z.ZodString;
5175
- name: z.ZodString;
5176
- address: z.ZodObject<{
5177
- line1: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5178
- line2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5179
- city: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5180
- region: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5181
- postalCode: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5182
- country: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5183
- }, z.core.$strip>;
5184
- timezone: z.ZodString;
5185
- location: z.ZodObject<{
5186
- latitude: z.ZodNumber;
5187
- longitude: z.ZodNumber;
5188
- }, z.core.$strip>;
5189
- capabilities: z.ZodArray<z.ZodEnum<{
5190
- DELIVERY_OPTIMIZATION: "DELIVERY_OPTIMIZATION";
5191
- }>>;
5192
- openingStatus: z.ZodEnum<{
5193
- OPEN: "OPEN";
5194
- CLOSED: "CLOSED";
5195
- }>;
5196
- nextSyncMenuScheduledAt: z.ZodNullable<z.ZodString>;
5197
- currentMenuVersion: z.ZodType<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id/menu_versions/:menuVersionId"> | null, unknown, z.core.$ZodTypeInternals<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id/menu_versions/:menuVersionId"> | null, unknown>>;
5198
- createdAt: z.ZodString;
5199
- updatedAt: z.ZodString;
5200
- }, z.core.$strip>;
3985
+ pointOfSale: z.ZodType<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id">, unknown, z.core.$ZodTypeInternals<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id">, unknown>>;
5201
3986
  service: z.ZodLiteral<"deliveroo">;
5202
3987
  data: z.ZodObject<{
5203
3988
  brandId: z.ZodString;
@@ -5236,38 +4021,11 @@ declare const sendIntegrationActivationRequestToPartnerResponseSchema: z.ZodDisc
5236
4021
  request_sent_partner: "request_sent_partner";
5237
4022
  failed: "failed";
5238
4023
  }>;
5239
- message: z.ZodString;
4024
+ message: z.ZodNullable<z.ZodString>;
5240
4025
  updatedAt: z.ZodString;
5241
4026
  }, z.core.$strip>>>>;
5242
4027
  }, z.core.$strip>, z.ZodObject<{
5243
- pointOfSale: z.ZodObject<{
5244
- id: z.ZodString;
5245
- name: z.ZodString;
5246
- address: z.ZodObject<{
5247
- line1: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5248
- line2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5249
- city: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5250
- region: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5251
- postalCode: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5252
- country: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5253
- }, z.core.$strip>;
5254
- timezone: z.ZodString;
5255
- location: z.ZodObject<{
5256
- latitude: z.ZodNumber;
5257
- longitude: z.ZodNumber;
5258
- }, z.core.$strip>;
5259
- capabilities: z.ZodArray<z.ZodEnum<{
5260
- DELIVERY_OPTIMIZATION: "DELIVERY_OPTIMIZATION";
5261
- }>>;
5262
- openingStatus: z.ZodEnum<{
5263
- OPEN: "OPEN";
5264
- CLOSED: "CLOSED";
5265
- }>;
5266
- nextSyncMenuScheduledAt: z.ZodNullable<z.ZodString>;
5267
- currentMenuVersion: z.ZodType<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id/menu_versions/:menuVersionId"> | null, unknown, z.core.$ZodTypeInternals<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id/menu_versions/:menuVersionId"> | null, unknown>>;
5268
- createdAt: z.ZodString;
5269
- updatedAt: z.ZodString;
5270
- }, z.core.$strip>;
4028
+ pointOfSale: z.ZodType<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id">, unknown, z.core.$ZodTypeInternals<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id">, unknown>>;
5271
4029
  service: z.ZodLiteral<"glovo">;
5272
4030
  data: z.ZodObject<{
5273
4031
  storeId: z.ZodString;
@@ -5305,38 +4063,11 @@ declare const sendIntegrationActivationRequestToPartnerResponseSchema: z.ZodDisc
5305
4063
  request_sent_partner: "request_sent_partner";
5306
4064
  failed: "failed";
5307
4065
  }>;
5308
- message: z.ZodString;
4066
+ message: z.ZodNullable<z.ZodString>;
5309
4067
  updatedAt: z.ZodString;
5310
4068
  }, z.core.$strip>>>>;
5311
4069
  }, z.core.$strip>, z.ZodObject<{
5312
- pointOfSale: z.ZodObject<{
5313
- id: z.ZodString;
5314
- name: z.ZodString;
5315
- address: z.ZodObject<{
5316
- line1: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5317
- line2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5318
- city: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5319
- region: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5320
- postalCode: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5321
- country: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5322
- }, z.core.$strip>;
5323
- timezone: z.ZodString;
5324
- location: z.ZodObject<{
5325
- latitude: z.ZodNumber;
5326
- longitude: z.ZodNumber;
5327
- }, z.core.$strip>;
5328
- capabilities: z.ZodArray<z.ZodEnum<{
5329
- DELIVERY_OPTIMIZATION: "DELIVERY_OPTIMIZATION";
5330
- }>>;
5331
- openingStatus: z.ZodEnum<{
5332
- OPEN: "OPEN";
5333
- CLOSED: "CLOSED";
5334
- }>;
5335
- nextSyncMenuScheduledAt: z.ZodNullable<z.ZodString>;
5336
- currentMenuVersion: z.ZodType<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id/menu_versions/:menuVersionId"> | null, unknown, z.core.$ZodTypeInternals<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id/menu_versions/:menuVersionId"> | null, unknown>>;
5337
- createdAt: z.ZodString;
5338
- updatedAt: z.ZodString;
5339
- }, z.core.$strip>;
4070
+ pointOfSale: z.ZodType<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id">, unknown, z.core.$ZodTypeInternals<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id">, unknown>>;
5340
4071
  service: z.ZodLiteral<"justeat">;
5341
4072
  data: z.ZodObject<{
5342
4073
  restaurantId: z.ZodString;
@@ -5374,38 +4105,11 @@ declare const sendIntegrationActivationRequestToPartnerResponseSchema: z.ZodDisc
5374
4105
  request_sent_partner: "request_sent_partner";
5375
4106
  failed: "failed";
5376
4107
  }>;
5377
- message: z.ZodString;
4108
+ message: z.ZodNullable<z.ZodString>;
5378
4109
  updatedAt: z.ZodString;
5379
4110
  }, z.core.$strip>>>>;
5380
4111
  }, z.core.$strip>, z.ZodObject<{
5381
- pointOfSale: z.ZodObject<{
5382
- id: z.ZodString;
5383
- name: z.ZodString;
5384
- address: z.ZodObject<{
5385
- line1: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5386
- line2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5387
- city: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5388
- region: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5389
- postalCode: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5390
- country: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5391
- }, z.core.$strip>;
5392
- timezone: z.ZodString;
5393
- location: z.ZodObject<{
5394
- latitude: z.ZodNumber;
5395
- longitude: z.ZodNumber;
5396
- }, z.core.$strip>;
5397
- capabilities: z.ZodArray<z.ZodEnum<{
5398
- DELIVERY_OPTIMIZATION: "DELIVERY_OPTIMIZATION";
5399
- }>>;
5400
- openingStatus: z.ZodEnum<{
5401
- OPEN: "OPEN";
5402
- CLOSED: "CLOSED";
5403
- }>;
5404
- nextSyncMenuScheduledAt: z.ZodNullable<z.ZodString>;
5405
- currentMenuVersion: z.ZodType<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id/menu_versions/:menuVersionId"> | null, unknown, z.core.$ZodTypeInternals<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id/menu_versions/:menuVersionId"> | null, unknown>>;
5406
- createdAt: z.ZodString;
5407
- updatedAt: z.ZodString;
5408
- }, z.core.$strip>;
4112
+ pointOfSale: z.ZodType<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id">, unknown, z.core.$ZodTypeInternals<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id">, unknown>>;
5409
4113
  service: z.ZodLiteral<"cassa_in_cloud">;
5410
4114
  data: z.ZodObject<{
5411
4115
  apiKey: z.ZodString;
@@ -5448,7 +4152,7 @@ declare const sendIntegrationActivationRequestToPartnerResponseSchema: z.ZodDisc
5448
4152
  request_sent_partner: "request_sent_partner";
5449
4153
  failed: "failed";
5450
4154
  }>;
5451
- message: z.ZodString;
4155
+ message: z.ZodNullable<z.ZodString>;
5452
4156
  updatedAt: z.ZodString;
5453
4157
  }, z.core.$strip>>>>;
5454
4158
  }, z.core.$strip>]>;
@@ -5459,34 +4163,7 @@ declare class SendIntegrationActivationRequestToPartner extends AbstractApiReque
5459
4163
  readonly accept = "application/json";
5460
4164
  readonly inputSchema: z.ZodUndefined;
5461
4165
  readonly outputSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
5462
- pointOfSale: z.ZodObject<{
5463
- id: z.ZodString;
5464
- name: z.ZodString;
5465
- address: z.ZodObject<{
5466
- line1: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5467
- line2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5468
- city: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5469
- region: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5470
- postalCode: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5471
- country: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5472
- }, z.core.$strip>;
5473
- timezone: z.ZodString;
5474
- location: z.ZodObject<{
5475
- latitude: z.ZodNumber;
5476
- longitude: z.ZodNumber;
5477
- }, z.core.$strip>;
5478
- capabilities: z.ZodArray<z.ZodEnum<{
5479
- DELIVERY_OPTIMIZATION: "DELIVERY_OPTIMIZATION";
5480
- }>>;
5481
- openingStatus: z.ZodEnum<{
5482
- OPEN: "OPEN";
5483
- CLOSED: "CLOSED";
5484
- }>;
5485
- nextSyncMenuScheduledAt: z.ZodNullable<z.ZodString>;
5486
- currentMenuVersion: z.ZodType<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id/menu_versions/:menuVersionId"> | null, unknown, z.core.$ZodTypeInternals<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id/menu_versions/:menuVersionId"> | null, unknown>>;
5487
- createdAt: z.ZodString;
5488
- updatedAt: z.ZodString;
5489
- }, z.core.$strip>;
4166
+ pointOfSale: z.ZodType<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id">, unknown, z.core.$ZodTypeInternals<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id">, unknown>>;
5490
4167
  service: z.ZodLiteral<"deliveroo">;
5491
4168
  data: z.ZodObject<{
5492
4169
  brandId: z.ZodString;
@@ -5525,38 +4202,11 @@ declare class SendIntegrationActivationRequestToPartner extends AbstractApiReque
5525
4202
  request_sent_partner: "request_sent_partner";
5526
4203
  failed: "failed";
5527
4204
  }>;
5528
- message: z.ZodString;
4205
+ message: z.ZodNullable<z.ZodString>;
5529
4206
  updatedAt: z.ZodString;
5530
4207
  }, z.core.$strip>>>>;
5531
4208
  }, z.core.$strip>, z.ZodObject<{
5532
- pointOfSale: z.ZodObject<{
5533
- id: z.ZodString;
5534
- name: z.ZodString;
5535
- address: z.ZodObject<{
5536
- line1: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5537
- line2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5538
- city: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5539
- region: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5540
- postalCode: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5541
- country: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5542
- }, z.core.$strip>;
5543
- timezone: z.ZodString;
5544
- location: z.ZodObject<{
5545
- latitude: z.ZodNumber;
5546
- longitude: z.ZodNumber;
5547
- }, z.core.$strip>;
5548
- capabilities: z.ZodArray<z.ZodEnum<{
5549
- DELIVERY_OPTIMIZATION: "DELIVERY_OPTIMIZATION";
5550
- }>>;
5551
- openingStatus: z.ZodEnum<{
5552
- OPEN: "OPEN";
5553
- CLOSED: "CLOSED";
5554
- }>;
5555
- nextSyncMenuScheduledAt: z.ZodNullable<z.ZodString>;
5556
- currentMenuVersion: z.ZodType<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id/menu_versions/:menuVersionId"> | null, unknown, z.core.$ZodTypeInternals<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id/menu_versions/:menuVersionId"> | null, unknown>>;
5557
- createdAt: z.ZodString;
5558
- updatedAt: z.ZodString;
5559
- }, z.core.$strip>;
4209
+ pointOfSale: z.ZodType<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id">, unknown, z.core.$ZodTypeInternals<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id">, unknown>>;
5560
4210
  service: z.ZodLiteral<"glovo">;
5561
4211
  data: z.ZodObject<{
5562
4212
  storeId: z.ZodString;
@@ -5594,38 +4244,11 @@ declare class SendIntegrationActivationRequestToPartner extends AbstractApiReque
5594
4244
  request_sent_partner: "request_sent_partner";
5595
4245
  failed: "failed";
5596
4246
  }>;
5597
- message: z.ZodString;
4247
+ message: z.ZodNullable<z.ZodString>;
5598
4248
  updatedAt: z.ZodString;
5599
4249
  }, z.core.$strip>>>>;
5600
4250
  }, z.core.$strip>, z.ZodObject<{
5601
- pointOfSale: z.ZodObject<{
5602
- id: z.ZodString;
5603
- name: z.ZodString;
5604
- address: z.ZodObject<{
5605
- line1: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5606
- line2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5607
- city: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5608
- region: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5609
- postalCode: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5610
- country: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5611
- }, z.core.$strip>;
5612
- timezone: z.ZodString;
5613
- location: z.ZodObject<{
5614
- latitude: z.ZodNumber;
5615
- longitude: z.ZodNumber;
5616
- }, z.core.$strip>;
5617
- capabilities: z.ZodArray<z.ZodEnum<{
5618
- DELIVERY_OPTIMIZATION: "DELIVERY_OPTIMIZATION";
5619
- }>>;
5620
- openingStatus: z.ZodEnum<{
5621
- OPEN: "OPEN";
5622
- CLOSED: "CLOSED";
5623
- }>;
5624
- nextSyncMenuScheduledAt: z.ZodNullable<z.ZodString>;
5625
- currentMenuVersion: z.ZodType<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id/menu_versions/:menuVersionId"> | null, unknown, z.core.$ZodTypeInternals<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id/menu_versions/:menuVersionId"> | null, unknown>>;
5626
- createdAt: z.ZodString;
5627
- updatedAt: z.ZodString;
5628
- }, z.core.$strip>;
4251
+ pointOfSale: z.ZodType<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id">, unknown, z.core.$ZodTypeInternals<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id">, unknown>>;
5629
4252
  service: z.ZodLiteral<"justeat">;
5630
4253
  data: z.ZodObject<{
5631
4254
  restaurantId: z.ZodString;
@@ -5663,38 +4286,11 @@ declare class SendIntegrationActivationRequestToPartner extends AbstractApiReque
5663
4286
  request_sent_partner: "request_sent_partner";
5664
4287
  failed: "failed";
5665
4288
  }>;
5666
- message: z.ZodString;
4289
+ message: z.ZodNullable<z.ZodString>;
5667
4290
  updatedAt: z.ZodString;
5668
4291
  }, z.core.$strip>>>>;
5669
4292
  }, z.core.$strip>, z.ZodObject<{
5670
- pointOfSale: z.ZodObject<{
5671
- id: z.ZodString;
5672
- name: z.ZodString;
5673
- address: z.ZodObject<{
5674
- line1: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5675
- line2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5676
- city: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5677
- region: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5678
- postalCode: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5679
- country: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5680
- }, z.core.$strip>;
5681
- timezone: z.ZodString;
5682
- location: z.ZodObject<{
5683
- latitude: z.ZodNumber;
5684
- longitude: z.ZodNumber;
5685
- }, z.core.$strip>;
5686
- capabilities: z.ZodArray<z.ZodEnum<{
5687
- DELIVERY_OPTIMIZATION: "DELIVERY_OPTIMIZATION";
5688
- }>>;
5689
- openingStatus: z.ZodEnum<{
5690
- OPEN: "OPEN";
5691
- CLOSED: "CLOSED";
5692
- }>;
5693
- nextSyncMenuScheduledAt: z.ZodNullable<z.ZodString>;
5694
- currentMenuVersion: z.ZodType<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id/menu_versions/:menuVersionId"> | null, unknown, z.core.$ZodTypeInternals<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id/menu_versions/:menuVersionId"> | null, unknown>>;
5695
- createdAt: z.ZodString;
5696
- updatedAt: z.ZodString;
5697
- }, z.core.$strip>;
4293
+ pointOfSale: z.ZodType<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id">, unknown, z.core.$ZodTypeInternals<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id">, unknown>>;
5698
4294
  service: z.ZodLiteral<"cassa_in_cloud">;
5699
4295
  data: z.ZodObject<{
5700
4296
  apiKey: z.ZodString;
@@ -5737,7 +4333,7 @@ declare class SendIntegrationActivationRequestToPartner extends AbstractApiReque
5737
4333
  request_sent_partner: "request_sent_partner";
5738
4334
  failed: "failed";
5739
4335
  }>;
5740
- message: z.ZodString;
4336
+ message: z.ZodNullable<z.ZodString>;
5741
4337
  updatedAt: z.ZodString;
5742
4338
  }, z.core.$strip>>>>;
5743
4339
  }, z.core.$strip>]>;
@@ -5829,34 +4425,7 @@ declare const updateIntegrationActivationRequestInputSchema: z.ZodDiscriminatedU
5829
4425
  }, z.core.$strip>]>;
5830
4426
  type UpdateIntegrationActivationRequestInput = z.input<typeof updateIntegrationActivationRequestInputSchema>;
5831
4427
  declare const updateIntegrationActivationRequestResponseSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
5832
- pointOfSale: z.ZodObject<{
5833
- id: z.ZodString;
5834
- name: z.ZodString;
5835
- address: z.ZodObject<{
5836
- line1: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5837
- line2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5838
- city: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5839
- region: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5840
- postalCode: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5841
- country: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5842
- }, z.core.$strip>;
5843
- timezone: z.ZodString;
5844
- location: z.ZodObject<{
5845
- latitude: z.ZodNumber;
5846
- longitude: z.ZodNumber;
5847
- }, z.core.$strip>;
5848
- capabilities: z.ZodArray<z.ZodEnum<{
5849
- DELIVERY_OPTIMIZATION: "DELIVERY_OPTIMIZATION";
5850
- }>>;
5851
- openingStatus: z.ZodEnum<{
5852
- OPEN: "OPEN";
5853
- CLOSED: "CLOSED";
5854
- }>;
5855
- nextSyncMenuScheduledAt: z.ZodNullable<z.ZodString>;
5856
- currentMenuVersion: z.ZodType<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id/menu_versions/:menuVersionId"> | null, unknown, z.core.$ZodTypeInternals<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id/menu_versions/:menuVersionId"> | null, unknown>>;
5857
- createdAt: z.ZodString;
5858
- updatedAt: z.ZodString;
5859
- }, z.core.$strip>;
4428
+ pointOfSale: z.ZodType<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id">, unknown, z.core.$ZodTypeInternals<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id">, unknown>>;
5860
4429
  service: z.ZodLiteral<"deliveroo">;
5861
4430
  data: z.ZodObject<{
5862
4431
  brandId: z.ZodString;
@@ -5895,38 +4464,11 @@ declare const updateIntegrationActivationRequestResponseSchema: z.ZodDiscriminat
5895
4464
  request_sent_partner: "request_sent_partner";
5896
4465
  failed: "failed";
5897
4466
  }>;
5898
- message: z.ZodString;
4467
+ message: z.ZodNullable<z.ZodString>;
5899
4468
  updatedAt: z.ZodString;
5900
4469
  }, z.core.$strip>>>>;
5901
4470
  }, z.core.$strip>, z.ZodObject<{
5902
- pointOfSale: z.ZodObject<{
5903
- id: z.ZodString;
5904
- name: z.ZodString;
5905
- address: z.ZodObject<{
5906
- line1: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5907
- line2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5908
- city: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5909
- region: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5910
- postalCode: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5911
- country: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5912
- }, z.core.$strip>;
5913
- timezone: z.ZodString;
5914
- location: z.ZodObject<{
5915
- latitude: z.ZodNumber;
5916
- longitude: z.ZodNumber;
5917
- }, z.core.$strip>;
5918
- capabilities: z.ZodArray<z.ZodEnum<{
5919
- DELIVERY_OPTIMIZATION: "DELIVERY_OPTIMIZATION";
5920
- }>>;
5921
- openingStatus: z.ZodEnum<{
5922
- OPEN: "OPEN";
5923
- CLOSED: "CLOSED";
5924
- }>;
5925
- nextSyncMenuScheduledAt: z.ZodNullable<z.ZodString>;
5926
- currentMenuVersion: z.ZodType<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id/menu_versions/:menuVersionId"> | null, unknown, z.core.$ZodTypeInternals<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id/menu_versions/:menuVersionId"> | null, unknown>>;
5927
- createdAt: z.ZodString;
5928
- updatedAt: z.ZodString;
5929
- }, z.core.$strip>;
4471
+ pointOfSale: z.ZodType<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id">, unknown, z.core.$ZodTypeInternals<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id">, unknown>>;
5930
4472
  service: z.ZodLiteral<"glovo">;
5931
4473
  data: z.ZodObject<{
5932
4474
  storeId: z.ZodString;
@@ -5964,38 +4506,11 @@ declare const updateIntegrationActivationRequestResponseSchema: z.ZodDiscriminat
5964
4506
  request_sent_partner: "request_sent_partner";
5965
4507
  failed: "failed";
5966
4508
  }>;
5967
- message: z.ZodString;
4509
+ message: z.ZodNullable<z.ZodString>;
5968
4510
  updatedAt: z.ZodString;
5969
4511
  }, z.core.$strip>>>>;
5970
4512
  }, z.core.$strip>, z.ZodObject<{
5971
- pointOfSale: z.ZodObject<{
5972
- id: z.ZodString;
5973
- name: z.ZodString;
5974
- address: z.ZodObject<{
5975
- line1: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5976
- line2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5977
- city: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5978
- region: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5979
- postalCode: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5980
- country: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5981
- }, z.core.$strip>;
5982
- timezone: z.ZodString;
5983
- location: z.ZodObject<{
5984
- latitude: z.ZodNumber;
5985
- longitude: z.ZodNumber;
5986
- }, z.core.$strip>;
5987
- capabilities: z.ZodArray<z.ZodEnum<{
5988
- DELIVERY_OPTIMIZATION: "DELIVERY_OPTIMIZATION";
5989
- }>>;
5990
- openingStatus: z.ZodEnum<{
5991
- OPEN: "OPEN";
5992
- CLOSED: "CLOSED";
5993
- }>;
5994
- nextSyncMenuScheduledAt: z.ZodNullable<z.ZodString>;
5995
- currentMenuVersion: z.ZodType<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id/menu_versions/:menuVersionId"> | null, unknown, z.core.$ZodTypeInternals<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id/menu_versions/:menuVersionId"> | null, unknown>>;
5996
- createdAt: z.ZodString;
5997
- updatedAt: z.ZodString;
5998
- }, z.core.$strip>;
4513
+ pointOfSale: z.ZodType<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id">, unknown, z.core.$ZodTypeInternals<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id">, unknown>>;
5999
4514
  service: z.ZodLiteral<"justeat">;
6000
4515
  data: z.ZodObject<{
6001
4516
  restaurantId: z.ZodString;
@@ -6033,38 +4548,11 @@ declare const updateIntegrationActivationRequestResponseSchema: z.ZodDiscriminat
6033
4548
  request_sent_partner: "request_sent_partner";
6034
4549
  failed: "failed";
6035
4550
  }>;
6036
- message: z.ZodString;
4551
+ message: z.ZodNullable<z.ZodString>;
6037
4552
  updatedAt: z.ZodString;
6038
4553
  }, z.core.$strip>>>>;
6039
4554
  }, z.core.$strip>, z.ZodObject<{
6040
- pointOfSale: z.ZodObject<{
6041
- id: z.ZodString;
6042
- name: z.ZodString;
6043
- address: z.ZodObject<{
6044
- line1: z.ZodOptional<z.ZodNullable<z.ZodString>>;
6045
- line2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
6046
- city: z.ZodOptional<z.ZodNullable<z.ZodString>>;
6047
- region: z.ZodOptional<z.ZodNullable<z.ZodString>>;
6048
- postalCode: z.ZodOptional<z.ZodNullable<z.ZodString>>;
6049
- country: z.ZodOptional<z.ZodNullable<z.ZodString>>;
6050
- }, z.core.$strip>;
6051
- timezone: z.ZodString;
6052
- location: z.ZodObject<{
6053
- latitude: z.ZodNumber;
6054
- longitude: z.ZodNumber;
6055
- }, z.core.$strip>;
6056
- capabilities: z.ZodArray<z.ZodEnum<{
6057
- DELIVERY_OPTIMIZATION: "DELIVERY_OPTIMIZATION";
6058
- }>>;
6059
- openingStatus: z.ZodEnum<{
6060
- OPEN: "OPEN";
6061
- CLOSED: "CLOSED";
6062
- }>;
6063
- nextSyncMenuScheduledAt: z.ZodNullable<z.ZodString>;
6064
- currentMenuVersion: z.ZodType<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id/menu_versions/:menuVersionId"> | null, unknown, z.core.$ZodTypeInternals<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id/menu_versions/:menuVersionId"> | null, unknown>>;
6065
- createdAt: z.ZodString;
6066
- updatedAt: z.ZodString;
6067
- }, z.core.$strip>;
4555
+ pointOfSale: z.ZodType<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id">, unknown, z.core.$ZodTypeInternals<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id">, unknown>>;
6068
4556
  service: z.ZodLiteral<"cassa_in_cloud">;
6069
4557
  data: z.ZodObject<{
6070
4558
  apiKey: z.ZodString;
@@ -6107,7 +4595,7 @@ declare const updateIntegrationActivationRequestResponseSchema: z.ZodDiscriminat
6107
4595
  request_sent_partner: "request_sent_partner";
6108
4596
  failed: "failed";
6109
4597
  }>;
6110
- message: z.ZodString;
4598
+ message: z.ZodNullable<z.ZodString>;
6111
4599
  updatedAt: z.ZodString;
6112
4600
  }, z.core.$strip>>>>;
6113
4601
  }, z.core.$strip>]>;
@@ -6196,34 +4684,7 @@ declare class UpdateIntegrationActivationRequest extends AbstractApiRequest<type
6196
4684
  internalNotes: z.ZodOptional<z.ZodNullable<z.ZodString>>;
6197
4685
  }, z.core.$strip>]>;
6198
4686
  readonly outputSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
6199
- pointOfSale: z.ZodObject<{
6200
- id: z.ZodString;
6201
- name: z.ZodString;
6202
- address: z.ZodObject<{
6203
- line1: z.ZodOptional<z.ZodNullable<z.ZodString>>;
6204
- line2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
6205
- city: z.ZodOptional<z.ZodNullable<z.ZodString>>;
6206
- region: z.ZodOptional<z.ZodNullable<z.ZodString>>;
6207
- postalCode: z.ZodOptional<z.ZodNullable<z.ZodString>>;
6208
- country: z.ZodOptional<z.ZodNullable<z.ZodString>>;
6209
- }, z.core.$strip>;
6210
- timezone: z.ZodString;
6211
- location: z.ZodObject<{
6212
- latitude: z.ZodNumber;
6213
- longitude: z.ZodNumber;
6214
- }, z.core.$strip>;
6215
- capabilities: z.ZodArray<z.ZodEnum<{
6216
- DELIVERY_OPTIMIZATION: "DELIVERY_OPTIMIZATION";
6217
- }>>;
6218
- openingStatus: z.ZodEnum<{
6219
- OPEN: "OPEN";
6220
- CLOSED: "CLOSED";
6221
- }>;
6222
- nextSyncMenuScheduledAt: z.ZodNullable<z.ZodString>;
6223
- currentMenuVersion: z.ZodType<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id/menu_versions/:menuVersionId"> | null, unknown, z.core.$ZodTypeInternals<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id/menu_versions/:menuVersionId"> | null, unknown>>;
6224
- createdAt: z.ZodString;
6225
- updatedAt: z.ZodString;
6226
- }, z.core.$strip>;
4687
+ pointOfSale: z.ZodType<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id">, unknown, z.core.$ZodTypeInternals<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id">, unknown>>;
6227
4688
  service: z.ZodLiteral<"deliveroo">;
6228
4689
  data: z.ZodObject<{
6229
4690
  brandId: z.ZodString;
@@ -6262,38 +4723,11 @@ declare class UpdateIntegrationActivationRequest extends AbstractApiRequest<type
6262
4723
  request_sent_partner: "request_sent_partner";
6263
4724
  failed: "failed";
6264
4725
  }>;
6265
- message: z.ZodString;
4726
+ message: z.ZodNullable<z.ZodString>;
6266
4727
  updatedAt: z.ZodString;
6267
4728
  }, z.core.$strip>>>>;
6268
4729
  }, z.core.$strip>, z.ZodObject<{
6269
- pointOfSale: z.ZodObject<{
6270
- id: z.ZodString;
6271
- name: z.ZodString;
6272
- address: z.ZodObject<{
6273
- line1: z.ZodOptional<z.ZodNullable<z.ZodString>>;
6274
- line2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
6275
- city: z.ZodOptional<z.ZodNullable<z.ZodString>>;
6276
- region: z.ZodOptional<z.ZodNullable<z.ZodString>>;
6277
- postalCode: z.ZodOptional<z.ZodNullable<z.ZodString>>;
6278
- country: z.ZodOptional<z.ZodNullable<z.ZodString>>;
6279
- }, z.core.$strip>;
6280
- timezone: z.ZodString;
6281
- location: z.ZodObject<{
6282
- latitude: z.ZodNumber;
6283
- longitude: z.ZodNumber;
6284
- }, z.core.$strip>;
6285
- capabilities: z.ZodArray<z.ZodEnum<{
6286
- DELIVERY_OPTIMIZATION: "DELIVERY_OPTIMIZATION";
6287
- }>>;
6288
- openingStatus: z.ZodEnum<{
6289
- OPEN: "OPEN";
6290
- CLOSED: "CLOSED";
6291
- }>;
6292
- nextSyncMenuScheduledAt: z.ZodNullable<z.ZodString>;
6293
- currentMenuVersion: z.ZodType<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id/menu_versions/:menuVersionId"> | null, unknown, z.core.$ZodTypeInternals<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id/menu_versions/:menuVersionId"> | null, unknown>>;
6294
- createdAt: z.ZodString;
6295
- updatedAt: z.ZodString;
6296
- }, z.core.$strip>;
4730
+ pointOfSale: z.ZodType<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id">, unknown, z.core.$ZodTypeInternals<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id">, unknown>>;
6297
4731
  service: z.ZodLiteral<"glovo">;
6298
4732
  data: z.ZodObject<{
6299
4733
  storeId: z.ZodString;
@@ -6331,38 +4765,11 @@ declare class UpdateIntegrationActivationRequest extends AbstractApiRequest<type
6331
4765
  request_sent_partner: "request_sent_partner";
6332
4766
  failed: "failed";
6333
4767
  }>;
6334
- message: z.ZodString;
4768
+ message: z.ZodNullable<z.ZodString>;
6335
4769
  updatedAt: z.ZodString;
6336
4770
  }, z.core.$strip>>>>;
6337
4771
  }, z.core.$strip>, z.ZodObject<{
6338
- pointOfSale: z.ZodObject<{
6339
- id: z.ZodString;
6340
- name: z.ZodString;
6341
- address: z.ZodObject<{
6342
- line1: z.ZodOptional<z.ZodNullable<z.ZodString>>;
6343
- line2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
6344
- city: z.ZodOptional<z.ZodNullable<z.ZodString>>;
6345
- region: z.ZodOptional<z.ZodNullable<z.ZodString>>;
6346
- postalCode: z.ZodOptional<z.ZodNullable<z.ZodString>>;
6347
- country: z.ZodOptional<z.ZodNullable<z.ZodString>>;
6348
- }, z.core.$strip>;
6349
- timezone: z.ZodString;
6350
- location: z.ZodObject<{
6351
- latitude: z.ZodNumber;
6352
- longitude: z.ZodNumber;
6353
- }, z.core.$strip>;
6354
- capabilities: z.ZodArray<z.ZodEnum<{
6355
- DELIVERY_OPTIMIZATION: "DELIVERY_OPTIMIZATION";
6356
- }>>;
6357
- openingStatus: z.ZodEnum<{
6358
- OPEN: "OPEN";
6359
- CLOSED: "CLOSED";
6360
- }>;
6361
- nextSyncMenuScheduledAt: z.ZodNullable<z.ZodString>;
6362
- currentMenuVersion: z.ZodType<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id/menu_versions/:menuVersionId"> | null, unknown, z.core.$ZodTypeInternals<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id/menu_versions/:menuVersionId"> | null, unknown>>;
6363
- createdAt: z.ZodString;
6364
- updatedAt: z.ZodString;
6365
- }, z.core.$strip>;
4772
+ pointOfSale: z.ZodType<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id">, unknown, z.core.$ZodTypeInternals<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id">, unknown>>;
6366
4773
  service: z.ZodLiteral<"justeat">;
6367
4774
  data: z.ZodObject<{
6368
4775
  restaurantId: z.ZodString;
@@ -6400,38 +4807,11 @@ declare class UpdateIntegrationActivationRequest extends AbstractApiRequest<type
6400
4807
  request_sent_partner: "request_sent_partner";
6401
4808
  failed: "failed";
6402
4809
  }>;
6403
- message: z.ZodString;
4810
+ message: z.ZodNullable<z.ZodString>;
6404
4811
  updatedAt: z.ZodString;
6405
4812
  }, z.core.$strip>>>>;
6406
4813
  }, z.core.$strip>, z.ZodObject<{
6407
- pointOfSale: z.ZodObject<{
6408
- id: z.ZodString;
6409
- name: z.ZodString;
6410
- address: z.ZodObject<{
6411
- line1: z.ZodOptional<z.ZodNullable<z.ZodString>>;
6412
- line2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
6413
- city: z.ZodOptional<z.ZodNullable<z.ZodString>>;
6414
- region: z.ZodOptional<z.ZodNullable<z.ZodString>>;
6415
- postalCode: z.ZodOptional<z.ZodNullable<z.ZodString>>;
6416
- country: z.ZodOptional<z.ZodNullable<z.ZodString>>;
6417
- }, z.core.$strip>;
6418
- timezone: z.ZodString;
6419
- location: z.ZodObject<{
6420
- latitude: z.ZodNumber;
6421
- longitude: z.ZodNumber;
6422
- }, z.core.$strip>;
6423
- capabilities: z.ZodArray<z.ZodEnum<{
6424
- DELIVERY_OPTIMIZATION: "DELIVERY_OPTIMIZATION";
6425
- }>>;
6426
- openingStatus: z.ZodEnum<{
6427
- OPEN: "OPEN";
6428
- CLOSED: "CLOSED";
6429
- }>;
6430
- nextSyncMenuScheduledAt: z.ZodNullable<z.ZodString>;
6431
- currentMenuVersion: z.ZodType<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id/menu_versions/:menuVersionId"> | null, unknown, z.core.$ZodTypeInternals<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id/menu_versions/:menuVersionId"> | null, unknown>>;
6432
- createdAt: z.ZodString;
6433
- updatedAt: z.ZodString;
6434
- }, z.core.$strip>;
4814
+ pointOfSale: z.ZodType<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id">, unknown, z.core.$ZodTypeInternals<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id">, unknown>>;
6435
4815
  service: z.ZodLiteral<"cassa_in_cloud">;
6436
4816
  data: z.ZodObject<{
6437
4817
  apiKey: z.ZodString;
@@ -6474,7 +4854,7 @@ declare class UpdateIntegrationActivationRequest extends AbstractApiRequest<type
6474
4854
  request_sent_partner: "request_sent_partner";
6475
4855
  failed: "failed";
6476
4856
  }>;
6477
- message: z.ZodString;
4857
+ message: z.ZodNullable<z.ZodString>;
6478
4858
  updatedAt: z.ZodString;
6479
4859
  }, z.core.$strip>>>>;
6480
4860
  }, z.core.$strip>]>;