arky-sdk 0.3.15 → 0.3.17
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 +45 -104
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +23 -36
- package/dist/index.d.ts +23 -36
- package/dist/index.js +45 -104
- package/dist/index.js.map +1 -1
- package/dist/types.d.cts +18 -103
- package/dist/types.d.ts +18 -103
- package/package.json +1 -1
package/dist/types.d.cts
CHANGED
|
@@ -68,11 +68,6 @@ interface NewsletterFindParams {
|
|
|
68
68
|
interface NewsletterGetParams {
|
|
69
69
|
id: string;
|
|
70
70
|
}
|
|
71
|
-
interface UpdateUserParams {
|
|
72
|
-
id: string;
|
|
73
|
-
name?: string;
|
|
74
|
-
email?: string;
|
|
75
|
-
}
|
|
76
71
|
interface LoginUserParams {
|
|
77
72
|
email?: string;
|
|
78
73
|
password?: string;
|
|
@@ -152,15 +147,6 @@ interface GetRoleParams {
|
|
|
152
147
|
interface GetRolesParams {
|
|
153
148
|
action?: string;
|
|
154
149
|
}
|
|
155
|
-
interface GetRoleParentsParams {
|
|
156
|
-
roleId: string;
|
|
157
|
-
}
|
|
158
|
-
interface GetInvoiceParams {
|
|
159
|
-
roleId: string;
|
|
160
|
-
from: string;
|
|
161
|
-
to: string;
|
|
162
|
-
language: string;
|
|
163
|
-
}
|
|
164
150
|
interface CreatePromoCodeParams {
|
|
165
151
|
code?: string;
|
|
166
152
|
name?: string;
|
|
@@ -216,24 +202,6 @@ interface GetPromoCodesParams {
|
|
|
216
202
|
expiresAtFrom?: string;
|
|
217
203
|
expiresAtTo?: string;
|
|
218
204
|
}
|
|
219
|
-
interface GetPromoCodeByCodeParams {
|
|
220
|
-
code: string;
|
|
221
|
-
}
|
|
222
|
-
interface UpdatePromoCodeStatusParams {
|
|
223
|
-
id: string;
|
|
224
|
-
status: string;
|
|
225
|
-
reason?: string;
|
|
226
|
-
}
|
|
227
|
-
interface ValidatePromoCodeParams {
|
|
228
|
-
code: string;
|
|
229
|
-
orderTotal?: number;
|
|
230
|
-
userId?: string;
|
|
231
|
-
}
|
|
232
|
-
interface ApplyPromoCodeParams {
|
|
233
|
-
code: string;
|
|
234
|
-
orderId: string;
|
|
235
|
-
userId: string;
|
|
236
|
-
}
|
|
237
205
|
interface CreateBusinessParams {
|
|
238
206
|
name: string;
|
|
239
207
|
slug?: string;
|
|
@@ -261,7 +229,6 @@ interface DeleteBusinessParams {
|
|
|
261
229
|
id: string;
|
|
262
230
|
}
|
|
263
231
|
interface GetBusinessParams {
|
|
264
|
-
id: string;
|
|
265
232
|
}
|
|
266
233
|
interface GetBusinessParentsParams {
|
|
267
234
|
}
|
|
@@ -352,12 +319,6 @@ interface UpdateEntryParams {
|
|
|
352
319
|
status?: string;
|
|
353
320
|
[key: string]: any;
|
|
354
321
|
}
|
|
355
|
-
interface DeleteEntryParams {
|
|
356
|
-
id: string;
|
|
357
|
-
}
|
|
358
|
-
interface GetEntryParams {
|
|
359
|
-
id: string;
|
|
360
|
-
}
|
|
361
322
|
interface GenerateBlocksParams {
|
|
362
323
|
[key: string]: any;
|
|
363
324
|
}
|
|
@@ -385,27 +346,9 @@ interface UpdateProductParams {
|
|
|
385
346
|
status?: string;
|
|
386
347
|
[key: string]: any;
|
|
387
348
|
}
|
|
388
|
-
interface DeleteProductParams {
|
|
389
|
-
id: string;
|
|
390
|
-
}
|
|
391
349
|
interface GetProductParams {
|
|
392
350
|
id: string;
|
|
393
351
|
}
|
|
394
|
-
interface GetAllProductsParams {
|
|
395
|
-
categoryIds?: string[] | null;
|
|
396
|
-
categoryId?: string | null;
|
|
397
|
-
categoryFilterBlocks?: string | null;
|
|
398
|
-
matchAll?: boolean | null;
|
|
399
|
-
statuses?: string[] | null;
|
|
400
|
-
productType?: string | null;
|
|
401
|
-
query?: string | null;
|
|
402
|
-
limit?: number | null;
|
|
403
|
-
cursor?: string | null;
|
|
404
|
-
sortField?: string | null;
|
|
405
|
-
sortDirection?: string | null;
|
|
406
|
-
createdAtFrom?: string | null;
|
|
407
|
-
createdAtTo?: string | null;
|
|
408
|
-
}
|
|
409
352
|
interface GetOrderParams {
|
|
410
353
|
id: string;
|
|
411
354
|
}
|
|
@@ -515,33 +458,9 @@ interface GetProvidersParams {
|
|
|
515
458
|
categoryId?: string | null;
|
|
516
459
|
categoryFilterBlocks?: string | null;
|
|
517
460
|
}
|
|
518
|
-
interface GetProvidersByServiceParams {
|
|
519
|
-
serviceId: string;
|
|
520
|
-
limit?: number;
|
|
521
|
-
cursor?: string;
|
|
522
|
-
}
|
|
523
461
|
interface GetProviderParams {
|
|
524
462
|
id: string;
|
|
525
463
|
}
|
|
526
|
-
interface GetAllServicesParams {
|
|
527
|
-
providerId?: string;
|
|
528
|
-
ids?: string[];
|
|
529
|
-
query?: string | null;
|
|
530
|
-
statuses?: string[] | null;
|
|
531
|
-
limit?: number;
|
|
532
|
-
cursor?: string;
|
|
533
|
-
sortField?: string | null;
|
|
534
|
-
sortDirection?: string | null;
|
|
535
|
-
createdAtFrom?: string | null;
|
|
536
|
-
createdAtTo?: string | null;
|
|
537
|
-
categoryId?: string | null;
|
|
538
|
-
categoryFilterBlocks?: string | null;
|
|
539
|
-
}
|
|
540
|
-
interface ScheduleSetParams {
|
|
541
|
-
workingTime: any;
|
|
542
|
-
serviceIds: string[];
|
|
543
|
-
providerIds: string[];
|
|
544
|
-
}
|
|
545
464
|
interface GetBusinessServiceWorkingTimeParams {
|
|
546
465
|
providerId: string;
|
|
547
466
|
serviceId?: string;
|
|
@@ -557,16 +476,6 @@ interface GetReservationParams {
|
|
|
557
476
|
interface GetReservationPartsParams {
|
|
558
477
|
reservationId?: string;
|
|
559
478
|
}
|
|
560
|
-
interface SearchAvailableSlotsParams {
|
|
561
|
-
serviceId: string;
|
|
562
|
-
limit: number;
|
|
563
|
-
from?: number;
|
|
564
|
-
to?: number;
|
|
565
|
-
providerId?: string;
|
|
566
|
-
}
|
|
567
|
-
interface ReservationConfirmParams {
|
|
568
|
-
token: string;
|
|
569
|
-
}
|
|
570
479
|
interface SearchReservationsParams {
|
|
571
480
|
serviceIds?: string[];
|
|
572
481
|
providerIds?: string[];
|
|
@@ -590,8 +499,6 @@ interface SetRoleParams {
|
|
|
590
499
|
userId: string;
|
|
591
500
|
roleId: string;
|
|
592
501
|
}
|
|
593
|
-
interface GetPermissionsParams {
|
|
594
|
-
}
|
|
595
502
|
interface SearchUsersParams {
|
|
596
503
|
limit?: number;
|
|
597
504
|
cursor?: string | null;
|
|
@@ -607,11 +514,6 @@ interface GetLoginUrlParams {
|
|
|
607
514
|
originUrl: string;
|
|
608
515
|
redirectUrl: string;
|
|
609
516
|
}
|
|
610
|
-
interface OAuthLoginParams {
|
|
611
|
-
code: string;
|
|
612
|
-
provider: string;
|
|
613
|
-
originUrl: string;
|
|
614
|
-
}
|
|
615
517
|
interface ForgotPasswordParams {
|
|
616
518
|
email: string;
|
|
617
519
|
}
|
|
@@ -623,10 +525,6 @@ interface ResetPasswordParams {
|
|
|
623
525
|
newPassword: string;
|
|
624
526
|
oldPassword?: string;
|
|
625
527
|
}
|
|
626
|
-
interface GetUserLocationParams {
|
|
627
|
-
}
|
|
628
|
-
interface LogoutParams {
|
|
629
|
-
}
|
|
630
528
|
interface HandleStripeWebhookParams {
|
|
631
529
|
[key: string]: any;
|
|
632
530
|
}
|
|
@@ -643,6 +541,23 @@ interface GetDeliveryStatsParams {
|
|
|
643
541
|
interface SetupAnalyticsParams {
|
|
644
542
|
[key: string]: any;
|
|
645
543
|
}
|
|
544
|
+
interface GetBusinessMediaParams2 {
|
|
545
|
+
id: string;
|
|
546
|
+
cursor?: string | null;
|
|
547
|
+
limit?: number;
|
|
548
|
+
}
|
|
549
|
+
interface SetProviderScheduleParams {
|
|
550
|
+
id: string;
|
|
551
|
+
workingTime: any;
|
|
552
|
+
serviceIds: string[];
|
|
553
|
+
providerIds: string[];
|
|
554
|
+
}
|
|
555
|
+
interface DeleteProductParams {
|
|
556
|
+
id: string;
|
|
557
|
+
}
|
|
558
|
+
interface DeleteProductParams {
|
|
559
|
+
id: string;
|
|
560
|
+
}
|
|
646
561
|
|
|
647
562
|
interface Payment {
|
|
648
563
|
currency: string;
|
|
@@ -887,4 +802,4 @@ interface ReservationStoreState {
|
|
|
887
802
|
};
|
|
888
803
|
}
|
|
889
804
|
|
|
890
|
-
export { type ApiResponse, type
|
|
805
|
+
export { type ApiResponse, type Block, type Business, type BusinessConfig, type BusinessPaymentMethod, type CancelSubscriptionParams, type CheckoutParams, type ConfirmUserParams, type CreateBusinessParams, type CreateCollectionEntryParams, type CreateCollectionParams, type CreateEntryParams, type CreateNewsletterParams, type CreateOrderParams, type CreatePortalSessionParams, type CreateProductParams, type CreatePromoCodeParams, type CreateProviderParams, type CreateReservationParams, type CreateRoleParams, type CreateServiceParams, type CreateSubscriptionParams, type DeleteBusinessMediaParams, type DeleteBusinessParams, type DeleteCollectionEntryParams, type DeleteCollectionParams, type DeleteNewsletterParams, type DeleteProductParams, type DeletePromoCodeParams, type DeleteProviderParams, type DeleteRoleParams, type DeleteServiceParams, type EshopCartItem, type EshopItem, type EshopStoreState, type ForgotPasswordParams, type GenerateBlocksParams, type GetAnalyticsHealthParams, type GetAnalyticsParams, type GetAvailableSlotsParams, type GetBusinessMarketParams, type GetBusinessMarketsParams, type GetBusinessMediaParams, type GetBusinessMediaParams2, type GetBusinessParams, type GetBusinessParentsParams, type GetBusinessServiceWorkingTimeParams, type GetCollectionEntriesParams, type GetCollectionEntryParams, type GetCollectionParams, type GetCollectionsParams, type GetDeliveryStatsParams, type GetEntriesParams, type GetLoginUrlParams, type GetNotificationsParams, type GetOrderParams, type GetOrdersParams, type GetProductParams, type GetProductsParams, type GetPromoCodeParams, type GetPromoCodesParams, type GetProviderParams, type GetProvidersParams, type GetQuoteParams, type GetReservationParams, type GetReservationPartsParams, type GetReservationQuoteParams, type GetRoleParams, type GetRolesParams, type GetServiceParams, type GetServicesParams, type GetSubscribersParams, type GetSubscriptionParams, type GetVariableMetadataParams, type HandleInvitationParams, type HandleStripeWebhookParams, type InviteUserParams, type Location, type LoginUserParams, type Market, type MarketConfigClient, type Newsletter, type NewsletterFindParams, type NewsletterGetParams, type NewsletterSubscribeParams, type PaginatedResponse, type Payment, PaymentMethod, type PaymentProviderConfig, type Price, type PromoCodeValidation, type Quote, type QuoteLineItem, type ReactivateSubscriptionParams, type RegisterUserParams, type RequestOptions, type ReservationCartPart, type ReservationCheckoutParams, type ReservationStoreState, type ResetForgotPasswordParams, type ResetPasswordParams, type SearchMyReservationsParams, type SearchReservationsParams, type SearchUsersParams, type SendEntryParams, type SetProviderScheduleParams, type SetRoleParams, type SetupAnalyticsParams, type ShippingMethod, type TestWebhookParams, type TrackEmailOpenParams, type TriggerBuildsParams, type UnsubscribeParams, type UpdateBusinessParams, type UpdateCollectionParams, type UpdateEntryParams, type UpdateNewsletterParams, type UpdateOrderParams, type UpdateOrderPaymentStatusParams, type UpdateOrderStatusParams, type UpdateProductParams, type UpdateProfilePhoneParams, type UpdatePromoCodeParams, type UpdateProviderParams, type UpdateReservationParams, type UpdateRoleParams, type UpdateServiceParams, type UpdateSubscriptionParams, type UpdateUserProfileParams, type UploadBusinessMediaParams, type VerifyPhoneCodeParams, type Zone };
|
package/dist/types.d.ts
CHANGED
|
@@ -68,11 +68,6 @@ interface NewsletterFindParams {
|
|
|
68
68
|
interface NewsletterGetParams {
|
|
69
69
|
id: string;
|
|
70
70
|
}
|
|
71
|
-
interface UpdateUserParams {
|
|
72
|
-
id: string;
|
|
73
|
-
name?: string;
|
|
74
|
-
email?: string;
|
|
75
|
-
}
|
|
76
71
|
interface LoginUserParams {
|
|
77
72
|
email?: string;
|
|
78
73
|
password?: string;
|
|
@@ -152,15 +147,6 @@ interface GetRoleParams {
|
|
|
152
147
|
interface GetRolesParams {
|
|
153
148
|
action?: string;
|
|
154
149
|
}
|
|
155
|
-
interface GetRoleParentsParams {
|
|
156
|
-
roleId: string;
|
|
157
|
-
}
|
|
158
|
-
interface GetInvoiceParams {
|
|
159
|
-
roleId: string;
|
|
160
|
-
from: string;
|
|
161
|
-
to: string;
|
|
162
|
-
language: string;
|
|
163
|
-
}
|
|
164
150
|
interface CreatePromoCodeParams {
|
|
165
151
|
code?: string;
|
|
166
152
|
name?: string;
|
|
@@ -216,24 +202,6 @@ interface GetPromoCodesParams {
|
|
|
216
202
|
expiresAtFrom?: string;
|
|
217
203
|
expiresAtTo?: string;
|
|
218
204
|
}
|
|
219
|
-
interface GetPromoCodeByCodeParams {
|
|
220
|
-
code: string;
|
|
221
|
-
}
|
|
222
|
-
interface UpdatePromoCodeStatusParams {
|
|
223
|
-
id: string;
|
|
224
|
-
status: string;
|
|
225
|
-
reason?: string;
|
|
226
|
-
}
|
|
227
|
-
interface ValidatePromoCodeParams {
|
|
228
|
-
code: string;
|
|
229
|
-
orderTotal?: number;
|
|
230
|
-
userId?: string;
|
|
231
|
-
}
|
|
232
|
-
interface ApplyPromoCodeParams {
|
|
233
|
-
code: string;
|
|
234
|
-
orderId: string;
|
|
235
|
-
userId: string;
|
|
236
|
-
}
|
|
237
205
|
interface CreateBusinessParams {
|
|
238
206
|
name: string;
|
|
239
207
|
slug?: string;
|
|
@@ -261,7 +229,6 @@ interface DeleteBusinessParams {
|
|
|
261
229
|
id: string;
|
|
262
230
|
}
|
|
263
231
|
interface GetBusinessParams {
|
|
264
|
-
id: string;
|
|
265
232
|
}
|
|
266
233
|
interface GetBusinessParentsParams {
|
|
267
234
|
}
|
|
@@ -352,12 +319,6 @@ interface UpdateEntryParams {
|
|
|
352
319
|
status?: string;
|
|
353
320
|
[key: string]: any;
|
|
354
321
|
}
|
|
355
|
-
interface DeleteEntryParams {
|
|
356
|
-
id: string;
|
|
357
|
-
}
|
|
358
|
-
interface GetEntryParams {
|
|
359
|
-
id: string;
|
|
360
|
-
}
|
|
361
322
|
interface GenerateBlocksParams {
|
|
362
323
|
[key: string]: any;
|
|
363
324
|
}
|
|
@@ -385,27 +346,9 @@ interface UpdateProductParams {
|
|
|
385
346
|
status?: string;
|
|
386
347
|
[key: string]: any;
|
|
387
348
|
}
|
|
388
|
-
interface DeleteProductParams {
|
|
389
|
-
id: string;
|
|
390
|
-
}
|
|
391
349
|
interface GetProductParams {
|
|
392
350
|
id: string;
|
|
393
351
|
}
|
|
394
|
-
interface GetAllProductsParams {
|
|
395
|
-
categoryIds?: string[] | null;
|
|
396
|
-
categoryId?: string | null;
|
|
397
|
-
categoryFilterBlocks?: string | null;
|
|
398
|
-
matchAll?: boolean | null;
|
|
399
|
-
statuses?: string[] | null;
|
|
400
|
-
productType?: string | null;
|
|
401
|
-
query?: string | null;
|
|
402
|
-
limit?: number | null;
|
|
403
|
-
cursor?: string | null;
|
|
404
|
-
sortField?: string | null;
|
|
405
|
-
sortDirection?: string | null;
|
|
406
|
-
createdAtFrom?: string | null;
|
|
407
|
-
createdAtTo?: string | null;
|
|
408
|
-
}
|
|
409
352
|
interface GetOrderParams {
|
|
410
353
|
id: string;
|
|
411
354
|
}
|
|
@@ -515,33 +458,9 @@ interface GetProvidersParams {
|
|
|
515
458
|
categoryId?: string | null;
|
|
516
459
|
categoryFilterBlocks?: string | null;
|
|
517
460
|
}
|
|
518
|
-
interface GetProvidersByServiceParams {
|
|
519
|
-
serviceId: string;
|
|
520
|
-
limit?: number;
|
|
521
|
-
cursor?: string;
|
|
522
|
-
}
|
|
523
461
|
interface GetProviderParams {
|
|
524
462
|
id: string;
|
|
525
463
|
}
|
|
526
|
-
interface GetAllServicesParams {
|
|
527
|
-
providerId?: string;
|
|
528
|
-
ids?: string[];
|
|
529
|
-
query?: string | null;
|
|
530
|
-
statuses?: string[] | null;
|
|
531
|
-
limit?: number;
|
|
532
|
-
cursor?: string;
|
|
533
|
-
sortField?: string | null;
|
|
534
|
-
sortDirection?: string | null;
|
|
535
|
-
createdAtFrom?: string | null;
|
|
536
|
-
createdAtTo?: string | null;
|
|
537
|
-
categoryId?: string | null;
|
|
538
|
-
categoryFilterBlocks?: string | null;
|
|
539
|
-
}
|
|
540
|
-
interface ScheduleSetParams {
|
|
541
|
-
workingTime: any;
|
|
542
|
-
serviceIds: string[];
|
|
543
|
-
providerIds: string[];
|
|
544
|
-
}
|
|
545
464
|
interface GetBusinessServiceWorkingTimeParams {
|
|
546
465
|
providerId: string;
|
|
547
466
|
serviceId?: string;
|
|
@@ -557,16 +476,6 @@ interface GetReservationParams {
|
|
|
557
476
|
interface GetReservationPartsParams {
|
|
558
477
|
reservationId?: string;
|
|
559
478
|
}
|
|
560
|
-
interface SearchAvailableSlotsParams {
|
|
561
|
-
serviceId: string;
|
|
562
|
-
limit: number;
|
|
563
|
-
from?: number;
|
|
564
|
-
to?: number;
|
|
565
|
-
providerId?: string;
|
|
566
|
-
}
|
|
567
|
-
interface ReservationConfirmParams {
|
|
568
|
-
token: string;
|
|
569
|
-
}
|
|
570
479
|
interface SearchReservationsParams {
|
|
571
480
|
serviceIds?: string[];
|
|
572
481
|
providerIds?: string[];
|
|
@@ -590,8 +499,6 @@ interface SetRoleParams {
|
|
|
590
499
|
userId: string;
|
|
591
500
|
roleId: string;
|
|
592
501
|
}
|
|
593
|
-
interface GetPermissionsParams {
|
|
594
|
-
}
|
|
595
502
|
interface SearchUsersParams {
|
|
596
503
|
limit?: number;
|
|
597
504
|
cursor?: string | null;
|
|
@@ -607,11 +514,6 @@ interface GetLoginUrlParams {
|
|
|
607
514
|
originUrl: string;
|
|
608
515
|
redirectUrl: string;
|
|
609
516
|
}
|
|
610
|
-
interface OAuthLoginParams {
|
|
611
|
-
code: string;
|
|
612
|
-
provider: string;
|
|
613
|
-
originUrl: string;
|
|
614
|
-
}
|
|
615
517
|
interface ForgotPasswordParams {
|
|
616
518
|
email: string;
|
|
617
519
|
}
|
|
@@ -623,10 +525,6 @@ interface ResetPasswordParams {
|
|
|
623
525
|
newPassword: string;
|
|
624
526
|
oldPassword?: string;
|
|
625
527
|
}
|
|
626
|
-
interface GetUserLocationParams {
|
|
627
|
-
}
|
|
628
|
-
interface LogoutParams {
|
|
629
|
-
}
|
|
630
528
|
interface HandleStripeWebhookParams {
|
|
631
529
|
[key: string]: any;
|
|
632
530
|
}
|
|
@@ -643,6 +541,23 @@ interface GetDeliveryStatsParams {
|
|
|
643
541
|
interface SetupAnalyticsParams {
|
|
644
542
|
[key: string]: any;
|
|
645
543
|
}
|
|
544
|
+
interface GetBusinessMediaParams2 {
|
|
545
|
+
id: string;
|
|
546
|
+
cursor?: string | null;
|
|
547
|
+
limit?: number;
|
|
548
|
+
}
|
|
549
|
+
interface SetProviderScheduleParams {
|
|
550
|
+
id: string;
|
|
551
|
+
workingTime: any;
|
|
552
|
+
serviceIds: string[];
|
|
553
|
+
providerIds: string[];
|
|
554
|
+
}
|
|
555
|
+
interface DeleteProductParams {
|
|
556
|
+
id: string;
|
|
557
|
+
}
|
|
558
|
+
interface DeleteProductParams {
|
|
559
|
+
id: string;
|
|
560
|
+
}
|
|
646
561
|
|
|
647
562
|
interface Payment {
|
|
648
563
|
currency: string;
|
|
@@ -887,4 +802,4 @@ interface ReservationStoreState {
|
|
|
887
802
|
};
|
|
888
803
|
}
|
|
889
804
|
|
|
890
|
-
export { type ApiResponse, type
|
|
805
|
+
export { type ApiResponse, type Block, type Business, type BusinessConfig, type BusinessPaymentMethod, type CancelSubscriptionParams, type CheckoutParams, type ConfirmUserParams, type CreateBusinessParams, type CreateCollectionEntryParams, type CreateCollectionParams, type CreateEntryParams, type CreateNewsletterParams, type CreateOrderParams, type CreatePortalSessionParams, type CreateProductParams, type CreatePromoCodeParams, type CreateProviderParams, type CreateReservationParams, type CreateRoleParams, type CreateServiceParams, type CreateSubscriptionParams, type DeleteBusinessMediaParams, type DeleteBusinessParams, type DeleteCollectionEntryParams, type DeleteCollectionParams, type DeleteNewsletterParams, type DeleteProductParams, type DeletePromoCodeParams, type DeleteProviderParams, type DeleteRoleParams, type DeleteServiceParams, type EshopCartItem, type EshopItem, type EshopStoreState, type ForgotPasswordParams, type GenerateBlocksParams, type GetAnalyticsHealthParams, type GetAnalyticsParams, type GetAvailableSlotsParams, type GetBusinessMarketParams, type GetBusinessMarketsParams, type GetBusinessMediaParams, type GetBusinessMediaParams2, type GetBusinessParams, type GetBusinessParentsParams, type GetBusinessServiceWorkingTimeParams, type GetCollectionEntriesParams, type GetCollectionEntryParams, type GetCollectionParams, type GetCollectionsParams, type GetDeliveryStatsParams, type GetEntriesParams, type GetLoginUrlParams, type GetNotificationsParams, type GetOrderParams, type GetOrdersParams, type GetProductParams, type GetProductsParams, type GetPromoCodeParams, type GetPromoCodesParams, type GetProviderParams, type GetProvidersParams, type GetQuoteParams, type GetReservationParams, type GetReservationPartsParams, type GetReservationQuoteParams, type GetRoleParams, type GetRolesParams, type GetServiceParams, type GetServicesParams, type GetSubscribersParams, type GetSubscriptionParams, type GetVariableMetadataParams, type HandleInvitationParams, type HandleStripeWebhookParams, type InviteUserParams, type Location, type LoginUserParams, type Market, type MarketConfigClient, type Newsletter, type NewsletterFindParams, type NewsletterGetParams, type NewsletterSubscribeParams, type PaginatedResponse, type Payment, PaymentMethod, type PaymentProviderConfig, type Price, type PromoCodeValidation, type Quote, type QuoteLineItem, type ReactivateSubscriptionParams, type RegisterUserParams, type RequestOptions, type ReservationCartPart, type ReservationCheckoutParams, type ReservationStoreState, type ResetForgotPasswordParams, type ResetPasswordParams, type SearchMyReservationsParams, type SearchReservationsParams, type SearchUsersParams, type SendEntryParams, type SetProviderScheduleParams, type SetRoleParams, type SetupAnalyticsParams, type ShippingMethod, type TestWebhookParams, type TrackEmailOpenParams, type TriggerBuildsParams, type UnsubscribeParams, type UpdateBusinessParams, type UpdateCollectionParams, type UpdateEntryParams, type UpdateNewsletterParams, type UpdateOrderParams, type UpdateOrderPaymentStatusParams, type UpdateOrderStatusParams, type UpdateProductParams, type UpdateProfilePhoneParams, type UpdatePromoCodeParams, type UpdateProviderParams, type UpdateReservationParams, type UpdateRoleParams, type UpdateServiceParams, type UpdateSubscriptionParams, type UpdateUserProfileParams, type UploadBusinessMediaParams, type VerifyPhoneCodeParams, type Zone };
|