@scryme/sdk 9.68.0 → 9.70.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 +12 -5
- package/dist/{base-CSVOv3Nr.d.mts → base-B5jgRLyM.d.mts} +53 -2
- package/dist/{base-CSVOv3Nr.d.ts → base-B5jgRLyM.d.ts} +53 -2
- package/dist/{chunk-SYGBIPUK.mjs → chunk-Z6VKSRBE.mjs} +96 -1
- package/dist/client.d.mts +56 -6
- package/dist/client.d.ts +56 -6
- package/dist/client.js +66 -1
- package/dist/client.mjs +1 -1
- package/dist/index.d.mts +6 -3
- package/dist/index.d.ts +6 -3
- package/dist/index.js +99 -3
- package/dist/index.mjs +5 -3
- package/dist/server.d.mts +36 -2
- package/dist/server.d.ts +36 -2
- package/dist/server.js +64 -1
- package/dist/server.mjs +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -179,11 +179,18 @@ function verifySignature(
|
|
|
179
179
|
const hmac = crypto.createHmac("sha256", webhookSecret);
|
|
180
180
|
const expectedSignature = hmac.update(payload).digest("hex");
|
|
181
181
|
|
|
182
|
-
//
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
182
|
+
// Pre-hash both signatures using SHA-256 to ensure identical 32-byte buffer length.
|
|
183
|
+
// This prevents timing side-channels, signature length leakage, and RangeError exceptions on unequal buffer lengths.
|
|
184
|
+
const expectedHash = crypto
|
|
185
|
+
.createHash("sha256")
|
|
186
|
+
.update(expectedSignature)
|
|
187
|
+
.digest();
|
|
188
|
+
const actualHash = crypto
|
|
189
|
+
.createHash("sha256")
|
|
190
|
+
.update(signature || "")
|
|
191
|
+
.digest();
|
|
192
|
+
|
|
193
|
+
return crypto.timingSafeEqual(expectedHash, actualHash);
|
|
187
194
|
}
|
|
188
195
|
```
|
|
189
196
|
|
|
@@ -566,6 +566,28 @@ interface CheckOutDto {
|
|
|
566
566
|
notes?: string;
|
|
567
567
|
isAutoCheckout?: boolean;
|
|
568
568
|
}
|
|
569
|
+
interface CheckoutDto {
|
|
570
|
+
cartId?: string;
|
|
571
|
+
sessionId?: string;
|
|
572
|
+
phoneNumber: string;
|
|
573
|
+
locationId: string;
|
|
574
|
+
notes?: string;
|
|
575
|
+
}
|
|
576
|
+
|
|
577
|
+
/**
|
|
578
|
+
* Generated by orval v8.23.0 🍺
|
|
579
|
+
* Do not edit manually.
|
|
580
|
+
* Scryme V3 API
|
|
581
|
+
* The Scryme V3 API documentation - Scalable & Enterprise Ready
|
|
582
|
+
* OpenAPI spec version: 3.0
|
|
583
|
+
*/
|
|
584
|
+
interface CheckoutResponseDto {
|
|
585
|
+
orderId?: string;
|
|
586
|
+
paymentId?: string;
|
|
587
|
+
status?: string;
|
|
588
|
+
merchantRequestID?: string;
|
|
589
|
+
checkoutRequestID?: string;
|
|
590
|
+
}
|
|
569
591
|
|
|
570
592
|
/**
|
|
571
593
|
* Generated by orval v8.23.0 🍺
|
|
@@ -3368,6 +3390,20 @@ type ServicesCreateShiftBody = {
|
|
|
3368
3390
|
endTime: string;
|
|
3369
3391
|
};
|
|
3370
3392
|
|
|
3393
|
+
/**
|
|
3394
|
+
* Generated by orval v8.23.0 🍺
|
|
3395
|
+
* Do not edit manually.
|
|
3396
|
+
* Scryme V3 API
|
|
3397
|
+
* The Scryme V3 API documentation - Scalable & Enterprise Ready
|
|
3398
|
+
* OpenAPI spec version: 3.0
|
|
3399
|
+
*/
|
|
3400
|
+
type ServicesGetAvailabilityParams = {
|
|
3401
|
+
/**
|
|
3402
|
+
* Target date in YYYY-MM-DD format
|
|
3403
|
+
*/
|
|
3404
|
+
date?: string;
|
|
3405
|
+
};
|
|
3406
|
+
|
|
3371
3407
|
/**
|
|
3372
3408
|
* Generated by orval v8.23.0 🍺
|
|
3373
3409
|
* Do not edit manually.
|
|
@@ -4462,6 +4498,7 @@ declare const getScrymeV3API: (axiosInstance?: AxiosInstance) => {
|
|
|
4462
4498
|
servicesGetShifts: (orgSlug: string, params?: ServicesGetShiftsParams, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
|
|
4463
4499
|
servicesGetService: (orgSlug: string, id: string, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
|
|
4464
4500
|
servicesUpdateService: (orgSlug: string, id: string, updateServiceDto: UpdateServiceDto, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
|
|
4501
|
+
servicesGetAvailability: (orgSlug: string, id: string, params?: ServicesGetAvailabilityParams, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
|
|
4465
4502
|
servicesDeleteService: (orgSlug: string, id: string, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
|
|
4466
4503
|
servicesCreateResource: (orgSlug: string, createServiceResourceDto: CreateServiceResourceDto, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
|
|
4467
4504
|
servicesGetResources: (orgSlug: string, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
|
|
@@ -4472,6 +4509,7 @@ declare const getScrymeV3API: (axiosInstance?: AxiosInstance) => {
|
|
|
4472
4509
|
servicesGetBooking: (orgSlug: string, id: string, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
|
|
4473
4510
|
servicesUpdateBookingStatus: (orgSlug: string, id: string, servicesUpdateBookingStatusBody: ServicesUpdateBookingStatusBody, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
|
|
4474
4511
|
servicesCompleteBooking: (orgSlug: string, id: string, completeBookingDto: CompleteBookingDto, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
|
|
4512
|
+
servicesCancelBookingSeries: (orgSlug: string, recurrenceId: string, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
|
|
4475
4513
|
servicesCreateShift: (orgSlug: string, memberId: string, servicesCreateShiftBody: ServicesCreateShiftBody, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
|
|
4476
4514
|
servicesGetStaffShifts: (orgSlug: string, memberId: string, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
|
|
4477
4515
|
servicesAddBreak: (orgSlug: string, shiftId: string, servicesAddBreakBody: ServicesAddBreakBody, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
|
|
@@ -4626,6 +4664,7 @@ declare const getScrymeV3API: (axiosInstance?: AxiosInstance) => {
|
|
|
4626
4664
|
strapiReceiveWebhook: (connectionId: string, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
|
|
4627
4665
|
analyticsControllerGetDashboardAnalytics: (orgSlug: string, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
|
|
4628
4666
|
analyticsControllerGetResourceUtilization: (orgSlug: string, params: AnalyticsControllerGetResourceUtilizationParams, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
|
|
4667
|
+
paymentsCheckout: (orgSlug: string, checkoutDto?: CheckoutDto, options?: AxiosRequestConfig) => Promise<AxiosResponse<CheckoutResponseDto>>;
|
|
4629
4668
|
};
|
|
4630
4669
|
type InventoryVerifyIntegrityResult = AxiosResponse<void>;
|
|
4631
4670
|
type InventoryFixIntegrityResult = AxiosResponse<void>;
|
|
@@ -4733,6 +4772,7 @@ type ServicesGetCurrentMemberShiftsResult = AxiosResponse<void>;
|
|
|
4733
4772
|
type ServicesGetShiftsResult = AxiosResponse<void>;
|
|
4734
4773
|
type ServicesGetServiceResult = AxiosResponse<void>;
|
|
4735
4774
|
type ServicesUpdateServiceResult = AxiosResponse<void>;
|
|
4775
|
+
type ServicesGetAvailabilityResult = AxiosResponse<void>;
|
|
4736
4776
|
type ServicesDeleteServiceResult = AxiosResponse<void>;
|
|
4737
4777
|
type ServicesCreateResourceResult = AxiosResponse<void>;
|
|
4738
4778
|
type ServicesGetResourcesResult = AxiosResponse<void>;
|
|
@@ -4743,6 +4783,7 @@ type ServicesGetBookingsResult = AxiosResponse<void>;
|
|
|
4743
4783
|
type ServicesGetBookingResult = AxiosResponse<void>;
|
|
4744
4784
|
type ServicesUpdateBookingStatusResult = AxiosResponse<void>;
|
|
4745
4785
|
type ServicesCompleteBookingResult = AxiosResponse<void>;
|
|
4786
|
+
type ServicesCancelBookingSeriesResult = AxiosResponse<void>;
|
|
4746
4787
|
type ServicesCreateShiftResult = AxiosResponse<void>;
|
|
4747
4788
|
type ServicesGetStaffShiftsResult = AxiosResponse<void>;
|
|
4748
4789
|
type ServicesAddBreakResult = AxiosResponse<void>;
|
|
@@ -4897,6 +4938,7 @@ type StrapiRegisterCustomerResult = AxiosResponse<void>;
|
|
|
4897
4938
|
type StrapiReceiveWebhookResult = AxiosResponse<void>;
|
|
4898
4939
|
type AnalyticsControllerGetDashboardAnalyticsResult = AxiosResponse<void>;
|
|
4899
4940
|
type AnalyticsControllerGetResourceUtilizationResult = AxiosResponse<void>;
|
|
4941
|
+
type PaymentsCheckoutResult = AxiosResponse<CheckoutResponseDto>;
|
|
4900
4942
|
|
|
4901
4943
|
type RawAPI = ReturnType<typeof getScrymeV3API>;
|
|
4902
4944
|
/**
|
|
@@ -4956,7 +4998,7 @@ interface CustomerAuthResponseDto<TUser = CustomerResponseDto, TSession = Custom
|
|
|
4956
4998
|
*/
|
|
4957
4999
|
user?: TUser;
|
|
4958
5000
|
}
|
|
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";
|
|
5001
|
+
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" | "paymentsCheckout" | "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" | "servicesGetAvailability" | "servicesUpdateBookingStatus" | "servicesCompleteBooking" | "servicesCancelBookingSeries" | "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";
|
|
4960
5002
|
declare const methodsWithOrgSlugSet: Set<string>;
|
|
4961
5003
|
type OmitOrgSlug<MethodName extends keyof RawAPI, T> = MethodName extends MethodsWithOrgSlug ? (T extends (orgSlug: string, ...args: infer A) => infer R ? (...args: A) => R : T) : T;
|
|
4962
5004
|
type SDKModule<Mapping> = {
|
|
@@ -5062,8 +5104,14 @@ declare const ordersMapping: {
|
|
|
5062
5104
|
readonly clearCart: "cartControllerClearCart";
|
|
5063
5105
|
readonly addToCart: "cartControllerAddToCart";
|
|
5064
5106
|
readonly removeFromCart: "cartControllerRemoveFromCart";
|
|
5107
|
+
readonly checkout: "paymentsCheckout";
|
|
5065
5108
|
readonly handleStkCallback: "paymentsControllerHandleStkCallback";
|
|
5066
5109
|
};
|
|
5110
|
+
declare const webhooksMapping: {
|
|
5111
|
+
readonly create: "webhooksCreate";
|
|
5112
|
+
readonly list: "webhooksList";
|
|
5113
|
+
readonly delete: "webhooksDelete";
|
|
5114
|
+
};
|
|
5067
5115
|
declare const crmMapping: {
|
|
5068
5116
|
readonly createRecord: "crmControllerCreateRecord";
|
|
5069
5117
|
readonly getRecord: "crmControllerGetRecord";
|
|
@@ -5219,8 +5267,10 @@ declare const servicesMapping: {
|
|
|
5219
5267
|
readonly createBookingAdmin: "servicesCreateBooking";
|
|
5220
5268
|
readonly getBookings: "servicesGetBookings";
|
|
5221
5269
|
readonly getBookingAdmin: "servicesGetBooking";
|
|
5270
|
+
readonly getAvailabilityAdmin: "servicesGetAvailability";
|
|
5222
5271
|
readonly updateBookingStatus: "servicesUpdateBookingStatus";
|
|
5223
5272
|
readonly completeBooking: "servicesCompleteBooking";
|
|
5273
|
+
readonly cancelBookingSeries: "servicesCancelBookingSeries";
|
|
5224
5274
|
readonly createShift: "servicesCreateShift";
|
|
5225
5275
|
readonly getStaffShifts: "servicesGetStaffShifts";
|
|
5226
5276
|
readonly addBreak: "servicesAddBreak";
|
|
@@ -5308,10 +5358,11 @@ type POSModule = SDKModule<typeof posMapping>;
|
|
|
5308
5358
|
type AccountingModule = SDKModule<typeof accountingMapping>;
|
|
5309
5359
|
type LoyaltyModule = SDKModule<typeof loyaltyMapping>;
|
|
5310
5360
|
type MembersModule = SDKModule<typeof membersMapping>;
|
|
5361
|
+
type WebhooksModule = SDKModule<typeof webhooksMapping>;
|
|
5311
5362
|
type AdminModule = SDKModule<typeof adminMapping>;
|
|
5312
5363
|
type PublicServicesModule = SDKModule<typeof publicServicesMapping>;
|
|
5313
5364
|
type ServicesModule = SDKModule<typeof servicesMapping>;
|
|
5314
5365
|
declare function buildModule<Mapping extends Record<string, keyof RawAPI>>(api: RawAPI, orgSlug: string, mapping: Mapping): SDKModule<Mapping>;
|
|
5315
5366
|
declare function getJwtExpiry(token: string): number | null;
|
|
5316
5367
|
|
|
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 };
|
|
5368
|
+
export { type CreateServiceDto as $, type AccountingGetProfitLossParams as A, type BanUserDto as B, type CheckB2BAvailabilityDto as C, type DefineTierDto as D, type ExpenseControllerGetExpensesParams as E, type CatalogGetProductsParams as F, type ProductResponseDto as G, type CreateProductDto as H, type InventoryFixIntegrityParams as I, type CatalogGetServicesParams as J, type ServiceCatalogResponseDto as K, type UpdateProductDto as L, type UpdateSupplierProductDto as M, type CatalogGetPriceChangeRequestsParams as N, type ReviewPriceChangeDto as O, type PublicInvoiceControllerDownloadInvoiceParams as P, type CreateProductReviewDto as Q, type RecordCustomPaymentDto as R, type SetGlobalSettingDto as S, type TopUpPettyCashFundDto as T, type UpdateInvoiceDto as U, type ProductReviewResponseDto as V, type WebhookResponseDto as W, type UpdateProductReviewDto as X, type CatalogDeleteReviewParams as Y, type CreateServiceCategoryDto as Z, type UpdateServiceCategoryDto as _, type InventoryGetInventoryParams as a, type CreateCustomRoleDto as a$, type ServicesGetShiftsParams as a0, type UpdateServiceDto as a1, type ServicesGetAvailabilityParams as a2, type CreateServiceResourceDto as a3, type UpdateServiceResourceDto as a4, type CreateBookingDto as a5, type ServicesUpdateBookingStatusBody as a6, type CompleteBookingDto as a7, type ServicesCreateShiftBody as a8, type ServicesAddBreakBody as a9, type RedeemRewardDto as aA, type LoyaltyStatusResponseDto as aB, type ValidateVoucherDto as aC, type CreateOrderDto as aD, type OrderResponseDto as aE, type OrdersGetOrdersParams as aF, type UpdateOrderStatusDto as aG, type RequestB2BQuoteDto as aH, type ProvisionDeviceDto as aI, type ProvisionResponseDto as aJ, type PosLoginDto as aK, type PosLoginResponseDto as aL, type ProcessSaleDto as aM, type RegisterPettyCashDto as aN, type POSGetPettyCashTransactionsParams as aO, type MembersControllerGetMembersParams as aP, type MemberResponseDto as aQ, type CreateMemberDto as aR, type UpdateMemberDto as aS, type CheckOutDto as aT, type TerminalLoginDto as aU, type TerminalLoginResponseDto as aV, type InvitationsListParams as aW, type InvitationResponseDto as aX, type CreateInvitationDto as aY, type AcceptInvitationDto as aZ, type RoleManagementControllerGetCustomRolesParams as a_, type ServicesRegisterCustomerAppBody as aa, type ServicesGetUtilizationParams as ab, type ServicesGetPerformanceParams as ac, type ServicesGetFunnelParams as ad, type PublicServicesGetAvailabilityParams as ae, type RequestOtpDto as af, type VerifyOtpDto as ag, type PublicBookingDto as ah, type CustomersGetCustomersParams as ai, type CustomerResponseDto as aj, type RegisterCustomerDto as ak, type CustomerLoginDto as al, type CustomersRevokeAllSessionsParams as am, type UpdateCustomerDto as an, type AddressDto as ao, type CreateBusinessAccountDto as ap, type CreateCrmRecordDto as aq, type CrmRecordResponseDto as ar, type UpdateCrmRecordDto as as, type CreateCrmNoteDto as at, type CrmNoteResponseDto as au, type CreateCrmActivityDto as av, type CreateCrmObjectDto as aw, type CreateCrmFieldDto as ax, type CreateCrmRelationshipDto as ay, type CreateCrmAssociationDto as az, type InventoryResponseDto as b, type AdminControllerDeleteGlobalSettingResult as b$, type UpdateCustomRoleDto as b0, type CreatePermissionSetDto as b1, type CreateRoleGroupDto as b2, type DepartmentsListParams as b3, type DepartmentResponseDto as b4, type CreateDepartmentDto as b5, type UpdateDepartmentDto as b6, type AddDepartmentMemberDto as b7, type AttendanceControllerGetLogsParams as b8, type CheckInDto as b9, type ActivateDeviceDto as bA, type LinkOrganizationDto as bB, type B2BGetCatalogParams as bC, type PaginatedB2BCatalogDto as bD, type CreateB2BOrderDto as bE, type B2BOrderResponseDto as bF, type CrmIntegrationsHandleCallbackParams as bG, type UnitsGetUnitsParams as bH, type CreateStrapiConnectionDto as bI, type StrapiConnectionResponseDto as bJ, type UpdateStrapiConnectionDto as bK, type TriggerSyncDto as bL, type AnalyticsControllerGetResourceUtilizationParams as bM, type CheckoutDto as bN, type CheckoutResponseDto as bO, type AccountingGetBalanceSheetResult as bP, type AccountingGetCashFlowResult as bQ, type AccountingGetProfitLossResult as bR, type AccountingGetTaxSummaryResult as bS, type AccountingInitializeResult as bT, type AccountingModule as bU, AddDepartmentMemberDtoRole as bV, type AddToCartDtoBookingDetails as bW, type AdminControllerBanUserResult as bX, type AdminControllerCreateIntegrationDefinitionResult as bY, type AdminControllerCreateOrganizationResult as bZ, type AdminControllerDefineTierResult as b_, type AnnouncementDto as ba, type CartControllerGetCartParams as bb, type CartResponseDto as bc, type CartControllerClearCartParams as bd, type AddToCartDto as be, type RemoveFromCartDto as bf, type FavoriteResponseDto as bg, type FavoriteDto as bh, type StockingGetPurchasesParams as bi, type CreatePurchaseDto as bj, type ReceivePurchaseDto as bk, type StockingGetTransfersParams as bl, type CreateTransferDto as bm, type ShipTransferDto as bn, type ReceiveTransferDto as bo, type StockingGetRequestsParams as bp, type StockingGetPendingDispatchParams as bq, type DispatchOrderDto as br, type StockingGetActiveDeliveriesParams as bs, type ReconcilePodDto as bt, type StockingGetPhysicalReconciliationsParams as bu, type SubmitReconciliationDto as bv, type CreatePartnerDto as bw, type UpdatePartnerDto as bx, type PartnerWalletActionDto as by, type CreateSetupKeyDto as bz, type InventoryGetAdjustmentsParams as c, type CatalogGetServicesResult as c$, type AdminControllerDeleteIntegrationDefinitionResult as c0, type AdminControllerDeleteOrganizationResult as c1, type AdminControllerDeleteTierResult as c2, type AdminControllerGetOrganizationDetailsResult as c3, type AdminControllerGetOrganizationSubscriptionResult as c4, type AdminControllerGetStatsResult as c5, type AdminControllerListActiveOrganizationIntegrationsResult as c6, type AdminControllerListConnectedAppsResult as c7, type AdminControllerListGlobalSettingsResult as c8, type AdminControllerListIntegrationDefinitionsResult as c9, type B2BCatalogProductDto as cA, type B2BCreateOrderResult as cB, type B2BCreateQuoteResult as cC, type B2BGetCatalogResult as cD, type B2BGetInvoicesResult as cE, type B2BGetOrdersResult as cF, type B2BOrderItemDto as cG, type B2BQuoteItemDto as cH, type B2BVariantDto as cI, type B2BVariantStockDto as cJ, type BatchReceiptDto as cK, type BatchReceiptDtoQcResults as cL, type BusinessAccountControllerCreateResult as cM, type BusinessAccountControllerGetOneResult as cN, type CRMModule as cO, type CartControllerAddToCartResult as cP, type CartControllerClearCartResult as cQ, type CartControllerGetCartResult as cR, type CartControllerRemoveFromCartResult as cS, type CartItemDto as cT, type CartItemDtoBookingDetails as cU, type CatalogCreateProductResult as cV, type CatalogCreateReviewResult as cW, type CatalogDeleteReviewResult as cX, type CatalogGetPriceChangeRequestsResult as cY, type CatalogGetProductResult as cZ, type CatalogGetProductsResult as c_, type AdminControllerListMembersResult as ca, type AdminControllerListOrganizationsResult as cb, type AdminControllerListSystemLogsResult as cc, type AdminControllerListSystemPaymentsResult as cd, type AdminControllerListTiersResult as ce, type AdminControllerListUsersResult as cf, type AdminControllerRecordCustomPaymentResult as cg, type AdminControllerSetGlobalSettingResult as ch, type AdminControllerUnbanUserResult as ci, type AdminControllerUpdateIntegrationDefinitionResult as cj, type AdminControllerUpdateOrganizationResult as ck, type AdminControllerUpdateOrganizationSubscriptionResult as cl, type AdminModule as cm, type AnalyticsControllerGetDashboardAnalyticsResult as cn, type AnalyticsControllerGetResourceUtilizationResult as co, type AnnouncementControllerBroadcastAnnouncementResult as cp, type AttendanceControllerCheckInResult as cq, type AttendanceControllerCheckOutResult as cr, type AttendanceControllerGetLogsResult as cs, AttendanceControllerGetLogsSortOrder as ct, type AttendanceControllerGetMyStatusResult as cu, type AttendanceControllerGetStatusResult as cv, type AuthControllerHandleOAuth2Result as cw, type AuthExchangeToken201Meta as cx, type AuthExchangeTokenResult as cy, type AuthModule as cz, type InventoryGetLeadTimeParams as d, type CustomersGetCustomersResult as d$, type CatalogModule as d0, type CatalogReviewPriceChangeRequestResult as d1, type CatalogUpdateProductResult as d2, type CatalogUpdateReviewResult as d3, type CatalogUpdateSupplierVariantResult as d4, type CmsCustomFieldsDto as d5, type CmsCustomFieldsDtoArchivedAt as d6, type CmsCustomFieldsDtoCustomAttributes as d7, CmsCustomFieldsDtoPublishStatus as d8, type CmsCustomFieldsDtoPublishedAt as d9, type CrmControllerCreateNoteResult as dA, type CrmControllerCreateObjectResult as dB, type CrmControllerCreateRecordResult as dC, type CrmControllerCreateRelationshipResult as dD, type CrmControllerGetRecordNotesResult as dE, type CrmControllerGetRecordResult as dF, type CrmControllerGetTimelineResult as dG, type CrmControllerListFieldsResult as dH, type CrmControllerListObjectsResult as dI, type CrmControllerListRecordAssociationsResult as dJ, type CrmControllerListRelationshipsResult as dK, type CrmControllerUpdateRecordResult as dL, type CrmIntegrationsGetAuthUrlResult as dM, type CrmIntegrationsHandleCallbackResult as dN, type CrmIntegrationsHandleWebhookResult as dO, type CrmIntegrationsReplyToActivityResult as dP, type CrmNoteResponseDtoCreatedById as dQ, type CrmRecordResponseDtoData as dR, type CrmRecordResponseDtoOwnerId as dS, type CustomerAuthResponseDto as dT, type CustomerRegisterResult as dU, type CustomerSessionDto as dV, type CustomersAddAddressResult as dW, type CustomersDeleteResult as dX, type CustomersGetAddressesResult as dY, type CustomersGetCurrentSessionResult as dZ, type CustomersGetCustomerByIdResult as d_, type CreateBookingDtoCustomFields as da, type CreateCrmActivityDtoMetadata as db, CreateCrmFieldDtoType as dc, type CreateCrmRecordDtoData as dd, CreateCrmRelationshipDtoType as de, type CreateDepartmentDtoSettings as df, CreateExpenseDtoPaymentMethod as dg, CreateIntegrationDefinitionDtoAuthType as dh, CreateIntegrationDefinitionDtoCategory as di, CreateInvitationDtoRole as dj, CreateMemberDtoRole as dk, CreateOrderDtoChannel as dl, CreatePartnerDtoBenefitType as dm, CreatePartnerDtoReconciliationPolicy as dn, type CreatePurchaseItemDto as dp, CreateServiceDtoPricingModel as dq, CreateStrapiConnectionDtoEnabledSyncTypesItem as dr, type CreateStrapiConnectionDtoLocationMap as ds, CreateStrapiConnectionDtoSyncDirection as dt, CreateTransferDtoPriority as du, type CreateTransferItemDto as dv, CreateUtilityAccountDtoType as dw, type CrmControllerCreateActivityResult as dx, type CrmControllerCreateAssociationResult as dy, type CrmControllerCreateFieldResult as dz, type InventoryGetWasteAnalysisParams as e, type LoyaltyGetCustomerStatusResult as e$, type CustomersGetSessionsResult as e0, type CustomersLoginResult as e1, type CustomersRefreshSessionResult as e2, type CustomersRegisterResult as e3, type CustomersRevokeAllSessionsResult as e4, type CustomersRevokeSessionResult as e5, type CustomersUpdateResult as e6, type DefineTierDtoLimits as e7, type DepartmentsAddMemberResult as e8, type DepartmentsCreateResult as e9, type InventoryModule as eA, type InventoryQuickStockInquiryResult as eB, type InventoryRejectAdjustmentResult as eC, type InventoryRequestAdjustmentResult as eD, type InventoryScanUnpackBatchResult as eE, type InventorySplitBatchResult as eF, type InventoryTraceBatchResult as eG, type InventoryUnpackBatchResult as eH, type InventoryVerifyIntegrityResult as eI, InvitationResponseDtoRole as eJ, InvitationResponseDtoStatus as eK, type InvitationsAcceptResult as eL, type InvitationsCreateResult as eM, type InvitationsListResult as eN, InvitationsListSortOrder as eO, InvitationsListStatus as eP, type InvitationsRevokeResult as eQ, type InvoiceControllerCreateInvoiceResult as eR, type InvoiceControllerCreateTemplateResult as eS, type InvoiceControllerDeleteInvoiceResult as eT, type InvoiceControllerFinalizeInvoiceResult as eU, type InvoiceControllerGetConfigResult as eV, type InvoiceControllerGetInvoiceResult as eW, type InvoiceControllerGetInvoicesResult as eX, type InvoiceControllerGetTemplatesResult as eY, type InvoiceControllerUpdateConfigResult as eZ, type InvoiceControllerUpdateInvoiceResult as e_, type DepartmentsDeleteResult as ea, type DepartmentsGetResult as eb, type DepartmentsListResult as ec, DepartmentsListSortOrder as ed, type DepartmentsRemoveMemberResult as ee, type DepartmentsUpdateResult as ef, type DispatchAddressDto as eg, type ExpenseControllerCreateExpenseResult as eh, type ExpenseControllerGetExpenseCategoriesResult as ei, type ExpenseControllerGetExpenseResult as ej, type ExpenseControllerGetExpensesResult as ek, ExpenseControllerGetExpensesStatus as el, type FavoritesControllerAddFavoriteResult as em, type FavoritesControllerGetFavoritesResult as en, type FavoritesControllerRemoveFavoriteResult as eo, type ImageItemDto as ep, type InventoryApproveAdjustmentResult as eq, type InventoryCheckB2BAvailabilityResult as er, type InventoryCompleteAssemblyResult as es, type InventoryCreateAssemblyResult as et, type InventoryFixIntegrityResult as eu, type InventoryGetAdjustmentsResult as ev, type InventoryGetInventoryResult as ew, type InventoryGetLeadTimeResult as ex, type InventoryGetWasteAnalysisResult as ey, type InventoryMergeBatchesResult as ez, type CreateExpenseDto as f, type PublicInvoiceControllerDownloadInvoiceResult as f$, type LoyaltyModule as f0, type LoyaltyRedeemRewardResult as f1, type LoyaltyStatusResponseDtoAvailableRewardsItem as f2, type LoyaltyValidateVoucherResult as f3, type ManualBatchSelectionDto as f4, type MemberDepartmentDto as f5, MemberResponseDtoMembershipStatus as f6, MemberResponseDtoRole as f7, MemberResponseDtoStatus as f8, type MemberRoleDto as f9, type POSModule as fA, type POSProcessSaleResult as fB, type POSProvisionResult as fC, type POSRegisterPettyCashResult as fD, type POSSyncResult as fE, type PaginationMetaDto as fF, type PaymentsCheckoutResult as fG, type PaymentsControllerHandleStkCallbackResult as fH, type PettyCashControllerCreateFundResult as fI, type PettyCashControllerGetFundResult as fJ, type PettyCashControllerGetFundTransactionsResult as fK, type PettyCashControllerGetFundsResult as fL, type PettyCashControllerTopUpFundResult as fM, type ProductCategoryResponseDto as fN, type ProductMetaDto as fO, type ProductResponseDtoBrand as fP, type ProductResponseDtoDescription as fQ, type ProductResponseDtoDetailedDescription as fR, type ProductResponseDtoPointsOnPurchase as fS, type ProductResponseDtoRating as fT, type ProductResponseDtoRetailPrice as fU, type ProductResponseDtoSlug as fV, type ProductReviewCustomerDto as fW, type ProductReviewResponseDtoComment as fX, type ProductVariantResponseDto as fY, type ProductVariantResponseDtoRetailPrice as fZ, type PublicInvoiceControllerDownloadInvoiceByTransactionResult as f_, type MembersControllerAdminCheckOutResult as fa, type MembersControllerCreateMemberResult as fb, type MembersControllerDeleteMemberResult as fc, type MembersControllerGetMemberActivityResult as fd, type MembersControllerGetMemberResult as fe, MembersControllerGetMembersMembershipStatus as ff, type MembersControllerGetMembersResult as fg, MembersControllerGetMembersRole as fh, MembersControllerGetMembersSortOrder as fi, type MembersControllerUpdateMemberResult as fj, type MembersControllerUpdateStatusResult as fk, type MembersModule as fl, type MethodsWithOrgSlug as fm, type OmitOrgSlug as fn, type OrderItemDto as fo, type OrdersConvertQuoteToOrderResult as fp, type OrdersCreateOrderResult as fq, type OrdersGetOrdersResult as fr, type OrdersModule as fs, type OrdersRequestB2BQuoteResult as ft, type OrdersUpdateStatusResult as fu, type POSGetMeResult as fv, type POSGetPettyCashFundsResult as fw, type POSGetPettyCashTransactionsResult as fx, type POSGetTransactionsResult as fy, type POSLoginResult as fz, type CreatePettyCashFundDto as g, type ServicesGetUtilizationResult as g$, type PublicInvoiceControllerDownloadReceiptResult as g0, type PublicInvoiceControllerGeneratePublicLinkResult as g1, type PublicServicesCreatePublicBookingResult as g2, type PublicServicesGetAvailabilityResult as g3, type PublicServicesGetCategoriesResult as g4, type PublicServicesGetServiceResult as g5, type PublicServicesListServicesResult as g6, type PublicServicesModule as g7, type PublicServicesRequestOtpResult as g8, type PublicServicesVerifyOtpResult as g9, type ServiceCatalogResponseDtoEstimatedDuration as gA, type ServiceCatalogResponseDtoSlug as gB, type ServiceCategoryResponseDto as gC, type ServiceMaterialDto as gD, type ServicesAddBreakResult as gE, type ServicesCancelBookingSeriesResult as gF, type ServicesCompleteBookingResult as gG, type ServicesCreateBookingResult as gH, type ServicesCreateCategoryResult as gI, type ServicesCreateResourceResult as gJ, type ServicesCreateServiceResult as gK, type ServicesCreateShiftResult as gL, type ServicesDeleteCategoryResult as gM, type ServicesDeleteResourceResult as gN, type ServicesDeleteServiceResult as gO, type ServicesGetAvailabilityResult as gP, type ServicesGetBookingResult as gQ, type ServicesGetBookingsResult as gR, type ServicesGetCategoriesResult as gS, type ServicesGetCurrentMemberShiftsResult as gT, type ServicesGetFunnelResult as gU, type ServicesGetPerformanceResult as gV, type ServicesGetResourcesResult as gW, type ServicesGetServiceResult as gX, type ServicesGetServicesResult as gY, type ServicesGetShiftsResult as gZ, type ServicesGetStaffShiftsResult as g_, type RawAPI as ga, type ReceivePurchaseItemDto as gb, type ReceiveTransferItemDto as gc, ReconcilePodDtoOutcome as gd, type ReconciliationItemDto as ge, type RegisterCustomerDtoMetadata as gf, RegisterPettyCashDtoPaymentMethod as gg, ReviewPriceChangeDtoStatus as gh, type RoleManagementControllerAssignRolesResult as gi, type RoleManagementControllerCreateCustomRoleResult as gj, type RoleManagementControllerCreatePermissionSetResult as gk, type RoleManagementControllerCreateRoleGroupResult as gl, type RoleManagementControllerDeleteCustomRoleResult as gm, type RoleManagementControllerGetCustomRolesResult as gn, RoleManagementControllerGetCustomRolesSortOrder as go, type RoleManagementControllerGetPermissionSetsResult as gp, type RoleManagementControllerGetRoleGroupsResult as gq, type RoleManagementControllerRemoveRolesResult as gr, type RoleManagementControllerUpdateCustomRoleResult as gs, type SDKModule as gt, type SaleItemDto as gu, type SalePaymentDto as gv, type SaleServiceItemDto as gw, type SeoMetadataDto as gx, type ServiceBookingItemDto as gy, type ServiceCatalogResponseDtoDescription as gz, type CreateUtilityAccountDto as h, UpdateStrapiConnectionDtoSyncDirection as h$, type ServicesModule as h0, type ServicesRegisterCustomerAppResult as h1, ServicesUpdateBookingStatusBodyStatus as h2, type ServicesUpdateBookingStatusResult as h3, type ServicesUpdateCategoryResult as h4, type ServicesUpdateResourceResult as h5, type ServicesUpdateServiceResult as h6, type ShipTransferItemDto as h7, type StandalonePosControllerActivateDeviceResult as h8, type StandalonePosControllerCreateSetupKeyResult as h9, type StrapiExchangeCustomerTokenResult as hA, type StrapiGetConnectionResult as hB, type StrapiGetSyncLogsResult as hC, type StrapiGetWebhookLogsResult as hD, type StrapiListConnectionsResult as hE, type StrapiReceiveWebhookResult as hF, type StrapiRegisterCustomerResult as hG, type StrapiTriggerSyncResult as hH, type StrapiUpdateConnectionResult as hI, type TerminalMembersControllerLoginResult as hJ, type TokenResponseDto as hK, TriggerSyncDtoDirection as hL, TriggerSyncDtoSyncTypesItem as hM, type UnitsGetUnitsResult as hN, type UpdateCrmRecordDtoData as hO, type UpdateCustomerDtoMetadata as hP, type UpdateDepartmentDtoSettings as hQ, UpdateIntegrationDefinitionDtoAuthType as hR, UpdateIntegrationDefinitionDtoCategory as hS, UpdateMemberDtoMembershipStatus as hT, UpdateMemberDtoRole as hU, UpdateMemberDtoStatus as hV, UpdatePartnerDtoBenefitType as hW, UpdatePartnerDtoReconciliationPolicy as hX, UpdateServiceDtoPricingModel as hY, UpdateStrapiConnectionDtoEnabledSyncTypesItem as hZ, type UpdateStrapiConnectionDtoLocationMap as h_, type StandalonePosControllerLinkOrganizationResult as ha, type StandalonePosControllerValidateKeyResult as hb, type StockingAdjustPartnerWalletResult as hc, type StockingCreatePartnerResult as hd, type StockingCreatePurchaseResult as he, type StockingCreateTransferResult as hf, type StockingDispatchOrdersResult as hg, type StockingGetActiveDeliveriesResult as hh, type StockingGetPartnerResult as hi, type StockingGetPartnersResult as hj, type StockingGetPendingDispatchResult as hk, type StockingGetPhysicalReconciliationsResult as hl, type StockingGetPurchasesResult as hm, type StockingGetReconciliationReportResult as hn, type StockingGetRequestsResult as ho, type StockingGetTransfersResult as hp, type StockingReceivePurchaseResult as hq, type StockingReceiveTransferResult as hr, type StockingReconcilePodResult as hs, type StockingShipTransferResult as ht, type StockingSubmitPhysicalReconciliationResult as hu, type StockingUpdatePartnerResult as hv, type StrapiConnectionResponseDtoLocationMap as hw, type StrapiCreateConnectionResult as hx, type StrapiDeleteConnectionResult as hy, type StrapiEnqueueSyncResult as hz, type AccountingGetBalanceSheetParams as i, type UserSummaryDto as i0, type UtilityAccountControllerCreateAccountResult as i1, type UtilityAccountControllerGetAccountResult as i2, type UtilityAccountControllerGetAccountsResult as i3, type WebhooksCreateResult as i4, type WebhooksDeleteResult as i5, type WebhooksListResult as i6, type WebhooksModule as i7, type WindmillCallbackControllerHandleApprovalCallbackResult as i8, type WindmillCallbackControllerHandleBakeryDisposalCallbackResult as i9, type WindmillCallbackControllerHandleCallbackResult as ia, type WindmillCallbackControllerHandleOutcomeCallbackResult as ib, accountingMapping as ic, adminMapping as id, authMapping as ie, buildModule as ig, catalogMapping as ih, crmMapping as ii, getJwtExpiry as ij, inventoryMapping as ik, loyaltyMapping as il, membersMapping as im, methodsWithOrgSlugSet as io, ordersMapping as ip, posMapping as iq, publicServicesMapping as ir, servicesMapping as is, webhooksMapping as it, type AccountingGetCashFlowParams as j, type AccountingGetTaxSummaryParams as k, type CreateInvoiceDto as l, type CreateInvoiceTemplateDto as m, type InvoiceConfigDto as n, type PublicInvoiceControllerDownloadInvoiceByTransactionParams as o, type PublicInvoiceControllerDownloadReceiptParams as p, type PublicInvoiceControllerGeneratePublicLinkParams as q, type TokenRequestDto as r, type AuthExchangeToken201 as s, type CreateOrganizationDto as t, type UpdateOrganizationDto as u, type AdminControllerListMembersParams as v, type UpdateSubscriptionDto as w, type CreateIntegrationDefinitionDto as x, type UpdateIntegrationDefinitionDto as y, type CreateWebhookDto as z };
|
|
@@ -566,6 +566,28 @@ interface CheckOutDto {
|
|
|
566
566
|
notes?: string;
|
|
567
567
|
isAutoCheckout?: boolean;
|
|
568
568
|
}
|
|
569
|
+
interface CheckoutDto {
|
|
570
|
+
cartId?: string;
|
|
571
|
+
sessionId?: string;
|
|
572
|
+
phoneNumber: string;
|
|
573
|
+
locationId: string;
|
|
574
|
+
notes?: string;
|
|
575
|
+
}
|
|
576
|
+
|
|
577
|
+
/**
|
|
578
|
+
* Generated by orval v8.23.0 🍺
|
|
579
|
+
* Do not edit manually.
|
|
580
|
+
* Scryme V3 API
|
|
581
|
+
* The Scryme V3 API documentation - Scalable & Enterprise Ready
|
|
582
|
+
* OpenAPI spec version: 3.0
|
|
583
|
+
*/
|
|
584
|
+
interface CheckoutResponseDto {
|
|
585
|
+
orderId?: string;
|
|
586
|
+
paymentId?: string;
|
|
587
|
+
status?: string;
|
|
588
|
+
merchantRequestID?: string;
|
|
589
|
+
checkoutRequestID?: string;
|
|
590
|
+
}
|
|
569
591
|
|
|
570
592
|
/**
|
|
571
593
|
* Generated by orval v8.23.0 🍺
|
|
@@ -3368,6 +3390,20 @@ type ServicesCreateShiftBody = {
|
|
|
3368
3390
|
endTime: string;
|
|
3369
3391
|
};
|
|
3370
3392
|
|
|
3393
|
+
/**
|
|
3394
|
+
* Generated by orval v8.23.0 🍺
|
|
3395
|
+
* Do not edit manually.
|
|
3396
|
+
* Scryme V3 API
|
|
3397
|
+
* The Scryme V3 API documentation - Scalable & Enterprise Ready
|
|
3398
|
+
* OpenAPI spec version: 3.0
|
|
3399
|
+
*/
|
|
3400
|
+
type ServicesGetAvailabilityParams = {
|
|
3401
|
+
/**
|
|
3402
|
+
* Target date in YYYY-MM-DD format
|
|
3403
|
+
*/
|
|
3404
|
+
date?: string;
|
|
3405
|
+
};
|
|
3406
|
+
|
|
3371
3407
|
/**
|
|
3372
3408
|
* Generated by orval v8.23.0 🍺
|
|
3373
3409
|
* Do not edit manually.
|
|
@@ -4462,6 +4498,7 @@ declare const getScrymeV3API: (axiosInstance?: AxiosInstance) => {
|
|
|
4462
4498
|
servicesGetShifts: (orgSlug: string, params?: ServicesGetShiftsParams, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
|
|
4463
4499
|
servicesGetService: (orgSlug: string, id: string, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
|
|
4464
4500
|
servicesUpdateService: (orgSlug: string, id: string, updateServiceDto: UpdateServiceDto, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
|
|
4501
|
+
servicesGetAvailability: (orgSlug: string, id: string, params?: ServicesGetAvailabilityParams, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
|
|
4465
4502
|
servicesDeleteService: (orgSlug: string, id: string, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
|
|
4466
4503
|
servicesCreateResource: (orgSlug: string, createServiceResourceDto: CreateServiceResourceDto, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
|
|
4467
4504
|
servicesGetResources: (orgSlug: string, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
|
|
@@ -4472,6 +4509,7 @@ declare const getScrymeV3API: (axiosInstance?: AxiosInstance) => {
|
|
|
4472
4509
|
servicesGetBooking: (orgSlug: string, id: string, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
|
|
4473
4510
|
servicesUpdateBookingStatus: (orgSlug: string, id: string, servicesUpdateBookingStatusBody: ServicesUpdateBookingStatusBody, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
|
|
4474
4511
|
servicesCompleteBooking: (orgSlug: string, id: string, completeBookingDto: CompleteBookingDto, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
|
|
4512
|
+
servicesCancelBookingSeries: (orgSlug: string, recurrenceId: string, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
|
|
4475
4513
|
servicesCreateShift: (orgSlug: string, memberId: string, servicesCreateShiftBody: ServicesCreateShiftBody, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
|
|
4476
4514
|
servicesGetStaffShifts: (orgSlug: string, memberId: string, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
|
|
4477
4515
|
servicesAddBreak: (orgSlug: string, shiftId: string, servicesAddBreakBody: ServicesAddBreakBody, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
|
|
@@ -4626,6 +4664,7 @@ declare const getScrymeV3API: (axiosInstance?: AxiosInstance) => {
|
|
|
4626
4664
|
strapiReceiveWebhook: (connectionId: string, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
|
|
4627
4665
|
analyticsControllerGetDashboardAnalytics: (orgSlug: string, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
|
|
4628
4666
|
analyticsControllerGetResourceUtilization: (orgSlug: string, params: AnalyticsControllerGetResourceUtilizationParams, options?: AxiosRequestConfig) => Promise<AxiosResponse<void>>;
|
|
4667
|
+
paymentsCheckout: (orgSlug: string, checkoutDto?: CheckoutDto, options?: AxiosRequestConfig) => Promise<AxiosResponse<CheckoutResponseDto>>;
|
|
4629
4668
|
};
|
|
4630
4669
|
type InventoryVerifyIntegrityResult = AxiosResponse<void>;
|
|
4631
4670
|
type InventoryFixIntegrityResult = AxiosResponse<void>;
|
|
@@ -4733,6 +4772,7 @@ type ServicesGetCurrentMemberShiftsResult = AxiosResponse<void>;
|
|
|
4733
4772
|
type ServicesGetShiftsResult = AxiosResponse<void>;
|
|
4734
4773
|
type ServicesGetServiceResult = AxiosResponse<void>;
|
|
4735
4774
|
type ServicesUpdateServiceResult = AxiosResponse<void>;
|
|
4775
|
+
type ServicesGetAvailabilityResult = AxiosResponse<void>;
|
|
4736
4776
|
type ServicesDeleteServiceResult = AxiosResponse<void>;
|
|
4737
4777
|
type ServicesCreateResourceResult = AxiosResponse<void>;
|
|
4738
4778
|
type ServicesGetResourcesResult = AxiosResponse<void>;
|
|
@@ -4743,6 +4783,7 @@ type ServicesGetBookingsResult = AxiosResponse<void>;
|
|
|
4743
4783
|
type ServicesGetBookingResult = AxiosResponse<void>;
|
|
4744
4784
|
type ServicesUpdateBookingStatusResult = AxiosResponse<void>;
|
|
4745
4785
|
type ServicesCompleteBookingResult = AxiosResponse<void>;
|
|
4786
|
+
type ServicesCancelBookingSeriesResult = AxiosResponse<void>;
|
|
4746
4787
|
type ServicesCreateShiftResult = AxiosResponse<void>;
|
|
4747
4788
|
type ServicesGetStaffShiftsResult = AxiosResponse<void>;
|
|
4748
4789
|
type ServicesAddBreakResult = AxiosResponse<void>;
|
|
@@ -4897,6 +4938,7 @@ type StrapiRegisterCustomerResult = AxiosResponse<void>;
|
|
|
4897
4938
|
type StrapiReceiveWebhookResult = AxiosResponse<void>;
|
|
4898
4939
|
type AnalyticsControllerGetDashboardAnalyticsResult = AxiosResponse<void>;
|
|
4899
4940
|
type AnalyticsControllerGetResourceUtilizationResult = AxiosResponse<void>;
|
|
4941
|
+
type PaymentsCheckoutResult = AxiosResponse<CheckoutResponseDto>;
|
|
4900
4942
|
|
|
4901
4943
|
type RawAPI = ReturnType<typeof getScrymeV3API>;
|
|
4902
4944
|
/**
|
|
@@ -4956,7 +4998,7 @@ interface CustomerAuthResponseDto<TUser = CustomerResponseDto, TSession = Custom
|
|
|
4956
4998
|
*/
|
|
4957
4999
|
user?: TUser;
|
|
4958
5000
|
}
|
|
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";
|
|
5001
|
+
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" | "paymentsCheckout" | "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" | "servicesGetAvailability" | "servicesUpdateBookingStatus" | "servicesCompleteBooking" | "servicesCancelBookingSeries" | "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";
|
|
4960
5002
|
declare const methodsWithOrgSlugSet: Set<string>;
|
|
4961
5003
|
type OmitOrgSlug<MethodName extends keyof RawAPI, T> = MethodName extends MethodsWithOrgSlug ? (T extends (orgSlug: string, ...args: infer A) => infer R ? (...args: A) => R : T) : T;
|
|
4962
5004
|
type SDKModule<Mapping> = {
|
|
@@ -5062,8 +5104,14 @@ declare const ordersMapping: {
|
|
|
5062
5104
|
readonly clearCart: "cartControllerClearCart";
|
|
5063
5105
|
readonly addToCart: "cartControllerAddToCart";
|
|
5064
5106
|
readonly removeFromCart: "cartControllerRemoveFromCart";
|
|
5107
|
+
readonly checkout: "paymentsCheckout";
|
|
5065
5108
|
readonly handleStkCallback: "paymentsControllerHandleStkCallback";
|
|
5066
5109
|
};
|
|
5110
|
+
declare const webhooksMapping: {
|
|
5111
|
+
readonly create: "webhooksCreate";
|
|
5112
|
+
readonly list: "webhooksList";
|
|
5113
|
+
readonly delete: "webhooksDelete";
|
|
5114
|
+
};
|
|
5067
5115
|
declare const crmMapping: {
|
|
5068
5116
|
readonly createRecord: "crmControllerCreateRecord";
|
|
5069
5117
|
readonly getRecord: "crmControllerGetRecord";
|
|
@@ -5219,8 +5267,10 @@ declare const servicesMapping: {
|
|
|
5219
5267
|
readonly createBookingAdmin: "servicesCreateBooking";
|
|
5220
5268
|
readonly getBookings: "servicesGetBookings";
|
|
5221
5269
|
readonly getBookingAdmin: "servicesGetBooking";
|
|
5270
|
+
readonly getAvailabilityAdmin: "servicesGetAvailability";
|
|
5222
5271
|
readonly updateBookingStatus: "servicesUpdateBookingStatus";
|
|
5223
5272
|
readonly completeBooking: "servicesCompleteBooking";
|
|
5273
|
+
readonly cancelBookingSeries: "servicesCancelBookingSeries";
|
|
5224
5274
|
readonly createShift: "servicesCreateShift";
|
|
5225
5275
|
readonly getStaffShifts: "servicesGetStaffShifts";
|
|
5226
5276
|
readonly addBreak: "servicesAddBreak";
|
|
@@ -5308,10 +5358,11 @@ type POSModule = SDKModule<typeof posMapping>;
|
|
|
5308
5358
|
type AccountingModule = SDKModule<typeof accountingMapping>;
|
|
5309
5359
|
type LoyaltyModule = SDKModule<typeof loyaltyMapping>;
|
|
5310
5360
|
type MembersModule = SDKModule<typeof membersMapping>;
|
|
5361
|
+
type WebhooksModule = SDKModule<typeof webhooksMapping>;
|
|
5311
5362
|
type AdminModule = SDKModule<typeof adminMapping>;
|
|
5312
5363
|
type PublicServicesModule = SDKModule<typeof publicServicesMapping>;
|
|
5313
5364
|
type ServicesModule = SDKModule<typeof servicesMapping>;
|
|
5314
5365
|
declare function buildModule<Mapping extends Record<string, keyof RawAPI>>(api: RawAPI, orgSlug: string, mapping: Mapping): SDKModule<Mapping>;
|
|
5315
5366
|
declare function getJwtExpiry(token: string): number | null;
|
|
5316
5367
|
|
|
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 };
|
|
5368
|
+
export { type CreateServiceDto as $, type AccountingGetProfitLossParams as A, type BanUserDto as B, type CheckB2BAvailabilityDto as C, type DefineTierDto as D, type ExpenseControllerGetExpensesParams as E, type CatalogGetProductsParams as F, type ProductResponseDto as G, type CreateProductDto as H, type InventoryFixIntegrityParams as I, type CatalogGetServicesParams as J, type ServiceCatalogResponseDto as K, type UpdateProductDto as L, type UpdateSupplierProductDto as M, type CatalogGetPriceChangeRequestsParams as N, type ReviewPriceChangeDto as O, type PublicInvoiceControllerDownloadInvoiceParams as P, type CreateProductReviewDto as Q, type RecordCustomPaymentDto as R, type SetGlobalSettingDto as S, type TopUpPettyCashFundDto as T, type UpdateInvoiceDto as U, type ProductReviewResponseDto as V, type WebhookResponseDto as W, type UpdateProductReviewDto as X, type CatalogDeleteReviewParams as Y, type CreateServiceCategoryDto as Z, type UpdateServiceCategoryDto as _, type InventoryGetInventoryParams as a, type CreateCustomRoleDto as a$, type ServicesGetShiftsParams as a0, type UpdateServiceDto as a1, type ServicesGetAvailabilityParams as a2, type CreateServiceResourceDto as a3, type UpdateServiceResourceDto as a4, type CreateBookingDto as a5, type ServicesUpdateBookingStatusBody as a6, type CompleteBookingDto as a7, type ServicesCreateShiftBody as a8, type ServicesAddBreakBody as a9, type RedeemRewardDto as aA, type LoyaltyStatusResponseDto as aB, type ValidateVoucherDto as aC, type CreateOrderDto as aD, type OrderResponseDto as aE, type OrdersGetOrdersParams as aF, type UpdateOrderStatusDto as aG, type RequestB2BQuoteDto as aH, type ProvisionDeviceDto as aI, type ProvisionResponseDto as aJ, type PosLoginDto as aK, type PosLoginResponseDto as aL, type ProcessSaleDto as aM, type RegisterPettyCashDto as aN, type POSGetPettyCashTransactionsParams as aO, type MembersControllerGetMembersParams as aP, type MemberResponseDto as aQ, type CreateMemberDto as aR, type UpdateMemberDto as aS, type CheckOutDto as aT, type TerminalLoginDto as aU, type TerminalLoginResponseDto as aV, type InvitationsListParams as aW, type InvitationResponseDto as aX, type CreateInvitationDto as aY, type AcceptInvitationDto as aZ, type RoleManagementControllerGetCustomRolesParams as a_, type ServicesRegisterCustomerAppBody as aa, type ServicesGetUtilizationParams as ab, type ServicesGetPerformanceParams as ac, type ServicesGetFunnelParams as ad, type PublicServicesGetAvailabilityParams as ae, type RequestOtpDto as af, type VerifyOtpDto as ag, type PublicBookingDto as ah, type CustomersGetCustomersParams as ai, type CustomerResponseDto as aj, type RegisterCustomerDto as ak, type CustomerLoginDto as al, type CustomersRevokeAllSessionsParams as am, type UpdateCustomerDto as an, type AddressDto as ao, type CreateBusinessAccountDto as ap, type CreateCrmRecordDto as aq, type CrmRecordResponseDto as ar, type UpdateCrmRecordDto as as, type CreateCrmNoteDto as at, type CrmNoteResponseDto as au, type CreateCrmActivityDto as av, type CreateCrmObjectDto as aw, type CreateCrmFieldDto as ax, type CreateCrmRelationshipDto as ay, type CreateCrmAssociationDto as az, type InventoryResponseDto as b, type AdminControllerDeleteGlobalSettingResult as b$, type UpdateCustomRoleDto as b0, type CreatePermissionSetDto as b1, type CreateRoleGroupDto as b2, type DepartmentsListParams as b3, type DepartmentResponseDto as b4, type CreateDepartmentDto as b5, type UpdateDepartmentDto as b6, type AddDepartmentMemberDto as b7, type AttendanceControllerGetLogsParams as b8, type CheckInDto as b9, type ActivateDeviceDto as bA, type LinkOrganizationDto as bB, type B2BGetCatalogParams as bC, type PaginatedB2BCatalogDto as bD, type CreateB2BOrderDto as bE, type B2BOrderResponseDto as bF, type CrmIntegrationsHandleCallbackParams as bG, type UnitsGetUnitsParams as bH, type CreateStrapiConnectionDto as bI, type StrapiConnectionResponseDto as bJ, type UpdateStrapiConnectionDto as bK, type TriggerSyncDto as bL, type AnalyticsControllerGetResourceUtilizationParams as bM, type CheckoutDto as bN, type CheckoutResponseDto as bO, type AccountingGetBalanceSheetResult as bP, type AccountingGetCashFlowResult as bQ, type AccountingGetProfitLossResult as bR, type AccountingGetTaxSummaryResult as bS, type AccountingInitializeResult as bT, type AccountingModule as bU, AddDepartmentMemberDtoRole as bV, type AddToCartDtoBookingDetails as bW, type AdminControllerBanUserResult as bX, type AdminControllerCreateIntegrationDefinitionResult as bY, type AdminControllerCreateOrganizationResult as bZ, type AdminControllerDefineTierResult as b_, type AnnouncementDto as ba, type CartControllerGetCartParams as bb, type CartResponseDto as bc, type CartControllerClearCartParams as bd, type AddToCartDto as be, type RemoveFromCartDto as bf, type FavoriteResponseDto as bg, type FavoriteDto as bh, type StockingGetPurchasesParams as bi, type CreatePurchaseDto as bj, type ReceivePurchaseDto as bk, type StockingGetTransfersParams as bl, type CreateTransferDto as bm, type ShipTransferDto as bn, type ReceiveTransferDto as bo, type StockingGetRequestsParams as bp, type StockingGetPendingDispatchParams as bq, type DispatchOrderDto as br, type StockingGetActiveDeliveriesParams as bs, type ReconcilePodDto as bt, type StockingGetPhysicalReconciliationsParams as bu, type SubmitReconciliationDto as bv, type CreatePartnerDto as bw, type UpdatePartnerDto as bx, type PartnerWalletActionDto as by, type CreateSetupKeyDto as bz, type InventoryGetAdjustmentsParams as c, type CatalogGetServicesResult as c$, type AdminControllerDeleteIntegrationDefinitionResult as c0, type AdminControllerDeleteOrganizationResult as c1, type AdminControllerDeleteTierResult as c2, type AdminControllerGetOrganizationDetailsResult as c3, type AdminControllerGetOrganizationSubscriptionResult as c4, type AdminControllerGetStatsResult as c5, type AdminControllerListActiveOrganizationIntegrationsResult as c6, type AdminControllerListConnectedAppsResult as c7, type AdminControllerListGlobalSettingsResult as c8, type AdminControllerListIntegrationDefinitionsResult as c9, type B2BCatalogProductDto as cA, type B2BCreateOrderResult as cB, type B2BCreateQuoteResult as cC, type B2BGetCatalogResult as cD, type B2BGetInvoicesResult as cE, type B2BGetOrdersResult as cF, type B2BOrderItemDto as cG, type B2BQuoteItemDto as cH, type B2BVariantDto as cI, type B2BVariantStockDto as cJ, type BatchReceiptDto as cK, type BatchReceiptDtoQcResults as cL, type BusinessAccountControllerCreateResult as cM, type BusinessAccountControllerGetOneResult as cN, type CRMModule as cO, type CartControllerAddToCartResult as cP, type CartControllerClearCartResult as cQ, type CartControllerGetCartResult as cR, type CartControllerRemoveFromCartResult as cS, type CartItemDto as cT, type CartItemDtoBookingDetails as cU, type CatalogCreateProductResult as cV, type CatalogCreateReviewResult as cW, type CatalogDeleteReviewResult as cX, type CatalogGetPriceChangeRequestsResult as cY, type CatalogGetProductResult as cZ, type CatalogGetProductsResult as c_, type AdminControllerListMembersResult as ca, type AdminControllerListOrganizationsResult as cb, type AdminControllerListSystemLogsResult as cc, type AdminControllerListSystemPaymentsResult as cd, type AdminControllerListTiersResult as ce, type AdminControllerListUsersResult as cf, type AdminControllerRecordCustomPaymentResult as cg, type AdminControllerSetGlobalSettingResult as ch, type AdminControllerUnbanUserResult as ci, type AdminControllerUpdateIntegrationDefinitionResult as cj, type AdminControllerUpdateOrganizationResult as ck, type AdminControllerUpdateOrganizationSubscriptionResult as cl, type AdminModule as cm, type AnalyticsControllerGetDashboardAnalyticsResult as cn, type AnalyticsControllerGetResourceUtilizationResult as co, type AnnouncementControllerBroadcastAnnouncementResult as cp, type AttendanceControllerCheckInResult as cq, type AttendanceControllerCheckOutResult as cr, type AttendanceControllerGetLogsResult as cs, AttendanceControllerGetLogsSortOrder as ct, type AttendanceControllerGetMyStatusResult as cu, type AttendanceControllerGetStatusResult as cv, type AuthControllerHandleOAuth2Result as cw, type AuthExchangeToken201Meta as cx, type AuthExchangeTokenResult as cy, type AuthModule as cz, type InventoryGetLeadTimeParams as d, type CustomersGetCustomersResult as d$, type CatalogModule as d0, type CatalogReviewPriceChangeRequestResult as d1, type CatalogUpdateProductResult as d2, type CatalogUpdateReviewResult as d3, type CatalogUpdateSupplierVariantResult as d4, type CmsCustomFieldsDto as d5, type CmsCustomFieldsDtoArchivedAt as d6, type CmsCustomFieldsDtoCustomAttributes as d7, CmsCustomFieldsDtoPublishStatus as d8, type CmsCustomFieldsDtoPublishedAt as d9, type CrmControllerCreateNoteResult as dA, type CrmControllerCreateObjectResult as dB, type CrmControllerCreateRecordResult as dC, type CrmControllerCreateRelationshipResult as dD, type CrmControllerGetRecordNotesResult as dE, type CrmControllerGetRecordResult as dF, type CrmControllerGetTimelineResult as dG, type CrmControllerListFieldsResult as dH, type CrmControllerListObjectsResult as dI, type CrmControllerListRecordAssociationsResult as dJ, type CrmControllerListRelationshipsResult as dK, type CrmControllerUpdateRecordResult as dL, type CrmIntegrationsGetAuthUrlResult as dM, type CrmIntegrationsHandleCallbackResult as dN, type CrmIntegrationsHandleWebhookResult as dO, type CrmIntegrationsReplyToActivityResult as dP, type CrmNoteResponseDtoCreatedById as dQ, type CrmRecordResponseDtoData as dR, type CrmRecordResponseDtoOwnerId as dS, type CustomerAuthResponseDto as dT, type CustomerRegisterResult as dU, type CustomerSessionDto as dV, type CustomersAddAddressResult as dW, type CustomersDeleteResult as dX, type CustomersGetAddressesResult as dY, type CustomersGetCurrentSessionResult as dZ, type CustomersGetCustomerByIdResult as d_, type CreateBookingDtoCustomFields as da, type CreateCrmActivityDtoMetadata as db, CreateCrmFieldDtoType as dc, type CreateCrmRecordDtoData as dd, CreateCrmRelationshipDtoType as de, type CreateDepartmentDtoSettings as df, CreateExpenseDtoPaymentMethod as dg, CreateIntegrationDefinitionDtoAuthType as dh, CreateIntegrationDefinitionDtoCategory as di, CreateInvitationDtoRole as dj, CreateMemberDtoRole as dk, CreateOrderDtoChannel as dl, CreatePartnerDtoBenefitType as dm, CreatePartnerDtoReconciliationPolicy as dn, type CreatePurchaseItemDto as dp, CreateServiceDtoPricingModel as dq, CreateStrapiConnectionDtoEnabledSyncTypesItem as dr, type CreateStrapiConnectionDtoLocationMap as ds, CreateStrapiConnectionDtoSyncDirection as dt, CreateTransferDtoPriority as du, type CreateTransferItemDto as dv, CreateUtilityAccountDtoType as dw, type CrmControllerCreateActivityResult as dx, type CrmControllerCreateAssociationResult as dy, type CrmControllerCreateFieldResult as dz, type InventoryGetWasteAnalysisParams as e, type LoyaltyGetCustomerStatusResult as e$, type CustomersGetSessionsResult as e0, type CustomersLoginResult as e1, type CustomersRefreshSessionResult as e2, type CustomersRegisterResult as e3, type CustomersRevokeAllSessionsResult as e4, type CustomersRevokeSessionResult as e5, type CustomersUpdateResult as e6, type DefineTierDtoLimits as e7, type DepartmentsAddMemberResult as e8, type DepartmentsCreateResult as e9, type InventoryModule as eA, type InventoryQuickStockInquiryResult as eB, type InventoryRejectAdjustmentResult as eC, type InventoryRequestAdjustmentResult as eD, type InventoryScanUnpackBatchResult as eE, type InventorySplitBatchResult as eF, type InventoryTraceBatchResult as eG, type InventoryUnpackBatchResult as eH, type InventoryVerifyIntegrityResult as eI, InvitationResponseDtoRole as eJ, InvitationResponseDtoStatus as eK, type InvitationsAcceptResult as eL, type InvitationsCreateResult as eM, type InvitationsListResult as eN, InvitationsListSortOrder as eO, InvitationsListStatus as eP, type InvitationsRevokeResult as eQ, type InvoiceControllerCreateInvoiceResult as eR, type InvoiceControllerCreateTemplateResult as eS, type InvoiceControllerDeleteInvoiceResult as eT, type InvoiceControllerFinalizeInvoiceResult as eU, type InvoiceControllerGetConfigResult as eV, type InvoiceControllerGetInvoiceResult as eW, type InvoiceControllerGetInvoicesResult as eX, type InvoiceControllerGetTemplatesResult as eY, type InvoiceControllerUpdateConfigResult as eZ, type InvoiceControllerUpdateInvoiceResult as e_, type DepartmentsDeleteResult as ea, type DepartmentsGetResult as eb, type DepartmentsListResult as ec, DepartmentsListSortOrder as ed, type DepartmentsRemoveMemberResult as ee, type DepartmentsUpdateResult as ef, type DispatchAddressDto as eg, type ExpenseControllerCreateExpenseResult as eh, type ExpenseControllerGetExpenseCategoriesResult as ei, type ExpenseControllerGetExpenseResult as ej, type ExpenseControllerGetExpensesResult as ek, ExpenseControllerGetExpensesStatus as el, type FavoritesControllerAddFavoriteResult as em, type FavoritesControllerGetFavoritesResult as en, type FavoritesControllerRemoveFavoriteResult as eo, type ImageItemDto as ep, type InventoryApproveAdjustmentResult as eq, type InventoryCheckB2BAvailabilityResult as er, type InventoryCompleteAssemblyResult as es, type InventoryCreateAssemblyResult as et, type InventoryFixIntegrityResult as eu, type InventoryGetAdjustmentsResult as ev, type InventoryGetInventoryResult as ew, type InventoryGetLeadTimeResult as ex, type InventoryGetWasteAnalysisResult as ey, type InventoryMergeBatchesResult as ez, type CreateExpenseDto as f, type PublicInvoiceControllerDownloadInvoiceResult as f$, type LoyaltyModule as f0, type LoyaltyRedeemRewardResult as f1, type LoyaltyStatusResponseDtoAvailableRewardsItem as f2, type LoyaltyValidateVoucherResult as f3, type ManualBatchSelectionDto as f4, type MemberDepartmentDto as f5, MemberResponseDtoMembershipStatus as f6, MemberResponseDtoRole as f7, MemberResponseDtoStatus as f8, type MemberRoleDto as f9, type POSModule as fA, type POSProcessSaleResult as fB, type POSProvisionResult as fC, type POSRegisterPettyCashResult as fD, type POSSyncResult as fE, type PaginationMetaDto as fF, type PaymentsCheckoutResult as fG, type PaymentsControllerHandleStkCallbackResult as fH, type PettyCashControllerCreateFundResult as fI, type PettyCashControllerGetFundResult as fJ, type PettyCashControllerGetFundTransactionsResult as fK, type PettyCashControllerGetFundsResult as fL, type PettyCashControllerTopUpFundResult as fM, type ProductCategoryResponseDto as fN, type ProductMetaDto as fO, type ProductResponseDtoBrand as fP, type ProductResponseDtoDescription as fQ, type ProductResponseDtoDetailedDescription as fR, type ProductResponseDtoPointsOnPurchase as fS, type ProductResponseDtoRating as fT, type ProductResponseDtoRetailPrice as fU, type ProductResponseDtoSlug as fV, type ProductReviewCustomerDto as fW, type ProductReviewResponseDtoComment as fX, type ProductVariantResponseDto as fY, type ProductVariantResponseDtoRetailPrice as fZ, type PublicInvoiceControllerDownloadInvoiceByTransactionResult as f_, type MembersControllerAdminCheckOutResult as fa, type MembersControllerCreateMemberResult as fb, type MembersControllerDeleteMemberResult as fc, type MembersControllerGetMemberActivityResult as fd, type MembersControllerGetMemberResult as fe, MembersControllerGetMembersMembershipStatus as ff, type MembersControllerGetMembersResult as fg, MembersControllerGetMembersRole as fh, MembersControllerGetMembersSortOrder as fi, type MembersControllerUpdateMemberResult as fj, type MembersControllerUpdateStatusResult as fk, type MembersModule as fl, type MethodsWithOrgSlug as fm, type OmitOrgSlug as fn, type OrderItemDto as fo, type OrdersConvertQuoteToOrderResult as fp, type OrdersCreateOrderResult as fq, type OrdersGetOrdersResult as fr, type OrdersModule as fs, type OrdersRequestB2BQuoteResult as ft, type OrdersUpdateStatusResult as fu, type POSGetMeResult as fv, type POSGetPettyCashFundsResult as fw, type POSGetPettyCashTransactionsResult as fx, type POSGetTransactionsResult as fy, type POSLoginResult as fz, type CreatePettyCashFundDto as g, type ServicesGetUtilizationResult as g$, type PublicInvoiceControllerDownloadReceiptResult as g0, type PublicInvoiceControllerGeneratePublicLinkResult as g1, type PublicServicesCreatePublicBookingResult as g2, type PublicServicesGetAvailabilityResult as g3, type PublicServicesGetCategoriesResult as g4, type PublicServicesGetServiceResult as g5, type PublicServicesListServicesResult as g6, type PublicServicesModule as g7, type PublicServicesRequestOtpResult as g8, type PublicServicesVerifyOtpResult as g9, type ServiceCatalogResponseDtoEstimatedDuration as gA, type ServiceCatalogResponseDtoSlug as gB, type ServiceCategoryResponseDto as gC, type ServiceMaterialDto as gD, type ServicesAddBreakResult as gE, type ServicesCancelBookingSeriesResult as gF, type ServicesCompleteBookingResult as gG, type ServicesCreateBookingResult as gH, type ServicesCreateCategoryResult as gI, type ServicesCreateResourceResult as gJ, type ServicesCreateServiceResult as gK, type ServicesCreateShiftResult as gL, type ServicesDeleteCategoryResult as gM, type ServicesDeleteResourceResult as gN, type ServicesDeleteServiceResult as gO, type ServicesGetAvailabilityResult as gP, type ServicesGetBookingResult as gQ, type ServicesGetBookingsResult as gR, type ServicesGetCategoriesResult as gS, type ServicesGetCurrentMemberShiftsResult as gT, type ServicesGetFunnelResult as gU, type ServicesGetPerformanceResult as gV, type ServicesGetResourcesResult as gW, type ServicesGetServiceResult as gX, type ServicesGetServicesResult as gY, type ServicesGetShiftsResult as gZ, type ServicesGetStaffShiftsResult as g_, type RawAPI as ga, type ReceivePurchaseItemDto as gb, type ReceiveTransferItemDto as gc, ReconcilePodDtoOutcome as gd, type ReconciliationItemDto as ge, type RegisterCustomerDtoMetadata as gf, RegisterPettyCashDtoPaymentMethod as gg, ReviewPriceChangeDtoStatus as gh, type RoleManagementControllerAssignRolesResult as gi, type RoleManagementControllerCreateCustomRoleResult as gj, type RoleManagementControllerCreatePermissionSetResult as gk, type RoleManagementControllerCreateRoleGroupResult as gl, type RoleManagementControllerDeleteCustomRoleResult as gm, type RoleManagementControllerGetCustomRolesResult as gn, RoleManagementControllerGetCustomRolesSortOrder as go, type RoleManagementControllerGetPermissionSetsResult as gp, type RoleManagementControllerGetRoleGroupsResult as gq, type RoleManagementControllerRemoveRolesResult as gr, type RoleManagementControllerUpdateCustomRoleResult as gs, type SDKModule as gt, type SaleItemDto as gu, type SalePaymentDto as gv, type SaleServiceItemDto as gw, type SeoMetadataDto as gx, type ServiceBookingItemDto as gy, type ServiceCatalogResponseDtoDescription as gz, type CreateUtilityAccountDto as h, UpdateStrapiConnectionDtoSyncDirection as h$, type ServicesModule as h0, type ServicesRegisterCustomerAppResult as h1, ServicesUpdateBookingStatusBodyStatus as h2, type ServicesUpdateBookingStatusResult as h3, type ServicesUpdateCategoryResult as h4, type ServicesUpdateResourceResult as h5, type ServicesUpdateServiceResult as h6, type ShipTransferItemDto as h7, type StandalonePosControllerActivateDeviceResult as h8, type StandalonePosControllerCreateSetupKeyResult as h9, type StrapiExchangeCustomerTokenResult as hA, type StrapiGetConnectionResult as hB, type StrapiGetSyncLogsResult as hC, type StrapiGetWebhookLogsResult as hD, type StrapiListConnectionsResult as hE, type StrapiReceiveWebhookResult as hF, type StrapiRegisterCustomerResult as hG, type StrapiTriggerSyncResult as hH, type StrapiUpdateConnectionResult as hI, type TerminalMembersControllerLoginResult as hJ, type TokenResponseDto as hK, TriggerSyncDtoDirection as hL, TriggerSyncDtoSyncTypesItem as hM, type UnitsGetUnitsResult as hN, type UpdateCrmRecordDtoData as hO, type UpdateCustomerDtoMetadata as hP, type UpdateDepartmentDtoSettings as hQ, UpdateIntegrationDefinitionDtoAuthType as hR, UpdateIntegrationDefinitionDtoCategory as hS, UpdateMemberDtoMembershipStatus as hT, UpdateMemberDtoRole as hU, UpdateMemberDtoStatus as hV, UpdatePartnerDtoBenefitType as hW, UpdatePartnerDtoReconciliationPolicy as hX, UpdateServiceDtoPricingModel as hY, UpdateStrapiConnectionDtoEnabledSyncTypesItem as hZ, type UpdateStrapiConnectionDtoLocationMap as h_, type StandalonePosControllerLinkOrganizationResult as ha, type StandalonePosControllerValidateKeyResult as hb, type StockingAdjustPartnerWalletResult as hc, type StockingCreatePartnerResult as hd, type StockingCreatePurchaseResult as he, type StockingCreateTransferResult as hf, type StockingDispatchOrdersResult as hg, type StockingGetActiveDeliveriesResult as hh, type StockingGetPartnerResult as hi, type StockingGetPartnersResult as hj, type StockingGetPendingDispatchResult as hk, type StockingGetPhysicalReconciliationsResult as hl, type StockingGetPurchasesResult as hm, type StockingGetReconciliationReportResult as hn, type StockingGetRequestsResult as ho, type StockingGetTransfersResult as hp, type StockingReceivePurchaseResult as hq, type StockingReceiveTransferResult as hr, type StockingReconcilePodResult as hs, type StockingShipTransferResult as ht, type StockingSubmitPhysicalReconciliationResult as hu, type StockingUpdatePartnerResult as hv, type StrapiConnectionResponseDtoLocationMap as hw, type StrapiCreateConnectionResult as hx, type StrapiDeleteConnectionResult as hy, type StrapiEnqueueSyncResult as hz, type AccountingGetBalanceSheetParams as i, type UserSummaryDto as i0, type UtilityAccountControllerCreateAccountResult as i1, type UtilityAccountControllerGetAccountResult as i2, type UtilityAccountControllerGetAccountsResult as i3, type WebhooksCreateResult as i4, type WebhooksDeleteResult as i5, type WebhooksListResult as i6, type WebhooksModule as i7, type WindmillCallbackControllerHandleApprovalCallbackResult as i8, type WindmillCallbackControllerHandleBakeryDisposalCallbackResult as i9, type WindmillCallbackControllerHandleCallbackResult as ia, type WindmillCallbackControllerHandleOutcomeCallbackResult as ib, accountingMapping as ic, adminMapping as id, authMapping as ie, buildModule as ig, catalogMapping as ih, crmMapping as ii, getJwtExpiry as ij, inventoryMapping as ik, loyaltyMapping as il, membersMapping as im, methodsWithOrgSlugSet as io, ordersMapping as ip, posMapping as iq, publicServicesMapping as ir, servicesMapping as is, webhooksMapping as it, type AccountingGetCashFlowParams as j, type AccountingGetTaxSummaryParams as k, type CreateInvoiceDto as l, type CreateInvoiceTemplateDto as m, type InvoiceConfigDto as n, type PublicInvoiceControllerDownloadInvoiceByTransactionParams as o, type PublicInvoiceControllerDownloadReceiptParams as p, type PublicInvoiceControllerGeneratePublicLinkParams as q, type TokenRequestDto as r, type AuthExchangeToken201 as s, type CreateOrganizationDto as t, type UpdateOrganizationDto as u, type AdminControllerListMembersParams as v, type UpdateSubscriptionDto as w, type CreateIntegrationDefinitionDto as x, type UpdateIntegrationDefinitionDto as y, type CreateWebhookDto as z };
|