@scryme/sdk 9.67.0 → 9.69.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.
@@ -478,6 +478,17 @@ interface CartResponseDto {
478
478
  sessionId?: string;
479
479
  }
480
480
 
481
+ /**
482
+ * Generated by orval v8.23.0 🍺
483
+ * Do not edit manually.
484
+ * Scryme V3 API
485
+ * The Scryme V3 API documentation - Scalable & Enterprise Ready
486
+ * OpenAPI spec version: 3.0
487
+ */
488
+ type CatalogDeleteReviewParams = {
489
+ customerId?: string;
490
+ };
491
+
481
492
  /**
482
493
  * Generated by orval v8.23.0 🍺
483
494
  * Do not edit manually.
@@ -1354,6 +1365,22 @@ interface CreateProductDto {
1354
1365
  customFields?: CmsCustomFieldsDto;
1355
1366
  }
1356
1367
 
1368
+ /**
1369
+ * Generated by orval v8.23.0 🍺
1370
+ * Do not edit manually.
1371
+ * Scryme V3 API
1372
+ * The Scryme V3 API documentation - Scalable & Enterprise Ready
1373
+ * OpenAPI spec version: 3.0
1374
+ */
1375
+ interface CreateProductReviewDto {
1376
+ /** Rating of the product from 1 to 5 */
1377
+ rating: number;
1378
+ /** Review comment content */
1379
+ comment?: string;
1380
+ /** Optional customer override ID */
1381
+ customerId?: string;
1382
+ }
1383
+
1357
1384
  /**
1358
1385
  * Generated by orval v8.23.0 🍺
1359
1386
  * Do not edit manually.
@@ -2586,6 +2613,32 @@ interface ProductCategoryResponseDto {
2586
2613
  name: string;
2587
2614
  }
2588
2615
 
2616
+ /**
2617
+ * Generated by orval v8.23.0 🍺
2618
+ * Do not edit manually.
2619
+ * Scryme V3 API
2620
+ * The Scryme V3 API documentation - Scalable & Enterprise Ready
2621
+ * OpenAPI spec version: 3.0
2622
+ */
2623
+ interface ProductMetaDto {
2624
+ averageRating?: number;
2625
+ reviewCount?: number;
2626
+ }
2627
+
2628
+ /**
2629
+ * Generated by orval v8.23.0 🍺
2630
+ * Do not edit manually.
2631
+ * Scryme V3 API
2632
+ * The Scryme V3 API documentation - Scalable & Enterprise Ready
2633
+ * OpenAPI spec version: 3.0
2634
+ */
2635
+ /**
2636
+ * @nullable
2637
+ */
2638
+ type ProductResponseDtoBrand = {
2639
+ [key: string]: unknown;
2640
+ } | null;
2641
+
2589
2642
  /**
2590
2643
  * Generated by orval v8.23.0 🍺
2591
2644
  * Do not edit manually.
@@ -2600,6 +2653,48 @@ type ProductResponseDtoDescription = {
2600
2653
  [key: string]: unknown;
2601
2654
  } | null;
2602
2655
 
2656
+ /**
2657
+ * Generated by orval v8.23.0 🍺
2658
+ * Do not edit manually.
2659
+ * Scryme V3 API
2660
+ * The Scryme V3 API documentation - Scalable & Enterprise Ready
2661
+ * OpenAPI spec version: 3.0
2662
+ */
2663
+ /**
2664
+ * @nullable
2665
+ */
2666
+ type ProductResponseDtoDetailedDescription = {
2667
+ [key: string]: unknown;
2668
+ } | null;
2669
+
2670
+ /**
2671
+ * Generated by orval v8.23.0 🍺
2672
+ * Do not edit manually.
2673
+ * Scryme V3 API
2674
+ * The Scryme V3 API documentation - Scalable & Enterprise Ready
2675
+ * OpenAPI spec version: 3.0
2676
+ */
2677
+ /**
2678
+ * @nullable
2679
+ */
2680
+ type ProductResponseDtoPointsOnPurchase = {
2681
+ [key: string]: unknown;
2682
+ } | null;
2683
+
2684
+ /**
2685
+ * Generated by orval v8.23.0 🍺
2686
+ * Do not edit manually.
2687
+ * Scryme V3 API
2688
+ * The Scryme V3 API documentation - Scalable & Enterprise Ready
2689
+ * OpenAPI spec version: 3.0
2690
+ */
2691
+ /**
2692
+ * @nullable
2693
+ */
2694
+ type ProductResponseDtoRating = {
2695
+ [key: string]: unknown;
2696
+ } | null;
2697
+
2603
2698
  /**
2604
2699
  * Generated by orval v8.23.0 🍺
2605
2700
  * Do not edit manually.
@@ -2628,6 +2723,49 @@ type ProductResponseDtoSlug = {
2628
2723
  [key: string]: unknown;
2629
2724
  } | null;
2630
2725
 
2726
+ /**
2727
+ * Generated by orval v8.23.0 🍺
2728
+ * Do not edit manually.
2729
+ * Scryme V3 API
2730
+ * The Scryme V3 API documentation - Scalable & Enterprise Ready
2731
+ * OpenAPI spec version: 3.0
2732
+ */
2733
+ interface ProductReviewCustomerDto {
2734
+ id: string;
2735
+ name: string;
2736
+ }
2737
+
2738
+ /**
2739
+ * Generated by orval v8.23.0 🍺
2740
+ * Do not edit manually.
2741
+ * Scryme V3 API
2742
+ * The Scryme V3 API documentation - Scalable & Enterprise Ready
2743
+ * OpenAPI spec version: 3.0
2744
+ */
2745
+ /**
2746
+ * @nullable
2747
+ */
2748
+ type ProductReviewResponseDtoComment = {
2749
+ [key: string]: unknown;
2750
+ } | null;
2751
+
2752
+ /**
2753
+ * Generated by orval v8.23.0 🍺
2754
+ * Do not edit manually.
2755
+ * Scryme V3 API
2756
+ * The Scryme V3 API documentation - Scalable & Enterprise Ready
2757
+ * OpenAPI spec version: 3.0
2758
+ */
2759
+
2760
+ interface ProductReviewResponseDto {
2761
+ id: string;
2762
+ customer: ProductReviewCustomerDto;
2763
+ rating: number;
2764
+ /** @nullable */
2765
+ comment: ProductReviewResponseDtoComment;
2766
+ createdAt: string;
2767
+ }
2768
+
2631
2769
  /**
2632
2770
  * Generated by orval v8.23.0 🍺
2633
2771
  * Do not edit manually.
@@ -2680,6 +2818,22 @@ interface ProductResponseDto {
2680
2818
  slug: ProductResponseDtoSlug;
2681
2819
  variants?: ProductVariantResponseDto[];
2682
2820
  customFields?: CmsCustomFieldsDto;
2821
+ /** @nullable */
2822
+ brand?: ProductResponseDtoBrand;
2823
+ /** @nullable */
2824
+ rating?: ProductResponseDtoRating;
2825
+ isNew?: boolean;
2826
+ /** @nullable */
2827
+ detailedDescription?: ProductResponseDtoDetailedDescription;
2828
+ tags?: string[];
2829
+ isFeatured?: boolean;
2830
+ isActive?: boolean;
2831
+ /** @nullable */
2832
+ pointsOnPurchase?: ProductResponseDtoPointsOnPurchase;
2833
+ reviews?: ProductReviewResponseDto[];
2834
+ favoritesCount?: number;
2835
+ favouritesCount?: number;
2836
+ meta?: ProductMetaDto;
2683
2837
  }
