@techzunction/sdk 0.1.1 → 0.3.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/dist/index.d.cts CHANGED
@@ -475,6 +475,46 @@ interface WalletPack {
475
475
  desc: string | null;
476
476
  isPopular: boolean;
477
477
  }
478
+ interface WalletBalance {
479
+ balancePaise: number;
480
+ }
481
+ interface WalletTransaction {
482
+ id: string;
483
+ type: 'topup' | 'debit' | 'refund';
484
+ amountPaise: number;
485
+ balanceAfterPaise: number;
486
+ description: string | null;
487
+ sessionId: string | null;
488
+ createdAt: string;
489
+ }
490
+ type WatchSessionStatusType = 'active' | 'paused' | 'capped' | 'ended' | 'insufficient_funds';
491
+ interface WatchSessionResponse {
492
+ sessionId: string;
493
+ tmdbId: number;
494
+ movieTitle: string;
495
+ ratePerMinPaise: number;
496
+ meterCapPaise: number;
497
+ status: WatchSessionStatusType;
498
+ balancePaise: number;
499
+ }
500
+ interface WatchSessionStatus {
501
+ sessionId: string;
502
+ status: WatchSessionStatusType;
503
+ totalBilledPaise: number;
504
+ minutesBilled: number;
505
+ ratePerMinPaise: number;
506
+ meterCapPaise: number;
507
+ balancePaise: number;
508
+ }
509
+ interface WatchSessionSummary {
510
+ sessionId: string;
511
+ movieTitle: string;
512
+ minutesBilled: number;
513
+ totalBilledPaise: number;
514
+ meterCapPaise: number;
515
+ hitCap: boolean;
516
+ balancePaise: number;
517
+ }
478
518
  interface UploadResult {
479
519
  url: string;
480
520
  publicId: string;
@@ -507,6 +547,78 @@ interface StorefrontConfig {
507
547
  };
508
548
  [key: string]: unknown;
509
549
  }
