@erp-galoper/types 1.0.356 → 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 +45 -32
- 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
|
|
@@ -37706,12 +37719,12 @@ export interface components {
|
|
|
37706
37719
|
* & offer_and_promotion.startDate less than or equal {date with 00:00:00} and offer_and_promotion.endDate greater than or equal {date with 23:59:59}
|
|
37707
37720
|
* & offer_and_promotion.approval_status equals to approved or not_required
|
|
37708
37721
|
* & offer_and_promotion.status equals to submitted
|
|
37709
|
-
* & offers_and_promotions.promotion_type equals to percentage
|
|
37722
|
+
* & offers_and_promotions.promotion_type equals to percentage or buy_one_get_one or timeSensitiveOffers
|
|
37710
37723
|
* | offers_and_promotions.promotion_type equals to volume_based and quantity equals to {quantity}
|
|
37711
37724
|
* | offers_and_promotions.promotion_type equals to bundle_offers and quantity equals to {quantity} and item equals to {item id} or itemPackage equals to {item package id}
|
|
37712
|
-
*
|
|
37713
|
-
* | offers_and_promotions.appliesOn equals to
|
|
37714
|
-
*
|
|
37725
|
+
* | offers_and_promotions.appliesOn equals to allItems
|
|
37726
|
+
* | offers_and_promotions.appliesOn equals to specificItems and ( item equals to {item id} or itemPackage equals to {item package id} ) or
|
|
37727
|
+
* (brand equals to {item brand id} or category equals to {item category id} or tag in item tags)
|
|
37715
37728
|
*
|
|
37716
37729
|
*
|
|
37717
37730
|
* @default []
|
|
@@ -39751,12 +39764,12 @@ export interface components {
|
|
|
39751
39764
|
* & offer_and_promotion.startDate less than or equal {date with 00:00:00} and offer_and_promotion.endDate greater than or equal {date with 23:59:59}
|
|
39752
39765
|
* & offer_and_promotion.approval_status equals to approved or not_required
|
|
39753
39766
|
* & offer_and_promotion.status equals to submitted
|
|
39754
|
-
* & offers_and_promotions.promotion_type equals to percentage
|
|
39767
|
+
* & offers_and_promotions.promotion_type equals to percentage or buy_one_get_one or timeSensitiveOffers
|
|
39755
39768
|
* | offers_and_promotions.promotion_type equals to volume_based and quantity equals to {quantity}
|
|
39756
39769
|
* | offers_and_promotions.promotion_type equals to bundle_offers and quantity equals to {quantity} and item equals to {item id} or itemPackage equals to {item package id}
|
|
39757
|
-
*
|
|
39758
|
-
* | offers_and_promotions.appliesOn equals to
|
|
39759
|
-
*
|
|
39770
|
+
* | offers_and_promotions.appliesOn equals to allItems
|
|
39771
|
+
* | offers_and_promotions.appliesOn equals to specificItems and ( item equals to {item id} or itemPackage equals to {item package id} ) or
|
|
39772
|
+
* (brand equals to {item brand id} or category equals to {item category id} or tag in item tags)
|
|
39760
39773
|
*
|
|
39761
39774
|
*
|
|
39762
39775
|
* @default []
|
|
@@ -40087,12 +40100,12 @@ export interface components {
|
|
|
40087
40100
|
* & offer_and_promotion.startDate less than or equal {date with 00:00:00} and offer_and_promotion.endDate greater than or equal {date with 23:59:59}
|
|
40088
40101
|
* & offer_and_promotion.approval_status equals to approved or not_required
|
|
40089
40102
|
* & offer_and_promotion.status equals to submitted
|
|
40090
|
-
* & offers_and_promotions.promotion_type equals to percentage
|
|
40103
|
+
* & offers_and_promotions.promotion_type equals to percentage or buy_one_get_one or timeSensitiveOffers
|
|
40091
40104
|
* | offers_and_promotions.promotion_type equals to volume_based and quantity equals to {quantity}
|
|
40092
40105
|
* | offers_and_promotions.promotion_type equals to bundle_offers and quantity equals to {quantity} and item equals to {item id} or itemPackage equals to {item package id}
|
|
40093
|
-
*
|
|
40094
|
-
* | offers_and_promotions.appliesOn equals to
|
|
40095
|
-
*
|
|
40106
|
+
* | offers_and_promotions.appliesOn equals to allItems
|
|
40107
|
+
* | offers_and_promotions.appliesOn equals to specificItems and ( item equals to {item id} or itemPackage equals to {item package id} ) or
|
|
40108
|
+
* (brand equals to {item brand id} or category equals to {item category id} or tag in item tags)
|
|
40096
40109
|
*
|
|
40097
40110
|
*
|
|
40098
40111
|
* @default []
|
|
@@ -41556,12 +41569,12 @@ export interface components {
|
|
|
41556
41569
|
* & offer_and_promotion.startDate less than or equal {date with 00:00:00} and offer_and_promotion.endDate greater than or equal {date with 23:59:59}
|
|
41557
41570
|
* & offer_and_promotion.approval_status equals to approved or not_required
|
|
41558
41571
|
* & offer_and_promotion.status equals to submitted
|
|
41559
|
-
* & offers_and_promotions.promotion_type equals to percentage
|
|
41572
|
+
* & offers_and_promotions.promotion_type equals to percentage or buy_one_get_one or timeSensitiveOffers
|
|
41560
41573
|
* | offers_and_promotions.promotion_type equals to volume_based and quantity equals to {quantity}
|
|
41561
41574
|
* | offers_and_promotions.promotion_type equals to bundle_offers and quantity equals to {quantity} and item equals to {item id} or itemPackage equals to {item package id}
|
|
41562
|
-
*
|
|
41563
|
-
* | offers_and_promotions.appliesOn equals to
|
|
41564
|
-
*
|
|
41575
|
+
* | offers_and_promotions.appliesOn equals to allItems
|
|
41576
|
+
* | offers_and_promotions.appliesOn equals to specificItems and ( item equals to {item id} or itemPackage equals to {item package id} ) or
|
|
41577
|
+
* (brand equals to {item brand id} or category equals to {item category id} or tag in item tags)
|
|
41565
41578
|
*
|
|
41566
41579
|
*
|
|
41567
41580
|
* @default []
|
|
@@ -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 */
|