@scryme/sdk 9.66.0 → 9.67.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -14,7 +14,7 @@ For the complete, interactive documentation, live sandbox playgrounds, and detai
14
14
  - **Auth**: Token exchange (Client Credentials Flow) & OAuth2 proxy support.
15
15
  - **Inventory**: Stock queries, multi-branch listings, batch tracking (trace, split, merge), B2B availability checks, and integrity verify/fix logic.
16
16
  - **Orders & B2B**: Quote requests, quote-to-order conversions, and order management.
17
- - **CRM & Customers**: Customer registration (Zitadel), custom CRM definitions, custom fields, relationships, associations, notes, and activity timelines.
17
+ - **CRM & Customers**: Customer registration, custom CRM definitions, custom fields, relationships, associations, notes, and activity timelines.
18
18
  - **Loyalty**: Loyalty status (tiers & points), voucher validation, and reward redemption.
19
19
  - **Finance**: Corporate expenses, utility account tracking, and petty cash fund management (allocations, transactions, top-ups).
20
20
  - **POS**: POS device provisioning, staff login, and petty cash expense logging.
@@ -2706,18 +2706,6 @@ interface ProvisionResponseDto {
2706
2706
  clientSecret: string;
2707
2707
  }
2708
2708
 
2709
- /**
2710
- * Generated by orval v8.23.0 🍺
2711
- * Do not edit manually.
2712
- * Scryme V3 API
2713
- * The Scryme V3 API documentation - Scalable & Enterprise Ready
2714
- * OpenAPI spec version: 3.0
2715
- */
2716
- interface ProvisionZitadelDto {
2717
- redirectUris?: string[];
2718
- postLogoutRedirectUris?: string[];
2719
- }
2720
-
2721
2709
  /**
2722
2710
  * Generated by orval v8.23.0 🍺
2723
2711
  * Do not edit manually.
@@ -2946,7 +2934,6 @@ type RegisterCustomerDtoMetadata = {
2946
2934
  */
2947
2935
 
