@erp-galoper/types 1.0.322 → 1.0.324

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 +29 -20
  2. package/package.json +1 -1
package/openapi.ts CHANGED
@@ -1134,6 +1134,7 @@ export interface paths {
1134
1134
  * - permissionDenied
1135
1135
  * -400:
1136
1136
  * - galoperSettingsDoesNotExist
1137
+ * - userDoesNotExist
1137
1138
  */
1138
1139
  get: operations["company_views_company_setup_steps"];
1139
1140
  put?: never;
@@ -23583,19 +23584,8 @@ export interface components {
23583
23584
  /** Default */
23584
23585
  default: boolean;
23585
23586
  };
23586
- /** UnitOfMeasurement */
23587
- UnitOfMeasurement: {
23588
- /** Name */
23589
- name: string;
23590
- };
23591
- /** ListUnitOfMeasures */
23592
- ListUnitOfMeasures: {
23593
- info: components["schemas"]["PageInfoSchema"];
23594
- /** Results */
23595
- results: components["schemas"]["RetrieveUnitOfMeasurmentInList"][];
23596
- };
23597
- /** RetrieveUnitOfMeasurmentInList */
23598
- RetrieveUnitOfMeasurmentInList: {
23587
+ /** RetrieveUnitOfMeasurment */
23588
+ RetrieveUnitOfMeasurment: {
23599
23589
  /**
23600
23590
  * Datecreated
23601
23591
  * Format: date-time
@@ -23611,11 +23601,28 @@ export interface components {
23611
23601
  name: string;
23612
23602
  /** Default */
23613
23603
  default: boolean;
23614
- /** Candelete */
23615
- canDelete: boolean;
23616
23604
  };
23617
- /** RetrieveUnitOfMeasurment */
23618
- RetrieveUnitOfMeasurment: {
23605
+ /** UnitOfMeasureResponseSchema */
23606
+ UnitOfMeasureResponseSchema: {
23607
+ /** Code */
23608
+ code: string;
23609
+ /** Message */
23610
+ message: string;
23611
+ data: components["schemas"]["RetrieveUnitOfMeasurment"];
23612
+ };
23613
+ /** UnitOfMeasurement */
23614
+ UnitOfMeasurement: {
23615
+ /** Name */
23616
+ name: string;
23617
+ };
23618
+ /** ListUnitOfMeasures */
23619
+ ListUnitOfMeasures: {
23620
+ info: components["schemas"]["PageInfoSchema"];
23621
+ /** Results */
23622
+ results: components["schemas"]["RetrieveUnitOfMeasurmentInList"][];
23623
+ };
23624
+ /** RetrieveUnitOfMeasurmentInList */
23625
+ RetrieveUnitOfMeasurmentInList: {
23619
23626
  /**
23620
23627
  * Datecreated
23621
23628
  * Format: date-time
@@ -23631,6 +23638,8 @@ export interface components {
23631
23638
  name: string;
23632
23639
  /** Default */
23633
23640
  default: boolean;
23641
+ /** Candelete */
23642
+ canDelete: boolean;
23634
23643
  };
23635
23644
  /** CreateTagSchema */
23636
23645
  CreateTagSchema: {
@@ -26661,7 +26670,7 @@ export interface components {
26661
26670
  /**
26662
26671
  * Id
26663
26672
  * Format: uuid
26664
- * @example 46c9d0f2-918d-4061-9da2-5f1b525075f9
26673
+ * @example aa203e7a-3375-4643-bb45-721dc66b8f56
26665
26674
  */
26666
26675
  id: string;
26667
26676
  /**
@@ -51069,7 +51078,7 @@ export interface operations {
51069
51078
  [name: string]: unknown;
51070
51079
  };
51071
51080
  content: {
51072
- "application/json": components["schemas"]["MessageResponse"];
51081
+ "application/json": components["schemas"]["UnitOfMeasureResponseSchema"];
51073
51082
  };
51074
51083
  };
51075
51084
  /** @description Bad Request */
@@ -51236,7 +51245,7 @@ export interface operations {
51236
51245
  [name: string]: unknown;
51237
51246
  };
51238
51247
  content: {
51239
- "application/json": components["schemas"]["MessageResponse"];
51248
+ "application/json": components["schemas"]["UnitOfMeasureResponseSchema"];
51240
51249
  };
51241
51250
  };
51242
51251
  /** @description Bad Request */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@erp-galoper/types",
3
- "version": "1.0.322",
3
+ "version": "1.0.324",
4
4
  "main": "openapi.ts",
5
5
  "types": "openapi.ts",
6
6
  "files": ["openapi.ts"],