@techzunction/sdk 0.7.0 → 0.8.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.cjs +21 -9
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +236 -26
- package/dist/index.d.ts +236 -26
- package/dist/index.js +21 -9
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
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?:
|
|
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:
|
|
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:
|
|
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:
|
|
172
|
-
metadata:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
570
|
+
metadata: JsonObject | null;
|
|
484
571
|
}
|
|
485
572
|
interface PropertyBooking {
|
|
486
573
|
id: string;
|
|
487
|
-
|
|
574
|
+
bookingReference: string;
|
|
488
575
|
propertyTypeId: string;
|
|
489
|
-
|
|
490
|
-
|
|
491
|
-
|
|
492
|
-
|
|
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:
|
|
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]:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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]:
|
|
1643
|
+
[key: string]: JsonValue;
|
|
1545
1644
|
}
|
|
1546
1645
|
interface AdminInstitution {
|
|
1547
1646
|
id: string;
|
|
@@ -1641,6 +1740,26 @@ 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';
|
|
1644
1763
|
|
|
1645
1764
|
interface RawResponse<T> {
|
|
1646
1765
|
data: T;
|
|
@@ -2019,6 +2138,97 @@ interface ListEarningsQuery extends PaginatedQuery {
|
|
|
2019
2138
|
interface GoogleDriveCallbackDto {
|
|
2020
2139
|
code: string;
|
|
2021
2140
|
}
|
|
2141
|
+
interface SubmitKycDto {
|
|
2142
|
+
documentType: 'aadhaar' | 'pan' | 'passport' | 'voter_id' | 'driving_license';
|
|
2143
|
+
documentNumber: string;
|
|
2144
|
+
documentUrl?: string;
|
|
2145
|
+
selfieUrl?: string;
|
|
2146
|
+
}
|
|
2147
|
+
interface UpdateAccountNicknameDto {
|
|
2148
|
+
nickname: string;
|
|
2149
|
+
}
|
|
2150
|
+
interface SetAutoSweepDto {
|
|
2151
|
+
enabled: boolean;
|
|
2152
|
+
threshold?: number;
|
|
2153
|
+
}
|
|
2154
|
+
interface GetStatementQuery extends PaginatedQuery {
|
|
2155
|
+
startDate?: string;
|
|
2156
|
+
endDate?: string;
|
|
2157
|
+
}
|
|
2158
|
+
interface CreateFixedDepositDto {
|
|
2159
|
+
accountId: string;
|
|
2160
|
+
principalAmount: number;
|
|
2161
|
+
tenureDays: number;
|
|
2162
|
+
autoRenew?: boolean;
|
|
2163
|
+
}
|
|
2164
|
+
interface InitiateTransferDto {
|
|
2165
|
+
senderAccountId: string;
|
|
2166
|
+
beneficiaryAccount: string;
|
|
2167
|
+
beneficiaryIfsc: string;
|
|
2168
|
+
beneficiaryName: string;
|
|
2169
|
+
amount: number;
|
|
2170
|
+
mode: 'neft' | 'rtgs' | 'imps' | 'upi' | 'swift' | 'internal';
|
|
2171
|
+
description?: string;
|
|
2172
|
+
upiId?: string;
|
|
2173
|
+
}
|
|
2174
|
+
interface AddBeneficiaryDto {
|
|
2175
|
+
name: string;
|
|
2176
|
+
accountNumber: string;
|
|
2177
|
+
ifscCode: string;
|
|
2178
|
+
bankName?: string;
|
|
2179
|
+
upiId?: string;
|
|
2180
|
+
nickname?: string;
|
|
2181
|
+
transferLimit?: number;
|
|
2182
|
+
}
|
|
2183
|
+
interface CreateScheduledTransferDto {
|
|
2184
|
+
senderAccountId: string;
|
|
2185
|
+
beneficiaryName: string;
|
|
2186
|
+
beneficiaryAccount: string;
|
|
2187
|
+
beneficiaryIfsc: string;
|
|
2188
|
+
amount: number;
|
|
2189
|
+
mode: 'neft' | 'rtgs' | 'imps' | 'upi' | 'swift' | 'internal';
|
|
2190
|
+
frequency: 'once' | 'daily' | 'weekly' | 'monthly';
|
|
2191
|
+
description?: string;
|
|
2192
|
+
nextExecutionAt: string;
|
|
2193
|
+
endsAt?: string;
|
|
2194
|
+
}
|
|
2195
|
+
interface PayBillDto {
|
|
2196
|
+
accountId: string;
|
|
2197
|
+
billerCategory: string;
|
|
2198
|
+
billerName: string;
|
|
2199
|
+
billerId?: string;
|
|
2200
|
+
consumerNumber: string;
|
|
2201
|
+
amount: number;
|
|
2202
|
+
}
|
|
2203
|
+
interface ListBillPaymentsQuery extends PaginatedQuery {
|
|
2204
|
+
category?: string;
|
|
2205
|
+
}
|
|
2206
|
+
interface GenerateVirtualCardDto {
|
|
2207
|
+
cardType: 'debit' | 'credit';
|
|
2208
|
+
accountId?: string;
|
|
2209
|
+
nameOnCard: string;
|
|
2210
|
+
cardNetwork?: string;
|
|
2211
|
+
}
|
|
2212
|
+
interface UpdateCardLimitsDto {
|
|
2213
|
+
dailyLimit?: number;
|
|
2214
|
+
atmWithdrawalLimit?: number;
|
|
2215
|
+
}
|
|
2216
|
+
interface ToggleInternationalDto {
|
|
2217
|
+
enabled: boolean;
|
|
2218
|
+
from?: string;
|
|
2219
|
+
until?: string;
|
|
2220
|
+
}
|
|
2221
|
+
interface ToggleCardFeatureDto {
|
|
2222
|
+
enabled: boolean;
|
|
2223
|
+
}
|
|
2224
|
+
interface SetBudgetDto {
|
|
2225
|
+
category: string;
|
|
2226
|
+
monthlyLimit: number;
|
|
2227
|
+
alertAt?: number;
|
|
2228
|
+
}
|
|
2229
|
+
interface GetAnomalyAlertsQuery extends PaginatedQuery {
|
|
2230
|
+
unreadOnly?: boolean;
|
|
2231
|
+
}
|
|
2022
2232
|
|
|
2023
2233
|
interface StaffRegisterDto {
|
|
2024
2234
|
name: string;
|
|
@@ -2468,7 +2678,7 @@ declare class TZClient {
|
|
|
2468
2678
|
readonly orgKey: string | undefined;
|
|
2469
2679
|
private readonly store;
|
|
2470
2680
|
private readonly keys;
|
|
2471
|
-
private readonly onAuthExpired
|
|
2681
|
+
private readonly onAuthExpired;
|
|
2472
2682
|
private enduserRefreshPromise;
|
|
2473
2683
|
private staffRefreshPromise;
|
|
2474
2684
|
constructor(config: TZConfig);
|
|
@@ -4223,4 +4433,4 @@ declare function createTZ(options?: TZInitOptions): {
|
|
|
4223
4433
|
}>;
|
|
4224
4434
|
};
|
|
4225
4435
|
|
|
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 };
|
|
4436
|
+
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 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 BulkReviewStudentPassesDto, type BulkUpdateSettingsDto, type BulkUpsertEndUsersDto, type CalculateDeliveryDto, type CampaignChannel, type CampaignStatus, type CancelPropertyBookingDto, type Cart, type CartItemOption, type CartLineItem, 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 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 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 Movie, type MovieCredits, type MovieDetail, 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, ScopedClient, type SearchQuery, type SearchStatusQuery, type SegmentType, type SetAutoSweepDto, type SetBudgetDto, 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 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 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 };
|