zpan-cloud-sdk 1.0.0 → 1.0.2
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/README.md +1 -1
- package/dist/chunk-YQNXMZK4.js +572 -0
- package/dist/index.d.ts +203 -441
- package/dist/index.js +92 -1
- package/dist/schemas.d.ts +1167 -2
- package/dist/schemas.js +83 -1
- package/package.json +1 -1
- package/dist/chunk-VMYIHGPC.js +0 -218
- package/dist/schemas-R0lkMmfq.d.ts +0 -366
|
@@ -1,366 +0,0 @@
|
|
|
1
|
-
import { z } from 'zod';
|
|
2
|
-
|
|
3
|
-
type StoreType = 'cloud' | 'instance';
|
|
4
|
-
type StoreStatus = 'active' | 'disabled';
|
|
5
|
-
type ProductType = 'store_item';
|
|
6
|
-
type Deliverable = Record<string, unknown>;
|
|
7
|
-
type CommerceStore = {
|
|
8
|
-
id: string;
|
|
9
|
-
type: StoreType;
|
|
10
|
-
name: string;
|
|
11
|
-
ownerAccountId: string | null;
|
|
12
|
-
boundLicenseId: string | null;
|
|
13
|
-
status: StoreStatus;
|
|
14
|
-
createdAt: string;
|
|
15
|
-
updatedAt: string;
|
|
16
|
-
};
|
|
17
|
-
type ProductPrice = {
|
|
18
|
-
id?: string;
|
|
19
|
-
currency: string;
|
|
20
|
-
amount: number;
|
|
21
|
-
lookupKey?: string | null;
|
|
22
|
-
nickname?: string | null;
|
|
23
|
-
recurring?: {
|
|
24
|
-
interval: 'day' | 'week' | 'month' | 'year';
|
|
25
|
-
intervalCount: number;
|
|
26
|
-
usageType?: 'licensed' | 'metered';
|
|
27
|
-
} | null;
|
|
28
|
-
metadata?: Record<string, string>;
|
|
29
|
-
};
|
|
30
|
-
type ProductMetadata = {
|
|
31
|
-
deliverable: Deliverable;
|
|
32
|
-
};
|
|
33
|
-
type CommerceProduct = {
|
|
34
|
-
id: string;
|
|
35
|
-
storeId: string;
|
|
36
|
-
type: ProductType;
|
|
37
|
-
name: string;
|
|
38
|
-
description: string | null;
|
|
39
|
-
active: boolean;
|
|
40
|
-
sortOrder: number;
|
|
41
|
-
metadata: ProductMetadata;
|
|
42
|
-
prices: ProductPrice[];
|
|
43
|
-
createdAt: string;
|
|
44
|
-
updatedAt: string;
|
|
45
|
-
};
|
|
46
|
-
type CreateProductRequest = {
|
|
47
|
-
type: ProductType;
|
|
48
|
-
name: string;
|
|
49
|
-
description?: string | null;
|
|
50
|
-
active?: boolean;
|
|
51
|
-
sortOrder?: number;
|
|
52
|
-
metadata: ProductMetadata;
|
|
53
|
-
prices: ProductPrice[];
|
|
54
|
-
};
|
|
55
|
-
type UpdateProductRequest = Partial<Omit<CreateProductRequest, 'prices'>> & {
|
|
56
|
-
prices?: ProductPrice[];
|
|
57
|
-
};
|
|
58
|
-
type CreateOrderRequest = {
|
|
59
|
-
items: Array<{
|
|
60
|
-
productId: string;
|
|
61
|
-
priceId?: string;
|
|
62
|
-
quantity?: number;
|
|
63
|
-
}>;
|
|
64
|
-
currency: string;
|
|
65
|
-
target?: Record<string, unknown> | null;
|
|
66
|
-
deliveryCallbackUrl?: string;
|
|
67
|
-
idempotencyKey?: string | null;
|
|
68
|
-
};
|
|
69
|
-
type PaymentProvider = 'stripe' | 'gift_card' | 'wallet';
|
|
70
|
-
type CreatePaymentRequest = {
|
|
71
|
-
successUrl?: string;
|
|
72
|
-
cancelUrl?: string;
|
|
73
|
-
};
|
|
74
|
-
type CommerceOrderItem = {
|
|
75
|
-
id: string;
|
|
76
|
-
orderId: string;
|
|
77
|
-
productId: string;
|
|
78
|
-
productType: string;
|
|
79
|
-
name: string;
|
|
80
|
-
description: string | null;
|
|
81
|
-
quantity: number;
|
|
82
|
-
unitAmount: number;
|
|
83
|
-
totalAmount: number;
|
|
84
|
-
fulfillmentPayload: Record<string, unknown>;
|
|
85
|
-
};
|
|
86
|
-
type CommercePayment = {
|
|
87
|
-
id: string;
|
|
88
|
-
orderId: string;
|
|
89
|
-
provider: PaymentProvider;
|
|
90
|
-
amount: number;
|
|
91
|
-
currency: string;
|
|
92
|
-
status: 'pending' | 'paid' | 'failed' | 'refunded' | 'canceled';
|
|
93
|
-
providerSessionId: string | null;
|
|
94
|
-
providerPaymentIntentId: string | null;
|
|
95
|
-
createdAt: string;
|
|
96
|
-
paidAt: string | null;
|
|
97
|
-
};
|
|
98
|
-
type CommerceOrder = {
|
|
99
|
-
id: string;
|
|
100
|
-
storeId: string;
|
|
101
|
-
buyerAccountId: string | null;
|
|
102
|
-
target: Record<string, unknown> | null;
|
|
103
|
-
status: 'pending' | 'paid' | 'fulfilled' | 'failed' | 'canceled' | 'refunded';
|
|
104
|
-
paymentStatus: 'unpaid' | 'pending' | 'paid' | 'failed' | 'refunded' | 'canceled';
|
|
105
|
-
fulfillmentStatus: 'pending' | 'fulfilled' | 'failed' | 'canceled';
|
|
106
|
-
subtotalAmount: number;
|
|
107
|
-
discountAmount: number;
|
|
108
|
-
totalAmount: number;
|
|
109
|
-
currency: string;
|
|
110
|
-
items: CommerceOrderItem[];
|
|
111
|
-
payments?: CommercePayment[];
|
|
112
|
-
createdAt: string;
|
|
113
|
-
paidAt: string | null;
|
|
114
|
-
fulfilledAt: string | null;
|
|
115
|
-
canceledAt: string | null;
|
|
116
|
-
};
|
|
117
|
-
|
|
118
|
-
declare const paginationQuerySchema: z.ZodObject<{
|
|
119
|
-
limit: z.ZodDefault<z.ZodOptional<z.ZodCoercedNumber<unknown>>>;
|
|
120
|
-
offset: z.ZodDefault<z.ZodOptional<z.ZodCoercedNumber<unknown>>>;
|
|
121
|
-
}, z.core.$strip>;
|
|
122
|
-
declare const createPairingSchema: z.ZodObject<{
|
|
123
|
-
instanceId: z.ZodString;
|
|
124
|
-
instanceName: z.ZodString;
|
|
125
|
-
instanceHost: z.ZodString;
|
|
126
|
-
}, z.core.$strip>;
|
|
127
|
-
declare const pairingActionSchema: z.ZodObject<{
|
|
128
|
-
action: z.ZodEnum<{
|
|
129
|
-
approve: "approve";
|
|
130
|
-
deny: "deny";
|
|
131
|
-
}>;
|
|
132
|
-
}, z.core.$strip>;
|
|
133
|
-
declare const productPriceSchema: z.ZodObject<{
|
|
134
|
-
id: z.ZodOptional<z.ZodString>;
|
|
135
|
-
currency: z.ZodString;
|
|
136
|
-
amount: z.ZodNumber;
|
|
137
|
-
lookupKey: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
138
|
-
nickname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
139
|
-
recurring: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
140
|
-
interval: z.ZodEnum<{
|
|
141
|
-
day: "day";
|
|
142
|
-
week: "week";
|
|
143
|
-
month: "month";
|
|
144
|
-
year: "year";
|
|
145
|
-
}>;
|
|
146
|
-
intervalCount: z.ZodNumber;
|
|
147
|
-
usageType: z.ZodOptional<z.ZodEnum<{
|
|
148
|
-
licensed: "licensed";
|
|
149
|
-
metered: "metered";
|
|
150
|
-
}>>;
|
|
151
|
-
}, z.core.$strip>>>;
|
|
152
|
-
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
153
|
-
}, z.core.$strip>;
|
|
154
|
-
declare const deliverableSchema: z.ZodType<Deliverable>;
|
|
155
|
-
declare const productMetadataSchema: z.ZodObject<{
|
|
156
|
-
deliverable: z.ZodType<Deliverable, unknown, z.core.$ZodTypeInternals<Deliverable, unknown>>;
|
|
157
|
-
}, z.core.$strip>;
|
|
158
|
-
declare const createProductSchema: z.ZodObject<{
|
|
159
|
-
type: z.ZodLiteral<"store_item">;
|
|
160
|
-
name: z.ZodString;
|
|
161
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
162
|
-
active: z.ZodOptional<z.ZodBoolean>;
|
|
163
|
-
sortOrder: z.ZodOptional<z.ZodNumber>;
|
|
164
|
-
metadata: z.ZodObject<{
|
|
165
|
-
deliverable: z.ZodType<Deliverable, unknown, z.core.$ZodTypeInternals<Deliverable, unknown>>;
|
|
166
|
-
}, z.core.$strip>;
|
|
167
|
-
prices: z.ZodArray<z.ZodObject<{
|
|
168
|
-
id: z.ZodOptional<z.ZodString>;
|
|
169
|
-
currency: z.ZodString;
|
|
170
|
-
amount: z.ZodNumber;
|
|
171
|
-
lookupKey: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
172
|
-
nickname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
173
|
-
recurring: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
174
|
-
interval: z.ZodEnum<{
|
|
175
|
-
day: "day";
|
|
176
|
-
week: "week";
|
|
177
|
-
month: "month";
|
|
178
|
-
year: "year";
|
|
179
|
-
}>;
|
|
180
|
-
intervalCount: z.ZodNumber;
|
|
181
|
-
usageType: z.ZodOptional<z.ZodEnum<{
|
|
182
|
-
licensed: "licensed";
|
|
183
|
-
metered: "metered";
|
|
184
|
-
}>>;
|
|
185
|
-
}, z.core.$strip>>>;
|
|
186
|
-
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
187
|
-
}, z.core.$strip>>;
|
|
188
|
-
}, z.core.$strip>;
|
|
189
|
-
declare const updateProductSchema: z.ZodObject<{
|
|
190
|
-
type: z.ZodOptional<z.ZodLiteral<"store_item">>;
|
|
191
|
-
name: z.ZodOptional<z.ZodString>;
|
|
192
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
193
|
-
active: z.ZodOptional<z.ZodBoolean>;
|
|
194
|
-
sortOrder: z.ZodOptional<z.ZodNumber>;
|
|
195
|
-
metadata: z.ZodOptional<z.ZodObject<{
|
|
196
|
-
deliverable: z.ZodType<Deliverable, unknown, z.core.$ZodTypeInternals<Deliverable, unknown>>;
|
|
197
|
-
}, z.core.$strip>>;
|
|
198
|
-
prices: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
199
|
-
id: z.ZodOptional<z.ZodString>;
|
|
200
|
-
currency: z.ZodString;
|
|
201
|
-
amount: z.ZodNumber;
|
|
202
|
-
lookupKey: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
203
|
-
nickname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
204
|
-
recurring: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
205
|
-
interval: z.ZodEnum<{
|
|
206
|
-
day: "day";
|
|
207
|
-
week: "week";
|
|
208
|
-
month: "month";
|
|
209
|
-
year: "year";
|
|
210
|
-
}>;
|
|
211
|
-
intervalCount: z.ZodNumber;
|
|
212
|
-
usageType: z.ZodOptional<z.ZodEnum<{
|
|
213
|
-
licensed: "licensed";
|
|
214
|
-
metered: "metered";
|
|
215
|
-
}>>;
|
|
216
|
-
}, z.core.$strip>>>;
|
|
217
|
-
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
218
|
-
}, z.core.$strip>>>;
|
|
219
|
-
}, z.core.$strip>;
|
|
220
|
-
declare const productListQuerySchema: z.ZodObject<{
|
|
221
|
-
limit: z.ZodDefault<z.ZodOptional<z.ZodCoercedNumber<unknown>>>;
|
|
222
|
-
offset: z.ZodDefault<z.ZodOptional<z.ZodCoercedNumber<unknown>>>;
|
|
223
|
-
type: z.ZodOptional<z.ZodLiteral<"store_item">>;
|
|
224
|
-
status: z.ZodOptional<z.ZodEnum<{
|
|
225
|
-
active: "active";
|
|
226
|
-
inactive: "inactive";
|
|
227
|
-
}>>;
|
|
228
|
-
}, z.core.$strip>;
|
|
229
|
-
declare const createOrderSchema: z.ZodObject<{
|
|
230
|
-
items: z.ZodArray<z.ZodObject<{
|
|
231
|
-
productId: z.ZodString;
|
|
232
|
-
priceId: z.ZodOptional<z.ZodString>;
|
|
233
|
-
quantity: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
|
|
234
|
-
}, z.core.$strip>>;
|
|
235
|
-
currency: z.ZodString;
|
|
236
|
-
target: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
237
|
-
deliveryCallbackUrl: z.ZodOptional<z.ZodString>;
|
|
238
|
-
idempotencyKey: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
239
|
-
}, z.core.$strip>;
|
|
240
|
-
declare const orderListQuerySchema: z.ZodObject<{
|
|
241
|
-
limit: z.ZodDefault<z.ZodOptional<z.ZodCoercedNumber<unknown>>>;
|
|
242
|
-
offset: z.ZodDefault<z.ZodOptional<z.ZodCoercedNumber<unknown>>>;
|
|
243
|
-
paymentStatus: z.ZodOptional<z.ZodEnum<{
|
|
244
|
-
unpaid: "unpaid";
|
|
245
|
-
pending: "pending";
|
|
246
|
-
paid: "paid";
|
|
247
|
-
failed: "failed";
|
|
248
|
-
refunded: "refunded";
|
|
249
|
-
canceled: "canceled";
|
|
250
|
-
}>>;
|
|
251
|
-
fulfillmentStatus: z.ZodOptional<z.ZodEnum<{
|
|
252
|
-
pending: "pending";
|
|
253
|
-
failed: "failed";
|
|
254
|
-
canceled: "canceled";
|
|
255
|
-
fulfilled: "fulfilled";
|
|
256
|
-
}>>;
|
|
257
|
-
customerId: z.ZodOptional<z.ZodString>;
|
|
258
|
-
}, z.core.$strip>;
|
|
259
|
-
declare const paymentSchema: z.ZodObject<{
|
|
260
|
-
successUrl: z.ZodOptional<z.ZodString>;
|
|
261
|
-
cancelUrl: z.ZodOptional<z.ZodString>;
|
|
262
|
-
}, z.core.$strict>;
|
|
263
|
-
declare const billingPortalSessionSchema: z.ZodObject<{
|
|
264
|
-
customerId: z.ZodString;
|
|
265
|
-
returnUrl: z.ZodString;
|
|
266
|
-
}, z.core.$strict>;
|
|
267
|
-
declare const orderPatchSchema: z.ZodObject<{
|
|
268
|
-
status: z.ZodEnum<{
|
|
269
|
-
canceled: "canceled";
|
|
270
|
-
}>;
|
|
271
|
-
}, z.core.$strip>;
|
|
272
|
-
declare const giftCardCreateSchema: z.ZodObject<{
|
|
273
|
-
amount: z.ZodNumber;
|
|
274
|
-
currency: z.ZodString;
|
|
275
|
-
expiresAt: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
276
|
-
campaignId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
277
|
-
count: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
|
|
278
|
-
}, z.core.$strip>;
|
|
279
|
-
declare const giftCardCampaignCreateSchema: z.ZodObject<{
|
|
280
|
-
name: z.ZodString;
|
|
281
|
-
startsAt: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
282
|
-
expiresAt: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
283
|
-
}, z.core.$strip>;
|
|
284
|
-
declare const giftCardPatchSchema: z.ZodObject<{
|
|
285
|
-
disabled: z.ZodOptional<z.ZodBoolean>;
|
|
286
|
-
revoked: z.ZodOptional<z.ZodLiteral<true>>;
|
|
287
|
-
}, z.core.$strip>;
|
|
288
|
-
declare const giftCardListQuerySchema: z.ZodObject<{
|
|
289
|
-
limit: z.ZodDefault<z.ZodOptional<z.ZodCoercedNumber<unknown>>>;
|
|
290
|
-
offset: z.ZodDefault<z.ZodOptional<z.ZodCoercedNumber<unknown>>>;
|
|
291
|
-
status: z.ZodOptional<z.ZodEnum<{
|
|
292
|
-
active: "active";
|
|
293
|
-
disabled: "disabled";
|
|
294
|
-
revoked: "revoked";
|
|
295
|
-
redeemed: "redeemed";
|
|
296
|
-
expired: "expired";
|
|
297
|
-
}>>;
|
|
298
|
-
campaignId: z.ZodOptional<z.ZodString>;
|
|
299
|
-
}, z.core.$strip>;
|
|
300
|
-
declare const giftCardCampaignListQuerySchema: z.ZodObject<{
|
|
301
|
-
limit: z.ZodDefault<z.ZodOptional<z.ZodCoercedNumber<unknown>>>;
|
|
302
|
-
offset: z.ZodDefault<z.ZodOptional<z.ZodCoercedNumber<unknown>>>;
|
|
303
|
-
status: z.ZodOptional<z.ZodEnum<{
|
|
304
|
-
active: "active";
|
|
305
|
-
disabled: "disabled";
|
|
306
|
-
ended: "ended";
|
|
307
|
-
}>>;
|
|
308
|
-
}, z.core.$strip>;
|
|
309
|
-
declare const usageEventCreateSchema: z.ZodObject<{
|
|
310
|
-
resource: z.ZodLiteral<"traffic_egress">;
|
|
311
|
-
quantity: z.ZodOptional<z.ZodNumber>;
|
|
312
|
-
bytes: z.ZodOptional<z.ZodNumber>;
|
|
313
|
-
idempotencyKey: z.ZodOptional<z.ZodString>;
|
|
314
|
-
eventId: z.ZodOptional<z.ZodString>;
|
|
315
|
-
customerId: z.ZodString;
|
|
316
|
-
}, z.core.$strict>;
|
|
317
|
-
declare const accountUsagePeriodSchema: z.ZodString;
|
|
318
|
-
declare const accountUsageQuerySchema: z.ZodObject<{
|
|
319
|
-
customerId: z.ZodString;
|
|
320
|
-
}, z.core.$strict>;
|
|
321
|
-
declare const walletRedemptionSchema: z.ZodObject<{
|
|
322
|
-
codes: z.ZodArray<z.ZodString>;
|
|
323
|
-
}, z.core.$strip>;
|
|
324
|
-
declare const accountBillingQuerySchema: z.ZodObject<{
|
|
325
|
-
limit: z.ZodDefault<z.ZodOptional<z.ZodCoercedNumber<unknown>>>;
|
|
326
|
-
offset: z.ZodDefault<z.ZodOptional<z.ZodCoercedNumber<unknown>>>;
|
|
327
|
-
ledgerLimit: z.ZodDefault<z.ZodOptional<z.ZodCoercedNumber<unknown>>>;
|
|
328
|
-
ledgerOffset: z.ZodDefault<z.ZodOptional<z.ZodCoercedNumber<unknown>>>;
|
|
329
|
-
}, z.core.$strip>;
|
|
330
|
-
declare const storePatchSchema: z.ZodObject<{
|
|
331
|
-
name: z.ZodOptional<z.ZodString>;
|
|
332
|
-
status: z.ZodOptional<z.ZodEnum<{
|
|
333
|
-
active: "active";
|
|
334
|
-
disabled: "disabled";
|
|
335
|
-
}>>;
|
|
336
|
-
}, z.core.$strip>;
|
|
337
|
-
declare const adminUserPatchSchema: z.ZodObject<{
|
|
338
|
-
role: z.ZodOptional<z.ZodEnum<{
|
|
339
|
-
user: "user";
|
|
340
|
-
admin: "admin";
|
|
341
|
-
}>>;
|
|
342
|
-
membershipTier: z.ZodOptional<z.ZodEnum<{
|
|
343
|
-
none: "none";
|
|
344
|
-
silver: "silver";
|
|
345
|
-
gold: "gold";
|
|
346
|
-
premier: "premier";
|
|
347
|
-
}>>;
|
|
348
|
-
membershipStatus: z.ZodOptional<z.ZodEnum<{
|
|
349
|
-
active: "active";
|
|
350
|
-
inactive: "inactive";
|
|
351
|
-
expired: "expired";
|
|
352
|
-
}>>;
|
|
353
|
-
}, z.core.$strip>;
|
|
354
|
-
declare const adminUserListQuerySchema: z.ZodObject<{
|
|
355
|
-
limit: z.ZodDefault<z.ZodOptional<z.ZodCoercedNumber<unknown>>>;
|
|
356
|
-
offset: z.ZodDefault<z.ZodOptional<z.ZodCoercedNumber<unknown>>>;
|
|
357
|
-
search: z.ZodOptional<z.ZodString>;
|
|
358
|
-
membershipTier: z.ZodOptional<z.ZodEnum<{
|
|
359
|
-
none: "none";
|
|
360
|
-
silver: "silver";
|
|
361
|
-
gold: "gold";
|
|
362
|
-
premier: "premier";
|
|
363
|
-
}>>;
|
|
364
|
-
}, z.core.$strip>;
|
|
365
|
-
|
|
366
|
-
export { type CreatePaymentRequest as A, type CreateProductRequest as B, type CommerceOrder as C, type Deliverable as D, type ProductMetadata as E, type ProductPrice as F, accountBillingQuerySchema as G, accountUsagePeriodSchema as H, accountUsageQuerySchema as I, deliverableSchema as J, orderListQuerySchema as K, paginationQuerySchema as L, productMetadataSchema as M, productPriceSchema as N, type ProductType as P, type StoreType as S, type UpdateProductRequest as U, type StoreStatus as a, type PaymentProvider as b, adminUserListQuerySchema as c, adminUserPatchSchema as d, billingPortalSessionSchema as e, createOrderSchema as f, createProductSchema as g, giftCardCampaignCreateSchema as h, giftCardCampaignListQuerySchema as i, giftCardCreateSchema as j, giftCardListQuerySchema as k, giftCardPatchSchema as l, createPairingSchema as m, paymentSchema as n, orderPatchSchema as o, pairingActionSchema as p, productListQuerySchema as q, type CommerceProduct as r, type CommerceStore as s, storePatchSchema as t, updateProductSchema as u, usageEventCreateSchema as v, walletRedemptionSchema as w, type CommerceOrderItem as x, type CommercePayment as y, type CreateOrderRequest as z };
|