@scryme/sdk 9.71.2-next.0 → 9.71.3-next.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.
@@ -224,6 +224,68 @@ type AttendanceControllerGetLogsParams = {
224
224
  endDate?: string;
225
225
  };
226
226
 
227
+ /**
228
+ * Generated by orval 🍺
229
+ * Do not edit manually.
230
+ * Scryme V3 API
231
+ * The Scryme V3 API documentation - Scalable & Enterprise Ready
232
+ * OpenAPI spec version: 3.0
233
+ */
234
+ /**
235
+ * @nullable
236
+ */
237
+ type AuthCreateOAuthClient201Meta = {
238
+ [key: string]: unknown;
239
+ } | null;
240
+
241
+ /**
242
+ * Generated by orval 🍺
243
+ * Do not edit manually.
244
+ * Scryme V3 API
245
+ * The Scryme V3 API documentation - Scalable & Enterprise Ready
246
+ * OpenAPI spec version: 3.0
247
+ */
248
+ interface OAuthClientResponseDto {
249
+ /** Internal ID */
250
+ id: string;
251
+ /** Public OAuth Client ID */
252
+ clientId: string;
253
+ /** OAuth Client Secret (returned on creation) */
254
+ clientSecret?: string;
255
+ /** Name of the application */
256
+ name: string;
257
+ /** Icon URL */
258
+ icon?: string;
259
+ /** Homepage URI */
260
+ uri?: string;
261
+ /** Redirect URIs */
262
+ redirectUris: string[];
263
+ /** Public client flag */
264
+ public?: boolean;
265
+ /** Skip consent flag */
266
+ skipConsent?: boolean;
267
+ /** Creation date */
268
+ createdAt: string;
269
+ /** Last update date */
270
+ updatedAt: string;
271
+ }
272
+
273
+ /**
274
+ * Generated by orval 🍺
275
+ * Do not edit manually.
276
+ * Scryme V3 API
277
+ * The Scryme V3 API documentation - Scalable & Enterprise Ready
278
+ * OpenAPI spec version: 3.0
279
+ */
280
+
281
+ type AuthCreateOAuthClient201 = {
282
+ success: boolean;
283
+ data: OAuthClientResponseDto;
284
+ timestamp: string;
285
+ /** @nullable */
286
+ meta?: AuthCreateOAuthClient201Meta;
287
+ };
288
+
227
289
  /**
228
290
  * Generated by orval 🍺
229
291
  * Do not edit manually.
@@ -561,17 +623,17 @@ interface CheckInDto {
561
623
  * The Scryme V3 API documentation - Scalable & Enterprise Ready
562
624
  * OpenAPI spec version: 3.0
563
625
  */
564
- interface CheckOutDto {
565
- locationId?: string;
566
- notes?: string;
567
- isAutoCheckout?: boolean;
568
- }
569
626
  interface CheckoutDto {
570
- cartId?: string;
571
- sessionId?: string;
627
+ cartId: string;
628
+ sessionId: string;
572
629
  phoneNumber: string;
573
630
  locationId: string;
631
+ notes: string;
632
+ }
633
+ interface CheckOutDto {
634
+ locationId?: string;
574
635
  notes?: string;
636
+ isAutoCheckout?: boolean;
575
637
  }
576
638
 
577
639
  /**
@@ -582,11 +644,11 @@ interface CheckoutDto {
582
644
  * OpenAPI spec version: 3.0
583
645
  */
584
646
  interface CheckoutResponseDto {
585
- orderId?: string;
586
- paymentId?: string;
587
- status?: string;
588
- merchantRequestID?: string;
589
- checkoutRequestID?: string;
647
+ orderId: string;
648
+ paymentId: string;
649
+ status: string;
650
+ merchantRequestID: string;
651
+ checkoutRequestID: string;
590
652
  }
591
653
 
592
654
  /**
@@ -1210,6 +1272,32 @@ interface CreateMemberDto {
1210
1272
  roleGroupIds?: string[];
1211
1273
  }
1212
1274
 
1275
+ /**
1276
+ * Generated by orval 🍺
1277
+ * Do not edit manually.
1278
+ * Scryme V3 API
1279
+ * The Scryme V3 API documentation - Scalable & Enterprise Ready
1280
+ * OpenAPI spec version: 3.0
1281
+ */
1282
+ interface CreateOAuthClientDto {
1283
+ /** Name of the OAuth Application */
1284
+ name: string;
1285
+ /** Allowed redirect URIs for authorization callback */
1286
+ redirectUris: string[];
1287
+ /** URL to application icon/logo */
1288
+ icon?: string;
1289
+ /** URL to application homepage */
1290
+ uri?: string;
1291
+ /** URL to Terms of Service */
1292
+ tos?: string;
1293
+ /** URL to Privacy Policy */
1294
+ policy?: string;
1295
+ /** Whether this client is public (PKCE only, no client_secret) */
1296
+ public?: boolean;
1297
+ /** Whether to skip user consent screen */
1298
+ skipConsent?: boolean;
1299
+ }
1300
+
1213
1301
  /**
1214
1302
  * Generated by orval 🍺
1215
1303
  * Do not edit manually.
@@ -2367,6 +2455,7 @@ interface MemberResponseDto {
2367
2455
  membershipStatus: MemberResponseDtoMembershipStatus;
2368
2456
  isActive: boolean;
2369
2457
  status: MemberResponseDtoStatus;
2458
+ isCheckedIn?: boolean;
2370
2459
  cardId?: string;
2371
2460
  phone?: string;
2372
2461
  createdAt: string;
@@ -2440,6 +2529,8 @@ type MembersControllerGetMembersParams = {
2440
2529
  isActive?: boolean;
2441
2530
  departmentId?: string;
2442
2531
  search?: string;
2532
+ status?: string;
2533
+ isCheckedIn?: boolean;
2443
2534
  };
2444
2535
 
2445
2536
  /**
@@ -3519,6 +3610,33 @@ interface SetGlobalSettingDto {
3519
3610
  value: string;
3520
3611
  }
3521
3612
 
3613
+ /**
3614
+ * Generated by orval 🍺
3615
+ * Do not edit manually.
3616
+ * Scryme V3 API
3617
+ * The Scryme V3 API documentation - Scalable & Enterprise Ready
3618
+ * OpenAPI spec version: 3.0
3619
+ */
3620
+ /**
3621
+ * Per-organization override merged over the org's tier limits
3622
+ */
3623
+ type SetQuotaOverridesDtoOverrides = {
3624
+ [key: string]: unknown;
3625
+ };
3626
+
3627
+ /**
3628
+ * Generated by orval 🍺
3629
+ * Do not edit manually.
3630
+ * Scryme V3 API
3631
+ * The Scryme V3 API documentation - Scalable & Enterprise Ready
3632
+ * OpenAPI spec version: 3.0
3633
+ */
3634
+
3635
+ interface SetQuotaOverridesDto {
3636
+ /** Per-organization override merged over the org's tier limits */
3637
+ overrides: SetQuotaOverridesDtoOverrides;
3638
+ }
3639
+
3522
3640
  /**
3523
3641
  * Generated by orval 🍺
3524
3642
  * Do not edit manually.
@@ -3676,6 +3794,18 @@ interface SubmitReconciliationDto {
3676
3794
  items: ReconciliationItemDto[];
3677
3795
  }
3678
3796
 
3797
+ /**
3798
+ * Generated by orval 🍺
3799
+ * Do not edit manually.
3800
+ * Scryme V3 API
3801
+ * The Scryme V3 API documentation - Scalable & Enterprise Ready
3802
+ * OpenAPI spec version: 3.0
3803
+ */
3804
+ interface SuspendOrganizationDto {
3805
+ /** Reason for suspending the organization */
3806
+ reason?: string;
3807
+ }
3808
+
3679
3809
  /**
3680
3810
  * Generated by orval 🍺
3681
3811
  * Do not edit manually.
@@ -3712,8 +3842,8 @@ interface TerminalLoginResponseDto {
3712
3842
  interface TokenRequestDto {
3713
3843
  /** The Client ID provided during provisioning or registration */
3714
3844
  clientId: string;
3715
- /** The Client Secret */
3716
- clientSecret: string;
3845
+ /** The Client Secret (optional for client devices like POS/Bakery) */
3846
+ clientSecret?: string;
3717
3847
  }
3718
3848
 
