@erp-galoper/types 1.0.1158 → 1.0.1159

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.
Files changed (2) hide show
  1. package/openapi.ts +12 -45
  2. package/package.json +1 -1
package/openapi.ts CHANGED
@@ -22678,13 +22678,6 @@ export interface components {
22678
22678
  * @default []
22679
22679
  */
22680
22680
  quantities: components["schemas"]["QuantityGroupSchema"][] | null;
22681
- /**
22682
- * Supplierpurchasedprices
22683
- * @default []
22684
- */
22685
- supplierPurchasedPrices: components["schemas"]["SupplierPurchasedPricesSchema"][];
22686
- /** Lastpurchasedprice */
22687
- lastPurchasedPrice: number | string | null;
22688
22681
  };
22689
22682
  /** ItemSchema */
22690
22683
  ItemSchema: {
@@ -23233,22 +23226,6 @@ export interface components {
23233
23226
  /** Description */
23234
23227
  description: string;
23235
23228
  };
23236
- /** SupplierPurchasedPricesSchema */
23237
- SupplierPurchasedPricesSchema: {
23238
- /** Quantity */
23239
- quantity: number;
23240
- /** Unitprice */
23241
- unitPrice: number | string;
23242
- /** Discount */
23243
- discount: number | string | null;
23244
- /**
23245
- * Taxes
23246
- * @default []
23247
- */
23248
- taxes: components["schemas"]["TaxSharedSchema"][];
23249
- /** Total */
23250
- total: number | string | null;
23251
- };
23252
23229
  /** TagSchema */
23253
23230
  TagSchema: {
23254
23231
  /** Id */
@@ -23267,17 +23244,6 @@ export interface components {
23267
23244
  /** Type */
23268
23245
  type: components["schemas"]["TaxTypes"][];
23269
23246
  };
23270
- /** TaxSharedSchema */
23271
- TaxSharedSchema: {
23272
- /** Id */
23273
- id: number;
23274
- /** Name */
23275
- name: string;
23276
- /** Type */
23277
- type: components["schemas"]["TaxTypes"][];
23278
- /** Ratepercentage */
23279
- ratePercentage: number;
23280
- };
23281
23247
  /**
23282
23248
  * TaxTypes
23283
23249
  * @enum {string}
@@ -23333,13 +23299,6 @@ export interface components {
23333
23299
  * @default []
23334
23300
  */
23335
23301
  prices: components["schemas"]["PricesFromPriceListSchema"][];
23336
- /**
23337
- * Supplierpurchasedprices
23338
- * @default []
23339
- */
23340
- supplierPurchasedPrices: components["schemas"]["SupplierPurchasedPricesSchema"][];
23341
- /** Lastpurchasedprice */
23342
- lastPurchasedPrice: number | string | null;
23343
23302
  };
23344
23303
  /** VariantOfSchema */
23345
23304
  VariantOfSchema: {
@@ -35800,6 +35759,17 @@ export interface components {
35800
35759
  /** Serialnumber */
35801
35760
  serialNumber: string;
35802
35761
  };
35762
+ /** TaxSharedSchema */
35763
+ TaxSharedSchema: {
35764
+ /** Id */
35765
+ id: number;
35766
+ /** Name */
35767
+ name: string;
35768
+ /** Type */
35769
+ type: components["schemas"]["TaxTypes"][];
35770
+ /** Ratepercentage */
35771
+ ratePercentage: number;
35772
+ };
35803
35773
  /** CreatePurchaseQuotationItemsSchema */
35804
35774
  CreatePurchaseQuotationItemsSchema: {
35805
35775
  /**
@@ -51911,6 +51881,7 @@ export interface operations {
51911
51881
  branchId?: number;
51912
51882
  /** @description search by item name ,short name, sku code or barcode */
51913
51883
  search?: string;
51884
+ priceListId?: string;
51914
51885
  /** @description List of warehouse IDs to filter quantities by. If not provided, all warehouses will be included. */
51915
51886
  warehouses?: number[] | null;
51916
51887
  /** @description Include detailed quantity breakdown with warehouse information for each item and item package */
@@ -51923,8 +51894,6 @@ export interface operations {
51923
51894
  companyRate?: number | string;
51924
51895
  /** @description required when price list ids is provided and type is sales, rate is taken from document itself */
51925
51896
  secondaryRate?: number | string;
51926
- /** @description required when you want to get items purchase prices from supplier price list */
51927
- supplierId?: number;
51928
51897
  };
51929
51898
  header?: never;
51930
51899
  path?: never;
@@ -52114,8 +52083,6 @@ export interface operations {
52114
52083
  companyRate?: number | string;
52115
52084
  /** @description required when price list ids is provided and type is sales, rate is taken from document itself */
52116
52085
  secondaryRate?: number | string;
52117
- /** @description required when you want to get item purchase prices from supplier price list */
52118
- supplierId?: number;
52119
52086
  };
52120
52087
  header?: never;
52121
52088
  path: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@erp-galoper/types",
3
- "version": "1.0.1158",
3
+ "version": "1.0.1159",
4
4
  "main": "openapi.ts",
5
5
  "types": "openapi.ts",
6
6
  "files": ["openapi.ts"],