@deliverart/sdk-js-integration 2.0.0 → 2.1.1
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.cjs +62 -64
- package/dist/index.d.cts +193 -262
- package/dist/index.d.ts +193 -262
- package/dist/index.js +62 -64
- package/package.json +5 -5
package/dist/index.d.cts
CHANGED
|
@@ -3179,52 +3179,47 @@ declare const getIntegrationActivationRequestsQuerySchema: z.ZodObject<{
|
|
|
3179
3179
|
asc: "asc";
|
|
3180
3180
|
desc: "desc";
|
|
3181
3181
|
}>>;
|
|
3182
|
-
service: z.ZodOptional<z.ZodEnum<{
|
|
3182
|
+
service: z.ZodOptional<z.ZodUnion<readonly [z.ZodEnum<{
|
|
3183
3183
|
cassa_in_cloud: "cassa_in_cloud";
|
|
3184
3184
|
deliveroo: "deliveroo";
|
|
3185
3185
|
justeat: "justeat";
|
|
3186
3186
|
glovo: "glovo";
|
|
3187
|
-
}
|
|
3188
|
-
'service[]': z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
3187
|
+
}>, z.ZodArray<z.ZodEnum<{
|
|
3189
3188
|
cassa_in_cloud: "cassa_in_cloud";
|
|
3190
3189
|
deliveroo: "deliveroo";
|
|
3191
3190
|
justeat: "justeat";
|
|
3192
3191
|
glovo: "glovo";
|
|
3193
|
-
}
|
|
3194
|
-
provider: z.ZodOptional<z.ZodEnum<{
|
|
3192
|
+
}>>]>>;
|
|
3193
|
+
provider: z.ZodOptional<z.ZodUnion<readonly [z.ZodEnum<{
|
|
3195
3194
|
deliverart: "deliverart";
|
|
3196
3195
|
cassa_in_cloud: "cassa_in_cloud";
|
|
3197
|
-
}
|
|
3198
|
-
'provider[]': z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
3196
|
+
}>, z.ZodArray<z.ZodEnum<{
|
|
3199
3197
|
deliverart: "deliverart";
|
|
3200
3198
|
cassa_in_cloud: "cassa_in_cloud";
|
|
3201
|
-
}
|
|
3202
|
-
status: z.ZodOptional<z.ZodEnum<{
|
|
3199
|
+
}>>]>>;
|
|
3200
|
+
status: z.ZodOptional<z.ZodUnion<readonly [z.ZodEnum<{
|
|
3203
3201
|
active: "active";
|
|
3204
3202
|
waiting_for_user: "waiting_for_user";
|
|
3205
3203
|
waiting_for_admin: "waiting_for_admin";
|
|
3206
3204
|
request_sent_partner: "request_sent_partner";
|
|
3207
3205
|
failed: "failed";
|
|
3208
|
-
}
|
|
3209
|
-
'status[]': z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
3206
|
+
}>, z.ZodArray<z.ZodEnum<{
|
|
3210
3207
|
active: "active";
|
|
3211
3208
|
waiting_for_user: "waiting_for_user";
|
|
3212
3209
|
waiting_for_admin: "waiting_for_admin";
|
|
3213
3210
|
request_sent_partner: "request_sent_partner";
|
|
3214
3211
|
failed: "failed";
|
|
3215
|
-
}
|
|
3216
|
-
healthStatus: z.ZodOptional<z.ZodEnum<{
|
|
3212
|
+
}>>]>>;
|
|
3213
|
+
healthStatus: z.ZodOptional<z.ZodUnion<readonly [z.ZodEnum<{
|
|
3217
3214
|
success: "success";
|
|
3218
3215
|
waiting: "waiting";
|
|
3219
3216
|
error: "error";
|
|
3220
|
-
}
|
|
3221
|
-
'healthStatus[]': z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
3217
|
+
}>, z.ZodArray<z.ZodEnum<{
|
|
3222
3218
|
success: "success";
|
|
3223
3219
|
waiting: "waiting";
|
|
3224
3220
|
error: "error";
|
|
3225
|
-
}
|
|
3226
|
-
connectionId: z.ZodOptional<z.ZodString
|
|
3227
|
-
'connectionId[]': z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
3221
|
+
}>>]>>;
|
|
3222
|
+
connectionId: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>>;
|
|
3228
3223
|
page: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
3229
3224
|
'createdAt[before]': z.ZodOptional<z.ZodString>;
|
|
3230
3225
|
'createdAt[strictly_before]': z.ZodOptional<z.ZodString>;
|
|
@@ -3623,52 +3618,47 @@ declare class GetIntegrationActivationRequests extends AbstractApiRequest<typeof
|
|
|
3623
3618
|
asc: "asc";
|
|
3624
3619
|
desc: "desc";
|
|
3625
3620
|
}>>;
|
|
3626
|
-
service: z.ZodOptional<z.ZodEnum<{
|
|
3621
|
+
service: z.ZodOptional<z.ZodUnion<readonly [z.ZodEnum<{
|
|
3627
3622
|
cassa_in_cloud: "cassa_in_cloud";
|
|
3628
3623
|
deliveroo: "deliveroo";
|
|
3629
3624
|
justeat: "justeat";
|
|
3630
3625
|
glovo: "glovo";
|
|
3631
|
-
}
|
|
3632
|
-
'service[]': z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
3626
|
+
}>, z.ZodArray<z.ZodEnum<{
|
|
3633
3627
|
cassa_in_cloud: "cassa_in_cloud";
|
|
3634
3628
|
deliveroo: "deliveroo";
|
|
3635
3629
|
justeat: "justeat";
|
|
3636
3630
|
glovo: "glovo";
|
|
3637
|
-
}
|
|
3638
|
-
provider: z.ZodOptional<z.ZodEnum<{
|
|
3631
|
+
}>>]>>;
|
|
3632
|
+
provider: z.ZodOptional<z.ZodUnion<readonly [z.ZodEnum<{
|
|
3639
3633
|
deliverart: "deliverart";
|
|
3640
3634
|
cassa_in_cloud: "cassa_in_cloud";
|
|
3641
|
-
}
|
|
3642
|
-
'provider[]': z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
3635
|
+
}>, z.ZodArray<z.ZodEnum<{
|
|
3643
3636
|
deliverart: "deliverart";
|
|
3644
3637
|
cassa_in_cloud: "cassa_in_cloud";
|
|
3645
|
-
}
|
|
3646
|
-
status: z.ZodOptional<z.ZodEnum<{
|
|
3638
|
+
}>>]>>;
|
|
3639
|
+
status: z.ZodOptional<z.ZodUnion<readonly [z.ZodEnum<{
|
|
3647
3640
|
active: "active";
|
|
3648
3641
|
waiting_for_user: "waiting_for_user";
|
|
3649
3642
|
waiting_for_admin: "waiting_for_admin";
|
|
3650
3643
|
request_sent_partner: "request_sent_partner";
|
|
3651
3644
|
failed: "failed";
|
|
3652
|
-
}
|
|
3653
|
-
'status[]': z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
3645
|
+
}>, z.ZodArray<z.ZodEnum<{
|
|
3654
3646
|
active: "active";
|
|
3655
3647
|
waiting_for_user: "waiting_for_user";
|
|
3656
3648
|
waiting_for_admin: "waiting_for_admin";
|
|
3657
3649
|
request_sent_partner: "request_sent_partner";
|
|
3658
3650
|
failed: "failed";
|
|
3659
|
-
}
|
|
3660
|
-
healthStatus: z.ZodOptional<z.ZodEnum<{
|
|
3651
|
+
}>>]>>;
|
|
3652
|
+
healthStatus: z.ZodOptional<z.ZodUnion<readonly [z.ZodEnum<{
|
|
3661
3653
|
success: "success";
|
|
3662
3654
|
waiting: "waiting";
|
|
3663
3655
|
error: "error";
|
|
3664
|
-
}
|
|
3665
|
-
'healthStatus[]': z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
3656
|
+
}>, z.ZodArray<z.ZodEnum<{
|
|
3666
3657
|
success: "success";
|
|
3667
3658
|
waiting: "waiting";
|
|
3668
3659
|
error: "error";
|
|
3669
|
-
}
|
|
3670
|
-
connectionId: z.ZodOptional<z.ZodString
|
|
3671
|
-
'connectionId[]': z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
3660
|
+
}>>]>>;
|
|
3661
|
+
connectionId: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>>;
|
|
3672
3662
|
page: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
3673
3663
|
'createdAt[before]': z.ZodOptional<z.ZodString>;
|
|
3674
3664
|
'createdAt[strictly_before]': z.ZodOptional<z.ZodString>;
|
|
@@ -5718,16 +5708,15 @@ declare const getIntegrationCancellationRequestsQuerySchema: z.ZodObject<{
|
|
|
5718
5708
|
asc: "asc";
|
|
5719
5709
|
desc: "desc";
|
|
5720
5710
|
}>>;
|
|
5721
|
-
status: z.ZodOptional<z.ZodEnum<{
|
|
5711
|
+
status: z.ZodOptional<z.ZodUnion<readonly [z.ZodEnum<{
|
|
5722
5712
|
pending: "pending";
|
|
5723
5713
|
aborted: "aborted";
|
|
5724
5714
|
completed: "completed";
|
|
5725
|
-
}
|
|
5726
|
-
'status[]': z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
5715
|
+
}>, z.ZodArray<z.ZodEnum<{
|
|
5727
5716
|
pending: "pending";
|
|
5728
5717
|
aborted: "aborted";
|
|
5729
5718
|
completed: "completed";
|
|
5730
|
-
}
|
|
5719
|
+
}>>]>>;
|
|
5731
5720
|
page: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
5732
5721
|
'createdAt[before]': z.ZodOptional<z.ZodString>;
|
|
5733
5722
|
'createdAt[strictly_before]': z.ZodOptional<z.ZodString>;
|
|
@@ -5796,16 +5785,15 @@ declare class GetIntegrationCancellationRequests extends AbstractApiRequest<type
|
|
|
5796
5785
|
asc: "asc";
|
|
5797
5786
|
desc: "desc";
|
|
5798
5787
|
}>>;
|
|
5799
|
-
status: z.ZodOptional<z.ZodEnum<{
|
|
5788
|
+
status: z.ZodOptional<z.ZodUnion<readonly [z.ZodEnum<{
|
|
5800
5789
|
pending: "pending";
|
|
5801
5790
|
aborted: "aborted";
|
|
5802
5791
|
completed: "completed";
|
|
5803
|
-
}
|
|
5804
|
-
'status[]': z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
5792
|
+
}>, z.ZodArray<z.ZodEnum<{
|
|
5805
5793
|
pending: "pending";
|
|
5806
5794
|
aborted: "aborted";
|
|
5807
5795
|
completed: "completed";
|
|
5808
|
-
}
|
|
5796
|
+
}>>]>>;
|
|
5809
5797
|
page: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
5810
5798
|
'createdAt[before]': z.ZodOptional<z.ZodString>;
|
|
5811
5799
|
'createdAt[strictly_before]': z.ZodOptional<z.ZodString>;
|
|
@@ -6442,18 +6430,16 @@ declare class GetIntegrationDetails extends AbstractApiRequest<typeof getIntegra
|
|
|
6442
6430
|
}
|
|
6443
6431
|
|
|
6444
6432
|
declare const getIntegrationsQuerySchema: z.ZodObject<{
|
|
6445
|
-
status: z.ZodOptional<z.ZodEnum<{
|
|
6433
|
+
status: z.ZodOptional<z.ZodUnion<readonly [z.ZodEnum<{
|
|
6446
6434
|
pending: "pending";
|
|
6447
6435
|
active: "active";
|
|
6448
6436
|
deleting: "deleting";
|
|
6449
|
-
}
|
|
6450
|
-
'status[]': z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
6437
|
+
}>, z.ZodArray<z.ZodEnum<{
|
|
6451
6438
|
pending: "pending";
|
|
6452
6439
|
active: "active";
|
|
6453
6440
|
deleting: "deleting";
|
|
6454
|
-
}
|
|
6455
|
-
connectionId: z.ZodOptional<z.ZodString
|
|
6456
|
-
'connectionId[]': z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
6441
|
+
}>>]>>;
|
|
6442
|
+
connectionId: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>>;
|
|
6457
6443
|
service: z.ZodOptional<z.ZodEnum<{
|
|
6458
6444
|
cassa_in_cloud: "cassa_in_cloud";
|
|
6459
6445
|
deliveroo: "deliveroo";
|
|
@@ -6794,18 +6780,16 @@ declare class GetIntegrations extends AbstractApiRequest<typeof getIntegrationsI
|
|
|
6794
6780
|
}, z.core.$strip>;
|
|
6795
6781
|
}, z.core.$strip>;
|
|
6796
6782
|
readonly querySchema: z.ZodObject<{
|
|
6797
|
-
status: z.ZodOptional<z.ZodEnum<{
|
|
6783
|
+
status: z.ZodOptional<z.ZodUnion<readonly [z.ZodEnum<{
|
|
6798
6784
|
pending: "pending";
|
|
6799
6785
|
active: "active";
|
|
6800
6786
|
deleting: "deleting";
|
|
6801
|
-
}
|
|
6802
|
-
'status[]': z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
6787
|
+
}>, z.ZodArray<z.ZodEnum<{
|
|
6803
6788
|
pending: "pending";
|
|
6804
6789
|
active: "active";
|
|
6805
6790
|
deleting: "deleting";
|
|
6806
|
-
}
|
|
6807
|
-
connectionId: z.ZodOptional<z.ZodString
|
|
6808
|
-
'connectionId[]': z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
6791
|
+
}>>]>>;
|
|
6792
|
+
connectionId: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>>;
|
|
6809
6793
|
service: z.ZodOptional<z.ZodEnum<{
|
|
6810
6794
|
cassa_in_cloud: "cassa_in_cloud";
|
|
6811
6795
|
deliveroo: "deliveroo";
|
|
@@ -7016,7 +7000,7 @@ declare const integrationCassaInCloudWebHookEventsQuerySchema: z.ZodObject<{
|
|
|
7016
7000
|
asc: "asc";
|
|
7017
7001
|
desc: "desc";
|
|
7018
7002
|
}>>;
|
|
7019
|
-
entity: z.ZodOptional<z.ZodEnum<{
|
|
7003
|
+
entity: z.ZodOptional<z.ZodUnion<readonly [z.ZodEnum<{
|
|
7020
7004
|
BILL: "BILL";
|
|
7021
7005
|
RECEIPT: "RECEIPT";
|
|
7022
7006
|
CREDIT_NOTE: "CREDIT_NOTE";
|
|
@@ -7028,8 +7012,7 @@ declare const integrationCassaInCloudWebHookEventsQuerySchema: z.ZodObject<{
|
|
|
7028
7012
|
STOCK_MOVEMENT: "STOCK_MOVEMENT";
|
|
7029
7013
|
CUSTOMER: "CUSTOMER";
|
|
7030
7014
|
ORGANIZATION: "ORGANIZATION";
|
|
7031
|
-
}
|
|
7032
|
-
'entity[]': z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
7015
|
+
}>, z.ZodArray<z.ZodEnum<{
|
|
7033
7016
|
BILL: "BILL";
|
|
7034
7017
|
RECEIPT: "RECEIPT";
|
|
7035
7018
|
CREDIT_NOTE: "CREDIT_NOTE";
|
|
@@ -7041,17 +7024,16 @@ declare const integrationCassaInCloudWebHookEventsQuerySchema: z.ZodObject<{
|
|
|
7041
7024
|
STOCK_MOVEMENT: "STOCK_MOVEMENT";
|
|
7042
7025
|
CUSTOMER: "CUSTOMER";
|
|
7043
7026
|
ORGANIZATION: "ORGANIZATION";
|
|
7044
|
-
}
|
|
7045
|
-
event: z.ZodOptional<z.ZodEnum<{
|
|
7027
|
+
}>>]>>;
|
|
7028
|
+
event: z.ZodOptional<z.ZodUnion<readonly [z.ZodEnum<{
|
|
7046
7029
|
DELETE: "DELETE";
|
|
7047
7030
|
CREATE: "CREATE";
|
|
7048
7031
|
UPDATE: "UPDATE";
|
|
7049
|
-
}
|
|
7050
|
-
'event[]': z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
7032
|
+
}>, z.ZodArray<z.ZodEnum<{
|
|
7051
7033
|
DELETE: "DELETE";
|
|
7052
7034
|
CREATE: "CREATE";
|
|
7053
7035
|
UPDATE: "UPDATE";
|
|
7054
|
-
}
|
|
7036
|
+
}>>]>>;
|
|
7055
7037
|
'createdAt[before]': z.ZodOptional<z.ZodString>;
|
|
7056
7038
|
'createdAt[strictly_before]': z.ZodOptional<z.ZodString>;
|
|
7057
7039
|
'createdAt[after]': z.ZodOptional<z.ZodString>;
|
|
@@ -7314,20 +7296,19 @@ declare const clientLogRequestQuerySchema: z.ZodObject<{
|
|
|
7314
7296
|
asc: "asc";
|
|
7315
7297
|
desc: "desc";
|
|
7316
7298
|
}>>;
|
|
7317
|
-
method: z.ZodOptional<z.ZodEnum<{
|
|
7299
|
+
method: z.ZodOptional<z.ZodUnion<readonly [z.ZodEnum<{
|
|
7318
7300
|
DELETE: "DELETE";
|
|
7319
7301
|
GET: "GET";
|
|
7320
7302
|
PATCH: "PATCH";
|
|
7321
7303
|
POST: "POST";
|
|
7322
7304
|
PUT: "PUT";
|
|
7323
|
-
}
|
|
7324
|
-
'method[]': z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
7305
|
+
}>, z.ZodArray<z.ZodEnum<{
|
|
7325
7306
|
DELETE: "DELETE";
|
|
7326
7307
|
GET: "GET";
|
|
7327
7308
|
PATCH: "PATCH";
|
|
7328
7309
|
POST: "POST";
|
|
7329
7310
|
PUT: "PUT";
|
|
7330
|
-
}
|
|
7311
|
+
}>>]>>;
|
|
7331
7312
|
'statusCode[between]': z.ZodOptional<z.ZodNumber>;
|
|
7332
7313
|
'statusCode[gt]': z.ZodOptional<z.ZodNumber>;
|
|
7333
7314
|
'statusCode[gte]': z.ZodOptional<z.ZodNumber>;
|
|
@@ -7398,20 +7379,19 @@ declare const getIntegrationCassaInCloudClientLogRequestsQuerySchema: z.ZodObjec
|
|
|
7398
7379
|
asc: "asc";
|
|
7399
7380
|
desc: "desc";
|
|
7400
7381
|
}>>;
|
|
7401
|
-
method: z.ZodOptional<z.ZodEnum<{
|
|
7382
|
+
method: z.ZodOptional<z.ZodUnion<readonly [z.ZodEnum<{
|
|
7402
7383
|
DELETE: "DELETE";
|
|
7403
7384
|
GET: "GET";
|
|
7404
7385
|
PATCH: "PATCH";
|
|
7405
7386
|
POST: "POST";
|
|
7406
7387
|
PUT: "PUT";
|
|
7407
|
-
}
|
|
7408
|
-
'method[]': z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
7388
|
+
}>, z.ZodArray<z.ZodEnum<{
|
|
7409
7389
|
DELETE: "DELETE";
|
|
7410
7390
|
GET: "GET";
|
|
7411
7391
|
PATCH: "PATCH";
|
|
7412
7392
|
POST: "POST";
|
|
7413
7393
|
PUT: "PUT";
|
|
7414
|
-
}
|
|
7394
|
+
}>>]>>;
|
|
7415
7395
|
'statusCode[between]': z.ZodOptional<z.ZodNumber>;
|
|
7416
7396
|
'statusCode[gt]': z.ZodOptional<z.ZodNumber>;
|
|
7417
7397
|
'statusCode[gte]': z.ZodOptional<z.ZodNumber>;
|
|
@@ -7483,20 +7463,19 @@ declare class GetIntegrationCassaInCloudClientLogRequests extends AbstractApiReq
|
|
|
7483
7463
|
asc: "asc";
|
|
7484
7464
|
desc: "desc";
|
|
7485
7465
|
}>>;
|
|
7486
|
-
method: z.ZodOptional<z.ZodEnum<{
|
|
7466
|
+
method: z.ZodOptional<z.ZodUnion<readonly [z.ZodEnum<{
|
|
7487
7467
|
DELETE: "DELETE";
|
|
7488
7468
|
GET: "GET";
|
|
7489
7469
|
PATCH: "PATCH";
|
|
7490
7470
|
POST: "POST";
|
|
7491
7471
|
PUT: "PUT";
|
|
7492
|
-
}
|
|
7493
|
-
'method[]': z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
7472
|
+
}>, z.ZodArray<z.ZodEnum<{
|
|
7494
7473
|
DELETE: "DELETE";
|
|
7495
7474
|
GET: "GET";
|
|
7496
7475
|
PATCH: "PATCH";
|
|
7497
7476
|
POST: "POST";
|
|
7498
7477
|
PUT: "PUT";
|
|
7499
|
-
}
|
|
7478
|
+
}>>]>>;
|
|
7500
7479
|
'statusCode[between]': z.ZodOptional<z.ZodNumber>;
|
|
7501
7480
|
'statusCode[gt]': z.ZodOptional<z.ZodNumber>;
|
|
7502
7481
|
'statusCode[gte]': z.ZodOptional<z.ZodNumber>;
|
|
@@ -7611,18 +7590,25 @@ declare class GetIntegrationCassaInCloudDetails extends AbstractApiRequest<typeo
|
|
|
7611
7590
|
}
|
|
7612
7591
|
|
|
7613
7592
|
declare const getIntegrationCassaInCloudListQuerySchema: z.ZodObject<{
|
|
7614
|
-
direction: z.ZodOptional<z.ZodEnum<{
|
|
7593
|
+
direction: z.ZodOptional<z.ZodUnion<readonly [z.ZodEnum<{
|
|
7615
7594
|
EXTERNAL_TO_INTERNAL: "EXTERNAL_TO_INTERNAL";
|
|
7616
7595
|
INTERNAL_TO_EXTERNAL: "INTERNAL_TO_EXTERNAL";
|
|
7617
|
-
}
|
|
7618
|
-
|
|
7619
|
-
|
|
7620
|
-
|
|
7596
|
+
}>, z.ZodArray<z.ZodEnum<{
|
|
7597
|
+
EXTERNAL_TO_INTERNAL: "EXTERNAL_TO_INTERNAL";
|
|
7598
|
+
INTERNAL_TO_EXTERNAL: "INTERNAL_TO_EXTERNAL";
|
|
7599
|
+
}>>]>>;
|
|
7600
|
+
apiKey: z.ZodOptional<z.ZodUnion<readonly [z.ZodOptional<z.ZodString>, z.ZodArray<z.ZodString>]>>;
|
|
7601
|
+
idSalesPoint: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>>;
|
|
7602
|
+
status: z.ZodOptional<z.ZodUnion<readonly [z.ZodEnum<{
|
|
7621
7603
|
pending: "pending";
|
|
7622
7604
|
active: "active";
|
|
7623
7605
|
deleting: "deleting";
|
|
7624
|
-
}
|
|
7625
|
-
|
|
7606
|
+
}>, z.ZodArray<z.ZodEnum<{
|
|
7607
|
+
pending: "pending";
|
|
7608
|
+
active: "active";
|
|
7609
|
+
deleting: "deleting";
|
|
7610
|
+
}>>]>>;
|
|
7611
|
+
connectionId: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>>;
|
|
7626
7612
|
'order[createdAt]': z.ZodOptional<z.ZodEnum<{
|
|
7627
7613
|
asc: "asc";
|
|
7628
7614
|
desc: "desc";
|
|
@@ -7631,12 +7617,6 @@ declare const getIntegrationCassaInCloudListQuerySchema: z.ZodObject<{
|
|
|
7631
7617
|
asc: "asc";
|
|
7632
7618
|
desc: "desc";
|
|
7633
7619
|
}>>;
|
|
7634
|
-
'status[]': z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
7635
|
-
pending: "pending";
|
|
7636
|
-
active: "active";
|
|
7637
|
-
deleting: "deleting";
|
|
7638
|
-
}>>>;
|
|
7639
|
-
'connectionId[]': z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
7640
7620
|
page: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
7641
7621
|
'createdAt[before]': z.ZodOptional<z.ZodString>;
|
|
7642
7622
|
'createdAt[strictly_before]': z.ZodOptional<z.ZodString>;
|
|
@@ -7653,12 +7633,6 @@ declare const getIntegrationCassaInCloudListQuerySchema: z.ZodObject<{
|
|
|
7653
7633
|
asc: "asc";
|
|
7654
7634
|
desc: "desc";
|
|
7655
7635
|
}>>;
|
|
7656
|
-
'apiKey[]': z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
7657
|
-
'idSalesPoint[]': z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
7658
|
-
'direction[]': z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
7659
|
-
EXTERNAL_TO_INTERNAL: "EXTERNAL_TO_INTERNAL";
|
|
7660
|
-
INTERNAL_TO_EXTERNAL: "INTERNAL_TO_EXTERNAL";
|
|
7661
|
-
}>>>;
|
|
7662
7636
|
'latestMenuSyncAt[before]': z.ZodOptional<z.ZodString>;
|
|
7663
7637
|
'latestMenuSyncAt[strictly_before]': z.ZodOptional<z.ZodString>;
|
|
7664
7638
|
'latestMenuSyncAt[after]': z.ZodOptional<z.ZodString>;
|
|
@@ -7770,18 +7744,25 @@ declare class GetIntegrationCassaInCloudList extends AbstractApiRequest<typeof g
|
|
|
7770
7744
|
}, z.core.$strip>;
|
|
7771
7745
|
}, z.core.$strip>;
|
|
7772
7746
|
readonly querySchema: z.ZodObject<{
|
|
7773
|
-
direction: z.ZodOptional<z.ZodEnum<{
|
|
7747
|
+
direction: z.ZodOptional<z.ZodUnion<readonly [z.ZodEnum<{
|
|
7774
7748
|
EXTERNAL_TO_INTERNAL: "EXTERNAL_TO_INTERNAL";
|
|
7775
7749
|
INTERNAL_TO_EXTERNAL: "INTERNAL_TO_EXTERNAL";
|
|
7776
|
-
}
|
|
7777
|
-
|
|
7778
|
-
|
|
7779
|
-
|
|
7750
|
+
}>, z.ZodArray<z.ZodEnum<{
|
|
7751
|
+
EXTERNAL_TO_INTERNAL: "EXTERNAL_TO_INTERNAL";
|
|
7752
|
+
INTERNAL_TO_EXTERNAL: "INTERNAL_TO_EXTERNAL";
|
|
7753
|
+
}>>]>>;
|
|
7754
|
+
apiKey: z.ZodOptional<z.ZodUnion<readonly [z.ZodOptional<z.ZodString>, z.ZodArray<z.ZodString>]>>;
|
|
7755
|
+
idSalesPoint: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>>;
|
|
7756
|
+
status: z.ZodOptional<z.ZodUnion<readonly [z.ZodEnum<{
|
|
7780
7757
|
pending: "pending";
|
|
7781
7758
|
active: "active";
|
|
7782
7759
|
deleting: "deleting";
|
|
7783
|
-
}
|
|
7784
|
-
|
|
7760
|
+
}>, z.ZodArray<z.ZodEnum<{
|
|
7761
|
+
pending: "pending";
|
|
7762
|
+
active: "active";
|
|
7763
|
+
deleting: "deleting";
|
|
7764
|
+
}>>]>>;
|
|
7765
|
+
connectionId: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>>;
|
|
7785
7766
|
'order[createdAt]': z.ZodOptional<z.ZodEnum<{
|
|
7786
7767
|
asc: "asc";
|
|
7787
7768
|
desc: "desc";
|
|
@@ -7790,12 +7771,6 @@ declare class GetIntegrationCassaInCloudList extends AbstractApiRequest<typeof g
|
|
|
7790
7771
|
asc: "asc";
|
|
7791
7772
|
desc: "desc";
|
|
7792
7773
|
}>>;
|
|
7793
|
-
'status[]': z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
7794
|
-
pending: "pending";
|
|
7795
|
-
active: "active";
|
|
7796
|
-
deleting: "deleting";
|
|
7797
|
-
}>>>;
|
|
7798
|
-
'connectionId[]': z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
7799
7774
|
page: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
7800
7775
|
'createdAt[before]': z.ZodOptional<z.ZodString>;
|
|
7801
7776
|
'createdAt[strictly_before]': z.ZodOptional<z.ZodString>;
|
|
@@ -7812,12 +7787,6 @@ declare class GetIntegrationCassaInCloudList extends AbstractApiRequest<typeof g
|
|
|
7812
7787
|
asc: "asc";
|
|
7813
7788
|
desc: "desc";
|
|
7814
7789
|
}>>;
|
|
7815
|
-
'apiKey[]': z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
7816
|
-
'idSalesPoint[]': z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
7817
|
-
'direction[]': z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
7818
|
-
EXTERNAL_TO_INTERNAL: "EXTERNAL_TO_INTERNAL";
|
|
7819
|
-
INTERNAL_TO_EXTERNAL: "INTERNAL_TO_EXTERNAL";
|
|
7820
|
-
}>>>;
|
|
7821
7790
|
'latestMenuSyncAt[before]': z.ZodOptional<z.ZodString>;
|
|
7822
7791
|
'latestMenuSyncAt[strictly_before]': z.ZodOptional<z.ZodString>;
|
|
7823
7792
|
'latestMenuSyncAt[after]': z.ZodOptional<z.ZodString>;
|
|
@@ -8000,7 +7969,7 @@ declare const getIntegrationCassaInCloudWebHookEventsQuerySchema: z.ZodObject<{
|
|
|
8000
7969
|
asc: "asc";
|
|
8001
7970
|
desc: "desc";
|
|
8002
7971
|
}>>;
|
|
8003
|
-
entity: z.ZodOptional<z.ZodEnum<{
|
|
7972
|
+
entity: z.ZodOptional<z.ZodUnion<readonly [z.ZodEnum<{
|
|
8004
7973
|
BILL: "BILL";
|
|
8005
7974
|
RECEIPT: "RECEIPT";
|
|
8006
7975
|
CREDIT_NOTE: "CREDIT_NOTE";
|
|
@@ -8012,8 +7981,7 @@ declare const getIntegrationCassaInCloudWebHookEventsQuerySchema: z.ZodObject<{
|
|
|
8012
7981
|
STOCK_MOVEMENT: "STOCK_MOVEMENT";
|
|
8013
7982
|
CUSTOMER: "CUSTOMER";
|
|
8014
7983
|
ORGANIZATION: "ORGANIZATION";
|
|
8015
|
-
}
|
|
8016
|
-
'entity[]': z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
7984
|
+
}>, z.ZodArray<z.ZodEnum<{
|
|
8017
7985
|
BILL: "BILL";
|
|
8018
7986
|
RECEIPT: "RECEIPT";
|
|
8019
7987
|
CREDIT_NOTE: "CREDIT_NOTE";
|
|
@@ -8025,17 +7993,16 @@ declare const getIntegrationCassaInCloudWebHookEventsQuerySchema: z.ZodObject<{
|
|
|
8025
7993
|
STOCK_MOVEMENT: "STOCK_MOVEMENT";
|
|
8026
7994
|
CUSTOMER: "CUSTOMER";
|
|
8027
7995
|
ORGANIZATION: "ORGANIZATION";
|
|
8028
|
-
}
|
|
8029
|
-
event: z.ZodOptional<z.ZodEnum<{
|
|
7996
|
+
}>>]>>;
|
|
7997
|
+
event: z.ZodOptional<z.ZodUnion<readonly [z.ZodEnum<{
|
|
8030
7998
|
DELETE: "DELETE";
|
|
8031
7999
|
CREATE: "CREATE";
|
|
8032
8000
|
UPDATE: "UPDATE";
|
|
8033
|
-
}
|
|
8034
|
-
'event[]': z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
8001
|
+
}>, z.ZodArray<z.ZodEnum<{
|
|
8035
8002
|
DELETE: "DELETE";
|
|
8036
8003
|
CREATE: "CREATE";
|
|
8037
8004
|
UPDATE: "UPDATE";
|
|
8038
|
-
}
|
|
8005
|
+
}>>]>>;
|
|
8039
8006
|
'createdAt[before]': z.ZodOptional<z.ZodString>;
|
|
8040
8007
|
'createdAt[strictly_before]': z.ZodOptional<z.ZodString>;
|
|
8041
8008
|
'createdAt[after]': z.ZodOptional<z.ZodString>;
|
|
@@ -8122,7 +8089,7 @@ declare class GetIntegrationCassaInCloudWebHookEvents extends AbstractApiRequest
|
|
|
8122
8089
|
asc: "asc";
|
|
8123
8090
|
desc: "desc";
|
|
8124
8091
|
}>>;
|
|
8125
|
-
entity: z.ZodOptional<z.ZodEnum<{
|
|
8092
|
+
entity: z.ZodOptional<z.ZodUnion<readonly [z.ZodEnum<{
|
|
8126
8093
|
BILL: "BILL";
|
|
8127
8094
|
RECEIPT: "RECEIPT";
|
|
8128
8095
|
CREDIT_NOTE: "CREDIT_NOTE";
|
|
@@ -8134,8 +8101,7 @@ declare class GetIntegrationCassaInCloudWebHookEvents extends AbstractApiRequest
|
|
|
8134
8101
|
STOCK_MOVEMENT: "STOCK_MOVEMENT";
|
|
8135
8102
|
CUSTOMER: "CUSTOMER";
|
|
8136
8103
|
ORGANIZATION: "ORGANIZATION";
|
|
8137
|
-
}
|
|
8138
|
-
'entity[]': z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
8104
|
+
}>, z.ZodArray<z.ZodEnum<{
|
|
8139
8105
|
BILL: "BILL";
|
|
8140
8106
|
RECEIPT: "RECEIPT";
|
|
8141
8107
|
CREDIT_NOTE: "CREDIT_NOTE";
|
|
@@ -8147,17 +8113,16 @@ declare class GetIntegrationCassaInCloudWebHookEvents extends AbstractApiRequest
|
|
|
8147
8113
|
STOCK_MOVEMENT: "STOCK_MOVEMENT";
|
|
8148
8114
|
CUSTOMER: "CUSTOMER";
|
|
8149
8115
|
ORGANIZATION: "ORGANIZATION";
|
|
8150
|
-
}
|
|
8151
|
-
event: z.ZodOptional<z.ZodEnum<{
|
|
8116
|
+
}>>]>>;
|
|
8117
|
+
event: z.ZodOptional<z.ZodUnion<readonly [z.ZodEnum<{
|
|
8152
8118
|
DELETE: "DELETE";
|
|
8153
8119
|
CREATE: "CREATE";
|
|
8154
8120
|
UPDATE: "UPDATE";
|
|
8155
|
-
}
|
|
8156
|
-
'event[]': z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
8121
|
+
}>, z.ZodArray<z.ZodEnum<{
|
|
8157
8122
|
DELETE: "DELETE";
|
|
8158
8123
|
CREATE: "CREATE";
|
|
8159
8124
|
UPDATE: "UPDATE";
|
|
8160
|
-
}
|
|
8125
|
+
}>>]>>;
|
|
8161
8126
|
'createdAt[before]': z.ZodOptional<z.ZodString>;
|
|
8162
8127
|
'createdAt[strictly_before]': z.ZodOptional<z.ZodString>;
|
|
8163
8128
|
'createdAt[after]': z.ZodOptional<z.ZodString>;
|
|
@@ -8545,18 +8510,17 @@ declare const integrationDeliverooWebhookEventsQueryParamsSchema: z.ZodObject<{
|
|
|
8545
8510
|
asc: "asc";
|
|
8546
8511
|
desc: "desc";
|
|
8547
8512
|
}>>;
|
|
8548
|
-
event: z.ZodOptional<z.ZodEnum<{
|
|
8513
|
+
event: z.ZodOptional<z.ZodUnion<readonly [z.ZodEnum<{
|
|
8549
8514
|
"order.new": "order.new";
|
|
8550
8515
|
"order.status_update": "order.status_update";
|
|
8551
8516
|
"rider.status_update": "rider.status_update";
|
|
8552
8517
|
"menu.upload_result": "menu.upload_result";
|
|
8553
|
-
}
|
|
8554
|
-
'event[]': z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
8518
|
+
}>, z.ZodArray<z.ZodEnum<{
|
|
8555
8519
|
"order.new": "order.new";
|
|
8556
8520
|
"order.status_update": "order.status_update";
|
|
8557
8521
|
"rider.status_update": "rider.status_update";
|
|
8558
8522
|
"menu.upload_result": "menu.upload_result";
|
|
8559
|
-
}
|
|
8523
|
+
}>>]>>;
|
|
8560
8524
|
'createdAt[before]': z.ZodOptional<z.ZodString>;
|
|
8561
8525
|
'createdAt[strictly_before]': z.ZodOptional<z.ZodString>;
|
|
8562
8526
|
'createdAt[after]': z.ZodOptional<z.ZodString>;
|
|
@@ -8757,20 +8721,19 @@ declare const getIntegrationDeliverooClientLogRequestsQuerySchema: z.ZodObject<{
|
|
|
8757
8721
|
asc: "asc";
|
|
8758
8722
|
desc: "desc";
|
|
8759
8723
|
}>>;
|
|
8760
|
-
method: z.ZodOptional<z.ZodEnum<{
|
|
8724
|
+
method: z.ZodOptional<z.ZodUnion<readonly [z.ZodEnum<{
|
|
8761
8725
|
DELETE: "DELETE";
|
|
8762
8726
|
GET: "GET";
|
|
8763
8727
|
PATCH: "PATCH";
|
|
8764
8728
|
POST: "POST";
|
|
8765
8729
|
PUT: "PUT";
|
|
8766
|
-
}
|
|
8767
|
-
'method[]': z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
8730
|
+
}>, z.ZodArray<z.ZodEnum<{
|
|
8768
8731
|
DELETE: "DELETE";
|
|
8769
8732
|
GET: "GET";
|
|
8770
8733
|
PATCH: "PATCH";
|
|
8771
8734
|
POST: "POST";
|
|
8772
8735
|
PUT: "PUT";
|
|
8773
|
-
}
|
|
8736
|
+
}>>]>>;
|
|
8774
8737
|
'statusCode[between]': z.ZodOptional<z.ZodNumber>;
|
|
8775
8738
|
'statusCode[gt]': z.ZodOptional<z.ZodNumber>;
|
|
8776
8739
|
'statusCode[gte]': z.ZodOptional<z.ZodNumber>;
|
|
@@ -8842,20 +8805,19 @@ declare class GetIntegrationDeliverooClientLogRequests extends AbstractApiReques
|
|
|
8842
8805
|
asc: "asc";
|
|
8843
8806
|
desc: "desc";
|
|
8844
8807
|
}>>;
|
|
8845
|
-
method: z.ZodOptional<z.ZodEnum<{
|
|
8808
|
+
method: z.ZodOptional<z.ZodUnion<readonly [z.ZodEnum<{
|
|
8846
8809
|
DELETE: "DELETE";
|
|
8847
8810
|
GET: "GET";
|
|
8848
8811
|
PATCH: "PATCH";
|
|
8849
8812
|
POST: "POST";
|
|
8850
8813
|
PUT: "PUT";
|
|
8851
|
-
}
|
|
8852
|
-
'method[]': z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
8814
|
+
}>, z.ZodArray<z.ZodEnum<{
|
|
8853
8815
|
DELETE: "DELETE";
|
|
8854
8816
|
GET: "GET";
|
|
8855
8817
|
PATCH: "PATCH";
|
|
8856
8818
|
POST: "POST";
|
|
8857
8819
|
PUT: "PUT";
|
|
8858
|
-
}
|
|
8820
|
+
}>>]>>;
|
|
8859
8821
|
'statusCode[between]': z.ZodOptional<z.ZodNumber>;
|
|
8860
8822
|
'statusCode[gt]': z.ZodOptional<z.ZodNumber>;
|
|
8861
8823
|
'statusCode[gte]': z.ZodOptional<z.ZodNumber>;
|
|
@@ -8966,14 +8928,18 @@ declare class GetIntegrationDeliverooDetails extends AbstractApiRequest<typeof g
|
|
|
8966
8928
|
}
|
|
8967
8929
|
|
|
8968
8930
|
declare const getIntegrationDeliverooListQuerySchema: z.ZodObject<{
|
|
8969
|
-
brandId: z.ZodOptional<z.ZodString
|
|
8970
|
-
siteId: z.ZodOptional<z.ZodString
|
|
8971
|
-
status: z.ZodOptional<z.ZodEnum<{
|
|
8931
|
+
brandId: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>>;
|
|
8932
|
+
siteId: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>>;
|
|
8933
|
+
status: z.ZodOptional<z.ZodUnion<readonly [z.ZodEnum<{
|
|
8972
8934
|
pending: "pending";
|
|
8973
8935
|
active: "active";
|
|
8974
8936
|
deleting: "deleting";
|
|
8975
|
-
}
|
|
8976
|
-
|
|
8937
|
+
}>, z.ZodArray<z.ZodEnum<{
|
|
8938
|
+
pending: "pending";
|
|
8939
|
+
active: "active";
|
|
8940
|
+
deleting: "deleting";
|
|
8941
|
+
}>>]>>;
|
|
8942
|
+
connectionId: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>>;
|
|
8977
8943
|
name: z.ZodOptional<z.ZodString>;
|
|
8978
8944
|
'order[createdAt]': z.ZodOptional<z.ZodEnum<{
|
|
8979
8945
|
asc: "asc";
|
|
@@ -8983,12 +8949,6 @@ declare const getIntegrationDeliverooListQuerySchema: z.ZodObject<{
|
|
|
8983
8949
|
asc: "asc";
|
|
8984
8950
|
desc: "desc";
|
|
8985
8951
|
}>>;
|
|
8986
|
-
'status[]': z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
8987
|
-
pending: "pending";
|
|
8988
|
-
active: "active";
|
|
8989
|
-
deleting: "deleting";
|
|
8990
|
-
}>>>;
|
|
8991
|
-
'connectionId[]': z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
8992
8952
|
page: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
8993
8953
|
'createdAt[before]': z.ZodOptional<z.ZodString>;
|
|
8994
8954
|
'createdAt[strictly_before]': z.ZodOptional<z.ZodString>;
|
|
@@ -9016,8 +8976,6 @@ declare const getIntegrationDeliverooListQuerySchema: z.ZodObject<{
|
|
|
9016
8976
|
asc: "asc";
|
|
9017
8977
|
desc: "desc";
|
|
9018
8978
|
}>>;
|
|
9019
|
-
'brandId[]': z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
9020
|
-
'siteId[]': z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
9021
8979
|
'latestMenuCheckAt[before]': z.ZodOptional<z.ZodString>;
|
|
9022
8980
|
'latestMenuCheckAt[strictly_before]': z.ZodOptional<z.ZodString>;
|
|
9023
8981
|
'latestMenuCheckAt[after]': z.ZodOptional<z.ZodString>;
|
|
@@ -9128,14 +9086,18 @@ declare class GetIntegrationDeliverooList extends AbstractApiRequest<typeof getI
|
|
|
9128
9086
|
}, z.core.$strip>;
|
|
9129
9087
|
}, z.core.$strip>;
|
|
9130
9088
|
readonly querySchema: z.ZodObject<{
|
|
9131
|
-
brandId: z.ZodOptional<z.ZodString
|
|
9132
|
-
siteId: z.ZodOptional<z.ZodString
|
|
9133
|
-
status: z.ZodOptional<z.ZodEnum<{
|
|
9089
|
+
brandId: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>>;
|
|
9090
|
+
siteId: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>>;
|
|
9091
|
+
status: z.ZodOptional<z.ZodUnion<readonly [z.ZodEnum<{
|
|
9134
9092
|
pending: "pending";
|
|
9135
9093
|
active: "active";
|
|
9136
9094
|
deleting: "deleting";
|
|
9137
|
-
}
|
|
9138
|
-
|
|
9095
|
+
}>, z.ZodArray<z.ZodEnum<{
|
|
9096
|
+
pending: "pending";
|
|
9097
|
+
active: "active";
|
|
9098
|
+
deleting: "deleting";
|
|
9099
|
+
}>>]>>;
|
|
9100
|
+
connectionId: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>>;
|
|
9139
9101
|
name: z.ZodOptional<z.ZodString>;
|
|
9140
9102
|
'order[createdAt]': z.ZodOptional<z.ZodEnum<{
|
|
9141
9103
|
asc: "asc";
|
|
@@ -9145,12 +9107,6 @@ declare class GetIntegrationDeliverooList extends AbstractApiRequest<typeof getI
|
|
|
9145
9107
|
asc: "asc";
|
|
9146
9108
|
desc: "desc";
|
|
9147
9109
|
}>>;
|
|
9148
|
-
'status[]': z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
9149
|
-
pending: "pending";
|
|
9150
|
-
active: "active";
|
|
9151
|
-
deleting: "deleting";
|
|
9152
|
-
}>>>;
|
|
9153
|
-
'connectionId[]': z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
9154
9110
|
page: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
9155
9111
|
'createdAt[before]': z.ZodOptional<z.ZodString>;
|
|
9156
9112
|
'createdAt[strictly_before]': z.ZodOptional<z.ZodString>;
|
|
@@ -9178,8 +9134,6 @@ declare class GetIntegrationDeliverooList extends AbstractApiRequest<typeof getI
|
|
|
9178
9134
|
asc: "asc";
|
|
9179
9135
|
desc: "desc";
|
|
9180
9136
|
}>>;
|
|
9181
|
-
'brandId[]': z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
9182
|
-
'siteId[]': z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
9183
9137
|
'latestMenuCheckAt[before]': z.ZodOptional<z.ZodString>;
|
|
9184
9138
|
'latestMenuCheckAt[strictly_before]': z.ZodOptional<z.ZodString>;
|
|
9185
9139
|
'latestMenuCheckAt[after]': z.ZodOptional<z.ZodString>;
|
|
@@ -9438,18 +9392,17 @@ declare const getIntegrationDeliverooWebhookEventsQuerySchema: z.ZodObject<{
|
|
|
9438
9392
|
asc: "asc";
|
|
9439
9393
|
desc: "desc";
|
|
9440
9394
|
}>>;
|
|
9441
|
-
event: z.ZodOptional<z.ZodEnum<{
|
|
9395
|
+
event: z.ZodOptional<z.ZodUnion<readonly [z.ZodEnum<{
|
|
9442
9396
|
"order.new": "order.new";
|
|
9443
9397
|
"order.status_update": "order.status_update";
|
|
9444
9398
|
"rider.status_update": "rider.status_update";
|
|
9445
9399
|
"menu.upload_result": "menu.upload_result";
|
|
9446
|
-
}
|
|
9447
|
-
'event[]': z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
9400
|
+
}>, z.ZodArray<z.ZodEnum<{
|
|
9448
9401
|
"order.new": "order.new";
|
|
9449
9402
|
"order.status_update": "order.status_update";
|
|
9450
9403
|
"rider.status_update": "rider.status_update";
|
|
9451
9404
|
"menu.upload_result": "menu.upload_result";
|
|
9452
|
-
}
|
|
9405
|
+
}>>]>>;
|
|
9453
9406
|
'createdAt[before]': z.ZodOptional<z.ZodString>;
|
|
9454
9407
|
'createdAt[strictly_before]': z.ZodOptional<z.ZodString>;
|
|
9455
9408
|
'createdAt[after]': z.ZodOptional<z.ZodString>;
|
|
@@ -9512,18 +9465,17 @@ declare class GetIntegrationDeliverooWebhookEvents extends AbstractApiRequest<ty
|
|
|
9512
9465
|
asc: "asc";
|
|
9513
9466
|
desc: "desc";
|
|
9514
9467
|
}>>;
|
|
9515
|
-
event: z.ZodOptional<z.ZodEnum<{
|
|
9468
|
+
event: z.ZodOptional<z.ZodUnion<readonly [z.ZodEnum<{
|
|
9516
9469
|
"order.new": "order.new";
|
|
9517
9470
|
"order.status_update": "order.status_update";
|
|
9518
9471
|
"rider.status_update": "rider.status_update";
|
|
9519
9472
|
"menu.upload_result": "menu.upload_result";
|
|
9520
|
-
}
|
|
9521
|
-
'event[]': z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
9473
|
+
}>, z.ZodArray<z.ZodEnum<{
|
|
9522
9474
|
"order.new": "order.new";
|
|
9523
9475
|
"order.status_update": "order.status_update";
|
|
9524
9476
|
"rider.status_update": "rider.status_update";
|
|
9525
9477
|
"menu.upload_result": "menu.upload_result";
|
|
9526
|
-
}
|
|
9478
|
+
}>>]>>;
|
|
9527
9479
|
'createdAt[before]': z.ZodOptional<z.ZodString>;
|
|
9528
9480
|
'createdAt[strictly_before]': z.ZodOptional<z.ZodString>;
|
|
9529
9481
|
'createdAt[after]': z.ZodOptional<z.ZodString>;
|
|
@@ -9895,14 +9847,13 @@ declare const integrationGlovoWebhookEventsQueryParamsSchema: z.ZodObject<{
|
|
|
9895
9847
|
asc: "asc";
|
|
9896
9848
|
desc: "desc";
|
|
9897
9849
|
}>>;
|
|
9898
|
-
event: z.ZodOptional<z.ZodEnum<{
|
|
9850
|
+
event: z.ZodOptional<z.ZodUnion<readonly [z.ZodEnum<{
|
|
9899
9851
|
"order.dispatched": "order.dispatched";
|
|
9900
9852
|
"order.cancelled": "order.cancelled";
|
|
9901
|
-
}
|
|
9902
|
-
'event[]': z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
9853
|
+
}>, z.ZodArray<z.ZodEnum<{
|
|
9903
9854
|
"order.dispatched": "order.dispatched";
|
|
9904
9855
|
"order.cancelled": "order.cancelled";
|
|
9905
|
-
}
|
|
9856
|
+
}>>]>>;
|
|
9906
9857
|
'createdAt[before]': z.ZodOptional<z.ZodString>;
|
|
9907
9858
|
'createdAt[strictly_before]': z.ZodOptional<z.ZodString>;
|
|
9908
9859
|
'createdAt[after]': z.ZodOptional<z.ZodString>;
|
|
@@ -10133,20 +10084,19 @@ declare const getIntegrationGlovoClientLogRequestsQuerySchema: z.ZodObject<{
|
|
|
10133
10084
|
asc: "asc";
|
|
10134
10085
|
desc: "desc";
|
|
10135
10086
|
}>>;
|
|
10136
|
-
method: z.ZodOptional<z.ZodEnum<{
|
|
10087
|
+
method: z.ZodOptional<z.ZodUnion<readonly [z.ZodEnum<{
|
|
10137
10088
|
DELETE: "DELETE";
|
|
10138
10089
|
GET: "GET";
|
|
10139
10090
|
PATCH: "PATCH";
|
|
10140
10091
|
POST: "POST";
|
|
10141
10092
|
PUT: "PUT";
|
|
10142
|
-
}
|
|
10143
|
-
'method[]': z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
10093
|
+
}>, z.ZodArray<z.ZodEnum<{
|
|
10144
10094
|
DELETE: "DELETE";
|
|
10145
10095
|
GET: "GET";
|
|
10146
10096
|
PATCH: "PATCH";
|
|
10147
10097
|
POST: "POST";
|
|
10148
10098
|
PUT: "PUT";
|
|
10149
|
-
}
|
|
10099
|
+
}>>]>>;
|
|
10150
10100
|
'statusCode[between]': z.ZodOptional<z.ZodNumber>;
|
|
10151
10101
|
'statusCode[gt]': z.ZodOptional<z.ZodNumber>;
|
|
10152
10102
|
'statusCode[gte]': z.ZodOptional<z.ZodNumber>;
|
|
@@ -10218,20 +10168,19 @@ declare class GetIntegrationGlovoClientLogRequests extends AbstractApiRequest<ty
|
|
|
10218
10168
|
asc: "asc";
|
|
10219
10169
|
desc: "desc";
|
|
10220
10170
|
}>>;
|
|
10221
|
-
method: z.ZodOptional<z.ZodEnum<{
|
|
10171
|
+
method: z.ZodOptional<z.ZodUnion<readonly [z.ZodEnum<{
|
|
10222
10172
|
DELETE: "DELETE";
|
|
10223
10173
|
GET: "GET";
|
|
10224
10174
|
PATCH: "PATCH";
|
|
10225
10175
|
POST: "POST";
|
|
10226
10176
|
PUT: "PUT";
|
|
10227
|
-
}
|
|
10228
|
-
'method[]': z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
10177
|
+
}>, z.ZodArray<z.ZodEnum<{
|
|
10229
10178
|
DELETE: "DELETE";
|
|
10230
10179
|
GET: "GET";
|
|
10231
10180
|
PATCH: "PATCH";
|
|
10232
10181
|
POST: "POST";
|
|
10233
10182
|
PUT: "PUT";
|
|
10234
|
-
}
|
|
10183
|
+
}>>]>>;
|
|
10235
10184
|
'statusCode[between]': z.ZodOptional<z.ZodNumber>;
|
|
10236
10185
|
'statusCode[gt]': z.ZodOptional<z.ZodNumber>;
|
|
10237
10186
|
'statusCode[gte]': z.ZodOptional<z.ZodNumber>;
|
|
@@ -10334,13 +10283,17 @@ declare class GetIntegrationGlovoDetails extends AbstractApiRequest<typeof getIn
|
|
|
10334
10283
|
}
|
|
10335
10284
|
|
|
10336
10285
|
declare const getIntegrationGlovoListQuerySchema: z.ZodObject<{
|
|
10337
|
-
storeId: z.ZodOptional<z.ZodString
|
|
10338
|
-
status: z.ZodOptional<z.ZodEnum<{
|
|
10286
|
+
storeId: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>>;
|
|
10287
|
+
status: z.ZodOptional<z.ZodUnion<readonly [z.ZodEnum<{
|
|
10339
10288
|
pending: "pending";
|
|
10340
10289
|
active: "active";
|
|
10341
10290
|
deleting: "deleting";
|
|
10342
|
-
}
|
|
10343
|
-
|
|
10291
|
+
}>, z.ZodArray<z.ZodEnum<{
|
|
10292
|
+
pending: "pending";
|
|
10293
|
+
active: "active";
|
|
10294
|
+
deleting: "deleting";
|
|
10295
|
+
}>>]>>;
|
|
10296
|
+
connectionId: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>>;
|
|
10344
10297
|
name: z.ZodOptional<z.ZodString>;
|
|
10345
10298
|
'order[createdAt]': z.ZodOptional<z.ZodEnum<{
|
|
10346
10299
|
asc: "asc";
|
|
@@ -10350,12 +10303,6 @@ declare const getIntegrationGlovoListQuerySchema: z.ZodObject<{
|
|
|
10350
10303
|
asc: "asc";
|
|
10351
10304
|
desc: "desc";
|
|
10352
10305
|
}>>;
|
|
10353
|
-
'status[]': z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
10354
|
-
pending: "pending";
|
|
10355
|
-
active: "active";
|
|
10356
|
-
deleting: "deleting";
|
|
10357
|
-
}>>>;
|
|
10358
|
-
'connectionId[]': z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
10359
10306
|
page: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
10360
10307
|
'createdAt[before]': z.ZodOptional<z.ZodString>;
|
|
10361
10308
|
'createdAt[strictly_before]': z.ZodOptional<z.ZodString>;
|
|
@@ -10383,7 +10330,6 @@ declare const getIntegrationGlovoListQuerySchema: z.ZodObject<{
|
|
|
10383
10330
|
'latestMenuCheckAt[strictly_before]': z.ZodOptional<z.ZodString>;
|
|
10384
10331
|
'latestMenuCheckAt[after]': z.ZodOptional<z.ZodString>;
|
|
10385
10332
|
'latestMenuCheckAt[strictly_after]': z.ZodOptional<z.ZodString>;
|
|
10386
|
-
'storeId[]': z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
10387
10333
|
}, z.core.$strip>;
|
|
10388
10334
|
type GetIntegrationGlovoListQueryParams = z.infer<typeof getIntegrationGlovoListQuerySchema>;
|
|
10389
10335
|
declare const getIntegrationGlovoListInputSchema: z.ZodUndefined;
|
|
@@ -10479,13 +10425,17 @@ declare class GetIntegrationGlovoList extends AbstractApiRequest<typeof getInteg
|
|
|
10479
10425
|
}, z.core.$strip>;
|
|
10480
10426
|
}, z.core.$strip>;
|
|
10481
10427
|
readonly querySchema: z.ZodObject<{
|
|
10482
|
-
storeId: z.ZodOptional<z.ZodString
|
|
10483
|
-
status: z.ZodOptional<z.ZodEnum<{
|
|
10428
|
+
storeId: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>>;
|
|
10429
|
+
status: z.ZodOptional<z.ZodUnion<readonly [z.ZodEnum<{
|
|
10484
10430
|
pending: "pending";
|
|
10485
10431
|
active: "active";
|
|
10486
10432
|
deleting: "deleting";
|
|
10487
|
-
}
|
|
10488
|
-
|
|
10433
|
+
}>, z.ZodArray<z.ZodEnum<{
|
|
10434
|
+
pending: "pending";
|
|
10435
|
+
active: "active";
|
|
10436
|
+
deleting: "deleting";
|
|
10437
|
+
}>>]>>;
|
|
10438
|
+
connectionId: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>>;
|
|
10489
10439
|
name: z.ZodOptional<z.ZodString>;
|
|
10490
10440
|
'order[createdAt]': z.ZodOptional<z.ZodEnum<{
|
|
10491
10441
|
asc: "asc";
|
|
@@ -10495,12 +10445,6 @@ declare class GetIntegrationGlovoList extends AbstractApiRequest<typeof getInteg
|
|
|
10495
10445
|
asc: "asc";
|
|
10496
10446
|
desc: "desc";
|
|
10497
10447
|
}>>;
|
|
10498
|
-
'status[]': z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
10499
|
-
pending: "pending";
|
|
10500
|
-
active: "active";
|
|
10501
|
-
deleting: "deleting";
|
|
10502
|
-
}>>>;
|
|
10503
|
-
'connectionId[]': z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
10504
10448
|
page: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
10505
10449
|
'createdAt[before]': z.ZodOptional<z.ZodString>;
|
|
10506
10450
|
'createdAt[strictly_before]': z.ZodOptional<z.ZodString>;
|
|
@@ -10528,7 +10472,6 @@ declare class GetIntegrationGlovoList extends AbstractApiRequest<typeof getInteg
|
|
|
10528
10472
|
'latestMenuCheckAt[strictly_before]': z.ZodOptional<z.ZodString>;
|
|
10529
10473
|
'latestMenuCheckAt[after]': z.ZodOptional<z.ZodString>;
|
|
10530
10474
|
'latestMenuCheckAt[strictly_after]': z.ZodOptional<z.ZodString>;
|
|
10531
|
-
'storeId[]': z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
10532
10475
|
}, z.core.$strip>;
|
|
10533
10476
|
readonly headersSchema: undefined;
|
|
10534
10477
|
constructor(options?: {
|
|
@@ -10809,14 +10752,13 @@ declare const getIntegrationGlovoWebhookEventsQuerySchema: z.ZodObject<{
|
|
|
10809
10752
|
asc: "asc";
|
|
10810
10753
|
desc: "desc";
|
|
10811
10754
|
}>>;
|
|
10812
|
-
event: z.ZodOptional<z.ZodEnum<{
|
|
10755
|
+
event: z.ZodOptional<z.ZodUnion<readonly [z.ZodEnum<{
|
|
10813
10756
|
"order.dispatched": "order.dispatched";
|
|
10814
10757
|
"order.cancelled": "order.cancelled";
|
|
10815
|
-
}
|
|
10816
|
-
'event[]': z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
10758
|
+
}>, z.ZodArray<z.ZodEnum<{
|
|
10817
10759
|
"order.dispatched": "order.dispatched";
|
|
10818
10760
|
"order.cancelled": "order.cancelled";
|
|
10819
|
-
}
|
|
10761
|
+
}>>]>>;
|
|
10820
10762
|
'createdAt[before]': z.ZodOptional<z.ZodString>;
|
|
10821
10763
|
'createdAt[strictly_before]': z.ZodOptional<z.ZodString>;
|
|
10822
10764
|
'createdAt[after]': z.ZodOptional<z.ZodString>;
|
|
@@ -10875,14 +10817,13 @@ declare class GetIntegrationGlovoWebhookEvents extends AbstractApiRequest<typeof
|
|
|
10875
10817
|
asc: "asc";
|
|
10876
10818
|
desc: "desc";
|
|
10877
10819
|
}>>;
|
|
10878
|
-
event: z.ZodOptional<z.ZodEnum<{
|
|
10820
|
+
event: z.ZodOptional<z.ZodUnion<readonly [z.ZodEnum<{
|
|
10879
10821
|
"order.dispatched": "order.dispatched";
|
|
10880
10822
|
"order.cancelled": "order.cancelled";
|
|
10881
|
-
}
|
|
10882
|
-
'event[]': z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
10823
|
+
}>, z.ZodArray<z.ZodEnum<{
|
|
10883
10824
|
"order.dispatched": "order.dispatched";
|
|
10884
10825
|
"order.cancelled": "order.cancelled";
|
|
10885
|
-
}
|
|
10826
|
+
}>>]>>;
|
|
10886
10827
|
'createdAt[before]': z.ZodOptional<z.ZodString>;
|
|
10887
10828
|
'createdAt[strictly_before]': z.ZodOptional<z.ZodString>;
|
|
10888
10829
|
'createdAt[after]': z.ZodOptional<z.ZodString>;
|
|
@@ -11436,20 +11377,19 @@ declare const getIntegrationJustEatClientLogRequestsQuerySchema: z.ZodObject<{
|
|
|
11436
11377
|
asc: "asc";
|
|
11437
11378
|
desc: "desc";
|
|
11438
11379
|
}>>;
|
|
11439
|
-
method: z.ZodOptional<z.ZodEnum<{
|
|
11380
|
+
method: z.ZodOptional<z.ZodUnion<readonly [z.ZodEnum<{
|
|
11440
11381
|
DELETE: "DELETE";
|
|
11441
11382
|
GET: "GET";
|
|
11442
11383
|
PATCH: "PATCH";
|
|
11443
11384
|
POST: "POST";
|
|
11444
11385
|
PUT: "PUT";
|
|
11445
|
-
}
|
|
11446
|
-
'method[]': z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
11386
|
+
}>, z.ZodArray<z.ZodEnum<{
|
|
11447
11387
|
DELETE: "DELETE";
|
|
11448
11388
|
GET: "GET";
|
|
11449
11389
|
PATCH: "PATCH";
|
|
11450
11390
|
POST: "POST";
|
|
11451
11391
|
PUT: "PUT";
|
|
11452
|
-
}
|
|
11392
|
+
}>>]>>;
|
|
11453
11393
|
'statusCode[between]': z.ZodOptional<z.ZodNumber>;
|
|
11454
11394
|
'statusCode[gt]': z.ZodOptional<z.ZodNumber>;
|
|
11455
11395
|
'statusCode[gte]': z.ZodOptional<z.ZodNumber>;
|
|
@@ -11521,20 +11461,19 @@ declare class GetIntegrationJustEatClientLogRequests extends AbstractApiRequest<
|
|
|
11521
11461
|
asc: "asc";
|
|
11522
11462
|
desc: "desc";
|
|
11523
11463
|
}>>;
|
|
11524
|
-
method: z.ZodOptional<z.ZodEnum<{
|
|
11464
|
+
method: z.ZodOptional<z.ZodUnion<readonly [z.ZodEnum<{
|
|
11525
11465
|
DELETE: "DELETE";
|
|
11526
11466
|
GET: "GET";
|
|
11527
11467
|
PATCH: "PATCH";
|
|
11528
11468
|
POST: "POST";
|
|
11529
11469
|
PUT: "PUT";
|
|
11530
|
-
}
|
|
11531
|
-
'method[]': z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
11470
|
+
}>, z.ZodArray<z.ZodEnum<{
|
|
11532
11471
|
DELETE: "DELETE";
|
|
11533
11472
|
GET: "GET";
|
|
11534
11473
|
PATCH: "PATCH";
|
|
11535
11474
|
POST: "POST";
|
|
11536
11475
|
PUT: "PUT";
|
|
11537
|
-
}
|
|
11476
|
+
}>>]>>;
|
|
11538
11477
|
'statusCode[between]': z.ZodOptional<z.ZodNumber>;
|
|
11539
11478
|
'statusCode[gt]': z.ZodOptional<z.ZodNumber>;
|
|
11540
11479
|
'statusCode[gte]': z.ZodOptional<z.ZodNumber>;
|
|
@@ -11653,13 +11592,17 @@ declare class GetIntegrationJustEatDetails extends AbstractApiRequest<typeof get
|
|
|
11653
11592
|
}
|
|
11654
11593
|
|
|
11655
11594
|
declare const getIntegrationJustEatListQuerySchema: z.ZodObject<{
|
|
11656
|
-
restaurantId: z.ZodOptional<z.ZodString
|
|
11657
|
-
status: z.ZodOptional<z.ZodEnum<{
|
|
11595
|
+
restaurantId: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>>;
|
|
11596
|
+
status: z.ZodOptional<z.ZodUnion<readonly [z.ZodEnum<{
|
|
11658
11597
|
pending: "pending";
|
|
11659
11598
|
active: "active";
|
|
11660
11599
|
deleting: "deleting";
|
|
11661
|
-
}
|
|
11662
|
-
|
|
11600
|
+
}>, z.ZodArray<z.ZodEnum<{
|
|
11601
|
+
pending: "pending";
|
|
11602
|
+
active: "active";
|
|
11603
|
+
deleting: "deleting";
|
|
11604
|
+
}>>]>>;
|
|
11605
|
+
connectionId: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>>;
|
|
11663
11606
|
name: z.ZodOptional<z.ZodString>;
|
|
11664
11607
|
'order[createdAt]': z.ZodOptional<z.ZodEnum<{
|
|
11665
11608
|
asc: "asc";
|
|
@@ -11669,12 +11612,6 @@ declare const getIntegrationJustEatListQuerySchema: z.ZodObject<{
|
|
|
11669
11612
|
asc: "asc";
|
|
11670
11613
|
desc: "desc";
|
|
11671
11614
|
}>>;
|
|
11672
|
-
'status[]': z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
11673
|
-
pending: "pending";
|
|
11674
|
-
active: "active";
|
|
11675
|
-
deleting: "deleting";
|
|
11676
|
-
}>>>;
|
|
11677
|
-
'connectionId[]': z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
11678
11615
|
page: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
11679
11616
|
'createdAt[before]': z.ZodOptional<z.ZodString>;
|
|
11680
11617
|
'createdAt[strictly_before]': z.ZodOptional<z.ZodString>;
|
|
@@ -11702,11 +11639,15 @@ declare const getIntegrationJustEatListQuerySchema: z.ZodObject<{
|
|
|
11702
11639
|
'latestMenuCheckAt[strictly_before]': z.ZodOptional<z.ZodString>;
|
|
11703
11640
|
'latestMenuCheckAt[after]': z.ZodOptional<z.ZodString>;
|
|
11704
11641
|
'latestMenuCheckAt[strictly_after]': z.ZodOptional<z.ZodString>;
|
|
11705
|
-
syncType: z.ZodOptional<z.ZodEnum<{
|
|
11642
|
+
syncType: z.ZodOptional<z.ZodUnion<readonly [z.ZodEnum<{
|
|
11706
11643
|
ALL: "ALL";
|
|
11707
11644
|
DELIVERY: "DELIVERY";
|
|
11708
11645
|
TAKE_AWAY: "TAKE_AWAY";
|
|
11709
|
-
}
|
|
11646
|
+
}>, z.ZodArray<z.ZodEnum<{
|
|
11647
|
+
ALL: "ALL";
|
|
11648
|
+
DELIVERY: "DELIVERY";
|
|
11649
|
+
TAKE_AWAY: "TAKE_AWAY";
|
|
11650
|
+
}>>]>>;
|
|
11710
11651
|
'order[latestOpeningTimesSyncAt]': z.ZodOptional<z.ZodEnum<{
|
|
11711
11652
|
asc: "asc";
|
|
11712
11653
|
desc: "desc";
|
|
@@ -11715,12 +11656,6 @@ declare const getIntegrationJustEatListQuerySchema: z.ZodObject<{
|
|
|
11715
11656
|
asc: "asc";
|
|
11716
11657
|
desc: "desc";
|
|
11717
11658
|
}>>;
|
|
11718
|
-
'restaurantId[]': z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
11719
|
-
'syncType[]': z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
11720
|
-
ALL: "ALL";
|
|
11721
|
-
DELIVERY: "DELIVERY";
|
|
11722
|
-
TAKE_AWAY: "TAKE_AWAY";
|
|
11723
|
-
}>>>;
|
|
11724
11659
|
'latestOpeningTimesSyncAt[before]': z.ZodOptional<z.ZodString>;
|
|
11725
11660
|
'latestOpeningTimesSyncAt[strictly_before]': z.ZodOptional<z.ZodString>;
|
|
11726
11661
|
'latestOpeningTimesSyncAt[after]': z.ZodOptional<z.ZodString>;
|
|
@@ -11840,13 +11775,17 @@ declare class GetIntegrationJustEatList extends AbstractApiRequest<typeof getInt
|
|
|
11840
11775
|
}, z.core.$strip>;
|
|
11841
11776
|
}, z.core.$strip>;
|
|
11842
11777
|
readonly querySchema: z.ZodObject<{
|
|
11843
|
-
restaurantId: z.ZodOptional<z.ZodString
|
|
11844
|
-
status: z.ZodOptional<z.ZodEnum<{
|
|
11778
|
+
restaurantId: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>>;
|
|
11779
|
+
status: z.ZodOptional<z.ZodUnion<readonly [z.ZodEnum<{
|
|
11845
11780
|
pending: "pending";
|
|
11846
11781
|
active: "active";
|
|
11847
11782
|
deleting: "deleting";
|
|
11848
|
-
}
|
|
11849
|
-
|
|
11783
|
+
}>, z.ZodArray<z.ZodEnum<{
|
|
11784
|
+
pending: "pending";
|
|
11785
|
+
active: "active";
|
|
11786
|
+
deleting: "deleting";
|
|
11787
|
+
}>>]>>;
|
|
11788
|
+
connectionId: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>>;
|
|
11850
11789
|
name: z.ZodOptional<z.ZodString>;
|
|
11851
11790
|
'order[createdAt]': z.ZodOptional<z.ZodEnum<{
|
|
11852
11791
|
asc: "asc";
|
|
@@ -11856,12 +11795,6 @@ declare class GetIntegrationJustEatList extends AbstractApiRequest<typeof getInt
|
|
|
11856
11795
|
asc: "asc";
|
|
11857
11796
|
desc: "desc";
|
|
11858
11797
|
}>>;
|
|
11859
|
-
'status[]': z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
11860
|
-
pending: "pending";
|
|
11861
|
-
active: "active";
|
|
11862
|
-
deleting: "deleting";
|
|
11863
|
-
}>>>;
|
|
11864
|
-
'connectionId[]': z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
11865
11798
|
page: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
11866
11799
|
'createdAt[before]': z.ZodOptional<z.ZodString>;
|
|
11867
11800
|
'createdAt[strictly_before]': z.ZodOptional<z.ZodString>;
|
|
@@ -11889,11 +11822,15 @@ declare class GetIntegrationJustEatList extends AbstractApiRequest<typeof getInt
|
|
|
11889
11822
|
'latestMenuCheckAt[strictly_before]': z.ZodOptional<z.ZodString>;
|
|
11890
11823
|
'latestMenuCheckAt[after]': z.ZodOptional<z.ZodString>;
|
|
11891
11824
|
'latestMenuCheckAt[strictly_after]': z.ZodOptional<z.ZodString>;
|
|
11892
|
-
syncType: z.ZodOptional<z.ZodEnum<{
|
|
11825
|
+
syncType: z.ZodOptional<z.ZodUnion<readonly [z.ZodEnum<{
|
|
11893
11826
|
ALL: "ALL";
|
|
11894
11827
|
DELIVERY: "DELIVERY";
|
|
11895
11828
|
TAKE_AWAY: "TAKE_AWAY";
|
|
11896
|
-
}
|
|
11829
|
+
}>, z.ZodArray<z.ZodEnum<{
|
|
11830
|
+
ALL: "ALL";
|
|
11831
|
+
DELIVERY: "DELIVERY";
|
|
11832
|
+
TAKE_AWAY: "TAKE_AWAY";
|
|
11833
|
+
}>>]>>;
|
|
11897
11834
|
'order[latestOpeningTimesSyncAt]': z.ZodOptional<z.ZodEnum<{
|
|
11898
11835
|
asc: "asc";
|
|
11899
11836
|
desc: "desc";
|
|
@@ -11902,12 +11839,6 @@ declare class GetIntegrationJustEatList extends AbstractApiRequest<typeof getInt
|
|
|
11902
11839
|
asc: "asc";
|
|
11903
11840
|
desc: "desc";
|
|
11904
11841
|
}>>;
|
|
11905
|
-
'restaurantId[]': z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
11906
|
-
'syncType[]': z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
11907
|
-
ALL: "ALL";
|
|
11908
|
-
DELIVERY: "DELIVERY";
|
|
11909
|
-
TAKE_AWAY: "TAKE_AWAY";
|
|
11910
|
-
}>>>;
|
|
11911
11842
|
'latestOpeningTimesSyncAt[before]': z.ZodOptional<z.ZodString>;
|
|
11912
11843
|
'latestOpeningTimesSyncAt[strictly_before]': z.ZodOptional<z.ZodString>;
|
|
11913
11844
|
'latestOpeningTimesSyncAt[after]': z.ZodOptional<z.ZodString>;
|