@erp-galoper/types 1.0.62 → 1.0.64

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 +12 -15
  2. package/package.json +1 -1
package/openapi.ts CHANGED
@@ -26450,7 +26450,7 @@ export interface components {
26450
26450
  /**
26451
26451
  * Id
26452
26452
  * Format: uuid
26453
- * @example 26ecd220-00cf-4287-a610-23b97f7deac6
26453
+ * @example 8f5c76ec-189d-4e25-a93c-87a3f07c0576
26454
26454
  */
26455
26455
  id: string;
26456
26456
  /**
@@ -29331,11 +29331,6 @@ export interface components {
29331
29331
  /** Name */
29332
29332
  name: string | null;
29333
29333
  };
29334
- /**
29335
- * GetPurchaseHistoryTimeFrame
29336
- * @enum {string}
29337
- */
29338
- GetPurchaseHistoryTimeFrame: "allTime" | "defaultPeriod";
29339
29334
  /**
29340
29335
  * GoodsReceiptNoteSource
29341
29336
  * @enum {string}
@@ -29346,6 +29341,11 @@ export interface components {
29346
29341
  * @enum {string}
29347
29342
  */
29348
29343
  InvoicePostingMethod: "perpetual" | "periodic";
29344
+ /**
29345
+ * PurchaseHistoryTimeFrameEnum
29346
+ * @enum {string}
29347
+ */
29348
+ PurchaseHistoryTimeFrameEnum: "allTime" | "default";
29349
29349
  /** PurchaseSettingsSchema */
29350
29350
  PurchaseSettingsSchema: {
29351
29351
  /** Id */
@@ -29353,7 +29353,7 @@ export interface components {
29353
29353
  /** Allowpaymentbeforegoodsreceived */
29354
29354
  allowPaymentBeforeGoodsReceived: boolean;
29355
29355
  invoicePostingMethod: components["schemas"]["InvoicePostingMethod"];
29356
- purchaseHistoryTimeframe: components["schemas"]["GetPurchaseHistoryTimeFrame"] | null;
29356
+ purchaseHistoryTimeframe: components["schemas"]["PurchaseHistoryTimeFrameEnum"] | null;
29357
29357
  /** Purchasehistoryperiod */
29358
29358
  purchaseHistoryPeriod?: number | null;
29359
29359
  goodsGoodsReceiptNoteSource: components["schemas"]["GoodsReceiptNoteSource"];
@@ -29364,7 +29364,7 @@ export interface components {
29364
29364
  allowPaymentBeforeGoodsReceived: boolean;
29365
29365
  invoicePostingMethod: components["schemas"]["InvoicePostingMethod"];
29366
29366
  /** @default all_time */
29367
- purchaseHistoryTimeframe: components["schemas"]["PurchaseHistoryTimeFrame"] | null;
29367
+ purchaseHistoryTimeframe: components["schemas"]["PurchaseHistoryTimeFrameEnum"] | null;
29368
29368
  /**
29369
29369
  * Purchasehistoryperiod
29370
29370
  * @description Indicate the number of historical years when using the default period.
@@ -29372,18 +29372,13 @@ export interface components {
29372
29372
  purchaseHistoryPeriod?: number | null;
29373
29373
  goodsGoodsReceiptNoteSource: components["schemas"]["GoodsReceiptNoteSource"];
29374
29374
  };
29375
- /**
29376
- * PurchaseHistoryTimeFrame
29377
- * @enum {string}
29378
- */
29379
- PurchaseHistoryTimeFrame: "allTime" | "defaultPeriod";
29380
29375
  /** UpdatePurchaseSettingsSchema */
29381
29376
  UpdatePurchaseSettingsSchema: {
29382
29377
  /** Allowpaymentbeforegoodsreceived */
29383
29378
  allowPaymentBeforeGoodsReceived?: boolean | null;
29384
29379
  invoicePostingMethod?: components["schemas"]["InvoicePostingMethod"] | null;
29385
- /** @default all_time */
29386
- purchaseHistoryTimeframe: components["schemas"]["PurchaseHistoryTimeFrame"] | null;
29380
+ /** @default allTime */
29381
+ purchaseHistoryTimeframe: components["schemas"]["PurchaseHistoryTimeFrameEnum"] | null;
29387
29382
  /**
29388
29383
  * Purchasehistoryperiod
29389
29384
  * @description Indicate the number of historical years when using the default period.
@@ -30778,6 +30773,8 @@ export interface components {
30778
30773
  id: number;
30779
30774
  /** Name */
30780
30775
  name: string;
30776
+ /** Type */
30777
+ type: components["schemas"]["TaxTypes"][];
30781
30778
  };
30782
30779
  /** CreatePurchaseQuotationItemsSchema */
30783
30780
  CreatePurchaseQuotationItemsSchema: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@erp-galoper/types",
3
- "version": "1.0.62",
3
+ "version": "1.0.64",
4
4
  "main": "openapi.ts",
5
5
  "types": "openapi.ts",
6
6
  "files": ["openapi.ts"],