@erp-galoper/types 1.0.834 → 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 +16 -16
- package/package.json +1 -1
package/openapi.ts
CHANGED
|
@@ -14173,6 +14173,7 @@ export interface paths {
|
|
|
14173
14173
|
* - depositChargeChangeNotAllowed
|
|
14174
14174
|
* - unitPackageIsRequired
|
|
14175
14175
|
* - salesPersonIsNotActive
|
|
14176
|
+
* - priceListShouldBeWholesale
|
|
14176
14177
|
*
|
|
14177
14178
|
* - 403: "noModuleAccess"
|
|
14178
14179
|
* - "permissionDenied"
|
|
@@ -14239,6 +14240,7 @@ export interface paths {
|
|
|
14239
14240
|
* - unitPackageIsRequired
|
|
14240
14241
|
* - customerChangeNotAllowed
|
|
14241
14242
|
* - salesPersonIsNotActive
|
|
14243
|
+
* - priceListShouldBeWholesale
|
|
14242
14244
|
*
|
|
14243
14245
|
* - 403: "noModuleAccess"
|
|
14244
14246
|
* - "permissionDenied"
|
|
@@ -15357,6 +15359,7 @@ export interface paths {
|
|
|
15357
15359
|
* - salesQuotationDoesNotExist
|
|
15358
15360
|
* - salesQuotationCustomerDoesNotMatchWithSalesOrderCustomer
|
|
15359
15361
|
* - salesPersonIsNotActive
|
|
15362
|
+
* - priceListShouldBeWholesale
|
|
15360
15363
|
*
|
|
15361
15364
|
* - 403: "noModuleAccess"
|
|
15362
15365
|
* - "permissionDenied"
|
|
@@ -15425,6 +15428,7 @@ export interface paths {
|
|
|
15425
15428
|
* - customerChangeNotAllowed
|
|
15426
15429
|
* - salesQuotationCustomerDoesNotMatchWithSalesOrderCustomer
|
|
15427
15430
|
* - salesPersonIsNotActive
|
|
15431
|
+
* - priceListShouldBeWholesale
|
|
15428
15432
|
*
|
|
15429
15433
|
* - 403: "noModuleAccess"
|
|
15430
15434
|
* - "permissionDenied"
|
|
@@ -16257,6 +16261,7 @@ export interface paths {
|
|
|
16257
16261
|
* - salesOrderDoesNotExist
|
|
16258
16262
|
* - customerShouldBeSameAsDownPaymentCustomer
|
|
16259
16263
|
* - salesPersonIsNotActive
|
|
16264
|
+
* - priceListShouldBeWholesale
|
|
16260
16265
|
*
|
|
16261
16266
|
* - 403: "noModuleAccess"
|
|
16262
16267
|
* - "permissionDenied"
|
|
@@ -16329,6 +16334,7 @@ export interface paths {
|
|
|
16329
16334
|
* - dateShouldBeBetweenPreviousAndNextInvoiceDate
|
|
16330
16335
|
* - salesInvoiceItemCannotBeDeleted
|
|
16331
16336
|
* - salesPersonIsNotActive
|
|
16337
|
+
* - priceListShouldBeWholesale
|
|
16332
16338
|
*
|
|
16333
16339
|
* - 403: "noModuleAccess"
|
|
16334
16340
|
* - "permissionDenied"
|
|
@@ -39161,11 +39167,8 @@ export interface components {
|
|
|
39161
39167
|
currency: components["schemas"]["CurrencySummarySchema"];
|
|
39162
39168
|
status: components["schemas"]["InternalStatusOnReturnValueChoices"];
|
|
39163
39169
|
approvalStatus: components["schemas"]["ApprovalValueChoices"];
|
|
39164
|
-
/**
|
|
39165
|
-
|
|
39166
|
-
* Format: date
|
|
39167
|
-
*/
|
|
39168
|
-
startDate: string;
|
|
39170
|
+
/** Startdate */
|
|
39171
|
+
startDate: string | null;
|
|
39169
39172
|
/** Enddate */
|
|
39170
39173
|
endDate: string | null;
|
|
39171
39174
|
pricingMethod: components["schemas"]["PRICING_METHOD_CHOICES"];
|
|
@@ -39328,13 +39331,13 @@ export interface components {
|
|
|
39328
39331
|
/**
|
|
39329
39332
|
* Startdate
|
|
39330
39333
|
* Format: date
|
|
39331
|
-
* @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
|
|
39332
39335
|
*/
|
|
39333
|
-
startDate
|
|
39336
|
+
startDate?: string;
|
|
39334
39337
|
/**
|
|
39335
39338
|
* Enddate
|
|
39336
39339
|
* Format: date
|
|
39337
|
-
* @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
|
|
39338
39341
|
*/
|
|
39339
39342
|
endDate?: string;
|
|
39340
39343
|
/** @description
|
|
@@ -39403,11 +39406,8 @@ export interface components {
|
|
|
39403
39406
|
currency: components["schemas"]["CurrencySummarySchema"];
|
|
39404
39407
|
status: components["schemas"]["InternalStatusOnReturnValueChoices"];
|
|
39405
39408
|
approvalStatus: components["schemas"]["ApprovalValueChoices"];
|
|
39406
|
-
/**
|
|
39407
|
-
|
|
39408
|
-
* Format: date
|
|
39409
|
-
*/
|
|
39410
|
-
startDate: string;
|
|
39409
|
+
/** Startdate */
|
|
39410
|
+
startDate: string | null;
|
|
39411
39411
|
/** Enddate */
|
|
39412
39412
|
endDate: string | null;
|
|
39413
39413
|
pricingMethod: components["schemas"]["PRICING_METHOD_CHOICES"];
|
|
@@ -40421,7 +40421,7 @@ export interface components {
|
|
|
40421
40421
|
* @description
|
|
40422
40422
|
* - This field is required when price list is active in sales settings
|
|
40423
40423
|
* - applicable if item is selected
|
|
40424
|
-
* - /api/v1/sales/price-list/
|
|
40424
|
+
* - /api/v1/sales/price-list/ and filter by priceListType not equal to retail
|
|
40425
40425
|
*
|
|
40426
40426
|
*/
|
|
40427
40427
|
priceList?: string;
|
|
@@ -42648,7 +42648,7 @@ export interface components {
|
|
|
42648
42648
|
* Format: uuid
|
|
42649
42649
|
* @description
|
|
42650
42650
|
* - This field is required when the price list is active in sales settings, and visible if inventory is on.
|
|
42651
|
-
* - /api/v1/sales/price-list/
|
|
42651
|
+
* - /api/v1/sales/price-list/ and filter by priceListType equals to wholesale
|
|
42652
42652
|
*
|
|
42653
42653
|
*/
|
|
42654
42654
|
priceList?: string;
|
|
@@ -44330,7 +44330,7 @@ export interface components {
|
|
|
44330
44330
|
* - This field is required when the price list feature is enabled in sales settings. (AND)
|
|
44331
44331
|
* - It is visible only if inventory is enabled. (AND)
|
|
44332
44332
|
*
|
|
44333
|
-
* - Endpoint: /api/v1/sales/price-list/
|
|
44333
|
+
* - Endpoint: /api/v1/sales/price-list/ and filter by priceListType equals to wholesale
|
|
44334
44334
|
* - Filters:
|
|
44335
44335
|
*
|
|
44336
44336
|
* 1. **Active Date Range** (AND):
|