@erp-galoper/main-package 1.0.243 → 1.0.244
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 +28 -23
- package/package.json +1 -1
package/openapi.ts
CHANGED
@@ -13523,6 +13523,11 @@ export interface components {
|
|
13523
13523
|
*/
|
13524
13524
|
results: components["schemas"]["ItemsWarehouseQuantitySchema"][];
|
13525
13525
|
};
|
13526
|
+
/**
|
13527
|
+
* ApprovalValueChoices
|
13528
|
+
* @enum {string}
|
13529
|
+
*/
|
13530
|
+
ApprovalValueChoices: "draft" | "pending" | "approved" | "rejected" | "not_required";
|
13526
13531
|
/** BranchStockAdjustmentSchema */
|
13527
13532
|
BranchStockAdjustmentSchema: {
|
13528
13533
|
/** Id */
|
@@ -13530,6 +13535,11 @@ export interface components {
|
|
13530
13535
|
/** Name */
|
13531
13536
|
name: string;
|
13532
13537
|
};
|
13538
|
+
/**
|
13539
|
+
* InternalStatusOnReturnValueChoices
|
13540
|
+
* @enum {string}
|
13541
|
+
*/
|
13542
|
+
InternalStatusOnReturnValueChoices: "draft" | "submitted" | "canceled";
|
13533
13543
|
/** StockAdjustmentHeaderListSchema */
|
13534
13544
|
StockAdjustmentHeaderListSchema: {
|
13535
13545
|
info: components["schemas"]["PageInfoSchema"];
|
@@ -13558,8 +13568,8 @@ export interface components {
|
|
13558
13568
|
branch: components["schemas"]["BranchStockAdjustmentSchema"];
|
13559
13569
|
/** Description */
|
13560
13570
|
description?: string | null;
|
13561
|
-
|
13562
|
-
approvalStatus:
|
13571
|
+
status: components["schemas"]["InternalStatusOnReturnValueChoices"];
|
13572
|
+
approvalStatus: components["schemas"]["ApprovalValueChoices"];
|
13563
13573
|
};
|
13564
13574
|
/** CreateStockAdjustmentDetailSchema */
|
13565
13575
|
CreateStockAdjustmentDetailSchema: {
|
@@ -13573,6 +13583,11 @@ export interface components {
|
|
13573
13583
|
/** Adjustmentquantity */
|
13574
13584
|
adjustmentQuantity: number;
|
13575
13585
|
};
|
13586
|
+
/**
|
13587
|
+
* InternalStatusOnCreateValueChoices
|
13588
|
+
* @enum {string}
|
13589
|
+
*/
|
13590
|
+
InternalStatusOnCreateValueChoices: "draft" | "submitted";
|
13576
13591
|
/** StockAdjustmentCreateSchema */
|
13577
13592
|
StockAdjustmentCreateSchema: {
|
13578
13593
|
/** Warehouse */
|
@@ -13583,18 +13598,13 @@ export interface components {
|
|
13583
13598
|
details: components["schemas"]["CreateStockAdjustmentDetailSchema"][];
|
13584
13599
|
/** Description */
|
13585
13600
|
description?: string | null;
|
13586
|
-
status
|
13601
|
+
status: components["schemas"]["InternalStatusOnCreateValueChoices"];
|
13587
13602
|
};
|
13588
13603
|
/**
|
13589
13604
|
* adjustmentTypeOption
|
13590
13605
|
* @enum {string}
|
13591
13606
|
*/
|
13592
13607
|
adjustmentTypeOption: "increase" | "decrease" | "replace";
|
13593
|
-
/**
|
13594
|
-
* statusOption
|
13595
|
-
* @constant
|
13596
|
-
*/
|
13597
|
-
statusOption: "draft";
|
13598
13608
|
/** ItemAdjustmentSchema */
|
13599
13609
|
ItemAdjustmentSchema: {
|
13600
13610
|
/** Id */
|
@@ -13668,7 +13678,7 @@ export interface components {
|
|
13668
13678
|
warehouse?: number | null;
|
13669
13679
|
/** Branch */
|
13670
13680
|
branch?: number | null;
|
13671
|
-
status
|
13681
|
+
status: components["schemas"]["InternalStatusOnCreateValueChoices"];
|
13672
13682
|
/** Description */
|
13673
13683
|
description?: string | null;
|
13674
13684
|
details?: components["schemas"]["UpdateStockAdjustmentDetailSchema"] | null;
|
@@ -13691,11 +13701,6 @@ export interface components {
|
|
13691
13701
|
*/
|
13692
13702
|
delete: components["schemas"]["DeleteStockAdjustmentDetailSchema"][];
|
13693
13703
|
};
|
13694
|
-
/**
|
13695
|
-
* statusOptionForUpdate
|
13696
|
-
* @constant
|
13697
|
-
*/
|
13698
|
-
statusOptionForUpdate: "activate";
|
13699
13704
|
/** BranchOpeningQuantitySchema */
|
13700
13705
|
BranchOpeningQuantitySchema: {
|
13701
13706
|
/** Id */
|
@@ -13725,8 +13730,8 @@ export interface components {
|
|
13725
13730
|
modifiedBy: components["schemas"]["RecordUserSchema"] | null;
|
13726
13731
|
/** Id */
|
13727
13732
|
id: number;
|
13728
|
-
|
13729
|
-
approvalStatus:
|
13733
|
+
status: components["schemas"]["InternalStatusOnReturnValueChoices"];
|
13734
|
+
approvalStatus: components["schemas"]["ApprovalValueChoices"];
|
13730
13735
|
/** Serialnumber */
|
13731
13736
|
serialNumber: number;
|
13732
13737
|
warehouse: components["schemas"]["WarehouseOpeningQuantitySchema"];
|
@@ -13760,7 +13765,7 @@ export interface components {
|
|
13760
13765
|
details: components["schemas"]["CreateOpeningQuantityDetailSchema"][];
|
13761
13766
|
/** Description */
|
13762
13767
|
description?: string | null;
|
13763
|
-
status
|
13768
|
+
status: components["schemas"]["InternalStatusOnCreateValueChoices"];
|
13764
13769
|
};
|
13765
13770
|
/** ItemOpeningQuantitySchema */
|
13766
13771
|
ItemOpeningQuantitySchema: {
|
@@ -13822,7 +13827,7 @@ export interface components {
|
|
13822
13827
|
branch?: number | null;
|
13823
13828
|
/** Description */
|
13824
13829
|
description?: string | null;
|
13825
|
-
status
|
13830
|
+
status: components["schemas"]["InternalStatusOnCreateValueChoices"];
|
13826
13831
|
details?: components["schemas"]["UpdateOpeningQuantityDetailSchema"] | null;
|
13827
13832
|
};
|
13828
13833
|
/** UpdateOpeningQuantityDetailSchema */
|
@@ -13884,8 +13889,8 @@ export interface components {
|
|
13884
13889
|
transferDate: string;
|
13885
13890
|
/** Description */
|
13886
13891
|
description?: string | null;
|
13887
|
-
|
13888
|
-
approvalStatus:
|
13892
|
+
status: components["schemas"]["InternalStatusOnReturnValueChoices"];
|
13893
|
+
approvalStatus: components["schemas"]["ApprovalValueChoices"];
|
13889
13894
|
};
|
13890
13895
|
/** WarehouseInternalTransferSchema */
|
13891
13896
|
WarehouseInternalTransferSchema: {
|
@@ -13920,7 +13925,7 @@ export interface components {
|
|
13920
13925
|
transferDate: string;
|
13921
13926
|
/** Description */
|
13922
13927
|
description: string;
|
13923
|
-
status
|
13928
|
+
status: components["schemas"]["InternalStatusOnCreateValueChoices"];
|
13924
13929
|
/** Details */
|
13925
13930
|
details: components["schemas"]["CreateInternalTransferDetailSchema"][];
|
13926
13931
|
};
|
@@ -13983,7 +13988,7 @@ export interface components {
|
|
13983
13988
|
transferDate?: string | null;
|
13984
13989
|
/** Description */
|
13985
13990
|
description?: string | null;
|
13986
|
-
status
|
13991
|
+
status: components["schemas"]["InternalStatusOnCreateValueChoices"];
|
13987
13992
|
details?: components["schemas"]["UpdateInternalTransferDetailSchema"] | null;
|
13988
13993
|
};
|
13989
13994
|
/** UpdateInternalTransferDetailSchema */
|
@@ -15942,7 +15947,7 @@ export interface components {
|
|
15942
15947
|
/**
|
15943
15948
|
* Id
|
15944
15949
|
* Format: uuid
|
15945
|
-
* @example
|
15950
|
+
* @example 72cbeba5-886d-436d-85b0-93ae6e5545c6
|
15946
15951
|
*/
|
15947
15952
|
id: string;
|
15948
15953
|
/**
|
package/package.json
CHANGED