@socotra/ec-react-schemas 2.15.2 → 2.15.3-next.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.d.ts +201 -134
- package/dist/index.es.js +628 -618
- package/dist/index.es.js.map +1 -1
- package/dist/index.umd.js +1 -1
- package/dist/index.umd.js.map +1 -1
- package/package.json +2 -2
package/dist/index.d.ts
CHANGED
|
@@ -2217,14 +2217,14 @@ export declare const ActivityStateEnumSchema: z.ZodEnum<["active", "pastDeadline
|
|
|
2217
2217
|
export declare type ActivityTypeRef = z.infer<typeof ActivityTypeRefSchema>;
|
|
2218
2218
|
|
|
2219
2219
|
export declare const ActivityTypeRefSchema: z.ZodObject<{
|
|
2220
|
-
defaultDeadlineDays: z.ZodNumber
|
|
2220
|
+
defaultDeadlineDays: z.ZodOptional<z.ZodNumber>;
|
|
2221
2221
|
blocksUnderwriting: z.ZodBoolean;
|
|
2222
2222
|
}, "strip", z.ZodTypeAny, {
|
|
2223
|
-
defaultDeadlineDays: number;
|
|
2224
2223
|
blocksUnderwriting: boolean;
|
|
2224
|
+
defaultDeadlineDays?: number | undefined;
|
|
2225
2225
|
}, {
|
|
2226
|
-
defaultDeadlineDays: number;
|
|
2227
2226
|
blocksUnderwriting: boolean;
|
|
2227
|
+
defaultDeadlineDays?: number | undefined;
|
|
2228
2228
|
}>;
|
|
2229
2229
|
|
|
2230
2230
|
export declare type ActivityUpdateAssigneeRequestBff = z.infer<typeof ActivityUpdateAssigneeRequestBffSchema>;
|
|
@@ -4406,7 +4406,7 @@ export declare const coverageTermOptionSchema: z.ZodObject<{
|
|
|
4406
4406
|
export declare const coverageTermSchema: z.ZodObject<{
|
|
4407
4407
|
type: z.ZodString;
|
|
4408
4408
|
displayName: z.ZodOptional<z.ZodString>;
|
|
4409
|
-
options: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
4409
|
+
options: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
4410
4410
|
displayName: z.ZodOptional<z.ZodString>;
|
|
4411
4411
|
value: z.ZodOptional<z.ZodNumber>;
|
|
4412
4412
|
tag: z.ZodOptional<z.ZodString>;
|
|
@@ -4418,22 +4418,50 @@ export declare const coverageTermSchema: z.ZodObject<{
|
|
|
4418
4418
|
value?: number | undefined;
|
|
4419
4419
|
displayName?: string | undefined;
|
|
4420
4420
|
tag?: string | undefined;
|
|
4421
|
+
}>>>;
|
|
4422
|
+
value: z.ZodOptional<z.ZodObject<{
|
|
4423
|
+
type: z.ZodString;
|
|
4424
|
+
defaultValue: z.ZodOptional<z.ZodString>;
|
|
4425
|
+
min: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodNumber]>>;
|
|
4426
|
+
max: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodNumber]>>;
|
|
4427
|
+
}, "strip", z.ZodTypeAny, {
|
|
4428
|
+
type: string;
|
|
4429
|
+
defaultValue?: string | undefined;
|
|
4430
|
+
min?: number | undefined;
|
|
4431
|
+
max?: number | undefined;
|
|
4432
|
+
}, {
|
|
4433
|
+
type: string;
|
|
4434
|
+
defaultValue?: string | undefined;
|
|
4435
|
+
min?: number | undefined;
|
|
4436
|
+
max?: number | undefined;
|
|
4421
4437
|
}>>;
|
|
4422
4438
|
}, "strip", z.ZodTypeAny, {
|
|
4423
|
-
|
|
4439
|
+
type: string;
|
|
4440
|
+
value?: {
|
|
4441
|
+
type: string;
|
|
4442
|
+
defaultValue?: string | undefined;
|
|
4443
|
+
min?: number | undefined;
|
|
4444
|
+
max?: number | undefined;
|
|
4445
|
+
} | undefined;
|
|
4446
|
+
options?: Record<string, {
|
|
4424
4447
|
value?: number | undefined;
|
|
4425
4448
|
displayName?: string | undefined;
|
|
4426
4449
|
tag?: string | undefined;
|
|
4427
|
-
}
|
|
4428
|
-
type: string;
|
|
4450
|
+
}> | undefined;
|
|
4429
4451
|
displayName?: string | undefined;
|
|
4430
4452
|
}, {
|
|
4431
|
-
|
|
4453
|
+
type: string;
|
|
4454
|
+
value?: {
|
|
4455
|
+
type: string;
|
|
4456
|
+
defaultValue?: string | undefined;
|
|
4457
|
+
min?: number | undefined;
|
|
4458
|
+
max?: number | undefined;
|
|
4459
|
+
} | undefined;
|
|
4460
|
+
options?: Record<string, {
|
|
4432
4461
|
value?: number | undefined;
|
|
4433
4462
|
displayName?: string | undefined;
|
|
4434
4463
|
tag?: string | undefined;
|
|
4435
|
-
}
|
|
4436
|
-
type: string;
|
|
4464
|
+
}> | undefined;
|
|
4437
4465
|
displayName?: string | undefined;
|
|
4438
4466
|
}>;
|
|
4439
4467
|
|
|
@@ -4444,7 +4472,7 @@ export declare type CoverageTermsConfigRecord = z.infer<typeof coverageTermsReco
|
|
|
4444
4472
|
export declare const coverageTermsRecordSchema: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
4445
4473
|
type: z.ZodString;
|
|
4446
4474
|
displayName: z.ZodOptional<z.ZodString>;
|
|
4447
|
-
options: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
4475
|
+
options: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
4448
4476
|
displayName: z.ZodOptional<z.ZodString>;
|
|
4449
4477
|
value: z.ZodOptional<z.ZodNumber>;
|
|
4450
4478
|
tag: z.ZodOptional<z.ZodString>;
|
|
@@ -4456,22 +4484,50 @@ export declare const coverageTermsRecordSchema: z.ZodRecord<z.ZodString, z.ZodOb
|
|
|
4456
4484
|
value?: number | undefined;
|
|
4457
4485
|
displayName?: string | undefined;
|
|
4458
4486
|
tag?: string | undefined;
|
|
4487
|
+
}>>>;
|
|
4488
|
+
value: z.ZodOptional<z.ZodObject<{
|
|
4489
|
+
type: z.ZodString;
|
|
4490
|
+
defaultValue: z.ZodOptional<z.ZodString>;
|
|
4491
|
+
min: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodNumber]>>;
|
|
4492
|
+
max: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodNumber]>>;
|
|
4493
|
+
}, "strip", z.ZodTypeAny, {
|
|
4494
|
+
type: string;
|
|
4495
|
+
defaultValue?: string | undefined;
|
|
4496
|
+
min?: number | undefined;
|
|
4497
|
+
max?: number | undefined;
|
|
4498
|
+
}, {
|
|
4499
|
+
type: string;
|
|
4500
|
+
defaultValue?: string | undefined;
|
|
4501
|
+
min?: number | undefined;
|
|
4502
|
+
max?: number | undefined;
|
|
4459
4503
|
}>>;
|
|
4460
4504
|
}, "strip", z.ZodTypeAny, {
|
|
4461
|
-
|
|
4505
|
+
type: string;
|
|
4506
|
+
value?: {
|
|
4507
|
+
type: string;
|
|
4508
|
+
defaultValue?: string | undefined;
|
|
4509
|
+
min?: number | undefined;
|
|
4510
|
+
max?: number | undefined;
|
|
4511
|
+
} | undefined;
|
|
4512
|
+
options?: Record<string, {
|
|
4462
4513
|
value?: number | undefined;
|
|
4463
4514
|
displayName?: string | undefined;
|
|
4464
4515
|
tag?: string | undefined;
|
|
4465
|
-
}
|
|
4466
|
-
type: string;
|
|
4516
|
+
}> | undefined;
|
|
4467
4517
|
displayName?: string | undefined;
|
|
4468
4518
|
}, {
|
|
4469
|
-
|
|
4519
|
+
type: string;
|
|
4520
|
+
value?: {
|
|
4521
|
+
type: string;
|
|
4522
|
+
defaultValue?: string | undefined;
|
|
4523
|
+
min?: number | undefined;
|
|
4524
|
+
max?: number | undefined;
|
|
4525
|
+
} | undefined;
|
|
4526
|
+
options?: Record<string, {
|
|
4470
4527
|
value?: number | undefined;
|
|
4471
4528
|
displayName?: string | undefined;
|
|
4472
4529
|
tag?: string | undefined;
|
|
4473
|
-
}
|
|
4474
|
-
type: string;
|
|
4530
|
+
}> | undefined;
|
|
4475
4531
|
displayName?: string | undefined;
|
|
4476
4532
|
}>>;
|
|
4477
4533
|
|
|
@@ -6650,7 +6706,7 @@ export declare const dataModelSchema: z.ZodObject<{
|
|
|
6650
6706
|
coverageTerms: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
6651
6707
|
type: z.ZodString;
|
|
6652
6708
|
displayName: z.ZodOptional<z.ZodString>;
|
|
6653
|
-
options: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
6709
|
+
options: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
6654
6710
|
displayName: z.ZodOptional<z.ZodString>;
|
|
6655
6711
|
value: z.ZodOptional<z.ZodNumber>;
|
|
6656
6712
|
tag: z.ZodOptional<z.ZodString>;
|
|
@@ -6662,22 +6718,50 @@ export declare const dataModelSchema: z.ZodObject<{
|
|
|
6662
6718
|
value?: number | undefined;
|
|
6663
6719
|
displayName?: string | undefined;
|
|
6664
6720
|
tag?: string | undefined;
|
|
6721
|
+
}>>>;
|
|
6722
|
+
value: z.ZodOptional<z.ZodObject<{
|
|
6723
|
+
type: z.ZodString;
|
|
6724
|
+
defaultValue: z.ZodOptional<z.ZodString>;
|
|
6725
|
+
min: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodNumber]>>;
|
|
6726
|
+
max: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodNumber]>>;
|
|
6727
|
+
}, "strip", z.ZodTypeAny, {
|
|
6728
|
+
type: string;
|
|
6729
|
+
defaultValue?: string | undefined;
|
|
6730
|
+
min?: number | undefined;
|
|
6731
|
+
max?: number | undefined;
|
|
6732
|
+
}, {
|
|
6733
|
+
type: string;
|
|
6734
|
+
defaultValue?: string | undefined;
|
|
6735
|
+
min?: number | undefined;
|
|
6736
|
+
max?: number | undefined;
|
|
6665
6737
|
}>>;
|
|
6666
6738
|
}, "strip", z.ZodTypeAny, {
|
|
6667
|
-
|
|
6739
|
+
type: string;
|
|
6740
|
+
value?: {
|
|
6741
|
+
type: string;
|
|
6742
|
+
defaultValue?: string | undefined;
|
|
6743
|
+
min?: number | undefined;
|
|
6744
|
+
max?: number | undefined;
|
|
6745
|
+
} | undefined;
|
|
6746
|
+
options?: Record<string, {
|
|
6668
6747
|
value?: number | undefined;
|
|
6669
6748
|
displayName?: string | undefined;
|
|
6670
6749
|
tag?: string | undefined;
|
|
6671
|
-
}
|
|
6672
|
-
type: string;
|
|
6750
|
+
}> | undefined;
|
|
6673
6751
|
displayName?: string | undefined;
|
|
6674
6752
|
}, {
|
|
6675
|
-
|
|
6753
|
+
type: string;
|
|
6754
|
+
value?: {
|
|
6755
|
+
type: string;
|
|
6756
|
+
defaultValue?: string | undefined;
|
|
6757
|
+
min?: number | undefined;
|
|
6758
|
+
max?: number | undefined;
|
|
6759
|
+
} | undefined;
|
|
6760
|
+
options?: Record<string, {
|
|
6676
6761
|
value?: number | undefined;
|
|
6677
6762
|
displayName?: string | undefined;
|
|
6678
6763
|
tag?: string | undefined;
|
|
6679
|
-
}
|
|
6680
|
-
type: string;
|
|
6764
|
+
}> | undefined;
|
|
6681
6765
|
displayName?: string | undefined;
|
|
6682
6766
|
}>>>;
|
|
6683
6767
|
delinquencyPlans: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
@@ -7232,43 +7316,18 @@ export declare const dataModelSchema: z.ZodObject<{
|
|
|
7232
7316
|
displayName?: string | undefined;
|
|
7233
7317
|
installmentWeights?: number[] | undefined;
|
|
7234
7318
|
}>>>;
|
|
7235
|
-
workManagement: z.ZodOptional<z.ZodObject<
|
|
7236
|
-
activities: z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
7237
|
-
defaultDeadlineDays: z.ZodNumber
|
|
7238
|
-
blocksUnderwriting: z.ZodBoolean;
|
|
7239
|
-
}, "strip", z.ZodTypeAny, {
|
|
7240
|
-
defaultDeadlineDays: number;
|
|
7241
|
-
blocksUnderwriting: boolean;
|
|
7242
|
-
}, {
|
|
7243
|
-
defaultDeadlineDays: number;
|
|
7244
|
-
blocksUnderwriting: boolean;
|
|
7245
|
-
}>>>;
|
|
7246
|
-
assignmentRoles: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
7247
|
-
appliesTo: z.ZodArray<z.ZodUnion<[z.ZodLiteral<"account">, z.ZodLiteral<"quickQuote">, z.ZodLiteral<"quote">, z.ZodLiteral<"policy">, z.ZodLiteral<"transaction">, z.ZodLiteral<"invoice">]>, "many">;
|
|
7248
|
-
exclusive: z.ZodBoolean;
|
|
7249
|
-
qualification: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
7250
|
-
}, "strip", z.ZodTypeAny, {
|
|
7251
|
-
appliesTo: ("account" | "policy" | "quote" | "invoice" | "transaction" | "quickQuote")[];
|
|
7252
|
-
exclusive: boolean;
|
|
7253
|
-
qualification: Record<string, string>;
|
|
7254
|
-
}, {
|
|
7255
|
-
appliesTo: ("account" | "policy" | "quote" | "invoice" | "transaction" | "quickQuote")[];
|
|
7256
|
-
exclusive: boolean;
|
|
7257
|
-
qualification: Record<string, string>;
|
|
7258
|
-
}>>;
|
|
7259
|
-
qualifications: z.ZodRecord<z.ZodString, z.ZodArray<z.ZodString, "many">>;
|
|
7260
|
-
}, {
|
|
7261
|
-
activities: z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
7262
|
-
defaultDeadlineDays: z.ZodNumber;
|
|
7319
|
+
workManagement: z.ZodOptional<z.ZodObject<{
|
|
7320
|
+
activities: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
7321
|
+
defaultDeadlineDays: z.ZodOptional<z.ZodNumber>;
|
|
7263
7322
|
blocksUnderwriting: z.ZodBoolean;
|
|
7264
7323
|
}, "strip", z.ZodTypeAny, {
|
|
7265
|
-
defaultDeadlineDays: number;
|
|
7266
7324
|
blocksUnderwriting: boolean;
|
|
7325
|
+
defaultDeadlineDays?: number | undefined;
|
|
7267
7326
|
}, {
|
|
7268
|
-
defaultDeadlineDays: number;
|
|
7269
7327
|
blocksUnderwriting: boolean;
|
|
7270
|
-
|
|
7271
|
-
|
|
7328
|
+
defaultDeadlineDays?: number | undefined;
|
|
7329
|
+
}>>>>;
|
|
7330
|
+
assignmentRoles: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
7272
7331
|
appliesTo: z.ZodArray<z.ZodEnum<["account", "quickQuote", "quote", "policy", "transaction", "invoice"]>, "many">;
|
|
7273
7332
|
qualification: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
7274
7333
|
exclusive: z.ZodBoolean;
|
|
@@ -7280,29 +7339,30 @@ export declare const dataModelSchema: z.ZodObject<{
|
|
|
7280
7339
|
appliesTo: ("account" | "policy" | "quote" | "invoice" | "transaction" | "quickQuote")[];
|
|
7281
7340
|
exclusive: boolean;
|
|
7282
7341
|
qualification?: Record<string, string> | undefined;
|
|
7283
|
-
}
|
|
7284
|
-
|
|
7285
|
-
|
|
7286
|
-
|
|
7342
|
+
}>>>;
|
|
7343
|
+
qualifications: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodArray<z.ZodString, "many">>>;
|
|
7344
|
+
}, "strip", z.ZodTypeAny, {
|
|
7345
|
+
activities?: Record<string, Record<string, {
|
|
7287
7346
|
blocksUnderwriting: boolean;
|
|
7288
|
-
|
|
7289
|
-
|
|
7347
|
+
defaultDeadlineDays?: number | undefined;
|
|
7348
|
+
}>> | undefined;
|
|
7349
|
+
assignmentRoles?: Record<string, {
|
|
7290
7350
|
appliesTo: ("account" | "policy" | "quote" | "invoice" | "transaction" | "quickQuote")[];
|
|
7291
7351
|
exclusive: boolean;
|
|
7292
7352
|
qualification?: Record<string, string> | undefined;
|
|
7293
|
-
}
|
|
7294
|
-
qualifications
|
|
7353
|
+
}> | undefined;
|
|
7354
|
+
qualifications?: Record<string, string[]> | undefined;
|
|
7295
7355
|
}, {
|
|
7296
|
-
activities
|
|
7297
|
-
defaultDeadlineDays: number;
|
|
7356
|
+
activities?: Record<string, Record<string, {
|
|
7298
7357
|
blocksUnderwriting: boolean;
|
|
7299
|
-
|
|
7300
|
-
|
|
7358
|
+
defaultDeadlineDays?: number | undefined;
|
|
7359
|
+
}>> | undefined;
|
|
7360
|
+
assignmentRoles?: Record<string, {
|
|
7301
7361
|
appliesTo: ("account" | "policy" | "quote" | "invoice" | "transaction" | "quickQuote")[];
|
|
7302
7362
|
exclusive: boolean;
|
|
7303
7363
|
qualification?: Record<string, string> | undefined;
|
|
7304
|
-
}
|
|
7305
|
-
qualifications
|
|
7364
|
+
}> | undefined;
|
|
7365
|
+
qualifications?: Record<string, string[]> | undefined;
|
|
7306
7366
|
}>>;
|
|
7307
7367
|
policyLines: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
7308
7368
|
displayName: z.ZodOptional<z.ZodString>;
|
|
@@ -8155,12 +8215,18 @@ export declare const dataModelSchema: z.ZodObject<{
|
|
|
8155
8215
|
defaultSearchable?: boolean | undefined;
|
|
8156
8216
|
defaultInvoiceDocument?: string | undefined;
|
|
8157
8217
|
coverageTerms?: Record<string, {
|
|
8158
|
-
|
|
8218
|
+
type: string;
|
|
8219
|
+
value?: {
|
|
8220
|
+
type: string;
|
|
8221
|
+
defaultValue?: string | undefined;
|
|
8222
|
+
min?: number | undefined;
|
|
8223
|
+
max?: number | undefined;
|
|
8224
|
+
} | undefined;
|
|
8225
|
+
options?: Record<string, {
|
|
8159
8226
|
value?: number | undefined;
|
|
8160
8227
|
displayName?: string | undefined;
|
|
8161
8228
|
tag?: string | undefined;
|
|
8162
|
-
}
|
|
8163
|
-
type: string;
|
|
8229
|
+
}> | undefined;
|
|
8164
8230
|
displayName?: string | undefined;
|
|
8165
8231
|
}> | undefined;
|
|
8166
8232
|
charges?: any;
|
|
@@ -8443,16 +8509,16 @@ export declare const dataModelSchema: z.ZodObject<{
|
|
|
8443
8509
|
creditType?: "any" | "creditDistribution" | "payment" | undefined;
|
|
8444
8510
|
}> | undefined;
|
|
8445
8511
|
workManagement?: {
|
|
8446
|
-
activities
|
|
8447
|
-
defaultDeadlineDays: number;
|
|
8512
|
+
activities?: Record<string, Record<string, {
|
|
8448
8513
|
blocksUnderwriting: boolean;
|
|
8449
|
-
|
|
8450
|
-
|
|
8514
|
+
defaultDeadlineDays?: number | undefined;
|
|
8515
|
+
}>> | undefined;
|
|
8516
|
+
assignmentRoles?: Record<string, {
|
|
8451
8517
|
appliesTo: ("account" | "policy" | "quote" | "invoice" | "transaction" | "quickQuote")[];
|
|
8452
8518
|
exclusive: boolean;
|
|
8453
8519
|
qualification?: Record<string, string> | undefined;
|
|
8454
|
-
}
|
|
8455
|
-
qualifications
|
|
8520
|
+
}> | undefined;
|
|
8521
|
+
qualifications?: Record<string, string[]> | undefined;
|
|
8456
8522
|
} | undefined;
|
|
8457
8523
|
dataAccessControl?: any;
|
|
8458
8524
|
bootstrap?: {
|
|
@@ -8597,12 +8663,18 @@ export declare const dataModelSchema: z.ZodObject<{
|
|
|
8597
8663
|
defaultSearchable?: boolean | undefined;
|
|
8598
8664
|
defaultInvoiceDocument?: string | undefined;
|
|
8599
8665
|
coverageTerms?: Record<string, {
|
|
8600
|
-
|
|
8666
|
+
type: string;
|
|
8667
|
+
value?: {
|
|
8668
|
+
type: string;
|
|
8669
|
+
defaultValue?: string | undefined;
|
|
8670
|
+
min?: number | undefined;
|
|
8671
|
+
max?: number | undefined;
|
|
8672
|
+
} | undefined;
|
|
8673
|
+
options?: Record<string, {
|
|
8601
8674
|
value?: number | undefined;
|
|
8602
8675
|
displayName?: string | undefined;
|
|
8603
8676
|
tag?: string | undefined;
|
|
8604
|
-
}
|
|
8605
|
-
type: string;
|
|
8677
|
+
}> | undefined;
|
|
8606
8678
|
displayName?: string | undefined;
|
|
8607
8679
|
}> | undefined;
|
|
8608
8680
|
charges?: any;
|
|
@@ -8885,16 +8957,16 @@ export declare const dataModelSchema: z.ZodObject<{
|
|
|
8885
8957
|
creditType?: "any" | "creditDistribution" | "payment" | undefined;
|
|
8886
8958
|
}> | undefined;
|
|
8887
8959
|
workManagement?: {
|
|
8888
|
-
activities
|
|
8889
|
-
defaultDeadlineDays: number;
|
|
8960
|
+
activities?: Record<string, Record<string, {
|
|
8890
8961
|
blocksUnderwriting: boolean;
|
|
8891
|
-
|
|
8892
|
-
|
|
8962
|
+
defaultDeadlineDays?: number | undefined;
|
|
8963
|
+
}>> | undefined;
|
|
8964
|
+
assignmentRoles?: Record<string, {
|
|
8893
8965
|
appliesTo: ("account" | "policy" | "quote" | "invoice" | "transaction" | "quickQuote")[];
|
|
8894
8966
|
exclusive: boolean;
|
|
8895
8967
|
qualification?: Record<string, string> | undefined;
|
|
8896
|
-
}
|
|
8897
|
-
qualifications
|
|
8968
|
+
}> | undefined;
|
|
8969
|
+
qualifications?: Record<string, string[]> | undefined;
|
|
8898
8970
|
} | undefined;
|
|
8899
8971
|
dataAccessControl?: any;
|
|
8900
8972
|
bootstrap?: {
|
|
@@ -21605,6 +21677,25 @@ export declare const productConfigSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
21605
21677
|
tables?: any;
|
|
21606
21678
|
}>;
|
|
21607
21679
|
|
|
21680
|
+
export declare type PropertyRef = z.infer<typeof PropertyRefSchema>;
|
|
21681
|
+
|
|
21682
|
+
export declare const PropertyRefSchema: z.ZodObject<{
|
|
21683
|
+
type: z.ZodString;
|
|
21684
|
+
defaultValue: z.ZodOptional<z.ZodString>;
|
|
21685
|
+
min: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodNumber]>>;
|
|
21686
|
+
max: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodNumber]>>;
|
|
21687
|
+
}, "strip", z.ZodTypeAny, {
|
|
21688
|
+
type: string;
|
|
21689
|
+
defaultValue?: string | undefined;
|
|
21690
|
+
min?: number | undefined;
|
|
21691
|
+
max?: number | undefined;
|
|
21692
|
+
}, {
|
|
21693
|
+
type: string;
|
|
21694
|
+
defaultValue?: string | undefined;
|
|
21695
|
+
min?: number | undefined;
|
|
21696
|
+
max?: number | undefined;
|
|
21697
|
+
}>;
|
|
21698
|
+
|
|
21608
21699
|
export declare type Quantifiers = z.infer<typeof quantifiersSchema>;
|
|
21609
21700
|
|
|
21610
21701
|
export declare const quantifiersSchema: z.ZodEnum<["", "?", "+", "*", "!"]>;
|
|
@@ -28192,43 +28283,18 @@ export declare type WorkManagementReferenceTypeEnum = z.infer<typeof WorkManagem
|
|
|
28192
28283
|
|
|
28193
28284
|
export declare const WorkManagementReferenceTypeEnumSchema: z.ZodEnum<["account", "quickQuote", "quote", "policy", "transaction", "invoice"]>;
|
|
28194
28285
|
|
|
28195
|
-
export declare const WorkManagementRefSchema: z.ZodObject<
|
|
28196
|
-
activities: z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
28197
|
-
defaultDeadlineDays: z.ZodNumber
|
|
28198
|
-
blocksUnderwriting: z.ZodBoolean;
|
|
28199
|
-
}, "strip", z.ZodTypeAny, {
|
|
28200
|
-
defaultDeadlineDays: number;
|
|
28201
|
-
blocksUnderwriting: boolean;
|
|
28202
|
-
}, {
|
|
28203
|
-
defaultDeadlineDays: number;
|
|
28204
|
-
blocksUnderwriting: boolean;
|
|
28205
|
-
}>>>;
|
|
28206
|
-
assignmentRoles: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
28207
|
-
appliesTo: z.ZodArray<z.ZodUnion<[z.ZodLiteral<"account">, z.ZodLiteral<"quickQuote">, z.ZodLiteral<"quote">, z.ZodLiteral<"policy">, z.ZodLiteral<"transaction">, z.ZodLiteral<"invoice">]>, "many">;
|
|
28208
|
-
exclusive: z.ZodBoolean;
|
|
28209
|
-
qualification: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
28210
|
-
}, "strip", z.ZodTypeAny, {
|
|
28211
|
-
appliesTo: ("account" | "policy" | "quote" | "invoice" | "transaction" | "quickQuote")[];
|
|
28212
|
-
exclusive: boolean;
|
|
28213
|
-
qualification: Record<string, string>;
|
|
28214
|
-
}, {
|
|
28215
|
-
appliesTo: ("account" | "policy" | "quote" | "invoice" | "transaction" | "quickQuote")[];
|
|
28216
|
-
exclusive: boolean;
|
|
28217
|
-
qualification: Record<string, string>;
|
|
28218
|
-
}>>;
|
|
28219
|
-
qualifications: z.ZodRecord<z.ZodString, z.ZodArray<z.ZodString, "many">>;
|
|
28220
|
-
}, {
|
|
28221
|
-
activities: z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
28222
|
-
defaultDeadlineDays: z.ZodNumber;
|
|
28286
|
+
export declare const WorkManagementRefSchema: z.ZodObject<{
|
|
28287
|
+
activities: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
28288
|
+
defaultDeadlineDays: z.ZodOptional<z.ZodNumber>;
|
|
28223
28289
|
blocksUnderwriting: z.ZodBoolean;
|
|
28224
28290
|
}, "strip", z.ZodTypeAny, {
|
|
28225
|
-
defaultDeadlineDays: number;
|
|
28226
28291
|
blocksUnderwriting: boolean;
|
|
28292
|
+
defaultDeadlineDays?: number | undefined;
|
|
28227
28293
|
}, {
|
|
28228
|
-
defaultDeadlineDays: number;
|
|
28229
28294
|
blocksUnderwriting: boolean;
|
|
28230
|
-
|
|
28231
|
-
|
|
28295
|
+
defaultDeadlineDays?: number | undefined;
|
|
28296
|
+
}>>>>;
|
|
28297
|
+
assignmentRoles: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
28232
28298
|
appliesTo: z.ZodArray<z.ZodEnum<["account", "quickQuote", "quote", "policy", "transaction", "invoice"]>, "many">;
|
|
28233
28299
|
qualification: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
28234
28300
|
exclusive: z.ZodBoolean;
|
|
@@ -28240,29 +28306,30 @@ export declare const WorkManagementRefSchema: z.ZodObject<z.objectUtil.extendSha
|
|
|
28240
28306
|
appliesTo: ("account" | "policy" | "quote" | "invoice" | "transaction" | "quickQuote")[];
|
|
28241
28307
|
exclusive: boolean;
|
|
28242
28308
|
qualification?: Record<string, string> | undefined;
|
|
28243
|
-
}
|
|
28244
|
-
|
|
28245
|
-
|
|
28246
|
-
|
|
28309
|
+
}>>>;
|
|
28310
|
+
qualifications: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodArray<z.ZodString, "many">>>;
|
|
28311
|
+
}, "strip", z.ZodTypeAny, {
|
|
28312
|
+
activities?: Record<string, Record<string, {
|
|
28247
28313
|
blocksUnderwriting: boolean;
|
|
28248
|
-
|
|
28249
|
-
|
|
28314
|
+
defaultDeadlineDays?: number | undefined;
|
|
28315
|
+
}>> | undefined;
|
|
28316
|
+
assignmentRoles?: Record<string, {
|
|
28250
28317
|
appliesTo: ("account" | "policy" | "quote" | "invoice" | "transaction" | "quickQuote")[];
|
|
28251
28318
|
exclusive: boolean;
|
|
28252
28319
|
qualification?: Record<string, string> | undefined;
|
|
28253
|
-
}
|
|
28254
|
-
qualifications
|
|
28320
|
+
}> | undefined;
|
|
28321
|
+
qualifications?: Record<string, string[]> | undefined;
|
|
28255
28322
|
}, {
|
|
28256
|
-
activities
|
|
28257
|
-
defaultDeadlineDays: number;
|
|
28323
|
+
activities?: Record<string, Record<string, {
|
|
28258
28324
|
blocksUnderwriting: boolean;
|
|
28259
|
-
|
|
28260
|
-
|
|
28325
|
+
defaultDeadlineDays?: number | undefined;
|
|
28326
|
+
}>> | undefined;
|
|
28327
|
+
assignmentRoles?: Record<string, {
|
|
28261
28328
|
appliesTo: ("account" | "policy" | "quote" | "invoice" | "transaction" | "quickQuote")[];
|
|
28262
28329
|
exclusive: boolean;
|
|
28263
28330
|
qualification?: Record<string, string> | undefined;
|
|
28264
|
-
}
|
|
28265
|
-
qualifications
|
|
28331
|
+
}> | undefined;
|
|
28332
|
+
qualifications?: Record<string, string[]> | undefined;
|
|
28266
28333
|
}>;
|
|
28267
28334
|
|
|
28268
28335
|
export declare const ZIP_ACCEPTED_FILE_TYPES: readonly ["application/zip", "application/x-zip-compressed"];
|