@erp-galoper/types 1.0.950 → 1.0.952

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.
Files changed (2) hide show
  1. package/openapi.ts +12 -3
  2. package/package.json +1 -1
package/openapi.ts CHANGED
@@ -28936,7 +28936,7 @@ export interface components {
28936
28936
  */
28937
28937
  path: string;
28938
28938
  /** Value */
28939
- value?: string | null;
28939
+ value: string;
28940
28940
  operator: components["schemas"]["Operator"];
28941
28941
  type: components["schemas"]["FieldTypes"];
28942
28942
  };
@@ -28957,7 +28957,7 @@ export interface components {
28957
28957
  /** Path */
28958
28958
  path: string;
28959
28959
  /** Value */
28960
- value?: string | null;
28960
+ value: string;
28961
28961
  operator: components["schemas"]["Operator"];
28962
28962
  };
28963
28963
  /** UpdateApprovalCondition */
@@ -28965,7 +28965,7 @@ export interface components {
28965
28965
  /** Path */
28966
28966
  path: string;
28967
28967
  /** Value */
28968
- value?: string | null;
28968
+ value: string;
28969
28969
  operator: components["schemas"]["Operator"] | null;
28970
28970
  type: components["schemas"]["FieldTypes"];
28971
28971
  };
@@ -62605,6 +62605,15 @@ export interface operations {
62605
62605
  "application/json": components["schemas"]["ErrorMessages"];
62606
62606
  };
62607
62607
  };
62608
+ /** @description Forbidden */
62609
+ 403: {
62610
+ headers: {
62611
+ [name: string]: unknown;
62612
+ };
62613
+ content: {
62614
+ "application/json": components["schemas"]["MessageWithCode"];
62615
+ };
62616
+ };
62608
62617
  /** @description Not Found */
62609
62618
  404: {
62610
62619
  headers: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@erp-galoper/types",
3
- "version": "1.0.950",
3
+ "version": "1.0.952",
4
4
  "main": "openapi.ts",
5
5
  "types": "openapi.ts",
6
6
  "files": ["openapi.ts"],