@erp-galoper/main-package 1.0.205 → 1.0.206

Sign up to get free protection for your applications and to get access to all the features.
Files changed (2) hide show
  1. package/openapi.ts +22 -10
  2. package/package.json +1 -1
package/openapi.ts CHANGED
@@ -881,6 +881,7 @@ export interface paths {
881
881
  * - codeConflict
882
882
  * - cityIdDoesNotExist
883
883
  * - dateFoundedShouldBeLessThanDateOfToday
884
+ * - cityMismatchWithCountry
884
885
  * - 201:
885
886
  * - companyCreated
886
887
  * - 403:
@@ -907,6 +908,7 @@ export interface paths {
907
908
  * - imageDoesNotExist
908
909
  * - dateFoundedShouldBeLessThanDateOfToday
909
910
  * - vatDateShouldBeBetweenDateFoundedAndDateOfToday
911
+ * - cityMismatchWithCountry
910
912
  * - 200:
911
913
  * - companyUpdated
912
914
  * - 403:
@@ -967,6 +969,7 @@ export interface paths {
967
969
  * - 400:
968
970
  * - codeConflict
969
971
  * - cityIdDoesNotExist
972
+ * - cityMismatchWithCountry
970
973
  * - 403:
971
974
  * - permissionDenied
972
975
  * - 404:
@@ -1019,6 +1022,7 @@ export interface paths {
1019
1022
  * - cityIdDoesNotExist
1020
1023
  * - cantChangeBranchCodeWhenTransactionsExist
1021
1024
  * - branchDateShouldBeBetweenDateFoundedAndDateOfToday
1025
+ * - cityMismatchWithCountry
1022
1026
  * - 403:
1023
1027
  * - permissionDenied
1024
1028
  * - 404:
@@ -1120,6 +1124,7 @@ export interface paths {
1120
1124
  * - codeConflict
1121
1125
  * - cityIdDoesNotExist
1122
1126
  * - branchDateShouldBeBetweenDateFoundedAndDateOfToday
1127
+ * - cityMismatchWithCountry
1123
1128
  * - 500:
1124
1129
  * - internalServerError
1125
1130
  */
@@ -2437,6 +2442,7 @@ export interface paths {
2437
2442
  * Possible Responses:
2438
2443
  * - 400:
2439
2444
  * - invalidCountry
2445
+ * - superuserDoesNotExist
2440
2446
  * - 201:
2441
2447
  * - chartOfAccountCreated
2442
2448
  * - 403:
@@ -11897,7 +11903,10 @@ export interface components {
11897
11903
  /** Serialnumber */
11898
11904
  serialNumber: string;
11899
11905
  branch: components["schemas"]["BranchSummaryInfo"];
11900
- /** Date */
11906
+ /**
11907
+ * Date
11908
+ * Format: date
11909
+ */
11901
11910
  date: string;
11902
11911
  /** Reference */
11903
11912
  reference: string | null;
@@ -12044,7 +12053,10 @@ export interface components {
12044
12053
  /** Serialnumber */
12045
12054
  serialNumber: string;
12046
12055
  branch: components["schemas"]["BranchSummaryInfo"];
12047
- /** Date */
12056
+ /**
12057
+ * Date
12058
+ * Format: date
12059
+ */
12048
12060
  date: string;
12049
12061
  /** Reference */
12050
12062
  reference: string | null;
@@ -12586,21 +12598,21 @@ export interface components {
12586
12598
  /** Systemsettings */
12587
12599
  systemSettings: boolean;
12588
12600
  /** Accountclassifications */
12589
- accountClassifications: boolean;
12601
+ accountClassifications?: boolean;
12590
12602
  /** Inventorysettings */
12591
- inventorySettings: boolean;
12603
+ inventorySettings?: boolean;
12592
12604
  /** Accountingsettings */
12593
- accountingSettings: boolean;
12605
+ accountingSettings?: boolean;
12594
12606
  /** Salessettings */
12595
- salesSettings: boolean;
12607
+ salesSettings?: boolean;
12596
12608
  /** Paymentmethods */
12597
- paymentMethods: boolean;
12609
+ paymentMethods?: boolean;
12598
12610
  /** Appointmentsettings */
12599
- appointmentSettings: boolean;
12611
+ appointmentSettings?: boolean;
12600
12612
  /** Primarycurrency */
12601
12613
  primaryCurrency: boolean;
12602
12614
  /** Defaultunitofmeasures */
12603
- defaultUnitOfMeasures: boolean;
12615
+ defaultUnitOfMeasures?: boolean;
12604
12616
  };
12605
12617
  /** CategoriesInDropdown */
12606
12618
  CategoriesInDropdown: {
@@ -15867,7 +15879,7 @@ export interface components {
15867
15879
  /**
15868
15880
  * Id
15869
15881
  * Format: uuid
15870
- * @example 5b38fe6e-29f0-4ede-9c5c-967f7073e244
15882
+ * @example 10608b2f-e208-4436-afc4-30386addff1b
15871
15883
  */
15872
15884
  id: string;
15873
15885
  /**
package/package.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "name": "@erp-galoper/main-package",
3
- "version": "1.0.205",
3
+ "version": "1.0.206",
4
4
  "main": "openapi.ts"
5
5
  }