@erp-galoper/types 1.0.1389 → 1.0.1390

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 +74 -89
  2. package/package.json +1 -1
package/openapi.ts CHANGED
@@ -25648,6 +25648,28 @@ export interface components {
25648
25648
  */
25649
25649
  results: components["schemas"]["ItemWithChildrenSchema"][];
25650
25650
  };
25651
+ /** ItemPackageSummarySchema */
25652
+ ItemPackageSummarySchema: {
25653
+ /**
25654
+ * Id
25655
+ * Format: uuid
25656
+ */
25657
+ id: string;
25658
+ /**
25659
+ * Barcodes
25660
+ * @default []
25661
+ */
25662
+ barcodes: components["schemas"]["RetrieveBarcodeSchema"][];
25663
+ /**
25664
+ * Quantity
25665
+ * @description Quantity of the item
25666
+ */
25667
+ quantity: number;
25668
+ /** @description Package of the item */
25669
+ package: components["schemas"]["PackageSummarySchema"];
25670
+ /** Returnable */
25671
+ returnable: boolean;
25672
+ };
25651
25673
  /** ItemPackageWithCanDeleteAndCanUpdateQuantityOrUomSchema */
25652
25674
  ItemPackageWithCanDeleteAndCanUpdateQuantityOrUomSchema: {
25653
25675
  /**
@@ -25657,7 +25679,7 @@ export interface components {
25657
25679
  */
25658
25680
  id: string;
25659
25681
  /** @description the package it belongs to */
25660
- package: components["schemas"]["common__shared_schemas__PackageSummarySchema__1"];
25682
+ package: components["schemas"]["common__shared_schemas__PackageSummarySchema__2"];
25661
25683
  /**
25662
25684
  * Barcodes
25663
25685
  * @default []
@@ -25707,11 +25729,6 @@ export interface components {
25707
25729
  * @description Quantity information for the packed items in this package
25708
25730
  */
25709
25731
  quantities?: components["schemas"]["QuantityGroupSchema"][] | null;
25710
- /**
25711
- * Openingstock
25712
- * @description Opening stock information for this package
25713
- */
25714
- openingStock?: components["schemas"]["PackageOpeningStockSchema"][] | null;
25715
25732
  /**
25716
25733
  * Supplierpurchasedprices
25717
25734
  * @default []
@@ -26226,6 +26243,7 @@ export interface components {
26226
26243
  */
26227
26244
  OpeningStockGroupSchema: {
26228
26245
  unitOfMeasure?: components["schemas"]["UnitOfMeasureSummaryInfo"] | null;
26246
+ itemPackage?: components["schemas"]["ItemPackageSummarySchema"] | null;
26229
26247
  /** Openingquantity */
26230
26248
  openingQuantity: number;
26231
26249
  /**
@@ -26274,33 +26292,10 @@ export interface components {
26274
26292
  tracking: components["schemas"]["OpeningStockTrackingSchema"][];
26275
26293
  };
26276
26294
  /**
26277
- * PackageOpeningStockSchema
26278
- * @description Schema for item package opening stock
26295
+ * PackageCategory
26296
+ * @enum {string}
26279
26297
  */
26280
- PackageOpeningStockSchema: {
26281
- /** Openingquantity */
26282
- openingQuantity: number;
26283
- /**
26284
- * Warehouses
26285
- * @default []
26286
- */
26287
- warehouses: components["schemas"]["OpeningStockWarehouseSchema"][];
26288
- };
26289
- /** PackageSummarySchema */
26290
- PackageSummarySchema: {
26291
- /**
26292
- * Id
26293
- * Format: uuid
26294
- */
26295
- id: string;
26296
- /**
26297
- * Name
26298
- * @description Name of the package
26299
- */
26300
- name: string;
26301
- /** @description Category of the package */
26302
- category: components["schemas"]["PackageCategory"];
26303
- };
26298
+ PackageCategory: "primary" | "secondary" | "tertiary" | "disposable" | "sustainable" | "retail" | "luxury" | "flexible" | "rigid" | "custom";
26304
26299
  /** PricesFromPriceListSchema */
26305
26300
  PricesFromPriceListSchema: {
26306
26301
  /**
@@ -26479,6 +26474,36 @@ export interface components {
26479
26474
  /** Name */
26480
26475
  name: string;
26481
26476
  };
26477
+ /** PackageSummarySchema */
26478
+ common__shared_schemas__PackageSummarySchema__1: {
26479
+ /**
26480
+ * Id
26481
+ * Format: uuid
26482
+ */
26483
+ id: string;
26484
+ /**
26485
+ * Name
26486
+ * @description Name of the package
26487
+ */
26488
+ name: string;
26489
+ /** @description Category of the package */
26490
+ category: components["schemas"]["PackageCategory"];
26491
+ };
26492
+ /** PackageSummarySchema */
26493
+ common__shared_schemas__PackageSummarySchema__2: {
26494
+ /**
26495
+ * Id
26496
+ * Format: uuid
26497
+ */
26498
+ id: string;
26499
+ /**
26500
+ * Name
26501
+ * @description Name of the package
26502
+ */
26503
+ name: string;
26504
+ /** Packagedepositcharge */
26505
+ packageDepositCharge?: string | null;
26506
+ };
26482
26507
  /**
26483
26508
  * role
26484
26509
  * @enum {string}
@@ -30324,28 +30349,6 @@ export interface components {
30324
30349
  type: components["schemas"]["ItemType"];
30325
30350
  costStrategy: components["schemas"]["GetCostStrategy"] | null;
30326
30351
  };
30327
- /** ItemPackageSummarySchema */
30328
- ItemPackageSummarySchema: {
30329
- /**
30330
- * Id
30331
- * Format: uuid
30332
- */
30333
- id: string;
30334
- /**
30335
- * Barcodes
30336
- * @default []
30337
- */
30338
- barcodes: components["schemas"]["RetrieveBarcodeSchema"][];
30339
- /**
30340
- * Quantity
30341
- * @description Quantity of the item
30342
- */
30343
- quantity: number;
30344
- /** @description Package of the item */
30345
- package: components["schemas"]["PackageSummarySchema"];
30346
- /** Returnable */
30347
- returnable: boolean;
30348
- };
30349
30352
  /** ItemQuantityPaginatedResponseSchema */
30350
30353
  ItemQuantityPaginatedResponseSchema: {
30351
30354
  info: components["schemas"]["PageInfoSchema"];
@@ -30380,11 +30383,6 @@ export interface components {
30380
30383
  */
30381
30384
  serials: components["schemas"]["SerialInfoSchema"][];
30382
30385
  };
30383
- /**
30384
- * PackageCategory
30385
- * @enum {string}
30386
- */
30387
- PackageCategory: "primary" | "secondary" | "tertiary" | "disposable" | "sustainable" | "retail" | "luxury" | "flexible" | "rigid" | "custom";
30388
30386
  /** PackageInfoSchema */
30389
30387
  PackageInfoSchema: {
30390
30388
  /**
@@ -30397,6 +30395,21 @@ export interface components {
30397
30395
  /** Quantity */
30398
30396
  quantity: number;
30399
30397
  };
30398
+ /** PackageSummarySchema */
30399
+ PackageSummarySchema: {
30400
+ /**
30401
+ * Id
30402
+ * Format: uuid
30403
+ */
30404
+ id: string;
30405
+ /**
30406
+ * Name
30407
+ * @description Name of the package
30408
+ */
30409
+ name: string;
30410
+ /** @description Category of the package */
30411
+ category: components["schemas"]["PackageCategory"];
30412
+ };
30400
30413
  /** PackedInventoryItemSchema */
30401
30414
  PackedInventoryItemSchema: {
30402
30415
  package?: components["schemas"]["PackageInfoSchema"] | null;
@@ -30834,36 +30847,6 @@ export interface components {
30834
30847
  */
30835
30848
  details: components["schemas"]["OpeningQuantityDetailsSchema"][];
30836
30849
  };
30837
- /** PackageSummarySchema */
30838
- common__shared_schemas__PackageSummarySchema__1: {
30839
- /**
30840
- * Id
30841
- * Format: uuid
30842
- */
30843
- id: string;
30844
- /**
30845
- * Name
30846
- * @description Name of the package
30847
- */
30848
- name: string;
30849
- /** Packagedepositcharge */
30850
- packageDepositCharge?: string | null;
30851
- };
30852
- /** PackageSummarySchema */
30853
- common__shared_schemas__PackageSummarySchema__2: {
30854
- /**
30855
- * Id
30856
- * Format: uuid
30857
- */
30858
- id: string;
30859
- /**
30860
- * Name
30861
- * @description Name of the package
30862
- */
30863
- name: string;
30864
- /** @description Category of the package */
30865
- category: components["schemas"]["PackageCategory"];
30866
- };
30867
30850
  /** CreateOpeningQuantityItemSchema */
30868
30851
  CreateOpeningQuantityItemSchema: {
30869
30852
  /**
@@ -45709,6 +45692,7 @@ export interface components {
45709
45692
  /**
45710
45693
  * Returnable
45711
45694
  * @description Whether the package is returnable
45695
+ * @default false
45712
45696
  */
45713
45697
  returnable: boolean;
45714
45698
  /**
@@ -45787,6 +45771,7 @@ export interface components {
45787
45771
  /**
45788
45772
  * Returnable
45789
45773
  * @description Whether the package is returnable
45774
+ * @default false
45790
45775
  */
45791
45776
  returnable: boolean;
45792
45777
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@erp-galoper/types",
3
- "version": "1.0.1389",
3
+ "version": "1.0.1390",
4
4
  "main": "openapi.ts",
5
5
  "types": "openapi.ts",
6
6
  "files": ["openapi.ts"],