@socotra/ec-react-schemas 2.25.3-next.8 → 2.26.1-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 CHANGED
@@ -1560,6 +1560,34 @@ export declare const ConfigBuilderResultSchema: z.ZodObject<{
1560
1560
  errors: z.ZodArray<z.ZodString>;
1561
1561
  }, z.core.$strip>;
1562
1562
 
1563
+ export declare type ConsolidatedDocumentRef = z.infer<typeof ConsolidatedDocumentRefSchema>;
1564
+
1565
+ export declare type ConsolidatedDocumentRefRecord = z.infer<typeof ConsolidatedDocumentRefRecordSchema>;
1566
+
1567
+ export declare const ConsolidatedDocumentRefRecordSchema: z.ZodRecord<z.ZodString, z.ZodObject<{
1568
+ displayName: z.ZodString;
1569
+ consolidatedDocuments: z.ZodArray<z.ZodString>;
1570
+ leadingDocumentTemplate: z.ZodString;
1571
+ pageNumbering: z.ZodObject<{
1572
+ enableNumbering: z.ZodBoolean;
1573
+ leadingDocumentPages: z.ZodBoolean;
1574
+ xPosition: z.ZodInt;
1575
+ yPosition: z.ZodInt;
1576
+ }, z.core.$strip>;
1577
+ }, z.core.$strip>>;
1578
+
1579
+ export declare const ConsolidatedDocumentRefSchema: z.ZodObject<{
1580
+ displayName: z.ZodString;
1581
+ consolidatedDocuments: z.ZodArray<z.ZodString>;
1582
+ leadingDocumentTemplate: z.ZodString;
1583
+ pageNumbering: z.ZodObject<{
1584
+ enableNumbering: z.ZodBoolean;
1585
+ leadingDocumentPages: z.ZodBoolean;
1586
+ xPosition: z.ZodInt;
1587
+ yPosition: z.ZodInt;
1588
+ }, z.core.$strip>;
1589
+ }, z.core.$strip>;
1590
+
1563
1591
  export declare type ConstraintConfig = z.infer<typeof constraintConfigSchema>;
1564
1592
 
1565
1593
  export declare const constraintConfigSchema: z.ZodOptional<z.ZodObject<{
@@ -3531,6 +3559,17 @@ export declare const dataModelSchema: z.ZodObject<{
3531
3559
  immediate: "immediate";
3532
3560
  }>>;
3533
3561
  }, z.core.$strip>>>;
3562
+ consolidatedDocuments: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
3563
+ displayName: z.ZodString;
3564
+ consolidatedDocuments: z.ZodArray<z.ZodString>;
3565
+ leadingDocumentTemplate: z.ZodString;
3566
+ pageNumbering: z.ZodObject<{
3567
+ enableNumbering: z.ZodBoolean;
3568
+ leadingDocumentPages: z.ZodBoolean;
3569
+ xPosition: z.ZodInt;
3570
+ yPosition: z.ZodInt;
3571
+ }, z.core.$strip>;
3572
+ }, z.core.$strip>>>;
3534
3573
  policyLines: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
3535
3574
  displayName: z.ZodOptional<z.ZodString>;
3536
3575
  contents: z.ZodOptional<z.ZodArray<z.ZodString>>;
@@ -14639,13 +14678,14 @@ export declare type UserCreateRequest = z.infer<typeof UserCreateRequestSchema>;
14639
14678
 
14640
14679
  export declare const UserCreateRequestSchema: z.ZodObject<{
14641
14680
  userName: z.ZodEmail;
14642
- roles: z.ZodOptional<z.ZodArray<z.ZodString>>;
14643
- tenants: z.ZodOptional<z.ZodArray<z.ZodString>>;
14644
14681
  firstName: z.ZodString;
14645
14682
  lastName: z.ZodString;
14683
+ serviceAccount: z.ZodOptional<z.ZodBoolean>;
14684
+ email: z.ZodOptional<z.ZodEmail>;
14685
+ roles: z.ZodOptional<z.ZodArray<z.ZodString>>;
14686
+ tenants: z.ZodOptional<z.ZodArray<z.ZodString>>;
14646
14687
  password: z.ZodString;
14647
14688
  temporaryPassword: z.ZodBoolean;
14648
- email: z.ZodOptional<z.ZodString>;
14649
14689
  }, z.core.$strip>;
14650
14690
 
14651
14691
  export declare type UserId = z.infer<typeof UserIdSchema>;
@@ -14664,6 +14704,7 @@ export declare const UserListResponseSchema: z.ZodObject<{
14664
14704
  roles: z.ZodOptional<z.ZodArray<z.ZodString>>;
14665
14705
  tenants: z.ZodOptional<z.ZodArray<z.ZodString>>;
14666
14706
  permissions: z.ZodOptional<z.ZodArray<z.ZodString>>;
14707
+ serviceAccount: z.ZodOptional<z.ZodBoolean>;
14667
14708
  userName: z.ZodString;
14668
14709
  }, z.core.$strip>>;
14669
14710
  }, z.core.$strip>;
@@ -14694,6 +14735,7 @@ export declare const UserResponseSchema: z.ZodObject<{
14694
14735
  roles: z.ZodOptional<z.ZodArray<z.ZodString>>;
14695
14736
  tenants: z.ZodOptional<z.ZodArray<z.ZodString>>;
14696
14737
  permissions: z.ZodOptional<z.ZodArray<z.ZodString>>;
14738
+ serviceAccount: z.ZodOptional<z.ZodBoolean>;
14697
14739
  userName: z.ZodString;
14698
14740
  }, z.core.$strip>;
14699
14741