@erp-galoper/types 1.0.1464 → 1.0.1466
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 +56 -28
- package/package.json +1 -1
package/openapi.ts
CHANGED
|
@@ -4601,6 +4601,18 @@ export interface paths {
|
|
|
4601
4601
|
/**
|
|
4602
4602
|
* List Stock Adjustments
|
|
4603
4603
|
* @description Endpoint for List Stock Adjustment Documents
|
|
4604
|
+
*
|
|
4605
|
+
* Query Parameters:
|
|
4606
|
+
* - warehouse: Filter by specific warehouse ID(s)
|
|
4607
|
+
*
|
|
4608
|
+
* Search functionality:
|
|
4609
|
+
* - Search by warehouse name
|
|
4610
|
+
* - Search by item name, SKU code, or short name
|
|
4611
|
+
* - Search by item barcodes
|
|
4612
|
+
* - Search by serial numbers
|
|
4613
|
+
* - Search by batch numbers
|
|
4614
|
+
* - Search by description
|
|
4615
|
+
*
|
|
4604
4616
|
* Responses:
|
|
4605
4617
|
* - 200: StockAdjustmentHeaderListSchema
|
|
4606
4618
|
* - 400: "invalidFilterFormat"
|
|
@@ -4745,6 +4757,17 @@ export interface paths {
|
|
|
4745
4757
|
/**
|
|
4746
4758
|
* List Opening Quantity
|
|
4747
4759
|
* @description Endpoint for List Opening Quantity Documents
|
|
4760
|
+
*
|
|
4761
|
+
* Query Parameters:
|
|
4762
|
+
* - warehouse: Filter by specific warehouse ID(s)
|
|
4763
|
+
*
|
|
4764
|
+
* Search functionality:
|
|
4765
|
+
* - Search by warehouse name
|
|
4766
|
+
* - Search by item name, SKU code, or short name
|
|
4767
|
+
* - Search by item barcodes
|
|
4768
|
+
* - Search by serial numbers
|
|
4769
|
+
* - Search by batch numbers
|
|
4770
|
+
*
|
|
4748
4771
|
* Responses:
|
|
4749
4772
|
* - 200: OpeningQuantityHeaderListSchema
|
|
4750
4773
|
* - 400: {"message": "Error applying filter {error}", "code": "invalidFilterFormat"}
|
|
@@ -25307,8 +25330,8 @@ export interface components {
|
|
|
25307
25330
|
cityId: components["schemas"]["RetrieveCity"];
|
|
25308
25331
|
/** Address */
|
|
25309
25332
|
address: string;
|
|
25310
|
-
/**
|
|
25311
|
-
|
|
25333
|
+
/** Assignedusers */
|
|
25334
|
+
assignedUsers?: components["schemas"]["UserSharedSchema"][];
|
|
25312
25335
|
/** Islocal */
|
|
25313
25336
|
isLocal: boolean;
|
|
25314
25337
|
region: components["schemas"]["RegionCommonSchema"];
|
|
@@ -25330,20 +25353,16 @@ export interface components {
|
|
|
25330
25353
|
name: string;
|
|
25331
25354
|
region: components["schemas"]["RegionSharedSchema"];
|
|
25332
25355
|
};
|
|
25333
|
-
/**
|
|
25334
|
-
|
|
25356
|
+
/** UserSharedSchema */
|
|
25357
|
+
UserSharedSchema: {
|
|
25335
25358
|
/** Id */
|
|
25336
25359
|
id: number;
|
|
25337
|
-
/** Username */
|
|
25338
|
-
username: string;
|
|
25339
|
-
/** Email */
|
|
25340
|
-
email: string;
|
|
25341
25360
|
/** Firstname */
|
|
25342
25361
|
firstName: string;
|
|
25343
25362
|
/** Lastname */
|
|
25344
25363
|
lastName: string;
|
|
25345
|
-
/**
|
|
25346
|
-
|
|
25364
|
+
/** Username */
|
|
25365
|
+
username: string;
|
|
25347
25366
|
};
|
|
25348
25367
|
/** MessageWithCode */
|
|
25349
25368
|
MessageWithCode: {
|
|
@@ -25855,17 +25874,6 @@ export interface components {
|
|
|
25855
25874
|
user: components["schemas"]["UserSharedSchema"];
|
|
25856
25875
|
dateFiltration: components["schemas"]["DateFiltration"] | null;
|
|
25857
25876
|
};
|
|
25858
|
-
/** UserSharedSchema */
|
|
25859
|
-
UserSharedSchema: {
|
|
25860
|
-
/** Id */
|
|
25861
|
-
id: number;
|
|
25862
|
-
/** Firstname */
|
|
25863
|
-
firstName: string;
|
|
25864
|
-
/** Lastname */
|
|
25865
|
-
lastName: string;
|
|
25866
|
-
/** Username */
|
|
25867
|
-
username: string;
|
|
25868
|
-
};
|
|
25869
25877
|
/** ItemsDataToPrint */
|
|
25870
25878
|
ItemsDataToPrint: {
|
|
25871
25879
|
/** Item */
|
|
@@ -28236,10 +28244,10 @@ export interface components {
|
|
|
28236
28244
|
/** Address */
|
|
28237
28245
|
address: string;
|
|
28238
28246
|
/**
|
|
28239
|
-
*
|
|
28240
|
-
* @
|
|
28247
|
+
* Assignedusersids
|
|
28248
|
+
* @description - List all active users, use route: api/v1/auth/users/ and filter by isActive=True
|
|
28241
28249
|
*/
|
|
28242
|
-
|
|
28250
|
+
assignedUsersIds?: number[];
|
|
28243
28251
|
};
|
|
28244
28252
|
/** UpdateBranch */
|
|
28245
28253
|
UpdateBranch: {
|
|
@@ -28261,10 +28269,10 @@ export interface components {
|
|
|
28261
28269
|
/** Address */
|
|
28262
28270
|
address?: string;
|
|
28263
28271
|
/**
|
|
28264
|
-
*
|
|
28265
|
-
* @
|
|
28272
|
+
* Assignedusersids
|
|
28273
|
+
* @description -List all active users, use route: api/v1/auth/users/ and filter by isActive=True
|
|
28266
28274
|
*/
|
|
28267
|
-
|
|
28275
|
+
assignedUsersIds?: number[];
|
|
28268
28276
|
};
|
|
28269
28277
|
/** AccountSummaryInfo */
|
|
28270
28278
|
AccountSummaryInfo: {
|
|
@@ -29291,6 +29299,21 @@ export interface components {
|
|
|
29291
29299
|
*/
|
|
29292
29300
|
approvers: components["schemas"]["DocumentTrackPerLevelUserResponse"][];
|
|
29293
29301
|
};
|
|
29302
|
+
/** userCommon */
|
|
29303
|
+
userCommon: {
|
|
29304
|
+
/** Id */
|
|
29305
|
+
id: number;
|
|
29306
|
+
/** Username */
|
|
29307
|
+
username: string;
|
|
29308
|
+
/** Email */
|
|
29309
|
+
email: string;
|
|
29310
|
+
/** Firstname */
|
|
29311
|
+
firstName: string;
|
|
29312
|
+
/** Lastname */
|
|
29313
|
+
lastName: string;
|
|
29314
|
+
/** Role */
|
|
29315
|
+
role: components["schemas"]["RolesSchema"][];
|
|
29316
|
+
};
|
|
29294
29317
|
/** DocumentsToApprove */
|
|
29295
29318
|
DocumentsToApprove: {
|
|
29296
29319
|
/**
|
|
@@ -68091,8 +68114,10 @@ export interface operations {
|
|
|
68091
68114
|
page?: number;
|
|
68092
68115
|
/** @description Page size */
|
|
68093
68116
|
pageSize?: number;
|
|
68094
|
-
/** @description Search
|
|
68117
|
+
/** @description Search by warehouse name, item (name, SKU, short name), barcodes, serial numbers, batch numbers, or description */
|
|
68095
68118
|
search?: string | null;
|
|
68119
|
+
/** @description Filter by warehouse ID(s). If not provided, all assigned warehouses will be included. */
|
|
68120
|
+
warehouse?: number[] | null;
|
|
68096
68121
|
};
|
|
68097
68122
|
header?: never;
|
|
68098
68123
|
path?: never;
|
|
@@ -68430,7 +68455,10 @@ export interface operations {
|
|
|
68430
68455
|
page?: number;
|
|
68431
68456
|
/** @description Page size */
|
|
68432
68457
|
pageSize?: number;
|
|
68458
|
+
/** @description Search by warehouse name, item (name, SKU, short name), barcodes, serial numbers, or batch numbers */
|
|
68433
68459
|
search?: string | null;
|
|
68460
|
+
/** @description Filter by warehouse ID(s). If not provided, all assigned warehouses will be included. */
|
|
68461
|
+
warehouse?: number[] | null;
|
|
68434
68462
|
};
|
|
68435
68463
|
header?: never;
|
|
68436
68464
|
path?: never;
|