@erp-galoper/types 1.0.835 → 1.0.836
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 -13
- package/package.json +1 -1
package/openapi.ts
CHANGED
|
@@ -39167,11 +39167,8 @@ export interface components {
|
|
|
39167
39167
|
currency: components["schemas"]["CurrencySummarySchema"];
|
|
39168
39168
|
status: components["schemas"]["InternalStatusOnReturnValueChoices"];
|
|
39169
39169
|
approvalStatus: components["schemas"]["ApprovalValueChoices"];
|
|
39170
|
-
/**
|
|
39171
|
-
|
|
39172
|
-
* Format: date
|
|
39173
|
-
*/
|
|
39174
|
-
startDate: string;
|
|
39170
|
+
/** Startdate */
|
|
39171
|
+
startDate: string | null;
|
|
39175
39172
|
/** Enddate */
|
|
39176
39173
|
endDate: string | null;
|
|
39177
39174
|
pricingMethod: components["schemas"]["PRICING_METHOD_CHOICES"];
|
|
@@ -39334,13 +39331,13 @@ export interface components {
|
|
|
39334
39331
|
/**
|
|
39335
39332
|
* Startdate
|
|
39336
39333
|
* Format: date
|
|
39337
|
-
* @description Start date from which the price list becomes valid
|
|
39334
|
+
* @description - Start date from which the price list becomes valid- visible when price list type not equal to retail
|
|
39338
39335
|
*/
|
|
39339
|
-
startDate
|
|
39336
|
+
startDate?: string;
|
|
39340
39337
|
/**
|
|
39341
39338
|
* Enddate
|
|
39342
39339
|
* Format: date
|
|
39343
|
-
* @description End date until which the price list is valid. Leave blank if the price list does not have an expiration date
|
|
39340
|
+
* @description - End date until which the price list is valid. Leave blank if the price list does not have an expiration date.- visible when price list type not equal to retail
|
|
39344
39341
|
*/
|
|
39345
39342
|
endDate?: string;
|
|
39346
39343
|
/** @description
|
|
@@ -39409,11 +39406,8 @@ export interface components {
|
|
|
39409
39406
|
currency: components["schemas"]["CurrencySummarySchema"];
|
|
39410
39407
|
status: components["schemas"]["InternalStatusOnReturnValueChoices"];
|
|
39411
39408
|
approvalStatus: components["schemas"]["ApprovalValueChoices"];
|
|
39412
|
-
/**
|
|
39413
|
-
|
|
39414
|
-
* Format: date
|
|
39415
|
-
*/
|
|
39416
|
-
startDate: string;
|
|
39409
|
+
/** Startdate */
|
|
39410
|
+
startDate: string | null;
|
|
39417
39411
|
/** Enddate */
|
|
39418
39412
|
endDate: string | null;
|
|
39419
39413
|
pricingMethod: components["schemas"]["PRICING_METHOD_CHOICES"];
|