@erp-galoper/types 1.0.1048 → 1.0.1050

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.
Files changed (2) hide show
  1. package/openapi.ts +7 -8
  2. 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}
@@ -33089,7 +33091,6 @@ export interface components {
33089
33091
  id: number;
33090
33092
  /** Allowpaymentbeforegoodsreceived */
33091
33093
  allowPaymentBeforeGoodsReceived: boolean;
33092
- invoicePostingMethod: components["schemas"]["InvoicePostingMethod"];
33093
33094
  purchaseHistoryTimeframe: components["schemas"]["PurchaseHistoryTimeFrameEnum"] | null;
33094
33095
  /** Purchasehistoryperiod */
33095
33096
  purchaseHistoryPeriod?: number | null;
@@ -33099,7 +33100,6 @@ export interface components {
33099
33100
  CreatePurchaseSettingsSchema: {
33100
33101
  /** Allowpaymentbeforegoodsreceived */
33101
33102
  allowPaymentBeforeGoodsReceived: boolean;
33102
- invoicePostingMethod: components["schemas"]["InvoicePostingMethod"];
33103
33103
  /** @default all_time */
33104
33104
  purchaseHistoryTimeframe: components["schemas"]["PurchaseHistoryTimeFrameEnum"] | null;
33105
33105
  /**
@@ -33114,7 +33114,6 @@ export interface components {
33114
33114
  UpdatePurchaseSettingsSchema: {
33115
33115
  /** Allowpaymentbeforegoodsreceived */
33116
33116
  allowPaymentBeforeGoodsReceived?: boolean | null;
33117
- invoicePostingMethod?: components["schemas"]["InvoicePostingMethod"] | null;
33118
33117
  /** @default allTime */
33119
33118
  purchaseHistoryTimeframe: components["schemas"]["PurchaseHistoryTimeFrameEnum"] | null;
33120
33119
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@erp-galoper/types",
3
- "version": "1.0.1048",
3
+ "version": "1.0.1050",
4
4
  "main": "openapi.ts",
5
5
  "types": "openapi.ts",
6
6
  "files": ["openapi.ts"],