@scryme/sdk 9.64.2 → 9.66.0
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/LICENSE +661 -0
- package/README.md +1 -1
- package/dist/{base-DZXCyXwH.d.mts → base-Cl7_QxqC.d.mts} +255 -52
- package/dist/{base-DZXCyXwH.d.ts → base-Cl7_QxqC.d.ts} +255 -52
- package/dist/{chunk-CBV4VTNE.mjs → chunk-PPNV4D3M.mjs} +875 -44
- package/dist/client.d.mts +100 -16
- package/dist/client.d.ts +100 -16
- package/dist/client.js +661 -31
- package/dist/client.mjs +7 -3
- package/dist/index.d.mts +19 -5
- package/dist/index.d.ts +19 -5
- package/dist/index.js +880 -45
- package/dist/index.mjs +11 -3
- package/dist/server.d.mts +48 -9
- package/dist/server.d.ts +48 -9
- package/dist/server.js +361 -20
- package/dist/server.mjs +1 -1
- package/package.json +13 -3
|
@@ -1,52 +1,5 @@
|
|
|
1
1
|
import { AxiosInstance, AxiosRequestConfig, AxiosResponse } from 'axios';
|
|
2
2
|
|
|
3
|
-
/**
|
|
4
|
-
* Generated by orval v8.23.0 🍺
|
|
5
|
-
* Do not edit manually.
|
|
6
|
-
* Scryme V3 API
|
|
7
|
-
* The Scryme V3 API documentation - Scalable & Enterprise Ready
|
|
8
|
-
* OpenAPI spec version: 3.0
|
|
9
|
-
*/
|
|
10
|
-
interface AddressDto {
|
|
11
|
-
label: string;
|
|
12
|
-
street1: string;
|
|
13
|
-
street2?: string;
|
|
14
|
-
city: string;
|
|
15
|
-
state?: string;
|
|
16
|
-
postalCode?: string;
|
|
17
|
-
country: string;
|
|
18
|
-
isDefault?: boolean;
|
|
19
|
-
}
|
|
20
|
-
|
|
21
|
-
/**
|
|
22
|
-
* Generated by orval v8.23.0 🍺
|
|
23
|
-
* Do not edit manually.
|
|
24
|
-
* Scryme V3 API
|
|
25
|
-
* The Scryme V3 API documentation - Scalable & Enterprise Ready
|
|
26
|
-
* OpenAPI spec version: 3.0
|
|
27
|
-
*/
|
|
28
|
-
type RegisterCustomerDtoMetadata = {
|
|
29
|
-
[key: string]: unknown;
|
|
30
|
-
};
|
|
31
|
-
|
|
32
|
-
/**
|
|
33
|
-
* Generated by orval v8.23.0 🍺
|
|
34
|
-
* Do not edit manually.
|
|
35
|
-
* Scryme V3 API
|
|
36
|
-
* The Scryme V3 API documentation - Scalable & Enterprise Ready
|
|
37
|
-
* OpenAPI spec version: 3.0
|
|
38
|
-
*/
|
|
39
|
-
|
|
40
|
-
interface RegisterCustomerDto {
|
|
41
|
-
zitadelUserId?: string;
|
|
42
|
-
name: string;
|
|
43
|
-
email: string;
|
|
44
|
-
phone?: string;
|
|
45
|
-
location?: string;
|
|
46
|
-
metadata?: RegisterCustomerDtoMetadata;
|
|
47
|
-
address?: AddressDto;
|
|
48
|
-
}
|
|
49
|
-
|
|
50
3
|
/**
|
|
51
4
|
* Generated by orval v8.23.0 🍺
|
|
52
5
|
* Do not edit manually.
|
|
@@ -153,6 +106,24 @@ interface AddDepartmentMemberDto {
|
|
|
153
106
|
canManageBudget?: boolean;
|
|
154
107
|
}
|
|
155
108
|
|
|
109
|
+
/**
|
|
110
|
+
* Generated by orval v8.23.0 🍺
|
|
111
|
+
* Do not edit manually.
|
|
112
|
+
* Scryme V3 API
|
|
113
|
+
* The Scryme V3 API documentation - Scalable & Enterprise Ready
|
|
114
|
+
* OpenAPI spec version: 3.0
|
|
115
|
+
*/
|
|
116
|
+
interface AddressDto {
|
|
117
|
+
label: string;
|
|
118
|
+
street1: string;
|
|
119
|
+
street2?: string;
|
|
120
|
+
city: string;
|
|
121
|
+
state?: string;
|
|
122
|
+
postalCode?: string;
|
|
123
|
+
country: string;
|
|
124
|
+
isDefault?: boolean;
|
|
125
|
+
}
|
|
126
|
+
|
|
156
127
|
/**
|
|
157
128
|
* Generated by orval v8.23.0 🍺
|
|
158
129
|
* Do not edit manually.
|
|
@@ -1157,6 +1128,17 @@ interface CreateInvoiceDto {
|
|
|
1157
1128
|
[key: string]: unknown;
|
|
1158
1129
|
}
|
|
1159
1130
|
|
|
1131
|
+
/**
|
|
1132
|
+
* Generated by orval v8.23.0 🍺
|
|
1133
|
+
* Do not edit manually.
|
|
1134
|
+
* Scryme V3 API
|
|
1135
|
+
* The Scryme V3 API documentation - Scalable & Enterprise Ready
|
|
1136
|
+
* OpenAPI spec version: 3.0
|
|
1137
|
+
*/
|
|
1138
|
+
interface CreateInvoiceTemplateDto {
|
|
1139
|
+
[key: string]: unknown;
|
|
1140
|
+
}
|
|
1141
|
+
|
|
1160
1142
|
/**
|
|
1161
1143
|
* Generated by orval v8.23.0 🍺
|
|
1162
1144
|
* Do not edit manually.
|
|
@@ -1246,8 +1228,10 @@ interface ServiceBookingItemDto {
|
|
|
1246
1228
|
*/
|
|
1247
1229
|
|
|
1248
1230
|
interface CreateOrderDto {
|
|
1249
|
-
/** Internal customer ID.
|
|
1231
|
+
/** Internal customer ID. */
|
|
1250
1232
|
customerId?: string;
|
|
1233
|
+
/** Internal business account ID. */
|
|
1234
|
+
businessAccountId?: string;
|
|
1251
1235
|
/** Inventory location ID */
|
|
1252
1236
|
locationId: string;
|
|
1253
1237
|
items?: OrderItemDto[];
|
|
@@ -1770,6 +1754,18 @@ interface CrmRecordResponseDto {
|
|
|
1770
1754
|
updatedAt: string;
|
|
1771
1755
|
}
|
|
1772
1756
|
|
|
1757
|
+
/**
|
|
1758
|
+
* Generated by orval v8.23.0 🍺
|
|
1759
|
+
* Do not edit manually.
|
|
1760
|
+
* Scryme V3 API
|
|
1761
|
+
* The Scryme V3 API documentation - Scalable & Enterprise Ready
|
|
1762
|
+
* OpenAPI spec version: 3.0
|
|
1763
|
+
*/
|
|
1764
|
+
interface CustomerLoginDto {
|
|
1765
|
+
email: string;
|
|
1766
|
+
password: string;
|
|
1767
|
+
}
|
|
1768
|
+
|
|
1773
1769
|
/**
|
|
1774
1770
|
* Generated by orval v8.23.0 🍺
|
|
1775
1771
|
* Do not edit manually.
|
|
@@ -1782,6 +1778,10 @@ interface CustomerResponseDto {
|
|
|
1782
1778
|
name: string;
|
|
1783
1779
|
email: string;
|
|
1784
1780
|
phone: string;
|
|
1781
|
+
company?: string;
|
|
1782
|
+
customerType?: string;
|
|
1783
|
+
dateOfBirth?: string;
|
|
1784
|
+
taxId?: string;
|
|
1785
1785
|
}
|
|
1786
1786
|
|
|
1787
1787
|
/**
|
|
@@ -1797,6 +1797,17 @@ type CustomersGetCustomersParams = {
|
|
|
1797
1797
|
cursor?: string;
|
|
1798
1798
|
};
|
|
1799
1799
|
|
|
1800
|
+
/**
|
|
1801
|
+
* Generated by orval v8.23.0 🍺
|
|
1802
|
+
* Do not edit manually.
|
|
1803
|
+
* Scryme V3 API
|
|
1804
|
+
* The Scryme V3 API documentation - Scalable & Enterprise Ready
|
|
1805
|
+
* OpenAPI spec version: 3.0
|
|
1806
|
+
*/
|
|
1807
|
+
type CustomersRevokeAllSessionsParams = {
|
|
1808
|
+
mode: string;
|
|
1809
|
+
};
|
|
1810
|
+
|
|
1800
1811
|
/**
|
|
1801
1812
|
* Generated by orval v8.23.0 🍺
|
|
1802
1813
|
* Do not edit manually.
|
|
@@ -2707,6 +2718,24 @@ interface ProvisionZitadelDto {
|
|
|
2707
2718
|
postLogoutRedirectUris?: string[];
|
|
2708
2719
|
}
|
|
2709
2720
|
|
|
2721
|
+
/**
|
|
2722
|
+
* Generated by orval v8.23.0 🍺
|
|
2723
|
+
* Do not edit manually.
|
|
2724
|
+
* Scryme V3 API
|
|
2725
|
+
* The Scryme V3 API documentation - Scalable & Enterprise Ready
|
|
2726
|
+
* OpenAPI spec version: 3.0
|
|
2727
|
+
*/
|
|
2728
|
+
interface PublicBookingDto {
|
|
2729
|
+
/** Service ID */
|
|
2730
|
+
serviceId: string;
|
|
2731
|
+
/** Verification ID (from OTP verification) */
|
|
2732
|
+
verificationId: string;
|
|
2733
|
+
/** Scheduled start time */
|
|
2734
|
+
scheduledStartTime: string;
|
|
2735
|
+
/** Booking notes */
|
|
2736
|
+
notes?: string;
|
|
2737
|
+
}
|
|
2738
|
+
|
|
2710
2739
|
/**
|
|
2711
2740
|
* Generated by orval v8.23.0 🍺
|
|
2712
2741
|
* Do not edit manually.
|
|
@@ -2751,6 +2780,20 @@ type PublicInvoiceControllerGeneratePublicLinkParams = {
|
|
|
2751
2780
|
token: string;
|
|
2752
2781
|
};
|
|
2753
2782
|
|
|
2783
|
+
/**
|
|
2784
|
+
* Generated by orval v8.23.0 🍺
|
|
2785
|
+
* Do not edit manually.
|
|
2786
|
+
* Scryme V3 API
|
|
2787
|
+
* The Scryme V3 API documentation - Scalable & Enterprise Ready
|
|
2788
|
+
* OpenAPI spec version: 3.0
|
|
2789
|
+
*/
|
|
2790
|
+
type PublicServicesGetAvailabilityParams = {
|
|
2791
|
+
/**
|
|
2792
|
+
* Target date in YYYY-MM-DD format
|
|
2793
|
+
*/
|
|
2794
|
+
date?: string;
|
|
2795
|
+
};
|
|
2796
|
+
|
|
2754
2797
|
/**
|
|
2755
2798
|
* Generated by orval v8.23.0 🍺
|
|
2756
2799
|
* Do not edit manually.
|
|
@@ -2883,6 +2926,40 @@ interface RedeemRewardDto {
|
|
|
2883
2926
|
rewardId: string;
|
|
2884
2927
|
}
|
|
2885
2928
|
|
|
2929
|
+
/**
|
|
2930
|
+
* Generated by orval v8.23.0 🍺
|
|
2931
|
+
* Do not edit manually.
|
|
2932
|
+
* Scryme V3 API
|
|
2933
|
+
* The Scryme V3 API documentation - Scalable & Enterprise Ready
|
|
2934
|
+
* OpenAPI spec version: 3.0
|
|
2935
|
+
*/
|
|
2936
|
+
type RegisterCustomerDtoMetadata = {
|
|
2937
|
+
[key: string]: unknown;
|
|
2938
|
+
};
|
|
2939
|
+
|
|
2940
|
+
/**
|
|
2941
|
+
* Generated by orval v8.23.0 🍺
|
|
2942
|
+
* Do not edit manually.
|
|
2943
|
+
* Scryme V3 API
|
|
2944
|
+
* The Scryme V3 API documentation - Scalable & Enterprise Ready
|
|
2945
|
+
* OpenAPI spec version: 3.0
|
|
2946
|
+
*/
|
|
2947
|
+
|
|
2948
|
+
interface RegisterCustomerDto {
|
|
2949
|
+
zitadelUserId?: string;
|
|
2950
|
+
name: string;
|
|
2951
|
+
email: string;
|
|
2952
|
+
password?: string;
|
|
2953
|
+
phone?: string;
|
|
2954
|
+
location?: string;
|
|
2955
|
+
metadata?: RegisterCustomerDtoMetadata;
|
|
2956
|
+
address?: AddressDto;
|
|
2957
|
+
company?: string;
|
|
2958
|
+
customerType?: string;
|
|
2959
|
+
dateOfBirth?: string;
|
|
2960
|
+
taxId?: string;
|
|
2961
|
+
}
|
|
2962
|
+
|
|
2886
2963
|
/**
|
|
2887
2964
|
* Generated by orval v8.23.0 🍺
|
|
2888
2965
|
* Do not edit manually.
|
|
@@ -2956,6 +3033,20 @@ interface RequestB2BQuoteDto {
|
|
|
2956
3033
|
notes?: string;
|
|
2957
3034
|
}
|
|
2958
3035
|
|
|
3036
|
+
/**
|
|
3037
|
+
* Generated by orval v8.23.0 🍺
|
|
3038
|
+
* Do not edit manually.
|
|
3039
|
+
* Scryme V3 API
|
|
3040
|
+
* The Scryme V3 API documentation - Scalable & Enterprise Ready
|
|
3041
|
+
* OpenAPI spec version: 3.0
|
|
3042
|
+
*/
|
|
3043
|
+
interface RequestOtpDto {
|
|
3044
|
+
/** Phone number to send OTP to */
|
|
3045
|
+
phoneNumber?: string;
|
|
3046
|
+
/** Email address to send OTP to */
|
|
3047
|
+
email?: string;
|
|
3048
|
+
}
|
|
3049
|
+
|
|
2959
3050
|
/**
|
|
2960
3051
|
* Generated by orval v8.23.0 🍺
|
|
2961
3052
|
* Do not edit manually.
|
|
@@ -3565,10 +3656,15 @@ interface UpdateCustomerDto {
|
|
|
3565
3656
|
zitadelUserId?: string;
|
|
3566
3657
|
name?: string;
|
|
3567
3658
|
email?: string;
|
|
3659
|
+
password?: string;
|
|
3568
3660
|
phone?: string;
|
|
3569
3661
|
location?: string;
|
|
3570
3662
|
metadata?: UpdateCustomerDtoMetadata;
|
|
3571
3663
|
address?: AddressDto;
|
|
3664
|
+
company?: string;
|
|
3665
|
+
customerType?: string;
|
|
3666
|
+
dateOfBirth?: string;
|
|
3667
|
+
taxId?: string;
|
|
3572
3668
|
}
|
|
3573
3669
|
|
|
3574
3670
|
/**
|
|
@@ -4072,6 +4168,22 @@ interface ValidateVoucherDto {
|
|
|
4072
4168
|
customerId: string;
|
|
4073
4169
|
}
|
|
4074
4170
|
|
|
4171
|
+
/**
|
|
4172
|
+
* Generated by orval v8.23.0 🍺
|
|
4173
|
+
* Do not edit manually.
|
|
4174
|
+
* Scryme V3 API
|
|
4175
|
+
* The Scryme V3 API documentation - Scalable & Enterprise Ready
|
|
4176
|
+
* OpenAPI spec version: 3.0
|
|
4177
|
+
*/
|
|
4178
|
+
interface VerifyOtpDto {
|
|
4179
|
+
/** Phone number used */
|
|
4180
|
+
phoneNumber?: string;
|
|
4181
|
+
/** Email address used */
|
|
4182
|
+
email?: string;
|
|
4183
|
+
/** OTP code */
|
|
4184
|
+
code: string;
|
|
4185
|
+
}
|
|
4186
|
+
|
|
4075
4187
|
/**
|
|
4076
4188
|
* Generated by orval v8.23.0 🍺
|
|
4077
4189
|
* Do not edit manually.
|
|
@@ -4130,7 +4242,7 @@ declare const getScrymeV3API: (axiosInstance?: AxiosInstance) => {
|
|
|
4130
4242
|
invoiceControllerDeleteInvoice: (id: string, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
|
|
4131
4243
|
invoiceControllerFinalizeInvoice: (id: string, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
|
|
4132
4244
|
invoiceControllerGetTemplates: (options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
|
|
4133
|
-
invoiceControllerCreateTemplate: (options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
|
|
4245
|
+
invoiceControllerCreateTemplate: (createInvoiceTemplateDto: CreateInvoiceTemplateDto, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
|
|
4134
4246
|
invoiceControllerGetConfig: (options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
|
|
4135
4247
|
invoiceControllerUpdateConfig: (invoiceConfigDto: InvoiceConfigDto, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
|
|
4136
4248
|
publicInvoiceControllerDownloadInvoice: (id: string, params: PublicInvoiceControllerDownloadInvoiceParams, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
|
|
@@ -4207,9 +4319,21 @@ declare const getScrymeV3API: (axiosInstance?: AxiosInstance) => {
|
|
|
4207
4319
|
servicesGetUtilization: (orgSlug: string, params: ServicesGetUtilizationParams, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
|
|
4208
4320
|
servicesGetPerformance: (orgSlug: string, params: ServicesGetPerformanceParams, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
|
|
4209
4321
|
servicesGetFunnel: (orgSlug: string, params: ServicesGetFunnelParams, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
|
|
4322
|
+
publicServicesListServices: (orgSlug: string, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
|
|
4323
|
+
publicServicesGetCategories: (orgSlug: string, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
|
|
4324
|
+
publicServicesGetService: (orgSlug: string, id: string, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
|
|
4325
|
+
publicServicesGetAvailability: (orgSlug: string, id: string, params?: PublicServicesGetAvailabilityParams, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
|
|
4326
|
+
publicServicesRequestOtp: (orgSlug: string, requestOtpDto: RequestOtpDto, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
|
|
4327
|
+
publicServicesVerifyOtp: (orgSlug: string, verifyOtpDto: VerifyOtpDto, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
|
|
4328
|
+
publicServicesCreatePublicBooking: (orgSlug: string, publicBookingDto: PublicBookingDto, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
|
|
4210
4329
|
customersProvisionZitadel: (orgSlug: string, provisionZitadelDto: ProvisionZitadelDto, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
|
|
4211
4330
|
customersGetCustomers: (orgSlug: string, params?: CustomersGetCustomersParams, options?: AxiosRequestConfig) => Promise<AxiosResponse<CustomerResponseDto[]>>;
|
|
4212
4331
|
customersRegister: (orgSlug: string, registerCustomerDto: RegisterCustomerDto, options?: AxiosRequestConfig) => Promise<AxiosResponse<CustomerResponseDto>>;
|
|
4332
|
+
customersLogin: (orgSlug: string, customerLoginDto: CustomerLoginDto, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
|
|
4333
|
+
customersGetCurrentSession: (orgSlug: string, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
|
|
4334
|
+
customersGetSessions: (orgSlug: string, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
|
|
4335
|
+
customersRevokeAllSessions: (orgSlug: string, params: CustomersRevokeAllSessionsParams, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
|
|
4336
|
+
customersRevokeSession: (orgSlug: string, id: string, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
|
|
4213
4337
|
customersUpdate: (orgSlug: string, id: string, updateCustomerDto: UpdateCustomerDto, options?: AxiosRequestConfig) => Promise<AxiosResponse<CustomerResponseDto>>;
|
|
4214
4338
|
customersGetCustomerById: (orgSlug: string, id: string, options?: AxiosRequestConfig) => Promise<AxiosResponse<CustomerResponseDto>>;
|
|
4215
4339
|
customersDelete: (orgSlug: string, id: string, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
|
|
@@ -4461,9 +4585,21 @@ type ServicesRegisterCustomerAppResult = AxiosResponse<void>;
|
|
|
4461
4585
|
type ServicesGetUtilizationResult = AxiosResponse<void>;
|
|
4462
4586
|
type ServicesGetPerformanceResult = AxiosResponse<void>;
|
|
4463
4587
|
type ServicesGetFunnelResult = AxiosResponse<void>;
|
|
4588
|
+
type PublicServicesListServicesResult = AxiosResponse<void>;
|
|
4589
|
+
type PublicServicesGetCategoriesResult = AxiosResponse<void>;
|
|
4590
|
+
type PublicServicesGetServiceResult = AxiosResponse<void>;
|
|
4591
|
+
type PublicServicesGetAvailabilityResult = AxiosResponse<void>;
|
|
4592
|
+
type PublicServicesRequestOtpResult = AxiosResponse<void>;
|
|
4593
|
+
type PublicServicesVerifyOtpResult = AxiosResponse<void>;
|
|
4594
|
+
type PublicServicesCreatePublicBookingResult = AxiosResponse<void>;
|
|
4464
4595
|
type CustomersProvisionZitadelResult = AxiosResponse<void>;
|
|
4465
4596
|
type CustomersGetCustomersResult = AxiosResponse<CustomerResponseDto[]>;
|
|
4466
4597
|
type CustomersRegisterResult = AxiosResponse<CustomerResponseDto>;
|
|
4598
|
+
type CustomersLoginResult = AxiosResponse<void>;
|
|
4599
|
+
type CustomersGetCurrentSessionResult = AxiosResponse<void>;
|
|
4600
|
+
type CustomersGetSessionsResult = AxiosResponse<void>;
|
|
4601
|
+
type CustomersRevokeAllSessionsResult = AxiosResponse<void>;
|
|
4602
|
+
type CustomersRevokeSessionResult = AxiosResponse<void>;
|
|
4467
4603
|
type CustomersUpdateResult = AxiosResponse<CustomerResponseDto>;
|
|
4468
4604
|
type CustomersGetCustomerByIdResult = AxiosResponse<CustomerResponseDto>;
|
|
4469
4605
|
type CustomersDeleteResult = AxiosResponse<void>;
|
|
@@ -4597,7 +4733,22 @@ type AnalyticsControllerGetDashboardAnalyticsResult = AxiosResponse<void>;
|
|
|
4597
4733
|
type AnalyticsControllerGetResourceUtilizationResult = AxiosResponse<void>;
|
|
4598
4734
|
|
|
4599
4735
|
type RawAPI = ReturnType<typeof getScrymeV3API>;
|
|
4600
|
-
|
|
4736
|
+
interface CustomerSessionDto {
|
|
4737
|
+
id: string;
|
|
4738
|
+
customerId: string;
|
|
4739
|
+
token: string;
|
|
4740
|
+
userAgent?: string;
|
|
4741
|
+
ipAddress?: string;
|
|
4742
|
+
expiresAt: string;
|
|
4743
|
+
createdAt: string;
|
|
4744
|
+
updatedAt: string;
|
|
4745
|
+
}
|
|
4746
|
+
interface CustomerAuthResponseDto<TUser = CustomerResponseDto, TSession = CustomerSessionDto> {
|
|
4747
|
+
token: string;
|
|
4748
|
+
session?: TSession;
|
|
4749
|
+
user?: TUser;
|
|
4750
|
+
}
|
|
4751
|
+
type MethodsWithOrgSlug = "publicServicesListServices" | "publicServicesGetCategories" | "publicServicesGetService" | "publicServicesGetAvailability" | "publicServicesRequestOtp" | "publicServicesVerifyOtp" | "publicServicesCreatePublicBooking" | "inventoryVerifyIntegrity" | "inventoryFixIntegrity" | "inventoryGetInventory" | "inventoryTraceBatch" | "inventorySplitBatch" | "inventoryMergeBatches" | "inventoryCreateAssembly" | "inventoryCompleteAssembly" | "inventoryRequestAdjustment" | "inventoryGetAdjustments" | "inventoryApproveAdjustment" | "inventoryRejectAdjustment" | "inventoryGetLeadTime" | "inventoryGetWasteAnalysis" | "inventoryCheckB2BAvailability" | "inventoryUnpackBatch" | "inventoryScanUnpackBatch" | "inventoryQuickStockInquiry" | "accountingInitialize" | "accountingGetProfitLoss" | "accountingGetBalanceSheet" | "accountingGetCashFlow" | "accountingGetTaxSummary" | "webhooksCreate" | "webhooksList" | "webhooksDelete" | "catalogGetProducts" | "catalogCreateProduct" | "catalogGetServices" | "catalogUpdateProduct" | "catalogUpdateSupplierVariant" | "catalogGetPriceChangeRequests" | "catalogReviewPriceChangeRequest" | "servicesCreateCategory" | "servicesGetCategories" | "servicesUpdateCategory" | "servicesDeleteCategory" | "servicesCreateService" | "servicesGetServices" | "servicesGetCurrentMemberShifts" | "servicesGetShifts" | "servicesGetService" | "servicesUpdateService" | "servicesDeleteService" | "servicesCreateResource" | "servicesGetResources" | "servicesUpdateResource" | "servicesDeleteResource" | "servicesCreateBooking" | "servicesGetBookings" | "servicesGetBooking" | "servicesUpdateBookingStatus" | "servicesCompleteBooking" | "servicesCreateShift" | "servicesGetStaffShifts" | "servicesAddBreak" | "servicesRegisterCustomerApp" | "servicesGetUtilization" | "servicesGetPerformance" | "servicesGetFunnel" | "customersProvisionZitadel" | "customersGetCustomers" | "customersRegister" | "customersUpdate" | "customersGetCustomerById" | "customersDelete" | "customersGetAddresses" | "customersAddAddress" | "customersGetCurrentSession" | "businessAccountControllerCreate" | "businessAccountControllerGetOne" | "crmControllerCreateRecord" | "crmControllerGetRecord" | "crmControllerUpdateRecord" | "crmControllerCreateNote" | "crmControllerGetRecordNotes" | "crmControllerCreateActivity" | "crmControllerGetTimeline" | "crmControllerCreateObject" | "crmControllerListObjects" | "crmControllerCreateField" | "crmControllerListFields" | "crmControllerCreateRelationship" | "crmControllerListRelationships" | "crmControllerCreateAssociation" | "crmControllerListRecordAssociations" | "loyaltyRedeemReward" | "loyaltyGetCustomerStatus" | "loyaltyValidateVoucher" | "ordersCreateOrder" | "ordersGetOrders" | "ordersUpdateStatus" | "ordersRequestB2BQuote" | "ordersConvertQuoteToOrder" | "paymentsControllerHandleStkCallback" | "pOSProvision" | "pOSLogin" | "pOSGetMe" | "pOSProcessSale" | "pOSSync" | "pOSGetTransactions" | "pOSRegisterPettyCash" | "pOSGetPettyCashFunds" | "pOSGetPettyCashTransactions" | "membersControllerGetMembers" | "membersControllerCreateMember" | "membersControllerGetMember" | "membersControllerUpdateMember" | "membersControllerDeleteMember" | "membersControllerGetMemberActivity" | "membersControllerUpdateStatus" | "membersControllerAdminCheckOut" | "invitationsList" | "invitationsCreate" | "invitationsRevoke" | "invitationsAccept" | "roleManagementControllerGetCustomRoles" | "roleManagementControllerCreateCustomRole" | "roleManagementControllerUpdateCustomRole" | "roleManagementControllerDeleteCustomRole" | "roleManagementControllerGetPermissionSets" | "roleManagementControllerCreatePermissionSet" | "roleManagementControllerGetRoleGroups" | "roleManagementControllerCreateRoleGroup" | "roleManagementControllerAssignRoles" | "roleManagementControllerRemoveRoles" | "departmentsList" | "departmentsCreate" | "departmentsGet" | "departmentsUpdate" | "departmentsDelete" | "departmentsAddMember" | "departmentsRemoveMember" | "attendanceControllerGetLogs" | "attendanceControllerCheckIn" | "attendanceControllerCheckOut" | "attendanceControllerGetMyStatus" | "attendanceControllerGetStatus" | "announcementControllerBroadcastAnnouncement" | "cartControllerGetCart" | "cartControllerClearCart" | "cartControllerAddToCart" | "cartControllerRemoveFromCart" | "favoritesControllerGetFavorites" | "favoritesControllerAddFavorite" | "favoritesControllerRemoveFavorite" | "stockingGetPurchases" | "stockingCreatePurchase" | "stockingReceivePurchase" | "stockingGetTransfers" | "stockingCreateTransfer" | "stockingShipTransfer" | "stockingReceiveTransfer" | "stockingGetRequests" | "stockingGetPendingDispatch" | "stockingDispatchOrders" | "stockingGetActiveDeliveries" | "stockingReconcilePod" | "stockingGetPhysicalReconciliations" | "stockingSubmitPhysicalReconciliation" | "stockingGetReconciliationReport" | "stockingGetPartners" | "stockingCreatePartner" | "stockingGetPartner" | "stockingUpdatePartner" | "stockingAdjustPartnerWallet" | "b2BGetCatalog" | "b2BGetInvoices" | "b2BGetOrders" | "b2BCreateOrder" | "b2BCreateQuote" | "crmIntegrationsGetAuthUrl" | "crmIntegrationsHandleCallback" | "crmIntegrationsHandleWebhook" | "crmIntegrationsReplyToActivity" | "unitsGetUnits" | "strapiCreateConnection" | "strapiListConnections" | "strapiGetConnection" | "strapiUpdateConnection" | "strapiDeleteConnection" | "strapiTriggerSync" | "strapiEnqueueSync" | "strapiGetWebhookLogs" | "strapiGetSyncLogs" | "strapiExchangeCustomerToken" | "strapiRegisterCustomer" | "analyticsControllerGetDashboardAnalytics" | "analyticsControllerGetResourceUtilization";
|
|
4601
4752
|
declare const methodsWithOrgSlugSet: Set<string>;
|
|
4602
4753
|
type OmitOrgSlug<MethodName extends keyof RawAPI, T> = MethodName extends MethodsWithOrgSlug ? (T extends (orgSlug: string, ...args: infer A) => infer R ? (...args: A) => R : T) : T;
|
|
4603
4754
|
type SDKModule<Mapping> = {
|
|
@@ -4828,6 +4979,51 @@ declare const membersMapping: {
|
|
|
4828
4979
|
readonly getAttendanceStatus: "attendanceControllerGetStatus";
|
|
4829
4980
|
readonly broadcastAnnouncement: "announcementControllerBroadcastAnnouncement";
|
|
4830
4981
|
};
|
|
4982
|
+
declare const publicServicesMapping: {
|
|
4983
|
+
readonly listServices: "publicServicesListServices";
|
|
4984
|
+
readonly getCategories: "publicServicesGetCategories";
|
|
4985
|
+
readonly getService: "publicServicesGetService";
|
|
4986
|
+
readonly getAvailability: "publicServicesGetAvailability";
|
|
4987
|
+
readonly requestOtp: "publicServicesRequestOtp";
|
|
4988
|
+
readonly verifyOtp: "publicServicesVerifyOtp";
|
|
4989
|
+
readonly createBooking: "publicServicesCreatePublicBooking";
|
|
4990
|
+
};
|
|
4991
|
+
declare const servicesMapping: {
|
|
4992
|
+
readonly createCategory: "servicesCreateCategory";
|
|
4993
|
+
readonly getCategoriesAdmin: "servicesGetCategories";
|
|
4994
|
+
readonly updateCategory: "servicesUpdateCategory";
|
|
4995
|
+
readonly deleteCategory: "servicesDeleteCategory";
|
|
4996
|
+
readonly createService: "servicesCreateService";
|
|
4997
|
+
readonly getServicesAdmin: "servicesGetServices";
|
|
4998
|
+
readonly getCurrentMemberShifts: "servicesGetCurrentMemberShifts";
|
|
4999
|
+
readonly getShifts: "servicesGetShifts";
|
|
5000
|
+
readonly getServiceAdmin: "servicesGetService";
|
|
5001
|
+
readonly updateService: "servicesUpdateService";
|
|
5002
|
+
readonly deleteService: "servicesDeleteService";
|
|
5003
|
+
readonly createResource: "servicesCreateResource";
|
|
5004
|
+
readonly getResources: "servicesGetResources";
|
|
5005
|
+
readonly updateResource: "servicesUpdateResource";
|
|
5006
|
+
readonly deleteResource: "servicesDeleteResource";
|
|
5007
|
+
readonly createBookingAdmin: "servicesCreateBooking";
|
|
5008
|
+
readonly getBookings: "servicesGetBookings";
|
|
5009
|
+
readonly getBookingAdmin: "servicesGetBooking";
|
|
5010
|
+
readonly updateBookingStatus: "servicesUpdateBookingStatus";
|
|
5011
|
+
readonly completeBooking: "servicesCompleteBooking";
|
|
5012
|
+
readonly createShift: "servicesCreateShift";
|
|
5013
|
+
readonly getStaffShifts: "servicesGetStaffShifts";
|
|
5014
|
+
readonly addBreak: "servicesAddBreak";
|
|
5015
|
+
readonly registerCustomerApp: "servicesRegisterCustomerApp";
|
|
5016
|
+
readonly getServiceUtilization: "servicesGetUtilization";
|
|
5017
|
+
readonly getServicePerformance: "servicesGetPerformance";
|
|
5018
|
+
readonly getServiceFunnel: "servicesGetFunnel";
|
|
5019
|
+
readonly listServices: "publicServicesListServices";
|
|
5020
|
+
readonly getCategories: "publicServicesGetCategories";
|
|
5021
|
+
readonly getService: "publicServicesGetService";
|
|
5022
|
+
readonly getAvailability: "publicServicesGetAvailability";
|
|
5023
|
+
readonly requestOtp: "publicServicesRequestOtp";
|
|
5024
|
+
readonly verifyOtp: "publicServicesVerifyOtp";
|
|
5025
|
+
readonly createBooking: "publicServicesCreatePublicBooking";
|
|
5026
|
+
};
|
|
4831
5027
|
declare const adminMapping: {
|
|
4832
5028
|
readonly getStats: "adminControllerGetStats";
|
|
4833
5029
|
readonly listOrganizations: "adminControllerListOrganizations";
|
|
@@ -4876,7 +5072,12 @@ declare const adminMapping: {
|
|
|
4876
5072
|
readonly getDashboardAnalytics: "analyticsControllerGetDashboardAnalytics";
|
|
4877
5073
|
readonly getResourceUtilization: "analyticsControllerGetResourceUtilization";
|
|
4878
5074
|
};
|
|
4879
|
-
|
|
5075
|
+
interface CatalogModule<TProduct = ProductResponseDto, TService = ServiceCatalogResponseDto> extends Omit<SDKModule<typeof catalogMapping>, "getProducts" | "createProduct" | "getServices" | "updateProduct"> {
|
|
5076
|
+
getProducts<T = TProduct>(params?: CatalogGetProductsParams, options?: AxiosRequestConfig): Promise<AxiosResponse<T[]>>;
|
|
5077
|
+
createProduct<T = TProduct>(createProductDto: CreateProductDto, options?: AxiosRequestConfig): Promise<AxiosResponse<T>>;
|
|
5078
|
+
getServices<T = TService>(params?: CatalogGetServicesParams, options?: AxiosRequestConfig): Promise<AxiosResponse<T[]>>;
|
|
5079
|
+
updateProduct<T = TProduct>(id: string, updateProductDto: UpdateProductDto, options?: AxiosRequestConfig): Promise<AxiosResponse<T>>;
|
|
5080
|
+
}
|
|
4880
5081
|
type AuthModule = SDKModule<typeof authMapping>;
|
|
4881
5082
|
type InventoryModule = SDKModule<typeof inventoryMapping>;
|
|
4882
5083
|
type OrdersModule = SDKModule<typeof ordersMapping>;
|
|
@@ -4886,7 +5087,9 @@ type AccountingModule = SDKModule<typeof accountingMapping>;
|
|
|
4886
5087
|
type LoyaltyModule = SDKModule<typeof loyaltyMapping>;
|
|
4887
5088
|
type MembersModule = SDKModule<typeof membersMapping>;
|
|
4888
5089
|
type AdminModule = SDKModule<typeof adminMapping>;
|
|
5090
|
+
type PublicServicesModule = SDKModule<typeof publicServicesMapping>;
|
|
5091
|
+
type ServicesModule = SDKModule<typeof servicesMapping>;
|
|
4889
5092
|
declare function buildModule<Mapping extends Record<string, keyof RawAPI>>(api: RawAPI, orgSlug: string, mapping: Mapping): SDKModule<Mapping>;
|
|
4890
5093
|
declare function getJwtExpiry(token: string): number | null;
|
|
4891
5094
|
|
|
4892
|
-
export { type CreateBookingDto as $, type AccountingGetProfitLossParams as A, type BanUserDto as B, type CheckB2BAvailabilityDto as C, type DefineTierDto as D, type ExpenseControllerGetExpensesParams as E, type ProductResponseDto as F, type CreateProductDto as G, type CatalogGetServicesParams as H, type InventoryFixIntegrityParams as I, type ServiceCatalogResponseDto as J, type UpdateProductDto as K, type UpdateSupplierProductDto as L, type CatalogGetPriceChangeRequestsParams as M, type ReviewPriceChangeDto as N, type CreateServiceCategoryDto as O, type PublicInvoiceControllerDownloadInvoiceParams as P, type UpdateServiceCategoryDto as Q, type RecordCustomPaymentDto as R, type SetGlobalSettingDto as S, type TopUpPettyCashFundDto as T, type UpdateInvoiceDto as U, type CreateServiceDto as V, type WebhookResponseDto as W, type ServicesGetShiftsParams as X, type UpdateServiceDto as Y, type CreateServiceResourceDto as Z, type UpdateServiceResourceDto as _, type InventoryGetInventoryParams as a, type AnnouncementDto as a$, type ServicesUpdateBookingStatusBody as a0, type CompleteBookingDto as a1, type ServicesCreateShiftBody as a2, type ServicesAddBreakBody as a3, type ServicesRegisterCustomerAppBody as a4, type ServicesGetUtilizationParams as a5, type ServicesGetPerformanceParams as a6, type ServicesGetFunnelParams as a7, type ProvisionZitadelDto as a8, type CustomersGetCustomersParams as a9, type PosLoginResponseDto as aA, type ProcessSaleDto as aB, type RegisterPettyCashDto as aC, type POSGetPettyCashTransactionsParams as aD, type MembersControllerGetMembersParams as aE, type MemberResponseDto as aF, type CreateMemberDto as aG, type UpdateMemberDto as aH, type CheckOutDto as aI, type TerminalLoginDto as aJ, type TerminalLoginResponseDto as aK, type InvitationsListParams as aL, type InvitationResponseDto as aM, type CreateInvitationDto as aN, type AcceptInvitationDto as aO, type RoleManagementControllerGetCustomRolesParams as aP, type CreateCustomRoleDto as aQ, type UpdateCustomRoleDto as aR, type CreatePermissionSetDto as aS, type CreateRoleGroupDto as aT, type DepartmentsListParams as aU, type DepartmentResponseDto as aV, type CreateDepartmentDto as aW, type UpdateDepartmentDto as aX, type AddDepartmentMemberDto as aY, type AttendanceControllerGetLogsParams as aZ, type CheckInDto as a_, type CustomerResponseDto as aa, type RegisterCustomerDto as ab, type UpdateCustomerDto as ac, type AddressDto as ad, type CreateBusinessAccountDto as ae, type CreateCrmRecordDto as af, type CrmRecordResponseDto as ag, type UpdateCrmRecordDto as ah, type CreateCrmNoteDto as ai, type CrmNoteResponseDto as aj, type CreateCrmActivityDto as ak, type CreateCrmObjectDto as al, type CreateCrmFieldDto as am, type CreateCrmRelationshipDto as an, type CreateCrmAssociationDto as ao, type RedeemRewardDto as ap, type LoyaltyStatusResponseDto as aq, type ValidateVoucherDto as ar, type CreateOrderDto as as, type OrderResponseDto as at, type OrdersGetOrdersParams as au, type UpdateOrderStatusDto as av, type RequestB2BQuoteDto as aw, type ProvisionDeviceDto as ax, type ProvisionResponseDto as ay, type PosLoginDto as az, type InventoryResponseDto as b, type AdminControllerListSystemLogsResult as b$, type CartControllerGetCartParams as b0, type CartResponseDto as b1, type CartControllerClearCartParams as b2, type AddToCartDto as b3, type RemoveFromCartDto as b4, type FavoriteResponseDto as b5, type FavoriteDto as b6, type StockingGetPurchasesParams as b7, type CreatePurchaseDto as b8, type ReceivePurchaseDto as b9, type TriggerSyncDto as bA, type AnalyticsControllerGetResourceUtilizationParams as bB, type AccountingGetBalanceSheetResult as bC, type AccountingGetCashFlowResult as bD, type AccountingGetProfitLossResult as bE, type AccountingGetTaxSummaryResult as bF, type AccountingInitializeResult as bG, type AccountingModule as bH, AddDepartmentMemberDtoRole as bI, type AddToCartDtoBookingDetails as bJ, type AdminControllerBanUserResult as bK, type AdminControllerCreateIntegrationDefinitionResult as bL, type AdminControllerCreateOrganizationResult as bM, type AdminControllerDefineTierResult as bN, type AdminControllerDeleteGlobalSettingResult as bO, type AdminControllerDeleteIntegrationDefinitionResult as bP, type AdminControllerDeleteOrganizationResult as bQ, type AdminControllerDeleteTierResult as bR, type AdminControllerGetOrganizationDetailsResult as bS, type AdminControllerGetOrganizationSubscriptionResult as bT, type AdminControllerGetStatsResult as bU, type AdminControllerListActiveOrganizationIntegrationsResult as bV, type AdminControllerListConnectedAppsResult as bW, type AdminControllerListGlobalSettingsResult as bX, type AdminControllerListIntegrationDefinitionsResult as bY, type AdminControllerListMembersResult as bZ, type AdminControllerListOrganizationsResult as b_, type StockingGetTransfersParams as ba, type CreateTransferDto as bb, type ShipTransferDto as bc, type ReceiveTransferDto as bd, type StockingGetRequestsParams as be, type StockingGetPendingDispatchParams as bf, type DispatchOrderDto as bg, type StockingGetActiveDeliveriesParams as bh, type ReconcilePodDto as bi, type StockingGetPhysicalReconciliationsParams as bj, type SubmitReconciliationDto as bk, type CreatePartnerDto as bl, type UpdatePartnerDto as bm, type PartnerWalletActionDto as bn, type CreateSetupKeyDto as bo, type ActivateDeviceDto as bp, type LinkOrganizationDto as bq, type B2BGetCatalogParams as br, type PaginatedB2BCatalogDto as bs, type CreateB2BOrderDto as bt, type B2BOrderResponseDto as bu, type CrmIntegrationsHandleCallbackParams as bv, type UnitsGetUnitsParams as bw, type CreateStrapiConnectionDto as bx, type StrapiConnectionResponseDto as by, type UpdateStrapiConnectionDto as bz, type InventoryGetAdjustmentsParams as c, CreateExpenseDtoPaymentMethod as c$, type AdminControllerListSystemPaymentsResult as c0, type AdminControllerListTiersResult as c1, type AdminControllerListUsersResult as c2, type AdminControllerRecordCustomPaymentResult as c3, type AdminControllerSetGlobalSettingResult as c4, type AdminControllerUnbanUserResult as c5, type AdminControllerUpdateIntegrationDefinitionResult as c6, type AdminControllerUpdateOrganizationResult as c7, type AdminControllerUpdateOrganizationSubscriptionResult as c8, type AdminModule as c9, type BusinessAccountControllerGetOneResult as cA, type CRMModule as cB, type CartControllerAddToCartResult as cC, type CartControllerClearCartResult as cD, type CartControllerGetCartResult as cE, type CartControllerRemoveFromCartResult as cF, type CartItemDto as cG, type CartItemDtoBookingDetails as cH, type CatalogCreateProductResult as cI, type CatalogGetPriceChangeRequestsResult as cJ, type CatalogGetProductsResult as cK, type CatalogGetServicesResult as cL, type CatalogModule as cM, type CatalogReviewPriceChangeRequestResult as cN, type CatalogUpdateProductResult as cO, type CatalogUpdateSupplierVariantResult as cP, type CmsCustomFieldsDto as cQ, type CmsCustomFieldsDtoArchivedAt as cR, type CmsCustomFieldsDtoCustomAttributes as cS, CmsCustomFieldsDtoPublishStatus as cT, type CmsCustomFieldsDtoPublishedAt as cU, type CreateBookingDtoCustomFields as cV, type CreateCrmActivityDtoMetadata as cW, CreateCrmFieldDtoType as cX, type CreateCrmRecordDtoData as cY, CreateCrmRelationshipDtoType as cZ, type CreateDepartmentDtoSettings as c_, type AnalyticsControllerGetDashboardAnalyticsResult as ca, type AnalyticsControllerGetResourceUtilizationResult as cb, type AnnouncementControllerBroadcastAnnouncementResult as cc, type AttendanceControllerCheckInResult as cd, type AttendanceControllerCheckOutResult as ce, type AttendanceControllerGetLogsResult as cf, AttendanceControllerGetLogsSortOrder as cg, type AttendanceControllerGetMyStatusResult as ch, type AttendanceControllerGetStatusResult as ci, type AuthControllerHandleOAuth2Result as cj, type AuthExchangeToken201Meta as ck, type AuthExchangeTokenResult as cl, type AuthModule as cm, type B2BCatalogProductDto as cn, type B2BCreateOrderResult as co, type B2BCreateQuoteResult as cp, type B2BGetCatalogResult as cq, type B2BGetInvoicesResult as cr, type B2BGetOrdersResult as cs, type B2BOrderItemDto as ct, type B2BQuoteItemDto as cu, type B2BVariantDto as cv, type B2BVariantStockDto as cw, type BatchReceiptDto as cx, type BatchReceiptDtoQcResults as cy, type BusinessAccountControllerCreateResult as cz, type InventoryGetLeadTimeParams as d, type FavoritesControllerRemoveFavoriteResult as d$, CreateIntegrationDefinitionDtoAuthType as d0, CreateIntegrationDefinitionDtoCategory as d1, CreateInvitationDtoRole as d2, CreateMemberDtoRole as d3, CreateOrderDtoChannel as d4, CreatePartnerDtoBenefitType as d5, CreatePartnerDtoReconciliationPolicy as d6, type CreatePurchaseItemDto as d7, CreateServiceDtoPricingModel as d8, CreateStrapiConnectionDtoEnabledSyncTypesItem as d9, type CrmRecordResponseDtoData as dA, type CrmRecordResponseDtoOwnerId as dB, type CustomersAddAddressResult as dC, type CustomersDeleteResult as dD, type CustomersGetAddressesResult as dE, type CustomersGetCustomerByIdResult as dF, type CustomersGetCustomersResult as dG, type CustomersProvisionZitadelResult as dH, type CustomersRegisterResult as dI, type CustomersUpdateResult as dJ, type DefineTierDtoLimits as dK, type DepartmentsAddMemberResult as dL, type DepartmentsCreateResult as dM, type DepartmentsDeleteResult as dN, type DepartmentsGetResult as dO, type DepartmentsListResult as dP, DepartmentsListSortOrder as dQ, type DepartmentsRemoveMemberResult as dR, type DepartmentsUpdateResult as dS, type DispatchAddressDto as dT, type ExpenseControllerCreateExpenseResult as dU, type ExpenseControllerGetExpenseCategoriesResult as dV, type ExpenseControllerGetExpenseResult as dW, type ExpenseControllerGetExpensesResult as dX, ExpenseControllerGetExpensesStatus as dY, type FavoritesControllerAddFavoriteResult as dZ, type FavoritesControllerGetFavoritesResult as d_, type CreateStrapiConnectionDtoLocationMap as da, CreateStrapiConnectionDtoSyncDirection as db, CreateTransferDtoPriority as dc, type CreateTransferItemDto as dd, CreateUtilityAccountDtoType as de, type CrmControllerCreateActivityResult as df, type CrmControllerCreateAssociationResult as dg, type CrmControllerCreateFieldResult as dh, type CrmControllerCreateNoteResult as di, type CrmControllerCreateObjectResult as dj, type CrmControllerCreateRecordResult as dk, type CrmControllerCreateRelationshipResult as dl, type CrmControllerGetRecordNotesResult as dm, type CrmControllerGetRecordResult as dn, type CrmControllerGetTimelineResult as dp, type CrmControllerListFieldsResult as dq, type CrmControllerListObjectsResult as dr, type CrmControllerListRecordAssociationsResult as ds, type CrmControllerListRelationshipsResult as dt, type CrmControllerUpdateRecordResult as du, type CrmIntegrationsGetAuthUrlResult as dv, type CrmIntegrationsHandleCallbackResult as dw, type CrmIntegrationsHandleWebhookResult as dx, type CrmIntegrationsReplyToActivityResult as dy, type CrmNoteResponseDtoCreatedById as dz, type InventoryGetWasteAnalysisParams as e, type OrderItemDto as e$, type ImageItemDto as e0, type InventoryApproveAdjustmentResult as e1, type InventoryCheckB2BAvailabilityResult as e2, type InventoryCompleteAssemblyResult as e3, type InventoryCreateAssemblyResult as e4, type InventoryFixIntegrityResult as e5, type InventoryGetAdjustmentsResult as e6, type InventoryGetInventoryResult as e7, type InventoryGetLeadTimeResult as e8, type InventoryGetWasteAnalysisResult as e9, type InvoiceControllerUpdateConfigResult as eA, type InvoiceControllerUpdateInvoiceResult as eB, type LoyaltyGetCustomerStatusResult as eC, type LoyaltyModule as eD, type LoyaltyRedeemRewardResult as eE, type LoyaltyStatusResponseDtoAvailableRewardsItem as eF, type LoyaltyValidateVoucherResult as eG, type ManualBatchSelectionDto as eH, type MemberDepartmentDto as eI, MemberResponseDtoMembershipStatus as eJ, MemberResponseDtoRole as eK, MemberResponseDtoStatus as eL, type MemberRoleDto as eM, type MembersControllerAdminCheckOutResult as eN, type MembersControllerCreateMemberResult as eO, type MembersControllerDeleteMemberResult as eP, type MembersControllerGetMemberActivityResult as eQ, type MembersControllerGetMemberResult as eR, MembersControllerGetMembersMembershipStatus as eS, type MembersControllerGetMembersResult as eT, MembersControllerGetMembersRole as eU, MembersControllerGetMembersSortOrder as eV, type MembersControllerUpdateMemberResult as eW, type MembersControllerUpdateStatusResult as eX, type MembersModule as eY, type MethodsWithOrgSlug as eZ, type OmitOrgSlug as e_, type InventoryMergeBatchesResult as ea, type InventoryModule as eb, type InventoryQuickStockInquiryResult as ec, type InventoryRejectAdjustmentResult as ed, type InventoryRequestAdjustmentResult as ee, type InventoryScanUnpackBatchResult as ef, type InventorySplitBatchResult as eg, type InventoryTraceBatchResult as eh, type InventoryUnpackBatchResult as ei, type InventoryVerifyIntegrityResult as ej, InvitationResponseDtoRole as ek, InvitationResponseDtoStatus as el, type InvitationsAcceptResult as em, type InvitationsCreateResult as en, type InvitationsListResult as eo, InvitationsListSortOrder as ep, InvitationsListStatus as eq, type InvitationsRevokeResult as er, type InvoiceControllerCreateInvoiceResult as es, type InvoiceControllerCreateTemplateResult as et, type InvoiceControllerDeleteInvoiceResult as eu, type InvoiceControllerFinalizeInvoiceResult as ev, type InvoiceControllerGetConfigResult as ew, type InvoiceControllerGetInvoiceResult as ex, type InvoiceControllerGetInvoicesResult as ey, type InvoiceControllerGetTemplatesResult as ez, type CreateExpenseDto as f, type ServicesAddBreakResult as f$, type OrdersConvertQuoteToOrderResult as f0, type OrdersCreateOrderResult as f1, type OrdersGetOrdersResult as f2, type OrdersModule as f3, type OrdersRequestB2BQuoteResult as f4, type OrdersUpdateStatusResult as f5, type POSGetMeResult as f6, type POSGetPettyCashFundsResult as f7, type POSGetPettyCashTransactionsResult as f8, type POSGetTransactionsResult as f9, ReconcilePodDtoOutcome as fA, type ReconciliationItemDto as fB, type RegisterCustomerDtoMetadata as fC, RegisterPettyCashDtoPaymentMethod as fD, ReviewPriceChangeDtoStatus as fE, type RoleManagementControllerAssignRolesResult as fF, type RoleManagementControllerCreateCustomRoleResult as fG, type RoleManagementControllerCreatePermissionSetResult as fH, type RoleManagementControllerCreateRoleGroupResult as fI, type RoleManagementControllerDeleteCustomRoleResult as fJ, type RoleManagementControllerGetCustomRolesResult as fK, RoleManagementControllerGetCustomRolesSortOrder as fL, type RoleManagementControllerGetPermissionSetsResult as fM, type RoleManagementControllerGetRoleGroupsResult as fN, type RoleManagementControllerRemoveRolesResult as fO, type RoleManagementControllerUpdateCustomRoleResult as fP, type SDKModule as fQ, type SaleItemDto as fR, type SalePaymentDto as fS, type SaleServiceItemDto as fT, type SeoMetadataDto as fU, type ServiceBookingItemDto as fV, type ServiceCatalogResponseDtoDescription as fW, type ServiceCatalogResponseDtoEstimatedDuration as fX, type ServiceCatalogResponseDtoSlug as fY, type ServiceCategoryResponseDto as fZ, type ServiceMaterialDto as f_, type POSLoginResult as fa, type POSModule as fb, type POSProcessSaleResult as fc, type POSProvisionResult as fd, type POSRegisterPettyCashResult as fe, type POSSyncResult as ff, type PaginationMetaDto as fg, type PaymentsControllerHandleStkCallbackResult as fh, type PettyCashControllerCreateFundResult as fi, type PettyCashControllerGetFundResult as fj, type PettyCashControllerGetFundTransactionsResult as fk, type PettyCashControllerGetFundsResult as fl, type PettyCashControllerTopUpFundResult as fm, type ProductCategoryResponseDto as fn, type ProductResponseDtoDescription as fo, type ProductResponseDtoRetailPrice as fp, type ProductResponseDtoSlug as fq, type ProductVariantResponseDto as fr, type ProductVariantResponseDtoRetailPrice as fs, type PublicInvoiceControllerDownloadInvoiceByTransactionResult as ft, type PublicInvoiceControllerDownloadInvoiceResult as fu, type PublicInvoiceControllerDownloadReceiptResult as fv, type PublicInvoiceControllerGeneratePublicLinkResult as fw, type RawAPI as fx, type ReceivePurchaseItemDto as fy, type ReceiveTransferItemDto as fz, type CreatePettyCashFundDto as g, type StrapiTriggerSyncResult as g$, type ServicesCompleteBookingResult as g0, type ServicesCreateBookingResult as g1, type ServicesCreateCategoryResult as g2, type ServicesCreateResourceResult as g3, type ServicesCreateServiceResult as g4, type ServicesCreateShiftResult as g5, type ServicesDeleteCategoryResult as g6, type ServicesDeleteResourceResult as g7, type ServicesDeleteServiceResult as g8, type ServicesGetBookingResult as g9, type StockingDispatchOrdersResult as gA, type StockingGetActiveDeliveriesResult as gB, type StockingGetPartnerResult as gC, type StockingGetPartnersResult as gD, type StockingGetPendingDispatchResult as gE, type StockingGetPhysicalReconciliationsResult as gF, type StockingGetPurchasesResult as gG, type StockingGetReconciliationReportResult as gH, type StockingGetRequestsResult as gI, type StockingGetTransfersResult as gJ, type StockingReceivePurchaseResult as gK, type StockingReceiveTransferResult as gL, type StockingReconcilePodResult as gM, type StockingShipTransferResult as gN, type StockingSubmitPhysicalReconciliationResult as gO, type StockingUpdatePartnerResult as gP, type StrapiConnectionResponseDtoLocationMap as gQ, type StrapiCreateConnectionResult as gR, type StrapiDeleteConnectionResult as gS, type StrapiEnqueueSyncResult as gT, type StrapiExchangeCustomerTokenResult as gU, type StrapiGetConnectionResult as gV, type StrapiGetSyncLogsResult as gW, type StrapiGetWebhookLogsResult as gX, type StrapiListConnectionsResult as gY, type StrapiReceiveWebhookResult as gZ, type StrapiRegisterCustomerResult as g_, type ServicesGetBookingsResult as ga, type ServicesGetCategoriesResult as gb, type ServicesGetCurrentMemberShiftsResult as gc, type ServicesGetFunnelResult as gd, type ServicesGetPerformanceResult as ge, type ServicesGetResourcesResult as gf, type ServicesGetServiceResult as gg, type ServicesGetServicesResult as gh, type ServicesGetShiftsResult as gi, type ServicesGetStaffShiftsResult as gj, type ServicesGetUtilizationResult as gk, type ServicesRegisterCustomerAppResult as gl, ServicesUpdateBookingStatusBodyStatus as gm, type ServicesUpdateBookingStatusResult as gn, type ServicesUpdateCategoryResult as go, type ServicesUpdateResourceResult as gp, type ServicesUpdateServiceResult as gq, type ShipTransferItemDto as gr, type StandalonePosControllerActivateDeviceResult as gs, type StandalonePosControllerCreateSetupKeyResult as gt, type StandalonePosControllerLinkOrganizationResult as gu, type StandalonePosControllerValidateKeyResult as gv, type StockingAdjustPartnerWalletResult as gw, type StockingCreatePartnerResult as gx, type StockingCreatePurchaseResult as gy, type StockingCreateTransferResult as gz, type CreateUtilityAccountDto as h, type StrapiUpdateConnectionResult as h0, type TerminalMembersControllerLoginResult as h1, type TokenResponseDto as h2, TriggerSyncDtoDirection as h3, TriggerSyncDtoSyncTypesItem as h4, type UnitsGetUnitsResult as h5, type UpdateCrmRecordDtoData as h6, type UpdateCustomerDtoMetadata as h7, type UpdateDepartmentDtoSettings as h8, UpdateIntegrationDefinitionDtoAuthType as h9, crmMapping as hA, getJwtExpiry as hB, inventoryMapping as hC, loyaltyMapping as hD, membersMapping as hE, methodsWithOrgSlugSet as hF, ordersMapping as hG, posMapping as hH, UpdateIntegrationDefinitionDtoCategory as ha, UpdateMemberDtoMembershipStatus as hb, UpdateMemberDtoRole as hc, UpdateMemberDtoStatus as hd, UpdatePartnerDtoBenefitType as he, UpdatePartnerDtoReconciliationPolicy as hf, UpdateServiceDtoPricingModel as hg, UpdateStrapiConnectionDtoEnabledSyncTypesItem as hh, type UpdateStrapiConnectionDtoLocationMap as hi, UpdateStrapiConnectionDtoSyncDirection as hj, type UserSummaryDto as hk, type UtilityAccountControllerCreateAccountResult as hl, type UtilityAccountControllerGetAccountResult as hm, type UtilityAccountControllerGetAccountsResult as hn, type WebhooksCreateResult as ho, type WebhooksDeleteResult as hp, type WebhooksListResult as hq, type WindmillCallbackControllerHandleApprovalCallbackResult as hr, type WindmillCallbackControllerHandleBakeryDisposalCallbackResult as hs, type WindmillCallbackControllerHandleCallbackResult as ht, type WindmillCallbackControllerHandleOutcomeCallbackResult as hu, accountingMapping as hv, adminMapping as hw, authMapping as hx, buildModule as hy, catalogMapping as hz, type AccountingGetBalanceSheetParams as i, type AccountingGetCashFlowParams as j, type AccountingGetTaxSummaryParams as k, type CreateInvoiceDto as l, type InvoiceConfigDto as m, type PublicInvoiceControllerDownloadInvoiceByTransactionParams as n, type PublicInvoiceControllerDownloadReceiptParams as o, type PublicInvoiceControllerGeneratePublicLinkParams as p, type TokenRequestDto as q, type AuthExchangeToken201 as r, type CreateOrganizationDto as s, type UpdateOrganizationDto as t, type AdminControllerListMembersParams as u, type UpdateSubscriptionDto as v, type CreateIntegrationDefinitionDto as w, type UpdateIntegrationDefinitionDto as x, type CreateWebhookDto as y, type CatalogGetProductsParams as z };
|
|
5095
|
+
export { type UpdateServiceResourceDto as $, type AccountingGetProfitLossParams as A, type BanUserDto as B, type CheckB2BAvailabilityDto as C, type DefineTierDto as D, type ExpenseControllerGetExpensesParams as E, type CatalogGetProductsParams as F, type ProductResponseDto as G, type CreateProductDto as H, type InventoryFixIntegrityParams as I, type CatalogGetServicesParams as J, type ServiceCatalogResponseDto as K, type UpdateProductDto as L, type UpdateSupplierProductDto as M, type CatalogGetPriceChangeRequestsParams as N, type ReviewPriceChangeDto as O, type PublicInvoiceControllerDownloadInvoiceParams as P, type CreateServiceCategoryDto as Q, type RecordCustomPaymentDto as R, type SetGlobalSettingDto as S, type TopUpPettyCashFundDto as T, type UpdateInvoiceDto as U, type UpdateServiceCategoryDto as V, type WebhookResponseDto as W, type CreateServiceDto as X, type ServicesGetShiftsParams as Y, type UpdateServiceDto as Z, type CreateServiceResourceDto as _, type InventoryGetInventoryParams as a, type DepartmentsListParams as a$, type CreateBookingDto as a0, type ServicesUpdateBookingStatusBody as a1, type CompleteBookingDto as a2, type ServicesCreateShiftBody as a3, type ServicesAddBreakBody as a4, type ServicesRegisterCustomerAppBody as a5, type ServicesGetUtilizationParams as a6, type ServicesGetPerformanceParams as a7, type ServicesGetFunnelParams as a8, type PublicServicesGetAvailabilityParams as a9, type OrderResponseDto as aA, type OrdersGetOrdersParams as aB, type UpdateOrderStatusDto as aC, type RequestB2BQuoteDto as aD, type ProvisionDeviceDto as aE, type ProvisionResponseDto as aF, type PosLoginDto as aG, type PosLoginResponseDto as aH, type ProcessSaleDto as aI, type RegisterPettyCashDto as aJ, type POSGetPettyCashTransactionsParams as aK, type MembersControllerGetMembersParams as aL, type MemberResponseDto as aM, type CreateMemberDto as aN, type UpdateMemberDto as aO, type CheckOutDto as aP, type TerminalLoginDto as aQ, type TerminalLoginResponseDto as aR, type InvitationsListParams as aS, type InvitationResponseDto as aT, type CreateInvitationDto as aU, type AcceptInvitationDto as aV, type RoleManagementControllerGetCustomRolesParams as aW, type CreateCustomRoleDto as aX, type UpdateCustomRoleDto as aY, type CreatePermissionSetDto as aZ, type CreateRoleGroupDto as a_, type RequestOtpDto as aa, type VerifyOtpDto as ab, type PublicBookingDto as ac, type ProvisionZitadelDto as ad, type CustomersGetCustomersParams as ae, type CustomerResponseDto as af, type RegisterCustomerDto as ag, type CustomerLoginDto as ah, type CustomersRevokeAllSessionsParams as ai, type UpdateCustomerDto as aj, type AddressDto as ak, type CreateBusinessAccountDto as al, type CreateCrmRecordDto as am, type CrmRecordResponseDto as an, type UpdateCrmRecordDto as ao, type CreateCrmNoteDto as ap, type CrmNoteResponseDto as aq, type CreateCrmActivityDto as ar, type CreateCrmObjectDto as as, type CreateCrmFieldDto as at, type CreateCrmRelationshipDto as au, type CreateCrmAssociationDto as av, type RedeemRewardDto as aw, type LoyaltyStatusResponseDto as ax, type ValidateVoucherDto as ay, type CreateOrderDto as az, type InventoryResponseDto as b, type AdminControllerGetStatsResult as b$, type DepartmentResponseDto as b0, type CreateDepartmentDto as b1, type UpdateDepartmentDto as b2, type AddDepartmentMemberDto as b3, type AttendanceControllerGetLogsParams as b4, type CheckInDto as b5, type AnnouncementDto as b6, type CartControllerGetCartParams as b7, type CartResponseDto as b8, type CartControllerClearCartParams as b9, type CreateB2BOrderDto as bA, type B2BOrderResponseDto as bB, type CrmIntegrationsHandleCallbackParams as bC, type UnitsGetUnitsParams as bD, type CreateStrapiConnectionDto as bE, type StrapiConnectionResponseDto as bF, type UpdateStrapiConnectionDto as bG, type TriggerSyncDto as bH, type AnalyticsControllerGetResourceUtilizationParams as bI, type AccountingGetBalanceSheetResult as bJ, type AccountingGetCashFlowResult as bK, type AccountingGetProfitLossResult as bL, type AccountingGetTaxSummaryResult as bM, type AccountingInitializeResult as bN, type AccountingModule as bO, AddDepartmentMemberDtoRole as bP, type AddToCartDtoBookingDetails as bQ, type AdminControllerBanUserResult as bR, type AdminControllerCreateIntegrationDefinitionResult as bS, type AdminControllerCreateOrganizationResult as bT, type AdminControllerDefineTierResult as bU, type AdminControllerDeleteGlobalSettingResult as bV, type AdminControllerDeleteIntegrationDefinitionResult as bW, type AdminControllerDeleteOrganizationResult as bX, type AdminControllerDeleteTierResult as bY, type AdminControllerGetOrganizationDetailsResult as bZ, type AdminControllerGetOrganizationSubscriptionResult as b_, type AddToCartDto as ba, type RemoveFromCartDto as bb, type FavoriteResponseDto as bc, type FavoriteDto as bd, type StockingGetPurchasesParams as be, type CreatePurchaseDto as bf, type ReceivePurchaseDto as bg, type StockingGetTransfersParams as bh, type CreateTransferDto as bi, type ShipTransferDto as bj, type ReceiveTransferDto as bk, type StockingGetRequestsParams as bl, type StockingGetPendingDispatchParams as bm, type DispatchOrderDto as bn, type StockingGetActiveDeliveriesParams as bo, type ReconcilePodDto as bp, type StockingGetPhysicalReconciliationsParams as bq, type SubmitReconciliationDto as br, type CreatePartnerDto as bs, type UpdatePartnerDto as bt, type PartnerWalletActionDto as bu, type CreateSetupKeyDto as bv, type ActivateDeviceDto as bw, type LinkOrganizationDto as bx, type B2BGetCatalogParams as by, type PaginatedB2BCatalogDto as bz, type InventoryGetAdjustmentsParams as c, type CmsCustomFieldsDtoPublishedAt as c$, type AdminControllerListActiveOrganizationIntegrationsResult as c0, type AdminControllerListConnectedAppsResult as c1, type AdminControllerListGlobalSettingsResult as c2, type AdminControllerListIntegrationDefinitionsResult as c3, type AdminControllerListMembersResult as c4, type AdminControllerListOrganizationsResult as c5, type AdminControllerListSystemLogsResult as c6, type AdminControllerListSystemPaymentsResult as c7, type AdminControllerListTiersResult as c8, type AdminControllerListUsersResult as c9, type B2BOrderItemDto as cA, type B2BQuoteItemDto as cB, type B2BVariantDto as cC, type B2BVariantStockDto as cD, type BatchReceiptDto as cE, type BatchReceiptDtoQcResults as cF, type BusinessAccountControllerCreateResult as cG, type BusinessAccountControllerGetOneResult as cH, type CRMModule as cI, type CartControllerAddToCartResult as cJ, type CartControllerClearCartResult as cK, type CartControllerGetCartResult as cL, type CartControllerRemoveFromCartResult as cM, type CartItemDto as cN, type CartItemDtoBookingDetails as cO, type CatalogCreateProductResult as cP, type CatalogGetPriceChangeRequestsResult as cQ, type CatalogGetProductsResult as cR, type CatalogGetServicesResult as cS, type CatalogModule as cT, type CatalogReviewPriceChangeRequestResult as cU, type CatalogUpdateProductResult as cV, type CatalogUpdateSupplierVariantResult as cW, type CmsCustomFieldsDto as cX, type CmsCustomFieldsDtoArchivedAt as cY, type CmsCustomFieldsDtoCustomAttributes as cZ, CmsCustomFieldsDtoPublishStatus as c_, type AdminControllerRecordCustomPaymentResult as ca, type AdminControllerSetGlobalSettingResult as cb, type AdminControllerUnbanUserResult as cc, type AdminControllerUpdateIntegrationDefinitionResult as cd, type AdminControllerUpdateOrganizationResult as ce, type AdminControllerUpdateOrganizationSubscriptionResult as cf, type AdminModule as cg, type AnalyticsControllerGetDashboardAnalyticsResult as ch, type AnalyticsControllerGetResourceUtilizationResult as ci, type AnnouncementControllerBroadcastAnnouncementResult as cj, type AttendanceControllerCheckInResult as ck, type AttendanceControllerCheckOutResult as cl, type AttendanceControllerGetLogsResult as cm, AttendanceControllerGetLogsSortOrder as cn, type AttendanceControllerGetMyStatusResult as co, type AttendanceControllerGetStatusResult as cp, type AuthControllerHandleOAuth2Result as cq, type AuthExchangeToken201Meta as cr, type AuthExchangeTokenResult as cs, type AuthModule as ct, type B2BCatalogProductDto as cu, type B2BCreateOrderResult as cv, type B2BCreateQuoteResult as cw, type B2BGetCatalogResult as cx, type B2BGetInvoicesResult as cy, type B2BGetOrdersResult as cz, type InventoryGetLeadTimeParams as d, type DepartmentsDeleteResult as d$, type CreateBookingDtoCustomFields as d0, type CreateCrmActivityDtoMetadata as d1, CreateCrmFieldDtoType as d2, type CreateCrmRecordDtoData as d3, CreateCrmRelationshipDtoType as d4, type CreateDepartmentDtoSettings as d5, CreateExpenseDtoPaymentMethod as d6, CreateIntegrationDefinitionDtoAuthType as d7, CreateIntegrationDefinitionDtoCategory as d8, CreateInvitationDtoRole as d9, type CrmControllerListRelationshipsResult as dA, type CrmControllerUpdateRecordResult as dB, type CrmIntegrationsGetAuthUrlResult as dC, type CrmIntegrationsHandleCallbackResult as dD, type CrmIntegrationsHandleWebhookResult as dE, type CrmIntegrationsReplyToActivityResult as dF, type CrmNoteResponseDtoCreatedById as dG, type CrmRecordResponseDtoData as dH, type CrmRecordResponseDtoOwnerId as dI, type CustomerAuthResponseDto as dJ, type CustomerSessionDto as dK, type CustomersAddAddressResult as dL, type CustomersDeleteResult as dM, type CustomersGetAddressesResult as dN, type CustomersGetCurrentSessionResult as dO, type CustomersGetCustomerByIdResult as dP, type CustomersGetCustomersResult as dQ, type CustomersGetSessionsResult as dR, type CustomersLoginResult as dS, type CustomersProvisionZitadelResult as dT, type CustomersRegisterResult as dU, type CustomersRevokeAllSessionsResult as dV, type CustomersRevokeSessionResult as dW, type CustomersUpdateResult as dX, type DefineTierDtoLimits as dY, type DepartmentsAddMemberResult as dZ, type DepartmentsCreateResult as d_, CreateMemberDtoRole as da, CreateOrderDtoChannel as db, CreatePartnerDtoBenefitType as dc, CreatePartnerDtoReconciliationPolicy as dd, type CreatePurchaseItemDto as de, CreateServiceDtoPricingModel as df, CreateStrapiConnectionDtoEnabledSyncTypesItem as dg, type CreateStrapiConnectionDtoLocationMap as dh, CreateStrapiConnectionDtoSyncDirection as di, CreateTransferDtoPriority as dj, type CreateTransferItemDto as dk, CreateUtilityAccountDtoType as dl, type CrmControllerCreateActivityResult as dm, type CrmControllerCreateAssociationResult as dn, type CrmControllerCreateFieldResult as dp, type CrmControllerCreateNoteResult as dq, type CrmControllerCreateObjectResult as dr, type CrmControllerCreateRecordResult as ds, type CrmControllerCreateRelationshipResult as dt, type CrmControllerGetRecordNotesResult as du, type CrmControllerGetRecordResult as dv, type CrmControllerGetTimelineResult as dw, type CrmControllerListFieldsResult as dx, type CrmControllerListObjectsResult as dy, type CrmControllerListRecordAssociationsResult as dz, type InventoryGetWasteAnalysisParams as e, type MembersControllerAdminCheckOutResult as e$, type DepartmentsGetResult as e0, type DepartmentsListResult as e1, DepartmentsListSortOrder as e2, type DepartmentsRemoveMemberResult as e3, type DepartmentsUpdateResult as e4, type DispatchAddressDto as e5, type ExpenseControllerCreateExpenseResult as e6, type ExpenseControllerGetExpenseCategoriesResult as e7, type ExpenseControllerGetExpenseResult as e8, type ExpenseControllerGetExpensesResult as e9, type InvitationsAcceptResult as eA, type InvitationsCreateResult as eB, type InvitationsListResult as eC, InvitationsListSortOrder as eD, InvitationsListStatus as eE, type InvitationsRevokeResult as eF, type InvoiceControllerCreateInvoiceResult as eG, type InvoiceControllerCreateTemplateResult as eH, type InvoiceControllerDeleteInvoiceResult as eI, type InvoiceControllerFinalizeInvoiceResult as eJ, type InvoiceControllerGetConfigResult as eK, type InvoiceControllerGetInvoiceResult as eL, type InvoiceControllerGetInvoicesResult as eM, type InvoiceControllerGetTemplatesResult as eN, type InvoiceControllerUpdateConfigResult as eO, type InvoiceControllerUpdateInvoiceResult as eP, type LoyaltyGetCustomerStatusResult as eQ, type LoyaltyModule as eR, type LoyaltyRedeemRewardResult as eS, type LoyaltyStatusResponseDtoAvailableRewardsItem as eT, type LoyaltyValidateVoucherResult as eU, type ManualBatchSelectionDto as eV, type MemberDepartmentDto as eW, MemberResponseDtoMembershipStatus as eX, MemberResponseDtoRole as eY, MemberResponseDtoStatus as eZ, type MemberRoleDto as e_, ExpenseControllerGetExpensesStatus as ea, type FavoritesControllerAddFavoriteResult as eb, type FavoritesControllerGetFavoritesResult as ec, type FavoritesControllerRemoveFavoriteResult as ed, type ImageItemDto as ee, type InventoryApproveAdjustmentResult as ef, type InventoryCheckB2BAvailabilityResult as eg, type InventoryCompleteAssemblyResult as eh, type InventoryCreateAssemblyResult as ei, type InventoryFixIntegrityResult as ej, type InventoryGetAdjustmentsResult as ek, type InventoryGetInventoryResult as el, type InventoryGetLeadTimeResult as em, type InventoryGetWasteAnalysisResult as en, type InventoryMergeBatchesResult as eo, type InventoryModule as ep, type InventoryQuickStockInquiryResult as eq, type InventoryRejectAdjustmentResult as er, type InventoryRequestAdjustmentResult as es, type InventoryScanUnpackBatchResult as et, type InventorySplitBatchResult as eu, type InventoryTraceBatchResult as ev, type InventoryUnpackBatchResult as ew, type InventoryVerifyIntegrityResult as ex, InvitationResponseDtoRole as ey, InvitationResponseDtoStatus as ez, type CreateExpenseDto as f, type RoleManagementControllerAssignRolesResult as f$, type MembersControllerCreateMemberResult as f0, type MembersControllerDeleteMemberResult as f1, type MembersControllerGetMemberActivityResult as f2, type MembersControllerGetMemberResult as f3, MembersControllerGetMembersMembershipStatus as f4, type MembersControllerGetMembersResult as f5, MembersControllerGetMembersRole as f6, MembersControllerGetMembersSortOrder as f7, type MembersControllerUpdateMemberResult as f8, type MembersControllerUpdateStatusResult as f9, type PettyCashControllerTopUpFundResult as fA, type ProductCategoryResponseDto as fB, type ProductResponseDtoDescription as fC, type ProductResponseDtoRetailPrice as fD, type ProductResponseDtoSlug as fE, type ProductVariantResponseDto as fF, type ProductVariantResponseDtoRetailPrice as fG, type PublicInvoiceControllerDownloadInvoiceByTransactionResult as fH, type PublicInvoiceControllerDownloadInvoiceResult as fI, type PublicInvoiceControllerDownloadReceiptResult as fJ, type PublicInvoiceControllerGeneratePublicLinkResult as fK, type PublicServicesCreatePublicBookingResult as fL, type PublicServicesGetAvailabilityResult as fM, type PublicServicesGetCategoriesResult as fN, type PublicServicesGetServiceResult as fO, type PublicServicesListServicesResult as fP, type PublicServicesModule as fQ, type PublicServicesRequestOtpResult as fR, type PublicServicesVerifyOtpResult as fS, type RawAPI as fT, type ReceivePurchaseItemDto as fU, type ReceiveTransferItemDto as fV, ReconcilePodDtoOutcome as fW, type ReconciliationItemDto as fX, type RegisterCustomerDtoMetadata as fY, RegisterPettyCashDtoPaymentMethod as fZ, ReviewPriceChangeDtoStatus as f_, type MembersModule as fa, type MethodsWithOrgSlug as fb, type OmitOrgSlug as fc, type OrderItemDto as fd, type OrdersConvertQuoteToOrderResult as fe, type OrdersCreateOrderResult as ff, type OrdersGetOrdersResult as fg, type OrdersModule as fh, type OrdersRequestB2BQuoteResult as fi, type OrdersUpdateStatusResult as fj, type POSGetMeResult as fk, type POSGetPettyCashFundsResult as fl, type POSGetPettyCashTransactionsResult as fm, type POSGetTransactionsResult as fn, type POSLoginResult as fo, type POSModule as fp, type POSProcessSaleResult as fq, type POSProvisionResult as fr, type POSRegisterPettyCashResult as fs, type POSSyncResult as ft, type PaginationMetaDto as fu, type PaymentsControllerHandleStkCallbackResult as fv, type PettyCashControllerCreateFundResult as fw, type PettyCashControllerGetFundResult as fx, type PettyCashControllerGetFundTransactionsResult as fy, type PettyCashControllerGetFundsResult as fz, type CreatePettyCashFundDto as g, type StockingGetPendingDispatchResult as g$, type RoleManagementControllerCreateCustomRoleResult as g0, type RoleManagementControllerCreatePermissionSetResult as g1, type RoleManagementControllerCreateRoleGroupResult as g2, type RoleManagementControllerDeleteCustomRoleResult as g3, type RoleManagementControllerGetCustomRolesResult as g4, RoleManagementControllerGetCustomRolesSortOrder as g5, type RoleManagementControllerGetPermissionSetsResult as g6, type RoleManagementControllerGetRoleGroupsResult as g7, type RoleManagementControllerRemoveRolesResult as g8, type RoleManagementControllerUpdateCustomRoleResult as g9, type ServicesGetPerformanceResult as gA, type ServicesGetResourcesResult as gB, type ServicesGetServiceResult as gC, type ServicesGetServicesResult as gD, type ServicesGetShiftsResult as gE, type ServicesGetStaffShiftsResult as gF, type ServicesGetUtilizationResult as gG, type ServicesModule as gH, type ServicesRegisterCustomerAppResult as gI, ServicesUpdateBookingStatusBodyStatus as gJ, type ServicesUpdateBookingStatusResult as gK, type ServicesUpdateCategoryResult as gL, type ServicesUpdateResourceResult as gM, type ServicesUpdateServiceResult as gN, type ShipTransferItemDto as gO, type StandalonePosControllerActivateDeviceResult as gP, type StandalonePosControllerCreateSetupKeyResult as gQ, type StandalonePosControllerLinkOrganizationResult as gR, type StandalonePosControllerValidateKeyResult as gS, type StockingAdjustPartnerWalletResult as gT, type StockingCreatePartnerResult as gU, type StockingCreatePurchaseResult as gV, type StockingCreateTransferResult as gW, type StockingDispatchOrdersResult as gX, type StockingGetActiveDeliveriesResult as gY, type StockingGetPartnerResult as gZ, type StockingGetPartnersResult as g_, type SDKModule as ga, type SaleItemDto as gb, type SalePaymentDto as gc, type SaleServiceItemDto as gd, type SeoMetadataDto as ge, type ServiceBookingItemDto as gf, type ServiceCatalogResponseDtoDescription as gg, type ServiceCatalogResponseDtoEstimatedDuration as gh, type ServiceCatalogResponseDtoSlug as gi, type ServiceCategoryResponseDto as gj, type ServiceMaterialDto as gk, type ServicesAddBreakResult as gl, type ServicesCompleteBookingResult as gm, type ServicesCreateBookingResult as gn, type ServicesCreateCategoryResult as go, type ServicesCreateResourceResult as gp, type ServicesCreateServiceResult as gq, type ServicesCreateShiftResult as gr, type ServicesDeleteCategoryResult as gs, type ServicesDeleteResourceResult as gt, type ServicesDeleteServiceResult as gu, type ServicesGetBookingResult as gv, type ServicesGetBookingsResult as gw, type ServicesGetCategoriesResult as gx, type ServicesGetCurrentMemberShiftsResult as gy, type ServicesGetFunnelResult as gz, type CreateUtilityAccountDto as h, membersMapping as h$, type StockingGetPhysicalReconciliationsResult as h0, type StockingGetPurchasesResult as h1, type StockingGetReconciliationReportResult as h2, type StockingGetRequestsResult as h3, type StockingGetTransfersResult as h4, type StockingReceivePurchaseResult as h5, type StockingReceiveTransferResult as h6, type StockingReconcilePodResult as h7, type StockingShipTransferResult as h8, type StockingSubmitPhysicalReconciliationResult as h9, UpdateMemberDtoStatus as hA, UpdatePartnerDtoBenefitType as hB, UpdatePartnerDtoReconciliationPolicy as hC, UpdateServiceDtoPricingModel as hD, UpdateStrapiConnectionDtoEnabledSyncTypesItem as hE, type UpdateStrapiConnectionDtoLocationMap as hF, UpdateStrapiConnectionDtoSyncDirection as hG, type UserSummaryDto as hH, type UtilityAccountControllerCreateAccountResult as hI, type UtilityAccountControllerGetAccountResult as hJ, type UtilityAccountControllerGetAccountsResult as hK, type WebhooksCreateResult as hL, type WebhooksDeleteResult as hM, type WebhooksListResult as hN, type WindmillCallbackControllerHandleApprovalCallbackResult as hO, type WindmillCallbackControllerHandleBakeryDisposalCallbackResult as hP, type WindmillCallbackControllerHandleCallbackResult as hQ, type WindmillCallbackControllerHandleOutcomeCallbackResult as hR, accountingMapping as hS, adminMapping as hT, authMapping as hU, buildModule as hV, catalogMapping as hW, crmMapping as hX, getJwtExpiry as hY, inventoryMapping as hZ, loyaltyMapping as h_, type StockingUpdatePartnerResult as ha, type StrapiConnectionResponseDtoLocationMap as hb, type StrapiCreateConnectionResult as hc, type StrapiDeleteConnectionResult as hd, type StrapiEnqueueSyncResult as he, type StrapiExchangeCustomerTokenResult as hf, type StrapiGetConnectionResult as hg, type StrapiGetSyncLogsResult as hh, type StrapiGetWebhookLogsResult as hi, type StrapiListConnectionsResult as hj, type StrapiReceiveWebhookResult as hk, type StrapiRegisterCustomerResult as hl, type StrapiTriggerSyncResult as hm, type StrapiUpdateConnectionResult as hn, type TerminalMembersControllerLoginResult as ho, type TokenResponseDto as hp, TriggerSyncDtoDirection as hq, TriggerSyncDtoSyncTypesItem as hr, type UnitsGetUnitsResult as hs, type UpdateCrmRecordDtoData as ht, type UpdateCustomerDtoMetadata as hu, type UpdateDepartmentDtoSettings as hv, UpdateIntegrationDefinitionDtoAuthType as hw, UpdateIntegrationDefinitionDtoCategory as hx, UpdateMemberDtoMembershipStatus as hy, UpdateMemberDtoRole as hz, type AccountingGetBalanceSheetParams as i, methodsWithOrgSlugSet as i0, ordersMapping as i1, posMapping as i2, publicServicesMapping as i3, servicesMapping as i4, type AccountingGetCashFlowParams as j, type AccountingGetTaxSummaryParams as k, type CreateInvoiceDto as l, type CreateInvoiceTemplateDto as m, type InvoiceConfigDto as n, type PublicInvoiceControllerDownloadInvoiceByTransactionParams as o, type PublicInvoiceControllerDownloadReceiptParams as p, type PublicInvoiceControllerGeneratePublicLinkParams as q, type TokenRequestDto as r, type AuthExchangeToken201 as s, type CreateOrganizationDto as t, type UpdateOrganizationDto as u, type AdminControllerListMembersParams as v, type UpdateSubscriptionDto as w, type CreateIntegrationDefinitionDto as x, type UpdateIntegrationDefinitionDto as y, type CreateWebhookDto as z };
|