@socotra/ec-react-schemas 2.30.0-next.0 → 2.30.0-next.2

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
@@ -3342,6 +3342,10 @@ export declare const dataModelSchema: z.ZodObject<{
3342
3342
  aggregate: "aggregate";
3343
3343
  }>;
3344
3344
  costBearing: z.ZodBoolean;
3345
+ displayHints: z.ZodOptional<z.ZodObject<{
3346
+ displayName: z.ZodString;
3347
+ displayOrder: z.ZodNumber;
3348
+ }, z.core.$strip>>;
3345
3349
  }, z.core.$strip>>>;
3346
3350
  reversalTypes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
3347
3351
  creditType: z.ZodOptional<z.ZodEnum<{
@@ -3963,6 +3967,7 @@ export declare const dataModelSchema: z.ZodObject<{
3963
3967
  defaultShortfallTolerancePlan: z.ZodOptional<z.ZodString>;
3964
3968
  defaultSearchable: z.ZodOptional<z.ZodBoolean>;
3965
3969
  defaultInvoiceDocument: z.ZodOptional<z.ZodString>;
3970
+ defaultOperationsWorkbenchUIConfig: z.ZodOptional<z.ZodString>;
3966
3971
  billingPlans: z.ZodOptional<z.ZodAny>;
3967
3972
  tables: z.ZodOptional<z.ZodAny>;
3968
3973
  secrets: z.ZodOptional<z.ZodAny>;
@@ -14191,6 +14196,10 @@ export declare const transactionTypeSchema: z.ZodObject<{
14191
14196
  aggregate: "aggregate";
14192
14197
  }>;
14193
14198
  costBearing: z.ZodBoolean;
14199
+ displayHints: z.ZodOptional<z.ZodObject<{
14200
+ displayName: z.ZodString;
14201
+ displayOrder: z.ZodNumber;
14202
+ }, z.core.$strip>>;
14194
14203
  }, z.core.$strip>;
14195
14204
 
14196
14205
  export declare const transactionTypesRecordsSchema: z.ZodRecord<z.ZodString, z.ZodObject<{
@@ -14204,6 +14213,10 @@ export declare const transactionTypesRecordsSchema: z.ZodRecord<z.ZodString, z.Z
14204
14213
  aggregate: "aggregate";
14205
14214
  }>;
14206
14215
  costBearing: z.ZodBoolean;
14216
+ displayHints: z.ZodOptional<z.ZodObject<{
14217
+ displayName: z.ZodString;
14218
+ displayOrder: z.ZodNumber;
14219
+ }, z.core.$strip>>;
14207
14220
  }, z.core.$strip>>;
14208
14221
 
14209
14222
  export declare type TransactionUnderwritingFlagsResponse = z.infer<typeof TransactionUnderwritingFlagsResponseSchema>;
package/dist/index.es.js CHANGED
@@ -20232,7 +20232,11 @@ const h_ = [
20232
20232
  "aggregate"
20233
20233
  ]), _L = a({
20234
20234
  category: $L,
20235
- costBearing: y()
20235
+ costBearing: y(),
20236
+ displayHints: a({
20237
+ displayName: e(),
20238
+ displayOrder: b()
20239
+ }).optional()
20236
20240
  }), LL = p(
20237
20241
  e(),
20238
20242
  _L
@@ -20285,6 +20289,7 @@ const h_ = [
20285
20289
  defaultShortfallTolerancePlan: e().optional(),
20286
20290
  defaultSearchable: y().optional(),
20287
20291
  defaultInvoiceDocument: e().optional(),
20292
+ defaultOperationsWorkbenchUIConfig: e().optional(),
20288
20293
  // TODO
20289
20294
  billingPlans: Z().optional(),
20290
20295
  tables: Z().optional(),