@gymspace/sdk 1.3.4 → 1.4.1
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 +12 -6
- package/dist/index.d.ts +12 -6
- package/dist/index.js +334 -146
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +326 -147
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/models/activities.ts +2 -2
- package/src/models/suppliers.ts +6 -0
- package/src/resources/activities.ts +7 -7
- package/dist/.tsbuildinfo +0 -1
package/dist/index.d.mts
CHANGED
|
@@ -2308,6 +2308,8 @@ interface CreateSupplierDto {
|
|
|
2308
2308
|
phone?: string;
|
|
2309
2309
|
email?: string;
|
|
2310
2310
|
address?: string;
|
|
2311
|
+
documentType?: 'RUC' | 'DNI' | 'CE' | 'PASSPORT';
|
|
2312
|
+
documentNumber?: string;
|
|
2311
2313
|
}
|
|
2312
2314
|
interface UpdateSupplierDto {
|
|
2313
2315
|
name?: string;
|
|
@@ -2315,6 +2317,8 @@ interface UpdateSupplierDto {
|
|
|
2315
2317
|
phone?: string;
|
|
2316
2318
|
email?: string;
|
|
2317
2319
|
address?: string;
|
|
2320
|
+
documentType?: 'RUC' | 'DNI' | 'CE' | 'PASSPORT';
|
|
2321
|
+
documentNumber?: string;
|
|
2318
2322
|
}
|
|
2319
2323
|
interface Supplier {
|
|
2320
2324
|
id: string;
|
|
@@ -2324,6 +2328,8 @@ interface Supplier {
|
|
|
2324
2328
|
phone?: string;
|
|
2325
2329
|
email?: string;
|
|
2326
2330
|
address?: string;
|
|
2331
|
+
documentType?: 'RUC' | 'DNI' | 'CE' | 'PASSPORT';
|
|
2332
|
+
documentNumber?: string;
|
|
2327
2333
|
createdAt: string;
|
|
2328
2334
|
updatedAt: string;
|
|
2329
2335
|
createdBy?: {
|
|
@@ -3013,7 +3019,7 @@ interface Activity {
|
|
|
3013
3019
|
recurrenceEndDate?: string;
|
|
3014
3020
|
isActive: boolean;
|
|
3015
3021
|
planRestrictions: ActivityPlanRestriction[];
|
|
3016
|
-
notifications?:
|
|
3022
|
+
notifications?: ActivityNotificationDto[];
|
|
3017
3023
|
createdByUserId: string;
|
|
3018
3024
|
updatedByUserId?: string;
|
|
3019
3025
|
createdAt: string;
|
|
@@ -3048,7 +3054,7 @@ interface UpdateActivityNotificationDto {
|
|
|
3048
3054
|
advanceTimeMinutes?: number;
|
|
3049
3055
|
isActive?: boolean;
|
|
3050
3056
|
}
|
|
3051
|
-
interface
|
|
3057
|
+
interface ActivityNotificationDto {
|
|
3052
3058
|
id: string;
|
|
3053
3059
|
activityId: string;
|
|
3054
3060
|
templateId: string;
|
|
@@ -3109,11 +3115,11 @@ declare class ActivitiesResource extends BaseResource {
|
|
|
3109
3115
|
getActivity(id: string, options?: RequestOptions): Promise<Activity>;
|
|
3110
3116
|
updateActivity(id: string, data: UpdateActivityDto, options?: RequestOptions): Promise<Activity>;
|
|
3111
3117
|
deleteActivity(id: string, params?: DeleteActivityParams, options?: RequestOptions): Promise<void>;
|
|
3112
|
-
createNotification(activityId: string, data: CreateActivityNotificationDto, options?: RequestOptions): Promise<
|
|
3118
|
+
createNotification(activityId: string, data: CreateActivityNotificationDto, options?: RequestOptions): Promise<ActivityNotificationDto>;
|
|
3113
3119
|
getNotifications(activityId: string, options?: RequestOptions): Promise<{
|
|
3114
|
-
data:
|
|
3120
|
+
data: ActivityNotificationDto[];
|
|
3115
3121
|
}>;
|
|
3116
|
-
updateNotification(activityId: string, notificationId: string, data: UpdateActivityNotificationDto, options?: RequestOptions): Promise<
|
|
3122
|
+
updateNotification(activityId: string, notificationId: string, data: UpdateActivityNotificationDto, options?: RequestOptions): Promise<ActivityNotificationDto>;
|
|
3117
3123
|
deleteNotification(activityId: string, notificationId: string, options?: RequestOptions): Promise<void>;
|
|
3118
3124
|
getStats(params?: ActivityStatsParams, options?: RequestOptions): Promise<ActivityStats>;
|
|
3119
3125
|
getEligibleClients(activityId: string, options?: RequestOptions): Promise<EligibleClientsResponse>;
|
|
@@ -3842,4 +3848,4 @@ declare class NetworkError extends GymSpaceError {
|
|
|
3842
3848
|
constructor(message?: string);
|
|
3843
3849
|
}
|
|
3844
3850
|
|
|
3845
|
-
export { type ActivateRenewalDto, ActivitiesResource, type Activity, type
|
|
3851
|
+
export { type ActivateRenewalDto, ActivitiesResource, type Activity, type ActivityNotificationDto, type ActivityPlanRestriction, type ActivityStats, type ActivityStatsParams, AdminCatalogResource, 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 CatalogActivity, type CatalogGym, type CatalogHeroSection, type CatalogLead, type CatalogLocation, type CatalogPlan, type CatalogResponse, type CatalogSocialMedia, 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 CreateLeadDto, 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 FormattedSchedule, type FreezeContractDto, type GenerateAIMessageDto, type GenerateAIMessageParams, type GenerateAIMessageResponse, type GenerateAIMessageResponseDto, type GetBulkLogsQueryDto, type GetCheckInStatsParams, type GetClientCheckInHistoryParams, type GetContractsParams, type GetGymInvitationsParams, type GetMembershipPlansParams, type GetTagClientsParams, type Gym, type GymAmenities, type GymCatalog, type GymSchedule, type GymSettings, type GymSocialMedia, type GymSpaceConfig, GymSpaceError, GymSpaceSdk, type GymStats, GymsResource, HealthResource, type HealthResponse, type InitializeConnectionResponse, type InventorySettings, type InvitationValidationResponse, InvitationsResource, type LeadFiltersDto, LeadGender, type LeadSubmissionResponse, type ListContactsResponse, type LoginDto, type LoginResponseDto, type MembershipManagementFeatures, type MembershipPlan, type MembershipPlanStats, MembershipPlansResource, NetworkError, type NewClients, NotFoundError, type NotificationSettings, OnboardingCacheStatus, OnboardingResource, type OnboardingResponse, type OnboardingStatus, type OnboardingStatusResponse, 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 SearchCatalogResponse, type SearchCheckInsParams, type SearchClientsParams, type SearchPaymentMethodsParams, type SearchProductsParams, type SearchSalesParams, type SearchSuppliersParams, type SearchTagsParams, type SearchTemplatesDto, type SearchWhatsAppMessagesDto, type SendBulkMessagesDto, type SendCatalogMessageDto, type SendCatalogMessageResponse, 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 UpdateCatalogConfigDto, 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
|
@@ -2308,6 +2308,8 @@ interface CreateSupplierDto {
|
|
|
2308
2308
|
phone?: string;
|
|
2309
2309
|
email?: string;
|
|
2310
2310
|
address?: string;
|
|
2311
|
+
documentType?: 'RUC' | 'DNI' | 'CE' | 'PASSPORT';
|
|
2312
|
+
documentNumber?: string;
|
|
2311
2313
|
}
|
|
2312
2314
|
interface UpdateSupplierDto {
|
|
2313
2315
|
name?: string;
|
|
@@ -2315,6 +2317,8 @@ interface UpdateSupplierDto {
|
|
|
2315
2317
|
phone?: string;
|
|
2316
2318
|
email?: string;
|
|
2317
2319
|
address?: string;
|
|
2320
|
+
documentType?: 'RUC' | 'DNI' | 'CE' | 'PASSPORT';
|
|
2321
|
+
documentNumber?: string;
|
|
2318
2322
|
}
|
|
2319
2323
|
interface Supplier {
|
|
2320
2324
|
id: string;
|
|
@@ -2324,6 +2328,8 @@ interface Supplier {
|
|
|
2324
2328
|
phone?: string;
|
|
2325
2329
|
email?: string;
|
|
2326
2330
|
address?: string;
|
|
2331
|
+
documentType?: 'RUC' | 'DNI' | 'CE' | 'PASSPORT';
|
|
2332
|
+
documentNumber?: string;
|
|
2327
2333
|
createdAt: string;
|
|
2328
2334
|
updatedAt: string;
|
|
2329
2335
|
createdBy?: {
|
|
@@ -3013,7 +3019,7 @@ interface Activity {
|
|
|
3013
3019
|
recurrenceEndDate?: string;
|
|
3014
3020
|
isActive: boolean;
|
|
3015
3021
|
planRestrictions: ActivityPlanRestriction[];
|
|
3016
|
-
notifications?:
|
|
3022
|
+
notifications?: ActivityNotificationDto[];
|
|
3017
3023
|
createdByUserId: string;
|
|
3018
3024
|
updatedByUserId?: string;
|
|
3019
3025
|
createdAt: string;
|
|
@@ -3048,7 +3054,7 @@ interface UpdateActivityNotificationDto {
|
|
|
3048
3054
|
advanceTimeMinutes?: number;
|
|
3049
3055
|
isActive?: boolean;
|
|
3050
3056
|
}
|
|
3051
|
-
interface
|
|
3057
|
+
interface ActivityNotificationDto {
|
|
3052
3058
|
id: string;
|
|
3053
3059
|
activityId: string;
|
|
3054
3060
|
templateId: string;
|
|
@@ -3109,11 +3115,11 @@ declare class ActivitiesResource extends BaseResource {
|
|
|
3109
3115
|
getActivity(id: string, options?: RequestOptions): Promise<Activity>;
|
|
3110
3116
|
updateActivity(id: string, data: UpdateActivityDto, options?: RequestOptions): Promise<Activity>;
|
|
3111
3117
|
deleteActivity(id: string, params?: DeleteActivityParams, options?: RequestOptions): Promise<void>;
|
|
3112
|
-
createNotification(activityId: string, data: CreateActivityNotificationDto, options?: RequestOptions): Promise<
|
|
3118
|
+
createNotification(activityId: string, data: CreateActivityNotificationDto, options?: RequestOptions): Promise<ActivityNotificationDto>;
|
|
3113
3119
|
getNotifications(activityId: string, options?: RequestOptions): Promise<{
|
|
3114
|
-
data:
|
|
3120
|
+
data: ActivityNotificationDto[];
|
|
3115
3121
|
}>;
|
|
3116
|
-
updateNotification(activityId: string, notificationId: string, data: UpdateActivityNotificationDto, options?: RequestOptions): Promise<
|
|
3122
|
+
updateNotification(activityId: string, notificationId: string, data: UpdateActivityNotificationDto, options?: RequestOptions): Promise<ActivityNotificationDto>;
|
|
3117
3123
|
deleteNotification(activityId: string, notificationId: string, options?: RequestOptions): Promise<void>;
|
|
3118
3124
|
getStats(params?: ActivityStatsParams, options?: RequestOptions): Promise<ActivityStats>;
|
|
3119
3125
|
getEligibleClients(activityId: string, options?: RequestOptions): Promise<EligibleClientsResponse>;
|
|
@@ -3842,4 +3848,4 @@ declare class NetworkError extends GymSpaceError {
|
|
|
3842
3848
|
constructor(message?: string);
|
|
3843
3849
|
}
|
|
3844
3850
|
|
|
3845
|
-
export { type ActivateRenewalDto, ActivitiesResource, type Activity, type
|
|
3851
|
+
export { type ActivateRenewalDto, ActivitiesResource, type Activity, type ActivityNotificationDto, type ActivityPlanRestriction, type ActivityStats, type ActivityStatsParams, AdminCatalogResource, 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 CatalogActivity, type CatalogGym, type CatalogHeroSection, type CatalogLead, type CatalogLocation, type CatalogPlan, type CatalogResponse, type CatalogSocialMedia, 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 CreateLeadDto, 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 FormattedSchedule, type FreezeContractDto, type GenerateAIMessageDto, type GenerateAIMessageParams, type GenerateAIMessageResponse, type GenerateAIMessageResponseDto, type GetBulkLogsQueryDto, type GetCheckInStatsParams, type GetClientCheckInHistoryParams, type GetContractsParams, type GetGymInvitationsParams, type GetMembershipPlansParams, type GetTagClientsParams, type Gym, type GymAmenities, type GymCatalog, type GymSchedule, type GymSettings, type GymSocialMedia, type GymSpaceConfig, GymSpaceError, GymSpaceSdk, type GymStats, GymsResource, HealthResource, type HealthResponse, type InitializeConnectionResponse, type InventorySettings, type InvitationValidationResponse, InvitationsResource, type LeadFiltersDto, LeadGender, type LeadSubmissionResponse, type ListContactsResponse, type LoginDto, type LoginResponseDto, type MembershipManagementFeatures, type MembershipPlan, type MembershipPlanStats, MembershipPlansResource, NetworkError, type NewClients, NotFoundError, type NotificationSettings, OnboardingCacheStatus, OnboardingResource, type OnboardingResponse, type OnboardingStatus, type OnboardingStatusResponse, 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 SearchCatalogResponse, type SearchCheckInsParams, type SearchClientsParams, type SearchPaymentMethodsParams, type SearchProductsParams, type SearchSalesParams, type SearchSuppliersParams, type SearchTagsParams, type SearchTemplatesDto, type SearchWhatsAppMessagesDto, type SendBulkMessagesDto, type SendCatalogMessageDto, type SendCatalogMessageResponse, 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 UpdateCatalogConfigDto, 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 };
|