@erp-galoper/main-package 1.0.202 → 1.0.204
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.
- package/openapi.ts +9 -8
- package/package.json +1 -1
package/openapi.ts
CHANGED
|
@@ -2442,6 +2442,7 @@ export interface paths {
|
|
|
2442
2442
|
* Possible Responses:
|
|
2443
2443
|
* - 400:
|
|
2444
2444
|
* - invalidCountry
|
|
2445
|
+
* - superuserDoesNotExist
|
|
2445
2446
|
* - 201:
|
|
2446
2447
|
* - chartOfAccountCreated
|
|
2447
2448
|
* - 403:
|
|
@@ -12597,21 +12598,21 @@ export interface components {
|
|
|
12597
12598
|
/** Systemsettings */
|
|
12598
12599
|
systemSettings: boolean;
|
|
12599
12600
|
/** Accountclassifications */
|
|
12600
|
-
accountClassifications
|
|
12601
|
+
accountClassifications?: boolean;
|
|
12601
12602
|
/** Inventorysettings */
|
|
12602
|
-
inventorySettings
|
|
12603
|
+
inventorySettings?: boolean;
|
|
12603
12604
|
/** Accountingsettings */
|
|
12604
|
-
accountingSettings
|
|
12605
|
+
accountingSettings?: boolean;
|
|
12605
12606
|
/** Salessettings */
|
|
12606
|
-
salesSettings
|
|
12607
|
+
salesSettings?: boolean;
|
|
12607
12608
|
/** Paymentmethods */
|
|
12608
|
-
paymentMethods
|
|
12609
|
+
paymentMethods?: boolean;
|
|
12609
12610
|
/** Appointmentsettings */
|
|
12610
|
-
appointmentSettings
|
|
12611
|
+
appointmentSettings?: boolean;
|
|
12611
12612
|
/** Primarycurrency */
|
|
12612
12613
|
primaryCurrency: boolean;
|
|
12613
12614
|
/** Defaultunitofmeasures */
|
|
12614
|
-
defaultUnitOfMeasures
|
|
12615
|
+
defaultUnitOfMeasures?: boolean;
|
|
12615
12616
|
};
|
|
12616
12617
|
/** CategoriesInDropdown */
|
|
12617
12618
|
CategoriesInDropdown: {
|
|
@@ -15878,7 +15879,7 @@ export interface components {
|
|
|
15878
15879
|
/**
|
|
15879
15880
|
* Id
|
|
15880
15881
|
* Format: uuid
|
|
15881
|
-
* @example
|
|
15882
|
+
* @example 009effec-176d-4117-b662-7ca63ed60411
|
|
15882
15883
|
*/
|
|
15883
15884
|
id: string;
|
|
15884
15885
|
/**
|
package/package.json
CHANGED