@forklaunch/implementation-billing-stripe 0.0.3 → 0.0.6
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/lib/domain/enum/index.d.mts +189 -190
- package/lib/domain/enum/index.d.ts +189 -190
- package/lib/domain/enum/index.js +194 -203
- package/lib/domain/enum/index.mjs +184 -188
- package/lib/domain/schemas/index.d.mts +317 -4084
- package/lib/domain/schemas/index.d.ts +317 -4084
- package/lib/domain/schemas/index.js +256 -336
- package/lib/domain/schemas/index.mjs +205 -210
- package/lib/domain/types/index.d.mts +72 -231
- package/lib/domain/types/index.d.ts +72 -231
- package/lib/domain/types/index.js +4 -8
- package/lib/eject/domain/enum/billingProvider.enum.ts +5 -3
- package/lib/eject/domain/enum/currency.enum.ts +138 -137
- package/lib/eject/domain/enum/paymentMethod.enum.ts +41 -39
- package/lib/eject/domain/enum/planCadence.enum.ts +7 -5
- package/lib/eject/domain/schemas/billingPortal.schema.ts +1 -1
- package/lib/eject/domain/schemas/checkoutSession.schema.ts +3 -3
- package/lib/eject/domain/schemas/paymentLink.schema.ts +3 -3
- package/lib/eject/domain/schemas/plan.schema.ts +4 -4
- package/lib/eject/domain/schemas/subscription.schema.ts +2 -2
- package/lib/eject/domain/types/index.ts +1 -1
- package/lib/eject/services/paymentLink.service.ts +1 -1
- package/lib/services/index.d.mts +194 -709
- package/lib/services/index.d.ts +194 -709
- package/lib/services/index.js +249 -359
- package/lib/services/index.mjs +210 -298
- package/package.json +13 -13
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
// domain/schemas/billingPortal.schema.ts
|
|
2
|
-
import { serviceSchemaResolver } from
|
|
2
|
+
import { serviceSchemaResolver } from "@forklaunch/internal";
|
|
3
3
|
|
|
4
4
|
// domain/schemas/typebox/billingPortal.schema.ts
|
|
5
|
-
import { date, optional, string, type } from
|
|
5
|
+
import { date, optional, string, type } from "@forklaunch/validator/typebox";
|
|
6
6
|
var CreateBillingPortalSchema = {
|
|
7
7
|
id: optional(string),
|
|
8
8
|
customerId: string,
|
|
@@ -32,12 +32,7 @@ var StripeBillingPortalServiceSchemas = {
|
|
|
32
32
|
};
|
|
33
33
|
|
|
34
34
|
// domain/schemas/zod/billingPortal.schema.ts
|
|
35
|
-
import {
|
|
36
|
-
date as date2,
|
|
37
|
-
optional as optional2,
|
|
38
|
-
string as string2,
|
|
39
|
-
type as type2
|
|
40
|
-
} from '@forklaunch/validator/zod';
|
|
35
|
+
import { date as date2, optional as optional2, string as string2, type as type2 } from "@forklaunch/validator/zod";
|
|
41
36
|
var CreateBillingPortalSchema2 = {
|
|
42
37
|
id: optional2(string2),
|
|
43
38
|
customerId: string2,
|
|
@@ -73,7 +68,7 @@ var StripeBillingPortalServiceSchemas3 = serviceSchemaResolver(
|
|
|
73
68
|
);
|
|
74
69
|
|
|
75
70
|
// domain/schemas/checkoutSession.schema.ts
|
|
76
|
-
import { serviceSchemaResolver as serviceSchemaResolver2 } from
|
|
71
|
+
import { serviceSchemaResolver as serviceSchemaResolver2 } from "@forklaunch/internal";
|
|
77
72
|
|
|
78
73
|
// domain/schemas/typebox/checkoutSession.schema.ts
|
|
79
74
|
import {
|
|
@@ -84,189 +79,187 @@ import {
|
|
|
84
79
|
string as string3,
|
|
85
80
|
type as type3,
|
|
86
81
|
unknown
|
|
87
|
-
} from
|
|
82
|
+
} from "@forklaunch/validator/typebox";
|
|
88
83
|
|
|
89
84
|
// domain/enum/currency.enum.ts
|
|
90
|
-
var CurrencyEnum =
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
})(CurrencyEnum || {});
|
|
85
|
+
var CurrencyEnum = {
|
|
86
|
+
USD: "USD",
|
|
87
|
+
AED: "AED",
|
|
88
|
+
AFN: "AFN",
|
|
89
|
+
ALL: "ALL",
|
|
90
|
+
AMD: "AMD",
|
|
91
|
+
ANG: "ANG",
|
|
92
|
+
AOA: "AOA",
|
|
93
|
+
ARS: "ARS",
|
|
94
|
+
AUD: "AUD",
|
|
95
|
+
AWG: "AWG",
|
|
96
|
+
AZN: "AZN",
|
|
97
|
+
BAM: "BAM",
|
|
98
|
+
BBD: "BBD",
|
|
99
|
+
BDT: "BDT",
|
|
100
|
+
BGN: "BGN",
|
|
101
|
+
BIF: "BIF",
|
|
102
|
+
BMD: "BMD",
|
|
103
|
+
BND: "BND",
|
|
104
|
+
BOB: "BOB",
|
|
105
|
+
BRL: "BRL",
|
|
106
|
+
BSD: "BSD",
|
|
107
|
+
BWP: "BWP",
|
|
108
|
+
BYN: "BYN",
|
|
109
|
+
BZD: "BZD",
|
|
110
|
+
CAD: "CAD",
|
|
111
|
+
CDF: "CDF",
|
|
112
|
+
CHF: "CHF",
|
|
113
|
+
CLP: "CLP",
|
|
114
|
+
CNY: "CNY",
|
|
115
|
+
COP: "COP",
|
|
116
|
+
CRC: "CRC",
|
|
117
|
+
CVE: "CVE",
|
|
118
|
+
CZK: "CZK",
|
|
119
|
+
DJF: "DJF",
|
|
120
|
+
DKK: "DKK",
|
|
121
|
+
DOP: "DOP",
|
|
122
|
+
DZD: "DZD",
|
|
123
|
+
EGP: "EGP",
|
|
124
|
+
ETB: "ETB",
|
|
125
|
+
EUR: "EUR",
|
|
126
|
+
FJD: "FJD",
|
|
127
|
+
FKP: "FKP",
|
|
128
|
+
GBP: "GBP",
|
|
129
|
+
GEL: "GEL",
|
|
130
|
+
GIP: "GIP",
|
|
131
|
+
GMD: "GMD",
|
|
132
|
+
GNF: "GNF",
|
|
133
|
+
GTQ: "GTQ",
|
|
134
|
+
GYD: "GYD",
|
|
135
|
+
HKD: "HKD",
|
|
136
|
+
HNL: "HNL",
|
|
137
|
+
HTG: "HTG",
|
|
138
|
+
HUF: "HUF",
|
|
139
|
+
IDR: "IDR",
|
|
140
|
+
ILS: "ILS",
|
|
141
|
+
INR: "INR",
|
|
142
|
+
ISK: "ISK",
|
|
143
|
+
JMD: "JMD",
|
|
144
|
+
JPY: "JPY",
|
|
145
|
+
KES: "KES",
|
|
146
|
+
KGS: "KGS",
|
|
147
|
+
KHR: "KHR",
|
|
148
|
+
KMF: "KMF",
|
|
149
|
+
KRW: "KRW",
|
|
150
|
+
KYD: "KYD",
|
|
151
|
+
KZT: "KZT",
|
|
152
|
+
LAK: "LAK",
|
|
153
|
+
LBP: "LBP",
|
|
154
|
+
LKR: "LKR",
|
|
155
|
+
LRD: "LRD",
|
|
156
|
+
LSL: "LSL",
|
|
157
|
+
MAD: "MAD",
|
|
158
|
+
MDL: "MDL",
|
|
159
|
+
MGA: "MGA",
|
|
160
|
+
MKD: "MKD",
|
|
161
|
+
MMK: "MMK",
|
|
162
|
+
MNT: "MNT",
|
|
163
|
+
MOP: "MOP",
|
|
164
|
+
MUR: "MUR",
|
|
165
|
+
MVR: "MVR",
|
|
166
|
+
MWK: "MWK",
|
|
167
|
+
MXN: "MXN",
|
|
168
|
+
MYR: "MYR",
|
|
169
|
+
MZN: "MZN",
|
|
170
|
+
NAD: "NAD",
|
|
171
|
+
NGN: "NGN",
|
|
172
|
+
NIO: "NIO",
|
|
173
|
+
NOK: "NOK",
|
|
174
|
+
NPR: "NPR",
|
|
175
|
+
NZD: "NZD",
|
|
176
|
+
PAB: "PAB",
|
|
177
|
+
PEN: "PEN",
|
|
178
|
+
PGK: "PGK",
|
|
179
|
+
PHP: "PHP",
|
|
180
|
+
PKR: "PKR",
|
|
181
|
+
PLN: "PLN",
|
|
182
|
+
PYG: "PYG",
|
|
183
|
+
QAR: "QAR",
|
|
184
|
+
RON: "RON",
|
|
185
|
+
RSD: "RSD",
|
|
186
|
+
RUB: "RUB",
|
|
187
|
+
RWF: "RWF",
|
|
188
|
+
SAR: "SAR",
|
|
189
|
+
SBD: "SBD",
|
|
190
|
+
SCR: "SCR",
|
|
191
|
+
SEK: "SEK",
|
|
192
|
+
SGD: "SGD",
|
|
193
|
+
SHP: "SHP",
|
|
194
|
+
SLE: "SLE",
|
|
195
|
+
SOS: "SOS",
|
|
196
|
+
SRD: "SRD",
|
|
197
|
+
STD: "STD",
|
|
198
|
+
SZL: "SZL",
|
|
199
|
+
THB: "THB",
|
|
200
|
+
TJS: "TJS",
|
|
201
|
+
TOP: "TOP",
|
|
202
|
+
TRY: "TRY",
|
|
203
|
+
TTD: "TTD",
|
|
204
|
+
TWD: "TWD",
|
|
205
|
+
TZS: "TZS",
|
|
206
|
+
UAH: "UAH",
|
|
207
|
+
UGX: "UGX",
|
|
208
|
+
UYU: "UYU",
|
|
209
|
+
UZS: "UZS",
|
|
210
|
+
VND: "VND",
|
|
211
|
+
VUV: "VUV",
|
|
212
|
+
WST: "WST",
|
|
213
|
+
XAF: "XAF",
|
|
214
|
+
XCD: "XCD",
|
|
215
|
+
XCG: "XCG",
|
|
216
|
+
XOF: "XOF",
|
|
217
|
+
XPF: "XPF",
|
|
218
|
+
YER: "YER",
|
|
219
|
+
ZAR: "ZAR",
|
|
220
|
+
ZMW: "ZMW"
|
|
221
|
+
};
|
|
228
222
|
|
|
229
223
|
// domain/enum/paymentMethod.enum.ts
|
|
230
|
-
var PaymentMethodEnum =
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
})(PaymentMethodEnum || {});
|
|
224
|
+
var PaymentMethodEnum = {
|
|
225
|
+
AFFIRM: "affirm",
|
|
226
|
+
AFTERPAY_CLEARPAY: "afterpay_clearpay",
|
|
227
|
+
ALIPAY: "alipay",
|
|
228
|
+
ALMA: "alma",
|
|
229
|
+
AU_BECS_DEBIT: "au_becs_debit",
|
|
230
|
+
BACS_DEBIT: "bacs_debit",
|
|
231
|
+
BANCONTACT: "bancontact",
|
|
232
|
+
BILLIE: "billie",
|
|
233
|
+
BLIK: "blik",
|
|
234
|
+
BOLETO: "boleto",
|
|
235
|
+
CARD: "card",
|
|
236
|
+
CASHAPP: "cashapp",
|
|
237
|
+
EPS: "eps",
|
|
238
|
+
FPX: "fpx",
|
|
239
|
+
GIROPAY: "giropay",
|
|
240
|
+
GRABPAY: "grabpay",
|
|
241
|
+
IDEAL: "ideal",
|
|
242
|
+
KLARNA: "klarna",
|
|
243
|
+
KONBINI: "konbini",
|
|
244
|
+
LINK: "link",
|
|
245
|
+
MOBILEPAY: "mobilepay",
|
|
246
|
+
MULTIBANCO: "multibanco",
|
|
247
|
+
OXXO: "oxxo",
|
|
248
|
+
P24: "p24",
|
|
249
|
+
PAY_BY_BANK: "pay_by_bank",
|
|
250
|
+
PAYNOW: "paynow",
|
|
251
|
+
PAYPAL: "paypal",
|
|
252
|
+
PIX: "pix",
|
|
253
|
+
PROMPTPAY: "promptpay",
|
|
254
|
+
SATISPAY: "satispay",
|
|
255
|
+
SEPA_DEBIT: "sepa_debit",
|
|
256
|
+
SOFORT: "sofort",
|
|
257
|
+
SWISH: "swish",
|
|
258
|
+
TWINT: "twint",
|
|
259
|
+
US_BANK_ACCOUNT: "us_bank_account",
|
|
260
|
+
WECHAT_PAY: "wechat_pay",
|
|
261
|
+
ZIP: "zip"
|
|
262
|
+
};
|
|
270
263
|
|
|
271
264
|
// domain/schemas/typebox/checkoutSession.schema.ts
|
|
272
265
|
var CreateCheckoutSessionSchema = (StatusEnum) => ({
|
|
@@ -289,7 +282,9 @@ var UpdateCheckoutSessionSchema = (StatusEnum) => ({
|
|
|
289
282
|
cancelRedirectUri: optional3(string3),
|
|
290
283
|
expiresAt: optional3(date3),
|
|
291
284
|
status: optional3(enum_(StatusEnum)),
|
|
292
|
-
stripeFields: optional3(
|
|
285
|
+
stripeFields: optional3(
|
|
286
|
+
type3()
|
|
287
|
+
)
|
|
293
288
|
});
|
|
294
289
|
var CheckoutSessionSchema = (StatusEnum) => ({
|
|
295
290
|
id: string3,
|
|
@@ -320,7 +315,7 @@ import {
|
|
|
320
315
|
string as string4,
|
|
321
316
|
type as type4,
|
|
322
317
|
unknown as unknown2
|
|
323
|
-
} from
|
|
318
|
+
} from "@forklaunch/validator/zod";
|
|
324
319
|
var CreateCheckoutSessionSchema2 = (StatusEnum) => ({
|
|
325
320
|
id: optional4(string4),
|
|
326
321
|
customerId: string4,
|
|
@@ -341,7 +336,9 @@ var UpdateCheckoutSessionSchema2 = (StatusEnum) => ({
|
|
|
341
336
|
cancelRedirectUri: optional4(string4),
|
|
342
337
|
expiresAt: optional4(date4),
|
|
343
338
|
status: optional4(enum_2(StatusEnum)),
|
|
344
|
-
stripeFields: optional4(
|
|
339
|
+
stripeFields: optional4(
|
|
340
|
+
type4()
|
|
341
|
+
)
|
|
345
342
|
});
|
|
346
343
|
var CheckoutSessionSchema2 = (StatusEnum) => ({
|
|
347
344
|
id: string4,
|
|
@@ -370,7 +367,7 @@ var StripeCheckoutSessionServiceSchemas3 = serviceSchemaResolver2(
|
|
|
370
367
|
);
|
|
371
368
|
|
|
372
369
|
// domain/schemas/paymentLink.schema.ts
|
|
373
|
-
import { serviceSchemaResolver as serviceSchemaResolver3 } from
|
|
370
|
+
import { serviceSchemaResolver as serviceSchemaResolver3 } from "@forklaunch/internal";
|
|
374
371
|
|
|
375
372
|
// domain/schemas/typebox/paymentLink.schema.ts
|
|
376
373
|
import {
|
|
@@ -381,7 +378,7 @@ import {
|
|
|
381
378
|
optional as optional5,
|
|
382
379
|
string as string5,
|
|
383
380
|
type as type5
|
|
384
|
-
} from
|
|
381
|
+
} from "@forklaunch/validator/typebox";
|
|
385
382
|
var CreatePaymentLinkSchema = (StatusEnum) => ({
|
|
386
383
|
id: optional5(string5),
|
|
387
384
|
amount: number,
|
|
@@ -423,7 +420,7 @@ import {
|
|
|
423
420
|
optional as optional6,
|
|
424
421
|
string as string6,
|
|
425
422
|
type as type6
|
|
426
|
-
} from
|
|
423
|
+
} from "@forklaunch/validator/zod";
|
|
427
424
|
var CreatePaymentLinkSchema2 = (StatusEnum) => ({
|
|
428
425
|
id: optional6(string6),
|
|
429
426
|
amount: number2,
|
|
@@ -463,7 +460,7 @@ var StripePaymentLinkServiceSchemas3 = serviceSchemaResolver3(
|
|
|
463
460
|
);
|
|
464
461
|
|
|
465
462
|
// domain/schemas/plan.schema.ts
|
|
466
|
-
import { serviceSchemaResolver as serviceSchemaResolver4 } from
|
|
463
|
+
import { serviceSchemaResolver as serviceSchemaResolver4 } from "@forklaunch/internal";
|
|
467
464
|
|
|
468
465
|
// domain/schemas/typebox/plan.schema.ts
|
|
469
466
|
import {
|
|
@@ -475,21 +472,19 @@ import {
|
|
|
475
472
|
optional as optional7,
|
|
476
473
|
string as string7,
|
|
477
474
|
type as type7
|
|
478
|
-
} from
|
|
475
|
+
} from "@forklaunch/validator/typebox";
|
|
479
476
|
|
|
480
477
|
// domain/enum/billingProvider.enum.ts
|
|
481
|
-
var BillingProviderEnum =
|
|
482
|
-
|
|
483
|
-
|
|
484
|
-
})(BillingProviderEnum || {});
|
|
478
|
+
var BillingProviderEnum = {
|
|
479
|
+
STRIPE: "stripe"
|
|
480
|
+
};
|
|
485
481
|
|
|
486
482
|
// domain/enum/planCadence.enum.ts
|
|
487
|
-
var PlanCadenceEnum =
|
|
488
|
-
|
|
489
|
-
|
|
490
|
-
|
|
491
|
-
|
|
492
|
-
})(PlanCadenceEnum || {});
|
|
483
|
+
var PlanCadenceEnum = {
|
|
484
|
+
WEEKLY: "week",
|
|
485
|
+
MONTHLY: "month",
|
|
486
|
+
ANNUALLY: "year"
|
|
487
|
+
};
|
|
493
488
|
|
|
494
489
|
// domain/schemas/typebox/plan.schema.ts
|
|
495
490
|
var CreatePlanSchema = {
|
|
@@ -549,7 +544,7 @@ import {
|
|
|
549
544
|
optional as optional8,
|
|
550
545
|
string as string8,
|
|
551
546
|
type as type8
|
|
552
|
-
} from
|
|
547
|
+
} from "@forklaunch/validator/zod";
|
|
553
548
|
var CreatePlanSchema2 = {
|
|
554
549
|
id: optional8(string8),
|
|
555
550
|
name: string8,
|
|
@@ -604,7 +599,7 @@ var StripePlanServiceSchemas3 = serviceSchemaResolver4(
|
|
|
604
599
|
);
|
|
605
600
|
|
|
606
601
|
// domain/schemas/subscription.schema.ts
|
|
607
|
-
import { serviceSchemaResolver as serviceSchemaResolver5 } from
|
|
602
|
+
import { serviceSchemaResolver as serviceSchemaResolver5 } from "@forklaunch/internal";
|
|
608
603
|
|
|
609
604
|
// domain/schemas/typebox/subscription.schema.ts
|
|
610
605
|
import {
|
|
@@ -614,7 +609,7 @@ import {
|
|
|
614
609
|
optional as optional9,
|
|
615
610
|
string as string9,
|
|
616
611
|
type as type9
|
|
617
|
-
} from
|
|
612
|
+
} from "@forklaunch/validator/typebox";
|
|
618
613
|
var CreateSubscriptionSchema = (PartyEnum) => ({
|
|
619
614
|
id: optional9(string9),
|
|
620
615
|
partyId: string9,
|
|
@@ -673,7 +668,7 @@ import {
|
|
|
673
668
|
optional as optional10,
|
|
674
669
|
string as string10,
|
|
675
670
|
type as type10
|
|
676
|
-
} from
|
|
671
|
+
} from "@forklaunch/validator/zod";
|
|
677
672
|
var CreateSubscriptionSchema2 = (PartyEnum) => ({
|
|
678
673
|
id: optional10(string10),
|
|
679
674
|
partyId: string10,
|