2684
2838
 
2685
2839
  /**
@@ -3934,6 +4088,22 @@ interface UpdateProductDto {
3934
4088
  customFields?: CmsCustomFieldsDto;
3935
4089
  }
3936
4090
 
4091
+ /**
4092
+ * Generated by orval v8.23.0 🍺
4093
+ * Do not edit manually.
4094
+ * Scryme V3 API
4095
+ * The Scryme V3 API documentation - Scalable & Enterprise Ready
4096
+ * OpenAPI spec version: 3.0
4097
+ */
4098
+ interface UpdateProductReviewDto {
4099
+ /** Updated rating of the product from 1 to 5 */
4100
+ rating?: number;
4101
+ /** Updated review comment content */
4102
+ comment?: string;
4103
+ /** Optional customer override ID */
4104
+ customerId?: string;
4105
+ }
4106
+
3937
4107
  /**
3938
4108
  * Generated by orval v8.23.0 🍺
3939
4109
  * Do not edit manually.
@@ -4279,6 +4449,9 @@ declare const getScrymeV3API: (axiosInstance?: AxiosInstance) => {
4279
4449
  catalogUpdateSupplierVariant: (orgSlug: string, supplierId: string, variantId: string, updateSupplierProductDto: UpdateSupplierProductDto, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
4280
4450
  catalogGetPriceChangeRequests: (orgSlug: string, params?: CatalogGetPriceChangeRequestsParams, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
4281
4451
  catalogReviewPriceChangeRequest: (orgSlug: string, id: string, reviewPriceChangeDto: ReviewPriceChangeDto, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
4452
+ catalogCreateReview: (orgSlug: string, productId: string, createProductReviewDto: CreateProductReviewDto, options?: AxiosRequestConfig) => Promise<AxiosResponse<ProductReviewResponseDto>>;
4453
+ catalogUpdateReview: (orgSlug: string, reviewId: string, updateProductReviewDto: UpdateProductReviewDto, options?: AxiosRequestConfig) => Promise<AxiosResponse<ProductReviewResponseDto>>;
4454
+ catalogDeleteReview: (orgSlug: string, reviewId: string, params?: CatalogDeleteReviewParams, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
4282
4455
  servicesCreateCategory: (orgSlug: string, createServiceCategoryDto: CreateServiceCategoryDto, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
4283
4456
  servicesGetCategories: (orgSlug: string, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
4284
4457
  servicesUpdateCategory: (orgSlug: string, id: string, updateServiceCategoryDto: UpdateServiceCategoryDto, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
@@ -4315,6 +4488,7 @@ declare const getScrymeV3API: (axiosInstance?: AxiosInstance) => {
4315
4488
  publicServicesCreatePublicBooking: (orgSlug: string, publicBookingDto: PublicBookingDto, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
4316
4489
  customersGetCustomers: (orgSlug: string, params?: CustomersGetCustomersParams, options?: AxiosRequestConfig) => Promise<AxiosResponse<CustomerResponseDto[]>>;
4317
4490
  customersRegister: (orgSlug: string, registerCustomerDto: RegisterCustomerDto, options?: AxiosRequestConfig) => Promise<AxiosResponse<CustomerResponseDto>>;
4491
+ customerRegister: (orgSlug: string, registerCustomerDto: RegisterCustomerDto, options?: AxiosRequestConfig) => Promise<AxiosResponse<CustomerResponseDto>>;
4318
4492
  customersLogin: (orgSlug: string, customerLoginDto: CustomerLoginDto, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
4319
4493
  customersRefreshSession: (orgSlug: string, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
4320
4494
  customersGetCurrentSession: (orgSlug: string, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
@@ -4546,6 +4720,9 @@ type CatalogUpdateProductResult = AxiosResponse<ProductResponseDto>;
4546
4720
  type CatalogUpdateSupplierVariantResult = AxiosResponse<void>;
4547
4721
  type CatalogGetPriceChangeRequestsResult = AxiosResponse<void>;
4548
4722
  type CatalogReviewPriceChangeRequestResult = AxiosResponse<void>;
4723
+ type CatalogCreateReviewResult = AxiosResponse<ProductReviewResponseDto>;
4724
+ type CatalogUpdateReviewResult = AxiosResponse<ProductReviewResponseDto>;
4725
+ type CatalogDeleteReviewResult = AxiosResponse<void>;
4549
4726
  type ServicesCreateCategoryResult = AxiosResponse<void>;
4550
4727
  type ServicesGetCategoriesResult = AxiosResponse<void>;
4551
4728
  type ServicesUpdateCategoryResult = AxiosResponse<void>;
@@ -4582,6 +4759,7 @@ type PublicServicesVerifyOtpResult = AxiosResponse<void>;
4582
4759
  type PublicServicesCreatePublicBookingResult = AxiosResponse<void>;
4583
4760
  type CustomersGetCustomersResult = AxiosResponse<CustomerResponseDto[]>;
4584
4761
  type CustomersRegisterResult = AxiosResponse<CustomerResponseDto>;
4762
+ type CustomerRegisterResult = AxiosResponse<CustomerResponseDto>;
4585
4763
  type CustomersLoginResult = AxiosResponse<void>;
4586
4764
  type CustomersRefreshSessionResult = AxiosResponse<void>;
4587
4765
  type CustomersGetCurrentSessionResult = AxiosResponse<void>;
@@ -4778,7 +4956,7 @@ interface CustomerAuthResponseDto<TUser = CustomerResponseDto, TSession = Custom
4778
4956
  */
