@techzunction/sdk 0.7.0 → 0.9.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
@@ -1,3 +1,89 @@
1
+ type JsonPrimitive = string | number | boolean | null;
2
+ type JsonValue = JsonPrimitive | JsonValue[] | {
3
+ [key: string]: JsonValue;
4
+ };
5
+ type JsonObject = {
6
+ [key: string]: JsonValue;
7
+ };
8
+ /** Nutrition info per 100g or per serving */
9
+ interface NutritionData {
10
+ calories?: number;
11
+ protein?: number;
12
+ carbs?: number;
13
+ fat?: number;
14
+ fiber?: number;
15
+ sugar?: number;
16
+ sodium?: number;
17
+ servingSize?: string;
18
+ [key: string]: string | number | undefined;
19
+ }
20
+ /** Tax configuration for a catalog item */
21
+ interface TaxConfig {
22
+ taxRate?: number;
23
+ taxType?: 'percentage' | 'fixed';
24
+ hsnCode?: string;
25
+ gstRate?: number;
26
+ cessRate?: number;
27
+ inclusiveOfTax?: boolean;
28
+ [key: string]: string | number | boolean | undefined;
29
+ }
30
+ /** Movie credits with cast/crew arrays */
31
+ interface MovieCredits {
32
+ cast: Array<{
33
+ name: string;
34
+ character?: string;
35
+ photoUrl?: string | null;
36
+ }>;
37
+ crew: Array<{
38
+ name: string;
39
+ role: string;
40
+ photoUrl?: string | null;
41
+ }>;
42
+ }
43
+ /** Loyalty/Promotion rule config */
44
+ interface RuleConfig {
45
+ type?: string;
46
+ value?: number;
47
+ minOrder?: number;
48
+ maxDiscount?: number;
49
+ applicableItems?: string[];
50
+ [key: string]: string | number | boolean | string[] | undefined;
51
+ }
52
+ /** Plan features map */
53
+ interface PlanFeatures {
54
+ maxProducts?: number;
55
+ maxUsers?: number;
56
+ maxLocations?: number;
57
+ customDomain?: boolean;
58
+ analytics?: boolean;
59
+ apiAccess?: boolean;
60
+ prioritySupport?: boolean;
61
+ [key: string]: string | number | boolean | undefined;
62
+ }
63
+ /** Meal plan item schedule */
64
+ interface MealPlanItem {
65
+ day: number;
66
+ meal: string;
67
+ itemId?: string;
68
+ itemName?: string;
69
+ }
70
+ /** Notification action data */
71
+ interface NotificationData {
72
+ actionUrl?: string;
73
+ orderId?: string;
74
+ bookingId?: string;
75
+ type?: string;
76
+ [key: string]: string | undefined;
77
+ }
78
+ /** Size variation for catalog items */
79
+ interface CatalogSizeVariation {
80
+ id: string;
81
+ name: string;
82
+ groupName: string;
83
+ price: number;
84
+ inStock: boolean;
85
+ sortOrder: number;
86
+ }
1
87
  interface TZConfig {
2
88
  /** Backend base URL (e.g. https://api.techzunction.com) */
3
89
  baseUrl: string;
@@ -19,7 +105,7 @@ interface TokenStore {
19
105
  }
20
106
  interface ApiError extends Error {
21
107
  status: number;
22
- data?: unknown;
108
+ data?: JsonValue;
23
109
  }
24
110
  interface AuthTokens {
25
111
  accessToken: string;
@@ -111,7 +197,7 @@ interface ApiErrorEnvelope {
111
197
  error: {
112
198
  code: string;
113
199
  message: string;
114
- details: unknown | null;
200
+ details: string[] | JsonObject | null;
115
201
  };
116
202
  meta: {
117
203
  timestamp: string;
@@ -136,7 +222,7 @@ interface CatalogItemVariant {
136
222
  price: number;
137
223
  description: string | null;
138
224
  imageUrl: string | null;
139
- nutritionData: Record<string, unknown> | null;
225
+ nutritionData: NutritionData | null;
140
226
  isActive: boolean;
141
227
  }
142
228
  interface CatalogOptionGroup {
@@ -168,8 +254,9 @@ interface CatalogItem {
168
254
  sortOrder: number;
169
255
  allergens: string[];
170
256
  tags: string[];
171
- taxConfig: Record<string, unknown> | null;
172
- metadata: Record<string, unknown> | null;
257
+ taxConfig: TaxConfig | null;
258
+ metadata: JsonObject | null;
259
+ sizeVariations: CatalogSizeVariation[];
173
260
  variants: CatalogItemVariant[];
174
261
  optionGroups: CatalogOptionGroup[];
175
262
  }
@@ -208,7 +295,7 @@ interface OrderItem {
208
295
  unitPrice: number;
209
296
  totalPrice: number;
210
297
  taxAmount: number;
211
- metadata: Record<string, unknown> | null;
298
+ metadata: JsonObject | null;
212
299
  options: {
213
300
  id: string;
214
301
  optionId: string;
@@ -276,7 +363,7 @@ interface StoreLocation {
276
363
  isActive: boolean;
277
364
  isPrimary: boolean;
278
365
  timezone: string | null;
279
- metadata: Record<string, unknown> | null;
366
+ metadata: JsonObject | null;
280
367
  hours: LocationHours[];
281
368
  }
282
369
  interface LocationHours {
@@ -322,7 +409,7 @@ interface LoyaltyReward {
322
409
  description: string | null;
323
410
  pointsCost: number;
324
411
  type: string;
325
- config: Record<string, unknown> | null;
412
+ config: RuleConfig | null;
326
413
  imageUrl: string | null;
327
414
  isActive: boolean;
328
415
  }
@@ -350,7 +437,7 @@ interface Promotion {
350
437
  description: string | null;
351
438
  imageUrl: string | null;
352
439
  type: string;
353
- config: Record<string, unknown> | null;
440
+ config: RuleConfig | null;
354
441
  priority: number;
355
442
  isActive: boolean;
356
443
  startsAt: string | null;
@@ -437,7 +524,7 @@ interface ContentPost {
437
524
  canonical: string | null;
438
525
  datePublished: string | null;
439
526
  dateModified: string | null;
440
- metadata: Record<string, unknown> | null;
527
+ metadata: JsonObject | null;
441
528
  publishedAt: string | null;
442
529
  createdAt: string;
443
530
  updatedAt: string;
@@ -461,7 +548,7 @@ interface Notification {
461
548
  body: string;
462
549
  type: string;
463
550
  isRead: boolean;
464
- data: Record<string, unknown> | null;
551
+ data: NotificationData | null;
465
552
  createdAt: string;
466
553
  }
467
554
  interface PropertyType {
@@ -480,18 +567,30 @@ interface PropertyType {
480
567
  icon: string | null;
481
568
  }>;
482
569
  status: string;
483
- metadata: Record<string, unknown> | null;
570
+ metadata: JsonObject | null;
484
571
  }
485
572
  interface PropertyBooking {
486
573
  id: string;
487
- referenceNumber: string;
574
+ bookingReference: string;
488
575
  propertyTypeId: string;
489
- checkIn: string;
490
- checkOut: string;
491
- guests: number;
492
- status: string;
576
+ checkInDate: string;
577
+ checkOutDate: string;
578
+ nights: number;
579
+ guestCount: number;
580
+ guestName: string;
581
+ guestPhone: string;
582
+ guestEmail: string | null;
583
+ baseAmount: number;
584
+ taxAmount: number;
585
+ discountAmount: number;
586
+ extraGuestCharge: number;
493
587
  totalAmount: number;
588
+ status: string;
589
+ paymentStatus: string;
590
+ couponCode: string | null;
591
+ specialRequests: string | null;
494
592
  createdAt: string;
593
+ updatedAt: string;
495
594
  }
496
595
  interface PropertyAvailability {
497
596
  date: string;
@@ -530,7 +629,7 @@ interface MovieDetail extends Movie {
530
629
  buyPriceInr: number | null;
531
630
  rentalHours: number | null;
532
631
  rentalMaxPlays: number | null;
533
- credits: Record<string, unknown> | null;
632
+ credits: MovieCredits | null;
534
633
  }
535
634
  interface TmdbMovie {
536
635
  id: number;
@@ -729,7 +828,7 @@ interface StorefrontConfig {
729
828
  otpLength: number;
730
829
  socialProviders: string[];
731
830
  };
732
- [key: string]: unknown;
831
+ [key: string]: JsonValue;
733
832
  }
734
833
  interface StudentPassStatus {
735
834
  id: string;
@@ -779,7 +878,7 @@ interface MealPlan {
779
878
  description: string | null;
780
879
  price: number;
781
880
  durationDays: number;
782
- items: Record<string, unknown> | null;
881
+ items: MealPlanItem[] | null;
783
882
  isActive: boolean;
784
883
  subscriptionsCount: number;
785
884
  createdAt: string;
@@ -894,7 +993,7 @@ interface AuditLog {
894
993
  resource: string;
895
994
  resourceId: string;
896
995
  userId: string;
897
- details: Record<string, unknown> | null;
996
+ details: JsonObject | null;
898
997
  createdAt: string;
899
998
  }
900
999
  interface ApiKey {
@@ -927,7 +1026,7 @@ interface PlatformPlan {
927
1026
  name: string;
928
1027
  price: number;
929
1028
  interval: string;
930
- features: Record<string, unknown>;
1029
+ features: PlanFeatures;
931
1030
  isActive: boolean;
932
1031
  }
933
1032
  interface AdminDashboardStats {
@@ -1411,7 +1510,7 @@ interface AdminLocationDetail extends AdminLocation {
1411
1510
  }
1412
1511
  interface AdminSetting {
1413
1512
  key: string;
1414
- value: unknown;
1513
+ value: string | number | boolean;
1415
1514
  type: string;
1416
1515
  label: string;
1417
1516
  description: string | null;
@@ -1541,7 +1640,7 @@ interface AdminStudentDiscount {
1541
1640
  totalUses: number;
1542
1641
  totalDiscountGiven: number;
1543
1642
  createdAt: string;
1544
- [key: string]: unknown;
1643
+ [key: string]: JsonValue;
1545
1644
  }
1546
1645
  interface AdminInstitution {
1547
1646
  id: string;
@@ -1641,6 +1740,256 @@ interface AdminSyncLog {
1641
1740
  duration: number | null;
1642
1741
  createdAt: string;
1643
1742
  }
1743
+ type OrgStatus = 'active' | 'suspended' | 'trial' | 'cancelled';
1744
+ type SuperAdminRole = 'super_admin' | 'support' | 'finance';
1745
+ type UserStatus = 'active' | 'invited' | 'suspended' | 'blocked';
1746
+ type EndUserStatus = 'active' | 'unsubscribed' | 'blocked';
1747
+ type SegmentType = 'static' | 'dynamic';
1748
+ type ApiKeyEnv = 'live' | 'test';
1749
+ type OauthProvider = 'google' | 'github';
1750
+ type OtpType = 'login' | 'phone_verify' | 'email_verify' | 'password_reset';
1751
+ type NotificationType = 'in_app' | 'email' | 'sms' | 'push' | 'whatsapp' | 'webhook';
1752
+ type NotificationStatus = 'pending' | 'sent' | 'delivered' | 'failed' | 'read';
1753
+ type TemplateChannel = 'email' | 'sms' | 'push' | 'whatsapp';
1754
+ type CampaignChannel = 'email' | 'sms' | 'push' | 'whatsapp' | 'multi';
1755
+ type CampaignStatus = 'draft' | 'scheduled' | 'running' | 'paused' | 'completed' | 'failed';
1756
+ type PaymentProviderType = 'razorpay' | 'stripe';
1757
+ type ProductType = 'one_time' | 'subscription';
1758
+ type SubscriptionStatus = 'created' | 'active' | 'paused' | 'cancelled' | 'expired' | 'halted';
1759
+ type PaymentStatus = 'captured' | 'failed' | 'refunded' | 'partially_refunded';
1760
+ type RefundStatus = 'pending' | 'processed' | 'failed';
1761
+ type InvoiceType = 'subscription' | 'usage' | 'manual';
1762
+ type InvoiceStatus = 'draft' | 'sent' | 'paid' | 'overdue' | 'cancelled';
1763
+ type KycStatus = 'pending' | 'submitted' | 'verified' | 'rejected' | 'expired';
1764
+ type KycDocumentType = 'aadhaar' | 'pan' | 'passport' | 'voter_id' | 'driving_license';
1765
+ type BankAccountType = 'savings' | 'current';
1766
+ type BankAccountStatus = 'active' | 'frozen' | 'closed' | 'dormant';
1767
+ type TransferMode = 'neft' | 'rtgs' | 'imps' | 'upi' | 'swift' | 'internal';
1768
+ type TransferStatus = 'initiated' | 'processing' | 'completed' | 'failed' | 'reversed';
1769
+ type CardType = 'debit' | 'credit';
1770
+ type CardVariant = 'virtual' | 'physical';
1771
+ type CardStatus = 'active' | 'blocked' | 'expired' | 'cancelled';
1772
+ type ScheduledTransferFrequency = 'once' | 'daily' | 'weekly' | 'monthly';
1773
+ type ScheduledTransferStatus = 'active' | 'paused' | 'completed' | 'cancelled';
1774
+ type BillPaymentStatus = 'pending' | 'paid' | 'failed';
1775
+ type FixedDepositStatus = 'active' | 'matured' | 'closed_premature' | 'renewed';
1776
+ interface KycVerification {
1777
+ id: string;
1778
+ documentType: KycDocumentType;
1779
+ documentNumber: string;
1780
+ documentUrl: string | null;
1781
+ selfieUrl: string | null;
1782
+ status: KycStatus;
1783
+ verifiedAt: string | null;
1784
+ rejectionNote: string | null;
1785
+ createdAt: string;
1786
+ updatedAt: string;
1787
+ }
1788
+ interface KycStatusResponse {
1789
+ verifications: KycVerification[];
1790
+ isFullyVerified: boolean;
1791
+ }
1792
+ interface BankAccount {
1793
+ id: string;
1794
+ accountNumber: string;
1795
+ ifscCode: string;
1796
+ accountType: BankAccountType;
1797
+ status: BankAccountStatus;
1798
+ nickname: string | null;
1799
+ balance: number;
1800
+ currency: string;
1801
+ autoSweepEnabled: boolean;
1802
+ autoSweepThreshold: number | null;
1803
+ isPrimary: boolean;
1804
+ createdAt: string;
1805
+ updatedAt: string;
1806
+ }
1807
+ interface BankAccountBalance {
1808
+ accountId: string;
1809
+ accountNumber: string;
1810
+ balance: number;
1811
+ currency: string;
1812
+ accountType: BankAccountType;
1813
+ }
1814
+ interface BankTransaction {
1815
+ id: string;
1816
+ accountId: string;
1817
+ type: 'credit' | 'debit';
1818
+ mode: TransferMode | null;
1819
+ amount: number;
1820
+ balanceAfter: number;
1821
+ currency: string;
1822
+ description: string;
1823
+ referenceNumber: string | null;
1824
+ counterpartyName: string | null;
1825
+ counterpartyAccount: string | null;
1826
+ counterpartyIfsc: string | null;
1827
+ status: TransferStatus;
1828
+ category: string | null;
1829
+ createdAt: string;
1830
+ }
1831
+ interface Beneficiary {
1832
+ id: string;
1833
+ name: string;
1834
+ accountNumber: string;
1835
+ ifscCode: string;
1836
+ bankName: string | null;
1837
+ upiId: string | null;
1838
+ nickname: string | null;
1839
+ isFavorite: boolean;
1840
+ transferLimit: number | null;
1841
+ isVerified: boolean;
1842
+ createdAt: string;
1843
+ }
1844
+ interface BankCard {
1845
+ id: string;
1846
+ cardType: CardType;
1847
+ variant: CardVariant;
1848
+ status: CardStatus;
1849
+ lastFourDigits: string;
1850
+ cardNetwork: string;
1851
+ expiryMonth: number;
1852
+ expiryYear: number;
1853
+ nameOnCard: string;
1854
+ dailyLimit: number;
1855
+ internationalEnabled: boolean;
1856
+ internationalFrom: string | null;
1857
+ internationalUntil: string | null;
1858
+ contactlessEnabled: boolean;
1859
+ atmWithdrawalLimit: number;
1860
+ onlineEnabled: boolean;
1861
+ createdAt: string;
1862
+ }
1863
+ interface FixedDeposit {
1864
+ id: string;
1865
+ accountId: string;
1866
+ fdNumber: string;
1867
+ principalAmount: number;
1868
+ interestRate: number;
1869
+ tenureDays: number;
1870
+ maturityAmount: number;
1871
+ maturityDate: string;
1872
+ status: FixedDepositStatus;
1873
+ autoRenew: boolean;
1874
+ closedAt: string | null;
1875
+ createdAt: string;
1876
+ }
1877
+ interface FixedDepositClosure {
1878
+ payoutAmount: number;
1879
+ daysHeld: number;
1880
+ prematureRate: number;
1881
+ }
1882
+ interface ScheduledTransfer {
1883
+ id: string;
1884
+ senderAccountId: string;
1885
+ beneficiaryName: string;
1886
+ beneficiaryAccount: string;
1887
+ beneficiaryIfsc: string;
1888
+ amount: number;
1889
+ mode: TransferMode;
1890
+ frequency: ScheduledTransferFrequency;
1891
+ status: ScheduledTransferStatus;
1892
+ description: string | null;
1893
+ nextExecutionAt: string;
1894
+ lastExecutedAt: string | null;
1895
+ endsAt: string | null;
1896
+ executionCount: number;
1897
+ createdAt: string;
1898
+ }
1899
+ interface BillPayment {
1900
+ id: string;
1901
+ accountId: string;
1902
+ billerCategory: string;
1903
+ billerName: string;
1904
+ billerId: string | null;
1905
+ consumerNumber: string;
1906
+ amount: number;
1907
+ status: BillPaymentStatus;
1908
+ referenceNumber: string | null;
1909
+ paidAt: string | null;
1910
+ createdAt: string;
1911
+ }
1912
+ interface SpendingCategory {
1913
+ id: string;
1914
+ name: string;
1915
+ icon: string | null;
1916
+ color: string | null;
1917
+ isDefault: boolean;
1918
+ }
1919
+ interface SpendingBreakdownItem {
1920
+ category: string;
1921
+ amount: number;
1922
+ percentage: number;
1923
+ }
1924
+ interface SpendingBreakdown {
1925
+ breakdown: SpendingBreakdownItem[];
1926
+ totalSpent: number;
1927
+ period: {
1928
+ months: number;
1929
+ since: string;
1930
+ };
1931
+ }
1932
+ interface MonthlyTrendItem {
1933
+ month: string;
1934
+ income: number;
1935
+ expenditure: number;
1936
+ net: number;
1937
+ }
1938
+ interface MonthlyTrends {
1939
+ trends: MonthlyTrendItem[];
1940
+ }
1941
+ interface CashFlowSummary {
1942
+ totalIncome: number;
1943
+ totalExpenditure: number;
1944
+ netCashFlow: number;
1945
+ period: {
1946
+ start: string;
1947
+ end: string;
1948
+ };
1949
+ }
1950
+ interface BudgetItem {
1951
+ id: string;
1952
+ category: string;
1953
+ monthlyLimit: number;
1954
+ alertAt: number;
1955
+ isActive: boolean;
1956
+ spent: number;
1957
+ utilization: number;
1958
+ isOverBudget: boolean;
1959
+ isNearLimit: boolean;
1960
+ }
1961
+ interface AnomalyAlert {
1962
+ id: string;
1963
+ transactionId: string | null;
1964
+ alertType: string;
1965
+ severity: string;
1966
+ title: string;
1967
+ description: string;
1968
+ isRead: boolean;
1969
+ isDismissed: boolean;
1970
+ createdAt: string;
1971
+ }
1972
+ interface NetWorthSnapshot {
1973
+ accounts: Array<{
1974
+ id: string;
1975
+ accountNumber: string;
1976
+ accountType: BankAccountType;
1977
+ balance: number;
1978
+ nickname: string | null;
1979
+ }>;
1980
+ fixedDeposits: Array<{
1981
+ id: string;
1982
+ fdNumber: string;
1983
+ principalAmount: number;
1984
+ maturityAmount: number;
1985
+ maturityDate: string;
1986
+ }>;
1987
+ summary: {
1988
+ accountsTotal: number;
1989
+ fixedDepositsTotal: number;
1990
+ netWorth: number;
1991
+ };
1992
+ }
1644
1993
 
1645
1994
  interface RawResponse<T> {
1646
1995
  data: T;
@@ -2019,6 +2368,97 @@ interface ListEarningsQuery extends PaginatedQuery {
2019
2368
  interface GoogleDriveCallbackDto {
2020
2369
  code: string;
2021
2370
  }
2371
+ interface SubmitKycDto {
2372
+ documentType: 'aadhaar' | 'pan' | 'passport' | 'voter_id' | 'driving_license';
2373
+ documentNumber: string;
2374
+ documentUrl?: string;
2375
+ selfieUrl?: string;
2376
+ }
2377
+ interface UpdateAccountNicknameDto {
2378
+ nickname: string;
2379
+ }
2380
+ interface SetAutoSweepDto {
2381
+ enabled: boolean;
2382
+ threshold?: number;
2383
+ }
2384
+ interface GetStatementQuery extends PaginatedQuery {
2385
+ startDate?: string;
2386
+ endDate?: string;
2387
+ }
2388
+ interface CreateFixedDepositDto {
2389
+ accountId: string;
2390
+ principalAmount: number;
2391
+ tenureDays: number;
2392
+ autoRenew?: boolean;
2393
+ }
2394
+ interface InitiateTransferDto {
2395
+ senderAccountId: string;
2396
+ beneficiaryAccount: string;
2397
+ beneficiaryIfsc: string;
2398
+ beneficiaryName: string;
2399
+ amount: number;
2400
+ mode: 'neft' | 'rtgs' | 'imps' | 'upi' | 'swift' | 'internal';
2401
+ description?: string;
2402
+ upiId?: string;
2403
+ }
2404
+ interface AddBeneficiaryDto {
2405
+ name: string;
2406
+ accountNumber: string;
2407
+ ifscCode: string;
2408
+ bankName?: string;
2409
+ upiId?: string;
2410
+ nickname?: string;
2411
+ transferLimit?: number;
2412
+ }
2413
+ interface CreateScheduledTransferDto {
2414
+ senderAccountId: string;
2415
+ beneficiaryName: string;
2416
+ beneficiaryAccount: string;
2417
+ beneficiaryIfsc: string;
2418
+ amount: number;
2419
+ mode: 'neft' | 'rtgs' | 'imps' | 'upi' | 'swift' | 'internal';
2420
+ frequency: 'once' | 'daily' | 'weekly' | 'monthly';
2421
+ description?: string;
2422
+ nextExecutionAt: string;
2423
+ endsAt?: string;
2424
+ }
2425
+ interface PayBillDto {
2426
+ accountId: string;
2427
+ billerCategory: string;
2428
+ billerName: string;
2429
+ billerId?: string;
2430
+ consumerNumber: string;
2431
+ amount: number;
2432
+ }
2433
+ interface ListBillPaymentsQuery extends PaginatedQuery {
2434
+ category?: string;
2435
+ }
2436
+ interface GenerateVirtualCardDto {
2437
+ cardType: 'debit' | 'credit';
2438
+ accountId?: string;
2439
+ nameOnCard: string;
2440
+ cardNetwork?: string;
2441
+ }
2442
+ interface UpdateCardLimitsDto {
2443
+ dailyLimit?: number;
2444
+ atmWithdrawalLimit?: number;
2445
+ }
2446
+ interface ToggleInternationalDto {
2447
+ enabled: boolean;
2448
+ from?: string;
2449
+ until?: string;
2450
+ }
2451
+ interface ToggleCardFeatureDto {
2452
+ enabled: boolean;
2453
+ }
2454
+ interface SetBudgetDto {
2455
+ category: string;
2456
+ monthlyLimit: number;
2457
+ alertAt?: number;
2458
+ }
2459
+ interface GetAnomalyAlertsQuery extends PaginatedQuery {
2460
+ unreadOnly?: boolean;
2461
+ }
2022
2462
 
2023
2463
  interface StaffRegisterDto {
2024
2464
  name: string;
@@ -2468,7 +2908,7 @@ declare class TZClient {
2468
2908
  readonly orgKey: string | undefined;
2469
2909
  private readonly store;
2470
2910
  private readonly keys;
2471
- private readonly onAuthExpired?;
2911
+ private readonly onAuthExpired;
2472
2912
  private enduserRefreshPromise;
2473
2913
  private staffRefreshPromise;
2474
2914
  constructor(config: TZConfig);
@@ -2846,6 +3286,71 @@ declare const TZ: {
2846
3286
  connectGoogleDrive(data: GoogleDriveCallbackDto): TZQuery<ConnectedSource>;
2847
3287
  disconnect(provider: string): TZQuery<void>;
2848
3288
  };
3289
+ banking: {
3290
+ kyc: {
3291
+ submit(data: SubmitKycDto): TZQuery<KycVerification>;
3292
+ getStatus(): TZQuery<KycStatusResponse>;
3293
+ };
3294
+ accounts: {
3295
+ list(): TZQuery<BankAccount[]>;
3296
+ get(id: string): TZQuery<BankAccount>;
3297
+ getBalance(id: string): TZQuery<BankAccountBalance>;
3298
+ updateNickname(id: string, data: UpdateAccountNicknameDto): TZQuery<BankAccount>;
3299
+ setAutoSweep(id: string, data: SetAutoSweepDto): TZQuery<BankAccount>;
3300
+ getStatement(id: string, params?: GetStatementQuery): TZPaginatedQuery<BankTransaction>;
3301
+ };
3302
+ fixedDeposits: {
3303
+ list(): TZQuery<FixedDeposit[]>;
3304
+ create(data: CreateFixedDepositDto): TZQuery<FixedDeposit>;
3305
+ close(fdId: string): TZQuery<FixedDepositClosure>;
3306
+ };
3307
+ transfers: {
3308
+ initiate(data: InitiateTransferDto): TZQuery<BankTransaction>;
3309
+ };
3310
+ beneficiaries: {
3311
+ list(): TZQuery<Beneficiary[]>;
3312
+ add(data: AddBeneficiaryDto): TZQuery<Beneficiary>;
3313
+ remove(id: string): TZQuery<Beneficiary>;
3314
+ toggleFavorite(id: string): TZQuery<Beneficiary>;
3315
+ };
3316
+ scheduledTransfers: {
3317
+ list(): TZQuery<ScheduledTransfer[]>;
3318
+ create(data: CreateScheduledTransferDto): TZQuery<ScheduledTransfer>;
3319
+ cancel(id: string): TZQuery<ScheduledTransfer>;
3320
+ };
3321
+ bills: {
3322
+ pay(data: PayBillDto): TZQuery<BillPayment>;
3323
+ list(params?: ListBillPaymentsQuery): TZPaginatedQuery<BillPayment>;
3324
+ };
3325
+ cards: {
3326
+ list(): TZQuery<BankCard[]>;
3327
+ get(id: string): TZQuery<BankCard>;
3328
+ generateVirtual(data: GenerateVirtualCardDto): TZQuery<BankCard>;
3329
+ block(id: string): TZQuery<BankCard>;
3330
+ unblock(id: string): TZQuery<BankCard>;
3331
+ updateLimits(id: string, data: UpdateCardLimitsDto): TZQuery<BankCard>;
3332
+ toggleInternational(id: string, data: ToggleInternationalDto): TZQuery<BankCard>;
3333
+ toggleContactless(id: string, data: ToggleCardFeatureDto): TZQuery<BankCard>;
3334
+ toggleOnline(id: string, data: ToggleCardFeatureDto): TZQuery<BankCard>;
3335
+ };
3336
+ analytics: {
3337
+ getSpendingBreakdown(months?: number): TZQuery<SpendingBreakdown>;
3338
+ getMonthlyTrends(months?: number): TZQuery<MonthlyTrends>;
3339
+ getCashFlow(startDate?: string, endDate?: string): TZQuery<CashFlowSummary>;
3340
+ getNetWorth(): TZQuery<NetWorthSnapshot>;
3341
+ getCategories(): TZQuery<SpendingCategory[]>;
3342
+ };
3343
+ budgets: {
3344
+ list(): TZQuery<BudgetItem[]>;
3345
+ set(data: SetBudgetDto): TZQuery<BudgetItem>;
3346
+ remove(category: string): TZQuery<BudgetItem>;
3347
+ };
3348
+ alerts: {
3349
+ list(params?: GetAnomalyAlertsQuery): TZPaginatedQuery<AnomalyAlert>;
3350
+ markRead(id: string): TZQuery<AnomalyAlert>;
3351
+ dismiss(id: string): TZQuery<AnomalyAlert>;
3352
+ };
3353
+ };
2849
3354
  };
2850
3355
  /** Admin namespace — all staff/org-admin APIs */
2851
3356
  readonly admin: {
@@ -3677,6 +4182,71 @@ declare function createTZ(options?: TZInitOptions): {
3677
4182
  connectGoogleDrive(data: GoogleDriveCallbackDto): TZQuery<ConnectedSource>;
3678
4183
  disconnect(provider: string): TZQuery<void>;
3679
4184
  };
4185
+ banking: {
4186
+ kyc: {
4187
+ submit(data: SubmitKycDto): TZQuery<KycVerification>;
4188
+ getStatus(): TZQuery<KycStatusResponse>;
4189
+ };
4190
+ accounts: {
4191
+ list(): TZQuery<BankAccount[]>;
4192
+ get(id: string): TZQuery<BankAccount>;
4193
+ getBalance(id: string): TZQuery<BankAccountBalance>;
4194
+ updateNickname(id: string, data: UpdateAccountNicknameDto): TZQuery<BankAccount>;
4195
+ setAutoSweep(id: string, data: SetAutoSweepDto): TZQuery<BankAccount>;
4196
+ getStatement(id: string, params?: GetStatementQuery): TZPaginatedQuery<BankTransaction>;
4197
+ };
4198
+ fixedDeposits: {
4199
+ list(): TZQuery<FixedDeposit[]>;
4200
+ create(data: CreateFixedDepositDto): TZQuery<FixedDeposit>;
4201
+ close(fdId: string): TZQuery<FixedDepositClosure>;
4202
+ };
4203
+ transfers: {
4204
+ initiate(data: InitiateTransferDto): TZQuery<BankTransaction>;
4205
+ };
4206
+ beneficiaries: {
4207
+ list(): TZQuery<Beneficiary[]>;
4208
+ add(data: AddBeneficiaryDto): TZQuery<Beneficiary>;
4209
+ remove(id: string): TZQuery<Beneficiary>;
4210
+ toggleFavorite(id: string): TZQuery<Beneficiary>;
4211
+ };
4212
+ scheduledTransfers: {
4213
+ list(): TZQuery<ScheduledTransfer[]>;
4214
+ create(data: CreateScheduledTransferDto): TZQuery<ScheduledTransfer>;
4215
+ cancel(id: string): TZQuery<ScheduledTransfer>;
4216
+ };
4217
+ bills: {
4218
+ pay(data: PayBillDto): TZQuery<BillPayment>;
4219
+ list(params?: ListBillPaymentsQuery): TZPaginatedQuery<BillPayment>;
4220
+ };
4221
+ cards: {
4222
+ list(): TZQuery<BankCard[]>;
4223
+ get(id: string): TZQuery<BankCard>;
4224
+ generateVirtual(data: GenerateVirtualCardDto): TZQuery<BankCard>;
4225
+ block(id: string): TZQuery<BankCard>;
4226
+ unblock(id: string): TZQuery<BankCard>;
4227
+ updateLimits(id: string, data: UpdateCardLimitsDto): TZQuery<BankCard>;
4228
+ toggleInternational(id: string, data: ToggleInternationalDto): TZQuery<BankCard>;
4229
+ toggleContactless(id: string, data: ToggleCardFeatureDto): TZQuery<BankCard>;
4230
+ toggleOnline(id: string, data: ToggleCardFeatureDto): TZQuery<BankCard>;
4231
+ };
4232
+ analytics: {
4233
+ getSpendingBreakdown(months?: number): TZQuery<SpendingBreakdown>;
4234
+ getMonthlyTrends(months?: number): TZQuery<MonthlyTrends>;
4235
+ getCashFlow(startDate?: string, endDate?: string): TZQuery<CashFlowSummary>;
4236
+ getNetWorth(): TZQuery<NetWorthSnapshot>;
4237
+ getCategories(): TZQuery<SpendingCategory[]>;
4238
+ };
4239
+ budgets: {
4240
+ list(): TZQuery<BudgetItem[]>;
4241
+ set(data: SetBudgetDto): TZQuery<BudgetItem>;
4242
+ remove(category: string): TZQuery<BudgetItem>;
4243
+ };
4244
+ alerts: {
4245
+ list(params?: GetAnomalyAlertsQuery): TZPaginatedQuery<AnomalyAlert>;
4246
+ markRead(id: string): TZQuery<AnomalyAlert>;
4247
+ dismiss(id: string): TZQuery<AnomalyAlert>;
4248
+ };
4249
+ };
3680
4250
  };
3681
4251
  admin: {
3682
4252
  auth: {
@@ -4223,4 +4793,4 @@ declare function createTZ(options?: TZInitOptions): {
4223
4793
  }>;
4224
4794
  };
4225
4795
 
4226
- export { type AddCartItemDto, type AddSegmentMembersDto, type Address, type AdjustLoyaltyPointsDto, type AdminAbandonedCart, type AdminAbandonedCartsQuery, type AdminAffiliate, type AdminBlogPost, type AdminBroadcast, type AdminCancelBookingDto, type AdminCoupon, type AdminCustomer, type AdminCustomerDetail, type AdminDashboardData, type AdminDashboardQuery, type AdminDashboardStats, type AdminDeliveryAgent, type AdminDeliveryZone, type AdminFinanceQuery, type AdminFulfillResult, type AdminGiftCard, type AdminGiftCardTransaction, type AdminHelpArticle, type AdminInstitution, type AdminInvoice, type AdminListOrdersQuery, type AdminLocation, type AdminLocationDetail, type AdminLoyaltyAccount, type AdminLoyaltyData, type AdminMealSubscription, type AdminMenuItem, type AdminOrder, type AdminOrderDetail, type AdminOrganization, type AdminPayout, type AdminPopupSettings, type AdminPromotion, type AdminRedemption, type AdminReservation, type AdminReservationSlot, type AdminReservationTable, type AdminReview, type AdminScheduledOrder, type AdminScheduledOrdersQuery, type AdminSetting, type AdminSettlement, type AdminStudentDiscount, type AdminStudentPass, type AdminStudentPassDetail, type AdminStudentPassStats, type AdminSyncLog, type AdminTaxSummary, type AdminTicket, type AdminTicketDetail, type AdminTicketMessage, type AdminWaitlistEntry, type AdminWaitlistGroup, type ApiError, type ApiErrorEnvelope, type ApiKey, type ApiPaginatedEnvelope, type ApiPaginatedResult, type ApiResponseEnvelope, type ApiResult, 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 ConnectedSource, type ContactMessage, type ContentPost, type CouponValidation, type CreateAddressDto, type CreateApiKeyDto, type CreateBroadcastDto, type CreateCatalogCategoryDto, type CreateCatalogOptionDto, type CreateCatalogOptionGroupDto, type CreateCatalogVariantDto, type CreateDeliveryAgentDto, type CreateDeliveryZoneDto, type CreateHelpArticleDto, type CreateIngredientDto, type CreateInstitutionDto, type CreateMealPlanDto, type CreateOrderDto, type CreatePaymentOrderDto, type CreatePropertyAmenityDto, type CreatePropertyBookingDto, type CreatePropertyPaymentOrderDto, type CreatePurchaseOrderDto, type CreateReservationDto, type CreateReservationSlotDto, type CreateReservationTableDto, type CreateReviewDto, type CreateRoleDto, type CreateStudentDiscountDto, type CreateSuperAdminDto, type CreateSupplierDto, type CreateSupportTicketDto, type CreateWasteLogDto, type CreateWatchRoomDto, type DeliveryCalculation, type DeliveryTracking, type DiscountPreview, type EarningsSummary, type EndUser, type EndUserProfile, type EndUserRequestResetDto, type EndUserResetPasswordDto, type EndUserSendOtpDto, type EndUserTagsDto, type EndUserVerifyOtpDto, type FulfillRewardDto, type GetCatalogItemsQuery, type GiftCard, type GoogleDriveCallbackDto, type GoogleDriveConnectUrl, type HelpArticle, type HostEarning, type Ingredient, type Institution, type InviteStaffUserDto, type JoinWatchRoomDto, type ListCatalogItemsQuery, type ListContentQuery, type ListEarningsQuery, type ListEndUsersQuery, type ListMoviesQuery, type ListOrdersQuery, type ListOrganizationsQuery, type ListReviewsQuery, type ListStaffUsersQuery, type ListStudentPassesQuery, type ListSuperAdminsQuery, type ListWatchRoomsQuery, 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 PurchaseOrder, type PurchaseOrderItem, type QueryMealSubscriptionsParams, type QueryPurchaseOrdersParams, 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 StockAlert, 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 Supplier, type SupportReply, type SupportTicket, type SwitchWatchRoomModeDto, 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 UpdateDeliveryAgentDto, type UpdateDeliveryZoneDto, type UpdateEndUserProfileDto, type UpdateHelpArticleDto, type UpdateHousekeepingDto, type UpdateIngredientDto, type UpdateInstitutionDto, type UpdateMealPlanDto, type UpdateMovieProgressDto, type UpdateOrderStatusDto, type UpdateOrgDto, type UpdatePopupSettingsDto, type UpdatePurchaseOrderDto, type UpdateReservationSlotDto, type UpdateReservationStatusDto, type UpdateReservationTableDto, type UpdateReviewStatusDto, type UpdateRoleDto, type UpdateStaffUserDto, type UpdateStudentDiscountDto, type UpdateSupplierDto, type UpdateSupportTicketDto, type UploadResult, type ValidateCouponDto, type ValidateReferralDto, type VerifyMagicLinkQuery, type VerifyPaymentDto, type VerifySignupOtpDto, type WalletBalance, type WalletPack, type WalletTransaction, type WasteLog, type WatchRoom, type WatchRoomJoinResponse, type WatchRoomMessage, type WatchRoomPlaybackState, type WatchRoomPrivacy, type WatchRoomStatus, type WatchRoomVibe, type WatchRoomViewer, type WatchRoomViewerMode, type WatchSessionHistoryItem, type WatchSessionResponse, type WatchSessionStatus, type WatchSessionStatusType, type WatchSessionSummary, createTZ };
4796
+ export { type AddBeneficiaryDto, type AddCartItemDto, type AddSegmentMembersDto, type Address, type AdjustLoyaltyPointsDto, type AdminAbandonedCart, type AdminAbandonedCartsQuery, type AdminAffiliate, type AdminBlogPost, type AdminBroadcast, type AdminCancelBookingDto, type AdminCoupon, type AdminCustomer, type AdminCustomerDetail, type AdminDashboardData, type AdminDashboardQuery, type AdminDashboardStats, type AdminDeliveryAgent, type AdminDeliveryZone, type AdminFinanceQuery, type AdminFulfillResult, type AdminGiftCard, type AdminGiftCardTransaction, type AdminHelpArticle, type AdminInstitution, type AdminInvoice, type AdminListOrdersQuery, type AdminLocation, type AdminLocationDetail, type AdminLoyaltyAccount, type AdminLoyaltyData, type AdminMealSubscription, type AdminMenuItem, type AdminOrder, type AdminOrderDetail, type AdminOrganization, type AdminPayout, type AdminPopupSettings, type AdminPromotion, type AdminRedemption, type AdminReservation, type AdminReservationSlot, type AdminReservationTable, type AdminReview, type AdminScheduledOrder, type AdminScheduledOrdersQuery, type AdminSetting, type AdminSettlement, type AdminStudentDiscount, type AdminStudentPass, type AdminStudentPassDetail, type AdminStudentPassStats, type AdminSyncLog, type AdminTaxSummary, type AdminTicket, type AdminTicketDetail, type AdminTicketMessage, type AdminWaitlistEntry, type AdminWaitlistGroup, type AnomalyAlert, type ApiError, type ApiErrorEnvelope, type ApiKey, type ApiKeyEnv, type ApiPaginatedEnvelope, type ApiPaginatedResult, type ApiResponseEnvelope, type ApiResult, type ApplyStudentPassDto, type AssignPropertyUnitsDto, type AssignStaffRolesDto, type AuditLog, type AuthResponse, type AuthScope, type AuthTokens, type BankAccount, type BankAccountBalance, type BankAccountStatus, type BankAccountType, type BankCard, type BankTransaction, type Beneficiary, type BillPayment, type BillPaymentStatus, type BudgetItem, type BulkReviewStudentPassesDto, type BulkUpdateSettingsDto, type BulkUpsertEndUsersDto, type CalculateDeliveryDto, type CampaignChannel, type CampaignStatus, type CancelPropertyBookingDto, type CardStatus, type CardType, type CardVariant, type Cart, type CartItemOption, type CartLineItem, type CashFlowSummary, type CatalogCategory, type CatalogItem, type CatalogItemVariant, type CatalogOption, type CatalogOptionGroup, type CatalogSizeVariation, type ChangeEndUserPasswordDto, type CheckPropertyAvailabilityQuery, type CheckReservationAvailabilityQuery, type CompleteSignupDto, type ConnectedSource, type ContactMessage, type ContentPost, type CouponValidation, type CreateAddressDto, type CreateApiKeyDto, type CreateBroadcastDto, type CreateCatalogCategoryDto, type CreateCatalogOptionDto, type CreateCatalogOptionGroupDto, type CreateCatalogVariantDto, type CreateDeliveryAgentDto, type CreateDeliveryZoneDto, type CreateFixedDepositDto, type CreateHelpArticleDto, type CreateIngredientDto, type CreateInstitutionDto, type CreateMealPlanDto, type CreateOrderDto, type CreatePaymentOrderDto, type CreatePropertyAmenityDto, type CreatePropertyBookingDto, type CreatePropertyPaymentOrderDto, type CreatePurchaseOrderDto, type CreateReservationDto, type CreateReservationSlotDto, type CreateReservationTableDto, type CreateReviewDto, type CreateRoleDto, type CreateScheduledTransferDto, type CreateStudentDiscountDto, type CreateSuperAdminDto, type CreateSupplierDto, type CreateSupportTicketDto, type CreateWasteLogDto, type CreateWatchRoomDto, type DeliveryCalculation, type DeliveryTracking, type DiscountPreview, type EarningsSummary, type EndUser, type EndUserProfile, type EndUserRequestResetDto, type EndUserResetPasswordDto, type EndUserSendOtpDto, type EndUserStatus, type EndUserTagsDto, type EndUserVerifyOtpDto, type FixedDeposit, type FixedDepositClosure, type FixedDepositStatus, type FulfillRewardDto, type GenerateVirtualCardDto, type GetAnomalyAlertsQuery, type GetCatalogItemsQuery, type GetStatementQuery, type GiftCard, type GoogleDriveCallbackDto, type GoogleDriveConnectUrl, type HelpArticle, type HostEarning, type Ingredient, type InitiateTransferDto, type Institution, type InviteStaffUserDto, type InvoiceStatus, type InvoiceType, type JoinWatchRoomDto, type JsonObject, type JsonPrimitive, type JsonValue, type KycDocumentType, type KycStatus, type KycStatusResponse, type KycVerification, type ListBillPaymentsQuery, type ListCatalogItemsQuery, type ListContentQuery, type ListEarningsQuery, type ListEndUsersQuery, type ListMoviesQuery, type ListOrdersQuery, type ListOrganizationsQuery, type ListReviewsQuery, type ListStaffUsersQuery, type ListStudentPassesQuery, type ListSuperAdminsQuery, type ListWatchRoomsQuery, type LocationHours, type LoginEndUserDto, type LoyaltyAccount, type LoyaltyRedemption, type LoyaltyReward, type LoyaltyTransaction, type MealPlan, type MealPlanItem, type MealSubscription, type MonthlyTrendItem, type MonthlyTrends, type Movie, type MovieCredits, type MovieDetail, type NetWorthSnapshot, type Notification, type NotificationData, type NotificationStatus, type NotificationType, type NutritionData, type OauthProvider, type Order, type OrderItem, type OrderStatus, type OrderType, type OrgStatus, type OtpType, type PaginatedQuery, type PaginatedResponse, type PaginationParams, type PayBillDto, type PaymentMethod, type PaymentOrder, type PaymentProviderType, type PaymentStatus, type PaymentVerification, type PlanFeatures, type PlatformPlan, type PreviewStudentDiscountDto, type PreviewTemplateDto, type ProductType, type Promotion, type PropertyAvailability, type PropertyBooking, type PropertyPriceResolution, type PropertyType, type PurchaseGiftCardDto, type PurchaseOrder, type PurchaseOrderItem, type QueryMealSubscriptionsParams, type QueryPurchaseOrdersParams, type RawResponse, type RedeemGiftCardDto, type RedeemLoyaltyRewardDto, type ReferralInfo, type ReferralValidation, type RefundStatus, type RegisterEndUserDto, type ReorderDto, type ReplySupportTicketDto, type ReportOrderIssueDto, type RequestMagicLinkDto, type Reservation, type ReservationSlot, type ResolvePropertyPriceDto, type Review, type ReviewStudentPassDto, type Role, type RuleConfig, type ScheduleCampaignDto, type ScheduledTransfer, type ScheduledTransferFrequency, type ScheduledTransferStatus, ScopedClient, type SearchQuery, type SearchStatusQuery, type SegmentType, type SetAutoSweepDto, type SetBudgetDto, type SetLocationHoursDto, type SetPropertyTypeAmenitiesDto, type SetSettingDto, type SpendingBreakdown, type SpendingBreakdownItem, type SpendingCategory, 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 StockAlert, type StoreLocation, type StorefrontConfig, type StudentDiscount, type StudentPassStatus, type SubmitContactDto, type SubmitKycDto, type SubscribeBillingPlanDto, type SubscribeMealPlanDto, type SubscribeNewsletterDto, type SubscriptionStatus, type SuperAdminLoginDto, type SuperAdminRole, type SuperAdminStats, type SuperAdmin as SuperAdminUser, type Supplier, type SupportReply, type SupportTicket, type SwitchWatchRoomModeDto, TZ, TZClient, type TZConfig, type TZInitOptions, TZPaginatedQuery, TZQuery, type TaxConfig, type TemplateChannel, type TmdbMovie, type TmdbMovieDetail, type ToggleCardFeatureDto, type ToggleInternationalDto, type TokenStore, type TopUpWalletDto, type TransferMode, type TransferStatus, type UpdateAccountNicknameDto, type UpdateAddressDto, type UpdateApiKeyDto, type UpdateCardLimitsDto, type UpdateCartItemDto, type UpdateCatalogCategoryDto, type UpdateCatalogOptionDto, type UpdateCatalogOptionGroupDto, type UpdateCatalogVariantDto, type UpdateDeliveryAgentDto, type UpdateDeliveryZoneDto, type UpdateEndUserProfileDto, type UpdateHelpArticleDto, type UpdateHousekeepingDto, type UpdateIngredientDto, type UpdateInstitutionDto, type UpdateMealPlanDto, type UpdateMovieProgressDto, type UpdateOrderStatusDto, type UpdateOrgDto, type UpdatePopupSettingsDto, type UpdatePurchaseOrderDto, type UpdateReservationSlotDto, type UpdateReservationStatusDto, type UpdateReservationTableDto, type UpdateReviewStatusDto, type UpdateRoleDto, type UpdateStaffUserDto, type UpdateStudentDiscountDto, type UpdateSupplierDto, type UpdateSupportTicketDto, type UploadResult, type UserStatus, type ValidateCouponDto, type ValidateReferralDto, type VerifyMagicLinkQuery, type VerifyPaymentDto, type VerifySignupOtpDto, type WalletBalance, type WalletPack, type WalletTransaction, type WasteLog, type WatchRoom, type WatchRoomJoinResponse, type WatchRoomMessage, type WatchRoomPlaybackState, type WatchRoomPrivacy, type WatchRoomStatus, type WatchRoomVibe, type WatchRoomViewer, type WatchRoomViewerMode, type WatchSessionHistoryItem, type WatchSessionResponse, type WatchSessionStatus, type WatchSessionStatusType, type WatchSessionSummary, createTZ };