@erp-galoper/main-package 1.0.203 → 1.0.205

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