4779
4957
  user?: TUser;
4780
4958
  }
4781
- 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" | "catalogGetProduct" | "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" | "customersGetCustomers" | "customersRegister" | "customersUpdate" | "customersGetCustomerById" | "customersDelete" | "customersGetAddresses" | "customersAddAddress" | "customersGetCurrentSession" | "customersGetSessions" | "customersRevokeSession" | "customersRevokeAllSessions" | "customersRefreshSession" | "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";
4959
+ 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" | "catalogGetProduct" | "catalogCreateProduct" | "catalogGetServices" | "catalogUpdateProduct" | "catalogUpdateSupplierVariant" | "catalogGetPriceChangeRequests" | "catalogReviewPriceChangeRequest" | "catalogCreateReview" | "catalogUpdateReview" | "catalogDeleteReview" | "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" | "customersGetCustomers" | "customersRegister" | "customersUpdate" | "customersGetCustomerById" | "customersDelete" | "customersGetAddresses" | "customersAddAddress" | "customersGetCurrentSession" | "customersGetSessions" | "customersRevokeSession" | "customersRevokeAllSessions" | "customersRefreshSession" | "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";
4782
4960
  declare const methodsWithOrgSlugSet: Set<string>;
4783
4961
  type OmitOrgSlug<MethodName extends keyof RawAPI, T> = MethodName extends MethodsWithOrgSlug ? (T extends (orgSlug: string, ...args: infer A) => infer R ? (...args: A) => R : T) : T;