550
+ interface StudentPassStatus {
551
+ id: string;
552
+ status: 'pending' | 'approved' | 'rejected' | 'expired';
553
+ studentIdNumber: string;
554
+ idImageUrl: string | null;
555
+ expiresAt: string | null;
556
+ createdAt: string;
557
+ reviewedAt: string | null;
558
+ rejectionReason: string | null;
559
+ institution: {
560
+ id: string;
561
+ name: string;
562
+ } | null;
563
+ }
564
+ interface StudentDiscount {
565
+ id: string;
566
+ name: string;
567
+ description: string | null;
568
+ institutionId: string | null;
569
+ institution: {
570
+ id: string;
571
+ name: string;
572
+ } | null;
573
+ discountType: string;
574
+ discountValue: number;
575
+ maxDiscountCap: number | null;
576
+ minOrderAmount: number | null;
577
+ isActive: boolean;
578
+ validFrom: string | null;
579
+ validTo: string | null;
580
+ createdAt: string;
581
+ }
582
+ interface DiscountPreview {
583
+ applicable: boolean;
584
+ discountAmount: number;
585
+ discountName: string | null;
586
+ message: string | null;
587
+ }
588
+ interface Institution {
589
+ id: string;
590
+ name: string;
591
+ }
592
+ interface MealPlan {
593
+ id: string;
594
+ name: string;
595
+ description: string | null;
596
+ price: number;
597
+ durationDays: number;
598
+ items: Record<string, unknown> | null;
599
+ isActive: boolean;
600
+ subscriptionsCount: number;
601
+ createdAt: string;
602
+ }
603
+ interface MealSubscription {
604
+ id: string;
605
+ mealPlanId: string;
606
+ mealPlan: MealPlan;
607
+ startDate: string;
608
+ endDate: string;
609
+ status: string;
610
+ createdAt: string;
611
+ }
612
+ interface HelpArticle {
613
+ id: string;
614
+ slug: string;
615
+ title: string;
616
+ body: string;
617
+ category: string | null;
618
+ sortOrder: number;
619
+ isPublished: boolean;
620
+ createdAt: string;
621
+ }
510
622
  interface AdminOrganization {
511
623
  id: string;
512
624
  name: string;
@@ -888,6 +1000,30 @@ interface UpdateMovieProgressDto {
888
1000
  progress: number;
889
1001
  duration: number;
890
1002
  }
1003
+ interface ApplyStudentPassDto {
1004
+ studentIdNumber: string;
1005
+ idImageUrl: string;
1006
+ institutionId?: string;
1007
+ }
1008
+ interface PreviewStudentDiscountDto {
1009
+ cartTotal: number;
1010
+ itemIds?: string[];
1011
+ }
1012
+ interface SubscribeMealPlanDto {
1013
+ mealPlanId: string;
1014
+ }
1015
+ interface TopUpWalletDto {
1016
+ razorpayPaymentId: string;
1017
+ razorpayOrderId: string;
1018
+ razorpaySignature: string;
1019
+ amountPaise: number;
1020
+ bonusPaise?: number;
1021
+ }
1022
+ interface StartWatchSessionDto {
1023
+ movieTitle: string;
1024
+ ratePerMinPaise: number;
1025
+ meterCapPaise: number;
1026
+ }
891
1027
 
892
1028
  interface StaffRegisterDto {
893
1029
  name: string;
@@ -1107,6 +1243,76 @@ interface UpdateSupportTicketDto {
1107
1243
  category?: string;
1108
1244
  assigneeId?: string;
1109
1245
  }
1246
+ interface ListStudentPassesQuery extends PaginatedQuery {
1247
+ status?: string;
1248
+ }
1249
+ interface ReviewStudentPassDto {
1250
+ status: 'approved' | 'rejected';
1251
+ rejectionReason?: string;
1252
+ }
1253
+ interface BulkReviewStudentPassesDto {
1254
+ ids: string[];
1255
+ status: 'approved' | 'rejected';
1256
+ rejectionReason?: string;
1257
+ }
1258
+ interface CreateStudentDiscountDto {
1259
+ name: string;
1260
+ description?: string;
1261
+ institutionId?: string;
1262
+ discountType: string;
1263
+ discountValue: number;
1264
+ maxDiscountCap?: number;
1265
+ minOrderAmount?: number;
1266
+ isActive?: boolean;
1267
+ validFrom?: string;
1268
+ validTo?: string;
1269
+ [key: string]: unknown;
1270
+ }
1271
+ interface UpdateStudentDiscountDto {
1272
+ name?: string;
1273
+ description?: string;
1274
+ discountType?: string;
1275
+ discountValue?: number;
1276
+ isActive?: boolean;
1277
+ [key: string]: unknown;
1278
+ }
1279
+ interface CreateInstitutionDto {
1280
+ name: string;
1281
+ }
1282
+ interface UpdateInstitutionDto {
1283
+ name?: string;
1284
+ }
1285
+ interface CreateMealPlanDto {
1286
+ name: string;
1287
+ description?: string;
1288
+ price: number;
1289
+ durationDays: number;
1290
+ items?: Record<string, unknown>;
1291
+ isActive?: boolean;
1292
+ }
1293
+ interface UpdateMealPlanDto {
1294
+ name?: string;
1295
+ description?: string;
1296
+ price?: number;
1297
+ durationDays?: number;
1298
+ items?: Record<string, unknown>;
1299
+ isActive?: boolean;
1300
+ }
1301
+ interface CreateHelpArticleDto {
1302
+ title: string;
1303
+ slug?: string;
1304
+ body: string;
1305
+ category?: string;
1306
+ sortOrder?: number;
1307
+ }
1308
+ interface UpdateHelpArticleDto {
1309
+ title?: string;
1310
+ slug?: string;
1311
+ body?: string;
1312
+ category?: string;
1313
+ sortOrder?: number;
1314
+ isPublished?: boolean;
1315
+ }
1110
1316
 
1111
1317
  interface SuperAdminLoginDto {
1112
1318
  email: string;
@@ -1410,6 +1616,11 @@ declare const TZ: {
1410
1616
  buy(id: string): TZQuery<{
1411
1617
  entitlementId: string;
1412
1618
  }>;
1619
+ startSession(tmdbId: number, data: StartWatchSessionDto): TZQuery<WatchSessionResponse>;
1620
+ getSessionStatus(sessionId: string): TZQuery<WatchSessionStatus>;
1621
+ pauseSession(sessionId: string): TZQuery<WatchSessionStatus>;
1622
+ resumeSession(sessionId: string): TZQuery<WatchSessionStatus>;
1623
+ endSession(sessionId: string): TZQuery<WatchSessionSummary>;
1413
1624
  getWatchlist(): TZQuery<Movie[]>;
1414
1625
  addToWatchlist(catalogItemId: string): TZQuery<void>;
1415
1626
  removeFromWatchlist(catalogItemId: string): TZQuery<void>;
@@ -1456,6 +1667,25 @@ declare const TZ: {
1456
1667
  };
1457
1668
  wallet: {
1458
1669
  getPacks(): TZQuery<WalletPack[]>;
1670
+ getBalance(): TZQuery<WalletBalance>;
1671
+ topUp(data: TopUpWalletDto): TZQuery<WalletBalance>;
1672
+ getTransactions(params?: PaginatedQuery): TZPaginatedQuery<WalletTransaction>;
1673
+ };
1674
+ student: {
1675
+ getPassStatus(): TZQuery<StudentPassStatus>;
1676
+ applyForPass(data: ApplyStudentPassDto): TZQuery<StudentPassStatus>;
1677
+ previewDiscount(data: PreviewStudentDiscountDto): TZQuery<DiscountPreview>;
1678
+ };
1679
+ mealPlans: {
1680
+ list(): TZQuery<MealPlan[]>;
1681
+ get(id: string): TZQuery<MealPlan>;
1682
+ subscribe(data: SubscribeMealPlanDto): TZQuery<MealSubscription>;
1683
+ mySubscriptions(): TZQuery<MealSubscription[]>;
1684
+ cancelSubscription(id: string): TZQuery<MealSubscription>;
1685
+ };
1686
+ help: {
1687
+ list(): TZQuery<HelpArticle[]>;
1688
+ getBySlug(slug: string): TZQuery<HelpArticle>;
1459
1689
  };
1460
1690
  };
1461
1691
  /** Admin namespace — all staff/org-admin APIs */
@@ -1781,6 +2011,41 @@ declare const TZ: {
1781
2011
  logs(params?: PaginatedQuery): TZPaginatedQuery<unknown>;
1782
2012
  };
1783
2013
  upload(file: File | Blob, folder?: string): TZQuery<UploadResult>;
2014
+ studentPasses: {
2015
+ list(params?: ListStudentPassesQuery): TZPaginatedQuery<StudentPassStatus>;
2016
+ get(id: string): TZQuery<StudentPassStatus>;
2017
+ review(id: string, data: ReviewStudentPassDto): TZQuery<StudentPassStatus>;
2018
+ bulkReview(data: BulkReviewStudentPassesDto): TZQuery<void>;
2019
+ stats(): TZQuery<Record<string, unknown>>;
2020
+ };
2021
+ studentDiscounts: {
2022
+ list(params?: PaginatedQuery): TZPaginatedQuery<StudentDiscount>;
2023
+ get(id: string): TZQuery<StudentDiscount>;
2024
+ create(data: CreateStudentDiscountDto): TZQuery<StudentDiscount>;
2025
+ update(id: string, data: UpdateStudentDiscountDto): TZQuery<StudentDiscount>;
2026
+ remove(id: string): TZQuery<void>;
2027
+ };
2028
+ institutions: {
2029
+ list(params?: PaginatedQuery): TZPaginatedQuery<Institution>;
2030
+ get(id: string): TZQuery<Institution>;
2031
+ create(data: CreateInstitutionDto): TZQuery<Institution>;
2032
+ update(id: string, data: UpdateInstitutionDto): TZQuery<Institution>;
2033
+ remove(id: string): TZQuery<void>;
2034
+ };
2035
+ mealPlans: {
2036
+ list(params?: PaginatedQuery): TZPaginatedQuery<MealPlan>;
2037
+ get(id: string): TZQuery<MealPlan>;
2038
+ create(data: CreateMealPlanDto): TZQuery<MealPlan>;
2039
+ update(id: string, data: UpdateMealPlanDto): TZQuery<MealPlan>;
2040
+ remove(id: string): TZQuery<void>;
2041
+ };
2042
+ helpArticles: {
2043
+ list(params?: PaginatedQuery): TZPaginatedQuery<HelpArticle>;
2044
+ get(id: string): TZQuery<HelpArticle>;
2045
+ create(data: CreateHelpArticleDto): TZQuery<HelpArticle>;
2046
+ update(id: string, data: UpdateHelpArticleDto): TZQuery<HelpArticle>;
2047
+ remove(id: string): TZQuery<void>;
2048
+ };
1784
2049
  };
1785
2050
  /** Super Admin namespace — platform-wide management APIs */
1786
2051
  readonly superAdmin: {
@@ -2035,6 +2300,11 @@ declare function createTZ(options?: TZInitOptions): {
2035
2300
  buy(id: string): TZQuery<{
2036
2301
  entitlementId: string;
2037
2302
  }>;
2303
+ startSession(tmdbId: number, data: StartWatchSessionDto): TZQuery<WatchSessionResponse>;
2304
+ getSessionStatus(sessionId: string): TZQuery<WatchSessionStatus>;
2305
+ pauseSession(sessionId: string): TZQuery<WatchSessionStatus>;
2306
+ resumeSession(sessionId: string): TZQuery<WatchSessionStatus>;
2307
+ endSession(sessionId: string): TZQuery<WatchSessionSummary>;
2038
2308
  getWatchlist(): TZQuery<Movie[]>;
2039
2309
  addToWatchlist(catalogItemId: string): TZQuery<void>;
2040
2310
  removeFromWatchlist(catalogItemId: string): TZQuery<void>;
@@ -2081,6 +2351,25 @@ declare function createTZ(options?: TZInitOptions): {
2081
2351
  };
2082
2352
  wallet: {
2083
2353
  getPacks(): TZQuery<WalletPack[]>;
2354
+ getBalance(): TZQuery<WalletBalance>;
2355
+ topUp(data: TopUpWalletDto): TZQuery<WalletBalance>;
2356
+ getTransactions(params?: PaginatedQuery): TZPaginatedQuery<WalletTransaction>;
2357
+ };
2358
+ student: {
2359
+ getPassStatus(): TZQuery<StudentPassStatus>;
2360
+ applyForPass(data: ApplyStudentPassDto): TZQuery<StudentPassStatus>;
2361
+ previewDiscount(data: PreviewStudentDiscountDto): TZQuery<DiscountPreview>;
2362
+ };
2363
+ mealPlans: {
2364
+ list(): TZQuery<MealPlan[]>;
2365
+ get(id: string): TZQuery<MealPlan>;
2366
+ subscribe(data: SubscribeMealPlanDto): TZQuery<MealSubscription>;
2367
+ mySubscriptions(): TZQuery<MealSubscription[]>;
2368
+ cancelSubscription(id: string): TZQuery<MealSubscription>;
2369
+ };
2370
+ help: {
2371
+ list(): TZQuery<HelpArticle[]>;
2372
+ getBySlug(slug: string): TZQuery<HelpArticle>;
2084
2373
  };
2085
2374
  };
2086
2375
  admin: {
@@ -2405,6 +2694,41 @@ declare function createTZ(options?: TZInitOptions): {
2405
2694
  logs(params?: PaginatedQuery): TZPaginatedQuery<unknown>;
2406
2695
  };
2407
2696
  upload(file: File | Blob, folder?: string): TZQuery<UploadResult>;
2697
+ studentPasses: {
2698
+ list(params?: ListStudentPassesQuery): TZPaginatedQuery<StudentPassStatus>;
2699
+ get(id: string): TZQuery<StudentPassStatus>;
2700
+ review(id: string, data: ReviewStudentPassDto): TZQuery<StudentPassStatus>;
2701
+ bulkReview(data: BulkReviewStudentPassesDto): TZQuery<void>;
2702
+ stats(): TZQuery<Record<string, unknown>>;
2703
+ };
2704
+ studentDiscounts: {
2705
+ list(params?: PaginatedQuery): TZPaginatedQuery<StudentDiscount>;
2706
+ get(id: string): TZQuery<StudentDiscount>;
2707
+ create(data: CreateStudentDiscountDto): TZQuery<StudentDiscount>;
2708
+ update(id: string, data: UpdateStudentDiscountDto): TZQuery<StudentDiscount>;
2709
+ remove(id: string): TZQuery<void>;
2710
+ };
2711
+ institutions: {
2712
+ list(params?: PaginatedQuery): TZPaginatedQuery<Institution>;
2713
+ get(id: string): TZQuery<Institution>;
2714
+ create(data: CreateInstitutionDto): TZQuery<Institution>;
2715
+ update(id: string, data: UpdateInstitutionDto): TZQuery<Institution>;
2716
+ remove(id: string): TZQuery<void>;
2717
+ };
2718
+ mealPlans: {
2719
+ list(params?: PaginatedQuery): TZPaginatedQuery<MealPlan>;
2720
+ get(id: string): TZQuery<MealPlan>;
2721
+ create(data: CreateMealPlanDto): TZQuery<MealPlan>;
2722
+ update(id: string, data: UpdateMealPlanDto): TZQuery<MealPlan>;
2723
+ remove(id: string): TZQuery<void>;
2724
+ };
2725
+ helpArticles: {
2726
+ list(params?: PaginatedQuery): TZPaginatedQuery<HelpArticle>;
2727
+ get(id: string): TZQuery<HelpArticle>;
2728
+ create(data: CreateHelpArticleDto): TZQuery<HelpArticle>;
2729
+ update(id: string, data: UpdateHelpArticleDto): TZQuery<HelpArticle>;
2730
+ remove(id: string): TZQuery<void>;
2731
+ };
2408
2732
  };
2409
2733
  superAdmin: {
2410
2734
  auth: {
@@ -2474,4 +2798,4 @@ declare function createTZ(options?: TZInitOptions): {
2474
2798
  }>;
2475
2799
  };
2476
2800
 
2477
- export { type AddCartItemDto, type AddSegmentMembersDto, type Address, type AdjustLoyaltyPointsDto, type AdminCancelBookingDto, type AdminListOrdersQuery, type AdminOrganization, type ApiError, type ApiKey, type AssignPropertyUnitsDto, type AssignStaffRolesDto, type AuditLog, type AuthResponse, type AuthScope, type AuthTokens, type BulkUpdateSettingsDto, type BulkUpsertEndUsersDto, type CalculateDeliveryDto, type CancelPropertyBookingDto, type Cart, type CartItemOption, type CartLineItem, type CatalogCategory, type CatalogItem, type CatalogItemVariant, type CatalogOption, type CatalogOptionGroup, type ChangeEndUserPasswordDto, type CheckPropertyAvailabilityQuery, type CheckReservationAvailabilityQuery, type CompleteSignupDto, type ContactMessage, type ContentPost, type CouponValidation, type CreateAddressDto, type CreateApiKeyDto, type CreateCatalogCategoryDto, type CreateCatalogOptionDto, type CreateCatalogOptionGroupDto, type CreateCatalogVariantDto, type CreateOrderDto, type CreatePaymentOrderDto, type CreatePropertyAmenityDto, type CreatePropertyBookingDto, type CreatePropertyPaymentOrderDto, type CreateReservationDto, type CreateReviewDto, type CreateRoleDto, type CreateSuperAdminDto, type CreateSupportTicketDto, type DeliveryCalculation, type DeliveryTracking, type EndUser, type EndUserProfile, type EndUserRequestResetDto, type EndUserResetPasswordDto, type EndUserSendOtpDto, type EndUserTagsDto, type EndUserVerifyOtpDto, type GetCatalogItemsQuery, type GiftCard, type InviteStaffUserDto, type ListCatalogItemsQuery, type ListContentQuery, type ListEndUsersQuery, type ListMoviesQuery, type ListOrdersQuery, type ListOrganizationsQuery, type ListReviewsQuery, type ListStaffUsersQuery, type ListSuperAdminsQuery, type LocationHours, type LoginEndUserDto, type LoyaltyAccount, type LoyaltyRedemption, type LoyaltyReward, type LoyaltyTransaction, type Movie, type MovieDetail, type Notification, type Order, type OrderItem, type OrderStatus, type OrderType, type PaginatedQuery, type PaginatedResponse, type PaginationParams, type PaymentMethod, type PaymentOrder, type PaymentVerification, type PlatformPlan, type PreviewTemplateDto, type Promotion, type PropertyAvailability, type PropertyBooking, type PropertyPriceResolution, type PropertyType, type PurchaseGiftCardDto, type RawResponse, type RedeemGiftCardDto, type RedeemLoyaltyRewardDto, type ReferralInfo, type ReferralValidation, type RegisterEndUserDto, type ReorderDto, type ReplySupportTicketDto, type ReportOrderIssueDto, type RequestMagicLinkDto, type Reservation, type ReservationSlot, type ResolvePropertyPriceDto, type Review, type Role, type ScheduleCampaignDto, ScopedClient, type SearchQuery, type SearchStatusQuery, type SetLocationHoursDto, type SetPropertyTypeAmenitiesDto, type SetSettingDto, type StaffAuthResponse, type StaffChangePasswordDto, type StaffLoginDto, type StaffRegisterDto, type StaffRequestPasswordResetDto, type StaffResetPasswordDto, type StaffSendOtpDto, type StaffUser, type StaffVerifyOtpDto, type StartSignupDto, type StatusQuery, type StoreLocation, type StorefrontConfig, type SubmitContactDto, type SubscribeBillingPlanDto, type SubscribeNewsletterDto, type SuperAdminLoginDto, type SuperAdminStats, type SuperAdmin as SuperAdminUser, type SupportReply, type SupportTicket, TZ, TZClient, type TZConfig, type TZInitOptions, TZPaginatedQuery, TZQuery, type TmdbMovie, type TmdbMovieDetail, type TokenStore, type UpdateAddressDto, type UpdateApiKeyDto, type UpdateCartItemDto, type UpdateCatalogCategoryDto, type UpdateCatalogOptionDto, type UpdateCatalogOptionGroupDto, type UpdateCatalogVariantDto, type UpdateEndUserProfileDto, type UpdateHousekeepingDto, type UpdateMovieProgressDto, type UpdateOrderStatusDto, type UpdateOrgDto, type UpdateReservationStatusDto, type UpdateReviewStatusDto, type UpdateRoleDto, type UpdateStaffUserDto, type UpdateSupportTicketDto, type UploadResult, type ValidateCouponDto, type ValidateReferralDto, type VerifyMagicLinkQuery, type VerifyPaymentDto, type VerifySignupOtpDto, type WalletPack, createTZ };
2801
+ export { type AddCartItemDto, type AddSegmentMembersDto, type Address, type AdjustLoyaltyPointsDto, type AdminCancelBookingDto, type AdminListOrdersQuery, type AdminOrganization, type ApiError, type ApiKey, type ApplyStudentPassDto, type AssignPropertyUnitsDto, type AssignStaffRolesDto, type AuditLog, type AuthResponse, type AuthScope, type AuthTokens, type BulkReviewStudentPassesDto, type BulkUpdateSettingsDto, type BulkUpsertEndUsersDto, type CalculateDeliveryDto, type CancelPropertyBookingDto, type Cart, type CartItemOption, type CartLineItem, type CatalogCategory, type CatalogItem, type CatalogItemVariant, type CatalogOption, type CatalogOptionGroup, type ChangeEndUserPasswordDto, type CheckPropertyAvailabilityQuery, type CheckReservationAvailabilityQuery, type CompleteSignupDto, type ContactMessage, type ContentPost, type CouponValidation, type CreateAddressDto, type CreateApiKeyDto, type CreateCatalogCategoryDto, type CreateCatalogOptionDto, type CreateCatalogOptionGroupDto, type CreateCatalogVariantDto, type CreateHelpArticleDto, type CreateInstitutionDto, type CreateMealPlanDto, type CreateOrderDto, type CreatePaymentOrderDto, type CreatePropertyAmenityDto, type CreatePropertyBookingDto, type CreatePropertyPaymentOrderDto, type CreateReservationDto, type CreateReviewDto, type CreateRoleDto, type CreateStudentDiscountDto, type CreateSuperAdminDto, type CreateSupportTicketDto, type DeliveryCalculation, type DeliveryTracking, type DiscountPreview, type EndUser, type EndUserProfile, type EndUserRequestResetDto, type EndUserResetPasswordDto, type EndUserSendOtpDto, type EndUserTagsDto, type EndUserVerifyOtpDto, type GetCatalogItemsQuery, type GiftCard, type HelpArticle, type Institution, type InviteStaffUserDto, type ListCatalogItemsQuery, type ListContentQuery, type ListEndUsersQuery, type ListMoviesQuery, type ListOrdersQuery, type ListOrganizationsQuery, type ListReviewsQuery, type ListStaffUsersQuery, type ListStudentPassesQuery, type ListSuperAdminsQuery, type LocationHours, type LoginEndUserDto, type LoyaltyAccount, type LoyaltyRedemption, type LoyaltyReward, type LoyaltyTransaction, type MealPlan, type MealSubscription, type Movie, type MovieDetail, type Notification, type Order, type OrderItem, type OrderStatus, type OrderType, type PaginatedQuery, type PaginatedResponse, type PaginationParams, type PaymentMethod, type PaymentOrder, type PaymentVerification, type PlatformPlan, type PreviewStudentDiscountDto, type PreviewTemplateDto, type Promotion, type PropertyAvailability, type PropertyBooking, type PropertyPriceResolution, type PropertyType, type PurchaseGiftCardDto, type RawResponse, type RedeemGiftCardDto, type RedeemLoyaltyRewardDto, type ReferralInfo, type ReferralValidation, type RegisterEndUserDto, type ReorderDto, type ReplySupportTicketDto, type ReportOrderIssueDto, type RequestMagicLinkDto, type Reservation, type ReservationSlot, type ResolvePropertyPriceDto, type Review, type ReviewStudentPassDto, type Role, type ScheduleCampaignDto, ScopedClient, type SearchQuery, type SearchStatusQuery, type SetLocationHoursDto, type SetPropertyTypeAmenitiesDto, type SetSettingDto, type StaffAuthResponse, type StaffChangePasswordDto, type StaffLoginDto, type StaffRegisterDto, type StaffRequestPasswordResetDto, type StaffResetPasswordDto, type StaffSendOtpDto, type StaffUser, type StaffVerifyOtpDto, type StartSignupDto, type StartWatchSessionDto, type StatusQuery, type StoreLocation, type StorefrontConfig, type StudentDiscount, type StudentPassStatus, type SubmitContactDto, type SubscribeBillingPlanDto, type SubscribeMealPlanDto, type SubscribeNewsletterDto, type SuperAdminLoginDto, type SuperAdminStats, type SuperAdmin as SuperAdminUser, type SupportReply, type SupportTicket, TZ, TZClient, type TZConfig, type TZInitOptions, TZPaginatedQuery, TZQuery, type TmdbMovie, type TmdbMovieDetail, type TokenStore, type TopUpWalletDto, type UpdateAddressDto, type UpdateApiKeyDto, type UpdateCartItemDto, type UpdateCatalogCategoryDto, type UpdateCatalogOptionDto, type UpdateCatalogOptionGroupDto, type UpdateCatalogVariantDto, type UpdateEndUserProfileDto, type UpdateHelpArticleDto, type UpdateHousekeepingDto, type UpdateInstitutionDto, type UpdateMealPlanDto, type UpdateMovieProgressDto, type UpdateOrderStatusDto, type UpdateOrgDto, type UpdateReservationStatusDto, type UpdateReviewStatusDto, type UpdateRoleDto, type UpdateStaffUserDto, type UpdateStudentDiscountDto, type UpdateSupportTicketDto, type UploadResult, type ValidateCouponDto, type ValidateReferralDto, type VerifyMagicLinkQuery, type VerifyPaymentDto, type VerifySignupOtpDto, type WalletBalance, type WalletPack, type WalletTransaction, type WatchSessionResponse, type WatchSessionStatus, type WatchSessionStatusType, type WatchSessionSummary, createTZ };