@erp-galoper/types 1.0.1048 → 1.0.1049
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 +7 -5
- package/package.json +1 -1
package/openapi.ts
CHANGED
|
@@ -25474,6 +25474,11 @@ export interface components {
|
|
|
25474
25474
|
* @enum {string}
|
|
25475
25475
|
*/
|
|
25476
25476
|
DateFormatEnum: "dd/mm/yyyy" | "mm/dd/yyyy" | "yyyy/mm/dd";
|
|
25477
|
+
/**
|
|
25478
|
+
* InvoicePostingMethod
|
|
25479
|
+
* @enum {string}
|
|
25480
|
+
*/
|
|
25481
|
+
InvoicePostingMethod: "perpetual" | "periodic";
|
|
25477
25482
|
/** RetrieveSystemSetting */
|
|
25478
25483
|
RetrieveSystemSetting: {
|
|
25479
25484
|
/**
|
|
@@ -25518,6 +25523,7 @@ export interface components {
|
|
|
25518
25523
|
/** @description visible when useSecondaryCurrency is True */
|
|
25519
25524
|
secondaryCurrency: components["schemas"]["CurrencySummaryInfo"] | null;
|
|
25520
25525
|
dateFormat: components["schemas"]["DateFormatEnum"];
|
|
25526
|
+
invoicePostingMethod: components["schemas"]["InvoicePostingMethod"];
|
|
25521
25527
|
};
|
|
25522
25528
|
/**
|
|
25523
25529
|
* RoundingTypes
|
|
@@ -25559,6 +25565,7 @@ export interface components {
|
|
|
25559
25565
|
*/
|
|
25560
25566
|
secondaryCurrency?: number;
|
|
25561
25567
|
dateFormat: components["schemas"]["DateFormatEnum"];
|
|
25568
|
+
invoicePostingMethod?: components["schemas"]["InvoicePostingMethod"];
|
|
25562
25569
|
};
|
|
25563
25570
|
/** RegionSchema */
|
|
25564
25571
|
RegionSchema: {
|
|
@@ -33073,11 +33080,6 @@ export interface components {
|
|
|
33073
33080
|
* @enum {string}
|
|
33074
33081
|
*/
|
|
33075
33082
|
GoodsReceiptNoteSource: "purchase_order" | "purchase_invoice";
|
|
33076
|
-
/**
|
|
33077
|
-
* InvoicePostingMethod
|
|
33078
|
-
* @enum {string}
|
|
33079
|
-
*/
|
|
33080
|
-
InvoicePostingMethod: "perpetual" | "periodic";
|
|
33081
33083
|
/**
|
|
33082
33084
|
* PurchaseHistoryTimeFrameEnum
|
|
33083
33085
|
* @enum {string}
|