@socotra/ec-react-schemas 2.35.0-next.4 → 2.35.0-next.5

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 CHANGED
@@ -743,6 +743,7 @@ export declare type AttachDocumentQuery = z.infer<typeof AttachDocumentQuerySche
743
743
 
744
744
  export declare const AttachDocumentQuerySchema: z.ZodObject<{
745
745
  category: z.ZodOptional<z.ZodString>;
746
+ copyOnIssuance: z.ZodOptional<z.ZodBoolean>;
746
747
  documentFormat: z.ZodEnum<{
747
748
  text: "text";
748
749
  html: "html";
@@ -765,6 +766,7 @@ export declare const AttachDocumentQuerySchema: z.ZodObject<{
765
766
  referenceType: z.ZodEnum<{
766
767
  policy: "policy";
767
768
  quote: "quote";
769
+ quoteGroup: "quoteGroup";
768
770
  invoice: "invoice";
769
771
  transaction: "transaction";
770
772
  segment: "segment";
@@ -803,6 +805,7 @@ export declare type AttachDocumentRequestParams = z.infer<typeof AttachDocumentR
803
805
  export declare const AttachDocumentRequestParamsSchema: z.ZodObject<{
804
806
  tenantLocator: z.ZodUUID;
805
807
  category: z.ZodOptional<z.ZodString>;
808
+ copyOnIssuance: z.ZodOptional<z.ZodBoolean>;
806
809
  documentFormat: z.ZodEnum<{
807
810
  text: "text";
808
811
  html: "html";
@@ -825,6 +828,7 @@ export declare const AttachDocumentRequestParamsSchema: z.ZodObject<{
825
828
  referenceType: z.ZodEnum<{
826
829
  policy: "policy";
827
830
  quote: "quote";
831
+ quoteGroup: "quoteGroup";
828
832
  invoice: "invoice";
829
833
  transaction: "transaction";
830
834
  segment: "segment";
@@ -4989,6 +4993,7 @@ export declare const DocumentInstanceResponseSchema: z.ZodObject<{
4989
4993
  referenceType: z.ZodEnum<{
4990
4994
  policy: "policy";
4991
4995
  quote: "quote";
4996
+ quoteGroup: "quoteGroup";
4992
4997
  invoice: "invoice";
4993
4998
  transaction: "transaction";
4994
4999
  segment: "segment";
@@ -5047,6 +5052,7 @@ export declare const documentInstanceResponseSchema: z.ZodObject<{
5047
5052
  referenceType: z.ZodOptional<z.ZodEnum<{
5048
5053
  policy: "policy";
5049
5054
  quote: "quote";
5055
+ quoteGroup: "quoteGroup";
5050
5056
  invoice: "invoice";
5051
5057
  transaction: "transaction";
5052
5058
  segment: "segment";
@@ -5082,6 +5088,7 @@ export declare const DocumentInstanceSchema: z.ZodObject<{
5082
5088
  referenceType: z.ZodEnum<{
5083
5089
  policy: "policy";
5084
5090
  quote: "quote";
5091
+ quoteGroup: "quoteGroup";
5085
5092
  invoice: "invoice";
5086
5093
  transaction: "transaction";
5087
5094
  segment: "segment";
@@ -5151,6 +5158,7 @@ export declare const DocumentListResponseSchema: z.ZodObject<{
5151
5158
  referenceType: z.ZodEnum<{
5152
5159
  policy: "policy";
5153
5160
  quote: "quote";
5161
+ quoteGroup: "quoteGroup";
5154
5162
  invoice: "invoice";
5155
5163
  transaction: "transaction";
5156
5164
  segment: "segment";
@@ -5204,6 +5212,7 @@ export declare type DocumentReferenceTypeEnum = z.infer<typeof DocumentReference
5204
5212
  export declare const DocumentReferenceTypeEnumSchema: z.ZodEnum<{
5205
5213
  policy: "policy";
5206
5214
  quote: "quote";
5215
+ quoteGroup: "quoteGroup";
5207
5216
  invoice: "invoice";
5208
5217
  transaction: "transaction";
5209
5218
  segment: "segment";
@@ -5213,6 +5222,7 @@ export declare const DocumentReferenceTypeEnumSchema: z.ZodEnum<{
5213
5222
  export declare const documentReferenceTypeEnumSchema: z.ZodEnum<{
5214
5223
  policy: "policy";
5215
5224
  quote: "quote";
5225
+ quoteGroup: "quoteGroup";
5216
5226
  invoice: "invoice";
5217
5227
  transaction: "transaction";
5218
5228
  segment: "segment";
@@ -5398,6 +5408,7 @@ export declare const documentSummarySchema: z.ZodObject<{
5398
5408
  referenceType: z.ZodEnum<{
5399
5409
  policy: "policy";
5400
5410
  quote: "quote";
5411
+ quoteGroup: "quoteGroup";
5401
5412
  invoice: "invoice";
5402
5413
  transaction: "transaction";
5403
5414
  segment: "segment";
@@ -9083,6 +9094,7 @@ export declare const policyTermSummaryResponse: z.ZodObject<{
9083
9094
  referenceType: z.ZodEnum<{
9084
9095
  policy: "policy";
9085
9096
  quote: "quote";
9097
+ quoteGroup: "quoteGroup";
9086
9098
  invoice: "invoice";
9087
9099
  transaction: "transaction";
9088
9100
  segment: "segment";
@@ -11176,6 +11188,14 @@ export declare const QuoteGroupAssignmentRequestSchema: z.ZodObject<{
11176
11188
  groupLocator: z.ZodULID;
11177
11189
  }, z.core.$strip>;
11178
11190
 
11191
+ export declare type QuoteGroupCopyDocumentsOnIssueEnum = z.infer<typeof QuoteGroupCopyDocumentsOnIssueEnumSchema>;
11192
+
11193
+ export declare const QuoteGroupCopyDocumentsOnIssueEnumSchema: z.ZodEnum<{
11194
+ none: "none";
11195
+ all: "all";
11196
+ individual: "individual";
11197
+ }>;
11198
+
11179
11199
  export declare type QuoteGroupCreateRequest = z.infer<typeof QuoteGroupCreateRequestSchema>;
11180
11200
 
11181
11201
  export declare const QuoteGroupCreateRequestSchema: z.ZodObject<{
@@ -11201,6 +11221,12 @@ export declare const QuoteGroupCreateRequestSchema: z.ZodObject<{
11201
11221
  name: z.ZodString;
11202
11222
  paths: z.ZodRecord<z.ZodString, z.ZodString>;
11203
11223
  }, z.core.$strip>>>;
11224
+ copyDocumentsOnIssue: z.ZodOptional<z.ZodEnum<{
11225
+ none: "none";
11226
+ all: "all";
11227
+ individual: "individual";
11228
+ }>>;
11229
+ deleteAllDocuments: z.ZodOptional<z.ZodBoolean>;
11204
11230
  }, z.core.$strip>;
11205
11231
  quoteLocators: z.ZodArray<z.ZodULID>;
11206
11232
  }, z.core.$strip>;
@@ -11240,6 +11266,12 @@ export declare const QuoteGroupSchema: z.ZodObject<{
11240
11266
  name: z.ZodString;
11241
11267
  paths: z.ZodRecord<z.ZodString, z.ZodString>;
11242
11268
  }, z.core.$strip>>>;
11269
+ copyDocumentsOnIssue: z.ZodOptional<z.ZodEnum<{
11270
+ none: "none";
11271
+ all: "all";
11272
+ individual: "individual";
11273
+ }>>;
11274
+ deleteAllDocuments: z.ZodOptional<z.ZodBoolean>;
11243
11275
  }, z.core.$strip>;
11244
11276
  createdAt: z.ZodISODateTime;
11245
11277
  createdBy: z.ZodGUID;
@@ -11268,6 +11300,12 @@ export declare const QuoteGroupSettingsSchema: z.ZodObject<{
11268
11300
  name: z.ZodString;
11269
11301
  paths: z.ZodRecord<z.ZodString, z.ZodString>;
11270
11302
  }, z.core.$strip>>>;
11303
+ copyDocumentsOnIssue: z.ZodOptional<z.ZodEnum<{
11304
+ none: "none";
11305
+ all: "all";
11306
+ individual: "individual";
11307
+ }>>;
11308
+ deleteAllDocuments: z.ZodOptional<z.ZodBoolean>;
11271
11309
  }, z.core.$strip>;
11272
11310
 
11273
11311
  export declare type QuoteGroupStateEnum = z.infer<typeof QuoteGroupStateEnumSchema>;
@@ -13150,6 +13188,7 @@ export declare const subsegmentSummarySchema: z.ZodObject<{
13150
13188
  referenceType: z.ZodEnum<{
13151
13189
  policy: "policy";
13152
13190
  quote: "quote";
13191
+ quoteGroup: "quoteGroup";
13153
13192
  invoice: "invoice";
13154
13193
  transaction: "transaction";
13155
13194
  segment: "segment";
@@ -14159,6 +14198,7 @@ export declare const termSummarySchema: z.ZodObject<{
14159
14198
  referenceType: z.ZodEnum<{
14160
14199
  policy: "policy";
14161
14200
  quote: "quote";
14201
+ quoteGroup: "quoteGroup";
14162
14202
  invoice: "invoice";
14163
14203
  transaction: "transaction";
14164
14204
  segment: "segment";
@@ -14188,6 +14228,7 @@ export declare const termSummarySchema: z.ZodObject<{
14188
14228
  referenceType: z.ZodEnum<{
14189
14229
  policy: "policy";
14190
14230
  quote: "quote";
14231
+ quoteGroup: "quoteGroup";
14191
14232
  invoice: "invoice";
14192
14233
  transaction: "transaction";
14193
14234
  segment: "segment";