2948
2936
  interface RegisterCustomerDto {
2949
- zitadelUserId?: string;
2950
2937
  name: string;
2951
2938
  email: string;
2952
2939
  password?: string;
@@ -3653,7 +3640,6 @@ type UpdateCustomerDtoMetadata = {
3653
3640
  */
3654
3641
 
3655
3642
  interface UpdateCustomerDto {
3656
- zitadelUserId?: string;
3657
3643
  name?: string;
3658
3644
  email?: string;
3659
3645
  password?: string;
@@ -4287,6 +4273,7 @@ declare const getScrymeV3API: (axiosInstance?: AxiosInstance) => {
4287
4273
  windmillCallbackControllerHandleOutcomeCallback: (options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
4288
4274
  catalogGetProducts: (orgSlug: string, params?: CatalogGetProductsParams, options?: AxiosRequestConfig) => Promise<AxiosResponse<ProductResponseDto[]>>;
4289
4275
  catalogCreateProduct: (orgSlug: string, createProductDto: CreateProductDto, options?: AxiosRequestConfig) => Promise<AxiosResponse<ProductResponseDto>>;
4276
+ catalogGetProduct: (orgSlug: string, idOrSlug: string, options?: AxiosRequestConfig) => Promise<AxiosResponse<ProductResponseDto>>;
4290
4277
  catalogGetServices: (orgSlug: string, params?: CatalogGetServicesParams, options?: AxiosRequestConfig) => Promise<AxiosResponse<ServiceCatalogResponseDto[]>>;
4291
4278
  catalogUpdateProduct: (orgSlug: string, id: string, updateProductDto: UpdateProductDto, options?: AxiosRequestConfig) => Promise<AxiosResponse<ProductResponseDto>>;
4292
4279
  catalogUpdateSupplierVariant: (orgSlug: string, supplierId: string, variantId: string, updateSupplierProductDto: UpdateSupplierProductDto, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
@@ -4326,10 +4313,10 @@ declare const getScrymeV3API: (axiosInstance?: AxiosInstance) => {
4326
4313
  publicServicesRequestOtp: (orgSlug: string, requestOtpDto: RequestOtpDto, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
4327
4314
  publicServicesVerifyOtp: (orgSlug: string, verifyOtpDto: VerifyOtpDto, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
4328
4315
  publicServicesCreatePublicBooking: (orgSlug: string, publicBookingDto: PublicBookingDto, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
4329
- customersProvisionZitadel: (orgSlug: string, provisionZitadelDto: ProvisionZitadelDto, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
4330
4316
  customersGetCustomers: (orgSlug: string, params?: CustomersGetCustomersParams, options?: AxiosRequestConfig) => Promise<AxiosResponse<CustomerResponseDto[]>>;
4331
4317
  customersRegister: (orgSlug: string, registerCustomerDto: RegisterCustomerDto, options?: AxiosRequestConfig) => Promise<AxiosResponse<CustomerResponseDto>>;
4332
4318
  customersLogin: (orgSlug: string, customerLoginDto: CustomerLoginDto, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
4319
+ customersRefreshSession: (orgSlug: string, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
4333
4320
  customersGetCurrentSession: (orgSlug: string, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
4334
4321
  customersGetSessions: (orgSlug: string, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
4335
4322
  customersRevokeAllSessions: (orgSlug: string, params: CustomersRevokeAllSessionsParams, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
@@ -4553,6 +4540,7 @@ type WindmillCallbackControllerHandleBakeryDisposalCallbackResult = AxiosRespons
4553
4540
  type WindmillCallbackControllerHandleOutcomeCallbackResult = AxiosResponse<void>;
4554
4541
  type CatalogGetProductsResult = AxiosResponse<ProductResponseDto[]>;
4555
4542
  type CatalogCreateProductResult = AxiosResponse<ProductResponseDto>;
4543
+ type CatalogGetProductResult = AxiosResponse<ProductResponseDto>;
4556
4544
  type CatalogGetServicesResult = AxiosResponse<ServiceCatalogResponseDto[]>;
4557
4545
  type CatalogUpdateProductResult = AxiosResponse<ProductResponseDto>;
4558
4546
  type CatalogUpdateSupplierVariantResult = AxiosResponse<void>;
@@ -4592,10 +4580,10 @@ type PublicServicesGetAvailabilityResult = AxiosResponse<void>;
4592
4580
  type PublicServicesRequestOtpResult = AxiosResponse<void>;
4593
4581
  type PublicServicesVerifyOtpResult = AxiosResponse<void>;
4594
4582
  type PublicServicesCreatePublicBookingResult = AxiosResponse<void>;
4595
- type CustomersProvisionZitadelResult = AxiosResponse<void>;
4596
4583
  type CustomersGetCustomersResult = AxiosResponse<CustomerResponseDto[]>;
4597
4584
  type CustomersRegisterResult = AxiosResponse<CustomerResponseDto>;
4598
4585
  type CustomersLoginResult = AxiosResponse<void>;
4586
+ type CustomersRefreshSessionResult = AxiosResponse<void>;
4599
4587
  type CustomersGetCurrentSessionResult = AxiosResponse<void>;
4600
4588
  type CustomersGetSessionsResult = AxiosResponse<void>;
4601
4589
  type CustomersRevokeAllSessionsResult = AxiosResponse<void>;
@@ -4733,22 +4721,64 @@ type AnalyticsControllerGetDashboardAnalyticsResult = AxiosResponse<void>;
4733
4721
  type AnalyticsControllerGetResourceUtilizationResult = AxiosResponse<void>;
4734
4722
 
4735
4723
  type RawAPI = ReturnType<typeof getScrymeV3API>;
4724
+ /**
4725
+ * Represents a customer login session tracked in the backend store.
4726
+ */
4736
4727
  interface CustomerSessionDto {
4728
+ /**
4729
+ * Unique session identifier.
4730
+ */
4737
4731
  id: string;
4732
+ /**
4733
+ * Database identifier of the customer this session belongs to.
4734
+ */
4738
4735
  customerId: string;
4736
+ /**
4737
+ * Active authentication token associated with the session.
4738
+ */
4739
4739
  token: string;
4740
+ /**
4741
+ * User agent of the client device that initiated the session.
4742
+ */
4740
4743
  userAgent?: string;
4744
+ /**
4745
+ * IP address of the client device that initiated the session.
4746
+ */
4741
4747
  ipAddress?: string;
4748
+ /**
4749
+ * ISO string representation of the session expiration timestamp.
4750
+ */
4742
4751
  expiresAt: string;
4752
+ /**
4753
+ * ISO string representation of the session creation timestamp.
4754
+ */
4743
4755
  createdAt: string;
4756
+ /**
4757
+ * ISO string representation of the session last update timestamp.
4758
+ */
4744
4759
  updatedAt: string;
4745
4760
  }
4761
+ /**
4762
+ * Standard envelope returned upon successful customer registration or login.
4763
+ *
4764
+ * @template TUser Custom User profile type. Defaults to CustomerResponseDto.
4765
+ * @template TSession Custom session tracking type. Defaults to CustomerSessionDto.
4766
+ */
4746
4767
  interface CustomerAuthResponseDto<TUser = CustomerResponseDto, TSession = CustomerSessionDto> {
4768
+ /**
4769
+ * Newly-issued local High-Performance Customer JWT bearer token.
4770
+ */
4747
4771
  token: string;
4772
+ /**
4773
+ * Active session details.
4774
+ */
4748
4775
  session?: TSession;
4776
+ /**
4777
+ * Full customer profile and metadata details.
4778
+ */
4749
4779
  user?: TUser;
4750
4780
  }
4751
- type MethodsWithOrgSlug = "publicServicesListServices" | "publicServicesGetCategories" | "publicServicesGetService" | "publicServicesGetAvailability" | "publicServicesRequestOtp" | "publicServicesVerifyOtp" | "publicServicesCreatePublicBooking" | "inventoryVerifyIntegrity" | "inventoryFixIntegrity" | "inventoryGetInventory" | "inventoryTraceBatch" | "inventorySplitBatch" | "inventoryMergeBatches" | "inventoryCreateAssembly" | "inventoryCompleteAssembly" | "inventoryRequestAdjustment" | "inventoryGetAdjustments" | "inventoryApproveAdjustment" | "inventoryRejectAdjustment" | "inventoryGetLeadTime" | "inventoryGetWasteAnalysis" | "inventoryCheckB2BAvailability" | "inventoryUnpackBatch" | "inventoryScanUnpackBatch" | "inventoryQuickStockInquiry" | "accountingInitialize" | "accountingGetProfitLoss" | "accountingGetBalanceSheet" | "accountingGetCashFlow" | "accountingGetTaxSummary" | "webhooksCreate" | "webhooksList" | "webhooksDelete" | "catalogGetProducts" | "catalogCreateProduct" | "catalogGetServices" | "catalogUpdateProduct" | "catalogUpdateSupplierVariant" | "catalogGetPriceChangeRequests" | "catalogReviewPriceChangeRequest" | "servicesCreateCategory" | "servicesGetCategories" | "servicesUpdateCategory" | "servicesDeleteCategory" | "servicesCreateService" | "servicesGetServices" | "servicesGetCurrentMemberShifts" | "servicesGetShifts" | "servicesGetService" | "servicesUpdateService" | "servicesDeleteService" | "servicesCreateResource" | "servicesGetResources" | "servicesUpdateResource" | "servicesDeleteResource" | "servicesCreateBooking" | "servicesGetBookings" | "servicesGetBooking" | "servicesUpdateBookingStatus" | "servicesCompleteBooking" | "servicesCreateShift" | "servicesGetStaffShifts" | "servicesAddBreak" | "servicesRegisterCustomerApp" | "servicesGetUtilization" | "servicesGetPerformance" | "servicesGetFunnel" | "customersProvisionZitadel" | "customersGetCustomers" | "customersRegister" | "customersUpdate" | "customersGetCustomerById" | "customersDelete" | "customersGetAddresses" | "customersAddAddress" | "customersGetCurrentSession" | "businessAccountControllerCreate" | "businessAccountControllerGetOne" | "crmControllerCreateRecord" | "crmControllerGetRecord" | "crmControllerUpdateRecord" | "crmControllerCreateNote" | "crmControllerGetRecordNotes" | "crmControllerCreateActivity" | "crmControllerGetTimeline" | "crmControllerCreateObject" | "crmControllerListObjects" | "crmControllerCreateField" | "crmControllerListFields" | "crmControllerCreateRelationship" | "crmControllerListRelationships" | "crmControllerCreateAssociation" | "crmControllerListRecordAssociations" | "loyaltyRedeemReward" | "loyaltyGetCustomerStatus" | "loyaltyValidateVoucher" | "ordersCreateOrder" | "ordersGetOrders" | "ordersUpdateStatus" | "ordersRequestB2BQuote" | "ordersConvertQuoteToOrder" | "paymentsControllerHandleStkCallback" | "pOSProvision" | "pOSLogin" | "pOSGetMe" | "pOSProcessSale" | "pOSSync" | "pOSGetTransactions" | "pOSRegisterPettyCash" | "pOSGetPettyCashFunds" | "pOSGetPettyCashTransactions" | "membersControllerGetMembers" | "membersControllerCreateMember" | "membersControllerGetMember" | "membersControllerUpdateMember" | "membersControllerDeleteMember" | "membersControllerGetMemberActivity" | "membersControllerUpdateStatus" | "membersControllerAdminCheckOut" | "invitationsList" | "invitationsCreate" | "invitationsRevoke" | "invitationsAccept" | "roleManagementControllerGetCustomRoles" | "roleManagementControllerCreateCustomRole" | "roleManagementControllerUpdateCustomRole" | "roleManagementControllerDeleteCustomRole" | "roleManagementControllerGetPermissionSets" | "roleManagementControllerCreatePermissionSet" | "roleManagementControllerGetRoleGroups" | "roleManagementControllerCreateRoleGroup" | "roleManagementControllerAssignRoles" | "roleManagementControllerRemoveRoles" | "departmentsList" | "departmentsCreate" | "departmentsGet" | "departmentsUpdate" | "departmentsDelete" | "departmentsAddMember" | "departmentsRemoveMember" | "attendanceControllerGetLogs" | "attendanceControllerCheckIn" | "attendanceControllerCheckOut" | "attendanceControllerGetMyStatus" | "attendanceControllerGetStatus" | "announcementControllerBroadcastAnnouncement" | "cartControllerGetCart" | "cartControllerClearCart" | "cartControllerAddToCart" | "cartControllerRemoveFromCart" | "favoritesControllerGetFavorites" | "favoritesControllerAddFavorite" | "favoritesControllerRemoveFavorite" | "stockingGetPurchases" | "stockingCreatePurchase" | "stockingReceivePurchase" | "stockingGetTransfers" | "stockingCreateTransfer" | "stockingShipTransfer" | "stockingReceiveTransfer" | "stockingGetRequests" | "stockingGetPendingDispatch" | "stockingDispatchOrders" | "stockingGetActiveDeliveries" | "stockingReconcilePod" | "stockingGetPhysicalReconciliations" | "stockingSubmitPhysicalReconciliation" | "stockingGetReconciliationReport" | "stockingGetPartners" | "stockingCreatePartner" | "stockingGetPartner" | "stockingUpdatePartner" | "stockingAdjustPartnerWallet" | "b2BGetCatalog" | "b2BGetInvoices" | "b2BGetOrders" | "b2BCreateOrder" | "b2BCreateQuote" | "crmIntegrationsGetAuthUrl" | "crmIntegrationsHandleCallback" | "crmIntegrationsHandleWebhook" | "crmIntegrationsReplyToActivity" | "unitsGetUnits" | "strapiCreateConnection" | "strapiListConnections" | "strapiGetConnection" | "strapiUpdateConnection" | "strapiDeleteConnection" | "strapiTriggerSync" | "strapiEnqueueSync" | "strapiGetWebhookLogs" | "strapiGetSyncLogs" | "strapiExchangeCustomerToken" | "strapiRegisterCustomer" | "analyticsControllerGetDashboardAnalytics" | "analyticsControllerGetResourceUtilization";
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";
4752
4782
  declare const methodsWithOrgSlugSet: Set<string>;
4753
4783
  type OmitOrgSlug<MethodName extends keyof RawAPI, T> = MethodName extends MethodsWithOrgSlug ? (T extends (orgSlug: string, ...args: infer A) => infer R ? (...args: A) => R : T) : T;
4754
4784
  type SDKModule<Mapping> = {
@@ -4756,6 +4786,7 @@ type SDKModule<Mapping> = {
4756
4786
  };
4757
4787
  declare const catalogMapping: {
4758
4788
  readonly getProducts: "catalogGetProducts";
4789
+ readonly getProduct: "catalogGetProduct";
4759
4790
  readonly createProduct: "catalogCreateProduct";
4760
4791
  readonly getServices: "catalogGetServices";
4761
4792
  readonly updateProduct: "catalogUpdateProduct";
@@ -5059,7 +5090,6 @@ declare const adminMapping: {
5059
5090
  readonly handleWindmillApprovalCallback: "windmillCallbackControllerHandleApprovalCallback";
5060
5091
  readonly handleWindmillBakeryDisposalCallback: "windmillCallbackControllerHandleBakeryDisposalCallback";
5061
5092
  readonly handleWindmillOutcomeCallback: "windmillCallbackControllerHandleOutcomeCallback";
5062
- readonly provisionZitadel: "customersProvisionZitadel";
5063
5093
  readonly getCustomers: "customersGetCustomers";
5064
5094
  readonly registerCustomer: "customersRegister";
5065
5095
  readonly updateCustomer: "customersUpdate";
@@ -5072,11 +5102,19 @@ declare const adminMapping: {
5072
5102
  readonly getDashboardAnalytics: "analyticsControllerGetDashboardAnalytics";
5073
5103
  readonly getResourceUtilization: "analyticsControllerGetResourceUtilization";
5074
5104
  };
5075
- interface CatalogModule<TProduct = ProductResponseDto, TService = ServiceCatalogResponseDto> extends Omit<SDKModule<typeof catalogMapping>, "getProducts" | "createProduct" | "getServices" | "updateProduct"> {
5105
+ interface CatalogModule<TProduct = ProductResponseDto, TService = ServiceCatalogResponseDto> extends Omit<SDKModule<typeof catalogMapping>, "getProducts" | "createProduct" | "getServices" | "updateProduct" | "getProduct" | "getService"> {
5076
5106
  getProducts<T = TProduct>(params?: CatalogGetProductsParams, options?: AxiosRequestConfig): Promise<AxiosResponse<T[]>>;
5077
5107
  createProduct<T = TProduct>(createProductDto: CreateProductDto, options?: AxiosRequestConfig): Promise<AxiosResponse<T>>;
5078
5108
  getServices<T = TService>(params?: CatalogGetServicesParams, options?: AxiosRequestConfig): Promise<AxiosResponse<T[]>>;
5079
5109
  updateProduct<T = TProduct>(id: string, updateProductDto: UpdateProductDto, options?: AxiosRequestConfig): Promise<AxiosResponse<T>>;
5110
+ getProduct<T = TProduct>(idOrSlug: string | {
5111
+ id?: string;
5112
+ slug?: string;
5113
+ }, options?: AxiosRequestConfig): Promise<AxiosResponse<T>>;
5114
+ getService<T = TService>(idOrSlug: string | {
5115
+ id?: string;
5116
+ slug?: string;
5117
+ }, options?: AxiosRequestConfig): Promise<AxiosResponse<T>>;
5080
5118
  }
5081
5119
  type AuthModule = SDKModule<typeof authMapping>;
5082
5120
  type InventoryModule = SDKModule<typeof inventoryMapping>;
@@ -5092,4 +5130,4 @@ type ServicesModule = SDKModule<typeof servicesMapping>;
5092
5130
  declare function buildModule<Mapping extends Record<string, keyof RawAPI>>(api: RawAPI, orgSlug: string, mapping: Mapping): SDKModule<Mapping>;
5093
5131
  declare function getJwtExpiry(token: string): number | null;
5094
5132
 
5095
- export { type UpdateServiceResourceDto as $, type AccountingGetProfitLossParams as A, type BanUserDto as B, type CheckB2BAvailabilityDto as C, type DefineTierDto as D, type ExpenseControllerGetExpensesParams as E, type CatalogGetProductsParams as F, type ProductResponseDto as G, type CreateProductDto as H, type InventoryFixIntegrityParams as I, type CatalogGetServicesParams as J, type ServiceCatalogResponseDto as K, type UpdateProductDto as L, type UpdateSupplierProductDto as M, type CatalogGetPriceChangeRequestsParams as N, type ReviewPriceChangeDto as O, type PublicInvoiceControllerDownloadInvoiceParams as P, type CreateServiceCategoryDto as Q, type RecordCustomPaymentDto as R, type SetGlobalSettingDto as S, type TopUpPettyCashFundDto as T, type UpdateInvoiceDto as U, type UpdateServiceCategoryDto as V, type WebhookResponseDto as W, type CreateServiceDto as X, type ServicesGetShiftsParams as Y, type UpdateServiceDto as Z, type CreateServiceResourceDto as _, type InventoryGetInventoryParams as a, type DepartmentsListParams as a$, type CreateBookingDto as a0, type ServicesUpdateBookingStatusBody as a1, type CompleteBookingDto as a2, type ServicesCreateShiftBody as a3, type ServicesAddBreakBody as a4, type ServicesRegisterCustomerAppBody as a5, type ServicesGetUtilizationParams as a6, type ServicesGetPerformanceParams as a7, type ServicesGetFunnelParams as a8, type PublicServicesGetAvailabilityParams as a9, type OrderResponseDto as aA, type OrdersGetOrdersParams as aB, type UpdateOrderStatusDto as aC, type RequestB2BQuoteDto as aD, type ProvisionDeviceDto as aE, type ProvisionResponseDto as aF, type PosLoginDto as aG, type PosLoginResponseDto as aH, type ProcessSaleDto as aI, type RegisterPettyCashDto as aJ, type POSGetPettyCashTransactionsParams as aK, type MembersControllerGetMembersParams as aL, type MemberResponseDto as aM, type CreateMemberDto as aN, type UpdateMemberDto as aO, type CheckOutDto as aP, type TerminalLoginDto as aQ, type TerminalLoginResponseDto as aR, type InvitationsListParams as aS, type InvitationResponseDto as aT, type CreateInvitationDto as aU, type AcceptInvitationDto as aV, type RoleManagementControllerGetCustomRolesParams as aW, type CreateCustomRoleDto as aX, type UpdateCustomRoleDto as aY, type CreatePermissionSetDto as aZ, type CreateRoleGroupDto as a_, type RequestOtpDto as aa, type VerifyOtpDto as ab, type PublicBookingDto as ac, type ProvisionZitadelDto as ad, type CustomersGetCustomersParams as ae, type CustomerResponseDto as af, type RegisterCustomerDto as ag, type CustomerLoginDto as ah, type CustomersRevokeAllSessionsParams as ai, type UpdateCustomerDto as aj, type AddressDto as ak, type CreateBusinessAccountDto as al, type CreateCrmRecordDto as am, type CrmRecordResponseDto as an, type UpdateCrmRecordDto as ao, type CreateCrmNoteDto as ap, type CrmNoteResponseDto as aq, type CreateCrmActivityDto as ar, type CreateCrmObjectDto as as, type CreateCrmFieldDto as at, type CreateCrmRelationshipDto as au, type CreateCrmAssociationDto as av, type RedeemRewardDto as aw, type LoyaltyStatusResponseDto as ax, type ValidateVoucherDto as ay, type CreateOrderDto as az, type InventoryResponseDto as b, type AdminControllerGetStatsResult as b$, type DepartmentResponseDto as b0, type CreateDepartmentDto as b1, type UpdateDepartmentDto as b2, type AddDepartmentMemberDto as b3, type AttendanceControllerGetLogsParams as b4, type CheckInDto as b5, type AnnouncementDto as b6, type CartControllerGetCartParams as b7, type CartResponseDto as b8, type CartControllerClearCartParams as b9, type CreateB2BOrderDto as bA, type B2BOrderResponseDto as bB, type CrmIntegrationsHandleCallbackParams as bC, type UnitsGetUnitsParams as bD, type CreateStrapiConnectionDto as bE, type StrapiConnectionResponseDto as bF, type UpdateStrapiConnectionDto as bG, type TriggerSyncDto as bH, type AnalyticsControllerGetResourceUtilizationParams as bI, type AccountingGetBalanceSheetResult as bJ, type AccountingGetCashFlowResult as bK, type AccountingGetProfitLossResult as bL, type AccountingGetTaxSummaryResult as bM, type AccountingInitializeResult as bN, type AccountingModule as bO, AddDepartmentMemberDtoRole as bP, type AddToCartDtoBookingDetails as bQ, type AdminControllerBanUserResult as bR, type AdminControllerCreateIntegrationDefinitionResult as bS, type AdminControllerCreateOrganizationResult as bT, type AdminControllerDefineTierResult as bU, type AdminControllerDeleteGlobalSettingResult as bV, type AdminControllerDeleteIntegrationDefinitionResult as bW, type AdminControllerDeleteOrganizationResult as bX, type AdminControllerDeleteTierResult as bY, type AdminControllerGetOrganizationDetailsResult as bZ, type AdminControllerGetOrganizationSubscriptionResult as b_, type AddToCartDto as ba, type RemoveFromCartDto as bb, type FavoriteResponseDto as bc, type FavoriteDto as bd, type StockingGetPurchasesParams as be, type CreatePurchaseDto as bf, type ReceivePurchaseDto as bg, type StockingGetTransfersParams as bh, type CreateTransferDto as bi, type ShipTransferDto as bj, type ReceiveTransferDto as bk, type StockingGetRequestsParams as bl, type StockingGetPendingDispatchParams as bm, type DispatchOrderDto as bn, type StockingGetActiveDeliveriesParams as bo, type ReconcilePodDto as bp, type StockingGetPhysicalReconciliationsParams as bq, type SubmitReconciliationDto as br, type CreatePartnerDto as bs, type UpdatePartnerDto as bt, type PartnerWalletActionDto as bu, type CreateSetupKeyDto as bv, type ActivateDeviceDto as bw, type LinkOrganizationDto as bx, type B2BGetCatalogParams as by, type PaginatedB2BCatalogDto as bz, type InventoryGetAdjustmentsParams as c, type CmsCustomFieldsDtoPublishedAt as c$, type AdminControllerListActiveOrganizationIntegrationsResult as c0, type AdminControllerListConnectedAppsResult as c1, type AdminControllerListGlobalSettingsResult as c2, type AdminControllerListIntegrationDefinitionsResult as c3, type AdminControllerListMembersResult as c4, type AdminControllerListOrganizationsResult as c5, type AdminControllerListSystemLogsResult as c6, type AdminControllerListSystemPaymentsResult as c7, type AdminControllerListTiersResult as c8, type AdminControllerListUsersResult as c9, type B2BOrderItemDto as cA, type B2BQuoteItemDto as cB, type B2BVariantDto as cC, type B2BVariantStockDto as cD, type BatchReceiptDto as cE, type BatchReceiptDtoQcResults as cF, type BusinessAccountControllerCreateResult as cG, type BusinessAccountControllerGetOneResult as cH, type CRMModule as cI, type CartControllerAddToCartResult as cJ, type CartControllerClearCartResult as cK, type CartControllerGetCartResult as cL, type CartControllerRemoveFromCartResult as cM, type CartItemDto as cN, type CartItemDtoBookingDetails as cO, type CatalogCreateProductResult as cP, type CatalogGetPriceChangeRequestsResult as cQ, type CatalogGetProductsResult as cR, type CatalogGetServicesResult as cS, type CatalogModule as cT, type CatalogReviewPriceChangeRequestResult as cU, type CatalogUpdateProductResult as cV, type CatalogUpdateSupplierVariantResult as cW, type CmsCustomFieldsDto as cX, type CmsCustomFieldsDtoArchivedAt as cY, type CmsCustomFieldsDtoCustomAttributes as cZ, CmsCustomFieldsDtoPublishStatus as c_, type AdminControllerRecordCustomPaymentResult as ca, type AdminControllerSetGlobalSettingResult as cb, type AdminControllerUnbanUserResult as cc, type AdminControllerUpdateIntegrationDefinitionResult as cd, type AdminControllerUpdateOrganizationResult as ce, type AdminControllerUpdateOrganizationSubscriptionResult as cf, type AdminModule as cg, type AnalyticsControllerGetDashboardAnalyticsResult as ch, type AnalyticsControllerGetResourceUtilizationResult as ci, type AnnouncementControllerBroadcastAnnouncementResult as cj, type AttendanceControllerCheckInResult as ck, type AttendanceControllerCheckOutResult as cl, type AttendanceControllerGetLogsResult as cm, AttendanceControllerGetLogsSortOrder as cn, type AttendanceControllerGetMyStatusResult as co, type AttendanceControllerGetStatusResult as cp, type AuthControllerHandleOAuth2Result as cq, type AuthExchangeToken201Meta as cr, type AuthExchangeTokenResult as cs, type AuthModule as ct, type B2BCatalogProductDto as cu, type B2BCreateOrderResult as cv, type B2BCreateQuoteResult as cw, type B2BGetCatalogResult as cx, type B2BGetInvoicesResult as cy, type B2BGetOrdersResult as cz, type InventoryGetLeadTimeParams as d, type DepartmentsDeleteResult as d$, type CreateBookingDtoCustomFields as d0, type CreateCrmActivityDtoMetadata as d1, CreateCrmFieldDtoType as d2, type CreateCrmRecordDtoData as d3, CreateCrmRelationshipDtoType as d4, type CreateDepartmentDtoSettings as d5, CreateExpenseDtoPaymentMethod as d6, CreateIntegrationDefinitionDtoAuthType as d7, CreateIntegrationDefinitionDtoCategory as d8, CreateInvitationDtoRole as d9, type CrmControllerListRelationshipsResult as dA, type CrmControllerUpdateRecordResult as dB, type CrmIntegrationsGetAuthUrlResult as dC, type CrmIntegrationsHandleCallbackResult as dD, type CrmIntegrationsHandleWebhookResult as dE, type CrmIntegrationsReplyToActivityResult as dF, type CrmNoteResponseDtoCreatedById as dG, type CrmRecordResponseDtoData as dH, type CrmRecordResponseDtoOwnerId as dI, type CustomerAuthResponseDto as dJ, type CustomerSessionDto as dK, type CustomersAddAddressResult as dL, type CustomersDeleteResult as dM, type CustomersGetAddressesResult as dN, type CustomersGetCurrentSessionResult as dO, type CustomersGetCustomerByIdResult as dP, type CustomersGetCustomersResult as dQ, type CustomersGetSessionsResult as dR, type CustomersLoginResult as dS, type CustomersProvisionZitadelResult as dT, type CustomersRegisterResult as dU, type CustomersRevokeAllSessionsResult as dV, type CustomersRevokeSessionResult as dW, type CustomersUpdateResult as dX, type DefineTierDtoLimits as dY, type DepartmentsAddMemberResult as dZ, type DepartmentsCreateResult as d_, CreateMemberDtoRole as da, CreateOrderDtoChannel as db, CreatePartnerDtoBenefitType as dc, CreatePartnerDtoReconciliationPolicy as dd, type CreatePurchaseItemDto as de, CreateServiceDtoPricingModel as df, CreateStrapiConnectionDtoEnabledSyncTypesItem as dg, type CreateStrapiConnectionDtoLocationMap as dh, CreateStrapiConnectionDtoSyncDirection as di, CreateTransferDtoPriority as dj, type CreateTransferItemDto as dk, CreateUtilityAccountDtoType as dl, type CrmControllerCreateActivityResult as dm, type CrmControllerCreateAssociationResult as dn, type CrmControllerCreateFieldResult as dp, type CrmControllerCreateNoteResult as dq, type CrmControllerCreateObjectResult as dr, type CrmControllerCreateRecordResult as ds, type CrmControllerCreateRelationshipResult as dt, type CrmControllerGetRecordNotesResult as du, type CrmControllerGetRecordResult as dv, type CrmControllerGetTimelineResult as dw, type CrmControllerListFieldsResult as dx, type CrmControllerListObjectsResult as dy, type CrmControllerListRecordAssociationsResult as dz, type InventoryGetWasteAnalysisParams as e, type MembersControllerAdminCheckOutResult as e$, type DepartmentsGetResult as e0, type DepartmentsListResult as e1, DepartmentsListSortOrder as e2, type DepartmentsRemoveMemberResult as e3, type DepartmentsUpdateResult as e4, type DispatchAddressDto as e5, type ExpenseControllerCreateExpenseResult as e6, type ExpenseControllerGetExpenseCategoriesResult as e7, type ExpenseControllerGetExpenseResult as e8, type ExpenseControllerGetExpensesResult as e9, type InvitationsAcceptResult as eA, type InvitationsCreateResult as eB, type InvitationsListResult as eC, InvitationsListSortOrder as eD, InvitationsListStatus as eE, type InvitationsRevokeResult as eF, type InvoiceControllerCreateInvoiceResult as eG, type InvoiceControllerCreateTemplateResult as eH, type InvoiceControllerDeleteInvoiceResult as eI, type InvoiceControllerFinalizeInvoiceResult as eJ, type InvoiceControllerGetConfigResult as eK, type InvoiceControllerGetInvoiceResult as eL, type InvoiceControllerGetInvoicesResult as eM, type InvoiceControllerGetTemplatesResult as eN, type InvoiceControllerUpdateConfigResult as eO, type InvoiceControllerUpdateInvoiceResult as eP, type LoyaltyGetCustomerStatusResult as eQ, type LoyaltyModule as eR, type LoyaltyRedeemRewardResult as eS, type LoyaltyStatusResponseDtoAvailableRewardsItem as eT, type LoyaltyValidateVoucherResult as eU, type ManualBatchSelectionDto as eV, type MemberDepartmentDto as eW, MemberResponseDtoMembershipStatus as eX, MemberResponseDtoRole as eY, MemberResponseDtoStatus as eZ, type MemberRoleDto as e_, ExpenseControllerGetExpensesStatus as ea, type FavoritesControllerAddFavoriteResult as eb, type FavoritesControllerGetFavoritesResult as ec, type FavoritesControllerRemoveFavoriteResult as ed, type ImageItemDto as ee, type InventoryApproveAdjustmentResult as ef, type InventoryCheckB2BAvailabilityResult as eg, type InventoryCompleteAssemblyResult as eh, type InventoryCreateAssemblyResult as ei, type InventoryFixIntegrityResult as ej, type InventoryGetAdjustmentsResult as ek, type InventoryGetInventoryResult as el, type InventoryGetLeadTimeResult as em, type InventoryGetWasteAnalysisResult as en, type InventoryMergeBatchesResult as eo, type InventoryModule as ep, type InventoryQuickStockInquiryResult as eq, type InventoryRejectAdjustmentResult as er, type InventoryRequestAdjustmentResult as es, type InventoryScanUnpackBatchResult as et, type InventorySplitBatchResult as eu, type InventoryTraceBatchResult as ev, type InventoryUnpackBatchResult as ew, type InventoryVerifyIntegrityResult as ex, InvitationResponseDtoRole as ey, InvitationResponseDtoStatus as ez, type CreateExpenseDto as f, type RoleManagementControllerAssignRolesResult as f$, type MembersControllerCreateMemberResult as f0, type MembersControllerDeleteMemberResult as f1, type MembersControllerGetMemberActivityResult as f2, type MembersControllerGetMemberResult as f3, MembersControllerGetMembersMembershipStatus as f4, type MembersControllerGetMembersResult as f5, MembersControllerGetMembersRole as f6, MembersControllerGetMembersSortOrder as f7, type MembersControllerUpdateMemberResult as f8, type MembersControllerUpdateStatusResult as f9, type PettyCashControllerTopUpFundResult as fA, type ProductCategoryResponseDto as fB, type ProductResponseDtoDescription as fC, type ProductResponseDtoRetailPrice as fD, type ProductResponseDtoSlug as fE, type ProductVariantResponseDto as fF, type ProductVariantResponseDtoRetailPrice as fG, type PublicInvoiceControllerDownloadInvoiceByTransactionResult as fH, type PublicInvoiceControllerDownloadInvoiceResult as fI, type PublicInvoiceControllerDownloadReceiptResult as fJ, type PublicInvoiceControllerGeneratePublicLinkResult as fK, type PublicServicesCreatePublicBookingResult as fL, type PublicServicesGetAvailabilityResult as fM, type PublicServicesGetCategoriesResult as fN, type PublicServicesGetServiceResult as fO, type PublicServicesListServicesResult as fP, type PublicServicesModule as fQ, type PublicServicesRequestOtpResult as fR, type PublicServicesVerifyOtpResult as fS, type RawAPI as fT, type ReceivePurchaseItemDto as fU, type ReceiveTransferItemDto as fV, ReconcilePodDtoOutcome as fW, type ReconciliationItemDto as fX, type RegisterCustomerDtoMetadata as fY, RegisterPettyCashDtoPaymentMethod as fZ, ReviewPriceChangeDtoStatus as f_, type MembersModule as fa, type MethodsWithOrgSlug as fb, type OmitOrgSlug as fc, type OrderItemDto as fd, type OrdersConvertQuoteToOrderResult as fe, type OrdersCreateOrderResult as ff, type OrdersGetOrdersResult as fg, type OrdersModule as fh, type OrdersRequestB2BQuoteResult as fi, type OrdersUpdateStatusResult as fj, type POSGetMeResult as fk, type POSGetPettyCashFundsResult as fl, type POSGetPettyCashTransactionsResult as fm, type POSGetTransactionsResult as fn, type POSLoginResult as fo, type POSModule as fp, type POSProcessSaleResult as fq, type POSProvisionResult as fr, type POSRegisterPettyCashResult as fs, type POSSyncResult as ft, type PaginationMetaDto as fu, type PaymentsControllerHandleStkCallbackResult as fv, type PettyCashControllerCreateFundResult as fw, type PettyCashControllerGetFundResult as fx, type PettyCashControllerGetFundTransactionsResult as fy, type PettyCashControllerGetFundsResult as fz, type CreatePettyCashFundDto as g, type StockingGetPendingDispatchResult as g$, type RoleManagementControllerCreateCustomRoleResult as g0, type RoleManagementControllerCreatePermissionSetResult as g1, type RoleManagementControllerCreateRoleGroupResult as g2, type RoleManagementControllerDeleteCustomRoleResult as g3, type RoleManagementControllerGetCustomRolesResult as g4, RoleManagementControllerGetCustomRolesSortOrder as g5, type RoleManagementControllerGetPermissionSetsResult as g6, type RoleManagementControllerGetRoleGroupsResult as g7, type RoleManagementControllerRemoveRolesResult as g8, type RoleManagementControllerUpdateCustomRoleResult as g9, type ServicesGetPerformanceResult as gA, type ServicesGetResourcesResult as gB, type ServicesGetServiceResult as gC, type ServicesGetServicesResult as gD, type ServicesGetShiftsResult as gE, type ServicesGetStaffShiftsResult as gF, type ServicesGetUtilizationResult as gG, type ServicesModule as gH, type ServicesRegisterCustomerAppResult as gI, ServicesUpdateBookingStatusBodyStatus as gJ, type ServicesUpdateBookingStatusResult as gK, type ServicesUpdateCategoryResult as gL, type ServicesUpdateResourceResult as gM, type ServicesUpdateServiceResult as gN, type ShipTransferItemDto as gO, type StandalonePosControllerActivateDeviceResult as gP, type StandalonePosControllerCreateSetupKeyResult as gQ, type StandalonePosControllerLinkOrganizationResult as gR, type StandalonePosControllerValidateKeyResult as gS, type StockingAdjustPartnerWalletResult as gT, type StockingCreatePartnerResult as gU, type StockingCreatePurchaseResult as gV, type StockingCreateTransferResult as gW, type StockingDispatchOrdersResult as gX, type StockingGetActiveDeliveriesResult as gY, type StockingGetPartnerResult as gZ, type StockingGetPartnersResult as g_, type SDKModule as ga, type SaleItemDto as gb, type SalePaymentDto as gc, type SaleServiceItemDto as gd, type SeoMetadataDto as ge, type ServiceBookingItemDto as gf, type ServiceCatalogResponseDtoDescription as gg, type ServiceCatalogResponseDtoEstimatedDuration as gh, type ServiceCatalogResponseDtoSlug as gi, type ServiceCategoryResponseDto as gj, type ServiceMaterialDto as gk, type ServicesAddBreakResult as gl, type ServicesCompleteBookingResult as gm, type ServicesCreateBookingResult as gn, type ServicesCreateCategoryResult as go, type ServicesCreateResourceResult as gp, type ServicesCreateServiceResult as gq, type ServicesCreateShiftResult as gr, type ServicesDeleteCategoryResult as gs, type ServicesDeleteResourceResult as gt, type ServicesDeleteServiceResult as gu, type ServicesGetBookingResult as gv, type ServicesGetBookingsResult as gw, type ServicesGetCategoriesResult as gx, type ServicesGetCurrentMemberShiftsResult as gy, type ServicesGetFunnelResult as gz, type CreateUtilityAccountDto as h, membersMapping as h$, type StockingGetPhysicalReconciliationsResult as h0, type StockingGetPurchasesResult as h1, type StockingGetReconciliationReportResult as h2, type StockingGetRequestsResult as h3, type StockingGetTransfersResult as h4, type StockingReceivePurchaseResult as h5, type StockingReceiveTransferResult as h6, type StockingReconcilePodResult as h7, type StockingShipTransferResult as h8, type StockingSubmitPhysicalReconciliationResult as h9, UpdateMemberDtoStatus as hA, UpdatePartnerDtoBenefitType as hB, UpdatePartnerDtoReconciliationPolicy as hC, UpdateServiceDtoPricingModel as hD, UpdateStrapiConnectionDtoEnabledSyncTypesItem as hE, type UpdateStrapiConnectionDtoLocationMap as hF, UpdateStrapiConnectionDtoSyncDirection as hG, type UserSummaryDto as hH, type UtilityAccountControllerCreateAccountResult as hI, type UtilityAccountControllerGetAccountResult as hJ, type UtilityAccountControllerGetAccountsResult as hK, type WebhooksCreateResult as hL, type WebhooksDeleteResult as hM, type WebhooksListResult as hN, type WindmillCallbackControllerHandleApprovalCallbackResult as hO, type WindmillCallbackControllerHandleBakeryDisposalCallbackResult as hP, type WindmillCallbackControllerHandleCallbackResult as hQ, type WindmillCallbackControllerHandleOutcomeCallbackResult as hR, accountingMapping as hS, adminMapping as hT, authMapping as hU, buildModule as hV, catalogMapping as hW, crmMapping as hX, getJwtExpiry as hY, inventoryMapping as hZ, loyaltyMapping as h_, type StockingUpdatePartnerResult as ha, type StrapiConnectionResponseDtoLocationMap as hb, type StrapiCreateConnectionResult as hc, type StrapiDeleteConnectionResult as hd, type StrapiEnqueueSyncResult as he, type StrapiExchangeCustomerTokenResult as hf, type StrapiGetConnectionResult as hg, type StrapiGetSyncLogsResult as hh, type StrapiGetWebhookLogsResult as hi, type StrapiListConnectionsResult as hj, type StrapiReceiveWebhookResult as hk, type StrapiRegisterCustomerResult as hl, type StrapiTriggerSyncResult as hm, type StrapiUpdateConnectionResult as hn, type TerminalMembersControllerLoginResult as ho, type TokenResponseDto as hp, TriggerSyncDtoDirection as hq, TriggerSyncDtoSyncTypesItem as hr, type UnitsGetUnitsResult as hs, type UpdateCrmRecordDtoData as ht, type UpdateCustomerDtoMetadata as hu, type UpdateDepartmentDtoSettings as hv, UpdateIntegrationDefinitionDtoAuthType as hw, UpdateIntegrationDefinitionDtoCategory as hx, UpdateMemberDtoMembershipStatus as hy, UpdateMemberDtoRole as hz, type AccountingGetBalanceSheetParams as i, methodsWithOrgSlugSet as i0, ordersMapping as i1, posMapping as i2, publicServicesMapping as i3, servicesMapping as i4, type AccountingGetCashFlowParams as j, type AccountingGetTaxSummaryParams as k, type CreateInvoiceDto as l, type CreateInvoiceTemplateDto as m, type InvoiceConfigDto as n, type PublicInvoiceControllerDownloadInvoiceByTransactionParams as o, type PublicInvoiceControllerDownloadReceiptParams as p, type PublicInvoiceControllerGeneratePublicLinkParams as q, type TokenRequestDto as r, type AuthExchangeToken201 as s, type CreateOrganizationDto as t, type UpdateOrganizationDto as u, type AdminControllerListMembersParams as v, type UpdateSubscriptionDto as w, type CreateIntegrationDefinitionDto as x, type UpdateIntegrationDefinitionDto as y, type CreateWebhookDto as z };
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 };