@erp-galoper/types 1.0.357 → 1.0.358
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 +29 -16
- package/package.json +1 -1
package/openapi.ts
CHANGED
|
@@ -26740,7 +26740,7 @@ export interface components {
|
|
|
26740
26740
|
/**
|
|
26741
26741
|
* Id
|
|
26742
26742
|
* Format: uuid
|
|
26743
|
-
* @example
|
|
26743
|
+
* @example f0bc6f01-91ea-4a54-b6af-d1737524d498
|
|
26744
26744
|
*/
|
|
26745
26745
|
id: string;
|
|
26746
26746
|
/**
|
|
@@ -29260,18 +29260,13 @@ export interface components {
|
|
|
29260
29260
|
taxPayableAccount?: components["schemas"]["ChartOfAccountInfoSchema"] | null;
|
|
29261
29261
|
deferredSales: components["schemas"]["ChartOfAccountInfoSchema"] | null;
|
|
29262
29262
|
};
|
|
29263
|
-
/**
|
|
29264
|
-
|
|
29265
|
-
/**
|
|
29266
|
-
|
|
29267
|
-
/**
|
|
29268
|
-
|
|
29269
|
-
|
|
29270
|
-
positiveEarningAccount: number;
|
|
29271
|
-
/** Negativeearningaccount */
|
|
29272
|
-
negativeEarningAccount: number;
|
|
29273
|
-
/** Assignuserstopaymentaccounts */
|
|
29274
|
-
assignUsersToPaymentAccounts: boolean;
|
|
29263
|
+
/** AccountingSettingResponseSchema */
|
|
29264
|
+
AccountingSettingResponseSchema: {
|
|
29265
|
+
/** Code */
|
|
29266
|
+
code: string;
|
|
29267
|
+
/** Message */
|
|
29268
|
+
message: string;
|
|
29269
|
+
data: components["schemas"]["RetrieveAccountingSetting"];
|
|
29275
29270
|
};
|
|
29276
29271
|
/** RetrieveAccountingSetting */
|
|
29277
29272
|
RetrieveAccountingSetting: {
|
|
@@ -29294,6 +29289,22 @@ export interface components {
|
|
|
29294
29289
|
assignUsersToPaymentAccounts: boolean;
|
|
29295
29290
|
positiveEarningAccount: components["schemas"]["ChartOfAccountInfoSchema"];
|
|
29296
29291
|
negativeEarningAccount: components["schemas"]["ChartOfAccountInfoSchema"];
|
|
29292
|
+
cumulativeEarningAccount: components["schemas"]["ChartOfAccountInfoSchema"] | null;
|
|
29293
|
+
};
|
|
29294
|
+
/** CreateAccountingSetting */
|
|
29295
|
+
CreateAccountingSetting: {
|
|
29296
|
+
/** Displaycustomersinjournalvoucher */
|
|
29297
|
+
displayCustomersInJournalVoucher: boolean;
|
|
29298
|
+
/** Displaysuppliersinjournalvoucher */
|
|
29299
|
+
displaySuppliersInJournalVoucher: boolean;
|
|
29300
|
+
/** Positiveearningaccount */
|
|
29301
|
+
positiveEarningAccount: number;
|
|
29302
|
+
/** Negativeearningaccount */
|
|
29303
|
+
negativeEarningAccount: number;
|
|
29304
|
+
/** Assignuserstopaymentaccounts */
|
|
29305
|
+
assignUsersToPaymentAccounts: boolean;
|
|
29306
|
+
/** Cumulativeearningaccount */
|
|
29307
|
+
cumulativeEarningAccount: number;
|
|
29297
29308
|
};
|
|
29298
29309
|
/** UpdateAccountingSetting */
|
|
29299
29310
|
UpdateAccountingSetting: {
|
|
@@ -29307,6 +29318,8 @@ export interface components {
|
|
|
29307
29318
|
positiveEarningAccount?: number | null;
|
|
29308
29319
|
/** Negativeearningaccount */
|
|
29309
29320
|
negativeEarningAccount?: number | null;
|
|
29321
|
+
/** Cumulativeearningaccount */
|
|
29322
|
+
cumulativeEarningAccount: number;
|
|
29310
29323
|
};
|
|
29311
29324
|
/**
|
|
29312
29325
|
* AccountClassificationType
|
|
@@ -60709,7 +60722,7 @@ export interface operations {
|
|
|
60709
60722
|
[name: string]: unknown;
|
|
60710
60723
|
};
|
|
60711
60724
|
content: {
|
|
60712
|
-
"application/json": components["schemas"]["
|
|
60725
|
+
"application/json": components["schemas"]["AccountingSettingResponseSchema"];
|
|
60713
60726
|
};
|
|
60714
60727
|
};
|
|
60715
60728
|
/** @description Bad Request */
|
|
@@ -60769,7 +60782,7 @@ export interface operations {
|
|
|
60769
60782
|
[name: string]: unknown;
|
|
60770
60783
|
};
|
|
60771
60784
|
content: {
|
|
60772
|
-
"application/json": components["schemas"]["
|
|
60785
|
+
"application/json": components["schemas"]["AccountingSettingResponseSchema"];
|
|
60773
60786
|
};
|
|
60774
60787
|
};
|
|
60775
60788
|
/** @description Bad Request */
|
|
@@ -60778,7 +60791,7 @@ export interface operations {
|
|
|
60778
60791
|
[name: string]: unknown;
|
|
60779
60792
|
};
|
|
60780
60793
|
content: {
|
|
60781
|
-
"application/json": components["schemas"]["
|
|
60794
|
+
"application/json": components["schemas"]["ErrorMessages"];
|
|
60782
60795
|
};
|
|
60783
60796
|
};
|
|
60784
60797
|
/** @description Forbidden */
|