arky-sdk 0.3.70 → 0.3.71

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/types.d.cts CHANGED
@@ -1,3 +1,293 @@
1
+ interface Payment {
2
+ currency: string;
3
+ market: string;
4
+ subtotal: number;
5
+ shipping: number;
6
+ discount: number;
7
+ total: number;
8
+ tax?: {
9
+ amount: number;
10
+ modeSnapshot?: string;
11
+ rateBps: number;
12
+ lines: Array<{
13
+ rateBps: number;
14
+ amount: number;
15
+ label?: string;
16
+ scope?: string;
17
+ }>;
18
+ };
19
+ promoCode?: {
20
+ id: string;
21
+ code: string;
22
+ type: string;
23
+ value: number;
24
+ };
25
+ type: PaymentMethodType;
26
+ provider?: {
27
+ customerId: string;
28
+ paymentIntentId?: string;
29
+ subscriptionId?: string;
30
+ priceId?: string;
31
+ };
32
+ }
33
+ declare enum PaymentMethodType {
34
+ Cash = "CASH",
35
+ CreditCard = "CREDIT_CARD",
36
+ Free = "FREE"
37
+ }
38
+ interface QuoteLineItem {
39
+ itemType: string;
40
+ id: string;
41
+ name: string;
42
+ quantity: number;
43
+ unitPrice: number;
44
+ total: number;
45
+ }
46
+ interface PromoCodeValidation {
47
+ id: string;
48
+ code: string;
49
+ discountType: any;
50
+ discountValue: number;
51
+ conditions: any[];
52
+ }
53
+ interface Quote {
54
+ currency: string;
55
+ market: string;
56
+ subtotal: number;
57
+ shipping: number;
58
+ discount: number;
59
+ total: number;
60
+ lineItems: QuoteLineItem[];
61
+ shippingMethod: ShippingMethod | null;
62
+ promoCode: PromoCodeValidation | null;
63
+ payment: Payment;
64
+ chargeAmount: number;
65
+ }
66
+ interface Price {
67
+ market: string;
68
+ amount: number;
69
+ compareAt?: number;
70
+ }
71
+ interface Location {
72
+ country?: string | null;
73
+ address?: string | null;
74
+ city?: string | null;
75
+ postalCode?: string | null;
76
+ countryCode?: string | null;
77
+ coordinates?: {
78
+ lat: number;
79
+ lon: number;
80
+ } | null;
81
+ }
82
+ interface EshopCartItem {
83
+ id: string;
84
+ productId: string;
85
+ variantId: string;
86
+ productName: string;
87
+ productSlug: string;
88
+ variantAttributes: Record<string, any>;
89
+ price: Price;
90
+ quantity: number;
91
+ addedAt: number;
92
+ }
93
+ interface ReservationCartItem {
94
+ id: string;
95
+ serviceId: string;
96
+ serviceName: string;
97
+ date: string;
98
+ from: number;
99
+ to: number;
100
+ timeText: string;
101
+ isMultiDay: boolean;
102
+ reservationMethod: string;
103
+ providerId?: string;
104
+ blocks: any[];
105
+ }
106
+ interface PaymentProviderConfig {
107
+ type: "STRIPE";
108
+ publicKey: string;
109
+ secretKey: string;
110
+ webhookSecret: string;
111
+ }
112
+ interface ZoneDefinition {
113
+ id: string;
114
+ name: string;
115
+ }
116
+ interface ZonePaymentMethod {
117
+ id: string;
118
+ }
119
+ interface ZoneShippingMethod {
120
+ id: string;
121
+ amount: number;
122
+ }
123
+ interface MarketZone {
124
+ taxBps: number;
125
+ zoneId: string;
126
+ paymentMethods: ZonePaymentMethod[];
127
+ shippingMethods: ZoneShippingMethod[];
128
+ }
129
+ interface Market {
130
+ id: string;
131
+ currency: string;
132
+ taxMode: "EXCLUSIVE" | "INCLUSIVE";
133
+ zones: MarketZone[];
134
+ }
135
+ interface PaymentMethod {
136
+ id: string;
137
+ type: PaymentMethodType;
138
+ }
139
+ interface ShippingMethod {
140
+ id: string;
141
+ type: 'SHIPPING' | 'PICKUP';
142
+ taxable: boolean;
143
+ etaText: string;
144
+ location?: Location;
145
+ }
146
+ interface ZoneResolvedShippingMethod extends ShippingMethod {
147
+ zoneAmount: number;
148
+ }
149
+ interface Language {
150
+ id: string;
151
+ }
152
+ interface BusinessEmails {
153
+ billing: string;
154
+ support: string;
155
+ }
156
+ interface BusinessConfig {
157
+ languages: Language[];
158
+ zones: ZoneDefinition[];
159
+ paymentMethods: PaymentMethod[];
160
+ shippingMethods: ShippingMethod[];
161
+ markets: Market[];
162
+ buildHooks: string[];
163
+ webhooks: any[];
164
+ orderBlocks: any[];
165
+ reservationBlocks: any[];
166
+ paymentProvider?: PaymentProviderConfig;
167
+ aiProvider?: any;
168
+ emails: BusinessEmails;
169
+ }
170
+ interface Business {
171
+ id: string;
172
+ name: string;
173
+ configs?: BusinessConfig;
174
+ }
175
+ interface EshopStoreState {
176
+ businessId: string;
177
+ selectedShippingMethodId: string | null;
178
+ userToken: string | null;
179
+ processingCheckout: boolean;
180
+ loading: boolean;
181
+ error: string | null;
182
+ phoneNumber: string;
183
+ phoneError: string | null;
184
+ verificationCode: string;
185
+ verifyError: string | null;
186
+ }
187
+ interface Block {
188
+ id: string;
189
+ key: string;
190
+ type: string;
191
+ properties?: any;
192
+ value?: any;
193
+ }
194
+ interface Seo {
195
+ slug: Record<string, string>;
196
+ metaTitle: Record<string, string>;
197
+ metaDescription: Record<string, string>;
198
+ canonicalUrl: Record<string, string>;
199
+ ogImage: string;
200
+ }
201
+ interface MediaResolution {
202
+ id: string;
203
+ size: string;
204
+ url: string;
205
+ }
206
+ interface Media {
207
+ id: string;
208
+ resolutions: {
209
+ [key: string]: MediaResolution;
210
+ };
211
+ mimeType: string;
212
+ title?: string | null;
213
+ description?: string | null;
214
+ alt?: string | null;
215
+ owner: string;
216
+ metadata?: string | null;
217
+ uploadedAt: string;
218
+ seo: Seo;
219
+ }
220
+ interface ApiResponse<T> {
221
+ success: boolean;
222
+ data?: T;
223
+ error?: string;
224
+ cursor?: string;
225
+ total?: number;
226
+ }
227
+ interface PaginatedResponse<T> {
228
+ data: T[];
229
+ meta?: {
230
+ total: number;
231
+ page: number;
232
+ per_page: number;
233
+ };
234
+ }
235
+ interface MarketConfigClient {
236
+ currency: string;
237
+ taxMode: string;
238
+ defaultTaxRate: number;
239
+ paymentMethods: string[];
240
+ showTaxIncluded: boolean;
241
+ shippingMethods?: ShippingMethod[];
242
+ }
243
+ interface ReservationStoreState {
244
+ currentStep: number;
245
+ totalSteps: number;
246
+ steps: Record<number, {
247
+ name: string;
248
+ labelKey: string;
249
+ }>;
250
+ weekdays: string[];
251
+ monthYear: string;
252
+ days: any[];
253
+ current: Date;
254
+ selectedDate: string | null;
255
+ slots: any[];
256
+ selectedSlot: any | null;
257
+ selectedMethod: string | null;
258
+ selectedProvider: any | null;
259
+ providers: any[];
260
+ loading: boolean;
261
+ startDate: string | null;
262
+ endDate: string | null;
263
+ isMultiDay: boolean;
264
+ phoneNumber: string;
265
+ phoneError: string | null;
266
+ phoneSuccess: string | null;
267
+ verificationCode: string;
268
+ verifyError: string | null;
269
+ isPhoneVerified: boolean;
270
+ isSendingCode: boolean;
271
+ isVerifying: boolean;
272
+ codeSentAt: number | null;
273
+ canResendAt: number | null;
274
+ guestToken: string | null;
275
+ service: any | null;
276
+ business: Business | null;
277
+ currency: string;
278
+ reservationBlocks: Block[];
279
+ apiUrl: string;
280
+ businessId: string;
281
+ timezone: string;
282
+ tzGroups: any;
283
+ items: ReservationCartItem[];
284
+ allowedPaymentMethods: string[];
285
+ paymentConfig: {
286
+ provider: PaymentProviderConfig | null;
287
+ enabled: boolean;
288
+ };
289
+ }
290
+
1
291
  interface RequestOptions<T = any> {
2
292
  headers?: Record<string, string>;
3
293
  params?: Record<string, any>;
@@ -525,348 +815,138 @@ interface ForgotPasswordParams {
525
815
  }
526
816
  interface ResetForgotPasswordParams {
527
817
  token: string;
528
- password: string;
529
- }
530
- interface ResetPasswordParams {
531
- newPassword: string;
532
- oldPassword?: string;
533
- }
534
- interface DeleteUserParams {
535
- }
536
- interface TrackEmailOpenParams {
537
- trackingPixelId: string;
538
- }
539
- interface TrackEmailOpenParams {
540
- trackingPixelId: string;
541
- }
542
- interface GetDeliveryStatsParams {
543
- }
544
- interface GetDeliveryStatsParams {
545
- }
546
- interface UpdateNotificationsParams {
547
- }
548
- interface GetMeParams {
549
- }
550
- interface LogoutParams {
551
- }
552
- interface GetBusinessesParams {
553
- }
554
- interface GetSubscriptionPlansParams {
555
- }
556
- interface SetupAnalyticsParams {
557
- [key: string]: any;
558
- }
559
- interface GetBusinessMediaParams2 {
560
- id: string;
561
- cursor?: string | null;
562
- limit?: number;
563
- }
564
- interface SetProviderScheduleParams {
565
- id: string;
566
- workingTime: any;
567
- serviceIds: string[];
568
- providerIds: string[];
569
- }
570
- interface DeleteProductParams {
571
- id: string;
572
- }
573
- interface DeleteProductParams {
574
- id: string;
575
- }
576
- interface ProcessRefundParams {
577
- id: string;
578
- entity: string;
579
- amount: number;
580
- }
581
-
582
- interface Payment {
583
- currency: string;
584
- market: string;
585
- subtotal: number;
586
- shipping: number;
587
- discount: number;
588
- total: number;
589
- tax?: {
590
- amount: number;
591
- modeSnapshot?: string;
592
- rateBps: number;
593
- lines: Array<{
594
- rateBps: number;
595
- amount: number;
596
- label?: string;
597
- scope?: string;
598
- }>;
599
- };
600
- promoCode?: {
601
- id: string;
602
- code: string;
603
- type: string;
604
- value: number;
605
- };
606
- type: PaymentMethodType;
607
- provider?: {
608
- customerId: string;
609
- paymentIntentId?: string;
610
- subscriptionId?: string;
611
- priceId?: string;
612
- };
613
- }
614
- declare enum PaymentMethodType {
615
- Cash = "CASH",
616
- CreditCard = "CREDIT_CARD",
617
- Free = "FREE"
818
+ password: string;
618
819
  }
619
- interface QuoteLineItem {
620
- itemType: string;
621
- id: string;
622
- name: string;
623
- quantity: number;
624
- unitPrice: number;
625
- total: number;
820
+ interface ResetPasswordParams {
821
+ newPassword: string;
822
+ oldPassword?: string;
626
823
  }
627
- interface PromoCodeValidation {
628
- id: string;
629
- code: string;
630
- discountType: any;
631
- discountValue: number;
632
- conditions: any[];
824
+ interface DeleteUserParams {
633
825
  }
634
- interface Quote {
635
- currency: string;
636
- market: string;
637
- subtotal: number;
638
- shipping: number;
639
- discount: number;
640
- total: number;
641
- lineItems: QuoteLineItem[];
642
- shippingMethod: ShippingMethod | null;
643
- promoCode: PromoCodeValidation | null;
644
- payment: Payment;
645
- chargeAmount: number;
826
+ interface TrackEmailOpenParams {
827
+ trackingPixelId: string;
646
828
  }
647
- interface Price {
648
- market: string;
649
- amount: number;
650
- compareAt?: number;
829
+ interface TrackEmailOpenParams {
830
+ trackingPixelId: string;
651
831
  }
652
- interface Location {
653
- country?: string | null;
654
- address?: string | null;
655
- city?: string | null;
656
- postalCode?: string | null;
657
- countryCode?: string | null;
658
- coordinates?: {
659
- lat: number;
660
- lon: number;
661
- } | null;
832
+ interface GetDeliveryStatsParams {
662
833
  }
663
- interface EshopCartItem {
664
- id: string;
665
- productId: string;
666
- variantId: string;
667
- productName: string;
668
- productSlug: string;
669
- variantAttributes: Record<string, any>;
670
- price: Price;
671
- quantity: number;
672
- addedAt: number;
834
+ interface GetDeliveryStatsParams {
673
835
  }
674
- interface ReservationCartItem {
675
- id: string;
676
- serviceId: string;
677
- serviceName: string;
678
- date: string;
679
- from: number;
680
- to: number;
681
- timeText: string;
682
- isMultiDay: boolean;
683
- reservationMethod: string;
684
- providerId?: string;
685
- blocks: any[];
836
+ interface UpdateNotificationsParams {
686
837
  }
687
- interface PaymentProviderConfig {
688
- type: "STRIPE";
689
- publicKey: string;
690
- secretKey: string;
691
- webhookSecret: string;
838
+ interface GetMeParams {
692
839
  }
693
- interface ZoneDefinition {
694
- id: string;
695
- name: string;
840
+ interface LogoutParams {
696
841
  }
697
- interface ZonePaymentMethod {
698
- id: string;
842
+ interface GetBusinessesParams {
699
843
  }
700
- interface ZoneShippingMethod {
701
- id: string;
702
- amount: number;
844
+ interface GetSubscriptionPlansParams {
703
845
  }
704
- interface MarketZone {
705
- taxBps: number;
706
- zoneId: string;
707
- paymentMethods: ZonePaymentMethod[];
708
- shippingMethods: ZoneShippingMethod[];
846
+ interface SetupAnalyticsParams {
847
+ [key: string]: any;
709
848
  }
710
- interface Market {
849
+ interface GetBusinessMediaParams2 {
711
850
  id: string;
712
- currency: string;
713
- taxMode: "EXCLUSIVE" | "INCLUSIVE";
714
- zones: MarketZone[];
851
+ cursor?: string | null;
852
+ limit?: number;
715
853
  }
716
- interface PaymentMethod {
854
+ interface SetProviderScheduleParams {
717
855
  id: string;
718
- type: PaymentMethodType;
856
+ workingTime: any;
857
+ serviceIds: string[];
858
+ providerIds: string[];
719
859
  }
720
- interface ShippingMethod {
860
+ interface DeleteProductParams {
721
861
  id: string;
722
- type: 'SHIPPING' | 'PICKUP';
723
- taxable: boolean;
724
- etaText: string;
725
- location?: Location;
726
862
  }
727
- interface ZoneResolvedShippingMethod extends ShippingMethod {
728
- zoneAmount: number;
863
+ interface DeleteProductParams {
864
+ id: string;
729
865
  }
730
- interface Language {
866
+ interface ProcessRefundParams {
731
867
  id: string;
868
+ entity: string;
869
+ amount: number;
732
870
  }
733
- interface BusinessEmails {
734
- billing: string;
735
- support: string;
871
+ type FeatureFlagStatus = "DRAFT" | "ACTIVE" | "ARCHIVED";
872
+ interface VariantInput {
873
+ key: string;
874
+ name: string;
875
+ weight: number;
876
+ payload?: Block[];
736
877
  }
737
- interface BusinessConfig {
738
- languages: Language[];
739
- zones: ZoneDefinition[];
740
- paymentMethods: PaymentMethod[];
741
- shippingMethods: ShippingMethod[];
742
- markets: Market[];
743
- buildHooks: string[];
744
- webhooks: any[];
745
- orderBlocks: any[];
746
- reservationBlocks: any[];
747
- paymentProvider?: PaymentProviderConfig;
748
- aiProvider?: any;
749
- emails: BusinessEmails;
878
+ interface Variant extends VariantInput {
879
+ assignments: number;
880
+ conversions: number;
750
881
  }
751
- interface Business {
882
+ interface FeatureFlag {
752
883
  id: string;
884
+ key: string;
753
885
  name: string;
754
- configs?: BusinessConfig;
755
- }
756
- interface EshopStoreState {
886
+ description?: string;
757
887
  businessId: string;
758
- selectedShippingMethodId: string | null;
759
- userToken: string | null;
760
- processingCheckout: boolean;
761
- loading: boolean;
762
- error: string | null;
763
- phoneNumber: string;
764
- phoneError: string | null;
765
- verificationCode: string;
766
- verifyError: string | null;
767
- }
768
- interface Block {
769
- id: string;
888
+ status: FeatureFlagStatus;
889
+ variants: Variant[];
890
+ goalEvent?: string;
891
+ createdAt: number;
892
+ updatedAt: number;
893
+ }
894
+ interface VariantResult {
895
+ variantKey: string;
896
+ assignments: number;
897
+ conversions: number;
898
+ conversionRate: number;
899
+ improvement?: number;
900
+ }
901
+ interface FlagResults {
902
+ totalAssignments: number;
903
+ totalConversions: number;
904
+ variantResults: VariantResult[];
905
+ }
906
+ interface GetVariantResponse {
907
+ flagKey: string;
908
+ variantKey: string;
909
+ variantName: string;
910
+ payload: Block[];
911
+ isNewAssignment: boolean;
912
+ }
913
+ interface TrackEventResponse {
914
+ tracked: boolean;
915
+ experimentsUpdated: number;
916
+ }
917
+ interface CreateFeatureFlagParams {
770
918
  key: string;
771
- type: string;
772
- properties?: any;
773
- value?: any;
919
+ name: string;
920
+ description?: string;
921
+ variants: VariantInput[];
922
+ goalEvent?: string;
774
923
  }
775
- interface Seo {
776
- slug: Record<string, string>;
777
- metaTitle: Record<string, string>;
778
- metaDescription: Record<string, string>;
779
- canonicalUrl: Record<string, string>;
780
- ogImage: string;
924
+ interface UpdateFeatureFlagParams {
925
+ id: string;
926
+ name?: string;
927
+ description?: string;
928
+ variants?: VariantInput[];
929
+ goalEvent?: string;
930
+ status?: FeatureFlagStatus;
781
931
  }
782
- interface MediaResolution {
932
+ interface DeleteFeatureFlagParams {
783
933
  id: string;
784
- size: string;
785
- url: string;
786
934
  }
787
- interface Media {
935
+ interface GetFeatureFlagParams {
788
936
  id: string;
789
- resolutions: {
790
- [key: string]: MediaResolution;
791
- };
792
- mimeType: string;
793
- title?: string | null;
794
- description?: string | null;
795
- alt?: string | null;
796
- owner: string;
797
- metadata?: string | null;
798
- uploadedAt: string;
799
- seo: Seo;
800
937
  }
801
- interface ApiResponse<T> {
802
- success: boolean;
803
- data?: T;
804
- error?: string;
805
- cursor?: string;
806
- total?: number;
938
+ interface GetFeatureFlagsParams {
939
+ status?: FeatureFlagStatus;
807
940
  }
808
- interface PaginatedResponse<T> {
809
- data: T[];
810
- meta?: {
811
- total: number;
812
- page: number;
813
- per_page: number;
814
- };
941
+ interface GetFeatureFlagResultsParams {
942
+ id: string;
815
943
  }
816
- interface MarketConfigClient {
817
- currency: string;
818
- taxMode: string;
819
- defaultTaxRate: number;
820
- paymentMethods: string[];
821
- showTaxIncluded: boolean;
822
- shippingMethods?: ShippingMethod[];
944
+ interface GetVariantParams {
945
+ flagKey: string;
823
946
  }
824
- interface ReservationStoreState {
825
- currentStep: number;
826
- totalSteps: number;
827
- steps: Record<number, {
828
- name: string;
829
- labelKey: string;
830
- }>;
831
- weekdays: string[];
832
- monthYear: string;
833
- days: any[];
834
- current: Date;
835
- selectedDate: string | null;
836
- slots: any[];
837
- selectedSlot: any | null;
838
- selectedMethod: string | null;
839
- selectedProvider: any | null;
840
- providers: any[];
841
- loading: boolean;
842
- startDate: string | null;
843
- endDate: string | null;
844
- isMultiDay: boolean;
845
- phoneNumber: string;
846
- phoneError: string | null;
847
- phoneSuccess: string | null;
848
- verificationCode: string;
849
- verifyError: string | null;
850
- isPhoneVerified: boolean;
851
- isSendingCode: boolean;
852
- isVerifying: boolean;
853
- codeSentAt: number | null;
854
- canResendAt: number | null;
855
- guestToken: string | null;
856
- service: any | null;
857
- business: Business | null;
858
- currency: string;
859
- reservationBlocks: Block[];
860
- apiUrl: string;
861
- businessId: string;
862
- timezone: string;
863
- tzGroups: any;
864
- items: ReservationCartItem[];
865
- allowedPaymentMethods: string[];
866
- paymentConfig: {
867
- provider: PaymentProviderConfig | null;
868
- enabled: boolean;
869
- };
947
+ interface TrackEventParams {
948
+ eventName: string;
949
+ value?: number;
870
950
  }
871
951
 
872
- export { type AddPhoneNumberParams, type ApiResponse, type Block, type Business, type BusinessConfig, type BusinessEmails, type CheckoutParams, type Condition, type ConfirmUserParams, type CreateBusinessParams, type CreateCollectionEntryParams, type CreateCollectionParams, type CreateEntryParams, type CreateOrderParams, type CreatePortalSessionParams, type CreateProductParams, type CreatePromoCodeParams, type CreateProviderParams, type CreateReservationParams, type CreateRoleParams, type CreateServiceParams, type DeleteBusinessMediaParams, type DeleteBusinessParams, type DeleteCollectionEntryParams, type DeleteCollectionParams, type DeleteProductParams, type DeletePromoCodeParams, type DeleteProviderParams, type DeleteRoleParams, type DeleteServiceParams, type DeleteUserParams, type Discount, type EshopCartItem, type EshopItem, type EshopStoreState, type ForgotPasswordParams, type GenerateBlocksParams, type GetAnalyticsHealthParams, type GetAnalyticsParams, type GetAvailableSlotsParams, type GetBusinessMediaParams, type GetBusinessMediaParams2, type GetBusinessParams, type GetBusinessParentsParams, type GetBusinessServiceWorkingTimeParams, type GetBusinessesParams, type GetCollectionEntriesParams, type GetCollectionEntryParams, type GetCollectionParams, type GetCollectionSubscribersParams, type GetCollectionsParams, type GetDeliveryStatsParams, type GetEntriesParams, type GetLoginUrlParams, type GetMeParams, type GetOrderParams, type GetOrdersParams, type GetProductParams, type GetProductsParams, type GetPromoCodeParams, type GetPromoCodesParams, type GetProviderParams, type GetProvidersParams, type GetQuoteParams, type GetReservationParams, type GetReservationQuoteParams, type GetRoleParams, type GetRolesParams, type GetServiceParams, type GetServicesParams, type GetSubscriptionParams, type GetSubscriptionPlansParams, type GetVariableMetadataParams, type HandleInvitationParams, type InviteUserParams, type Language, type Location, type LoginUserParams, type LogoutParams, type Market, type MarketConfigClient, type MarketZone, type Media, type MediaResolution, type PaginatedResponse, type Payment, type PaymentMethod, PaymentMethodType, type PaymentProviderConfig, type PhoneNumberConfirmParams, type Price, type ProcessRefundParams, type PromoCodeValidation, type Quote, type QuoteLineItem, type RegisterUserParams, type RequestOptions, type ReservationCartItem, type ReservationCheckoutParams, type ReservationStoreState, type ResetForgotPasswordParams, type ResetPasswordParams, type SearchMyReservationsParams, type SearchReservationsParams, type SearchUsersParams, type SendEntryParams, type Seo, type SetProviderScheduleParams, type SetRoleParams, type SetupAnalyticsParams, type ShippingMethod, type SubscribeParams, type TestWebhookParams, type TrackEmailOpenParams, type TriggerBuildsParams, type UpdateBusinessParams, type UpdateCollectionParams, type UpdateEntryParams, type UpdateMediaParams, type UpdateNotificationsParams, type UpdateOrderParams, type UpdateOrderPaymentStatusParams, type UpdateOrderStatusParams, type UpdateProductParams, type UpdatePromoCodeParams, type UpdateProviderParams, type UpdateReservationParams, type UpdateRoleParams, type UpdateServiceParams, type UpdateUserProfileParams, type UploadBusinessMediaParams, type UserSubscribeParams, type ZoneDefinition, type ZonePaymentMethod, type ZoneResolvedShippingMethod, type ZoneShippingMethod };
952
+ export { type AddPhoneNumberParams, type ApiResponse, type Block, type Business, type BusinessConfig, type BusinessEmails, type CheckoutParams, type Condition, type ConfirmUserParams, type CreateBusinessParams, type CreateCollectionEntryParams, type CreateCollectionParams, type CreateEntryParams, type CreateFeatureFlagParams, type CreateOrderParams, type CreatePortalSessionParams, type CreateProductParams, type CreatePromoCodeParams, type CreateProviderParams, type CreateReservationParams, type CreateRoleParams, type CreateServiceParams, type DeleteBusinessMediaParams, type DeleteBusinessParams, type DeleteCollectionEntryParams, type DeleteCollectionParams, type DeleteFeatureFlagParams, type DeleteProductParams, type DeletePromoCodeParams, type DeleteProviderParams, type DeleteRoleParams, type DeleteServiceParams, type DeleteUserParams, type Discount, type EshopCartItem, type EshopItem, type EshopStoreState, type FeatureFlag, type FeatureFlagStatus, type FlagResults, type ForgotPasswordParams, type GenerateBlocksParams, type GetAnalyticsHealthParams, type GetAnalyticsParams, type GetAvailableSlotsParams, type GetBusinessMediaParams, type GetBusinessMediaParams2, type GetBusinessParams, type GetBusinessParentsParams, type GetBusinessServiceWorkingTimeParams, type GetBusinessesParams, type GetCollectionEntriesParams, type GetCollectionEntryParams, type GetCollectionParams, type GetCollectionSubscribersParams, type GetCollectionsParams, type GetDeliveryStatsParams, type GetEntriesParams, type GetFeatureFlagParams, type GetFeatureFlagResultsParams, type GetFeatureFlagsParams, type GetLoginUrlParams, type GetMeParams, type GetOrderParams, type GetOrdersParams, type GetProductParams, type GetProductsParams, type GetPromoCodeParams, type GetPromoCodesParams, type GetProviderParams, type GetProvidersParams, type GetQuoteParams, type GetReservationParams, type GetReservationQuoteParams, type GetRoleParams, type GetRolesParams, type GetServiceParams, type GetServicesParams, type GetSubscriptionParams, type GetSubscriptionPlansParams, type GetVariableMetadataParams, type GetVariantParams, type GetVariantResponse, type HandleInvitationParams, type InviteUserParams, type Language, type Location, type LoginUserParams, type LogoutParams, type Market, type MarketConfigClient, type MarketZone, type Media, type MediaResolution, type PaginatedResponse, type Payment, type PaymentMethod, PaymentMethodType, type PaymentProviderConfig, type PhoneNumberConfirmParams, type Price, type ProcessRefundParams, type PromoCodeValidation, type Quote, type QuoteLineItem, type RegisterUserParams, type RequestOptions, type ReservationCartItem, type ReservationCheckoutParams, type ReservationStoreState, type ResetForgotPasswordParams, type ResetPasswordParams, type SearchMyReservationsParams, type SearchReservationsParams, type SearchUsersParams, type SendEntryParams, type Seo, type SetProviderScheduleParams, type SetRoleParams, type SetupAnalyticsParams, type ShippingMethod, type SubscribeParams, type TestWebhookParams, type TrackEmailOpenParams, type TrackEventParams, type TrackEventResponse, type TriggerBuildsParams, type UpdateBusinessParams, type UpdateCollectionParams, type UpdateEntryParams, type UpdateFeatureFlagParams, type UpdateMediaParams, type UpdateNotificationsParams, type UpdateOrderParams, type UpdateOrderPaymentStatusParams, type UpdateOrderStatusParams, type UpdateProductParams, type UpdatePromoCodeParams, type UpdateProviderParams, type UpdateReservationParams, type UpdateRoleParams, type UpdateServiceParams, type UpdateUserProfileParams, type UploadBusinessMediaParams, type UserSubscribeParams, type Variant, type VariantInput, type VariantResult, type ZoneDefinition, type ZonePaymentMethod, type ZoneResolvedShippingMethod, type ZoneShippingMethod };