@socotra/ec-react-schemas 2.29.0-next.0 → 2.29.0-next.10

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
@@ -3259,6 +3259,7 @@ export declare const dataModelSchema: z.ZodObject<{
3259
3259
  tag: z.ZodOptional<z.ZodArray<z.ZodString>>;
3260
3260
  }, z.core.$strip>>>;
3261
3261
  defaultSearchable: z.ZodOptional<z.ZodBoolean>;
3262
+ riskAssessmentCriteria: z.ZodOptional<z.ZodString>;
3262
3263
  defaultTimeZone: z.ZodOptional<z.ZodString>;
3263
3264
  defaultCurrency: z.ZodOptional<z.ZodString>;
3264
3265
  defaultTermDuration: z.ZodOptional<z.ZodNumber>;
@@ -7361,17 +7362,21 @@ export declare const MatchEnumSchema: z.ZodEnum<{
7361
7362
  declare const enum MimeType_2 {
7362
7363
  applicationJson = "application/json",
7363
7364
  applicationOctetStream = "application/octet-stream",
7365
+ applicationMsWord = "application/msword",
7366
+ applicationDocx = "application/vnd.openxmlformats-officedocument.wordprocessingml.document",
7364
7367
  applicationPdf = "application/pdf",
7365
7368
  applicationZip = "application/zip",
7366
7369
  applicationZipWindows = "application/x-zip-compressed",
7367
7370
  imageJpg = "image/jpeg",
7368
7371
  imagePng = "image/png",
7372
+ imageTiff = "image/tiff",
7369
7373
  imageSvg = "image/svg+xml",
7370
7374
  javaSource = "text/x-java-source",
7371
7375
  multipartFormData = "multipart/form-data",
7372
7376
  textCsv = "text/csv",
7373
7377
  textHtml = "text/html",
7374
- text = "text/plain"
7378
+ text = "text/plain",
7379
+ imageWebp = "image/webp"
7375
7380
  }
7376
7381
  export { MimeType_2 as MimeType }
7377
7382
 
@@ -7383,12 +7388,16 @@ export declare type MimeTypeEnum = z.infer<typeof MimeTypeEnumSchema>;
7383
7388
  export declare const MimeTypeEnumSchema: z.ZodEnum<{
7384
7389
  "application/json": "application/json";
7385
7390
  "application/octet-stream": "application/octet-stream";
7391
+ "application/msword": "application/msword";
7392
+ "application/vnd.openxmlformats-officedocument.wordprocessingml.document": "application/vnd.openxmlformats-officedocument.wordprocessingml.document";
7386
7393
  "application/pdf": "application/pdf";
7387
7394
  "application/zip": "application/zip";
7388
7395
  "application/x-zip-compressed": "application/x-zip-compressed";
7389
7396
  "image/jpeg": "image/jpeg";
7390
7397
  "image/png": "image/png";
7398
+ "image/tiff": "image/tiff";
7391
7399
  "image/svg+xml": "image/svg+xml";
7400
+ "image/webp": "image/webp";
7392
7401
  "text/x-java-source": "text/x-java-source";
7393
7402
  "multipart/form-data": "multipart/form-data";
7394
7403
  "text/csv": "text/csv";
@@ -9753,6 +9762,7 @@ export declare const productConfigRecordSchema: z.ZodRecord<z.ZodString, z.ZodOb
9753
9762
  tag: z.ZodOptional<z.ZodArray<z.ZodString>>;
9754
9763
  }, z.core.$strip>>>;
9755
9764
  defaultSearchable: z.ZodOptional<z.ZodBoolean>;
9765
+ riskAssessmentCriteria: z.ZodOptional<z.ZodString>;
9756
9766
  defaultTimeZone: z.ZodOptional<z.ZodString>;
9757
9767
  defaultCurrency: z.ZodOptional<z.ZodString>;
9758
9768
  defaultTermDuration: z.ZodOptional<z.ZodNumber>;
@@ -9830,6 +9840,7 @@ export declare const productConfigSchema: z.ZodObject<{
9830
9840
  tag: z.ZodOptional<z.ZodArray<z.ZodString>>;
9831
9841
  }, z.core.$strip>>>;
9832
9842
  defaultSearchable: z.ZodOptional<z.ZodBoolean>;
9843
+ riskAssessmentCriteria: z.ZodOptional<z.ZodString>;
9833
9844
  defaultTimeZone: z.ZodOptional<z.ZodString>;
9834
9845
  defaultCurrency: z.ZodOptional<z.ZodString>;
9835
9846
  defaultTermDuration: z.ZodOptional<z.ZodNumber>;
@@ -12437,6 +12448,7 @@ export declare const TaskListResponseBffSchema: z.ZodObject<{
12437
12448
  termLocator: z.ZodOptional<z.ZodULID>;
12438
12449
  transactionLocator: z.ZodOptional<z.ZodULID>;
12439
12450
  segmentLocator: z.ZodOptional<z.ZodULID>;
12451
+ productName: z.ZodOptional<z.ZodString>;
12440
12452
  referenceType: z.ZodEnum<{
12441
12453
  account: "account";
12442
12454
  policy: "policy";
@@ -12546,6 +12558,7 @@ export declare const TaskReferenceBffSchema: z.ZodObject<{
12546
12558
  termLocator: z.ZodOptional<z.ZodULID>;
12547
12559
  transactionLocator: z.ZodOptional<z.ZodULID>;
12548
12560
  segmentLocator: z.ZodOptional<z.ZodULID>;
12561
+ productName: z.ZodOptional<z.ZodString>;
12549
12562
  referenceType: z.ZodEnum<{
12550
12563
  account: "account";
12551
12564
  policy: "policy";
@@ -12597,6 +12610,7 @@ export declare const TaskResponseBffSchema: z.ZodObject<{
12597
12610
  termLocator: z.ZodOptional<z.ZodULID>;
12598
12611
  transactionLocator: z.ZodOptional<z.ZodULID>;
12599
12612
  segmentLocator: z.ZodOptional<z.ZodULID>;
12613
+ productName: z.ZodOptional<z.ZodString>;
12600
12614
  referenceType: z.ZodEnum<{
12601
12615
  account: "account";
12602
12616
  policy: "policy";
package/dist/index.es.js CHANGED
@@ -19749,19 +19749,23 @@ const P$ = f(["none", "required", "excluded"]), U$ = P$, Xm = f([
19749
19749
  ]), F$ = f(["fuzzy", "exact", "startsWith"]), G$ = F$, Tk = f([
19750
19750
  "application/json",
19751
19751
  "application/octet-stream",
19752
+ "application/msword",
19753
+ "application/vnd.openxmlformats-officedocument.wordprocessingml.document",
19752
19754
  "application/pdf",
19753
19755
  "application/zip",
19754
19756
  "application/x-zip-compressed",
19755
19757
  "image/jpeg",
19756
19758
  "image/png",
19759
+ "image/tiff",
19757
19760
  "image/svg+xml",
19761
+ "image/webp",
19758
19762
  "text/x-java-source",
19759
19763
  "multipart/form-data",
19760
19764
  "text/csv",
19761
19765
  "text/html",
19762
19766
  "text/plain"
19763
19767
  ]);
19764
- var xe = /* @__PURE__ */ ((n) => (n.applicationJson = "application/json", n.applicationOctetStream = "application/octet-stream", n.applicationPdf = "application/pdf", n.applicationZip = "application/zip", n.applicationZipWindows = "application/x-zip-compressed", n.imageJpg = "image/jpeg", n.imagePng = "image/png", n.imageSvg = "image/svg+xml", n.javaSource = "text/x-java-source", n.multipartFormData = "multipart/form-data", n.textCsv = "text/csv", n.textHtml = "text/html", n.text = "text/plain", n))(xe || {});
19768
+ var xe = /* @__PURE__ */ ((n) => (n.applicationJson = "application/json", n.applicationOctetStream = "application/octet-stream", n.applicationMsWord = "application/msword", n.applicationDocx = "application/vnd.openxmlformats-officedocument.wordprocessingml.document", n.applicationPdf = "application/pdf", n.applicationZip = "application/zip", n.applicationZipWindows = "application/x-zip-compressed", n.imageJpg = "image/jpeg", n.imagePng = "image/png", n.imageTiff = "image/tiff", n.imageSvg = "image/svg+xml", n.javaSource = "text/x-java-source", n.multipartFormData = "multipart/form-data", n.textCsv = "text/csv", n.textHtml = "text/html", n.text = "text/plain", n.imageWebp = "image/webp", n))(xe || {});
19765
19769
  const ep = Or.shape.searchEntityType, J$ = at.shape.segmentType, jr = en.shape.transactionCategory, uo = f([
19766
19770
  ...en.shape.transactionState.options,
19767
19771
  "underwritingBlocked"
@@ -20203,7 +20207,8 @@ const f_ = [
20203
20207
  charges: m(e()).optional(),
20204
20208
  data: p(e(), Ge).optional(),
20205
20209
  staticData: p(e(), Ge).optional(),
20206
- defaultSearchable: y().optional()
20210
+ defaultSearchable: y().optional(),
20211
+ riskAssessmentCriteria: e().optional()
20207
20212
  }).extend(fL.shape), yL = p(
20208
20213
  e(),
20209
20214
  hL
@@ -22206,7 +22211,8 @@ const Mw = a({
22206
22211
  policyLocator: qe.optional(),
22207
22212
  termLocator: gr.optional(),
22208
22213
  transactionLocator: ut.optional(),
22209
- segmentLocator: yt.optional()
22214
+ segmentLocator: yt.optional(),
22215
+ productName: e().optional()
22210
22216
  }), rk = a({
22211
22217
  ...lp.shape,
22212
22218
  references: m(ak).optional(),