@nyig/models 0.4.16 → 0.4.18
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/index.d.mts +47 -22
- package/index.d.ts +47 -22
- package/index.js +12 -3
- package/index.mjs +12 -3
- package/package.json +1 -1
package/index.d.mts
CHANGED
|
@@ -3517,7 +3517,6 @@ declare const zBInvoice: z.ZodObject<{
|
|
|
3517
3517
|
showEin: z.ZodOptional<z.ZodBoolean>;
|
|
3518
3518
|
notes: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
|
|
3519
3519
|
createdBy: z.ZodString;
|
|
3520
|
-
lastEditBy: z.ZodOptional<z.ZodString>;
|
|
3521
3520
|
}, "strip", z.ZodTypeAny, {
|
|
3522
3521
|
billTo: string;
|
|
3523
3522
|
packages: {
|
|
@@ -3539,7 +3538,6 @@ declare const zBInvoice: z.ZodObject<{
|
|
|
3539
3538
|
paid?: PaymentMethod | undefined;
|
|
3540
3539
|
paidAt?: string | undefined;
|
|
3541
3540
|
showEin?: boolean | undefined;
|
|
3542
|
-
lastEditBy?: string | undefined;
|
|
3543
3541
|
}, {
|
|
3544
3542
|
billTo: string;
|
|
3545
3543
|
packages: {
|
|
@@ -3561,7 +3559,6 @@ declare const zBInvoice: z.ZodObject<{
|
|
|
3561
3559
|
paid?: PaymentMethod | undefined;
|
|
3562
3560
|
paidAt?: string | undefined;
|
|
3563
3561
|
showEin?: boolean | undefined;
|
|
3564
|
-
lastEditBy?: string | undefined;
|
|
3565
3562
|
}>;
|
|
3566
3563
|
declare const zInvoice: z.ZodObject<{
|
|
3567
3564
|
billTo: z.ZodString;
|
|
@@ -3612,7 +3609,6 @@ declare const zInvoice: z.ZodObject<{
|
|
|
3612
3609
|
showEin: z.ZodOptional<z.ZodBoolean>;
|
|
3613
3610
|
notes: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
|
|
3614
3611
|
createdBy: z.ZodString;
|
|
3615
|
-
lastEditBy: z.ZodOptional<z.ZodString>;
|
|
3616
3612
|
} & {
|
|
3617
3613
|
_id: z.ZodString;
|
|
3618
3614
|
editedBy: z.ZodOptional<z.ZodString>;
|
|
@@ -3643,7 +3639,6 @@ declare const zInvoice: z.ZodObject<{
|
|
|
3643
3639
|
paid?: PaymentMethod | undefined;
|
|
3644
3640
|
paidAt?: string | undefined;
|
|
3645
3641
|
showEin?: boolean | undefined;
|
|
3646
|
-
lastEditBy?: string | undefined;
|
|
3647
3642
|
}, {
|
|
3648
3643
|
_id: string;
|
|
3649
3644
|
billTo: string;
|
|
@@ -3669,7 +3664,6 @@ declare const zInvoice: z.ZodObject<{
|
|
|
3669
3664
|
paid?: PaymentMethod | undefined;
|
|
3670
3665
|
paidAt?: string | undefined;
|
|
3671
3666
|
showEin?: boolean | undefined;
|
|
3672
|
-
lastEditBy?: string | undefined;
|
|
3673
3667
|
}>;
|
|
3674
3668
|
declare const zInvoiceResponse: z.ZodObject<{
|
|
3675
3669
|
billTo: z.ZodString;
|
|
@@ -3690,7 +3684,6 @@ declare const zInvoiceResponse: z.ZodObject<{
|
|
|
3690
3684
|
showEin: z.ZodOptional<z.ZodBoolean>;
|
|
3691
3685
|
notes: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
|
|
3692
3686
|
_id: z.ZodString;
|
|
3693
|
-
editedBy: z.ZodOptional<z.ZodString>;
|
|
3694
3687
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
3695
3688
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
3696
3689
|
} & {
|
|
@@ -3783,7 +3776,7 @@ declare const zInvoiceResponse: z.ZodObject<{
|
|
|
3783
3776
|
imageUrl?: string | undefined;
|
|
3784
3777
|
available?: number[][][] | undefined;
|
|
3785
3778
|
}>;
|
|
3786
|
-
|
|
3779
|
+
editedBy: z.ZodOptional<z.ZodObject<{
|
|
3787
3780
|
name: z.ZodString;
|
|
3788
3781
|
username: z.ZodOptional<z.ZodString>;
|
|
3789
3782
|
password: z.ZodOptional<z.ZodString>;
|
|
@@ -4084,13 +4077,7 @@ declare const zInvoiceResponse: z.ZodObject<{
|
|
|
4084
4077
|
notes?: string | undefined;
|
|
4085
4078
|
textbook?: number | undefined;
|
|
4086
4079
|
shipping?: number | undefined;
|
|
4087
|
-
editedBy?:
|
|
4088
|
-
createdAt?: string | undefined;
|
|
4089
|
-
updatedAt?: string | undefined;
|
|
4090
|
-
paid?: PaymentMethod | undefined;
|
|
4091
|
-
paidAt?: string | undefined;
|
|
4092
|
-
showEin?: boolean | undefined;
|
|
4093
|
-
lastEditBy?: {
|
|
4080
|
+
editedBy?: {
|
|
4094
4081
|
rank: GoRank;
|
|
4095
4082
|
_id: string;
|
|
4096
4083
|
name: string;
|
|
@@ -4117,6 +4104,11 @@ declare const zInvoiceResponse: z.ZodObject<{
|
|
|
4117
4104
|
imageUrl?: string | undefined;
|
|
4118
4105
|
available?: number[][][] | undefined;
|
|
4119
4106
|
} | undefined;
|
|
4107
|
+
createdAt?: string | undefined;
|
|
4108
|
+
updatedAt?: string | undefined;
|
|
4109
|
+
paid?: PaymentMethod | undefined;
|
|
4110
|
+
paidAt?: string | undefined;
|
|
4111
|
+
showEin?: boolean | undefined;
|
|
4120
4112
|
}, {
|
|
4121
4113
|
_id: string;
|
|
4122
4114
|
billTo: string;
|
|
@@ -4183,13 +4175,7 @@ declare const zInvoiceResponse: z.ZodObject<{
|
|
|
4183
4175
|
notes?: string | undefined;
|
|
4184
4176
|
textbook?: number | undefined;
|
|
4185
4177
|
shipping?: number | undefined;
|
|
4186
|
-
editedBy?:
|
|
4187
|
-
createdAt?: string | undefined;
|
|
4188
|
-
updatedAt?: string | undefined;
|
|
4189
|
-
paid?: PaymentMethod | undefined;
|
|
4190
|
-
paidAt?: string | undefined;
|
|
4191
|
-
showEin?: boolean | undefined;
|
|
4192
|
-
lastEditBy?: {
|
|
4178
|
+
editedBy?: {
|
|
4193
4179
|
rank: GoRank;
|
|
4194
4180
|
_id: string;
|
|
4195
4181
|
name: string;
|
|
@@ -4216,6 +4202,11 @@ declare const zInvoiceResponse: z.ZodObject<{
|
|
|
4216
4202
|
imageUrl?: string | undefined;
|
|
4217
4203
|
available?: number[][][] | undefined;
|
|
4218
4204
|
} | undefined;
|
|
4205
|
+
createdAt?: string | undefined;
|
|
4206
|
+
updatedAt?: string | undefined;
|
|
4207
|
+
paid?: PaymentMethod | undefined;
|
|
4208
|
+
paidAt?: string | undefined;
|
|
4209
|
+
showEin?: boolean | undefined;
|
|
4219
4210
|
}>;
|
|
4220
4211
|
type Discount = z.infer<typeof zDiscount>;
|
|
4221
4212
|
type InvoiceItem = z.infer<typeof zInvoiceItem>;
|
|
@@ -4984,6 +4975,16 @@ declare const zBEventConfig: z.ZodObject<{
|
|
|
4984
4975
|
fields: string[];
|
|
4985
4976
|
data: Record<string, Record<string, string>[]>;
|
|
4986
4977
|
}>;
|
|
4978
|
+
/**
|
|
4979
|
+
* @optional description of the tickets step, shown in service
|
|
4980
|
+
* when the customer is on step 1 of the booking page
|
|
4981
|
+
*/
|
|
4982
|
+
ticketsStepDescription: z.ZodOptional<z.ZodString>;
|
|
4983
|
+
/**
|
|
4984
|
+
* @optional description of the participant step, shown in service
|
|
4985
|
+
* when the customer is on step 2 of the booking page
|
|
4986
|
+
*/
|
|
4987
|
+
participantStepDescription: z.ZodOptional<z.ZodString>;
|
|
4987
4988
|
/**
|
|
4988
4989
|
* List of ticket object IDs for this tournament
|
|
4989
4990
|
*/
|
|
@@ -5037,6 +5038,8 @@ declare const zBEventConfig: z.ZodObject<{
|
|
|
5037
5038
|
canRegister: boolean;
|
|
5038
5039
|
isYouth: boolean;
|
|
5039
5040
|
location?: string | undefined;
|
|
5041
|
+
ticketsStepDescription?: string | undefined;
|
|
5042
|
+
participantStepDescription?: string | undefined;
|
|
5040
5043
|
donationsDisabled?: boolean | undefined;
|
|
5041
5044
|
image?: {
|
|
5042
5045
|
url: string;
|
|
@@ -5063,6 +5066,8 @@ declare const zBEventConfig: z.ZodObject<{
|
|
|
5063
5066
|
canRegister: boolean;
|
|
5064
5067
|
isYouth: boolean;
|
|
5065
5068
|
location?: string | undefined;
|
|
5069
|
+
ticketsStepDescription?: string | undefined;
|
|
5070
|
+
participantStepDescription?: string | undefined;
|
|
5066
5071
|
donationsDisabled?: boolean | undefined;
|
|
5067
5072
|
image?: {
|
|
5068
5073
|
url: string;
|
|
@@ -5132,6 +5137,16 @@ declare const zEventConfig: z.ZodObject<{
|
|
|
5132
5137
|
fields: string[];
|
|
5133
5138
|
data: Record<string, Record<string, string>[]>;
|
|
5134
5139
|
}>;
|
|
5140
|
+
/**
|
|
5141
|
+
* @optional description of the tickets step, shown in service
|
|
5142
|
+
* when the customer is on step 1 of the booking page
|
|
5143
|
+
*/
|
|
5144
|
+
ticketsStepDescription: z.ZodOptional<z.ZodString>;
|
|
5145
|
+
/**
|
|
5146
|
+
* @optional description of the participant step, shown in service
|
|
5147
|
+
* when the customer is on step 2 of the booking page
|
|
5148
|
+
*/
|
|
5149
|
+
participantStepDescription: z.ZodOptional<z.ZodString>;
|
|
5135
5150
|
/**
|
|
5136
5151
|
* List of ticket object IDs for this tournament
|
|
5137
5152
|
*/
|
|
@@ -5194,6 +5209,8 @@ declare const zEventConfig: z.ZodObject<{
|
|
|
5194
5209
|
createdAt?: string | undefined;
|
|
5195
5210
|
updatedAt?: string | undefined;
|
|
5196
5211
|
location?: string | undefined;
|
|
5212
|
+
ticketsStepDescription?: string | undefined;
|
|
5213
|
+
participantStepDescription?: string | undefined;
|
|
5197
5214
|
donationsDisabled?: boolean | undefined;
|
|
5198
5215
|
image?: {
|
|
5199
5216
|
url: string;
|
|
@@ -5224,6 +5241,8 @@ declare const zEventConfig: z.ZodObject<{
|
|
|
5224
5241
|
createdAt?: string | undefined;
|
|
5225
5242
|
updatedAt?: string | undefined;
|
|
5226
5243
|
location?: string | undefined;
|
|
5244
|
+
ticketsStepDescription?: string | undefined;
|
|
5245
|
+
participantStepDescription?: string | undefined;
|
|
5227
5246
|
donationsDisabled?: boolean | undefined;
|
|
5228
5247
|
image?: {
|
|
5229
5248
|
url: string;
|
|
@@ -5260,6 +5279,8 @@ declare const zEventConfigResponse: z.ZodObject<{
|
|
|
5260
5279
|
fields: string[];
|
|
5261
5280
|
data: Record<string, Record<string, string>[]>;
|
|
5262
5281
|
}>;
|
|
5282
|
+
ticketsStepDescription: z.ZodOptional<z.ZodString>;
|
|
5283
|
+
participantStepDescription: z.ZodOptional<z.ZodString>;
|
|
5263
5284
|
canRegister: z.ZodBoolean;
|
|
5264
5285
|
isYouth: z.ZodBoolean;
|
|
5265
5286
|
donationsDisabled: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -5351,6 +5372,8 @@ declare const zEventConfigResponse: z.ZodObject<{
|
|
|
5351
5372
|
createdAt?: string | undefined;
|
|
5352
5373
|
updatedAt?: string | undefined;
|
|
5353
5374
|
location?: string | undefined;
|
|
5375
|
+
ticketsStepDescription?: string | undefined;
|
|
5376
|
+
participantStepDescription?: string | undefined;
|
|
5354
5377
|
donationsDisabled?: boolean | undefined;
|
|
5355
5378
|
image?: {
|
|
5356
5379
|
url: string;
|
|
@@ -5392,6 +5415,8 @@ declare const zEventConfigResponse: z.ZodObject<{
|
|
|
5392
5415
|
createdAt?: string | undefined;
|
|
5393
5416
|
updatedAt?: string | undefined;
|
|
5394
5417
|
location?: string | undefined;
|
|
5418
|
+
ticketsStepDescription?: string | undefined;
|
|
5419
|
+
participantStepDescription?: string | undefined;
|
|
5395
5420
|
donationsDisabled?: boolean | undefined;
|
|
5396
5421
|
image?: {
|
|
5397
5422
|
url: string;
|
package/index.d.ts
CHANGED
|
@@ -3517,7 +3517,6 @@ declare const zBInvoice: z.ZodObject<{
|
|
|
3517
3517
|
showEin: z.ZodOptional<z.ZodBoolean>;
|
|
3518
3518
|
notes: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
|
|
3519
3519
|
createdBy: z.ZodString;
|
|
3520
|
-
lastEditBy: z.ZodOptional<z.ZodString>;
|
|
3521
3520
|
}, "strip", z.ZodTypeAny, {
|
|
3522
3521
|
billTo: string;
|
|
3523
3522
|
packages: {
|
|
@@ -3539,7 +3538,6 @@ declare const zBInvoice: z.ZodObject<{
|
|
|
3539
3538
|
paid?: PaymentMethod | undefined;
|
|
3540
3539
|
paidAt?: string | undefined;
|
|
3541
3540
|
showEin?: boolean | undefined;
|
|
3542
|
-
lastEditBy?: string | undefined;
|
|
3543
3541
|
}, {
|
|
3544
3542
|
billTo: string;
|
|
3545
3543
|
packages: {
|
|
@@ -3561,7 +3559,6 @@ declare const zBInvoice: z.ZodObject<{
|
|
|
3561
3559
|
paid?: PaymentMethod | undefined;
|
|
3562
3560
|
paidAt?: string | undefined;
|
|
3563
3561
|
showEin?: boolean | undefined;
|
|
3564
|
-
lastEditBy?: string | undefined;
|
|
3565
3562
|
}>;
|
|
3566
3563
|
declare const zInvoice: z.ZodObject<{
|
|
3567
3564
|
billTo: z.ZodString;
|
|
@@ -3612,7 +3609,6 @@ declare const zInvoice: z.ZodObject<{
|
|
|
3612
3609
|
showEin: z.ZodOptional<z.ZodBoolean>;
|
|
3613
3610
|
notes: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
|
|
3614
3611
|
createdBy: z.ZodString;
|
|
3615
|
-
lastEditBy: z.ZodOptional<z.ZodString>;
|
|
3616
3612
|
} & {
|
|
3617
3613
|
_id: z.ZodString;
|
|
3618
3614
|
editedBy: z.ZodOptional<z.ZodString>;
|
|
@@ -3643,7 +3639,6 @@ declare const zInvoice: z.ZodObject<{
|
|
|
3643
3639
|
paid?: PaymentMethod | undefined;
|
|
3644
3640
|
paidAt?: string | undefined;
|
|
3645
3641
|
showEin?: boolean | undefined;
|
|
3646
|
-
lastEditBy?: string | undefined;
|
|
3647
3642
|
}, {
|
|
3648
3643
|
_id: string;
|
|
3649
3644
|
billTo: string;
|
|
@@ -3669,7 +3664,6 @@ declare const zInvoice: z.ZodObject<{
|
|
|
3669
3664
|
paid?: PaymentMethod | undefined;
|
|
3670
3665
|
paidAt?: string | undefined;
|
|
3671
3666
|
showEin?: boolean | undefined;
|
|
3672
|
-
lastEditBy?: string | undefined;
|
|
3673
3667
|
}>;
|
|
3674
3668
|
declare const zInvoiceResponse: z.ZodObject<{
|
|
3675
3669
|
billTo: z.ZodString;
|
|
@@ -3690,7 +3684,6 @@ declare const zInvoiceResponse: z.ZodObject<{
|
|
|
3690
3684
|
showEin: z.ZodOptional<z.ZodBoolean>;
|
|
3691
3685
|
notes: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
|
|
3692
3686
|
_id: z.ZodString;
|
|
3693
|
-
editedBy: z.ZodOptional<z.ZodString>;
|
|
3694
3687
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
3695
3688
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
3696
3689
|
} & {
|
|
@@ -3783,7 +3776,7 @@ declare const zInvoiceResponse: z.ZodObject<{
|
|
|
3783
3776
|
imageUrl?: string | undefined;
|
|
3784
3777
|
available?: number[][][] | undefined;
|
|
3785
3778
|
}>;
|
|
3786
|
-
|
|
3779
|
+
editedBy: z.ZodOptional<z.ZodObject<{
|
|
3787
3780
|
name: z.ZodString;
|
|
3788
3781
|
username: z.ZodOptional<z.ZodString>;
|
|
3789
3782
|
password: z.ZodOptional<z.ZodString>;
|
|
@@ -4084,13 +4077,7 @@ declare const zInvoiceResponse: z.ZodObject<{
|
|
|
4084
4077
|
notes?: string | undefined;
|
|
4085
4078
|
textbook?: number | undefined;
|
|
4086
4079
|
shipping?: number | undefined;
|
|
4087
|
-
editedBy?:
|
|
4088
|
-
createdAt?: string | undefined;
|
|
4089
|
-
updatedAt?: string | undefined;
|
|
4090
|
-
paid?: PaymentMethod | undefined;
|
|
4091
|
-
paidAt?: string | undefined;
|
|
4092
|
-
showEin?: boolean | undefined;
|
|
4093
|
-
lastEditBy?: {
|
|
4080
|
+
editedBy?: {
|
|
4094
4081
|
rank: GoRank;
|
|
4095
4082
|
_id: string;
|
|
4096
4083
|
name: string;
|
|
@@ -4117,6 +4104,11 @@ declare const zInvoiceResponse: z.ZodObject<{
|
|
|
4117
4104
|
imageUrl?: string | undefined;
|
|
4118
4105
|
available?: number[][][] | undefined;
|
|
4119
4106
|
} | undefined;
|
|
4107
|
+
createdAt?: string | undefined;
|
|
4108
|
+
updatedAt?: string | undefined;
|
|
4109
|
+
paid?: PaymentMethod | undefined;
|
|
4110
|
+
paidAt?: string | undefined;
|
|
4111
|
+
showEin?: boolean | undefined;
|
|
4120
4112
|
}, {
|
|
4121
4113
|
_id: string;
|
|
4122
4114
|
billTo: string;
|
|
@@ -4183,13 +4175,7 @@ declare const zInvoiceResponse: z.ZodObject<{
|
|
|
4183
4175
|
notes?: string | undefined;
|
|
4184
4176
|
textbook?: number | undefined;
|
|
4185
4177
|
shipping?: number | undefined;
|
|
4186
|
-
editedBy?:
|
|
4187
|
-
createdAt?: string | undefined;
|
|
4188
|
-
updatedAt?: string | undefined;
|
|
4189
|
-
paid?: PaymentMethod | undefined;
|
|
4190
|
-
paidAt?: string | undefined;
|
|
4191
|
-
showEin?: boolean | undefined;
|
|
4192
|
-
lastEditBy?: {
|
|
4178
|
+
editedBy?: {
|
|
4193
4179
|
rank: GoRank;
|
|
4194
4180
|
_id: string;
|
|
4195
4181
|
name: string;
|
|
@@ -4216,6 +4202,11 @@ declare const zInvoiceResponse: z.ZodObject<{
|
|
|
4216
4202
|
imageUrl?: string | undefined;
|
|
4217
4203
|
available?: number[][][] | undefined;
|
|
4218
4204
|
} | undefined;
|
|
4205
|
+
createdAt?: string | undefined;
|
|
4206
|
+
updatedAt?: string | undefined;
|
|
4207
|
+
paid?: PaymentMethod | undefined;
|
|
4208
|
+
paidAt?: string | undefined;
|
|
4209
|
+
showEin?: boolean | undefined;
|
|
4219
4210
|
}>;
|
|
4220
4211
|
type Discount = z.infer<typeof zDiscount>;
|
|
4221
4212
|
type InvoiceItem = z.infer<typeof zInvoiceItem>;
|
|
@@ -4984,6 +4975,16 @@ declare const zBEventConfig: z.ZodObject<{
|
|
|
4984
4975
|
fields: string[];
|
|
4985
4976
|
data: Record<string, Record<string, string>[]>;
|
|
4986
4977
|
}>;
|
|
4978
|
+
/**
|
|
4979
|
+
* @optional description of the tickets step, shown in service
|
|
4980
|
+
* when the customer is on step 1 of the booking page
|
|
4981
|
+
*/
|
|
4982
|
+
ticketsStepDescription: z.ZodOptional<z.ZodString>;
|
|
4983
|
+
/**
|
|
4984
|
+
* @optional description of the participant step, shown in service
|
|
4985
|
+
* when the customer is on step 2 of the booking page
|
|
4986
|
+
*/
|
|
4987
|
+
participantStepDescription: z.ZodOptional<z.ZodString>;
|
|
4987
4988
|
/**
|
|
4988
4989
|
* List of ticket object IDs for this tournament
|
|
4989
4990
|
*/
|
|
@@ -5037,6 +5038,8 @@ declare const zBEventConfig: z.ZodObject<{
|
|
|
5037
5038
|
canRegister: boolean;
|
|
5038
5039
|
isYouth: boolean;
|
|
5039
5040
|
location?: string | undefined;
|
|
5041
|
+
ticketsStepDescription?: string | undefined;
|
|
5042
|
+
participantStepDescription?: string | undefined;
|
|
5040
5043
|
donationsDisabled?: boolean | undefined;
|
|
5041
5044
|
image?: {
|
|
5042
5045
|
url: string;
|
|
@@ -5063,6 +5066,8 @@ declare const zBEventConfig: z.ZodObject<{
|
|
|
5063
5066
|
canRegister: boolean;
|
|
5064
5067
|
isYouth: boolean;
|
|
5065
5068
|
location?: string | undefined;
|
|
5069
|
+
ticketsStepDescription?: string | undefined;
|
|
5070
|
+
participantStepDescription?: string | undefined;
|
|
5066
5071
|
donationsDisabled?: boolean | undefined;
|
|
5067
5072
|
image?: {
|
|
5068
5073
|
url: string;
|
|
@@ -5132,6 +5137,16 @@ declare const zEventConfig: z.ZodObject<{
|
|
|
5132
5137
|
fields: string[];
|
|
5133
5138
|
data: Record<string, Record<string, string>[]>;
|
|
5134
5139
|
}>;
|
|
5140
|
+
/**
|
|
5141
|
+
* @optional description of the tickets step, shown in service
|
|
5142
|
+
* when the customer is on step 1 of the booking page
|
|
5143
|
+
*/
|
|
5144
|
+
ticketsStepDescription: z.ZodOptional<z.ZodString>;
|
|
5145
|
+
/**
|
|
5146
|
+
* @optional description of the participant step, shown in service
|
|
5147
|
+
* when the customer is on step 2 of the booking page
|
|
5148
|
+
*/
|
|
5149
|
+
participantStepDescription: z.ZodOptional<z.ZodString>;
|
|
5135
5150
|
/**
|
|
5136
5151
|
* List of ticket object IDs for this tournament
|
|
5137
5152
|
*/
|
|
@@ -5194,6 +5209,8 @@ declare const zEventConfig: z.ZodObject<{
|
|
|
5194
5209
|
createdAt?: string | undefined;
|
|
5195
5210
|
updatedAt?: string | undefined;
|
|
5196
5211
|
location?: string | undefined;
|
|
5212
|
+
ticketsStepDescription?: string | undefined;
|
|
5213
|
+
participantStepDescription?: string | undefined;
|
|
5197
5214
|
donationsDisabled?: boolean | undefined;
|
|
5198
5215
|
image?: {
|
|
5199
5216
|
url: string;
|
|
@@ -5224,6 +5241,8 @@ declare const zEventConfig: z.ZodObject<{
|
|
|
5224
5241
|
createdAt?: string | undefined;
|
|
5225
5242
|
updatedAt?: string | undefined;
|
|
5226
5243
|
location?: string | undefined;
|
|
5244
|
+
ticketsStepDescription?: string | undefined;
|
|
5245
|
+
participantStepDescription?: string | undefined;
|
|
5227
5246
|
donationsDisabled?: boolean | undefined;
|
|
5228
5247
|
image?: {
|
|
5229
5248
|
url: string;
|
|
@@ -5260,6 +5279,8 @@ declare const zEventConfigResponse: z.ZodObject<{
|
|
|
5260
5279
|
fields: string[];
|
|
5261
5280
|
data: Record<string, Record<string, string>[]>;
|
|
5262
5281
|
}>;
|
|
5282
|
+
ticketsStepDescription: z.ZodOptional<z.ZodString>;
|
|
5283
|
+
participantStepDescription: z.ZodOptional<z.ZodString>;
|
|
5263
5284
|
canRegister: z.ZodBoolean;
|
|
5264
5285
|
isYouth: z.ZodBoolean;
|
|
5265
5286
|
donationsDisabled: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -5351,6 +5372,8 @@ declare const zEventConfigResponse: z.ZodObject<{
|
|
|
5351
5372
|
createdAt?: string | undefined;
|
|
5352
5373
|
updatedAt?: string | undefined;
|
|
5353
5374
|
location?: string | undefined;
|
|
5375
|
+
ticketsStepDescription?: string | undefined;
|
|
5376
|
+
participantStepDescription?: string | undefined;
|
|
5354
5377
|
donationsDisabled?: boolean | undefined;
|
|
5355
5378
|
image?: {
|
|
5356
5379
|
url: string;
|
|
@@ -5392,6 +5415,8 @@ declare const zEventConfigResponse: z.ZodObject<{
|
|
|
5392
5415
|
createdAt?: string | undefined;
|
|
5393
5416
|
updatedAt?: string | undefined;
|
|
5394
5417
|
location?: string | undefined;
|
|
5418
|
+
ticketsStepDescription?: string | undefined;
|
|
5419
|
+
participantStepDescription?: string | undefined;
|
|
5395
5420
|
donationsDisabled?: boolean | undefined;
|
|
5396
5421
|
image?: {
|
|
5397
5422
|
url: string;
|
package/index.js
CHANGED
|
@@ -681,13 +681,12 @@ var zBInvoice = import_zod22.z.object({
|
|
|
681
681
|
paidAt: import_zod22.z.string().optional(),
|
|
682
682
|
showEin: import_zod22.z.boolean().optional(),
|
|
683
683
|
notes: import_zod22.z.string().or(import_zod22.z.literal("")).optional(),
|
|
684
|
-
createdBy: import_zod22.z.string()
|
|
685
|
-
lastEditBy: import_zod22.z.string().optional()
|
|
684
|
+
createdBy: import_zod22.z.string()
|
|
686
685
|
});
|
|
687
686
|
var zInvoice = addAutoProps(zBInvoice);
|
|
688
687
|
var zInvoiceResponse = zInvoice.extend({
|
|
689
688
|
createdBy: zTeacher,
|
|
690
|
-
|
|
689
|
+
editedBy: zTeacher.optional(),
|
|
691
690
|
packages: import_zod22.z.array(zInvoicePackageResponse)
|
|
692
691
|
});
|
|
693
692
|
|
|
@@ -853,6 +852,16 @@ var zBEventConfig = import_zod29.z.object({
|
|
|
853
852
|
* data is a map of tab title -> 2 column table rows.
|
|
854
853
|
*/
|
|
855
854
|
schedule: zScheduleTable,
|
|
855
|
+
/**
|
|
856
|
+
* @optional description of the tickets step, shown in service
|
|
857
|
+
* when the customer is on step 1 of the booking page
|
|
858
|
+
*/
|
|
859
|
+
ticketsStepDescription: import_zod29.z.string().optional(),
|
|
860
|
+
/**
|
|
861
|
+
* @optional description of the participant step, shown in service
|
|
862
|
+
* when the customer is on step 2 of the booking page
|
|
863
|
+
*/
|
|
864
|
+
participantStepDescription: import_zod29.z.string().optional(),
|
|
856
865
|
/**
|
|
857
866
|
* List of ticket object IDs for this tournament
|
|
858
867
|
*/
|
package/index.mjs
CHANGED
|
@@ -573,13 +573,12 @@ var zBInvoice = z22.object({
|
|
|
573
573
|
paidAt: z22.string().optional(),
|
|
574
574
|
showEin: z22.boolean().optional(),
|
|
575
575
|
notes: z22.string().or(z22.literal("")).optional(),
|
|
576
|
-
createdBy: z22.string()
|
|
577
|
-
lastEditBy: z22.string().optional()
|
|
576
|
+
createdBy: z22.string()
|
|
578
577
|
});
|
|
579
578
|
var zInvoice = addAutoProps(zBInvoice);
|
|
580
579
|
var zInvoiceResponse = zInvoice.extend({
|
|
581
580
|
createdBy: zTeacher,
|
|
582
|
-
|
|
581
|
+
editedBy: zTeacher.optional(),
|
|
583
582
|
packages: z22.array(zInvoicePackageResponse)
|
|
584
583
|
});
|
|
585
584
|
|
|
@@ -745,6 +744,16 @@ var zBEventConfig = z29.object({
|
|
|
745
744
|
* data is a map of tab title -> 2 column table rows.
|
|
746
745
|
*/
|
|
747
746
|
schedule: zScheduleTable,
|
|
747
|
+
/**
|
|
748
|
+
* @optional description of the tickets step, shown in service
|
|
749
|
+
* when the customer is on step 1 of the booking page
|
|
750
|
+
*/
|
|
751
|
+
ticketsStepDescription: z29.string().optional(),
|
|
752
|
+
/**
|
|
753
|
+
* @optional description of the participant step, shown in service
|
|
754
|
+
* when the customer is on step 2 of the booking page
|
|
755
|
+
*/
|
|
756
|
+
participantStepDescription: z29.string().optional(),
|
|
748
757
|
/**
|
|
749
758
|
* List of ticket object IDs for this tournament
|
|
750
759
|
*/
|