@erp-galoper/types 1.0.746 → 1.0.747
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 +124 -69
- package/package.json +1 -1
package/openapi.ts
CHANGED
|
@@ -4123,7 +4123,7 @@ export interface paths {
|
|
|
4123
4123
|
};
|
|
4124
4124
|
/**
|
|
4125
4125
|
* Get Items Quantity
|
|
4126
|
-
* @description Endpoint for List Items Quantity in Warehouse and Branch with UOM-based Batch/Serial breakdown
|
|
4126
|
+
* @description Endpoint for List Items Quantity in Warehouse and Branch with UOM-based Batch/Serial breakdown and Location details
|
|
4127
4127
|
*
|
|
4128
4128
|
* Query Parameters:
|
|
4129
4129
|
* - warehouses: List of warehouse IDs to filter by (required), it should be filtered by selected branch and warehouses assigned to the user
|
|
@@ -4137,7 +4137,7 @@ export interface paths {
|
|
|
4137
4137
|
* - If provided, overrides packed parameter and shows only specified packages
|
|
4138
4138
|
*
|
|
4139
4139
|
* Responses:
|
|
4140
|
-
* - 200: Items quantity with UOM breakdown
|
|
4140
|
+
* - 200: Items quantity with UOM breakdown, batch/serial details, and location information
|
|
4141
4141
|
* - 400:
|
|
4142
4142
|
* - 403: "permissionDenied"
|
|
4143
4143
|
* - "noBranchAccess"
|
|
@@ -24353,12 +24353,60 @@ export interface components {
|
|
|
24353
24353
|
/** Expirydate */
|
|
24354
24354
|
expiryDate?: string | null;
|
|
24355
24355
|
};
|
|
24356
|
+
/** ItemPackageSummarySchema */
|
|
24357
|
+
ItemPackageSummarySchema: {
|
|
24358
|
+
/**
|
|
24359
|
+
* Id
|
|
24360
|
+
* Format: uuid
|
|
24361
|
+
*/
|
|
24362
|
+
id: string;
|
|
24363
|
+
/**
|
|
24364
|
+
* Barcode
|
|
24365
|
+
* @description Barcode of the item
|
|
24366
|
+
*/
|
|
24367
|
+
barcode: string;
|
|
24368
|
+
/**
|
|
24369
|
+
* Quantity
|
|
24370
|
+
* @description Quantity of the item
|
|
24371
|
+
*/
|
|
24372
|
+
quantity: number;
|
|
24373
|
+
/** @description Package of the item */
|
|
24374
|
+
package: components["schemas"]["PackageSummarySchema"];
|
|
24375
|
+
/** Returnable */
|
|
24376
|
+
returnable: boolean;
|
|
24377
|
+
};
|
|
24356
24378
|
/** ItemQuantityResponseSchema */
|
|
24357
24379
|
ItemQuantityResponseSchema: {
|
|
24358
|
-
item: components["schemas"]["ItemMinimalSchema"];
|
|
24359
24380
|
/** Uomgroups */
|
|
24360
|
-
uomGroups: components["schemas"]["
|
|
24381
|
+
uomGroups: components["schemas"]["UOMGroupingSchema"][];
|
|
24382
|
+
};
|
|
24383
|
+
/** LocationInfoSchema */
|
|
24384
|
+
LocationInfoSchema: {
|
|
24385
|
+
warehouse: components["schemas"]["WarehouseSummaryInfo"];
|
|
24386
|
+
unitOfMeasure?: components["schemas"]["UnitOfMeasureSummaryInfo"] | null;
|
|
24387
|
+
itemPackage?: components["schemas"]["ItemPackageSummarySchema"] | null;
|
|
24388
|
+
/** Stockquantity */
|
|
24389
|
+
stockQuantity: number;
|
|
24390
|
+
/** Availableforsale */
|
|
24391
|
+
availableForSale: number;
|
|
24392
|
+
/** Ispackage */
|
|
24393
|
+
isPackage: boolean;
|
|
24394
|
+
/**
|
|
24395
|
+
* Batches
|
|
24396
|
+
* @default []
|
|
24397
|
+
*/
|
|
24398
|
+
batches: components["schemas"]["BatchInfoSchema"][];
|
|
24399
|
+
/**
|
|
24400
|
+
* Serials
|
|
24401
|
+
* @default []
|
|
24402
|
+
*/
|
|
24403
|
+
serials: components["schemas"]["SerialInfoSchema"][];
|
|
24361
24404
|
};
|
|
24405
|
+
/**
|
|
24406
|
+
* PackageCategory
|
|
24407
|
+
* @enum {string}
|
|
24408
|
+
*/
|
|
24409
|
+
PackageCategory: "primary" | "secondary" | "tertiary" | "disposable" | "sustainable" | "retail" | "luxury" | "flexible" | "rigid" | "custom";
|
|
24362
24410
|
/** PackageInfoSchema */
|
|
24363
24411
|
PackageInfoSchema: {
|
|
24364
24412
|
/**
|
|
@@ -24388,6 +24436,11 @@ export interface components {
|
|
|
24388
24436
|
* @default []
|
|
24389
24437
|
*/
|
|
24390
24438
|
serials: components["schemas"]["SerialInfoSchema"][];
|
|
24439
|
+
/**
|
|
24440
|
+
* Locations
|
|
24441
|
+
* @default []
|
|
24442
|
+
*/
|
|
24443
|
+
locations: components["schemas"]["LocationInfoSchema"][];
|
|
24391
24444
|
};
|
|
24392
24445
|
/** SerialInfoSchema */
|
|
24393
24446
|
SerialInfoSchema: {
|
|
@@ -24407,53 +24460,34 @@ export interface components {
|
|
|
24407
24460
|
/** Expirydate */
|
|
24408
24461
|
expiryDate?: string | null;
|
|
24409
24462
|
};
|
|
24410
|
-
/**
|
|
24411
|
-
|
|
24412
|
-
unitOfMeasure: components["schemas"]["
|
|
24413
|
-
unpacked: components["schemas"]["
|
|
24414
|
-
/**
|
|
24415
|
-
|
|
24416
|
-
* @default []
|
|
24417
|
-
*/
|
|
24418
|
-
packed: components["schemas"]["PackedInventorySchema"][];
|
|
24419
|
-
/**
|
|
24420
|
-
* Totalstockquantity
|
|
24421
|
-
* @default 0
|
|
24422
|
-
*/
|
|
24423
|
-
totalStockQuantity: number;
|
|
24424
|
-
/**
|
|
24425
|
-
* Totalreservedquantity
|
|
24426
|
-
* @default 0
|
|
24427
|
-
*/
|
|
24428
|
-
totalReservedQuantity: number;
|
|
24429
|
-
/**
|
|
24430
|
-
* Totalavailablequantity
|
|
24431
|
-
* @default 0
|
|
24432
|
-
*/
|
|
24433
|
-
totalAvailableQuantity: number;
|
|
24463
|
+
/** UOMGroupingSchema */
|
|
24464
|
+
UOMGroupingSchema: {
|
|
24465
|
+
unitOfMeasure: components["schemas"]["UnitOfMeasureSummaryInfo"];
|
|
24466
|
+
unpacked: components["schemas"]["UnPackedInventoryItemSchema"];
|
|
24467
|
+
/** Packed */
|
|
24468
|
+
packed: components["schemas"]["PackedInventoryItemSchema"][];
|
|
24434
24469
|
};
|
|
24435
|
-
/**
|
|
24436
|
-
|
|
24437
|
-
/**
|
|
24438
|
-
* Stockquantity
|
|
24439
|
-
* @default 0
|
|
24440
|
-
*/
|
|
24470
|
+
/** UnPackedInventoryItemSchema */
|
|
24471
|
+
UnPackedInventoryItemSchema: {
|
|
24472
|
+
/** Stockquantity */
|
|
24441
24473
|
stockQuantity: number;
|
|
24474
|
+
/** Availableforsale */
|
|
24475
|
+
availableForSale: number;
|
|
24442
24476
|
/**
|
|
24443
|
-
*
|
|
24444
|
-
* @default
|
|
24477
|
+
* Batches
|
|
24478
|
+
* @default []
|
|
24445
24479
|
*/
|
|
24446
|
-
|
|
24480
|
+
batches: components["schemas"]["BatchInfoSchema"][];
|
|
24447
24481
|
/**
|
|
24448
|
-
*
|
|
24449
|
-
* @default
|
|
24482
|
+
* Serials
|
|
24483
|
+
* @default []
|
|
24450
24484
|
*/
|
|
24451
|
-
|
|
24485
|
+
serials: components["schemas"]["SerialInfoSchema"][];
|
|
24452
24486
|
/**
|
|
24453
24487
|
* Locations
|
|
24454
24488
|
* @default []
|
|
24455
24489
|
*/
|
|
24456
|
-
locations: components["schemas"]["
|
|
24490
|
+
locations: components["schemas"]["LocationInfoSchema"][];
|
|
24457
24491
|
};
|
|
24458
24492
|
/**
|
|
24459
24493
|
* AdjustmentTypeOption
|
|
@@ -24493,33 +24527,6 @@ export interface components {
|
|
|
24493
24527
|
* @enum {string}
|
|
24494
24528
|
*/
|
|
24495
24529
|
InternalStatusOnReturnValueChoices: "draft" | "submitted" | "canceled";
|
|
24496
|
-
/** ItemPackageSummarySchema */
|
|
24497
|
-
ItemPackageSummarySchema: {
|
|
24498
|
-
/**
|
|
24499
|
-
* Id
|
|
24500
|
-
* Format: uuid
|
|
24501
|
-
*/
|
|
24502
|
-
id: string;
|
|
24503
|
-
/**
|
|
24504
|
-
* Barcode
|
|
24505
|
-
* @description Barcode of the item
|
|
24506
|
-
*/
|
|
24507
|
-
barcode: string;
|
|
24508
|
-
/**
|
|
24509
|
-
* Quantity
|
|
24510
|
-
* @description Quantity of the item
|
|
24511
|
-
*/
|
|
24512
|
-
quantity: number;
|
|
24513
|
-
/** @description Package of the item */
|
|
24514
|
-
package: components["schemas"]["PackageSummarySchema"];
|
|
24515
|
-
/** Returnable */
|
|
24516
|
-
returnable: boolean;
|
|
24517
|
-
};
|
|
24518
|
-
/**
|
|
24519
|
-
* PackageCategory
|
|
24520
|
-
* @enum {string}
|
|
24521
|
-
*/
|
|
24522
|
-
PackageCategory: "primary" | "secondary" | "tertiary" | "disposable" | "sustainable" | "retail" | "luxury" | "flexible" | "rigid" | "custom";
|
|
24523
24530
|
/** Reason */
|
|
24524
24531
|
Reason: {
|
|
24525
24532
|
/** Id */
|
|
@@ -27564,7 +27571,7 @@ export interface components {
|
|
|
27564
27571
|
/**
|
|
27565
27572
|
* Id
|
|
27566
27573
|
* Format: uuid
|
|
27567
|
-
* @example
|
|
27574
|
+
* @example 33f200b4-43e1-47f9-94fc-bb3ec8832954
|
|
27568
27575
|
*/
|
|
27569
27576
|
id: string;
|
|
27570
27577
|
/**
|
|
@@ -47204,6 +47211,54 @@ export interface components {
|
|
|
47204
47211
|
*/
|
|
47205
47212
|
locations: components["schemas"]["ItemLocationSchema"][];
|
|
47206
47213
|
};
|
|
47214
|
+
/** UOMGroupSchema */
|
|
47215
|
+
UOMGroupSchema: {
|
|
47216
|
+
unitOfMeasure: components["schemas"]["UnitOfMeasureSchema"];
|
|
47217
|
+
unpacked: components["schemas"]["UnpackedInventorySchema"];
|
|
47218
|
+
/**
|
|
47219
|
+
* Packed
|
|
47220
|
+
* @default []
|
|
47221
|
+
*/
|
|
47222
|
+
packed: components["schemas"]["PackedInventorySchema"][];
|
|
47223
|
+
/**
|
|
47224
|
+
* Totalstockquantity
|
|
47225
|
+
* @default 0
|
|
47226
|
+
*/
|
|
47227
|
+
totalStockQuantity: number;
|
|
47228
|
+
/**
|
|
47229
|
+
* Totalreservedquantity
|
|
47230
|
+
* @default 0
|
|
47231
|
+
*/
|
|
47232
|
+
totalReservedQuantity: number;
|
|
47233
|
+
/**
|
|
47234
|
+
* Totalavailablequantity
|
|
47235
|
+
* @default 0
|
|
47236
|
+
*/
|
|
47237
|
+
totalAvailableQuantity: number;
|
|
47238
|
+
};
|
|
47239
|
+
/** UnpackedInventorySchema */
|
|
47240
|
+
UnpackedInventorySchema: {
|
|
47241
|
+
/**
|
|
47242
|
+
* Stockquantity
|
|
47243
|
+
* @default 0
|
|
47244
|
+
*/
|
|
47245
|
+
stockQuantity: number;
|
|
47246
|
+
/**
|
|
47247
|
+
* Reservedquantity
|
|
47248
|
+
* @default 0
|
|
47249
|
+
*/
|
|
47250
|
+
reservedQuantity: number;
|
|
47251
|
+
/**
|
|
47252
|
+
* Availablequantity
|
|
47253
|
+
* @default 0
|
|
47254
|
+
*/
|
|
47255
|
+
availableQuantity: number;
|
|
47256
|
+
/**
|
|
47257
|
+
* Locations
|
|
47258
|
+
* @default []
|
|
47259
|
+
*/
|
|
47260
|
+
locations: components["schemas"]["ItemLocationSchema"][];
|
|
47261
|
+
};
|
|
47207
47262
|
};
|
|
47208
47263
|
responses: never;
|
|
47209
47264
|
parameters: never;
|