3719
3849
  /**
@@ -4029,6 +4159,32 @@ interface UpdateMemberDto {
4029
4159
  roleGroupIds?: string[];
4030
4160
  }
4031
4161
 
4162
+ /**
4163
+ * Generated by orval 🍺
4164
+ * Do not edit manually.
4165
+ * Scryme V3 API
4166
+ * The Scryme V3 API documentation - Scalable & Enterprise Ready
4167
+ * OpenAPI spec version: 3.0
4168
+ */
4169
+ interface UpdateOAuthClientDto {
4170
+ /** Name of the OAuth Application */
4171
+ name?: string;
4172
+ /** Allowed redirect URIs for authorization callback */
4173
+ redirectUris?: string[];
4174
+ /** URL to application icon/logo */
4175
+ icon?: string;
4176
+ /** URL to application homepage */
4177
+ uri?: string;
4178
+ /** URL to Terms of Service */
4179
+ tos?: string;
4180
+ /** URL to Privacy Policy */
4181
+ policy?: string;
4182
+ /** Whether this client is public (PKCE only, no client_secret) */
4183
+ public?: boolean;
4184
+ /** Whether to skip user consent screen */
4185
+ skipConsent?: boolean;
4186
+ }
4187
+
4032
4188
  /**
4033
4189
  * Generated by orval 🍺
4034
4190
  * Do not edit manually.
@@ -4392,6 +4548,42 @@ interface WebhookResponseDto {
4392
4548
  }
4393
4549
 
4394
4550
  declare const getScrymeV3API: (axiosInstance?: AxiosInstance) => {
4551
+ servicesCreateCategory: (orgSlug: string, createServiceCategoryDto: CreateServiceCategoryDto, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
4552
+ servicesGetCategories: (orgSlug: string, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
4553
+ servicesUpdateCategory: (orgSlug: string, id: string, updateServiceCategoryDto: UpdateServiceCategoryDto, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
4554
+ servicesDeleteCategory: (orgSlug: string, id: string, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
4555
+ servicesCreateService: (orgSlug: string, createServiceDto: CreateServiceDto, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
4556
+ servicesGetServices: (orgSlug: string, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
4557
+ servicesGetCurrentMemberShifts: (orgSlug: string, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
4558
+ servicesGetShifts: (orgSlug: string, params?: ServicesGetShiftsParams, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
4559
+ servicesGetService: (orgSlug: string, id: string, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
4560
+ servicesUpdateService: (orgSlug: string, id: string, updateServiceDto: UpdateServiceDto, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
4561
+ servicesGetAvailability: (orgSlug: string, id: string, params?: ServicesGetAvailabilityParams, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
4562
+ servicesDeleteService: (orgSlug: string, id: string, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
4563
+ servicesCreateResource: (orgSlug: string, createServiceResourceDto: CreateServiceResourceDto, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
4564
+ servicesGetResources: (orgSlug: string, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
4565
+ servicesUpdateResource: (orgSlug: string, id: string, updateServiceResourceDto: UpdateServiceResourceDto, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
4566
+ servicesDeleteResource: (orgSlug: string, id: string, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
4567
+ servicesCreateBooking: (orgSlug: string, createBookingDto: CreateBookingDto, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
4568
+ servicesGetBookings: (orgSlug: string, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
4569
+ servicesGetBooking: (orgSlug: string, id: string, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
4570
+ servicesUpdateBookingStatus: (orgSlug: string, id: string, servicesUpdateBookingStatusBody: ServicesUpdateBookingStatusBody, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
4571
+ servicesCompleteBooking: (orgSlug: string, id: string, completeBookingDto: CompleteBookingDto, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
4572
+ servicesCancelBookingSeries: (orgSlug: string, recurrenceId: string, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
4573
+ servicesCreateShift: (orgSlug: string, memberId: string, servicesCreateShiftBody: ServicesCreateShiftBody, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
4574
+ servicesGetStaffShifts: (orgSlug: string, memberId: string, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
4575
+ servicesAddBreak: (orgSlug: string, shiftId: string, servicesAddBreakBody: ServicesAddBreakBody, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
4576
+ servicesRegisterCustomerApp: (orgSlug: string, servicesRegisterCustomerAppBody: ServicesRegisterCustomerAppBody, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
4577
+ servicesGetUtilization: (orgSlug: string, params: ServicesGetUtilizationParams, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
4578
+ servicesGetPerformance: (orgSlug: string, params: ServicesGetPerformanceParams, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
4579
+ servicesGetFunnel: (orgSlug: string, params: ServicesGetFunnelParams, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
4580
+ publicServicesListServices: (orgSlug: string, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
4581
+ publicServicesGetCategories: (orgSlug: string, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
4582
+ publicServicesGetService: (orgSlug: string, id: string, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
4583
+ publicServicesGetAvailability: (orgSlug: string, id: string, params?: PublicServicesGetAvailabilityParams, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
4584
+ publicServicesRequestOtp: (orgSlug: string, requestOtpDto: RequestOtpDto, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
4585
+ publicServicesVerifyOtp: (orgSlug: string, verifyOtpDto: VerifyOtpDto, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
4586
+ publicServicesCreatePublicBooking: (orgSlug: string, publicBookingDto: PublicBookingDto, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
4395
4587
  inventoryVerifyIntegrity: (orgSlug: string, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
4396
4588
  inventoryFixIntegrity: (orgSlug: string, variantId: string, params: InventoryFixIntegrityParams, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
4397
4589
  inventoryGetInventory: (orgSlug: string, params: InventoryGetInventoryParams, options?: AxiosRequestConfig) => Promise<AxiosResponse<InventoryResponseDto[]>>;
@@ -4442,6 +4634,11 @@ declare const getScrymeV3API: (axiosInstance?: AxiosInstance) => {
4442
4634
  publicInvoiceControllerDownloadReceipt: (transactionId: string, params: PublicInvoiceControllerDownloadReceiptParams, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
4443
4635
  publicInvoiceControllerGeneratePublicLink: (transactionId: string, params: PublicInvoiceControllerGeneratePublicLinkParams, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
4444
4636
  authExchangeToken: (tokenRequestDto: TokenRequestDto, options?: AxiosRequestConfig) => Promise<AxiosResponse<AuthExchangeToken201>>;
4637
+ authCreateOAuthClient: (createOAuthClientDto: CreateOAuthClientDto, options?: AxiosRequestConfig) => Promise<AxiosResponse<AuthCreateOAuthClient201>>;
4638
+ authListOAuthClients: (options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
4639
+ authGetOAuthClient: (id: string, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
4640
+ authUpdateOAuthClient: (id: string, updateOAuthClientDto: UpdateOAuthClientDto, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
4641
+ authDeleteOAuthClient: (id: string, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
4445
4642
  authControllerHandleOAuth2: (path: string, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
4446
4643
  adminControllerGetStats: (options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
4447
4644
  adminControllerListOrganizations: (options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
@@ -4449,6 +4646,10 @@ declare const getScrymeV3API: (axiosInstance?: AxiosInstance) => {
4449
4646
  adminControllerGetOrganizationDetails: (id: string, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
4450
4647
  adminControllerUpdateOrganization: (id: string, updateOrganizationDto: UpdateOrganizationDto, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
4451
4648
  adminControllerDeleteOrganization: (id: string, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
4649
+ adminControllerSuspendOrganization: (id: string, suspendOrganizationDto: SuspendOrganizationDto, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
4650
+ adminControllerReactivateOrganization: (id: string, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
4651
+ adminControllerGetEffectiveQuota: (id: string, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
4652
+ adminControllerSetQuotaOverrides: (id: string, setQuotaOverridesDto: SetQuotaOverridesDto, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
4452
4653
  adminControllerListMembers: (params: AdminControllerListMembersParams, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
4453
4654
  adminControllerListUsers: (options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
4454
4655
  adminControllerBanUser: (id: string, banUserDto: BanUserDto, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
@@ -4473,10 +4674,6 @@ declare const getScrymeV3API: (axiosInstance?: AxiosInstance) => {
4473
4674
  webhooksCreate: (orgSlug: string, createWebhookDto: CreateWebhookDto, options?: AxiosRequestConfig) => Promise<AxiosResponse<WebhookResponseDto>>;
4474
4675
  webhooksList: (orgSlug: string, options?: AxiosRequestConfig) => Promise<AxiosResponse<WebhookResponseDto[]>>;
4475
4676
  webhooksDelete: (orgSlug: string, id: string, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
4476
- windmillCallbackControllerHandleCallback: (options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
4477
- windmillCallbackControllerHandleApprovalCallback: (options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
4478
- windmillCallbackControllerHandleBakeryDisposalCallback: (options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
4479
- windmillCallbackControllerHandleOutcomeCallback: (options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
4480
4677
  catalogGetProducts: (orgSlug: string, params?: CatalogGetProductsParams, options?: AxiosRequestConfig) => Promise<AxiosResponse<ProductResponseDto[]>>;
4481
4678
  catalogCreateProduct: (orgSlug: string, createProductDto: CreateProductDto, options?: AxiosRequestConfig) => Promise<AxiosResponse<ProductResponseDto>>;
4482
4679
  catalogGetProduct: (orgSlug: string, idOrSlug: string, options?: AxiosRequestConfig) => Promise<AxiosResponse<ProductResponseDto>>;
@@ -4488,42 +4685,6 @@ declare const getScrymeV3API: (axiosInstance?: AxiosInstance) => {
4488
4685
  catalogCreateReview: (orgSlug: string, productId: string, createProductReviewDto: CreateProductReviewDto, options?: AxiosRequestConfig) => Promise<AxiosResponse<ProductReviewResponseDto>>;
4489
4686
  catalogUpdateReview: (orgSlug: string, reviewId: string, updateProductReviewDto: UpdateProductReviewDto, options?: AxiosRequestConfig) => Promise<AxiosResponse<ProductReviewResponseDto>>;
4490
4687
  catalogDeleteReview: (orgSlug: string, reviewId: string, params?: CatalogDeleteReviewParams, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
4491
- servicesCreateCategory: (orgSlug: string, createServiceCategoryDto: CreateServiceCategoryDto, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
4492
- servicesGetCategories: (orgSlug: string, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
4493
- servicesUpdateCategory: (orgSlug: string, id: string, updateServiceCategoryDto: UpdateServiceCategoryDto, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
4494
- servicesDeleteCategory: (orgSlug: string, id: string, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
4495
- servicesCreateService: (orgSlug: string, createServiceDto: CreateServiceDto, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
4496
- servicesGetServices: (orgSlug: string, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
4497
- servicesGetCurrentMemberShifts: (orgSlug: string, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
4498
- servicesGetShifts: (orgSlug: string, params?: ServicesGetShiftsParams, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
4499
- servicesGetService: (orgSlug: string, id: string, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
4500
- servicesUpdateService: (orgSlug: string, id: string, updateServiceDto: UpdateServiceDto, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
4501
- servicesGetAvailability: (orgSlug: string, id: string, params?: ServicesGetAvailabilityParams, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
4502
- servicesDeleteService: (orgSlug: string, id: string, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
4503
- servicesCreateResource: (orgSlug: string, createServiceResourceDto: CreateServiceResourceDto, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
4504
- servicesGetResources: (orgSlug: string, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
4505
- servicesUpdateResource: (orgSlug: string, id: string, updateServiceResourceDto: UpdateServiceResourceDto, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
4506
- servicesDeleteResource: (orgSlug: string, id: string, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
4507
- servicesCreateBooking: (orgSlug: string, createBookingDto: CreateBookingDto, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
4508
- servicesGetBookings: (orgSlug: string, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
4509
- servicesGetBooking: (orgSlug: string, id: string, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
4510
- servicesUpdateBookingStatus: (orgSlug: string, id: string, servicesUpdateBookingStatusBody: ServicesUpdateBookingStatusBody, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
4511
- servicesCompleteBooking: (orgSlug: string, id: string, completeBookingDto: CompleteBookingDto, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
4512
- servicesCancelBookingSeries: (orgSlug: string, recurrenceId: string, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
4513
- servicesCreateShift: (orgSlug: string, memberId: string, servicesCreateShiftBody: ServicesCreateShiftBody, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
4514
- servicesGetStaffShifts: (orgSlug: string, memberId: string, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
4515
- servicesAddBreak: (orgSlug: string, shiftId: string, servicesAddBreakBody: ServicesAddBreakBody, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
4516
- servicesRegisterCustomerApp: (orgSlug: string, servicesRegisterCustomerAppBody: ServicesRegisterCustomerAppBody, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
4517
- servicesGetUtilization: (orgSlug: string, params: ServicesGetUtilizationParams, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
4518
- servicesGetPerformance: (orgSlug: string, params: ServicesGetPerformanceParams, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
4519
- servicesGetFunnel: (orgSlug: string, params: ServicesGetFunnelParams, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
4520
- publicServicesListServices: (orgSlug: string, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
4521
- publicServicesGetCategories: (orgSlug: string, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
4522
- publicServicesGetService: (orgSlug: string, id: string, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
4523
- publicServicesGetAvailability: (orgSlug: string, id: string, params?: PublicServicesGetAvailabilityParams, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
4524
- publicServicesRequestOtp: (orgSlug: string, requestOtpDto: RequestOtpDto, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
4525
- publicServicesVerifyOtp: (orgSlug: string, verifyOtpDto: VerifyOtpDto, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
4526
- publicServicesCreatePublicBooking: (orgSlug: string, publicBookingDto: PublicBookingDto, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
4527
4688
  customersGetCustomers: (orgSlug: string, params?: CustomersGetCustomersParams, options?: AxiosRequestConfig) => Promise<AxiosResponse<CustomerResponseDto[]>>;
4528
4689
  customersRegister: (orgSlug: string, registerCustomerDto: RegisterCustomerDto, options?: AxiosRequestConfig) => Promise<AxiosResponse<CustomerResponseDto>>;
4529
4690
  customerRegister: (orgSlug: string, registerCustomerDto: RegisterCustomerDto, options?: AxiosRequestConfig) => Promise<AxiosResponse<CustomerResponseDto>>;
@@ -4563,6 +4724,7 @@ declare const getScrymeV3API: (axiosInstance?: AxiosInstance) => {
4563
4724
  ordersUpdateStatus: (orgSlug: string, id: string, updateOrderStatusDto: UpdateOrderStatusDto, options?: AxiosRequestConfig) => Promise<AxiosResponse<OrderResponseDto>>;
4564
4725
  ordersRequestB2BQuote: (orgSlug: string, requestB2BQuoteDto: RequestB2BQuoteDto, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
4565
4726
  ordersConvertQuoteToOrder: (orgSlug: string, id: string, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
4727
+ paymentsCheckout: (orgSlug: string, checkoutDto: CheckoutDto, options?: AxiosRequestConfig) => Promise<AxiosResponse<CheckoutResponseDto>>;
4566
4728
  paymentsControllerHandleStkCallback: (orgSlug: string, paymentId: string, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
4567
4729
  pOSProvision: (orgSlug: string, provisionDeviceDto: ProvisionDeviceDto, options?: AxiosRequestConfig) => Promise<AxiosResponse<ProvisionResponseDto>>;
4568
4730
  pOSLogin: (orgSlug: string, posLoginDto: PosLoginDto, options?: AxiosRequestConfig) => Promise<AxiosResponse<PosLoginResponseDto>>;
@@ -4573,6 +4735,9 @@ declare const getScrymeV3API: (axiosInstance?: AxiosInstance) => {
4573
4735
  pOSRegisterPettyCash: (orgSlug: string, registerPettyCashDto: RegisterPettyCashDto, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
4574
4736
  pOSGetPettyCashFunds: (orgSlug: string, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
4575
4737
  pOSGetPettyCashTransactions: (orgSlug: string, params: POSGetPettyCashTransactionsParams, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
4738
+ pOSCreatePairingSession: (options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
4739
+ pOSGetPairingSessionStatus: (sessionId: string, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
4740
+ pOSAuthorizePairingSession: (sessionId: string, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
4576
4741
  membersControllerGetMembers: (orgSlug: string, params?: MembersControllerGetMembersParams, options?: AxiosRequestConfig) => Promise<AxiosResponse<MemberResponseDto[]>>;
4577
4742
  membersControllerCreateMember: (orgSlug: string, createMemberDto: CreateMemberDto, options?: AxiosRequestConfig) => Promise<AxiosResponse<MemberResponseDto>>;
4578
4743
  membersControllerGetMember: (orgSlug: string, id: string, options?: AxiosRequestConfig) => Promise<AxiosResponse<MemberResponseDto>>;
@@ -4664,8 +4829,43 @@ declare const getScrymeV3API: (axiosInstance?: AxiosInstance) => {
4664
4829
  strapiReceiveWebhook: (connectionId: string, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
4665
4830
  analyticsControllerGetDashboardAnalytics: (orgSlug: string, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
4666
4831
  analyticsControllerGetResourceUtilization: (orgSlug: string, params: AnalyticsControllerGetResourceUtilizationParams, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
4667
- paymentsCheckout: (orgSlug: string, checkoutDto?: CheckoutDto, options?: AxiosRequestConfig) => Promise<AxiosResponse<CheckoutResponseDto>>;
4668
4832
  };
4833
+ type ServicesCreateCategoryResult = AxiosResponse<void>;
4834
+ type ServicesGetCategoriesResult = AxiosResponse<void>;
4835
+ type ServicesUpdateCategoryResult = AxiosResponse<void>;
4836
+ type ServicesDeleteCategoryResult = AxiosResponse<void>;
4837
+ type ServicesCreateServiceResult = AxiosResponse<void>;
4838
+ type ServicesGetServicesResult = AxiosResponse<void>;
4839
+ type ServicesGetCurrentMemberShiftsResult = AxiosResponse<void>;
4840
+ type ServicesGetShiftsResult = AxiosResponse<void>;
4841
+ type ServicesGetServiceResult = AxiosResponse<void>;
4842
+ type ServicesUpdateServiceResult = AxiosResponse<void>;
4843
+ type ServicesGetAvailabilityResult = AxiosResponse<void>;
4844
+ type ServicesDeleteServiceResult = AxiosResponse<void>;
4845
+ type ServicesCreateResourceResult = AxiosResponse<void>;
4846
+ type ServicesGetResourcesResult = AxiosResponse<void>;
4847
+ type ServicesUpdateResourceResult = AxiosResponse<void>;
4848
+ type ServicesDeleteResourceResult = AxiosResponse<void>;
4849
+ type ServicesCreateBookingResult = AxiosResponse<void>;
4850
+ type ServicesGetBookingsResult = AxiosResponse<void>;
4851
+ type ServicesGetBookingResult = AxiosResponse<void>;
4852
+ type ServicesUpdateBookingStatusResult = AxiosResponse<void>;
4853
+ type ServicesCompleteBookingResult = AxiosResponse<void>;
4854
+ type ServicesCancelBookingSeriesResult = AxiosResponse<void>;
4855
+ type ServicesCreateShiftResult = AxiosResponse<void>;
4856
+ type ServicesGetStaffShiftsResult = AxiosResponse<void>;
4857
+ type ServicesAddBreakResult = AxiosResponse<void>;
4858
+ type ServicesRegisterCustomerAppResult = AxiosResponse<void>;
4859
+ type ServicesGetUtilizationResult = AxiosResponse<void>;
4860
+ type ServicesGetPerformanceResult = AxiosResponse<void>;
4861
+ type ServicesGetFunnelResult = AxiosResponse<void>;
4862
+ type PublicServicesListServicesResult = AxiosResponse<void>;
4863
+ type PublicServicesGetCategoriesResult = AxiosResponse<void>;
4864
+ type PublicServicesGetServiceResult = AxiosResponse<void>;
4865
+ type PublicServicesGetAvailabilityResult = AxiosResponse<void>;
4866
+ type PublicServicesRequestOtpResult = AxiosResponse<void>;
4867
+ type PublicServicesVerifyOtpResult = AxiosResponse<void>;
4868
+ type PublicServicesCreatePublicBookingResult = AxiosResponse<void>;
4669
4869
  type InventoryVerifyIntegrityResult = AxiosResponse<void>;
4670
4870
  type InventoryFixIntegrityResult = AxiosResponse<void>;
4671
4871
  type InventoryGetInventoryResult = AxiosResponse<InventoryResponseDto[]>;
@@ -4716,6 +4916,11 @@ type PublicInvoiceControllerDownloadInvoiceByTransactionResult = AxiosResponse<v
4716
4916
  type PublicInvoiceControllerDownloadReceiptResult = AxiosResponse<void>;
4717
4917
  type PublicInvoiceControllerGeneratePublicLinkResult = AxiosResponse<void>;
4718
4918
  type AuthExchangeTokenResult = AxiosResponse<AuthExchangeToken201>;
4919
+ type AuthCreateOAuthClientResult = AxiosResponse<AuthCreateOAuthClient201>;
4920
+ type AuthListOAuthClientsResult = AxiosResponse<void>;
4921
+ type AuthGetOAuthClientResult = AxiosResponse<void>;
4922
+ type AuthUpdateOAuthClientResult = AxiosResponse<void>;
4923
+ type AuthDeleteOAuthClientResult = AxiosResponse<void>;
4719
4924
  type AuthControllerHandleOAuth2Result = AxiosResponse<void>;
4720
4925
  type AdminControllerGetStatsResult = AxiosResponse<void>;
4721
4926
  type AdminControllerListOrganizationsResult = AxiosResponse<void>;
@@ -4723,6 +4928,10 @@ type AdminControllerCreateOrganizationResult = AxiosResponse<void>;
4723
4928
  type AdminControllerGetOrganizationDetailsResult = AxiosResponse<void>;
4724
4929
  type AdminControllerUpdateOrganizationResult = AxiosResponse<void>;
4725
4930
  type AdminControllerDeleteOrganizationResult = AxiosResponse<void>;
4931
+ type AdminControllerSuspendOrganizationResult = AxiosResponse<void>;
4932
+ type AdminControllerReactivateOrganizationResult = AxiosResponse<void>;
4933
+ type AdminControllerGetEffectiveQuotaResult = AxiosResponse<void>;
4934
+ type AdminControllerSetQuotaOverridesResult = AxiosResponse<void>;
4726
4935
  type AdminControllerListMembersResult = AxiosResponse<void>;
4727
4936
  type AdminControllerListUsersResult = AxiosResponse<void>;
4728
4937
  type AdminControllerBanUserResult = AxiosResponse<void>;
@@ -4747,10 +4956,6 @@ type AdminControllerListActiveOrganizationIntegrationsResult = AxiosResponse<voi
4747
4956
  type WebhooksCreateResult = AxiosResponse<WebhookResponseDto>;
4748
4957
  type WebhooksListResult = AxiosResponse<WebhookResponseDto[]>;
4749
4958
  type WebhooksDeleteResult = AxiosResponse<void>;
4750
- type WindmillCallbackControllerHandleCallbackResult = AxiosResponse<void>;
4751
- type WindmillCallbackControllerHandleApprovalCallbackResult = AxiosResponse<void>;
4752
- type WindmillCallbackControllerHandleBakeryDisposalCallbackResult = AxiosResponse<void>;
4753
- type WindmillCallbackControllerHandleOutcomeCallbackResult = AxiosResponse<void>;
4754
4959
  type CatalogGetProductsResult = AxiosResponse<ProductResponseDto[]>;
4755
4960
  type CatalogCreateProductResult = AxiosResponse<ProductResponseDto>;
4756
4961
  type CatalogGetProductResult = AxiosResponse<ProductResponseDto>;
@@ -4762,42 +4967,6 @@ type CatalogReviewPriceChangeRequestResult = AxiosResponse<void>;
4762
4967
  type CatalogCreateReviewResult = AxiosResponse<ProductReviewResponseDto>;
4763
4968
  type CatalogUpdateReviewResult = AxiosResponse<ProductReviewResponseDto>;
4764
4969
  type CatalogDeleteReviewResult = AxiosResponse<void>;
4765
- type ServicesCreateCategoryResult = AxiosResponse<void>;
4766
- type ServicesGetCategoriesResult = AxiosResponse<void>;
4767
- type ServicesUpdateCategoryResult = AxiosResponse<void>;
4768
- type ServicesDeleteCategoryResult = AxiosResponse<void>;
4769
- type ServicesCreateServiceResult = AxiosResponse<void>;
4770
- type ServicesGetServicesResult = AxiosResponse<void>;
4771
- type ServicesGetCurrentMemberShiftsResult = AxiosResponse<void>;
4772
- type ServicesGetShiftsResult = AxiosResponse<void>;
4773
- type ServicesGetServiceResult = AxiosResponse<void>;
4774
- type ServicesUpdateServiceResult = AxiosResponse<void>;
4775
- type ServicesGetAvailabilityResult = AxiosResponse<void>;
4776
- type ServicesDeleteServiceResult = AxiosResponse<void>;
4777
- type ServicesCreateResourceResult = AxiosResponse<void>;
4778
- type ServicesGetResourcesResult = AxiosResponse<void>;
4779
- type ServicesUpdateResourceResult = AxiosResponse<void>;
4780
- type ServicesDeleteResourceResult = AxiosResponse<void>;
4781
- type ServicesCreateBookingResult = AxiosResponse<void>;
4782
- type ServicesGetBookingsResult = AxiosResponse<void>;
4783
- type ServicesGetBookingResult = AxiosResponse<void>;
4784
- type ServicesUpdateBookingStatusResult = AxiosResponse<void>;
4785
- type ServicesCompleteBookingResult = AxiosResponse<void>;
4786
- type ServicesCancelBookingSeriesResult = AxiosResponse<void>;
4787
- type ServicesCreateShiftResult = AxiosResponse<void>;
4788
- type ServicesGetStaffShiftsResult = AxiosResponse<void>;
4789
- type ServicesAddBreakResult = AxiosResponse<void>;
4790
- type ServicesRegisterCustomerAppResult = AxiosResponse<void>;
4791
- type ServicesGetUtilizationResult = AxiosResponse<void>;
4792
- type ServicesGetPerformanceResult = AxiosResponse<void>;
4793
- type ServicesGetFunnelResult = AxiosResponse<void>;
4794
- type PublicServicesListServicesResult = AxiosResponse<void>;
4795
- type PublicServicesGetCategoriesResult = AxiosResponse<void>;
4796
- type PublicServicesGetServiceResult = AxiosResponse<void>;
4797
- type PublicServicesGetAvailabilityResult = AxiosResponse<void>;
4798
- type PublicServicesRequestOtpResult = AxiosResponse<void>;
4799
- type PublicServicesVerifyOtpResult = AxiosResponse<void>;
4800
- type PublicServicesCreatePublicBookingResult = AxiosResponse<void>;
4801
4970
  type CustomersGetCustomersResult = AxiosResponse<CustomerResponseDto[]>;
4802
4971
  type CustomersRegisterResult = AxiosResponse<CustomerResponseDto>;
4803
4972
  type CustomerRegisterResult = AxiosResponse<CustomerResponseDto>;
@@ -4837,6 +5006,7 @@ type OrdersGetOrdersResult = AxiosResponse<OrderResponseDto[]>;
4837
5006
  type OrdersUpdateStatusResult = AxiosResponse<OrderResponseDto>;
4838
5007
  type OrdersRequestB2BQuoteResult = AxiosResponse<void>;
4839
5008
  type OrdersConvertQuoteToOrderResult = AxiosResponse<void>;
5009
+ type PaymentsCheckoutResult = AxiosResponse<CheckoutResponseDto>;
4840
5010
  type PaymentsControllerHandleStkCallbackResult = AxiosResponse<void>;
4841
5011
  type POSProvisionResult = AxiosResponse<ProvisionResponseDto>;
4842
5012
  type POSLoginResult = AxiosResponse<PosLoginResponseDto>;
@@ -4847,6 +5017,9 @@ type POSGetTransactionsResult = AxiosResponse<void>;
4847
5017
  type POSRegisterPettyCashResult = AxiosResponse<void>;
4848
5018
  type POSGetPettyCashFundsResult = AxiosResponse<void>;
4849
5019
  type POSGetPettyCashTransactionsResult = AxiosResponse<void>;
5020
+ type POSCreatePairingSessionResult = AxiosResponse<void>;
5021
+ type POSGetPairingSessionStatusResult = AxiosResponse<void>;
5022
+ type POSAuthorizePairingSessionResult = AxiosResponse<void>;
4850
5023
  type MembersControllerGetMembersResult = AxiosResponse<MemberResponseDto[]>;
4851
5024
  type MembersControllerCreateMemberResult = AxiosResponse<MemberResponseDto>;
4852
5025
  type MembersControllerGetMemberResult = AxiosResponse<MemberResponseDto>;
@@ -4938,7 +5111,6 @@ type StrapiRegisterCustomerResult = AxiosResponse<void>;
4938
5111
  type StrapiReceiveWebhookResult = AxiosResponse<void>;
4939
5112
  type AnalyticsControllerGetDashboardAnalyticsResult = AxiosResponse<void>;
4940
5113
  type AnalyticsControllerGetResourceUtilizationResult = AxiosResponse<void>;
4941
- type PaymentsCheckoutResult = AxiosResponse<CheckoutResponseDto>;
4942
5114
 
4943
5115
  type RawAPI = ReturnType<typeof getScrymeV3API>;
4944
5116
  /**
@@ -5046,6 +5218,11 @@ declare const catalogMapping: {
5046
5218
  };
5047
5219
  declare const authMapping: {
5048
5220
  readonly exchangeToken: "authExchangeToken";
5221
+ readonly createOAuthClient: "authCreateOAuthClient";
5222
+ readonly listOAuthClients: "authListOAuthClients";
5223
+ readonly getOAuthClient: "authGetOAuthClient";
5224
+ readonly updateOAuthClient: "authUpdateOAuthClient";
5225
+ readonly deleteOAuthClient: "authDeleteOAuthClient";
5049
5226
  readonly handleOAuth2: "authControllerHandleOAuth2";
5050
5227
  };
5051
5228
  declare const inventoryMapping: {
@@ -5293,6 +5470,10 @@ declare const adminMapping: {
5293
5470
  readonly getOrganizationDetails: "adminControllerGetOrganizationDetails";
5294
5471
  readonly updateOrganization: "adminControllerUpdateOrganization";
5295
5472
  readonly deleteOrganization: "adminControllerDeleteOrganization";
5473
+ readonly suspendOrganization: "adminControllerSuspendOrganization";
5474
+ readonly reactivateOrganization: "adminControllerReactivateOrganization";
5475
+ readonly getEffectiveQuota: "adminControllerGetEffectiveQuota";
5476
+ readonly setQuotaOverrides: "adminControllerSetQuotaOverrides";
5296
5477
  readonly listMembers: "adminControllerListMembers";
5297
5478
  readonly listUsers: "adminControllerListUsers";
5298
5479
  readonly banUser: "adminControllerBanUser";
@@ -5317,10 +5498,6 @@ declare const adminMapping: {
5317
5498
  readonly createWebhook: "webhooksCreate";
5318
5499
  readonly listWebhooks: "webhooksList";
5319
5500
  readonly deleteWebhook: "webhooksDelete";
5320
- readonly handleWindmillCallback: "windmillCallbackControllerHandleCallback";
5321
- readonly handleWindmillApprovalCallback: "windmillCallbackControllerHandleApprovalCallback";
5322
- readonly handleWindmillBakeryDisposalCallback: "windmillCallbackControllerHandleBakeryDisposalCallback";
5323
- readonly handleWindmillOutcomeCallback: "windmillCallbackControllerHandleOutcomeCallback";
5324
5501
  readonly getCustomers: "customersGetCustomers";
5325
5502
  readonly registerCustomer: "customersRegister";
5326
5503
  readonly updateCustomer: "customersUpdate";
@@ -5365,4 +5542,4 @@ type ServicesModule = SDKModule<typeof servicesMapping>;
5365
5542
  declare function buildModule<Mapping extends Record<string, keyof RawAPI>>(api: RawAPI, orgSlug: string, mapping: Mapping): SDKModule<Mapping>;
5366
5543
  declare function getJwtExpiry(token: string): number | null;
5367
5544
 
5368
- export { type CreateServiceDto 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 CreateProductReviewDto as Q, type RecordCustomPaymentDto as R, type SetGlobalSettingDto as S, type TopUpPettyCashFundDto as T, type UpdateInvoiceDto as U, type ProductReviewResponseDto as V, type WebhookResponseDto as W, type UpdateProductReviewDto as X, type CatalogDeleteReviewParams as Y, type CreateServiceCategoryDto as Z, type UpdateServiceCategoryDto as _, type InventoryGetInventoryParams as a, type CreateCustomRoleDto as a$, type ServicesGetShiftsParams as a0, type UpdateServiceDto as a1, type ServicesGetAvailabilityParams as a2, type CreateServiceResourceDto as a3, type UpdateServiceResourceDto as a4, type CreateBookingDto as a5, type ServicesUpdateBookingStatusBody as a6, type CompleteBookingDto as a7, type ServicesCreateShiftBody as a8, type ServicesAddBreakBody as a9, type RedeemRewardDto as aA, type LoyaltyStatusResponseDto as aB, type ValidateVoucherDto as aC, type CreateOrderDto as aD, type OrderResponseDto as aE, type OrdersGetOrdersParams as aF, type UpdateOrderStatusDto as aG, type RequestB2BQuoteDto as aH, type ProvisionDeviceDto as aI, type ProvisionResponseDto as aJ, type PosLoginDto as aK, type PosLoginResponseDto as aL, type ProcessSaleDto as aM, type RegisterPettyCashDto as aN, type POSGetPettyCashTransactionsParams as aO, type MembersControllerGetMembersParams as aP, type MemberResponseDto as aQ, type CreateMemberDto as aR, type UpdateMemberDto as aS, type CheckOutDto as aT, type TerminalLoginDto as aU, type TerminalLoginResponseDto as aV, type InvitationsListParams as aW, type InvitationResponseDto as aX, type CreateInvitationDto as aY, type AcceptInvitationDto as aZ, type RoleManagementControllerGetCustomRolesParams as a_, type ServicesRegisterCustomerAppBody as aa, type ServicesGetUtilizationParams as ab, type ServicesGetPerformanceParams as ac, type ServicesGetFunnelParams as ad, type PublicServicesGetAvailabilityParams as ae, type RequestOtpDto as af, type VerifyOtpDto as ag, type PublicBookingDto as ah, type CustomersGetCustomersParams as ai, type CustomerResponseDto as aj, type RegisterCustomerDto as ak, type CustomerLoginDto as al, type CustomersRevokeAllSessionsParams as am, type UpdateCustomerDto as an, type AddressDto as ao, type CreateBusinessAccountDto as ap, type CreateCrmRecordDto as aq, type CrmRecordResponseDto as ar, type UpdateCrmRecordDto as as, type CreateCrmNoteDto as at, type CrmNoteResponseDto as au, type CreateCrmActivityDto as av, type CreateCrmObjectDto as aw, type CreateCrmFieldDto as ax, type CreateCrmRelationshipDto as ay, type CreateCrmAssociationDto as az, type InventoryResponseDto as b, type AdminControllerDeleteGlobalSettingResult as b$, type UpdateCustomRoleDto as b0, type CreatePermissionSetDto as b1, type CreateRoleGroupDto as b2, type DepartmentsListParams as b3, type DepartmentResponseDto as b4, type CreateDepartmentDto as b5, type UpdateDepartmentDto as b6, type AddDepartmentMemberDto as b7, type AttendanceControllerGetLogsParams as b8, type CheckInDto as b9, type ActivateDeviceDto as bA, type LinkOrganizationDto as bB, type B2BGetCatalogParams as bC, type PaginatedB2BCatalogDto as bD, type CreateB2BOrderDto as bE, type B2BOrderResponseDto as bF, type CrmIntegrationsHandleCallbackParams as bG, type UnitsGetUnitsParams as bH, type CreateStrapiConnectionDto as bI, type StrapiConnectionResponseDto as bJ, type UpdateStrapiConnectionDto as bK, type TriggerSyncDto as bL, type AnalyticsControllerGetResourceUtilizationParams as bM, type CheckoutDto as bN, type CheckoutResponseDto as bO, type AccountingGetBalanceSheetResult as bP, type AccountingGetCashFlowResult as bQ, type AccountingGetProfitLossResult as bR, type AccountingGetTaxSummaryResult as bS, type AccountingInitializeResult as bT, type AccountingModule as bU, AddDepartmentMemberDtoRole as bV, type AddToCartDtoBookingDetails as bW, type AdminControllerBanUserResult as bX, type AdminControllerCreateIntegrationDefinitionResult as bY, type AdminControllerCreateOrganizationResult as bZ, type AdminControllerDefineTierResult as b_, type AnnouncementDto as ba, type CartControllerGetCartParams as bb, type CartResponseDto as bc, type CartControllerClearCartParams as bd, type AddToCartDto as be, type RemoveFromCartDto as bf, type FavoriteResponseDto as bg, type FavoriteDto as bh, type StockingGetPurchasesParams as bi, type CreatePurchaseDto as bj, type ReceivePurchaseDto as bk, type StockingGetTransfersParams as bl, type CreateTransferDto as bm, type ShipTransferDto as bn, type ReceiveTransferDto as bo, type StockingGetRequestsParams as bp, type StockingGetPendingDispatchParams as bq, type DispatchOrderDto as br, type StockingGetActiveDeliveriesParams as bs, type ReconcilePodDto as bt, type StockingGetPhysicalReconciliationsParams as bu, type SubmitReconciliationDto as bv, type CreatePartnerDto as bw, type UpdatePartnerDto as bx, type PartnerWalletActionDto as by, type CreateSetupKeyDto as bz, type InventoryGetAdjustmentsParams as c, type CatalogGetServicesResult as c$, type AdminControllerDeleteIntegrationDefinitionResult as c0, type AdminControllerDeleteOrganizationResult as c1, type AdminControllerDeleteTierResult as c2, type AdminControllerGetOrganizationDetailsResult as c3, type AdminControllerGetOrganizationSubscriptionResult as c4, type AdminControllerGetStatsResult as c5, type AdminControllerListActiveOrganizationIntegrationsResult as c6, type AdminControllerListConnectedAppsResult as c7, type AdminControllerListGlobalSettingsResult as c8, type AdminControllerListIntegrationDefinitionsResult as c9, type B2BCatalogProductDto as cA, type B2BCreateOrderResult as cB, type B2BCreateQuoteResult as cC, type B2BGetCatalogResult as cD, type B2BGetInvoicesResult as cE, type B2BGetOrdersResult as cF, type B2BOrderItemDto as cG, type B2BQuoteItemDto as cH, type B2BVariantDto as cI, type B2BVariantStockDto as cJ, type BatchReceiptDto as cK, type BatchReceiptDtoQcResults as cL, type BusinessAccountControllerCreateResult as cM, type BusinessAccountControllerGetOneResult as cN, type CRMModule as cO, type CartControllerAddToCartResult as cP, type CartControllerClearCartResult as cQ, type CartControllerGetCartResult as cR, type CartControllerRemoveFromCartResult as cS, type CartItemDto as cT, type CartItemDtoBookingDetails as cU, type CatalogCreateProductResult as cV, type CatalogCreateReviewResult as cW, type CatalogDeleteReviewResult as cX, type CatalogGetPriceChangeRequestsResult as cY, type CatalogGetProductResult as cZ, type CatalogGetProductsResult as c_, type AdminControllerListMembersResult as ca, type AdminControllerListOrganizationsResult as cb, type AdminControllerListSystemLogsResult as cc, type AdminControllerListSystemPaymentsResult as cd, type AdminControllerListTiersResult as ce, type AdminControllerListUsersResult as cf, type AdminControllerRecordCustomPaymentResult as cg, type AdminControllerSetGlobalSettingResult as ch, type AdminControllerUnbanUserResult as ci, type AdminControllerUpdateIntegrationDefinitionResult as cj, type AdminControllerUpdateOrganizationResult as ck, type AdminControllerUpdateOrganizationSubscriptionResult as cl, type AdminModule as cm, type AnalyticsControllerGetDashboardAnalyticsResult as cn, type AnalyticsControllerGetResourceUtilizationResult as co, type AnnouncementControllerBroadcastAnnouncementResult as cp, type AttendanceControllerCheckInResult as cq, type AttendanceControllerCheckOutResult as cr, type AttendanceControllerGetLogsResult as cs, AttendanceControllerGetLogsSortOrder as ct, type AttendanceControllerGetMyStatusResult as cu, type AttendanceControllerGetStatusResult as cv, type AuthControllerHandleOAuth2Result as cw, type AuthExchangeToken201Meta as cx, type AuthExchangeTokenResult as cy, type AuthModule as cz, type InventoryGetLeadTimeParams as d, type CustomersGetCustomersResult as d$, type CatalogModule as d0, type CatalogReviewPriceChangeRequestResult as d1, type CatalogUpdateProductResult as d2, type CatalogUpdateReviewResult as d3, type CatalogUpdateSupplierVariantResult as d4, type CmsCustomFieldsDto as d5, type CmsCustomFieldsDtoArchivedAt as d6, type CmsCustomFieldsDtoCustomAttributes as d7, CmsCustomFieldsDtoPublishStatus as d8, type CmsCustomFieldsDtoPublishedAt as d9, type CrmControllerCreateNoteResult as dA, type CrmControllerCreateObjectResult as dB, type CrmControllerCreateRecordResult as dC, type CrmControllerCreateRelationshipResult as dD, type CrmControllerGetRecordNotesResult as dE, type CrmControllerGetRecordResult as dF, type CrmControllerGetTimelineResult as dG, type CrmControllerListFieldsResult as dH, type CrmControllerListObjectsResult as dI, type CrmControllerListRecordAssociationsResult as dJ, type CrmControllerListRelationshipsResult as dK, type CrmControllerUpdateRecordResult as dL, type CrmIntegrationsGetAuthUrlResult as dM, type CrmIntegrationsHandleCallbackResult as dN, type CrmIntegrationsHandleWebhookResult as dO, type CrmIntegrationsReplyToActivityResult as dP, type CrmNoteResponseDtoCreatedById as dQ, type CrmRecordResponseDtoData as dR, type CrmRecordResponseDtoOwnerId as dS, type CustomerAuthResponseDto as dT, type CustomerRegisterResult as dU, type CustomerSessionDto as dV, type CustomersAddAddressResult as dW, type CustomersDeleteResult as dX, type CustomersGetAddressesResult as dY, type CustomersGetCurrentSessionResult as dZ, type CustomersGetCustomerByIdResult as d_, type CreateBookingDtoCustomFields as da, type CreateCrmActivityDtoMetadata as db, CreateCrmFieldDtoType as dc, type CreateCrmRecordDtoData as dd, CreateCrmRelationshipDtoType as de, type CreateDepartmentDtoSettings as df, CreateExpenseDtoPaymentMethod as dg, CreateIntegrationDefinitionDtoAuthType as dh, CreateIntegrationDefinitionDtoCategory as di, CreateInvitationDtoRole as dj, CreateMemberDtoRole as dk, CreateOrderDtoChannel as dl, CreatePartnerDtoBenefitType as dm, CreatePartnerDtoReconciliationPolicy as dn, type CreatePurchaseItemDto as dp, CreateServiceDtoPricingModel as dq, CreateStrapiConnectionDtoEnabledSyncTypesItem as dr, type CreateStrapiConnectionDtoLocationMap as ds, CreateStrapiConnectionDtoSyncDirection as dt, CreateTransferDtoPriority as du, type CreateTransferItemDto as dv, CreateUtilityAccountDtoType as dw, type CrmControllerCreateActivityResult as dx, type CrmControllerCreateAssociationResult as dy, type CrmControllerCreateFieldResult as dz, type InventoryGetWasteAnalysisParams as e, type LoyaltyGetCustomerStatusResult as e$, type CustomersGetSessionsResult as e0, type CustomersLoginResult as e1, type CustomersRefreshSessionResult as e2, type CustomersRegisterResult as e3, type CustomersRevokeAllSessionsResult as e4, type CustomersRevokeSessionResult as e5, type CustomersUpdateResult as e6, type DefineTierDtoLimits as e7, type DepartmentsAddMemberResult as e8, type DepartmentsCreateResult as e9, type InventoryModule as eA, type InventoryQuickStockInquiryResult as eB, type InventoryRejectAdjustmentResult as eC, type InventoryRequestAdjustmentResult as eD, type InventoryScanUnpackBatchResult as eE, type InventorySplitBatchResult as eF, type InventoryTraceBatchResult as eG, type InventoryUnpackBatchResult as eH, type InventoryVerifyIntegrityResult as eI, InvitationResponseDtoRole as eJ, InvitationResponseDtoStatus as eK, type InvitationsAcceptResult as eL, type InvitationsCreateResult as eM, type InvitationsListResult as eN, InvitationsListSortOrder as eO, InvitationsListStatus as eP, type InvitationsRevokeResult as eQ, type InvoiceControllerCreateInvoiceResult as eR, type InvoiceControllerCreateTemplateResult as eS, type InvoiceControllerDeleteInvoiceResult as eT, type InvoiceControllerFinalizeInvoiceResult as eU, type InvoiceControllerGetConfigResult as eV, type InvoiceControllerGetInvoiceResult as eW, type InvoiceControllerGetInvoicesResult as eX, type InvoiceControllerGetTemplatesResult as eY, type InvoiceControllerUpdateConfigResult as eZ, type InvoiceControllerUpdateInvoiceResult as e_, type DepartmentsDeleteResult as ea, type DepartmentsGetResult as eb, type DepartmentsListResult as ec, DepartmentsListSortOrder as ed, type DepartmentsRemoveMemberResult as ee, type DepartmentsUpdateResult as ef, type DispatchAddressDto as eg, type ExpenseControllerCreateExpenseResult as eh, type ExpenseControllerGetExpenseCategoriesResult as ei, type ExpenseControllerGetExpenseResult as ej, type ExpenseControllerGetExpensesResult as ek, ExpenseControllerGetExpensesStatus as el, type FavoritesControllerAddFavoriteResult as em, type FavoritesControllerGetFavoritesResult as en, type FavoritesControllerRemoveFavoriteResult as eo, type ImageItemDto as ep, type InventoryApproveAdjustmentResult as eq, type InventoryCheckB2BAvailabilityResult as er, type InventoryCompleteAssemblyResult as es, type InventoryCreateAssemblyResult as et, type InventoryFixIntegrityResult as eu, type InventoryGetAdjustmentsResult as ev, type InventoryGetInventoryResult as ew, type InventoryGetLeadTimeResult as ex, type InventoryGetWasteAnalysisResult as ey, type InventoryMergeBatchesResult as ez, type CreateExpenseDto as f, type PublicInvoiceControllerDownloadInvoiceResult as f$, type LoyaltyModule as f0, type LoyaltyRedeemRewardResult as f1, type LoyaltyStatusResponseDtoAvailableRewardsItem as f2, type LoyaltyValidateVoucherResult as f3, type ManualBatchSelectionDto as f4, type MemberDepartmentDto as f5, MemberResponseDtoMembershipStatus as f6, MemberResponseDtoRole as f7, MemberResponseDtoStatus as f8, type MemberRoleDto as f9, type POSModule as fA, type POSProcessSaleResult as fB, type POSProvisionResult as fC, type POSRegisterPettyCashResult as fD, type POSSyncResult as fE, type PaginationMetaDto as fF, type PaymentsCheckoutResult 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 ProductMetaDto as fO, type ProductResponseDtoBrand as fP, type ProductResponseDtoDescription as fQ, type ProductResponseDtoDetailedDescription as fR, type ProductResponseDtoPointsOnPurchase as fS, type ProductResponseDtoRating as fT, type ProductResponseDtoRetailPrice as fU, type ProductResponseDtoSlug as fV, type ProductReviewCustomerDto as fW, type ProductReviewResponseDtoComment as fX, type ProductVariantResponseDto as fY, type ProductVariantResponseDtoRetailPrice as fZ, type PublicInvoiceControllerDownloadInvoiceByTransactionResult as f_, type MembersControllerAdminCheckOutResult as fa, type MembersControllerCreateMemberResult as fb, type MembersControllerDeleteMemberResult as fc, type MembersControllerGetMemberActivityResult as fd, type MembersControllerGetMemberResult as fe, MembersControllerGetMembersMembershipStatus as ff, type MembersControllerGetMembersResult as fg, MembersControllerGetMembersRole as fh, MembersControllerGetMembersSortOrder as fi, type MembersControllerUpdateMemberResult as fj, type MembersControllerUpdateStatusResult as fk, type MembersModule as fl, type MethodsWithOrgSlug as fm, type OmitOrgSlug as fn, type OrderItemDto as fo, type OrdersConvertQuoteToOrderResult as fp, type OrdersCreateOrderResult as fq, type OrdersGetOrdersResult as fr, type OrdersModule as fs, type OrdersRequestB2BQuoteResult as ft, type OrdersUpdateStatusResult as fu, type POSGetMeResult as fv, type POSGetPettyCashFundsResult as fw, type POSGetPettyCashTransactionsResult as fx, type POSGetTransactionsResult as fy, type POSLoginResult as fz, type CreatePettyCashFundDto as g, type ServicesGetUtilizationResult as g$, type PublicInvoiceControllerDownloadReceiptResult as g0, type PublicInvoiceControllerGeneratePublicLinkResult as g1, type PublicServicesCreatePublicBookingResult as g2, type PublicServicesGetAvailabilityResult as g3, type PublicServicesGetCategoriesResult as g4, type PublicServicesGetServiceResult as g5, type PublicServicesListServicesResult as g6, type PublicServicesModule as g7, type PublicServicesRequestOtpResult as g8, type PublicServicesVerifyOtpResult as g9, type ServiceCatalogResponseDtoEstimatedDuration as gA, type ServiceCatalogResponseDtoSlug as gB, type ServiceCategoryResponseDto as gC, type ServiceMaterialDto as gD, type ServicesAddBreakResult as gE, type ServicesCancelBookingSeriesResult as gF, type ServicesCompleteBookingResult as gG, type ServicesCreateBookingResult as gH, type ServicesCreateCategoryResult as gI, type ServicesCreateResourceResult as gJ, type ServicesCreateServiceResult as gK, type ServicesCreateShiftResult as gL, type ServicesDeleteCategoryResult as gM, type ServicesDeleteResourceResult as gN, type ServicesDeleteServiceResult as gO, type ServicesGetAvailabilityResult as gP, type ServicesGetBookingResult as gQ, type ServicesGetBookingsResult as gR, type ServicesGetCategoriesResult as gS, type ServicesGetCurrentMemberShiftsResult as gT, type ServicesGetFunnelResult as gU, type ServicesGetPerformanceResult as gV, type ServicesGetResourcesResult as gW, type ServicesGetServiceResult as gX, type ServicesGetServicesResult as gY, type ServicesGetShiftsResult as gZ, type ServicesGetStaffShiftsResult as g_, type RawAPI as ga, type ReceivePurchaseItemDto as gb, type ReceiveTransferItemDto as gc, ReconcilePodDtoOutcome as gd, type ReconciliationItemDto as ge, type RegisterCustomerDtoMetadata as gf, RegisterPettyCashDtoPaymentMethod as gg, ReviewPriceChangeDtoStatus as gh, type RoleManagementControllerAssignRolesResult as gi, type RoleManagementControllerCreateCustomRoleResult as gj, type RoleManagementControllerCreatePermissionSetResult as gk, type RoleManagementControllerCreateRoleGroupResult as gl, type RoleManagementControllerDeleteCustomRoleResult as gm, type RoleManagementControllerGetCustomRolesResult as gn, RoleManagementControllerGetCustomRolesSortOrder as go, type RoleManagementControllerGetPermissionSetsResult as gp, type RoleManagementControllerGetRoleGroupsResult as gq, type RoleManagementControllerRemoveRolesResult as gr, type RoleManagementControllerUpdateCustomRoleResult as gs, type SDKModule as gt, type SaleItemDto as gu, type SalePaymentDto as gv, type SaleServiceItemDto as gw, type SeoMetadataDto as gx, type ServiceBookingItemDto as gy, type ServiceCatalogResponseDtoDescription as gz, type CreateUtilityAccountDto as h, UpdateStrapiConnectionDtoSyncDirection as h$, type ServicesModule as h0, type ServicesRegisterCustomerAppResult as h1, ServicesUpdateBookingStatusBodyStatus as h2, type ServicesUpdateBookingStatusResult as h3, type ServicesUpdateCategoryResult as h4, type ServicesUpdateResourceResult as h5, type ServicesUpdateServiceResult as h6, type ShipTransferItemDto as h7, type StandalonePosControllerActivateDeviceResult as h8, type StandalonePosControllerCreateSetupKeyResult as h9, type StrapiExchangeCustomerTokenResult as hA, type StrapiGetConnectionResult as hB, type StrapiGetSyncLogsResult as hC, type StrapiGetWebhookLogsResult as hD, type StrapiListConnectionsResult as hE, type StrapiReceiveWebhookResult as hF, type StrapiRegisterCustomerResult as hG, type StrapiTriggerSyncResult as hH, type StrapiUpdateConnectionResult as hI, type TerminalMembersControllerLoginResult as hJ, type TokenResponseDto as hK, TriggerSyncDtoDirection as hL, TriggerSyncDtoSyncTypesItem as hM, type UnitsGetUnitsResult as hN, type UpdateCrmRecordDtoData as hO, type UpdateCustomerDtoMetadata as hP, type UpdateDepartmentDtoSettings as hQ, UpdateIntegrationDefinitionDtoAuthType as hR, UpdateIntegrationDefinitionDtoCategory as hS, UpdateMemberDtoMembershipStatus as hT, UpdateMemberDtoRole as hU, UpdateMemberDtoStatus as hV, UpdatePartnerDtoBenefitType as hW, UpdatePartnerDtoReconciliationPolicy as hX, UpdateServiceDtoPricingModel as hY, UpdateStrapiConnectionDtoEnabledSyncTypesItem as hZ, type UpdateStrapiConnectionDtoLocationMap as h_, type StandalonePosControllerLinkOrganizationResult as ha, type StandalonePosControllerValidateKeyResult as hb, type StockingAdjustPartnerWalletResult as hc, type StockingCreatePartnerResult as hd, type StockingCreatePurchaseResult as he, type StockingCreateTransferResult as hf, type StockingDispatchOrdersResult as hg, type StockingGetActiveDeliveriesResult as hh, type StockingGetPartnerResult as hi, type StockingGetPartnersResult as hj, type StockingGetPendingDispatchResult as hk, type StockingGetPhysicalReconciliationsResult as hl, type StockingGetPurchasesResult as hm, type StockingGetReconciliationReportResult as hn, type StockingGetRequestsResult as ho, type StockingGetTransfersResult as hp, type StockingReceivePurchaseResult as hq, type StockingReceiveTransferResult as hr, type StockingReconcilePodResult as hs, type StockingShipTransferResult as ht, type StockingSubmitPhysicalReconciliationResult as hu, type StockingUpdatePartnerResult as hv, type StrapiConnectionResponseDtoLocationMap as hw, type StrapiCreateConnectionResult as hx, type StrapiDeleteConnectionResult as hy, type StrapiEnqueueSyncResult as hz, type AccountingGetBalanceSheetParams as i, type UserSummaryDto as i0, type UtilityAccountControllerCreateAccountResult as i1, type UtilityAccountControllerGetAccountResult as i2, type UtilityAccountControllerGetAccountsResult as i3, type WebhooksCreateResult as i4, type WebhooksDeleteResult as i5, type WebhooksListResult as i6, type WebhooksModule as i7, type WindmillCallbackControllerHandleApprovalCallbackResult as i8, type WindmillCallbackControllerHandleBakeryDisposalCallbackResult as i9, type WindmillCallbackControllerHandleCallbackResult as ia, type WindmillCallbackControllerHandleOutcomeCallbackResult as ib, accountingMapping as ic, adminMapping as id, authMapping as ie, buildModule as ig, catalogMapping as ih, crmMapping as ii, getJwtExpiry as ij, inventoryMapping as ik, loyaltyMapping as il, membersMapping as im, methodsWithOrgSlugSet as io, ordersMapping as ip, posMapping as iq, publicServicesMapping as ir, servicesMapping as is, webhooksMapping as it, 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 };
5545
+ export { type SetQuotaOverridesDto as $, type AccountingGetProfitLossParams as A, type AccountingGetTaxSummaryParams as B, type CreateServiceCategoryDto as C, type CreateInvoiceDto as D, type ExpenseControllerGetExpensesParams as E, type UpdateInvoiceDto as F, type CreateInvoiceTemplateDto as G, type InvoiceConfigDto as H, type InventoryFixIntegrityParams as I, type PublicInvoiceControllerDownloadInvoiceParams as J, type PublicInvoiceControllerDownloadInvoiceByTransactionParams as K, type PublicInvoiceControllerDownloadReceiptParams as L, type PublicInvoiceControllerGeneratePublicLinkParams as M, type TokenRequestDto as N, type AuthExchangeToken201 as O, type PublicServicesGetAvailabilityParams as P, type CreateOAuthClientDto as Q, type RequestOtpDto as R, type ServicesGetShiftsParams as S, type TopUpPettyCashFundDto as T, type UpdateServiceCategoryDto as U, type VerifyOtpDto as V, type AuthCreateOAuthClient201 as W, type UpdateOAuthClientDto as X, type CreateOrganizationDto as Y, type UpdateOrganizationDto as Z, type SuspendOrganizationDto as _, type CreateServiceDto as a, type TerminalLoginDto as a$, type AdminControllerListMembersParams as a0, type BanUserDto as a1, type SetGlobalSettingDto as a2, type DefineTierDto as a3, type UpdateSubscriptionDto as a4, type RecordCustomPaymentDto as a5, type CreateIntegrationDefinitionDto as a6, type UpdateIntegrationDefinitionDto as a7, type CreateWebhookDto as a8, type WebhookResponseDto as a9, type CreateCrmActivityDto as aA, type CreateCrmObjectDto as aB, type CreateCrmFieldDto as aC, type CreateCrmRelationshipDto as aD, type CreateCrmAssociationDto as aE, type RedeemRewardDto as aF, type LoyaltyStatusResponseDto as aG, type ValidateVoucherDto as aH, type CreateOrderDto as aI, type OrderResponseDto as aJ, type OrdersGetOrdersParams as aK, type UpdateOrderStatusDto as aL, type RequestB2BQuoteDto as aM, type CheckoutDto as aN, type CheckoutResponseDto as aO, type ProvisionDeviceDto as aP, type ProvisionResponseDto as aQ, type PosLoginDto as aR, type PosLoginResponseDto as aS, type ProcessSaleDto as aT, type RegisterPettyCashDto as aU, type POSGetPettyCashTransactionsParams as aV, type MembersControllerGetMembersParams as aW, type MemberResponseDto as aX, type CreateMemberDto as aY, type UpdateMemberDto as aZ, type CheckOutDto as a_, type CatalogGetProductsParams as aa, type ProductResponseDto as ab, type CreateProductDto as ac, type CatalogGetServicesParams as ad, type ServiceCatalogResponseDto as ae, type UpdateProductDto as af, type UpdateSupplierProductDto as ag, type CatalogGetPriceChangeRequestsParams as ah, type ReviewPriceChangeDto as ai, type CreateProductReviewDto as aj, type ProductReviewResponseDto as ak, type UpdateProductReviewDto as al, type CatalogDeleteReviewParams as am, type CustomersGetCustomersParams as an, type CustomerResponseDto as ao, type RegisterCustomerDto as ap, type CustomerLoginDto as aq, type CustomersRevokeAllSessionsParams as ar, type UpdateCustomerDto as as, type AddressDto as at, type CreateBusinessAccountDto as au, type CreateCrmRecordDto as av, type CrmRecordResponseDto as aw, type UpdateCrmRecordDto as ax, type CreateCrmNoteDto as ay, type CrmNoteResponseDto as az, type UpdateServiceDto as b, type AddToCartDtoBookingDetails as b$, type TerminalLoginResponseDto as b0, type InvitationsListParams as b1, type InvitationResponseDto as b2, type CreateInvitationDto as b3, type AcceptInvitationDto as b4, type RoleManagementControllerGetCustomRolesParams as b5, type CreateCustomRoleDto as b6, type UpdateCustomRoleDto as b7, type CreatePermissionSetDto as b8, type CreateRoleGroupDto as b9, type ReconcilePodDto as bA, type StockingGetPhysicalReconciliationsParams as bB, type SubmitReconciliationDto as bC, type CreatePartnerDto as bD, type UpdatePartnerDto as bE, type PartnerWalletActionDto as bF, type CreateSetupKeyDto as bG, type ActivateDeviceDto as bH, type LinkOrganizationDto as bI, type B2BGetCatalogParams as bJ, type PaginatedB2BCatalogDto as bK, type CreateB2BOrderDto as bL, type B2BOrderResponseDto as bM, type CrmIntegrationsHandleCallbackParams as bN, type UnitsGetUnitsParams as bO, type CreateStrapiConnectionDto as bP, type StrapiConnectionResponseDto as bQ, type UpdateStrapiConnectionDto as bR, type TriggerSyncDto as bS, type AnalyticsControllerGetResourceUtilizationParams as bT, type AccountingGetBalanceSheetResult as bU, type AccountingGetCashFlowResult as bV, type AccountingGetProfitLossResult as bW, type AccountingGetTaxSummaryResult as bX, type AccountingInitializeResult as bY, type AccountingModule as bZ, AddDepartmentMemberDtoRole as b_, type DepartmentsListParams as ba, type DepartmentResponseDto as bb, type CreateDepartmentDto as bc, type UpdateDepartmentDto as bd, type AddDepartmentMemberDto as be, type AttendanceControllerGetLogsParams as bf, type CheckInDto as bg, type AnnouncementDto as bh, type CartControllerGetCartParams as bi, type CartResponseDto as bj, type CartControllerClearCartParams as bk, type AddToCartDto as bl, type RemoveFromCartDto as bm, type FavoriteResponseDto as bn, type FavoriteDto as bo, type StockingGetPurchasesParams as bp, type CreatePurchaseDto as bq, type ReceivePurchaseDto as br, type StockingGetTransfersParams as bs, type CreateTransferDto as bt, type ShipTransferDto as bu, type ReceiveTransferDto as bv, type StockingGetRequestsParams as bw, type StockingGetPendingDispatchParams as bx, type DispatchOrderDto as by, type StockingGetActiveDeliveriesParams as bz, type ServicesGetAvailabilityParams as c, type BusinessAccountControllerCreateResult as c$, type AdminControllerBanUserResult as c0, type AdminControllerCreateIntegrationDefinitionResult as c1, type AdminControllerCreateOrganizationResult as c2, type AdminControllerDefineTierResult as c3, type AdminControllerDeleteGlobalSettingResult as c4, type AdminControllerDeleteIntegrationDefinitionResult as c5, type AdminControllerDeleteOrganizationResult as c6, type AdminControllerDeleteTierResult as c7, type AdminControllerGetEffectiveQuotaResult as c8, type AdminControllerGetOrganizationDetailsResult as c9, type AttendanceControllerCheckOutResult as cA, type AttendanceControllerGetLogsResult as cB, AttendanceControllerGetLogsSortOrder as cC, type AttendanceControllerGetMyStatusResult as cD, type AttendanceControllerGetStatusResult as cE, type AuthControllerHandleOAuth2Result as cF, type AuthCreateOAuthClient201Meta as cG, type AuthCreateOAuthClientResult as cH, type AuthDeleteOAuthClientResult as cI, type AuthExchangeToken201Meta as cJ, type AuthExchangeTokenResult as cK, type AuthGetOAuthClientResult as cL, type AuthListOAuthClientsResult as cM, type AuthModule as cN, type AuthUpdateOAuthClientResult as cO, type B2BCatalogProductDto as cP, type B2BCreateOrderResult as cQ, type B2BCreateQuoteResult as cR, type B2BGetCatalogResult as cS, type B2BGetInvoicesResult as cT, type B2BGetOrdersResult as cU, type B2BOrderItemDto as cV, type B2BQuoteItemDto as cW, type B2BVariantDto as cX, type B2BVariantStockDto as cY, type BatchReceiptDto as cZ, type BatchReceiptDtoQcResults as c_, type AdminControllerGetOrganizationSubscriptionResult as ca, type AdminControllerGetStatsResult as cb, type AdminControllerListActiveOrganizationIntegrationsResult as cc, type AdminControllerListConnectedAppsResult as cd, type AdminControllerListGlobalSettingsResult as ce, type AdminControllerListIntegrationDefinitionsResult as cf, type AdminControllerListMembersResult as cg, type AdminControllerListOrganizationsResult as ch, type AdminControllerListSystemLogsResult as ci, type AdminControllerListSystemPaymentsResult as cj, type AdminControllerListTiersResult as ck, type AdminControllerListUsersResult as cl, type AdminControllerReactivateOrganizationResult as cm, type AdminControllerRecordCustomPaymentResult as cn, type AdminControllerSetGlobalSettingResult as co, type AdminControllerSetQuotaOverridesResult as cp, type AdminControllerSuspendOrganizationResult as cq, type AdminControllerUnbanUserResult as cr, type AdminControllerUpdateIntegrationDefinitionResult as cs, type AdminControllerUpdateOrganizationResult as ct, type AdminControllerUpdateOrganizationSubscriptionResult as cu, type AdminModule as cv, type AnalyticsControllerGetDashboardAnalyticsResult as cw, type AnalyticsControllerGetResourceUtilizationResult as cx, type AnnouncementControllerBroadcastAnnouncementResult as cy, type AttendanceControllerCheckInResult as cz, type CreateServiceResourceDto as d, type CrmIntegrationsGetAuthUrlResult as d$, type BusinessAccountControllerGetOneResult as d0, type CRMModule as d1, type CartControllerAddToCartResult as d2, type CartControllerClearCartResult as d3, type CartControllerGetCartResult as d4, type CartControllerRemoveFromCartResult as d5, type CartItemDto as d6, type CartItemDtoBookingDetails as d7, type CatalogCreateProductResult as d8, type CatalogCreateReviewResult as d9, 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 dO, type CrmControllerCreateNoteResult as dP, type CrmControllerCreateObjectResult as dQ, type CrmControllerCreateRecordResult as dR, type CrmControllerCreateRelationshipResult as dS, type CrmControllerGetRecordNotesResult as dT, type CrmControllerGetRecordResult as dU, type CrmControllerGetTimelineResult as dV, type CrmControllerListFieldsResult as dW, type CrmControllerListObjectsResult as dX, type CrmControllerListRecordAssociationsResult as dY, type CrmControllerListRelationshipsResult as dZ, type CrmControllerUpdateRecordResult as d_, type CatalogDeleteReviewResult as da, type CatalogGetPriceChangeRequestsResult as db, type CatalogGetProductResult as dc, type CatalogGetProductsResult as dd, type CatalogGetServicesResult as de, type CatalogModule as df, type CatalogReviewPriceChangeRequestResult as dg, type CatalogUpdateProductResult as dh, type CatalogUpdateReviewResult as di, type CatalogUpdateSupplierVariantResult as dj, type CmsCustomFieldsDto as dk, type CmsCustomFieldsDtoArchivedAt as dl, type CmsCustomFieldsDtoCustomAttributes as dm, CmsCustomFieldsDtoPublishStatus as dn, type CmsCustomFieldsDtoPublishedAt as dp, type CreateBookingDtoCustomFields as dq, type CreateCrmActivityDtoMetadata as dr, CreateCrmFieldDtoType as ds, type CreateCrmRecordDtoData as dt, CreateCrmRelationshipDtoType as du, type CreateDepartmentDtoSettings as dv, CreateExpenseDtoPaymentMethod as dw, CreateIntegrationDefinitionDtoAuthType as dx, CreateIntegrationDefinitionDtoCategory as dy, CreateInvitationDtoRole as dz, type UpdateServiceResourceDto as e, type InvitationsCreateResult as e$, type CrmIntegrationsHandleCallbackResult as e0, type CrmIntegrationsHandleWebhookResult as e1, type CrmIntegrationsReplyToActivityResult as e2, type CrmNoteResponseDtoCreatedById as e3, type CrmRecordResponseDtoData as e4, type CrmRecordResponseDtoOwnerId as e5, type CustomerAuthResponseDto as e6, type CustomerRegisterResult as e7, type CustomerSessionDto as e8, type CustomersAddAddressResult as e9, 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 InvitationsAcceptResult as e_, type CustomersDeleteResult as ea, type CustomersGetAddressesResult as eb, type CustomersGetCurrentSessionResult as ec, type CustomersGetCustomerByIdResult as ed, type CustomersGetCustomersResult as ee, type CustomersGetSessionsResult as ef, type CustomersLoginResult as eg, type CustomersRefreshSessionResult as eh, type CustomersRegisterResult as ei, type CustomersRevokeAllSessionsResult as ej, type CustomersRevokeSessionResult as ek, type CustomersUpdateResult as el, type DefineTierDtoLimits as em, type DepartmentsAddMemberResult as en, type DepartmentsCreateResult as eo, type DepartmentsDeleteResult as ep, type DepartmentsGetResult as eq, type DepartmentsListResult as er, DepartmentsListSortOrder as es, type DepartmentsRemoveMemberResult as et, type DepartmentsUpdateResult as eu, type DispatchAddressDto as ev, type ExpenseControllerCreateExpenseResult as ew, type ExpenseControllerGetExpenseCategoriesResult as ex, type ExpenseControllerGetExpenseResult as ey, type ExpenseControllerGetExpensesResult as ez, type CreateBookingDto as f, type PettyCashControllerCreateFundResult as f$, type InvitationsListResult as f0, InvitationsListSortOrder as f1, InvitationsListStatus as f2, type InvitationsRevokeResult as f3, type InvoiceControllerCreateInvoiceResult as f4, type InvoiceControllerCreateTemplateResult as f5, type InvoiceControllerDeleteInvoiceResult as f6, type InvoiceControllerFinalizeInvoiceResult as f7, type InvoiceControllerGetConfigResult as f8, type InvoiceControllerGetInvoiceResult as f9, type MembersModule as fA, type MethodsWithOrgSlug as fB, type OAuthClientResponseDto as fC, type OmitOrgSlug as fD, type OrderItemDto as fE, type OrdersConvertQuoteToOrderResult as fF, type OrdersCreateOrderResult as fG, type OrdersGetOrdersResult as fH, type OrdersModule as fI, type OrdersRequestB2BQuoteResult as fJ, type OrdersUpdateStatusResult as fK, type POSAuthorizePairingSessionResult as fL, type POSCreatePairingSessionResult as fM, type POSGetMeResult as fN, type POSGetPairingSessionStatusResult as fO, type POSGetPettyCashFundsResult as fP, type POSGetPettyCashTransactionsResult as fQ, type POSGetTransactionsResult as fR, type POSLoginResult as fS, type POSModule as fT, type POSProcessSaleResult as fU, type POSProvisionResult as fV, type POSRegisterPettyCashResult as fW, type POSSyncResult as fX, type PaginationMetaDto as fY, type PaymentsCheckoutResult as fZ, type PaymentsControllerHandleStkCallbackResult as f_, type InvoiceControllerGetInvoicesResult as fa, type InvoiceControllerGetTemplatesResult as fb, type InvoiceControllerUpdateConfigResult as fc, type InvoiceControllerUpdateInvoiceResult as fd, type LoyaltyGetCustomerStatusResult as fe, type LoyaltyModule as ff, type LoyaltyRedeemRewardResult as fg, type LoyaltyStatusResponseDtoAvailableRewardsItem as fh, type LoyaltyValidateVoucherResult as fi, type ManualBatchSelectionDto as fj, type MemberDepartmentDto as fk, MemberResponseDtoMembershipStatus as fl, MemberResponseDtoRole as fm, MemberResponseDtoStatus as fn, type MemberRoleDto as fo, type MembersControllerAdminCheckOutResult as fp, type MembersControllerCreateMemberResult as fq, type MembersControllerDeleteMemberResult as fr, type MembersControllerGetMemberActivityResult as fs, type MembersControllerGetMemberResult as ft, MembersControllerGetMembersMembershipStatus as fu, type MembersControllerGetMembersResult as fv, MembersControllerGetMembersRole as fw, MembersControllerGetMembersSortOrder as fx, type MembersControllerUpdateMemberResult as fy, type MembersControllerUpdateStatusResult as fz, type ServicesUpdateBookingStatusBody as g, type ServicesCreateCategoryResult as g$, type PettyCashControllerGetFundResult as g0, type PettyCashControllerGetFundTransactionsResult as g1, type PettyCashControllerGetFundsResult as g2, type PettyCashControllerTopUpFundResult as g3, type ProductCategoryResponseDto as g4, type ProductMetaDto as g5, type ProductResponseDtoBrand as g6, type ProductResponseDtoDescription as g7, type ProductResponseDtoDetailedDescription as g8, type ProductResponseDtoPointsOnPurchase as g9, ReviewPriceChangeDtoStatus as gA, type RoleManagementControllerAssignRolesResult as gB, type RoleManagementControllerCreateCustomRoleResult as gC, type RoleManagementControllerCreatePermissionSetResult as gD, type RoleManagementControllerCreateRoleGroupResult as gE, type RoleManagementControllerDeleteCustomRoleResult as gF, type RoleManagementControllerGetCustomRolesResult as gG, RoleManagementControllerGetCustomRolesSortOrder as gH, type RoleManagementControllerGetPermissionSetsResult as gI, type RoleManagementControllerGetRoleGroupsResult as gJ, type RoleManagementControllerRemoveRolesResult as gK, type RoleManagementControllerUpdateCustomRoleResult as gL, type SDKModule as gM, type SaleItemDto as gN, type SalePaymentDto as gO, type SaleServiceItemDto as gP, type SeoMetadataDto as gQ, type ServiceBookingItemDto as gR, type ServiceCatalogResponseDtoDescription as gS, type ServiceCatalogResponseDtoEstimatedDuration as gT, type ServiceCatalogResponseDtoSlug as gU, type ServiceCategoryResponseDto as gV, type ServiceMaterialDto as gW, type ServicesAddBreakResult as gX, type ServicesCancelBookingSeriesResult as gY, type ServicesCompleteBookingResult as gZ, type ServicesCreateBookingResult as g_, type ProductResponseDtoRating as ga, type ProductResponseDtoRetailPrice as gb, type ProductResponseDtoSlug as gc, type ProductReviewCustomerDto as gd, type ProductReviewResponseDtoComment as ge, type ProductVariantResponseDto as gf, type ProductVariantResponseDtoRetailPrice as gg, type PublicInvoiceControllerDownloadInvoiceByTransactionResult as gh, type PublicInvoiceControllerDownloadInvoiceResult as gi, type PublicInvoiceControllerDownloadReceiptResult as gj, type PublicInvoiceControllerGeneratePublicLinkResult as gk, type PublicServicesCreatePublicBookingResult as gl, type PublicServicesGetAvailabilityResult as gm, type PublicServicesGetCategoriesResult as gn, type PublicServicesGetServiceResult as go, type PublicServicesListServicesResult as gp, type PublicServicesModule as gq, type PublicServicesRequestOtpResult as gr, type PublicServicesVerifyOtpResult as gs, type RawAPI as gt, type ReceivePurchaseItemDto as gu, type ReceiveTransferItemDto as gv, ReconcilePodDtoOutcome as gw, type ReconciliationItemDto as gx, type RegisterCustomerDtoMetadata as gy, RegisterPettyCashDtoPaymentMethod as gz, type CompleteBookingDto as h, type StrapiTriggerSyncResult as h$, type ServicesCreateResourceResult as h0, type ServicesCreateServiceResult as h1, type ServicesCreateShiftResult as h2, type ServicesDeleteCategoryResult as h3, type ServicesDeleteResourceResult as h4, type ServicesDeleteServiceResult as h5, type ServicesGetAvailabilityResult as h6, type ServicesGetBookingResult as h7, type ServicesGetBookingsResult as h8, type ServicesGetCategoriesResult as h9, type StockingDispatchOrdersResult as hA, type StockingGetActiveDeliveriesResult as hB, type StockingGetPartnerResult as hC, type StockingGetPartnersResult as hD, type StockingGetPendingDispatchResult as hE, type StockingGetPhysicalReconciliationsResult as hF, type StockingGetPurchasesResult as hG, type StockingGetReconciliationReportResult as hH, type StockingGetRequestsResult as hI, type StockingGetTransfersResult as hJ, type StockingReceivePurchaseResult as hK, type StockingReceiveTransferResult as hL, type StockingReconcilePodResult as hM, type StockingShipTransferResult as hN, type StockingSubmitPhysicalReconciliationResult as hO, type StockingUpdatePartnerResult as hP, type StrapiConnectionResponseDtoLocationMap as hQ, type StrapiCreateConnectionResult as hR, type StrapiDeleteConnectionResult as hS, type StrapiEnqueueSyncResult as hT, type StrapiExchangeCustomerTokenResult as hU, type StrapiGetConnectionResult as hV, type StrapiGetSyncLogsResult as hW, type StrapiGetWebhookLogsResult as hX, type StrapiListConnectionsResult as hY, type StrapiReceiveWebhookResult as hZ, type StrapiRegisterCustomerResult as h_, type ServicesGetCurrentMemberShiftsResult as ha, type ServicesGetFunnelResult as hb, type ServicesGetPerformanceResult as hc, type ServicesGetResourcesResult as hd, type ServicesGetServiceResult as he, type ServicesGetServicesResult as hf, type ServicesGetShiftsResult as hg, type ServicesGetStaffShiftsResult as hh, type ServicesGetUtilizationResult as hi, type ServicesModule as hj, type ServicesRegisterCustomerAppResult as hk, ServicesUpdateBookingStatusBodyStatus as hl, type ServicesUpdateBookingStatusResult as hm, type ServicesUpdateCategoryResult as hn, type ServicesUpdateResourceResult as ho, type ServicesUpdateServiceResult as hp, type SetQuotaOverridesDtoOverrides as hq, type ShipTransferItemDto as hr, type StandalonePosControllerActivateDeviceResult as hs, type StandalonePosControllerCreateSetupKeyResult as ht, type StandalonePosControllerLinkOrganizationResult as hu, type StandalonePosControllerValidateKeyResult as hv, type StockingAdjustPartnerWalletResult as hw, type StockingCreatePartnerResult as hx, type StockingCreatePurchaseResult as hy, type StockingCreateTransferResult as hz, type ServicesCreateShiftBody as i, type StrapiUpdateConnectionResult as i0, type TerminalMembersControllerLoginResult as i1, type TokenResponseDto as i2, TriggerSyncDtoDirection as i3, TriggerSyncDtoSyncTypesItem as i4, type UnitsGetUnitsResult as i5, type UpdateCrmRecordDtoData as i6, type UpdateCustomerDtoMetadata as i7, type UpdateDepartmentDtoSettings as i8, UpdateIntegrationDefinitionDtoAuthType as i9, getJwtExpiry as iA, inventoryMapping as iB, loyaltyMapping as iC, membersMapping as iD, methodsWithOrgSlugSet as iE, ordersMapping as iF, posMapping as iG, publicServicesMapping as iH, servicesMapping as iI, webhooksMapping as iJ, UpdateIntegrationDefinitionDtoCategory as ia, UpdateMemberDtoMembershipStatus as ib, UpdateMemberDtoRole as ic, UpdateMemberDtoStatus as id, UpdatePartnerDtoBenefitType as ie, UpdatePartnerDtoReconciliationPolicy as ig, UpdateServiceDtoPricingModel as ih, UpdateStrapiConnectionDtoEnabledSyncTypesItem as ii, type UpdateStrapiConnectionDtoLocationMap as ij, UpdateStrapiConnectionDtoSyncDirection as ik, type UserSummaryDto as il, type UtilityAccountControllerCreateAccountResult as im, type UtilityAccountControllerGetAccountResult as io, type UtilityAccountControllerGetAccountsResult as ip, type WebhooksCreateResult as iq, type WebhooksDeleteResult as ir, type WebhooksListResult as is, type WebhooksModule as it, accountingMapping as iu, adminMapping as iv, authMapping as iw, buildModule as ix, catalogMapping as iy, crmMapping as iz, type ServicesAddBreakBody as j, type ServicesRegisterCustomerAppBody as k, type ServicesGetUtilizationParams as l, type ServicesGetPerformanceParams as m, type ServicesGetFunnelParams as n, type PublicBookingDto as o, type InventoryGetInventoryParams as p, type InventoryResponseDto as q, type InventoryGetAdjustmentsParams as r, type InventoryGetLeadTimeParams as s, type InventoryGetWasteAnalysisParams as t, type CheckB2BAvailabilityDto as u, type CreateExpenseDto as v, type CreatePettyCashFundDto as w, type CreateUtilityAccountDto as x, type AccountingGetBalanceSheetParams as y, type AccountingGetCashFlowParams as z };