@erp-galoper/main-package 1.0.20 → 1.0.22

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 +41 -2
  2. package/package.json +1 -1
package/openapi.ts CHANGED
@@ -268,7 +268,7 @@ export interface paths {
268
268
  * Possible Responses:
269
269
  * - 400: invalidParameters
270
270
  * - Invalid parameters
271
- * - 200: branchCreated
271
+ * - 200: branchUpdated
272
272
  * - Branch created successfully
273
273
  * - 403: forbidden
274
274
  * - "You do not have permission to perform this action"
@@ -600,8 +600,29 @@ export interface components {
600
600
  address: string;
601
601
  [key: string]: unknown;
602
602
  };
603
+ /** RecordUserSchema */
604
+ RecordUserSchema: {
605
+ /** Id */
606
+ id: number;
607
+ /** Username */
608
+ username: string;
609
+ /** Firstname */
610
+ firstName: string;
611
+ /** Lastname */
612
+ lastName: string;
613
+ [key: string]: unknown;
614
+ };
603
615
  /** RetrieveWarehouse */
604
616
  RetrieveWarehouse: {
617
+ /**
618
+ * Datecreated
619
+ * Format: date-time
620
+ */
621
+ dateCreated: string;
622
+ /** Datemodified */
623
+ dateModified?: string | null;
624
+ createdBy: components["schemas"]["RecordUserSchema"];
625
+ modifiedBy?: components["schemas"]["RecordUserSchema"] | null;
605
626
  /** Id */
606
627
  id: number;
607
628
  /** Name */
@@ -634,6 +655,15 @@ export interface components {
634
655
  };
635
656
  /** RetrieveCompany */
636
657
  RetrieveCompany: {
658
+ /**
659
+ * Datecreated
660
+ * Format: date-time
661
+ */
662
+ dateCreated: string;
663
+ /** Datemodified */
664
+ dateModified?: string | null;
665
+ createdBy: components["schemas"]["RecordUserSchema"];
666
+ modifiedBy?: components["schemas"]["RecordUserSchema"] | null;
637
667
  /** Id */
638
668
  id: number;
639
669
  /** Name */
@@ -805,6 +835,15 @@ export interface components {
805
835
  };
806
836
  /** RetrieveBranch */
807
837
  RetrieveBranch: {
838
+ /**
839
+ * Datecreated
840
+ * Format: date-time
841
+ */
842
+ dateCreated: string;
843
+ /** Datemodified */
844
+ dateModified?: string | null;
845
+ createdBy: components["schemas"]["RecordUserSchema"];
846
+ modifiedBy?: components["schemas"]["RecordUserSchema"] | null;
808
847
  /** Id */
809
848
  id: number;
810
849
  /** Name */
@@ -1832,7 +1871,7 @@ export interface operations {
1832
1871
  * Possible Responses:
1833
1872
  * - 400: invalidParameters
1834
1873
  * - Invalid parameters
1835
- * - 200: branchCreated
1874
+ * - 200: branchUpdated
1836
1875
  * - Branch created successfully
1837
1876
  * - 403: forbidden
1838
1877
  * - "You do not have permission to perform this action"
package/package.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "name": "@erp-galoper/main-package",
3
- "version": "1.0.20",
3
+ "version": "1.0.22",
4
4
  "main": "openapi.ts"
5
5
  }