@erp-galoper/types 1.0.1822 → 1.0.1823
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 +5 -5
- package/package.json +1 -1
package/openapi.ts
CHANGED
|
@@ -39931,7 +39931,7 @@ export interface components {
|
|
|
39931
39931
|
* PurchaseHistoryTimeFrameEnum
|
|
39932
39932
|
* @enum {string}
|
|
39933
39933
|
*/
|
|
39934
|
-
PurchaseHistoryTimeFrameEnum: "
|
|
39934
|
+
PurchaseHistoryTimeFrameEnum: "all" | "custom";
|
|
39935
39935
|
/** PurchaseSettingsSchema */
|
|
39936
39936
|
PurchaseSettingsSchema: {
|
|
39937
39937
|
/** Id */
|
|
@@ -39949,11 +39949,11 @@ export interface components {
|
|
|
39949
39949
|
CreatePurchaseSettingsSchema: {
|
|
39950
39950
|
/** Allowpaymentbeforegoodsreceived */
|
|
39951
39951
|
allowPaymentBeforeGoodsReceived: boolean;
|
|
39952
|
-
/** @default
|
|
39952
|
+
/** @default custom */
|
|
39953
39953
|
purchaseHistoryTimeframe: components["schemas"]["PurchaseHistoryTimeFrameEnum"] | null;
|
|
39954
39954
|
/**
|
|
39955
39955
|
* Purchasehistoryperiod
|
|
39956
|
-
* @description Indicate the number of historical
|
|
39956
|
+
* @description Indicate the number of historical months when using the custom period.
|
|
39957
39957
|
*/
|
|
39958
39958
|
purchaseHistoryPeriod?: number | null;
|
|
39959
39959
|
/** @description when stock update trigger in system settings is invoice, this field must be purchaseInvoice */
|
|
@@ -39965,11 +39965,11 @@ export interface components {
|
|
|
39965
39965
|
UpdatePurchaseSettingsSchema: {
|
|
39966
39966
|
/** Allowpaymentbeforegoodsreceived */
|
|
39967
39967
|
allowPaymentBeforeGoodsReceived?: boolean | null;
|
|
39968
|
-
/** @default
|
|
39968
|
+
/** @default custom */
|
|
39969
39969
|
purchaseHistoryTimeframe: components["schemas"]["PurchaseHistoryTimeFrameEnum"] | null;
|
|
39970
39970
|
/**
|
|
39971
39971
|
* Purchasehistoryperiod
|
|
39972
|
-
* @description Indicate the number of historical
|
|
39972
|
+
* @description Indicate the number of historical months when using the custom period.
|
|
39973
39973
|
*/
|
|
39974
39974
|
purchaseHistoryPeriod?: number | null;
|
|
39975
39975
|
/** @description when stock update trigger in system settings is invoice, this field must be purchaseInvoice */
|