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