@erp-galoper/main-package 1.0.201 → 1.0.203
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 +17 -10
- 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:
|
@@ -11902,7 +11903,10 @@ export interface components {
|
|
11902
11903
|
/** Serialnumber */
|
11903
11904
|
serialNumber: string;
|
11904
11905
|
branch: components["schemas"]["BranchSummaryInfo"];
|
11905
|
-
/**
|
11906
|
+
/**
|
11907
|
+
* Date
|
11908
|
+
* Format: date
|
11909
|
+
*/
|
11906
11910
|
date: string;
|
11907
11911
|
/** Reference */
|
11908
11912
|
reference: string | null;
|
@@ -12049,7 +12053,10 @@ export interface components {
|
|
12049
12053
|
/** Serialnumber */
|
12050
12054
|
serialNumber: string;
|
12051
12055
|
branch: components["schemas"]["BranchSummaryInfo"];
|
12052
|
-
/**
|
12056
|
+
/**
|
12057
|
+
* Date
|
12058
|
+
* Format: date
|
12059
|
+
*/
|
12053
12060
|
date: string;
|
12054
12061
|
/** Reference */
|
12055
12062
|
reference: string | null;
|
@@ -12591,21 +12598,21 @@ export interface components {
|
|
12591
12598
|
/** Systemsettings */
|
12592
12599
|
systemSettings: boolean;
|
12593
12600
|
/** Accountclassifications */
|
12594
|
-
accountClassifications
|
12601
|
+
accountClassifications?: boolean;
|
12595
12602
|
/** Inventorysettings */
|
12596
|
-
inventorySettings
|
12603
|
+
inventorySettings?: boolean;
|
12597
12604
|
/** Accountingsettings */
|
12598
|
-
accountingSettings
|
12605
|
+
accountingSettings?: boolean;
|
12599
12606
|
/** Salessettings */
|
12600
|
-
salesSettings
|
12607
|
+
salesSettings?: boolean;
|
12601
12608
|
/** Paymentmethods */
|
12602
|
-
paymentMethods
|
12609
|
+
paymentMethods?: boolean;
|
12603
12610
|
/** Appointmentsettings */
|
12604
|
-
appointmentSettings
|
12611
|
+
appointmentSettings?: boolean;
|
12605
12612
|
/** Primarycurrency */
|
12606
12613
|
primaryCurrency: boolean;
|
12607
12614
|
/** Defaultunitofmeasures */
|
12608
|
-
defaultUnitOfMeasures
|
12615
|
+
defaultUnitOfMeasures?: boolean;
|
12609
12616
|
};
|
12610
12617
|
/** CategoriesInDropdown */
|
12611
12618
|
CategoriesInDropdown: {
|
@@ -15872,7 +15879,7 @@ export interface components {
|
|
15872
15879
|
/**
|
15873
15880
|
* Id
|
15874
15881
|
* Format: uuid
|
15875
|
-
* @example
|
15882
|
+
* @example 230baec9-1975-42b8-8cf6-e9a2fc24c5f6
|
15876
15883
|
*/
|
15877
15884
|
id: string;
|
15878
15885
|
/**
|
package/package.json
CHANGED