@socotra/ec-react-schemas 2.19.3-next.2 → 2.19.3-next.4
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 +61 -57
- package/dist/index.es.js +9495 -9789
- 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
|
@@ -6404,22 +6404,22 @@ export declare const dataModelSchema: z.ZodObject<{
|
|
|
6404
6404
|
numberingPlan: z.ZodOptional<z.ZodString>;
|
|
6405
6405
|
data: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
6406
6406
|
extend: z.ZodOptional<z.ZodString>;
|
|
6407
|
+
numberingTrigger: z.ZodOptional<z.ZodEnum<["creation", "validation"]>>;
|
|
6407
6408
|
abstract: z.ZodBoolean;
|
|
6408
|
-
numberingTrigger: z.ZodUnion<[z.ZodLiteral<"creation">, z.ZodLiteral<"validation">]>;
|
|
6409
6409
|
}, "strip", z.ZodTypeAny, {
|
|
6410
6410
|
abstract: boolean;
|
|
6411
|
-
numberingTrigger: "validation" | "creation";
|
|
6412
6411
|
displayName?: string | undefined;
|
|
6413
6412
|
extend?: string | undefined;
|
|
6414
6413
|
data?: Record<string, any> | undefined;
|
|
6415
6414
|
numberingPlan?: string | undefined;
|
|
6415
|
+
numberingTrigger?: "validation" | "creation" | undefined;
|
|
6416
6416
|
}, {
|
|
6417
6417
|
abstract: boolean;
|
|
6418
|
-
numberingTrigger: "validation" | "creation";
|
|
6419
6418
|
displayName?: string | undefined;
|
|
6420
6419
|
extend?: string | undefined;
|
|
6421
6420
|
data?: Record<string, any> | undefined;
|
|
6422
6421
|
numberingPlan?: string | undefined;
|
|
6422
|
+
numberingTrigger?: "validation" | "creation" | undefined;
|
|
6423
6423
|
}>>>;
|
|
6424
6424
|
installmentPlans: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
6425
6425
|
displayName: z.ZodOptional<z.ZodString>;
|
|
@@ -6430,26 +6430,26 @@ export declare const dataModelSchema: z.ZodObject<{
|
|
|
6430
6430
|
installmentWeights: z.ZodOptional<z.ZodArray<z.ZodNumber, "many">>;
|
|
6431
6431
|
maxInstallmentsPerTerm: z.ZodOptional<z.ZodNumber>;
|
|
6432
6432
|
invoiceFeeAmounts: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
6433
|
-
autopayLeadDays: z.ZodNumber
|
|
6433
|
+
autopayLeadDays: z.ZodOptional<z.ZodNumber>;
|
|
6434
6434
|
}, "strip", z.ZodTypeAny, {
|
|
6435
6435
|
cadence: "none" | "fullPay" | "weekly" | "everyOtherWeek" | "monthly" | "quarterly" | "semiannually" | "annually" | "thirtyDays" | "everyNDays";
|
|
6436
|
-
autopayLeadDays: number;
|
|
6437
6436
|
anchorMode?: "generateDay" | "termStartDay" | "dueDay" | undefined;
|
|
6438
6437
|
dueLeadDays?: number | undefined;
|
|
6439
6438
|
generateLeadDays?: number | undefined;
|
|
6440
6439
|
maxInstallmentsPerTerm?: number | undefined;
|
|
6441
6440
|
displayName?: string | undefined;
|
|
6442
6441
|
installmentWeights?: number[] | undefined;
|
|
6442
|
+
autopayLeadDays?: number | undefined;
|
|
6443
6443
|
invoiceFeeAmounts?: Record<string, any> | undefined;
|
|
6444
6444
|
}, {
|
|
6445
6445
|
cadence: "none" | "fullPay" | "weekly" | "everyOtherWeek" | "monthly" | "quarterly" | "semiannually" | "annually" | "thirtyDays" | "everyNDays";
|
|
6446
|
-
autopayLeadDays: number;
|
|
6447
6446
|
anchorMode?: "generateDay" | "termStartDay" | "dueDay" | undefined;
|
|
6448
6447
|
dueLeadDays?: number | undefined;
|
|
6449
6448
|
generateLeadDays?: number | undefined;
|
|
6450
6449
|
maxInstallmentsPerTerm?: number | undefined;
|
|
6451
6450
|
displayName?: string | undefined;
|
|
6452
6451
|
installmentWeights?: number[] | undefined;
|
|
6452
|
+
autopayLeadDays?: number | undefined;
|
|
6453
6453
|
invoiceFeeAmounts?: Record<string, any> | undefined;
|
|
6454
6454
|
}>>>;
|
|
6455
6455
|
workManagement: z.ZodOptional<z.ZodObject<{
|
|
@@ -9031,13 +9031,13 @@ export declare const dataModelSchema: z.ZodObject<{
|
|
|
9031
9031
|
}> | undefined;
|
|
9032
9032
|
installmentPlans?: Record<string, {
|
|
9033
9033
|
cadence: "none" | "fullPay" | "weekly" | "everyOtherWeek" | "monthly" | "quarterly" | "semiannually" | "annually" | "thirtyDays" | "everyNDays";
|
|
9034
|
-
autopayLeadDays: number;
|
|
9035
9034
|
anchorMode?: "generateDay" | "termStartDay" | "dueDay" | undefined;
|
|
9036
9035
|
dueLeadDays?: number | undefined;
|
|
9037
9036
|
generateLeadDays?: number | undefined;
|
|
9038
9037
|
maxInstallmentsPerTerm?: number | undefined;
|
|
9039
9038
|
displayName?: string | undefined;
|
|
9040
9039
|
installmentWeights?: number[] | undefined;
|
|
9040
|
+
autopayLeadDays?: number | undefined;
|
|
9041
9041
|
invoiceFeeAmounts?: Record<string, any> | undefined;
|
|
9042
9042
|
}> | undefined;
|
|
9043
9043
|
billingPlans?: any;
|
|
@@ -9075,11 +9075,11 @@ export declare const dataModelSchema: z.ZodObject<{
|
|
|
9075
9075
|
}> | undefined;
|
|
9076
9076
|
disbursements?: Record<string, {
|
|
9077
9077
|
abstract: boolean;
|
|
9078
|
-
numberingTrigger: "validation" | "creation";
|
|
9079
9078
|
displayName?: string | undefined;
|
|
9080
9079
|
extend?: string | undefined;
|
|
9081
9080
|
data?: Record<string, any> | undefined;
|
|
9082
9081
|
numberingPlan?: string | undefined;
|
|
9082
|
+
numberingTrigger?: "validation" | "creation" | undefined;
|
|
9083
9083
|
}> | undefined;
|
|
9084
9084
|
tables?: any;
|
|
9085
9085
|
constraintTables?: Record<string, {
|
|
@@ -9719,13 +9719,13 @@ export declare const dataModelSchema: z.ZodObject<{
|
|
|
9719
9719
|
}> | undefined;
|
|
9720
9720
|
installmentPlans?: Record<string, {
|
|
9721
9721
|
cadence: "none" | "fullPay" | "weekly" | "everyOtherWeek" | "monthly" | "quarterly" | "semiannually" | "annually" | "thirtyDays" | "everyNDays";
|
|
9722
|
-
autopayLeadDays: number;
|
|
9723
9722
|
anchorMode?: "generateDay" | "termStartDay" | "dueDay" | undefined;
|
|
9724
9723
|
dueLeadDays?: number | undefined;
|
|
9725
9724
|
generateLeadDays?: number | undefined;
|
|
9726
9725
|
maxInstallmentsPerTerm?: number | undefined;
|
|
9727
9726
|
displayName?: string | undefined;
|
|
9728
9727
|
installmentWeights?: number[] | undefined;
|
|
9728
|
+
autopayLeadDays?: number | undefined;
|
|
9729
9729
|
invoiceFeeAmounts?: Record<string, any> | undefined;
|
|
9730
9730
|
}> | undefined;
|
|
9731
9731
|
billingPlans?: any;
|
|
@@ -9763,11 +9763,11 @@ export declare const dataModelSchema: z.ZodObject<{
|
|
|
9763
9763
|
}> | undefined;
|
|
9764
9764
|
disbursements?: Record<string, {
|
|
9765
9765
|
abstract: boolean;
|
|
9766
|
-
numberingTrigger: "validation" | "creation";
|
|
9767
9766
|
displayName?: string | undefined;
|
|
9768
9767
|
extend?: string | undefined;
|
|
9769
9768
|
data?: Record<string, any> | undefined;
|
|
9770
9769
|
numberingPlan?: string | undefined;
|
|
9770
|
+
numberingTrigger?: "validation" | "creation" | undefined;
|
|
9771
9771
|
}> | undefined;
|
|
9772
9772
|
tables?: any;
|
|
9773
9773
|
constraintTables?: Record<string, {
|
|
@@ -11278,22 +11278,22 @@ export declare const DisbursementRefRecordSchema: z.ZodRecord<z.ZodString, z.Zod
|
|
|
11278
11278
|
numberingPlan: z.ZodOptional<z.ZodString>;
|
|
11279
11279
|
data: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
11280
11280
|
extend: z.ZodOptional<z.ZodString>;
|
|
11281
|
+
numberingTrigger: z.ZodOptional<z.ZodEnum<["creation", "validation"]>>;
|
|
11281
11282
|
abstract: z.ZodBoolean;
|
|
11282
|
-
numberingTrigger: z.ZodUnion<[z.ZodLiteral<"creation">, z.ZodLiteral<"validation">]>;
|
|
11283
11283
|
}, "strip", z.ZodTypeAny, {
|
|
11284
11284
|
abstract: boolean;
|
|
11285
|
-
numberingTrigger: "validation" | "creation";
|
|
11286
11285
|
displayName?: string | undefined;
|
|
11287
11286
|
extend?: string | undefined;
|
|
11288
11287
|
data?: Record<string, any> | undefined;
|
|
11289
11288
|
numberingPlan?: string | undefined;
|
|
11289
|
+
numberingTrigger?: "validation" | "creation" | undefined;
|
|
11290
11290
|
}, {
|
|
11291
11291
|
abstract: boolean;
|
|
11292
|
-
numberingTrigger: "validation" | "creation";
|
|
11293
11292
|
displayName?: string | undefined;
|
|
11294
11293
|
extend?: string | undefined;
|
|
11295
11294
|
data?: Record<string, any> | undefined;
|
|
11296
11295
|
numberingPlan?: string | undefined;
|
|
11296
|
+
numberingTrigger?: "validation" | "creation" | undefined;
|
|
11297
11297
|
}>>;
|
|
11298
11298
|
|
|
11299
11299
|
export declare const DisbursementRefSchema: z.ZodObject<{
|
|
@@ -11301,22 +11301,22 @@ export declare const DisbursementRefSchema: z.ZodObject<{
|
|
|
11301
11301
|
numberingPlan: z.ZodOptional<z.ZodString>;
|
|
11302
11302
|
data: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
11303
11303
|
extend: z.ZodOptional<z.ZodString>;
|
|
11304
|
+
numberingTrigger: z.ZodOptional<z.ZodEnum<["creation", "validation"]>>;
|
|
11304
11305
|
abstract: z.ZodBoolean;
|
|
11305
|
-
numberingTrigger: z.ZodUnion<[z.ZodLiteral<"creation">, z.ZodLiteral<"validation">]>;
|
|
11306
11306
|
}, "strip", z.ZodTypeAny, {
|
|
11307
11307
|
abstract: boolean;
|
|
11308
|
-
numberingTrigger: "validation" | "creation";
|
|
11309
11308
|
displayName?: string | undefined;
|
|
11310
11309
|
extend?: string | undefined;
|
|
11311
11310
|
data?: Record<string, any> | undefined;
|
|
11312
11311
|
numberingPlan?: string | undefined;
|
|
11312
|
+
numberingTrigger?: "validation" | "creation" | undefined;
|
|
11313
11313
|
}, {
|
|
11314
11314
|
abstract: boolean;
|
|
11315
|
-
numberingTrigger: "validation" | "creation";
|
|
11316
11315
|
displayName?: string | undefined;
|
|
11317
11316
|
extend?: string | undefined;
|
|
11318
11317
|
data?: Record<string, any> | undefined;
|
|
11319
11318
|
numberingPlan?: string | undefined;
|
|
11319
|
+
numberingTrigger?: "validation" | "creation" | undefined;
|
|
11320
11320
|
}>;
|
|
11321
11321
|
|
|
11322
11322
|
export declare type DisbursementResponse = z.infer<typeof DisbursementResponseSchema>;
|
|
@@ -13537,26 +13537,26 @@ export declare const InstallmentPlanRecordSchema: z.ZodRecord<z.ZodString, z.Zod
|
|
|
13537
13537
|
installmentWeights: z.ZodOptional<z.ZodArray<z.ZodNumber, "many">>;
|
|
13538
13538
|
maxInstallmentsPerTerm: z.ZodOptional<z.ZodNumber>;
|
|
13539
13539
|
invoiceFeeAmounts: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
13540
|
-
autopayLeadDays: z.ZodNumber
|
|
13540
|
+
autopayLeadDays: z.ZodOptional<z.ZodNumber>;
|
|
13541
13541
|
}, "strip", z.ZodTypeAny, {
|
|
13542
13542
|
cadence: "none" | "fullPay" | "weekly" | "everyOtherWeek" | "monthly" | "quarterly" | "semiannually" | "annually" | "thirtyDays" | "everyNDays";
|
|
13543
|
-
autopayLeadDays: number;
|
|
13544
13543
|
anchorMode?: "generateDay" | "termStartDay" | "dueDay" | undefined;
|
|
13545
13544
|
dueLeadDays?: number | undefined;
|
|
13546
13545
|
generateLeadDays?: number | undefined;
|
|
13547
13546
|
maxInstallmentsPerTerm?: number | undefined;
|
|
13548
13547
|
displayName?: string | undefined;
|
|
13549
13548
|
installmentWeights?: number[] | undefined;
|
|
13549
|
+
autopayLeadDays?: number | undefined;
|
|
13550
13550
|
invoiceFeeAmounts?: Record<string, any> | undefined;
|
|
13551
13551
|
}, {
|
|
13552
13552
|
cadence: "none" | "fullPay" | "weekly" | "everyOtherWeek" | "monthly" | "quarterly" | "semiannually" | "annually" | "thirtyDays" | "everyNDays";
|
|
13553
|
-
autopayLeadDays: number;
|
|
13554
13553
|
anchorMode?: "generateDay" | "termStartDay" | "dueDay" | undefined;
|
|
13555
13554
|
dueLeadDays?: number | undefined;
|
|
13556
13555
|
generateLeadDays?: number | undefined;
|
|
13557
13556
|
maxInstallmentsPerTerm?: number | undefined;
|
|
13558
13557
|
displayName?: string | undefined;
|
|
13559
13558
|
installmentWeights?: number[] | undefined;
|
|
13559
|
+
autopayLeadDays?: number | undefined;
|
|
13560
13560
|
invoiceFeeAmounts?: Record<string, any> | undefined;
|
|
13561
13561
|
}>>;
|
|
13562
13562
|
|
|
@@ -13571,26 +13571,26 @@ export declare const InstallmentPlanRefSchema: z.ZodObject<{
|
|
|
13571
13571
|
installmentWeights: z.ZodOptional<z.ZodArray<z.ZodNumber, "many">>;
|
|
13572
13572
|
maxInstallmentsPerTerm: z.ZodOptional<z.ZodNumber>;
|
|
13573
13573
|
invoiceFeeAmounts: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
13574
|
-
autopayLeadDays: z.ZodNumber
|
|
13574
|
+
autopayLeadDays: z.ZodOptional<z.ZodNumber>;
|
|
13575
13575
|
}, "strip", z.ZodTypeAny, {
|
|
13576
13576
|
cadence: "none" | "fullPay" | "weekly" | "everyOtherWeek" | "monthly" | "quarterly" | "semiannually" | "annually" | "thirtyDays" | "everyNDays";
|
|
13577
|
-
autopayLeadDays: number;
|
|
13578
13577
|
anchorMode?: "generateDay" | "termStartDay" | "dueDay" | undefined;
|
|
13579
13578
|
dueLeadDays?: number | undefined;
|
|
13580
13579
|
generateLeadDays?: number | undefined;
|
|
13581
13580
|
maxInstallmentsPerTerm?: number | undefined;
|
|
13582
13581
|
displayName?: string | undefined;
|
|
13583
13582
|
installmentWeights?: number[] | undefined;
|
|
13583
|
+
autopayLeadDays?: number | undefined;
|
|
13584
13584
|
invoiceFeeAmounts?: Record<string, any> | undefined;
|
|
13585
13585
|
}, {
|
|
13586
13586
|
cadence: "none" | "fullPay" | "weekly" | "everyOtherWeek" | "monthly" | "quarterly" | "semiannually" | "annually" | "thirtyDays" | "everyNDays";
|
|
13587
|
-
autopayLeadDays: number;
|
|
13588
13587
|
anchorMode?: "generateDay" | "termStartDay" | "dueDay" | undefined;
|
|
13589
13588
|
dueLeadDays?: number | undefined;
|
|
13590
13589
|
generateLeadDays?: number | undefined;
|
|
13591
13590
|
maxInstallmentsPerTerm?: number | undefined;
|
|
13592
13591
|
displayName?: string | undefined;
|
|
13593
13592
|
installmentWeights?: number[] | undefined;
|
|
13593
|
+
autopayLeadDays?: number | undefined;
|
|
13594
13594
|
invoiceFeeAmounts?: Record<string, any> | undefined;
|
|
13595
13595
|
}>;
|
|
13596
13596
|
|
|
@@ -16081,6 +16081,10 @@ export declare const NumberingPlanRefSchema: z.ZodObject<{
|
|
|
16081
16081
|
initialQuoteCoreNumber?: string | undefined;
|
|
16082
16082
|
}>;
|
|
16083
16083
|
|
|
16084
|
+
export declare type NumberingTriggerEnum = z.infer<typeof NumberingTriggerEnumSchema>;
|
|
16085
|
+
|
|
16086
|
+
export declare const NumberingTriggerEnumSchema: z.ZodEnum<["creation", "validation"]>;
|
|
16087
|
+
|
|
16084
16088
|
export declare type OptionalQuantifiers = z.infer<typeof optionalQuantifiersSchema>;
|
|
16085
16089
|
|
|
16086
16090
|
export declare const optionalQuantifiersSchema: z.ZodEnum<["?", "*"]>;
|
|
@@ -25264,33 +25268,33 @@ export declare const quoteDependencyMapResponseSchema: z.ZodRecord<z.ZodString,
|
|
|
25264
25268
|
column: z.ZodString;
|
|
25265
25269
|
table: z.ZodString;
|
|
25266
25270
|
where: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
25267
|
-
staticLocator: z.ZodString
|
|
25268
|
-
fieldName: z.ZodString
|
|
25271
|
+
staticLocator: z.ZodOptional<z.ZodString>;
|
|
25272
|
+
fieldName: z.ZodOptional<z.ZodString>;
|
|
25269
25273
|
values: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
25270
25274
|
}, "strip", z.ZodTypeAny, {
|
|
25271
|
-
staticLocator: string;
|
|
25272
|
-
fieldName: string;
|
|
25273
25275
|
values?: string[] | undefined;
|
|
25276
|
+
staticLocator?: string | undefined;
|
|
25277
|
+
fieldName?: string | undefined;
|
|
25274
25278
|
}, {
|
|
25275
|
-
staticLocator: string;
|
|
25276
|
-
fieldName: string;
|
|
25277
25279
|
values?: string[] | undefined;
|
|
25280
|
+
staticLocator?: string | undefined;
|
|
25281
|
+
fieldName?: string | undefined;
|
|
25278
25282
|
}>>>;
|
|
25279
25283
|
}, "strip", z.ZodTypeAny, {
|
|
25280
25284
|
column: string;
|
|
25281
25285
|
table: string;
|
|
25282
25286
|
where?: Record<string, {
|
|
25283
|
-
staticLocator: string;
|
|
25284
|
-
fieldName: string;
|
|
25285
25287
|
values?: string[] | undefined;
|
|
25288
|
+
staticLocator?: string | undefined;
|
|
25289
|
+
fieldName?: string | undefined;
|
|
25286
25290
|
}> | undefined;
|
|
25287
25291
|
}, {
|
|
25288
25292
|
column: string;
|
|
25289
25293
|
table: string;
|
|
25290
25294
|
where?: Record<string, {
|
|
25291
|
-
staticLocator: string;
|
|
25292
|
-
fieldName: string;
|
|
25293
25295
|
values?: string[] | undefined;
|
|
25296
|
+
staticLocator?: string | undefined;
|
|
25297
|
+
fieldName?: string | undefined;
|
|
25294
25298
|
}> | undefined;
|
|
25295
25299
|
}>>>;
|
|
25296
25300
|
|
|
@@ -32375,7 +32379,7 @@ export declare const UserAssociationListResponseBffSchema: z.ZodObject<{
|
|
|
32375
32379
|
locator: z.ZodString;
|
|
32376
32380
|
userLocator: z.ZodString;
|
|
32377
32381
|
referenceType: z.ZodEnum<["account", "quickQuote", "quote", "policy", "transaction", "invoice"]>;
|
|
32378
|
-
userAssociationState: z.ZodEnum<["active", "completed", "
|
|
32382
|
+
userAssociationState: z.ZodEnum<["active", "completed", "disassociated", "discarded"]>;
|
|
32379
32383
|
createdAt: z.ZodString;
|
|
32380
32384
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
32381
32385
|
userAssociationRole: z.ZodString;
|
|
@@ -32387,7 +32391,7 @@ export declare const UserAssociationListResponseBffSchema: z.ZodObject<{
|
|
|
32387
32391
|
createdAt: string;
|
|
32388
32392
|
userLocator: string;
|
|
32389
32393
|
userAssociationRole: string;
|
|
32390
|
-
userAssociationState: "discarded" | "active" | "completed" | "
|
|
32394
|
+
userAssociationState: "discarded" | "active" | "completed" | "disassociated";
|
|
32391
32395
|
createdBy?: {
|
|
32392
32396
|
locator: string;
|
|
32393
32397
|
userName: string;
|
|
@@ -32430,7 +32434,7 @@ export declare const UserAssociationListResponseBffSchema: z.ZodObject<{
|
|
|
32430
32434
|
createdAt: string;
|
|
32431
32435
|
userLocator: string;
|
|
32432
32436
|
userAssociationRole: string;
|
|
32433
|
-
userAssociationState: "discarded" | "active" | "completed" | "
|
|
32437
|
+
userAssociationState: "discarded" | "active" | "completed" | "disassociated";
|
|
32434
32438
|
createdBy?: {
|
|
32435
32439
|
locator: string;
|
|
32436
32440
|
userName: string;
|
|
@@ -32475,7 +32479,7 @@ export declare const UserAssociationListResponseBffSchema: z.ZodObject<{
|
|
|
32475
32479
|
createdAt: string;
|
|
32476
32480
|
userLocator: string;
|
|
32477
32481
|
userAssociationRole: string;
|
|
32478
|
-
userAssociationState: "discarded" | "active" | "completed" | "
|
|
32482
|
+
userAssociationState: "discarded" | "active" | "completed" | "disassociated";
|
|
32479
32483
|
createdBy?: {
|
|
32480
32484
|
locator: string;
|
|
32481
32485
|
userName: string;
|
|
@@ -32521,7 +32525,7 @@ export declare const UserAssociationListResponseBffSchema: z.ZodObject<{
|
|
|
32521
32525
|
createdAt: string;
|
|
32522
32526
|
userLocator: string;
|
|
32523
32527
|
userAssociationRole: string;
|
|
32524
|
-
userAssociationState: "discarded" | "active" | "completed" | "
|
|
32528
|
+
userAssociationState: "discarded" | "active" | "completed" | "disassociated";
|
|
32525
32529
|
createdBy?: {
|
|
32526
32530
|
locator: string;
|
|
32527
32531
|
userName: string;
|
|
@@ -32567,7 +32571,7 @@ export declare const UserAssociationListResponseSchema: z.ZodObject<{
|
|
|
32567
32571
|
locator: z.ZodString;
|
|
32568
32572
|
userLocator: z.ZodString;
|
|
32569
32573
|
referenceType: z.ZodEnum<["account", "quickQuote", "quote", "policy", "transaction", "invoice"]>;
|
|
32570
|
-
userAssociationState: z.ZodEnum<["active", "completed", "
|
|
32574
|
+
userAssociationState: z.ZodEnum<["active", "completed", "disassociated", "discarded"]>;
|
|
32571
32575
|
createdBy: z.ZodString;
|
|
32572
32576
|
createdAt: z.ZodString;
|
|
32573
32577
|
updatedBy: z.ZodOptional<z.ZodString>;
|
|
@@ -32582,7 +32586,7 @@ export declare const UserAssociationListResponseSchema: z.ZodObject<{
|
|
|
32582
32586
|
createdAt: string;
|
|
32583
32587
|
userLocator: string;
|
|
32584
32588
|
userAssociationRole: string;
|
|
32585
|
-
userAssociationState: "discarded" | "active" | "completed" | "
|
|
32589
|
+
userAssociationState: "discarded" | "active" | "completed" | "disassociated";
|
|
32586
32590
|
updatedBy?: string | undefined;
|
|
32587
32591
|
updatedAt?: string | undefined;
|
|
32588
32592
|
}, {
|
|
@@ -32593,7 +32597,7 @@ export declare const UserAssociationListResponseSchema: z.ZodObject<{
|
|
|
32593
32597
|
createdAt: string;
|
|
32594
32598
|
userLocator: string;
|
|
32595
32599
|
userAssociationRole: string;
|
|
32596
|
-
userAssociationState: "discarded" | "active" | "completed" | "
|
|
32600
|
+
userAssociationState: "discarded" | "active" | "completed" | "disassociated";
|
|
32597
32601
|
updatedBy?: string | undefined;
|
|
32598
32602
|
updatedAt?: string | undefined;
|
|
32599
32603
|
}>, "many">;
|
|
@@ -32606,7 +32610,7 @@ export declare const UserAssociationListResponseSchema: z.ZodObject<{
|
|
|
32606
32610
|
createdAt: string;
|
|
32607
32611
|
userLocator: string;
|
|
32608
32612
|
userAssociationRole: string;
|
|
32609
|
-
userAssociationState: "discarded" | "active" | "completed" | "
|
|
32613
|
+
userAssociationState: "discarded" | "active" | "completed" | "disassociated";
|
|
32610
32614
|
updatedBy?: string | undefined;
|
|
32611
32615
|
updatedAt?: string | undefined;
|
|
32612
32616
|
}[];
|
|
@@ -32620,7 +32624,7 @@ export declare const UserAssociationListResponseSchema: z.ZodObject<{
|
|
|
32620
32624
|
createdAt: string;
|
|
32621
32625
|
userLocator: string;
|
|
32622
32626
|
userAssociationRole: string;
|
|
32623
|
-
userAssociationState: "discarded" | "active" | "completed" | "
|
|
32627
|
+
userAssociationState: "discarded" | "active" | "completed" | "disassociated";
|
|
32624
32628
|
updatedBy?: string | undefined;
|
|
32625
32629
|
updatedAt?: string | undefined;
|
|
32626
32630
|
}[];
|
|
@@ -32763,7 +32767,7 @@ export declare const UserAssociationResponseBffSchema: z.ZodObject<{
|
|
|
32763
32767
|
locator: z.ZodString;
|
|
32764
32768
|
userLocator: z.ZodString;
|
|
32765
32769
|
referenceType: z.ZodEnum<["account", "quickQuote", "quote", "policy", "transaction", "invoice"]>;
|
|
32766
|
-
userAssociationState: z.ZodEnum<["active", "completed", "
|
|
32770
|
+
userAssociationState: z.ZodEnum<["active", "completed", "disassociated", "discarded"]>;
|
|
32767
32771
|
createdAt: z.ZodString;
|
|
32768
32772
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
32769
32773
|
userAssociationRole: z.ZodString;
|
|
@@ -32775,7 +32779,7 @@ export declare const UserAssociationResponseBffSchema: z.ZodObject<{
|
|
|
32775
32779
|
createdAt: string;
|
|
32776
32780
|
userLocator: string;
|
|
32777
32781
|
userAssociationRole: string;
|
|
32778
|
-
userAssociationState: "discarded" | "active" | "completed" | "
|
|
32782
|
+
userAssociationState: "discarded" | "active" | "completed" | "disassociated";
|
|
32779
32783
|
createdBy?: {
|
|
32780
32784
|
locator: string;
|
|
32781
32785
|
userName: string;
|
|
@@ -32818,7 +32822,7 @@ export declare const UserAssociationResponseBffSchema: z.ZodObject<{
|
|
|
32818
32822
|
createdAt: string;
|
|
32819
32823
|
userLocator: string;
|
|
32820
32824
|
userAssociationRole: string;
|
|
32821
|
-
userAssociationState: "discarded" | "active" | "completed" | "
|
|
32825
|
+
userAssociationState: "discarded" | "active" | "completed" | "disassociated";
|
|
32822
32826
|
createdBy?: {
|
|
32823
32827
|
locator: string;
|
|
32824
32828
|
userName: string;
|
|
@@ -32860,7 +32864,7 @@ export declare const UserAssociationResponseSchema: z.ZodObject<{
|
|
|
32860
32864
|
locator: z.ZodString;
|
|
32861
32865
|
userLocator: z.ZodString;
|
|
32862
32866
|
referenceType: z.ZodEnum<["account", "quickQuote", "quote", "policy", "transaction", "invoice"]>;
|
|
32863
|
-
userAssociationState: z.ZodEnum<["active", "completed", "
|
|
32867
|
+
userAssociationState: z.ZodEnum<["active", "completed", "disassociated", "discarded"]>;
|
|
32864
32868
|
createdBy: z.ZodString;
|
|
32865
32869
|
createdAt: z.ZodString;
|
|
32866
32870
|
updatedBy: z.ZodOptional<z.ZodString>;
|
|
@@ -32875,7 +32879,7 @@ export declare const UserAssociationResponseSchema: z.ZodObject<{
|
|
|
32875
32879
|
createdAt: string;
|
|
32876
32880
|
userLocator: string;
|
|
32877
32881
|
userAssociationRole: string;
|
|
32878
|
-
userAssociationState: "discarded" | "active" | "completed" | "
|
|
32882
|
+
userAssociationState: "discarded" | "active" | "completed" | "disassociated";
|
|
32879
32883
|
updatedBy?: string | undefined;
|
|
32880
32884
|
updatedAt?: string | undefined;
|
|
32881
32885
|
}, {
|
|
@@ -32886,7 +32890,7 @@ export declare const UserAssociationResponseSchema: z.ZodObject<{
|
|
|
32886
32890
|
createdAt: string;
|
|
32887
32891
|
userLocator: string;
|
|
32888
32892
|
userAssociationRole: string;
|
|
32889
|
-
userAssociationState: "discarded" | "active" | "completed" | "
|
|
32893
|
+
userAssociationState: "discarded" | "active" | "completed" | "disassociated";
|
|
32890
32894
|
updatedBy?: string | undefined;
|
|
32891
32895
|
updatedAt?: string | undefined;
|
|
32892
32896
|
}>;
|
|
@@ -32924,7 +32928,7 @@ export declare const UserAssociationsByRefParamsSchema: z.ZodObject<{
|
|
|
32924
32928
|
|
|
32925
32929
|
export declare type UserAssociationStateEnum = z.infer<typeof UserAssociationStateEnumSchema>;
|
|
32926
32930
|
|
|
32927
|
-
export declare const UserAssociationStateEnumSchema: z.ZodEnum<["active", "completed", "
|
|
32931
|
+
export declare const UserAssociationStateEnumSchema: z.ZodEnum<["active", "completed", "disassociated", "discarded"]>;
|
|
32928
32932
|
|
|
32929
32933
|
export declare type UserCreateRequest = z.infer<typeof UserCreateRequestSchema>;
|
|
32930
32934
|
|
|
@@ -33166,7 +33170,7 @@ export declare const UserUserAssociationListResponseBffSchema: z.ZodObject<{
|
|
|
33166
33170
|
locator: z.ZodString;
|
|
33167
33171
|
userLocator: z.ZodString;
|
|
33168
33172
|
referenceType: z.ZodEnum<["account", "quickQuote", "quote", "policy", "transaction", "invoice"]>;
|
|
33169
|
-
userAssociationState: z.ZodEnum<["active", "completed", "
|
|
33173
|
+
userAssociationState: z.ZodEnum<["active", "completed", "disassociated", "discarded"]>;
|
|
33170
33174
|
createdBy: z.ZodString;
|
|
33171
33175
|
createdAt: z.ZodString;
|
|
33172
33176
|
updatedBy: z.ZodOptional<z.ZodString>;
|
|
@@ -33181,7 +33185,7 @@ export declare const UserUserAssociationListResponseBffSchema: z.ZodObject<{
|
|
|
33181
33185
|
createdAt: string;
|
|
33182
33186
|
userLocator: string;
|
|
33183
33187
|
userAssociationRole: string;
|
|
33184
|
-
userAssociationState: "discarded" | "active" | "completed" | "
|
|
33188
|
+
userAssociationState: "discarded" | "active" | "completed" | "disassociated";
|
|
33185
33189
|
updatedBy?: string | undefined;
|
|
33186
33190
|
updatedAt?: string | undefined;
|
|
33187
33191
|
referenceDetails?: {
|
|
@@ -33199,7 +33203,7 @@ export declare const UserUserAssociationListResponseBffSchema: z.ZodObject<{
|
|
|
33199
33203
|
createdAt: string;
|
|
33200
33204
|
userLocator: string;
|
|
33201
33205
|
userAssociationRole: string;
|
|
33202
|
-
userAssociationState: "discarded" | "active" | "completed" | "
|
|
33206
|
+
userAssociationState: "discarded" | "active" | "completed" | "disassociated";
|
|
33203
33207
|
updatedBy?: string | undefined;
|
|
33204
33208
|
updatedAt?: string | undefined;
|
|
33205
33209
|
referenceDetails?: {
|
|
@@ -33219,7 +33223,7 @@ export declare const UserUserAssociationListResponseBffSchema: z.ZodObject<{
|
|
|
33219
33223
|
createdAt: string;
|
|
33220
33224
|
userLocator: string;
|
|
33221
33225
|
userAssociationRole: string;
|
|
33222
|
-
userAssociationState: "discarded" | "active" | "completed" | "
|
|
33226
|
+
userAssociationState: "discarded" | "active" | "completed" | "disassociated";
|
|
33223
33227
|
updatedBy?: string | undefined;
|
|
33224
33228
|
updatedAt?: string | undefined;
|
|
33225
33229
|
referenceDetails?: {
|
|
@@ -33240,7 +33244,7 @@ export declare const UserUserAssociationListResponseBffSchema: z.ZodObject<{
|
|
|
33240
33244
|
createdAt: string;
|
|
33241
33245
|
userLocator: string;
|
|
33242
33246
|
userAssociationRole: string;
|
|
33243
|
-
userAssociationState: "discarded" | "active" | "completed" | "
|
|
33247
|
+
userAssociationState: "discarded" | "active" | "completed" | "disassociated";
|
|
33244
33248
|
updatedBy?: string | undefined;
|
|
33245
33249
|
updatedAt?: string | undefined;
|
|
33246
33250
|
referenceDetails?: {
|
|
@@ -33279,7 +33283,7 @@ export declare const UserUserAssociationResponseBffSchema: z.ZodObject<{
|
|
|
33279
33283
|
locator: z.ZodString;
|
|
33280
33284
|
userLocator: z.ZodString;
|
|
33281
33285
|
referenceType: z.ZodEnum<["account", "quickQuote", "quote", "policy", "transaction", "invoice"]>;
|
|
33282
|
-
userAssociationState: z.ZodEnum<["active", "completed", "
|
|
33286
|
+
userAssociationState: z.ZodEnum<["active", "completed", "disassociated", "discarded"]>;
|
|
33283
33287
|
createdBy: z.ZodString;
|
|
33284
33288
|
createdAt: z.ZodString;
|
|
33285
33289
|
updatedBy: z.ZodOptional<z.ZodString>;
|
|
@@ -33294,7 +33298,7 @@ export declare const UserUserAssociationResponseBffSchema: z.ZodObject<{
|
|
|
33294
33298
|
createdAt: string;
|
|
33295
33299
|
userLocator: string;
|
|
33296
33300
|
userAssociationRole: string;
|
|
33297
|
-
userAssociationState: "discarded" | "active" | "completed" | "
|
|
33301
|
+
userAssociationState: "discarded" | "active" | "completed" | "disassociated";
|
|
33298
33302
|
updatedBy?: string | undefined;
|
|
33299
33303
|
updatedAt?: string | undefined;
|
|
33300
33304
|
referenceDetails?: {
|
|
@@ -33312,7 +33316,7 @@ export declare const UserUserAssociationResponseBffSchema: z.ZodObject<{
|
|
|
33312
33316
|
createdAt: string;
|
|
33313
33317
|
userLocator: string;
|
|
33314
33318
|
userAssociationRole: string;
|
|
33315
|
-
userAssociationState: "discarded" | "active" | "completed" | "
|
|
33319
|
+
userAssociationState: "discarded" | "active" | "completed" | "disassociated";
|
|
33316
33320
|
updatedBy?: string | undefined;
|
|
33317
33321
|
updatedAt?: string | undefined;
|
|
33318
33322
|
referenceDetails?: {
|