4784
4962
  type SDKModule<Mapping> = {
@@ -4793,6 +4971,9 @@ declare const catalogMapping: {
4793
4971
  readonly updateSupplierVariant: "catalogUpdateSupplierVariant";
4794
4972
  readonly getPriceChangeRequests: "catalogGetPriceChangeRequests";
4795
4973
  readonly reviewPriceChangeRequest: "catalogReviewPriceChangeRequest";
4974
+ readonly createReview: "catalogCreateReview";
4975
+ readonly updateReview: "catalogUpdateReview";
4976
+ readonly deleteReview: "catalogDeleteReview";
4796
4977
  readonly createServiceCategory: "servicesCreateCategory";
4797
4978
  readonly getServiceCategories: "servicesGetCategories";
4798
4979
  readonly updateServiceCategory: "servicesUpdateCategory";
@@ -5102,7 +5283,7 @@ declare const adminMapping: {
5102
5283
  readonly getDashboardAnalytics: "analyticsControllerGetDashboardAnalytics";
5103
5284
  readonly getResourceUtilization: "analyticsControllerGetResourceUtilization";
5104
5285
  };
5105
- interface CatalogModule<TProduct = ProductResponseDto, TService = ServiceCatalogResponseDto> extends Omit<SDKModule<typeof catalogMapping>, "getProducts" | "createProduct" | "getServices" | "updateProduct" | "getProduct" | "getService"> {
5286
+ interface CatalogModule<TProduct = ProductResponseDto, TService = ServiceCatalogResponseDto> extends Omit<SDKModule<typeof catalogMapping>, "getProducts" | "createProduct" | "getServices" | "updateProduct" | "getProduct" | "getService" | "createReview" | "updateReview" | "deleteReview"> {
5106
5287
  getProducts<T = TProduct>(params?: CatalogGetProductsParams, options?: AxiosRequestConfig): Promise<AxiosResponse<T[]>>;
5107
5288
  createProduct<T = TProduct>(createProductDto: CreateProductDto, options?: AxiosRequestConfig): Promise<AxiosResponse<T>>;
5108
5289
  getServices<T = TService>(params?: CatalogGetServicesParams, options?: AxiosRequestConfig): Promise<AxiosResponse<T[]>>;
@@ -5115,6 +5296,9 @@ interface CatalogModule<TProduct = ProductResponseDto, TService = ServiceCatalog
5115
5296
  id?: string;
5116
5297
  slug?: string;
5117
5298
  }, options?: AxiosRequestConfig): Promise<AxiosResponse<T>>;
5299
+ createReview(productId: string, createProductReviewDto: CreateProductReviewDto, options?: AxiosRequestConfig): Promise<AxiosResponse<ProductReviewResponseDto>>;
5300
+ updateReview(reviewId: string, updateProductReviewDto: UpdateProductReviewDto, options?: AxiosRequestConfig): Promise<AxiosResponse<ProductReviewResponseDto>>;
5301
+ deleteReview(reviewId: string, params?: CatalogDeleteReviewParams, options?: AxiosRequestConfig): Promise<AxiosResponse<void>>;
5118
5302
  }
5119
5303
  type AuthModule = SDKModule<typeof authMapping>;
5120
5304
  type InventoryModule = SDKModule<typeof inventoryMapping>;
@@ -5130,4 +5314,4 @@ type ServicesModule = SDKModule<typeof servicesMapping>;
5130
5314
  declare function buildModule<Mapping extends Record<string, keyof RawAPI>>(api: RawAPI, orgSlug: string, mapping: Mapping): SDKModule<Mapping>;
5131
5315
  declare function getJwtExpiry(token: string): number | null;
5132
5316
 
5133
- 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 DepartmentResponseDto 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 OrdersGetOrdersParams as aA, type UpdateOrderStatusDto as aB, type RequestB2BQuoteDto as aC, type ProvisionDeviceDto as aD, type ProvisionResponseDto as aE, type PosLoginDto as aF, type PosLoginResponseDto as aG, type ProcessSaleDto as aH, type RegisterPettyCashDto as aI, type POSGetPettyCashTransactionsParams as aJ, type MembersControllerGetMembersParams as aK, type MemberResponseDto as aL, type CreateMemberDto as aM, type UpdateMemberDto as aN, type CheckOutDto as aO, type TerminalLoginDto as aP, type TerminalLoginResponseDto as aQ, type InvitationsListParams as aR, type InvitationResponseDto as aS, type CreateInvitationDto as aT, type AcceptInvitationDto as aU, type RoleManagementControllerGetCustomRolesParams as aV, type CreateCustomRoleDto as aW, type UpdateCustomRoleDto as aX, type CreatePermissionSetDto as aY, type CreateRoleGroupDto as aZ, type DepartmentsListParams as a_, type RequestOtpDto as aa, type VerifyOtpDto as ab, type PublicBookingDto as ac, type CustomersGetCustomersParams as ad, type CustomerResponseDto as ae, type RegisterCustomerDto as af, type CustomerLoginDto as ag, type CustomersRevokeAllSessionsParams as ah, type UpdateCustomerDto as ai, type AddressDto as aj, type CreateBusinessAccountDto as ak, type CreateCrmRecordDto as al, type CrmRecordResponseDto as am, type UpdateCrmRecordDto as an, type CreateCrmNoteDto as ao, type CrmNoteResponseDto as ap, type CreateCrmActivityDto as aq, type CreateCrmObjectDto as ar, type CreateCrmFieldDto as as, type CreateCrmRelationshipDto as at, type CreateCrmAssociationDto as au, type RedeemRewardDto as av, type LoyaltyStatusResponseDto as aw, type ValidateVoucherDto as ax, type CreateOrderDto as ay, type OrderResponseDto as az, type InventoryResponseDto as b, type AdminControllerListActiveOrganizationIntegrationsResult as b$, type CreateDepartmentDto as b0, type UpdateDepartmentDto as b1, type AddDepartmentMemberDto as b2, type AttendanceControllerGetLogsParams as b3, type CheckInDto as b4, type AnnouncementDto as b5, type CartControllerGetCartParams as b6, type CartResponseDto as b7, type CartControllerClearCartParams as b8, type AddToCartDto as b9, type B2BOrderResponseDto as bA, type CrmIntegrationsHandleCallbackParams as bB, type UnitsGetUnitsParams as bC, type CreateStrapiConnectionDto as bD, type StrapiConnectionResponseDto as bE, type UpdateStrapiConnectionDto as bF, type TriggerSyncDto as bG, type AnalyticsControllerGetResourceUtilizationParams as bH, type AccountingGetBalanceSheetResult as bI, type AccountingGetCashFlowResult as bJ, type AccountingGetProfitLossResult as bK, type AccountingGetTaxSummaryResult as bL, type AccountingInitializeResult as bM, type AccountingModule as bN, AddDepartmentMemberDtoRole as bO, type AddToCartDtoBookingDetails as bP, type AdminControllerBanUserResult as bQ, type AdminControllerCreateIntegrationDefinitionResult as bR, type AdminControllerCreateOrganizationResult as bS, type AdminControllerDefineTierResult as bT, type AdminControllerDeleteGlobalSettingResult as bU, type AdminControllerDeleteIntegrationDefinitionResult as bV, type AdminControllerDeleteOrganizationResult as bW, type AdminControllerDeleteTierResult as bX, type AdminControllerGetOrganizationDetailsResult as bY, type AdminControllerGetOrganizationSubscriptionResult as bZ, type AdminControllerGetStatsResult as b_, type RemoveFromCartDto as ba, type FavoriteResponseDto as bb, type FavoriteDto as bc, type StockingGetPurchasesParams as bd, type CreatePurchaseDto as be, type ReceivePurchaseDto as bf, type StockingGetTransfersParams as bg, type CreateTransferDto as bh, type ShipTransferDto as bi, type ReceiveTransferDto as bj, type StockingGetRequestsParams as bk, type StockingGetPendingDispatchParams as bl, type DispatchOrderDto as bm, type StockingGetActiveDeliveriesParams as bn, type ReconcilePodDto as bo, type StockingGetPhysicalReconciliationsParams as bp, type SubmitReconciliationDto as bq, type CreatePartnerDto as br, type UpdatePartnerDto as bs, type PartnerWalletActionDto as bt, type CreateSetupKeyDto as bu, type ActivateDeviceDto as bv, type LinkOrganizationDto as bw, type B2BGetCatalogParams as bx, type PaginatedB2BCatalogDto as by, type CreateB2BOrderDto as bz, type InventoryGetAdjustmentsParams as c, type CmsCustomFieldsDtoPublishedAt as c$, type AdminControllerListConnectedAppsResult as c0, type AdminControllerListGlobalSettingsResult as c1, type AdminControllerListIntegrationDefinitionsResult as c2, type AdminControllerListMembersResult as c3, type AdminControllerListOrganizationsResult as c4, type AdminControllerListSystemLogsResult as c5, type AdminControllerListSystemPaymentsResult as c6, type AdminControllerListTiersResult as c7, type AdminControllerListUsersResult as c8, type AdminControllerRecordCustomPaymentResult as c9, type B2BQuoteItemDto as cA, type B2BVariantDto as cB, type B2BVariantStockDto as cC, type BatchReceiptDto as cD, type BatchReceiptDtoQcResults as cE, type BusinessAccountControllerCreateResult as cF, type BusinessAccountControllerGetOneResult as cG, type CRMModule as cH, type CartControllerAddToCartResult as cI, type CartControllerClearCartResult as cJ, type CartControllerGetCartResult as cK, type CartControllerRemoveFromCartResult as cL, type CartItemDto as cM, type CartItemDtoBookingDetails as cN, type CatalogCreateProductResult as cO, type CatalogGetPriceChangeRequestsResult as cP, type CatalogGetProductResult 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 AdminControllerSetGlobalSettingResult as ca, type AdminControllerUnbanUserResult as cb, type AdminControllerUpdateIntegrationDefinitionResult as cc, type AdminControllerUpdateOrganizationResult as cd, type AdminControllerUpdateOrganizationSubscriptionResult as ce, type AdminModule as cf, type AnalyticsControllerGetDashboardAnalyticsResult as cg, type AnalyticsControllerGetResourceUtilizationResult as ch, type AnnouncementControllerBroadcastAnnouncementResult as ci, type AttendanceControllerCheckInResult as cj, type AttendanceControllerCheckOutResult as ck, type AttendanceControllerGetLogsResult as cl, AttendanceControllerGetLogsSortOrder as cm, type AttendanceControllerGetMyStatusResult as cn, type AttendanceControllerGetStatusResult as co, type AuthControllerHandleOAuth2Result as cp, type AuthExchangeToken201Meta as cq, type AuthExchangeTokenResult as cr, type AuthModule as cs, type B2BCatalogProductDto as ct, type B2BCreateOrderResult as cu, type B2BCreateQuoteResult as cv, type B2BGetCatalogResult as cw, type B2BGetInvoicesResult as cx, type B2BGetOrdersResult as cy, type B2BOrderItemDto 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 CustomersRefreshSessionResult 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 };
5317
+ 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 UpdateCustomRoleDto as a$, type ServicesGetShiftsParams as a0, type UpdateServiceDto as a1, type CreateServiceResourceDto as a2, type UpdateServiceResourceDto as a3, type CreateBookingDto as a4, type ServicesUpdateBookingStatusBody as a5, type CompleteBookingDto as a6, type ServicesCreateShiftBody as a7, type ServicesAddBreakBody as a8, type ServicesRegisterCustomerAppBody as a9, type LoyaltyStatusResponseDto as aA, type ValidateVoucherDto as aB, type CreateOrderDto as aC, type OrderResponseDto as aD, type OrdersGetOrdersParams as aE, type UpdateOrderStatusDto as aF, type RequestB2BQuoteDto as aG, type ProvisionDeviceDto as aH, type ProvisionResponseDto as aI, type PosLoginDto as aJ, type PosLoginResponseDto as aK, type ProcessSaleDto as aL, type RegisterPettyCashDto as aM, type POSGetPettyCashTransactionsParams as aN, type MembersControllerGetMembersParams as aO, type MemberResponseDto as aP, type CreateMemberDto as aQ, type UpdateMemberDto as aR, type CheckOutDto as aS, type TerminalLoginDto as aT, type TerminalLoginResponseDto as aU, type InvitationsListParams as aV, type InvitationResponseDto as aW, type CreateInvitationDto as aX, type AcceptInvitationDto as aY, type RoleManagementControllerGetCustomRolesParams as aZ, type CreateCustomRoleDto as a_, type ServicesGetUtilizationParams as aa, type ServicesGetPerformanceParams as ab, type ServicesGetFunnelParams as ac, type PublicServicesGetAvailabilityParams as ad, type RequestOtpDto as ae, type VerifyOtpDto as af, type PublicBookingDto as ag, type CustomersGetCustomersParams as ah, type CustomerResponseDto as ai, type RegisterCustomerDto as aj, type CustomerLoginDto as ak, type CustomersRevokeAllSessionsParams as al, type UpdateCustomerDto as am, type AddressDto as an, type CreateBusinessAccountDto as ao, type CreateCrmRecordDto as ap, type CrmRecordResponseDto as aq, type UpdateCrmRecordDto as ar, type CreateCrmNoteDto as as, type CrmNoteResponseDto as at, type CreateCrmActivityDto as au, type CreateCrmObjectDto as av, type CreateCrmFieldDto as aw, type CreateCrmRelationshipDto as ax, type CreateCrmAssociationDto as ay, type RedeemRewardDto as az, type InventoryResponseDto as b, type AdminControllerDeleteTierResult as b$, type CreatePermissionSetDto as b0, type CreateRoleGroupDto as b1, type DepartmentsListParams as b2, type DepartmentResponseDto as b3, type CreateDepartmentDto as b4, type UpdateDepartmentDto as b5, type AddDepartmentMemberDto as b6, type AttendanceControllerGetLogsParams as b7, type CheckInDto as b8, type AnnouncementDto as b9, type LinkOrganizationDto as bA, type B2BGetCatalogParams as bB, type PaginatedB2BCatalogDto as bC, type CreateB2BOrderDto as bD, type B2BOrderResponseDto as bE, type CrmIntegrationsHandleCallbackParams as bF, type UnitsGetUnitsParams as bG, type CreateStrapiConnectionDto as bH, type StrapiConnectionResponseDto as bI, type UpdateStrapiConnectionDto as bJ, type TriggerSyncDto as bK, type AnalyticsControllerGetResourceUtilizationParams as bL, type AccountingGetBalanceSheetResult as bM, type AccountingGetCashFlowResult as bN, type AccountingGetProfitLossResult as bO, type AccountingGetTaxSummaryResult as bP, type AccountingInitializeResult as bQ, type AccountingModule as bR, AddDepartmentMemberDtoRole as bS, type AddToCartDtoBookingDetails as bT, type AdminControllerBanUserResult as bU, type AdminControllerCreateIntegrationDefinitionResult as bV, type AdminControllerCreateOrganizationResult as bW, type AdminControllerDefineTierResult as bX, type AdminControllerDeleteGlobalSettingResult as bY, type AdminControllerDeleteIntegrationDefinitionResult as bZ, type AdminControllerDeleteOrganizationResult as b_, type CartControllerGetCartParams as ba, type CartResponseDto as bb, type CartControllerClearCartParams as bc, type AddToCartDto as bd, type RemoveFromCartDto as be, type FavoriteResponseDto as bf, type FavoriteDto as bg, type StockingGetPurchasesParams as bh, type CreatePurchaseDto as bi, type ReceivePurchaseDto as bj, type StockingGetTransfersParams as bk, type CreateTransferDto as bl, type ShipTransferDto as bm, type ReceiveTransferDto as bn, type StockingGetRequestsParams as bo, type StockingGetPendingDispatchParams as bp, type DispatchOrderDto as bq, type StockingGetActiveDeliveriesParams as br, type ReconcilePodDto as bs, type StockingGetPhysicalReconciliationsParams as bt, type SubmitReconciliationDto as bu, type CreatePartnerDto as bv, type UpdatePartnerDto as bw, type PartnerWalletActionDto as bx, type CreateSetupKeyDto as by, type ActivateDeviceDto as bz, type InventoryGetAdjustmentsParams as c, type CatalogUpdateProductResult as c$, type AdminControllerGetOrganizationDetailsResult as c0, type AdminControllerGetOrganizationSubscriptionResult as c1, type AdminControllerGetStatsResult as c2, type AdminControllerListActiveOrganizationIntegrationsResult as c3, type AdminControllerListConnectedAppsResult as c4, type AdminControllerListGlobalSettingsResult as c5, type AdminControllerListIntegrationDefinitionsResult as c6, type AdminControllerListMembersResult as c7, type AdminControllerListOrganizationsResult as c8, type AdminControllerListSystemLogsResult as c9, type B2BGetCatalogResult as cA, type B2BGetInvoicesResult as cB, type B2BGetOrdersResult as cC, type B2BOrderItemDto as cD, type B2BQuoteItemDto as cE, type B2BVariantDto as cF, type B2BVariantStockDto as cG, type BatchReceiptDto as cH, type BatchReceiptDtoQcResults as cI, type BusinessAccountControllerCreateResult as cJ, type BusinessAccountControllerGetOneResult as cK, type CRMModule as cL, type CartControllerAddToCartResult as cM, type CartControllerClearCartResult as cN, type CartControllerGetCartResult as cO, type CartControllerRemoveFromCartResult as cP, type CartItemDto as cQ, type CartItemDtoBookingDetails as cR, type CatalogCreateProductResult as cS, type CatalogCreateReviewResult as cT, type CatalogDeleteReviewResult as cU, type CatalogGetPriceChangeRequestsResult as cV, type CatalogGetProductResult as cW, type CatalogGetProductsResult as cX, type CatalogGetServicesResult as cY, type CatalogModule as cZ, type CatalogReviewPriceChangeRequestResult as c_, type AdminControllerListSystemPaymentsResult as ca, type AdminControllerListTiersResult as cb, type AdminControllerListUsersResult as cc, type AdminControllerRecordCustomPaymentResult as cd, type AdminControllerSetGlobalSettingResult as ce, type AdminControllerUnbanUserResult as cf, type AdminControllerUpdateIntegrationDefinitionResult as cg, type AdminControllerUpdateOrganizationResult as ch, type AdminControllerUpdateOrganizationSubscriptionResult as ci, type AdminModule as cj, type AnalyticsControllerGetDashboardAnalyticsResult as ck, type AnalyticsControllerGetResourceUtilizationResult as cl, type AnnouncementControllerBroadcastAnnouncementResult as cm, type AttendanceControllerCheckInResult as cn, type AttendanceControllerCheckOutResult as co, type AttendanceControllerGetLogsResult as cp, AttendanceControllerGetLogsSortOrder as cq, type AttendanceControllerGetMyStatusResult as cr, type AttendanceControllerGetStatusResult as cs, type AuthControllerHandleOAuth2Result as ct, type AuthExchangeToken201Meta as cu, type AuthExchangeTokenResult as cv, type AuthModule as cw, type B2BCatalogProductDto as cx, type B2BCreateOrderResult as cy, type B2BCreateQuoteResult as cz, type InventoryGetLeadTimeParams as d, type CustomersRefreshSessionResult as d$, type CatalogUpdateReviewResult as d0, type CatalogUpdateSupplierVariantResult as d1, type CmsCustomFieldsDto as d2, type CmsCustomFieldsDtoArchivedAt as d3, type CmsCustomFieldsDtoCustomAttributes as d4, CmsCustomFieldsDtoPublishStatus as d5, type CmsCustomFieldsDtoPublishedAt as d6, type CreateBookingDtoCustomFields as d7, type CreateCrmActivityDtoMetadata as d8, CreateCrmFieldDtoType as d9, type CrmControllerCreateRelationshipResult as dA, type CrmControllerGetRecordNotesResult as dB, type CrmControllerGetRecordResult as dC, type CrmControllerGetTimelineResult as dD, type CrmControllerListFieldsResult as dE, type CrmControllerListObjectsResult as dF, type CrmControllerListRecordAssociationsResult as dG, type CrmControllerListRelationshipsResult as dH, type CrmControllerUpdateRecordResult as dI, type CrmIntegrationsGetAuthUrlResult as dJ, type CrmIntegrationsHandleCallbackResult as dK, type CrmIntegrationsHandleWebhookResult as dL, type CrmIntegrationsReplyToActivityResult as dM, type CrmNoteResponseDtoCreatedById as dN, type CrmRecordResponseDtoData as dO, type CrmRecordResponseDtoOwnerId as dP, type CustomerAuthResponseDto as dQ, type CustomerRegisterResult as dR, type CustomerSessionDto as dS, type CustomersAddAddressResult as dT, type CustomersDeleteResult as dU, type CustomersGetAddressesResult as dV, type CustomersGetCurrentSessionResult as dW, type CustomersGetCustomerByIdResult as dX, type CustomersGetCustomersResult as dY, type CustomersGetSessionsResult as dZ, type CustomersLoginResult as d_, type CreateCrmRecordDtoData as da, CreateCrmRelationshipDtoType as db, type CreateDepartmentDtoSettings as dc, CreateExpenseDtoPaymentMethod as dd, CreateIntegrationDefinitionDtoAuthType as de, CreateIntegrationDefinitionDtoCategory as df, CreateInvitationDtoRole as dg, CreateMemberDtoRole as dh, CreateOrderDtoChannel as di, CreatePartnerDtoBenefitType as dj, CreatePartnerDtoReconciliationPolicy as dk, type CreatePurchaseItemDto as dl, CreateServiceDtoPricingModel as dm, CreateStrapiConnectionDtoEnabledSyncTypesItem as dn, type CreateStrapiConnectionDtoLocationMap as dp, CreateStrapiConnectionDtoSyncDirection as dq, CreateTransferDtoPriority as dr, type CreateTransferItemDto as ds, CreateUtilityAccountDtoType as dt, type CrmControllerCreateActivityResult as du, type CrmControllerCreateAssociationResult as dv, type CrmControllerCreateFieldResult as dw, type CrmControllerCreateNoteResult as dx, type CrmControllerCreateObjectResult as dy, type CrmControllerCreateRecordResult as dz, type InventoryGetWasteAnalysisParams as e, type LoyaltyStatusResponseDtoAvailableRewardsItem as e$, type CustomersRegisterResult as e0, type CustomersRevokeAllSessionsResult as e1, type CustomersRevokeSessionResult as e2, type CustomersUpdateResult as e3, type DefineTierDtoLimits as e4, type DepartmentsAddMemberResult as e5, type DepartmentsCreateResult as e6, type DepartmentsDeleteResult as e7, type DepartmentsGetResult as e8, type DepartmentsListResult as e9, type InventoryRequestAdjustmentResult as eA, type InventoryScanUnpackBatchResult as eB, type InventorySplitBatchResult as eC, type InventoryTraceBatchResult as eD, type InventoryUnpackBatchResult as eE, type InventoryVerifyIntegrityResult as eF, InvitationResponseDtoRole as eG, InvitationResponseDtoStatus as eH, type InvitationsAcceptResult as eI, type InvitationsCreateResult as eJ, type InvitationsListResult as eK, InvitationsListSortOrder as eL, InvitationsListStatus as eM, type InvitationsRevokeResult as eN, type InvoiceControllerCreateInvoiceResult as eO, type InvoiceControllerCreateTemplateResult as eP, type InvoiceControllerDeleteInvoiceResult as eQ, type InvoiceControllerFinalizeInvoiceResult as eR, type InvoiceControllerGetConfigResult as eS, type InvoiceControllerGetInvoiceResult as eT, type InvoiceControllerGetInvoicesResult as eU, type InvoiceControllerGetTemplatesResult as eV, type InvoiceControllerUpdateConfigResult as eW, type InvoiceControllerUpdateInvoiceResult as eX, type LoyaltyGetCustomerStatusResult as eY, type LoyaltyModule as eZ, type LoyaltyRedeemRewardResult as e_, DepartmentsListSortOrder as ea, type DepartmentsRemoveMemberResult as eb, type DepartmentsUpdateResult as ec, type DispatchAddressDto as ed, type ExpenseControllerCreateExpenseResult as ee, type ExpenseControllerGetExpenseCategoriesResult as ef, type ExpenseControllerGetExpenseResult as eg, type ExpenseControllerGetExpensesResult as eh, ExpenseControllerGetExpensesStatus as ei, type FavoritesControllerAddFavoriteResult as ej, type FavoritesControllerGetFavoritesResult as ek, type FavoritesControllerRemoveFavoriteResult as el, type ImageItemDto as em, type InventoryApproveAdjustmentResult as en, type InventoryCheckB2BAvailabilityResult as eo, type InventoryCompleteAssemblyResult as ep, type InventoryCreateAssemblyResult as eq, type InventoryFixIntegrityResult as er, type InventoryGetAdjustmentsResult as es, type InventoryGetInventoryResult as et, type InventoryGetLeadTimeResult as eu, type InventoryGetWasteAnalysisResult as ev, type InventoryMergeBatchesResult as ew, type InventoryModule as ex, type InventoryQuickStockInquiryResult as ey, type InventoryRejectAdjustmentResult as ez, type CreateExpenseDto as f, type PublicServicesGetAvailabilityResult as f$, type LoyaltyValidateVoucherResult as f0, type ManualBatchSelectionDto as f1, type MemberDepartmentDto as f2, MemberResponseDtoMembershipStatus as f3, MemberResponseDtoRole as f4, MemberResponseDtoStatus as f5, type MemberRoleDto as f6, type MembersControllerAdminCheckOutResult as f7, type MembersControllerCreateMemberResult as f8, type MembersControllerDeleteMemberResult as f9, type POSRegisterPettyCashResult as fA, type POSSyncResult as fB, type PaginationMetaDto as fC, type PaymentsControllerHandleStkCallbackResult as fD, type PettyCashControllerCreateFundResult as fE, type PettyCashControllerGetFundResult as fF, type PettyCashControllerGetFundTransactionsResult as fG, type PettyCashControllerGetFundsResult as fH, type PettyCashControllerTopUpFundResult as fI, type ProductCategoryResponseDto as fJ, type ProductMetaDto as fK, type ProductResponseDtoBrand as fL, type ProductResponseDtoDescription as fM, type ProductResponseDtoDetailedDescription as fN, type ProductResponseDtoPointsOnPurchase as fO, type ProductResponseDtoRating as fP, type ProductResponseDtoRetailPrice as fQ, type ProductResponseDtoSlug as fR, type ProductReviewCustomerDto as fS, type ProductReviewResponseDtoComment as fT, type ProductVariantResponseDto as fU, type ProductVariantResponseDtoRetailPrice as fV, type PublicInvoiceControllerDownloadInvoiceByTransactionResult as fW, type PublicInvoiceControllerDownloadInvoiceResult as fX, type PublicInvoiceControllerDownloadReceiptResult as fY, type PublicInvoiceControllerGeneratePublicLinkResult as fZ, type PublicServicesCreatePublicBookingResult as f_, type MembersControllerGetMemberActivityResult as fa, type MembersControllerGetMemberResult as fb, MembersControllerGetMembersMembershipStatus as fc, type MembersControllerGetMembersResult as fd, MembersControllerGetMembersRole as fe, MembersControllerGetMembersSortOrder as ff, type MembersControllerUpdateMemberResult as fg, type MembersControllerUpdateStatusResult as fh, type MembersModule as fi, type MethodsWithOrgSlug as fj, type OmitOrgSlug as fk, type OrderItemDto as fl, type OrdersConvertQuoteToOrderResult as fm, type OrdersCreateOrderResult as fn, type OrdersGetOrdersResult as fo, type OrdersModule as fp, type OrdersRequestB2BQuoteResult as fq, type OrdersUpdateStatusResult as fr, type POSGetMeResult as fs, type POSGetPettyCashFundsResult as ft, type POSGetPettyCashTransactionsResult as fu, type POSGetTransactionsResult as fv, type POSLoginResult as fw, type POSModule as fx, type POSProcessSaleResult as fy, type POSProvisionResult as fz, type CreatePettyCashFundDto as g, type ServicesUpdateResourceResult as g$, type PublicServicesGetCategoriesResult as g0, type PublicServicesGetServiceResult as g1, type PublicServicesListServicesResult as g2, type PublicServicesModule as g3, type PublicServicesRequestOtpResult as g4, type PublicServicesVerifyOtpResult as g5, type RawAPI as g6, type ReceivePurchaseItemDto as g7, type ReceiveTransferItemDto as g8, ReconcilePodDtoOutcome as g9, type ServicesAddBreakResult as gA, type ServicesCompleteBookingResult as gB, type ServicesCreateBookingResult as gC, type ServicesCreateCategoryResult as gD, type ServicesCreateResourceResult as gE, type ServicesCreateServiceResult as gF, type ServicesCreateShiftResult as gG, type ServicesDeleteCategoryResult as gH, type ServicesDeleteResourceResult as gI, type ServicesDeleteServiceResult as gJ, type ServicesGetBookingResult as gK, type ServicesGetBookingsResult as gL, type ServicesGetCategoriesResult as gM, type ServicesGetCurrentMemberShiftsResult as gN, type ServicesGetFunnelResult as gO, type ServicesGetPerformanceResult as gP, type ServicesGetResourcesResult as gQ, type ServicesGetServiceResult as gR, type ServicesGetServicesResult as gS, type ServicesGetShiftsResult as gT, type ServicesGetStaffShiftsResult as gU, type ServicesGetUtilizationResult as gV, type ServicesModule as gW, type ServicesRegisterCustomerAppResult as gX, ServicesUpdateBookingStatusBodyStatus as gY, type ServicesUpdateBookingStatusResult as gZ, type ServicesUpdateCategoryResult as g_, type ReconciliationItemDto as ga, type RegisterCustomerDtoMetadata as gb, RegisterPettyCashDtoPaymentMethod as gc, ReviewPriceChangeDtoStatus as gd, type RoleManagementControllerAssignRolesResult as ge, type RoleManagementControllerCreateCustomRoleResult as gf, type RoleManagementControllerCreatePermissionSetResult as gg, type RoleManagementControllerCreateRoleGroupResult as gh, type RoleManagementControllerDeleteCustomRoleResult as gi, type RoleManagementControllerGetCustomRolesResult as gj, RoleManagementControllerGetCustomRolesSortOrder as gk, type RoleManagementControllerGetPermissionSetsResult as gl, type RoleManagementControllerGetRoleGroupsResult as gm, type RoleManagementControllerRemoveRolesResult as gn, type RoleManagementControllerUpdateCustomRoleResult as go, type SDKModule as gp, type SaleItemDto as gq, type SalePaymentDto as gr, type SaleServiceItemDto as gs, type SeoMetadataDto as gt, type ServiceBookingItemDto as gu, type ServiceCatalogResponseDtoDescription as gv, type ServiceCatalogResponseDtoEstimatedDuration as gw, type ServiceCatalogResponseDtoSlug as gx, type ServiceCategoryResponseDto as gy, type ServiceMaterialDto as gz, type CreateUtilityAccountDto as h, type WebhooksDeleteResult as h$, type ServicesUpdateServiceResult as h0, type ShipTransferItemDto as h1, type StandalonePosControllerActivateDeviceResult as h2, type StandalonePosControllerCreateSetupKeyResult as h3, type StandalonePosControllerLinkOrganizationResult as h4, type StandalonePosControllerValidateKeyResult as h5, type StockingAdjustPartnerWalletResult as h6, type StockingCreatePartnerResult as h7, type StockingCreatePurchaseResult as h8, type StockingCreateTransferResult as h9, type StrapiRegisterCustomerResult as hA, type StrapiTriggerSyncResult as hB, type StrapiUpdateConnectionResult as hC, type TerminalMembersControllerLoginResult as hD, type TokenResponseDto as hE, TriggerSyncDtoDirection as hF, TriggerSyncDtoSyncTypesItem as hG, type UnitsGetUnitsResult as hH, type UpdateCrmRecordDtoData as hI, type UpdateCustomerDtoMetadata as hJ, type UpdateDepartmentDtoSettings as hK, UpdateIntegrationDefinitionDtoAuthType as hL, UpdateIntegrationDefinitionDtoCategory as hM, UpdateMemberDtoMembershipStatus as hN, UpdateMemberDtoRole as hO, UpdateMemberDtoStatus as hP, UpdatePartnerDtoBenefitType as hQ, UpdatePartnerDtoReconciliationPolicy as hR, UpdateServiceDtoPricingModel as hS, UpdateStrapiConnectionDtoEnabledSyncTypesItem as hT, type UpdateStrapiConnectionDtoLocationMap as hU, UpdateStrapiConnectionDtoSyncDirection as hV, type UserSummaryDto as hW, type UtilityAccountControllerCreateAccountResult as hX, type UtilityAccountControllerGetAccountResult as hY, type UtilityAccountControllerGetAccountsResult as hZ, type WebhooksCreateResult as h_, 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 AccountingGetBalanceSheetParams as i, type WebhooksListResult as i0, type WindmillCallbackControllerHandleApprovalCallbackResult as i1, type WindmillCallbackControllerHandleBakeryDisposalCallbackResult as i2, type WindmillCallbackControllerHandleCallbackResult as i3, type WindmillCallbackControllerHandleOutcomeCallbackResult as i4, accountingMapping as i5, adminMapping as i6, authMapping as i7, buildModule as i8, catalogMapping as i9, crmMapping as ia, getJwtExpiry as ib, inventoryMapping as ic, loyaltyMapping as id, membersMapping as ie, methodsWithOrgSlugSet as ig, ordersMapping as ih, posMapping as ii, publicServicesMapping as ij, servicesMapping as ik, 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 };