@erp-galoper/types 1.0.1601 → 1.0.1602
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 +1 -124
- package/package.json +1 -1
package/openapi.ts
CHANGED
|
@@ -50930,120 +50930,6 @@ export interface components {
|
|
|
50930
50930
|
*/
|
|
50931
50931
|
id: string;
|
|
50932
50932
|
item: components["schemas"]["ItemMinimalSchema"] | null;
|
|
50933
|
-
/** Itemname */
|
|
50934
|
-
itemName?: string | null;
|
|
50935
|
-
itemType: components["schemas"]["NonInventoryItemType"] | null;
|
|
50936
|
-
/** Description */
|
|
50937
|
-
description: string | null;
|
|
50938
|
-
/** Quantity */
|
|
50939
|
-
quantity: number;
|
|
50940
|
-
/** @description The unit of measure selected from the item's options */
|
|
50941
|
-
unitOfMeasure: components["schemas"]["UnitOfMeasureSummaryInfo"] | null;
|
|
50942
|
-
/**
|
|
50943
|
-
* Unitprice
|
|
50944
|
-
* @description This field is a number representing the unit price of the item.
|
|
50945
|
-
*/
|
|
50946
|
-
unitPrice: string;
|
|
50947
|
-
/** @description Details of the selected item package, if applicable. */
|
|
50948
|
-
itemPackage: components["schemas"]["ItemPackageSummarySchema"] | null;
|
|
50949
|
-
/**
|
|
50950
|
-
* Packagedepositcharge
|
|
50951
|
-
* @description This field is a number representing the deposit charge for the selected package, if applicable.
|
|
50952
|
-
*/
|
|
50953
|
-
packageDepositCharge?: string | null;
|
|
50954
|
-
/**
|
|
50955
|
-
* Includetaxinunitprice
|
|
50956
|
-
* @description If true, the unit price includes tax and will be extracted to calculate the base price
|
|
50957
|
-
* @default false
|
|
50958
|
-
*/
|
|
50959
|
-
includeTaxInUnitPrice: boolean;
|
|
50960
|
-
/**
|
|
50961
|
-
* Discount
|
|
50962
|
-
* @description The discount percentage applied to the item.
|
|
50963
|
-
* @default 0
|
|
50964
|
-
*/
|
|
50965
|
-
discount: number | null;
|
|
50966
|
-
/**
|
|
50967
|
-
* Promotionsandoffers
|
|
50968
|
-
* @description List of promotions and offers applied to the item, visible when modules sales and inventory are on
|
|
50969
|
-
* @default []
|
|
50970
|
-
*/
|
|
50971
|
-
promotionsAndOffers: components["schemas"]["PromotionsAndOffersSharedSchema"][];
|
|
50972
|
-
commission: components["schemas"]["CommissionLevelSharedSchema"] | null;
|
|
50973
|
-
/**
|
|
50974
|
-
* Subtotal
|
|
50975
|
-
* @description This field is a number representing the subtotal amount for the item.
|
|
50976
|
-
*/
|
|
50977
|
-
subtotal: string;
|
|
50978
|
-
/**
|
|
50979
|
-
* Secondarysubtotal
|
|
50980
|
-
* @description This field is a number representing the subtotal amount in USD.
|
|
50981
|
-
* @default 0
|
|
50982
|
-
*/
|
|
50983
|
-
secondarySubtotal: string;
|
|
50984
|
-
/**
|
|
50985
|
-
* Companysubtotal
|
|
50986
|
-
* @description This field is a number representing the subtotal amount in the company's currency.
|
|
50987
|
-
* @default 0
|
|
50988
|
-
*/
|
|
50989
|
-
companySubtotal: string;
|
|
50990
|
-
/**
|
|
50991
|
-
* Discountedtotal
|
|
50992
|
-
* @description This field is a number representing the total after applying the discount.
|
|
50993
|
-
* @default 0
|
|
50994
|
-
*/
|
|
50995
|
-
discountedTotal: string;
|
|
50996
|
-
/**
|
|
50997
|
-
* Taxes
|
|
50998
|
-
* @description List of taxes applied to the item.
|
|
50999
|
-
* @default []
|
|
51000
|
-
*/
|
|
51001
|
-
taxes: components["schemas"]["TaxSharedSchema"][];
|
|
51002
|
-
/**
|
|
51003
|
-
* Taxamount
|
|
51004
|
-
* @description This field is a number representing the total tax amount applied to the item.
|
|
51005
|
-
* @default 0
|
|
51006
|
-
*/
|
|
51007
|
-
taxAmount: string;
|
|
51008
|
-
/**
|
|
51009
|
-
* Secondarytaxamount
|
|
51010
|
-
* @description This field is a number representing the total tax amount in USD.
|
|
51011
|
-
* @default 0
|
|
51012
|
-
*/
|
|
51013
|
-
secondaryTaxAmount: string;
|
|
51014
|
-
/**
|
|
51015
|
-
* Companytaxamount
|
|
51016
|
-
* @description This field is a number representing the total tax amount in the company's currency.
|
|
51017
|
-
* @default 0
|
|
51018
|
-
*/
|
|
51019
|
-
companyTaxAmount: string;
|
|
51020
|
-
/**
|
|
51021
|
-
* Total
|
|
51022
|
-
* @description This field is a number representing the total amount for the item.
|
|
51023
|
-
* @default 0
|
|
51024
|
-
*/
|
|
51025
|
-
total: string;
|
|
51026
|
-
/**
|
|
51027
|
-
* Secondarytotal
|
|
51028
|
-
* @description This field is a number representing the total amount in USD.
|
|
51029
|
-
* @default 0
|
|
51030
|
-
*/
|
|
51031
|
-
secondaryTotal: string;
|
|
51032
|
-
/**
|
|
51033
|
-
* Companytotal
|
|
51034
|
-
* @description This field is a number representing the total amount in the company's currency.
|
|
51035
|
-
* @default 0
|
|
51036
|
-
*/
|
|
51037
|
-
companyTotal: string;
|
|
51038
|
-
/** Quantityreturnedinvoice */
|
|
51039
|
-
quantityReturnedInvoice?: number;
|
|
51040
|
-
/** Quantityreturnedorder */
|
|
51041
|
-
quantityReturnedOrder?: number;
|
|
51042
|
-
/**
|
|
51043
|
-
* Quantitydelivered
|
|
51044
|
-
* @description Only show in case of delivery note source is sales invoice
|
|
51045
|
-
*/
|
|
51046
|
-
quantityDelivered?: number | null;
|
|
51047
50933
|
};
|
|
51048
50934
|
/** SalesInvoiceSchema */
|
|
51049
50935
|
SalesInvoiceSchema: {
|
|
@@ -54099,7 +53985,7 @@ export interface components {
|
|
|
54099
53985
|
*/
|
|
54100
53986
|
id: string;
|
|
54101
53987
|
appliesOn: components["schemas"]["SalesCreditNoteAppliesOn"];
|
|
54102
|
-
salesInvoiceItem: components["schemas"]["
|
|
53988
|
+
salesInvoiceItem: components["schemas"]["SalesInvoiceItemSchema"] | null;
|
|
54103
53989
|
/** Unitprice */
|
|
54104
53990
|
unitPrice: number | null;
|
|
54105
53991
|
/** Discount */
|
|
@@ -54167,15 +54053,6 @@ export interface components {
|
|
|
54167
54053
|
*/
|
|
54168
54054
|
entries: components["schemas"]["PostEntryDetailsSchema"][];
|
|
54169
54055
|
};
|
|
54170
|
-
/** SalesInvoiceItem */
|
|
54171
|
-
SalesInvoiceItem: {
|
|
54172
|
-
/**
|
|
54173
|
-
* Id
|
|
54174
|
-
* Format: uuid
|
|
54175
|
-
*/
|
|
54176
|
-
id: string;
|
|
54177
|
-
item: components["schemas"]["ItemMinimalSchema"] | null;
|
|
54178
|
-
};
|
|
54179
54056
|
/** SalesCreditNoteCreateSchema */
|
|
54180
54057
|
SalesCreditNoteCreateSchema: {
|
|
54181
54058
|
/** Password */
|