@erp-galoper/types 1.0.63 → 1.0.65
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 +11 -16
- package/package.json +1 -1
package/openapi.ts
CHANGED
|
@@ -22585,7 +22585,7 @@ export interface components {
|
|
|
22585
22585
|
* FileType
|
|
22586
22586
|
* @enum {string}
|
|
22587
22587
|
*/
|
|
22588
|
-
FileType: "item" | "company" | "user" | "supplier" | "customer" | "
|
|
22588
|
+
FileType: "item" | "company" | "user" | "supplier" | "customer" | "itemCategory" | "journalVoucher" | "supplierPriceList" | "requisition" | "purchaseQuotation" | "purchaseOrder" | "purchaseReturnOrder" | "advancePayment" | "requestForQuotation" | "purchaseInvoice" | "purchaseReturnInvoice" | "salesPriceList" | "closingCommission" | "commissionStructure" | "commissionPayout" | "offerAndPromotion" | "refundVoucher" | "paymentVoucher" | "purchaseCreditNote" | "downPayment" | "receiptVoucher" | "salesPerson" | "salesQuotation" | "salesOrder" | "salesReturnOrder" | "salesInvoice" | "salesReturnInvoice" | "salesRefundVoucher" | "returnSalesOrder" | "returnSalesInvoice" | "goodsReceiptNote" | "goodsDeliveryNote" | "salesCreditNote" | "returnablePackageReconciliation" | "salesReturnPackage";
|
|
22589
22589
|
/** currencyCodeOut */
|
|
22590
22590
|
currencyCodeOut: {
|
|
22591
22591
|
/** Currencycode */
|
|
@@ -26450,7 +26450,7 @@ export interface components {
|
|
|
26450
26450
|
/**
|
|
26451
26451
|
* Id
|
|
26452
26452
|
* Format: uuid
|
|
26453
|
-
* @example
|
|
26453
|
+
* @example dc049076-3a5b-4c9f-8f31-7a6c772fb449
|
|
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"]["
|
|
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"]["
|
|
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
|
|
29386
|
-
purchaseHistoryTimeframe: components["schemas"]["
|
|
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.
|