@rpcbase/db 0.122.0 → 0.123.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.
|
@@ -41,49 +41,361 @@ export declare const ZRBTenantSubscriptionChangeDirection: z.ZodEnum<{
|
|
|
41
41
|
downgrade: "downgrade";
|
|
42
42
|
lateral: "lateral";
|
|
43
43
|
}>;
|
|
44
|
-
export declare const ZRBTenantSubscriptionEvent: z.ZodObject<{
|
|
44
|
+
export declare const ZRBTenantSubscriptionEvent: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
45
45
|
tenantId: z.ZodString;
|
|
46
46
|
subscriptionId: z.ZodString;
|
|
47
|
-
|
|
47
|
+
occurredAt: z.ZodDate;
|
|
48
|
+
effectiveAt: z.ZodDate;
|
|
49
|
+
subscriptionType: z.ZodEnum<{
|
|
50
|
+
primary: "primary";
|
|
51
|
+
addon: "addon";
|
|
52
|
+
}>;
|
|
53
|
+
parentSubscriptionId: z.ZodOptional<z.ZodString>;
|
|
54
|
+
scope: z.ZodEnum<{
|
|
55
|
+
custom: "custom";
|
|
56
|
+
tenant: "tenant";
|
|
57
|
+
workspace: "workspace";
|
|
58
|
+
shop: "shop";
|
|
59
|
+
}>;
|
|
60
|
+
scopeId: z.ZodOptional<z.ZodString>;
|
|
61
|
+
fromPlanKey: z.ZodOptional<z.ZodString>;
|
|
62
|
+
fromStatus: z.ZodOptional<z.ZodEnum<{
|
|
63
|
+
trialing: "trialing";
|
|
64
|
+
active: "active";
|
|
65
|
+
past_due: "past_due";
|
|
66
|
+
paused: "paused";
|
|
67
|
+
canceled: "canceled";
|
|
68
|
+
expired: "expired";
|
|
69
|
+
}>>;
|
|
70
|
+
fromModules: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
71
|
+
fromIntervalUnit: z.ZodOptional<z.ZodEnum<{
|
|
72
|
+
month: "month";
|
|
73
|
+
year: "year";
|
|
74
|
+
}>>;
|
|
75
|
+
fromIntervalCount: z.ZodOptional<z.ZodNumber>;
|
|
76
|
+
fromPriceId: z.ZodOptional<z.ZodString>;
|
|
77
|
+
toPriceId: z.ZodOptional<z.ZodString>;
|
|
78
|
+
supersedesEventId: z.ZodOptional<z.ZodString>;
|
|
79
|
+
idempotencyKey: z.ZodString;
|
|
80
|
+
direction: z.ZodOptional<z.ZodEnum<{
|
|
81
|
+
upgrade: "upgrade";
|
|
82
|
+
downgrade: "downgrade";
|
|
83
|
+
lateral: "lateral";
|
|
84
|
+
}>>;
|
|
85
|
+
actorUserId: z.ZodOptional<z.ZodString>;
|
|
86
|
+
source: z.ZodOptional<z.ZodEnum<{
|
|
87
|
+
admin: "admin";
|
|
88
|
+
user: "user";
|
|
89
|
+
system: "system";
|
|
90
|
+
webhook: "webhook";
|
|
91
|
+
}>>;
|
|
92
|
+
reason: z.ZodOptional<z.ZodString>;
|
|
93
|
+
provider: z.ZodOptional<z.ZodString>;
|
|
94
|
+
providerEventId: z.ZodOptional<z.ZodString>;
|
|
95
|
+
providerPayload: z.ZodOptional<z.ZodUnknown>;
|
|
96
|
+
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
97
|
+
type: z.ZodLiteral<"created">;
|
|
98
|
+
toPlanKey: z.ZodString;
|
|
99
|
+
toStatus: z.ZodEnum<{
|
|
100
|
+
trialing: "trialing";
|
|
101
|
+
active: "active";
|
|
102
|
+
past_due: "past_due";
|
|
103
|
+
paused: "paused";
|
|
48
104
|
canceled: "canceled";
|
|
49
|
-
|
|
50
|
-
plan_changed: "plan_changed";
|
|
51
|
-
status_changed: "status_changed";
|
|
52
|
-
resumed: "resumed";
|
|
53
|
-
renewed: "renewed";
|
|
105
|
+
expired: "expired";
|
|
54
106
|
}>;
|
|
107
|
+
toModules: z.ZodArray<z.ZodString>;
|
|
108
|
+
toIntervalUnit: z.ZodEnum<{
|
|
109
|
+
month: "month";
|
|
110
|
+
year: "year";
|
|
111
|
+
}>;
|
|
112
|
+
toIntervalCount: z.ZodNumber;
|
|
113
|
+
billingAnchor: z.ZodDate;
|
|
114
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
115
|
+
tenantId: z.ZodString;
|
|
116
|
+
subscriptionId: z.ZodString;
|
|
55
117
|
occurredAt: z.ZodDate;
|
|
56
118
|
effectiveAt: z.ZodDate;
|
|
57
|
-
subscriptionType: z.
|
|
119
|
+
subscriptionType: z.ZodEnum<{
|
|
58
120
|
primary: "primary";
|
|
59
121
|
addon: "addon";
|
|
60
|
-
}
|
|
122
|
+
}>;
|
|
61
123
|
parentSubscriptionId: z.ZodOptional<z.ZodString>;
|
|
62
|
-
scope: z.
|
|
124
|
+
scope: z.ZodEnum<{
|
|
63
125
|
custom: "custom";
|
|
64
126
|
tenant: "tenant";
|
|
65
127
|
workspace: "workspace";
|
|
66
128
|
shop: "shop";
|
|
129
|
+
}>;
|
|
130
|
+
scopeId: z.ZodOptional<z.ZodString>;
|
|
131
|
+
fromStatus: z.ZodOptional<z.ZodEnum<{
|
|
132
|
+
trialing: "trialing";
|
|
133
|
+
active: "active";
|
|
134
|
+
past_due: "past_due";
|
|
135
|
+
paused: "paused";
|
|
136
|
+
canceled: "canceled";
|
|
137
|
+
expired: "expired";
|
|
67
138
|
}>>;
|
|
139
|
+
toStatus: z.ZodOptional<z.ZodEnum<{
|
|
140
|
+
trialing: "trialing";
|
|
141
|
+
active: "active";
|
|
142
|
+
past_due: "past_due";
|
|
143
|
+
paused: "paused";
|
|
144
|
+
canceled: "canceled";
|
|
145
|
+
expired: "expired";
|
|
146
|
+
}>>;
|
|
147
|
+
fromPriceId: z.ZodOptional<z.ZodString>;
|
|
148
|
+
toPriceId: z.ZodOptional<z.ZodString>;
|
|
149
|
+
billingAnchor: z.ZodOptional<z.ZodDate>;
|
|
150
|
+
supersedesEventId: z.ZodOptional<z.ZodString>;
|
|
151
|
+
idempotencyKey: z.ZodString;
|
|
152
|
+
direction: z.ZodOptional<z.ZodEnum<{
|
|
153
|
+
upgrade: "upgrade";
|
|
154
|
+
downgrade: "downgrade";
|
|
155
|
+
lateral: "lateral";
|
|
156
|
+
}>>;
|
|
157
|
+
actorUserId: z.ZodOptional<z.ZodString>;
|
|
158
|
+
source: z.ZodOptional<z.ZodEnum<{
|
|
159
|
+
admin: "admin";
|
|
160
|
+
user: "user";
|
|
161
|
+
system: "system";
|
|
162
|
+
webhook: "webhook";
|
|
163
|
+
}>>;
|
|
164
|
+
reason: z.ZodOptional<z.ZodString>;
|
|
165
|
+
provider: z.ZodOptional<z.ZodString>;
|
|
166
|
+
providerEventId: z.ZodOptional<z.ZodString>;
|
|
167
|
+
providerPayload: z.ZodOptional<z.ZodUnknown>;
|
|
168
|
+
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
169
|
+
type: z.ZodLiteral<"plan_changed">;
|
|
170
|
+
fromPlanKey: z.ZodString;
|
|
171
|
+
toPlanKey: z.ZodString;
|
|
172
|
+
fromModules: z.ZodArray<z.ZodString>;
|
|
173
|
+
toModules: z.ZodArray<z.ZodString>;
|
|
174
|
+
fromIntervalUnit: z.ZodEnum<{
|
|
175
|
+
month: "month";
|
|
176
|
+
year: "year";
|
|
177
|
+
}>;
|
|
178
|
+
toIntervalUnit: z.ZodEnum<{
|
|
179
|
+
month: "month";
|
|
180
|
+
year: "year";
|
|
181
|
+
}>;
|
|
182
|
+
fromIntervalCount: z.ZodNumber;
|
|
183
|
+
toIntervalCount: z.ZodNumber;
|
|
184
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
185
|
+
tenantId: z.ZodString;
|
|
186
|
+
subscriptionId: z.ZodString;
|
|
187
|
+
occurredAt: z.ZodDate;
|
|
188
|
+
effectiveAt: z.ZodDate;
|
|
189
|
+
subscriptionType: z.ZodEnum<{
|
|
190
|
+
primary: "primary";
|
|
191
|
+
addon: "addon";
|
|
192
|
+
}>;
|
|
193
|
+
parentSubscriptionId: z.ZodOptional<z.ZodString>;
|
|
194
|
+
scope: z.ZodEnum<{
|
|
195
|
+
custom: "custom";
|
|
196
|
+
tenant: "tenant";
|
|
197
|
+
workspace: "workspace";
|
|
198
|
+
shop: "shop";
|
|
199
|
+
}>;
|
|
68
200
|
scopeId: z.ZodOptional<z.ZodString>;
|
|
69
201
|
fromPlanKey: z.ZodOptional<z.ZodString>;
|
|
70
202
|
toPlanKey: z.ZodOptional<z.ZodString>;
|
|
71
|
-
|
|
203
|
+
fromModules: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
204
|
+
toModules: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
205
|
+
fromIntervalUnit: z.ZodOptional<z.ZodEnum<{
|
|
206
|
+
month: "month";
|
|
207
|
+
year: "year";
|
|
208
|
+
}>>;
|
|
209
|
+
toIntervalUnit: z.ZodOptional<z.ZodEnum<{
|
|
210
|
+
month: "month";
|
|
211
|
+
year: "year";
|
|
212
|
+
}>>;
|
|
213
|
+
fromIntervalCount: z.ZodOptional<z.ZodNumber>;
|
|
214
|
+
toIntervalCount: z.ZodOptional<z.ZodNumber>;
|
|
215
|
+
fromPriceId: z.ZodOptional<z.ZodString>;
|
|
216
|
+
toPriceId: z.ZodOptional<z.ZodString>;
|
|
217
|
+
billingAnchor: z.ZodOptional<z.ZodDate>;
|
|
218
|
+
supersedesEventId: z.ZodOptional<z.ZodString>;
|
|
219
|
+
idempotencyKey: z.ZodString;
|
|
220
|
+
direction: z.ZodOptional<z.ZodEnum<{
|
|
221
|
+
upgrade: "upgrade";
|
|
222
|
+
downgrade: "downgrade";
|
|
223
|
+
lateral: "lateral";
|
|
224
|
+
}>>;
|
|
225
|
+
actorUserId: z.ZodOptional<z.ZodString>;
|
|
226
|
+
source: z.ZodOptional<z.ZodEnum<{
|
|
227
|
+
admin: "admin";
|
|
228
|
+
user: "user";
|
|
229
|
+
system: "system";
|
|
230
|
+
webhook: "webhook";
|
|
231
|
+
}>>;
|
|
232
|
+
reason: z.ZodOptional<z.ZodString>;
|
|
233
|
+
provider: z.ZodOptional<z.ZodString>;
|
|
234
|
+
providerEventId: z.ZodOptional<z.ZodString>;
|
|
235
|
+
providerPayload: z.ZodOptional<z.ZodUnknown>;
|
|
236
|
+
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
237
|
+
type: z.ZodLiteral<"status_changed">;
|
|
238
|
+
fromStatus: z.ZodEnum<{
|
|
239
|
+
trialing: "trialing";
|
|
240
|
+
active: "active";
|
|
241
|
+
past_due: "past_due";
|
|
242
|
+
paused: "paused";
|
|
243
|
+
canceled: "canceled";
|
|
244
|
+
expired: "expired";
|
|
245
|
+
}>;
|
|
246
|
+
toStatus: z.ZodEnum<{
|
|
72
247
|
trialing: "trialing";
|
|
73
248
|
active: "active";
|
|
74
249
|
past_due: "past_due";
|
|
75
250
|
paused: "paused";
|
|
76
251
|
canceled: "canceled";
|
|
77
252
|
expired: "expired";
|
|
253
|
+
}>;
|
|
254
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
255
|
+
tenantId: z.ZodString;
|
|
256
|
+
subscriptionId: z.ZodString;
|
|
257
|
+
occurredAt: z.ZodDate;
|
|
258
|
+
effectiveAt: z.ZodDate;
|
|
259
|
+
subscriptionType: z.ZodEnum<{
|
|
260
|
+
primary: "primary";
|
|
261
|
+
addon: "addon";
|
|
262
|
+
}>;
|
|
263
|
+
parentSubscriptionId: z.ZodOptional<z.ZodString>;
|
|
264
|
+
scope: z.ZodEnum<{
|
|
265
|
+
custom: "custom";
|
|
266
|
+
tenant: "tenant";
|
|
267
|
+
workspace: "workspace";
|
|
268
|
+
shop: "shop";
|
|
269
|
+
}>;
|
|
270
|
+
scopeId: z.ZodOptional<z.ZodString>;
|
|
271
|
+
fromPlanKey: z.ZodOptional<z.ZodString>;
|
|
272
|
+
toPlanKey: z.ZodOptional<z.ZodString>;
|
|
273
|
+
fromModules: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
274
|
+
toModules: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
275
|
+
fromIntervalUnit: z.ZodOptional<z.ZodEnum<{
|
|
276
|
+
month: "month";
|
|
277
|
+
year: "year";
|
|
78
278
|
}>>;
|
|
79
|
-
|
|
279
|
+
toIntervalUnit: z.ZodOptional<z.ZodEnum<{
|
|
280
|
+
month: "month";
|
|
281
|
+
year: "year";
|
|
282
|
+
}>>;
|
|
283
|
+
fromIntervalCount: z.ZodOptional<z.ZodNumber>;
|
|
284
|
+
toIntervalCount: z.ZodOptional<z.ZodNumber>;
|
|
285
|
+
fromPriceId: z.ZodOptional<z.ZodString>;
|
|
286
|
+
toPriceId: z.ZodOptional<z.ZodString>;
|
|
287
|
+
billingAnchor: z.ZodOptional<z.ZodDate>;
|
|
288
|
+
supersedesEventId: z.ZodOptional<z.ZodString>;
|
|
289
|
+
idempotencyKey: z.ZodString;
|
|
290
|
+
direction: z.ZodOptional<z.ZodEnum<{
|
|
291
|
+
upgrade: "upgrade";
|
|
292
|
+
downgrade: "downgrade";
|
|
293
|
+
lateral: "lateral";
|
|
294
|
+
}>>;
|
|
295
|
+
actorUserId: z.ZodOptional<z.ZodString>;
|
|
296
|
+
source: z.ZodOptional<z.ZodEnum<{
|
|
297
|
+
admin: "admin";
|
|
298
|
+
user: "user";
|
|
299
|
+
system: "system";
|
|
300
|
+
webhook: "webhook";
|
|
301
|
+
}>>;
|
|
302
|
+
reason: z.ZodOptional<z.ZodString>;
|
|
303
|
+
provider: z.ZodOptional<z.ZodString>;
|
|
304
|
+
providerEventId: z.ZodOptional<z.ZodString>;
|
|
305
|
+
providerPayload: z.ZodOptional<z.ZodUnknown>;
|
|
306
|
+
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
307
|
+
type: z.ZodLiteral<"resumed">;
|
|
308
|
+
fromStatus: z.ZodEnum<{
|
|
80
309
|
trialing: "trialing";
|
|
81
310
|
active: "active";
|
|
82
311
|
past_due: "past_due";
|
|
83
312
|
paused: "paused";
|
|
84
313
|
canceled: "canceled";
|
|
85
314
|
expired: "expired";
|
|
315
|
+
}>;
|
|
316
|
+
toStatus: z.ZodLiteral<"active">;
|
|
317
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
318
|
+
tenantId: z.ZodString;
|
|
319
|
+
subscriptionId: z.ZodString;
|
|
320
|
+
occurredAt: z.ZodDate;
|
|
321
|
+
effectiveAt: z.ZodDate;
|
|
322
|
+
subscriptionType: z.ZodEnum<{
|
|
323
|
+
primary: "primary";
|
|
324
|
+
addon: "addon";
|
|
325
|
+
}>;
|
|
326
|
+
parentSubscriptionId: z.ZodOptional<z.ZodString>;
|
|
327
|
+
scope: z.ZodEnum<{
|
|
328
|
+
custom: "custom";
|
|
329
|
+
tenant: "tenant";
|
|
330
|
+
workspace: "workspace";
|
|
331
|
+
shop: "shop";
|
|
332
|
+
}>;
|
|
333
|
+
scopeId: z.ZodOptional<z.ZodString>;
|
|
334
|
+
fromPlanKey: z.ZodOptional<z.ZodString>;
|
|
335
|
+
toPlanKey: z.ZodOptional<z.ZodString>;
|
|
336
|
+
fromModules: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
337
|
+
toModules: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
338
|
+
fromIntervalUnit: z.ZodOptional<z.ZodEnum<{
|
|
339
|
+
month: "month";
|
|
340
|
+
year: "year";
|
|
86
341
|
}>>;
|
|
342
|
+
toIntervalUnit: z.ZodOptional<z.ZodEnum<{
|
|
343
|
+
month: "month";
|
|
344
|
+
year: "year";
|
|
345
|
+
}>>;
|
|
346
|
+
fromIntervalCount: z.ZodOptional<z.ZodNumber>;
|
|
347
|
+
toIntervalCount: z.ZodOptional<z.ZodNumber>;
|
|
348
|
+
fromPriceId: z.ZodOptional<z.ZodString>;
|
|
349
|
+
toPriceId: z.ZodOptional<z.ZodString>;
|
|
350
|
+
billingAnchor: z.ZodOptional<z.ZodDate>;
|
|
351
|
+
supersedesEventId: z.ZodOptional<z.ZodString>;
|
|
352
|
+
idempotencyKey: z.ZodString;
|
|
353
|
+
direction: z.ZodOptional<z.ZodEnum<{
|
|
354
|
+
upgrade: "upgrade";
|
|
355
|
+
downgrade: "downgrade";
|
|
356
|
+
lateral: "lateral";
|
|
357
|
+
}>>;
|
|
358
|
+
actorUserId: z.ZodOptional<z.ZodString>;
|
|
359
|
+
source: z.ZodOptional<z.ZodEnum<{
|
|
360
|
+
admin: "admin";
|
|
361
|
+
user: "user";
|
|
362
|
+
system: "system";
|
|
363
|
+
webhook: "webhook";
|
|
364
|
+
}>>;
|
|
365
|
+
reason: z.ZodOptional<z.ZodString>;
|
|
366
|
+
provider: z.ZodOptional<z.ZodString>;
|
|
367
|
+
providerEventId: z.ZodOptional<z.ZodString>;
|
|
368
|
+
providerPayload: z.ZodOptional<z.ZodUnknown>;
|
|
369
|
+
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
370
|
+
type: z.ZodLiteral<"canceled">;
|
|
371
|
+
fromStatus: z.ZodEnum<{
|
|
372
|
+
trialing: "trialing";
|
|
373
|
+
active: "active";
|
|
374
|
+
past_due: "past_due";
|
|
375
|
+
paused: "paused";
|
|
376
|
+
canceled: "canceled";
|
|
377
|
+
expired: "expired";
|
|
378
|
+
}>;
|
|
379
|
+
toStatus: z.ZodLiteral<"canceled">;
|
|
380
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
381
|
+
tenantId: z.ZodString;
|
|
382
|
+
subscriptionId: z.ZodString;
|
|
383
|
+
occurredAt: z.ZodDate;
|
|
384
|
+
effectiveAt: z.ZodDate;
|
|
385
|
+
subscriptionType: z.ZodEnum<{
|
|
386
|
+
primary: "primary";
|
|
387
|
+
addon: "addon";
|
|
388
|
+
}>;
|
|
389
|
+
parentSubscriptionId: z.ZodOptional<z.ZodString>;
|
|
390
|
+
scope: z.ZodEnum<{
|
|
391
|
+
custom: "custom";
|
|
392
|
+
tenant: "tenant";
|
|
393
|
+
workspace: "workspace";
|
|
394
|
+
shop: "shop";
|
|
395
|
+
}>;
|
|
396
|
+
scopeId: z.ZodOptional<z.ZodString>;
|
|
397
|
+
fromPlanKey: z.ZodOptional<z.ZodString>;
|
|
398
|
+
toPlanKey: z.ZodOptional<z.ZodString>;
|
|
87
399
|
fromModules: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
88
400
|
toModules: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
89
401
|
fromIntervalUnit: z.ZodOptional<z.ZodEnum<{
|
|
@@ -100,7 +412,7 @@ export declare const ZRBTenantSubscriptionEvent: z.ZodObject<{
|
|
|
100
412
|
toPriceId: z.ZodOptional<z.ZodString>;
|
|
101
413
|
billingAnchor: z.ZodOptional<z.ZodDate>;
|
|
102
414
|
supersedesEventId: z.ZodOptional<z.ZodString>;
|
|
103
|
-
idempotencyKey: z.
|
|
415
|
+
idempotencyKey: z.ZodString;
|
|
104
416
|
direction: z.ZodOptional<z.ZodEnum<{
|
|
105
417
|
upgrade: "upgrade";
|
|
106
418
|
downgrade: "downgrade";
|
|
@@ -118,7 +430,24 @@ export declare const ZRBTenantSubscriptionEvent: z.ZodObject<{
|
|
|
118
430
|
providerEventId: z.ZodOptional<z.ZodString>;
|
|
119
431
|
providerPayload: z.ZodOptional<z.ZodUnknown>;
|
|
120
432
|
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
121
|
-
|
|
433
|
+
type: z.ZodLiteral<"renewed">;
|
|
434
|
+
fromStatus: z.ZodEnum<{
|
|
435
|
+
trialing: "trialing";
|
|
436
|
+
active: "active";
|
|
437
|
+
past_due: "past_due";
|
|
438
|
+
paused: "paused";
|
|
439
|
+
canceled: "canceled";
|
|
440
|
+
expired: "expired";
|
|
441
|
+
}>;
|
|
442
|
+
toStatus: z.ZodEnum<{
|
|
443
|
+
trialing: "trialing";
|
|
444
|
+
active: "active";
|
|
445
|
+
past_due: "past_due";
|
|
446
|
+
paused: "paused";
|
|
447
|
+
canceled: "canceled";
|
|
448
|
+
expired: "expired";
|
|
449
|
+
}>;
|
|
450
|
+
}, z.core.$strip>], "type">;
|
|
122
451
|
export type IRBTenantSubscriptionEvent = z.infer<typeof ZRBTenantSubscriptionEvent>;
|
|
123
452
|
export declare const RBTenantSubscriptionEventSchema: Schema;
|
|
124
453
|
//# sourceMappingURL=RBTenantSubscriptionEvent.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"RBTenantSubscriptionEvent.d.ts","sourceRoot":"","sources":["../../src/models/RBTenantSubscriptionEvent.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,MAAM,EAAE,MAAM,UAAU,CAAA;AACjC,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAA;
|
|
1
|
+
{"version":3,"file":"RBTenantSubscriptionEvent.d.ts","sourceRoot":"","sources":["../../src/models/RBTenantSubscriptionEvent.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,MAAM,EAAE,MAAM,UAAU,CAAA;AACjC,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAA;AAWvB,eAAO,MAAM,2BAA2B;;;;;;;EAAgC,CAAA;AAExE,eAAO,MAAM,iCAAiC;;;EAAsC,CAAA;AAEpF,eAAO,MAAM,yBAAyB;;;EAA6B,CAAA;AAEnE,eAAO,MAAM,0BAA0B;;;;;EAA8B,CAAA;AAErE,eAAO,MAAM,8BAA8B;;;;;;;EAAmC,CAAA;AAG9E,eAAO,MAAM,gCAAgC;;;;;EAK3C,CAAA;AAEF,eAAO,MAAM,oCAAoC;;;;EAAyC,CAAA;AAkF1F,eAAO,MAAM,0BAA0B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2BAsBrC,CAAA;AAEF,MAAM,MAAM,0BAA0B,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,0BAA0B,CAAC,CAAA;AAanF,eAAO,MAAM,+BAA+B,EAAE,MA6D7C,CAAA"}
|