@socotra/ec-react-schemas 2.29.1 → 2.30.0-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 +114 -0
- package/dist/index.es.js +2910 -2883
- package/dist/index.es.js.map +1 -1
- package/dist/index.umd.js +5 -5
- package/dist/index.umd.js.map +1 -1
- package/package.json +2 -2
package/dist/index.d.ts
CHANGED
|
@@ -474,6 +474,7 @@ export declare const AddTaskRequestBffSchema: z.ZodObject<{
|
|
|
474
474
|
quickQuote: "quickQuote";
|
|
475
475
|
underwritingFlag: "underwritingFlag";
|
|
476
476
|
payment: "payment";
|
|
477
|
+
inquiry: "inquiry";
|
|
477
478
|
}>;
|
|
478
479
|
referenceLocator: z.ZodString;
|
|
479
480
|
}, z.core.$strip>>;
|
|
@@ -10617,12 +10618,115 @@ export declare const QuoteCreateRequestSchema: z.ZodObject<{
|
|
|
10617
10618
|
invoiceFeeAmount: z.ZodNumber;
|
|
10618
10619
|
}, z.core.$strip>;
|
|
10619
10620
|
|
|
10621
|
+
export declare type QuoteGroup = z.infer<typeof QuoteGroupSchema>;
|
|
10622
|
+
|
|
10620
10623
|
export declare type QuoteGroupAssignmentRequest = z.infer<typeof QuoteGroupAssignmentRequestSchema>;
|
|
10621
10624
|
|
|
10622
10625
|
export declare const QuoteGroupAssignmentRequestSchema: z.ZodObject<{
|
|
10623
10626
|
groupLocator: z.ZodULID;
|
|
10624
10627
|
}, z.core.$strip>;
|
|
10625
10628
|
|
|
10629
|
+
export declare type QuoteGroupCreateRequest = z.infer<typeof QuoteGroupCreateRequestSchema>;
|
|
10630
|
+
|
|
10631
|
+
export declare const QuoteGroupCreateRequestSchema: z.ZodObject<{
|
|
10632
|
+
name: z.ZodString;
|
|
10633
|
+
quoteGroupNumber: z.ZodOptional<z.ZodString>;
|
|
10634
|
+
settings: z.ZodObject<{
|
|
10635
|
+
enforceProductUniformity: z.ZodOptional<z.ZodBoolean>;
|
|
10636
|
+
stateUniqueness: z.ZodEnum<{
|
|
10637
|
+
draft: "draft";
|
|
10638
|
+
validated: "validated";
|
|
10639
|
+
earlyUnderwritten: "earlyUnderwritten";
|
|
10640
|
+
priced: "priced";
|
|
10641
|
+
underwritten: "underwritten";
|
|
10642
|
+
accepted: "accepted";
|
|
10643
|
+
issued: "issued";
|
|
10644
|
+
underwrittenBlocked: "underwrittenBlocked";
|
|
10645
|
+
declined: "declined";
|
|
10646
|
+
rejected: "rejected";
|
|
10647
|
+
refused: "refused";
|
|
10648
|
+
discarded: "discarded";
|
|
10649
|
+
}>;
|
|
10650
|
+
fieldEnforcementDeclarations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
10651
|
+
name: z.ZodString;
|
|
10652
|
+
paths: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
10653
|
+
}, z.core.$strip>>>;
|
|
10654
|
+
}, z.core.$strip>;
|
|
10655
|
+
quoteLocators: z.ZodArray<z.ZodULID>;
|
|
10656
|
+
}, z.core.$strip>;
|
|
10657
|
+
|
|
10658
|
+
export declare type QuoteGroupFieldEnforcementDeclaration = z.infer<typeof QuoteGroupFieldEnforcementDeclarationSchema>;
|
|
10659
|
+
|
|
10660
|
+
export declare const QuoteGroupFieldEnforcementDeclarationSchema: z.ZodObject<{
|
|
10661
|
+
name: z.ZodString;
|
|
10662
|
+
paths: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
10663
|
+
}, z.core.$strip>;
|
|
10664
|
+
|
|
10665
|
+
export declare const QuoteGroupSchema: z.ZodObject<{
|
|
10666
|
+
locator: z.ZodULID;
|
|
10667
|
+
name: z.ZodString;
|
|
10668
|
+
quoteGroupState: z.ZodEnum<{
|
|
10669
|
+
locked: "locked";
|
|
10670
|
+
open: "open";
|
|
10671
|
+
}>;
|
|
10672
|
+
quoteGroupNumber: z.ZodOptional<z.ZodString>;
|
|
10673
|
+
settings: z.ZodObject<{
|
|
10674
|
+
enforceProductUniformity: z.ZodOptional<z.ZodBoolean>;
|
|
10675
|
+
stateUniqueness: z.ZodEnum<{
|
|
10676
|
+
draft: "draft";
|
|
10677
|
+
validated: "validated";
|
|
10678
|
+
earlyUnderwritten: "earlyUnderwritten";
|
|
10679
|
+
priced: "priced";
|
|
10680
|
+
underwritten: "underwritten";
|
|
10681
|
+
accepted: "accepted";
|
|
10682
|
+
issued: "issued";
|
|
10683
|
+
underwrittenBlocked: "underwrittenBlocked";
|
|
10684
|
+
declined: "declined";
|
|
10685
|
+
rejected: "rejected";
|
|
10686
|
+
refused: "refused";
|
|
10687
|
+
discarded: "discarded";
|
|
10688
|
+
}>;
|
|
10689
|
+
fieldEnforcementDeclarations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
10690
|
+
name: z.ZodString;
|
|
10691
|
+
paths: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
10692
|
+
}, z.core.$strip>>>;
|
|
10693
|
+
}, z.core.$strip>;
|
|
10694
|
+
createdAt: z.ZodISODateTime;
|
|
10695
|
+
createdBy: z.ZodGUID;
|
|
10696
|
+
quoteLocators: z.ZodArray<z.ZodULID>;
|
|
10697
|
+
}, z.core.$strip>;
|
|
10698
|
+
|
|
10699
|
+
export declare type QuoteGroupSettings = z.infer<typeof QuoteGroupSettingsSchema>;
|
|
10700
|
+
|
|
10701
|
+
export declare const QuoteGroupSettingsSchema: z.ZodObject<{
|
|
10702
|
+
enforceProductUniformity: z.ZodOptional<z.ZodBoolean>;
|
|
10703
|
+
stateUniqueness: z.ZodEnum<{
|
|
10704
|
+
draft: "draft";
|
|
10705
|
+
validated: "validated";
|
|
10706
|
+
earlyUnderwritten: "earlyUnderwritten";
|
|
10707
|
+
priced: "priced";
|
|
10708
|
+
underwritten: "underwritten";
|
|
10709
|
+
accepted: "accepted";
|
|
10710
|
+
issued: "issued";
|
|
10711
|
+
underwrittenBlocked: "underwrittenBlocked";
|
|
10712
|
+
declined: "declined";
|
|
10713
|
+
rejected: "rejected";
|
|
10714
|
+
refused: "refused";
|
|
10715
|
+
discarded: "discarded";
|
|
10716
|
+
}>;
|
|
10717
|
+
fieldEnforcementDeclarations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
10718
|
+
name: z.ZodString;
|
|
10719
|
+
paths: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
10720
|
+
}, z.core.$strip>>>;
|
|
10721
|
+
}, z.core.$strip>;
|
|
10722
|
+
|
|
10723
|
+
export declare type QuoteGroupStateEnum = z.infer<typeof QuoteGroupStateEnumSchema>;
|
|
10724
|
+
|
|
10725
|
+
export declare const QuoteGroupStateEnumSchema: z.ZodEnum<{
|
|
10726
|
+
locked: "locked";
|
|
10727
|
+
open: "open";
|
|
10728
|
+
}>;
|
|
10729
|
+
|
|
10626
10730
|
export declare type QuoteId = z.infer<typeof QuoteIdSchema>;
|
|
10627
10731
|
|
|
10628
10732
|
export declare const QuoteIdSchema: z.ZodULID;
|
|
@@ -12250,6 +12354,7 @@ export declare const TaskCreateRequestSchema: z.ZodObject<{
|
|
|
12250
12354
|
quickQuote: "quickQuote";
|
|
12251
12355
|
underwritingFlag: "underwritingFlag";
|
|
12252
12356
|
payment: "payment";
|
|
12357
|
+
inquiry: "inquiry";
|
|
12253
12358
|
}>;
|
|
12254
12359
|
referenceLocator: z.ZodString;
|
|
12255
12360
|
}, z.core.$strip>>;
|
|
@@ -12458,6 +12563,7 @@ export declare const TaskListResponseBffSchema: z.ZodObject<{
|
|
|
12458
12563
|
quickQuote: "quickQuote";
|
|
12459
12564
|
underwritingFlag: "underwritingFlag";
|
|
12460
12565
|
payment: "payment";
|
|
12566
|
+
inquiry: "inquiry";
|
|
12461
12567
|
}>;
|
|
12462
12568
|
referenceLocator: z.ZodString;
|
|
12463
12569
|
}, z.core.$strip>>>;
|
|
@@ -12526,6 +12632,7 @@ export declare const TaskListResponseSchema: z.ZodObject<{
|
|
|
12526
12632
|
quickQuote: "quickQuote";
|
|
12527
12633
|
underwritingFlag: "underwritingFlag";
|
|
12528
12634
|
payment: "payment";
|
|
12635
|
+
inquiry: "inquiry";
|
|
12529
12636
|
}>;
|
|
12530
12637
|
referenceLocator: z.ZodString;
|
|
12531
12638
|
}, z.core.$strip>>>;
|
|
@@ -12568,6 +12675,7 @@ export declare const TaskReferenceBffSchema: z.ZodObject<{
|
|
|
12568
12675
|
quickQuote: "quickQuote";
|
|
12569
12676
|
underwritingFlag: "underwritingFlag";
|
|
12570
12677
|
payment: "payment";
|
|
12678
|
+
inquiry: "inquiry";
|
|
12571
12679
|
}>;
|
|
12572
12680
|
referenceLocator: z.ZodString;
|
|
12573
12681
|
}, z.core.$strip>;
|
|
@@ -12583,6 +12691,7 @@ export declare const TaskReferenceEnumSchema: z.ZodEnum<{
|
|
|
12583
12691
|
quickQuote: "quickQuote";
|
|
12584
12692
|
underwritingFlag: "underwritingFlag";
|
|
12585
12693
|
payment: "payment";
|
|
12694
|
+
inquiry: "inquiry";
|
|
12586
12695
|
}>;
|
|
12587
12696
|
|
|
12588
12697
|
export declare const TaskReferenceSchema: z.ZodObject<{
|
|
@@ -12595,6 +12704,7 @@ export declare const TaskReferenceSchema: z.ZodObject<{
|
|
|
12595
12704
|
quickQuote: "quickQuote";
|
|
12596
12705
|
underwritingFlag: "underwritingFlag";
|
|
12597
12706
|
payment: "payment";
|
|
12707
|
+
inquiry: "inquiry";
|
|
12598
12708
|
}>;
|
|
12599
12709
|
referenceLocator: z.ZodString;
|
|
12600
12710
|
}, z.core.$strip>;
|
|
@@ -12620,6 +12730,7 @@ export declare const TaskResponseBffSchema: z.ZodObject<{
|
|
|
12620
12730
|
quickQuote: "quickQuote";
|
|
12621
12731
|
underwritingFlag: "underwritingFlag";
|
|
12622
12732
|
payment: "payment";
|
|
12733
|
+
inquiry: "inquiry";
|
|
12623
12734
|
}>;
|
|
12624
12735
|
referenceLocator: z.ZodString;
|
|
12625
12736
|
}, z.core.$strip>>>;
|
|
@@ -12685,6 +12796,7 @@ export declare const TaskResponseSchema: z.ZodObject<{
|
|
|
12685
12796
|
quickQuote: "quickQuote";
|
|
12686
12797
|
underwritingFlag: "underwritingFlag";
|
|
12687
12798
|
payment: "payment";
|
|
12799
|
+
inquiry: "inquiry";
|
|
12688
12800
|
}>;
|
|
12689
12801
|
referenceLocator: z.ZodString;
|
|
12690
12802
|
}, z.core.$strip>>>;
|
|
@@ -12745,6 +12857,7 @@ export declare const TaskUpdateRequestSchema: z.ZodObject<{
|
|
|
12745
12857
|
quickQuote: "quickQuote";
|
|
12746
12858
|
underwritingFlag: "underwritingFlag";
|
|
12747
12859
|
payment: "payment";
|
|
12860
|
+
inquiry: "inquiry";
|
|
12748
12861
|
}>;
|
|
12749
12862
|
referenceLocator: z.ZodString;
|
|
12750
12863
|
}, z.core.$strip>>>;
|
|
@@ -12758,6 +12871,7 @@ export declare const TaskUpdateRequestSchema: z.ZodObject<{
|
|
|
12758
12871
|
quickQuote: "quickQuote";
|
|
12759
12872
|
underwritingFlag: "underwritingFlag";
|
|
12760
12873
|
payment: "payment";
|
|
12874
|
+
inquiry: "inquiry";
|
|
12761
12875
|
}>;
|
|
12762
12876
|
referenceLocator: z.ZodString;
|
|
12763
12877
|
}, z.core.$strip>>>;
|