@erp-galoper/types 1.0.14 → 1.0.16

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 +14 -1
  2. package/package.json +1 -1
package/openapi.ts CHANGED
@@ -26115,7 +26115,7 @@ export interface components {
26115
26115
  /**
26116
26116
  * Id
26117
26117
  * Format: uuid
26118
- * @example 05b4be6c-a153-49ef-b8aa-b74e22e606e1
26118
+ * @example 75377981-dd2e-4935-9098-26e7d53a351a
26119
26119
  */
26120
26120
  id: string;
26121
26121
  /**
@@ -40654,6 +40654,8 @@ export interface components {
40654
40654
  secondaryTotal: string;
40655
40655
  /** Companytotal */
40656
40656
  companyTotal: string;
40657
+ /** Candelete */
40658
+ canDelete: boolean;
40657
40659
  /**
40658
40660
  * Items
40659
40661
  * @default []
@@ -40806,6 +40808,8 @@ export interface components {
40806
40808
  secondaryTotal: string;
40807
40809
  /** Companytotal */
40808
40810
  companyTotal: string;
40811
+ /** Candelete */
40812
+ canDelete: boolean;
40809
40813
  };
40810
40814
  /** SalesReturnInvoiceItemTotalCalculated */
40811
40815
  SalesReturnInvoiceItemTotalCalculated: {
@@ -76237,6 +76241,15 @@ export interface operations {
76237
76241
  };
76238
76242
  content?: never;
76239
76243
  };
76244
+ /** @description Bad Request */
76245
+ 400: {
76246
+ headers: {
76247
+ [name: string]: unknown;
76248
+ };
76249
+ content: {
76250
+ "application/json": components["schemas"]["ErrorMessages"];
76251
+ };
76252
+ };
76240
76253
  /** @description Forbidden */
76241
76254
  403: {
76242
76255
  headers: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@erp-galoper/types",
3
- "version": "1.0.14",
3
+ "version": "1.0.16",
4
4
  "main": "openapi.ts",
5
5
  "types": "openapi.ts",
6
6
  "files": ["openapi.ts"],