@gymspace/sdk 1.2.16 → 1.2.19
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/dist/index.d.mts +9 -27
- package/dist/index.d.ts +9 -27
- package/dist/index.js +384 -88
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +371 -83
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/models/bulk-messaging.ts +1 -9
- package/src/models/commissions.ts +5 -1
- package/src/models/contracts.ts +1 -19
- package/src/resources/commission-rules.ts +8 -0
- package/dist/.tsbuildinfo +0 -1
package/dist/index.d.mts
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { AxiosRequestConfig } from 'axios';
|
|
2
|
-
import { PaginationParams as PaginationParams$1, ListCollaboratorsParams, Collaborator, UpdateCollaboratorDto, UpdateCollaboratorRoleDto, UpdateCollaboratorStatusDto, ActivityQueryParams, ActivityItem, StatsQueryParams, CollaboratorStats, Role, ContractStatus, CreateInvitationDto, Invitation, ValidateByCodeDto, AcceptInvitationDto } from '@gymspace/shared';
|
|
2
|
+
import { PaginationParams as PaginationParams$1, ListCollaboratorsParams, Collaborator, UpdateCollaboratorDto, UpdateCollaboratorRoleDto, UpdateCollaboratorStatusDto, ActivityQueryParams, ActivityItem, StatsQueryParams, CollaboratorStats, Role, ContractStatus, CancellationReason, SuspensionType, CreateInvitationDto, Invitation, ValidateByCodeDto, AcceptInvitationDto, BulkMessageVariable } from '@gymspace/shared';
|
|
3
3
|
export * from '@gymspace/shared';
|
|
4
|
+
export { BulkMessageVariable } from '@gymspace/shared';
|
|
4
5
|
|
|
5
6
|
interface GymSpaceConfig {
|
|
6
7
|
baseURL: string;
|
|
@@ -895,21 +896,6 @@ declare class MembershipPlansResource extends BaseResource {
|
|
|
895
896
|
getMembershipPlanStats(id: string, options?: RequestOptions): Promise<MembershipPlanStats>;
|
|
896
897
|
}
|
|
897
898
|
|
|
898
|
-
declare enum CancellationReason {
|
|
899
|
-
PRICE_TOO_HIGH = "PRICE_TOO_HIGH",
|
|
900
|
-
NOT_USING_SERVICE = "NOT_USING_SERVICE",
|
|
901
|
-
MOVING_LOCATION = "MOVING_LOCATION",
|
|
902
|
-
FINANCIAL_ISSUES = "FINANCIAL_ISSUES",
|
|
903
|
-
SERVICE_DISSATISFACTION = "SERVICE_DISSATISFACTION",
|
|
904
|
-
TEMPORARY_BREAK = "TEMPORARY_BREAK",
|
|
905
|
-
OTHER = "OTHER"
|
|
906
|
-
}
|
|
907
|
-
declare enum SuspensionType {
|
|
908
|
-
VACATION = "vacation",
|
|
909
|
-
MEDICAL = "medical",
|
|
910
|
-
FINANCIAL = "financial",
|
|
911
|
-
OTHER = "other"
|
|
912
|
-
}
|
|
913
899
|
interface CreateContractDto {
|
|
914
900
|
gymClientId: string;
|
|
915
901
|
gymMembershipPlanId: string;
|
|
@@ -2590,15 +2576,7 @@ interface UpdateBulkTemplateDto {
|
|
|
2590
2576
|
tags?: string[];
|
|
2591
2577
|
isActive?: boolean;
|
|
2592
2578
|
}
|
|
2593
|
-
|
|
2594
|
-
name: string;
|
|
2595
|
-
placeholder: string;
|
|
2596
|
-
description: string;
|
|
2597
|
-
example: string;
|
|
2598
|
-
category: 'client' | 'gym' | 'membership' | 'datetime' | 'custom';
|
|
2599
|
-
required: boolean;
|
|
2600
|
-
formatter?: 'text' | 'currency' | 'date' | 'number';
|
|
2601
|
-
}
|
|
2579
|
+
|
|
2602
2580
|
interface SendBulkMessagesDto {
|
|
2603
2581
|
templateId?: string;
|
|
2604
2582
|
message: string;
|
|
@@ -3096,7 +3074,7 @@ interface CreateCommissionRuleDto {
|
|
|
3096
3074
|
name: string;
|
|
3097
3075
|
type: CommissionRuleType;
|
|
3098
3076
|
percentage: number;
|
|
3099
|
-
criteria
|
|
3077
|
+
criteria: RuleCriteria;
|
|
3100
3078
|
startDate?: string;
|
|
3101
3079
|
endDate?: string;
|
|
3102
3080
|
description?: string;
|
|
@@ -3110,6 +3088,9 @@ interface UpdateCommissionRuleDto {
|
|
|
3110
3088
|
description?: string;
|
|
3111
3089
|
isActive?: boolean;
|
|
3112
3090
|
}
|
|
3091
|
+
interface ReorderCommissionRulesDto {
|
|
3092
|
+
ruleIds: string[];
|
|
3093
|
+
}
|
|
3113
3094
|
interface CommissionRuleFiltersDto {
|
|
3114
3095
|
type?: CommissionRuleType;
|
|
3115
3096
|
isActive?: boolean;
|
|
@@ -3377,6 +3358,7 @@ declare class CommissionRulesResource extends BaseResource {
|
|
|
3377
3358
|
amount?: number;
|
|
3378
3359
|
promotionId?: string;
|
|
3379
3360
|
}, options?: RequestOptions): Promise<CommissionRuleDto | null>;
|
|
3361
|
+
reorderRules(data: ReorderCommissionRulesDto, options?: RequestOptions): Promise<CommissionRuleDto[]>;
|
|
3380
3362
|
}
|
|
3381
3363
|
|
|
3382
3364
|
declare class CommissionCalculationsResource extends BaseResource {
|
|
@@ -3549,4 +3531,4 @@ declare class NetworkError extends GymSpaceError {
|
|
|
3549
3531
|
constructor(message?: string);
|
|
3550
3532
|
}
|
|
3551
3533
|
|
|
3552
|
-
export { type ActivateRenewalDto, ActivitiesResource, type Activity, type ActivityNotification, type ActivityPlanRestriction, type ActivityStats, type ActivityStatsParams, AdminSubscriptionManagementResource, type AdminSubscriptionStatusDto, type AffiliateOrganizationDto, type Amenities, ApiClient, type ApiResponse, type AssetResponseDto, AssetsResource, type AssignTagsDto, type AssignTagsResponse, AuthResource, AuthenticationError, AuthorizationError, type AvailablePlanDto, type BulkLogsResponse, type BulkLogsResponseDto, type BulkMessageLog, type BulkMessageLogDto, type BulkMessageResult, type BulkMessageResultDto,
|
|
3534
|
+
export { type ActivateRenewalDto, ActivitiesResource, type Activity, type ActivityNotification, type ActivityPlanRestriction, type ActivityStats, type ActivityStatsParams, AdminSubscriptionManagementResource, type AdminSubscriptionStatusDto, type AffiliateOrganizationDto, type Amenities, ApiClient, type ApiResponse, type AssetResponseDto, AssetsResource, type AssignTagsDto, type AssignTagsResponse, AuthResource, AuthenticationError, AuthorizationError, type AvailablePlanDto, type BulkLogsResponse, type BulkLogsResponseDto, type BulkMessageLog, type BulkMessageLogDto, type BulkMessageResult, type BulkMessageResultDto, BulkMessagingResource, type BulkTemplate, type BusinessHours, type CancelContractDto, type CancelSubscriptionDto, type CancellationAnalytics, type CatalogGym, type ChangePasswordDto, type ChangePasswordResponseDto, type CheckIn, type CheckInDetail, type CheckInListResponse, type CheckInStats, type CheckInSystemFeatures, type CheckIns, type CheckInsList, CheckInsResource, type CheckLimitResponse, type CityWithGyms, type Client, type ClientCheckInHistory, type ClientManagementFeatures, type ClientStat, type ClientStats, type ClientTag, type ClientTagsResponse, ClientsResource, type CollaboratorReportDto, type CollaboratorRoleDto, CollaboratorsResource, type CommissionCalculationDto, CommissionCalculationsResource, CommissionChangeType, type CommissionComparisonDto, type CommissionConfigDto, CommissionConfigResource, CommissionEntityType, type CommissionFiltersDto, type CommissionHistoryDto, type CommissionHistoryFiltersDto, CommissionPromotionsResource, CommissionReportsResource, type CommissionRuleDto, type CommissionRuleFiltersDto, CommissionRuleType, CommissionRulesResource, type CommissionSimulationDto, CommissionStatus, type CommissionSummaryDto, type CommissionSummaryReportDto, type CompleteGuidedSetupData, type ConfigureFeaturesData, type ConnectionStatusResponse, type Contact, type Contract, type ContractLifecycleEvent, type ContractSettings, ContractsResource, type ContractsRevenue, type CreateActivityDto, type CreateActivityNotificationDto, type CreateBulkTemplateDto, type CreateCheckInDto, type CreateClientDto, type CreateCommissionConfigDto, type CreateCommissionRuleDto, type CreateContractDto, type CreateGymDto, type CreateMembershipPlanDto, type CreatePaymentMethodDto, type CreateProductCategoryDto, type CreateProductDto, type CreateSaleDto, type CreateServiceDto, type CreateSubscriptionPlanDto, type CreateSupplierDto, type CreateTagDto, type CreateTemplateDto, type CreateWhatsAppConfigDto, type CurrentSessionResponse, type CurrentlyInGymResponse, type CustomerSalesReport, DashboardResource, type DashboardStats, type DateRangeParams, type DaySchedule, type Debts, type DeleteActivityParams, type DeleteTagResponse, type DisconnectResponse, type EligibleClient, type EligibleClientsResponse, type ExpiringContract, type FileResponseDto, FilesResource, type FreezeContractDto, type GenerateAIMessageDto, type GenerateAIMessageParams, type GenerateAIMessageResponse, type GenerateAIMessageResponseDto, type GetBulkLogsQueryDto, type GetCheckInStatsParams, type GetClientCheckInHistoryParams, type GetContractsParams, type GetFeaturedGymsParams, type GetGymInvitationsParams, type GetMembershipPlansParams, type GetTagClientsParams, type Gym, type GymAmenities, type GymSchedule, type GymSettings, type GymSocialMedia, type GymSpaceConfig, GymSpaceError, GymSpaceSdk, type GymStats, GymsResource, HealthResource, type HealthResponse, type InitializeConnectionResponse, type InventorySettings, type InvitationValidationResponse, InvitationsResource, type ListContactsResponse, type LoginDto, type LoginResponseDto, type MembershipManagementFeatures, type MembershipPlan, type MembershipPlanStats, MembershipPlansResource, NetworkError, type NewClients, NotFoundError, type NotificationSettings, OnboardingResource, type OnboardingResponse, type OnboardingStatus, OnboardingStep, type Organization, type OrganizationAdminDetails, type OrganizationStats, type OrganizationWithDetails, OrganizationsResource, type PaginatedCommissionResult, type PaginatedResponse, type PaginatedResponseDto, type PaginationParams, type PaginationQueryDto, type PaySaleDto, type PaymentMethod, type PaymentMethodStats, PaymentMethodsResource, type PermissionsGroup, type PreviewTemplateResponse, type PriceDto, type PricingDto, type Product, type ProductCategory, ProductsResource, type PromotionReportDto, type PromotionReportFiltersDto, PublicCatalogResource, type ReactivateContractDto, type ReadyResponse, type RegisterCollaboratorDto, type RegisterOwnerDto, type RejectedClient, type RejectedClientDto, type RemoveTagsDto, type RemoveTagsResponse, type RenewContractDto, type ReorderCommissionRulesDto, type ReportFiltersDto, type RequestOptions, type RequestPasswordResetDto, type RequestPasswordResetResponseDto, type ResendResetCodeDto, type ResendResetCodeResponseDto, type ResendVerificationDto, type ResetPasswordDto, type ResetPasswordResponseDto, type ResumeContractDto, RolesResource, type RuleCriteria, type RuleReportDto, type Sale, type SaleItem, type SaleItemDto, SalesResource, type SalesRevenue, type SalesStats, type SearchActivitiesParams, type SearchCatalogParams, type SearchCheckInsParams, type SearchClientsParams, type SearchPaymentMethodsParams, type SearchProductsParams, type SearchSalesParams, type SearchSuppliersParams, type SearchTagsParams, type SearchTemplatesDto, type SearchWhatsAppMessagesDto, type SendBulkMessagesDto, type SendWhatsAppMessageDto, type SentActivityNotification, type SimulateCommissionDto, type SocialMedia, type StartOnboardingData, type StartOnboardingResponse, type StockMovement, type Subscription, type SubscriptionHistoryDto, type SubscriptionPlan, type SubscriptionPlanDto, SubscriptionPlansResource, type SubscriptionStatusDto, SubscriptionsResource, type Supplier, SuppliersResource, type SuppliersStats, type SuspendContractDto, type Tag, type TagClientsResponse, type TagStatsResponse, type TagWithAssignment, TagsResource, type TimeSlot, type TopSellingProduct, type UpdateActivityDto, type UpdateActivityNotificationDto, type UpdateBulkTemplateDto, type UpdateClientDto, type UpdateCommissionConfigDto, type UpdateCommissionRuleDto, type UpdateGymContractSettingsDto, type UpdateGymDto, type UpdateGymInventorySettingsDto, type UpdateGymScheduleDto, type UpdateGymSettingsData, type UpdateGymSocialMediaDto, type UpdateMembershipPlanDto, type UpdateOrganizationDto, type UpdatePaymentMethodDto, type UpdatePaymentStatusDto, type UpdateProductCategoryDto, type UpdateProductDto, type UpdateProfileDto, type UpdateSaleDto, type UpdateStockDto, type UpdateSubscriptionPlanDto, type UpdateSupplierDto, type UpdateTagDto, type UpdateTemplateDto, type UpdateWhatsAppConfigDto, type UpgradeSubscriptionDto, type UploadAssetDto, type UploadFileDto, type UserProfileDto, UsersResource, ValidationError, type VerifyEmailDto, type VerifyResetCodeDto, type VerifyResetCodeResponseDto, type WeeklySchedule, type WhatsAppConfig, type WhatsAppMessage, WhatsAppResource, type WhatsAppTemplate, WhatsAppTemplatesResource };
|
package/dist/index.d.ts
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { AxiosRequestConfig } from 'axios';
|
|
2
|
-
import { PaginationParams as PaginationParams$1, ListCollaboratorsParams, Collaborator, UpdateCollaboratorDto, UpdateCollaboratorRoleDto, UpdateCollaboratorStatusDto, ActivityQueryParams, ActivityItem, StatsQueryParams, CollaboratorStats, Role, ContractStatus, CreateInvitationDto, Invitation, ValidateByCodeDto, AcceptInvitationDto } from '@gymspace/shared';
|
|
2
|
+
import { PaginationParams as PaginationParams$1, ListCollaboratorsParams, Collaborator, UpdateCollaboratorDto, UpdateCollaboratorRoleDto, UpdateCollaboratorStatusDto, ActivityQueryParams, ActivityItem, StatsQueryParams, CollaboratorStats, Role, ContractStatus, CancellationReason, SuspensionType, CreateInvitationDto, Invitation, ValidateByCodeDto, AcceptInvitationDto, BulkMessageVariable } from '@gymspace/shared';
|
|
3
3
|
export * from '@gymspace/shared';
|
|
4
|
+
export { BulkMessageVariable } from '@gymspace/shared';
|
|
4
5
|
|
|
5
6
|
interface GymSpaceConfig {
|
|
6
7
|
baseURL: string;
|
|
@@ -895,21 +896,6 @@ declare class MembershipPlansResource extends BaseResource {
|
|
|
895
896
|
getMembershipPlanStats(id: string, options?: RequestOptions): Promise<MembershipPlanStats>;
|
|
896
897
|
}
|
|
897
898
|
|
|
898
|
-
declare enum CancellationReason {
|
|
899
|
-
PRICE_TOO_HIGH = "PRICE_TOO_HIGH",
|
|
900
|
-
NOT_USING_SERVICE = "NOT_USING_SERVICE",
|
|
901
|
-
MOVING_LOCATION = "MOVING_LOCATION",
|
|
902
|
-
FINANCIAL_ISSUES = "FINANCIAL_ISSUES",
|
|
903
|
-
SERVICE_DISSATISFACTION = "SERVICE_DISSATISFACTION",
|
|
904
|
-
TEMPORARY_BREAK = "TEMPORARY_BREAK",
|
|
905
|
-
OTHER = "OTHER"
|
|
906
|
-
}
|
|
907
|
-
declare enum SuspensionType {
|
|
908
|
-
VACATION = "vacation",
|
|
909
|
-
MEDICAL = "medical",
|
|
910
|
-
FINANCIAL = "financial",
|
|
911
|
-
OTHER = "other"
|
|
912
|
-
}
|
|
913
899
|
interface CreateContractDto {
|
|
914
900
|
gymClientId: string;
|
|
915
901
|
gymMembershipPlanId: string;
|
|
@@ -2590,15 +2576,7 @@ interface UpdateBulkTemplateDto {
|
|
|
2590
2576
|
tags?: string[];
|
|
2591
2577
|
isActive?: boolean;
|
|
2592
2578
|
}
|
|
2593
|
-
|
|
2594
|
-
name: string;
|
|
2595
|
-
placeholder: string;
|
|
2596
|
-
description: string;
|
|
2597
|
-
example: string;
|
|
2598
|
-
category: 'client' | 'gym' | 'membership' | 'datetime' | 'custom';
|
|
2599
|
-
required: boolean;
|
|
2600
|
-
formatter?: 'text' | 'currency' | 'date' | 'number';
|
|
2601
|
-
}
|
|
2579
|
+
|
|
2602
2580
|
interface SendBulkMessagesDto {
|
|
2603
2581
|
templateId?: string;
|
|
2604
2582
|
message: string;
|
|
@@ -3096,7 +3074,7 @@ interface CreateCommissionRuleDto {
|
|
|
3096
3074
|
name: string;
|
|
3097
3075
|
type: CommissionRuleType;
|
|
3098
3076
|
percentage: number;
|
|
3099
|
-
criteria
|
|
3077
|
+
criteria: RuleCriteria;
|
|
3100
3078
|
startDate?: string;
|
|
3101
3079
|
endDate?: string;
|
|
3102
3080
|
description?: string;
|
|
@@ -3110,6 +3088,9 @@ interface UpdateCommissionRuleDto {
|
|
|
3110
3088
|
description?: string;
|
|
3111
3089
|
isActive?: boolean;
|
|
3112
3090
|
}
|
|
3091
|
+
interface ReorderCommissionRulesDto {
|
|
3092
|
+
ruleIds: string[];
|
|
3093
|
+
}
|
|
3113
3094
|
interface CommissionRuleFiltersDto {
|
|
3114
3095
|
type?: CommissionRuleType;
|
|
3115
3096
|
isActive?: boolean;
|
|
@@ -3377,6 +3358,7 @@ declare class CommissionRulesResource extends BaseResource {
|
|
|
3377
3358
|
amount?: number;
|
|
3378
3359
|
promotionId?: string;
|
|
3379
3360
|
}, options?: RequestOptions): Promise<CommissionRuleDto | null>;
|
|
3361
|
+
reorderRules(data: ReorderCommissionRulesDto, options?: RequestOptions): Promise<CommissionRuleDto[]>;
|
|
3380
3362
|
}
|
|
3381
3363
|
|
|
3382
3364
|
declare class CommissionCalculationsResource extends BaseResource {
|
|
@@ -3549,4 +3531,4 @@ declare class NetworkError extends GymSpaceError {
|
|
|
3549
3531
|
constructor(message?: string);
|
|
3550
3532
|
}
|
|
3551
3533
|
|
|
3552
|
-
export { type ActivateRenewalDto, ActivitiesResource, type Activity, type ActivityNotification, type ActivityPlanRestriction, type ActivityStats, type ActivityStatsParams, AdminSubscriptionManagementResource, type AdminSubscriptionStatusDto, type AffiliateOrganizationDto, type Amenities, ApiClient, type ApiResponse, type AssetResponseDto, AssetsResource, type AssignTagsDto, type AssignTagsResponse, AuthResource, AuthenticationError, AuthorizationError, type AvailablePlanDto, type BulkLogsResponse, type BulkLogsResponseDto, type BulkMessageLog, type BulkMessageLogDto, type BulkMessageResult, type BulkMessageResultDto,
|
|
3534
|
+
export { type ActivateRenewalDto, ActivitiesResource, type Activity, type ActivityNotification, type ActivityPlanRestriction, type ActivityStats, type ActivityStatsParams, AdminSubscriptionManagementResource, type AdminSubscriptionStatusDto, type AffiliateOrganizationDto, type Amenities, ApiClient, type ApiResponse, type AssetResponseDto, AssetsResource, type AssignTagsDto, type AssignTagsResponse, AuthResource, AuthenticationError, AuthorizationError, type AvailablePlanDto, type BulkLogsResponse, type BulkLogsResponseDto, type BulkMessageLog, type BulkMessageLogDto, type BulkMessageResult, type BulkMessageResultDto, BulkMessagingResource, type BulkTemplate, type BusinessHours, type CancelContractDto, type CancelSubscriptionDto, type CancellationAnalytics, type CatalogGym, type ChangePasswordDto, type ChangePasswordResponseDto, type CheckIn, type CheckInDetail, type CheckInListResponse, type CheckInStats, type CheckInSystemFeatures, type CheckIns, type CheckInsList, CheckInsResource, type CheckLimitResponse, type CityWithGyms, type Client, type ClientCheckInHistory, type ClientManagementFeatures, type ClientStat, type ClientStats, type ClientTag, type ClientTagsResponse, ClientsResource, type CollaboratorReportDto, type CollaboratorRoleDto, CollaboratorsResource, type CommissionCalculationDto, CommissionCalculationsResource, CommissionChangeType, type CommissionComparisonDto, type CommissionConfigDto, CommissionConfigResource, CommissionEntityType, type CommissionFiltersDto, type CommissionHistoryDto, type CommissionHistoryFiltersDto, CommissionPromotionsResource, CommissionReportsResource, type CommissionRuleDto, type CommissionRuleFiltersDto, CommissionRuleType, CommissionRulesResource, type CommissionSimulationDto, CommissionStatus, type CommissionSummaryDto, type CommissionSummaryReportDto, type CompleteGuidedSetupData, type ConfigureFeaturesData, type ConnectionStatusResponse, type Contact, type Contract, type ContractLifecycleEvent, type ContractSettings, ContractsResource, type ContractsRevenue, type CreateActivityDto, type CreateActivityNotificationDto, type CreateBulkTemplateDto, type CreateCheckInDto, type CreateClientDto, type CreateCommissionConfigDto, type CreateCommissionRuleDto, type CreateContractDto, type CreateGymDto, type CreateMembershipPlanDto, type CreatePaymentMethodDto, type CreateProductCategoryDto, type CreateProductDto, type CreateSaleDto, type CreateServiceDto, type CreateSubscriptionPlanDto, type CreateSupplierDto, type CreateTagDto, type CreateTemplateDto, type CreateWhatsAppConfigDto, type CurrentSessionResponse, type CurrentlyInGymResponse, type CustomerSalesReport, DashboardResource, type DashboardStats, type DateRangeParams, type DaySchedule, type Debts, type DeleteActivityParams, type DeleteTagResponse, type DisconnectResponse, type EligibleClient, type EligibleClientsResponse, type ExpiringContract, type FileResponseDto, FilesResource, type FreezeContractDto, type GenerateAIMessageDto, type GenerateAIMessageParams, type GenerateAIMessageResponse, type GenerateAIMessageResponseDto, type GetBulkLogsQueryDto, type GetCheckInStatsParams, type GetClientCheckInHistoryParams, type GetContractsParams, type GetFeaturedGymsParams, type GetGymInvitationsParams, type GetMembershipPlansParams, type GetTagClientsParams, type Gym, type GymAmenities, type GymSchedule, type GymSettings, type GymSocialMedia, type GymSpaceConfig, GymSpaceError, GymSpaceSdk, type GymStats, GymsResource, HealthResource, type HealthResponse, type InitializeConnectionResponse, type InventorySettings, type InvitationValidationResponse, InvitationsResource, type ListContactsResponse, type LoginDto, type LoginResponseDto, type MembershipManagementFeatures, type MembershipPlan, type MembershipPlanStats, MembershipPlansResource, NetworkError, type NewClients, NotFoundError, type NotificationSettings, OnboardingResource, type OnboardingResponse, type OnboardingStatus, OnboardingStep, type Organization, type OrganizationAdminDetails, type OrganizationStats, type OrganizationWithDetails, OrganizationsResource, type PaginatedCommissionResult, type PaginatedResponse, type PaginatedResponseDto, type PaginationParams, type PaginationQueryDto, type PaySaleDto, type PaymentMethod, type PaymentMethodStats, PaymentMethodsResource, type PermissionsGroup, type PreviewTemplateResponse, type PriceDto, type PricingDto, type Product, type ProductCategory, ProductsResource, type PromotionReportDto, type PromotionReportFiltersDto, PublicCatalogResource, type ReactivateContractDto, type ReadyResponse, type RegisterCollaboratorDto, type RegisterOwnerDto, type RejectedClient, type RejectedClientDto, type RemoveTagsDto, type RemoveTagsResponse, type RenewContractDto, type ReorderCommissionRulesDto, type ReportFiltersDto, type RequestOptions, type RequestPasswordResetDto, type RequestPasswordResetResponseDto, type ResendResetCodeDto, type ResendResetCodeResponseDto, type ResendVerificationDto, type ResetPasswordDto, type ResetPasswordResponseDto, type ResumeContractDto, RolesResource, type RuleCriteria, type RuleReportDto, type Sale, type SaleItem, type SaleItemDto, SalesResource, type SalesRevenue, type SalesStats, type SearchActivitiesParams, type SearchCatalogParams, type SearchCheckInsParams, type SearchClientsParams, type SearchPaymentMethodsParams, type SearchProductsParams, type SearchSalesParams, type SearchSuppliersParams, type SearchTagsParams, type SearchTemplatesDto, type SearchWhatsAppMessagesDto, type SendBulkMessagesDto, type SendWhatsAppMessageDto, type SentActivityNotification, type SimulateCommissionDto, type SocialMedia, type StartOnboardingData, type StartOnboardingResponse, type StockMovement, type Subscription, type SubscriptionHistoryDto, type SubscriptionPlan, type SubscriptionPlanDto, SubscriptionPlansResource, type SubscriptionStatusDto, SubscriptionsResource, type Supplier, SuppliersResource, type SuppliersStats, type SuspendContractDto, type Tag, type TagClientsResponse, type TagStatsResponse, type TagWithAssignment, TagsResource, type TimeSlot, type TopSellingProduct, type UpdateActivityDto, type UpdateActivityNotificationDto, type UpdateBulkTemplateDto, type UpdateClientDto, type UpdateCommissionConfigDto, type UpdateCommissionRuleDto, type UpdateGymContractSettingsDto, type UpdateGymDto, type UpdateGymInventorySettingsDto, type UpdateGymScheduleDto, type UpdateGymSettingsData, type UpdateGymSocialMediaDto, type UpdateMembershipPlanDto, type UpdateOrganizationDto, type UpdatePaymentMethodDto, type UpdatePaymentStatusDto, type UpdateProductCategoryDto, type UpdateProductDto, type UpdateProfileDto, type UpdateSaleDto, type UpdateStockDto, type UpdateSubscriptionPlanDto, type UpdateSupplierDto, type UpdateTagDto, type UpdateTemplateDto, type UpdateWhatsAppConfigDto, type UpgradeSubscriptionDto, type UploadAssetDto, type UploadFileDto, type UserProfileDto, UsersResource, ValidationError, type VerifyEmailDto, type VerifyResetCodeDto, type VerifyResetCodeResponseDto, type WeeklySchedule, type WhatsAppConfig, type WhatsAppMessage, WhatsAppResource, type WhatsAppTemplate, WhatsAppTemplatesResource };
|