@erp-galoper/types 1.0.221 → 1.0.223
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 +194 -92
- package/package.json +1 -1
package/openapi.ts
CHANGED
|
@@ -18413,15 +18413,15 @@ export interface components {
|
|
|
18413
18413
|
*/
|
|
18414
18414
|
settings: components["schemas"]["BasePermissionsSchema_Settings"];
|
|
18415
18415
|
/**
|
|
18416
|
-
* @description
|
|
18416
|
+
* @description accounting actions
|
|
18417
18417
|
* @default []
|
|
18418
18418
|
*/
|
|
18419
|
-
|
|
18419
|
+
accounting: components["schemas"]["BasePermissionsSchema_Accounting"];
|
|
18420
18420
|
/**
|
|
18421
|
-
* @description
|
|
18421
|
+
* @description bank actions
|
|
18422
18422
|
* @default []
|
|
18423
18423
|
*/
|
|
18424
|
-
|
|
18424
|
+
bank: components["schemas"]["BasePermissionsSchema_Bank"];
|
|
18425
18425
|
/**
|
|
18426
18426
|
* @description commission actions
|
|
18427
18427
|
* @default []
|
|
@@ -18442,6 +18442,11 @@ export interface components {
|
|
|
18442
18442
|
* @default []
|
|
18443
18443
|
*/
|
|
18444
18444
|
purchase: components["schemas"]["BasePermissionsSchema_Purchase"];
|
|
18445
|
+
/**
|
|
18446
|
+
* @description inventory actions
|
|
18447
|
+
* @default []
|
|
18448
|
+
*/
|
|
18449
|
+
inventory: components["schemas"]["BasePermissionsSchema_Inventory"];
|
|
18445
18450
|
/**
|
|
18446
18451
|
* @description sales actions
|
|
18447
18452
|
* @default []
|
|
@@ -18452,11 +18457,6 @@ export interface components {
|
|
|
18452
18457
|
* @default []
|
|
18453
18458
|
*/
|
|
18454
18459
|
hr: components["schemas"]["BasePermissionsSchema_Hr"];
|
|
18455
|
-
/**
|
|
18456
|
-
* @description inventory actions
|
|
18457
|
-
* @default []
|
|
18458
|
-
*/
|
|
18459
|
-
inventory: components["schemas"]["BasePermissionsSchema_Inventory"];
|
|
18460
18460
|
/**
|
|
18461
18461
|
* @description pos actions
|
|
18462
18462
|
* @default []
|
|
@@ -18493,6 +18493,12 @@ export interface components {
|
|
|
18493
18493
|
};
|
|
18494
18494
|
/** BasePermissionsSchema_Accounting */
|
|
18495
18495
|
BasePermissionsSchema_Accounting: {
|
|
18496
|
+
/**
|
|
18497
|
+
* Defaultsubsidiaryaccount
|
|
18498
|
+
* @description defaultsubsidiaryaccount actions
|
|
18499
|
+
* @default []
|
|
18500
|
+
*/
|
|
18501
|
+
defaultsubsidiaryaccount: components["schemas"]["BasePermissionsSchema_Accounting_DefaultsubsidiaryaccountEnum"][];
|
|
18496
18502
|
/**
|
|
18497
18503
|
* Chartofaccount
|
|
18498
18504
|
* @description chartofaccount actions
|
|
@@ -18539,6 +18545,11 @@ export interface components {
|
|
|
18539
18545
|
* @constant
|
|
18540
18546
|
*/
|
|
18541
18547
|
BasePermissionsSchema_Accounting_ClosingsalestaxEnum: "add";
|
|
18548
|
+
/**
|
|
18549
|
+
* BasePermissionsSchema_Accounting_DefaultsubsidiaryaccountEnum
|
|
18550
|
+
* @enum {string}
|
|
18551
|
+
*/
|
|
18552
|
+
BasePermissionsSchema_Accounting_DefaultsubsidiaryaccountEnum: "add" | "change" | "delete" | "view";
|
|
18542
18553
|
/**
|
|
18543
18554
|
* BasePermissionsSchema_Accounting_JournalvoucherEnum
|
|
18544
18555
|
* @enum {string}
|
|
@@ -18557,23 +18568,12 @@ export interface components {
|
|
|
18557
18568
|
* @default []
|
|
18558
18569
|
*/
|
|
18559
18570
|
banks: components["schemas"]["BasePermissionsSchema_Bank_BanksEnum"][];
|
|
18560
|
-
/**
|
|
18561
|
-
* Bankstatement
|
|
18562
|
-
* @description bankstatement actions
|
|
18563
|
-
* @default []
|
|
18564
|
-
*/
|
|
18565
|
-
bankstatement: components["schemas"]["BasePermissionsSchema_Bank_BankstatementEnum"][];
|
|
18566
18571
|
};
|
|
18567
18572
|
/**
|
|
18568
18573
|
* BasePermissionsSchema_Bank_BanksEnum
|
|
18569
18574
|
* @enum {string}
|
|
18570
18575
|
*/
|
|
18571
18576
|
BasePermissionsSchema_Bank_BanksEnum: "add" | "change" | "delete" | "print" | "view";
|
|
18572
|
-
/**
|
|
18573
|
-
* BasePermissionsSchema_Bank_BankstatementEnum
|
|
18574
|
-
* @enum {string}
|
|
18575
|
-
*/
|
|
18576
|
-
BasePermissionsSchema_Bank_BankstatementEnum: "export" | "view";
|
|
18577
18577
|
/** BasePermissionsSchema_Commission */
|
|
18578
18578
|
BasePermissionsSchema_Commission: {
|
|
18579
18579
|
/**
|
|
@@ -18635,23 +18635,12 @@ export interface components {
|
|
|
18635
18635
|
* @default []
|
|
18636
18636
|
*/
|
|
18637
18637
|
retail_customer: components["schemas"]["BasePermissionsSchema_Customer_Retail_customerEnum"][];
|
|
18638
|
-
/**
|
|
18639
|
-
* Customerstatement
|
|
18640
|
-
* @description customerstatement actions
|
|
18641
|
-
* @default []
|
|
18642
|
-
*/
|
|
18643
|
-
customerstatement: components["schemas"]["BasePermissionsSchema_Customer_CustomerstatementEnum"][];
|
|
18644
18638
|
};
|
|
18645
18639
|
/**
|
|
18646
18640
|
* BasePermissionsSchema_Customer_CustomerEnum
|
|
18647
18641
|
* @enum {string}
|
|
18648
18642
|
*/
|
|
18649
18643
|
BasePermissionsSchema_Customer_CustomerEnum: "add" | "change" | "delete" | "view";
|
|
18650
|
-
/**
|
|
18651
|
-
* BasePermissionsSchema_Customer_CustomerstatementEnum
|
|
18652
|
-
* @enum {string}
|
|
18653
|
-
*/
|
|
18654
|
-
BasePermissionsSchema_Customer_CustomerstatementEnum: "export" | "view";
|
|
18655
18644
|
/**
|
|
18656
18645
|
* BasePermissionsSchema_Customer_Retail_customerEnum
|
|
18657
18646
|
* @enum {string}
|
|
@@ -18674,11 +18663,11 @@ export interface components {
|
|
|
18674
18663
|
/** BasePermissionsSchema_Inventory */
|
|
18675
18664
|
BasePermissionsSchema_Inventory: {
|
|
18676
18665
|
/**
|
|
18677
|
-
*
|
|
18678
|
-
* @description
|
|
18666
|
+
* Goodsdeliverynote
|
|
18667
|
+
* @description goodsdeliverynote actions
|
|
18679
18668
|
* @default []
|
|
18680
18669
|
*/
|
|
18681
|
-
|
|
18670
|
+
goodsdeliverynote: components["schemas"]["BasePermissionsSchema_Inventory_GoodsdeliverynoteEnum"][];
|
|
18682
18671
|
/**
|
|
18683
18672
|
* Package
|
|
18684
18673
|
* @description package actions
|
|
@@ -18715,6 +18704,24 @@ export interface components {
|
|
|
18715
18704
|
* @default []
|
|
18716
18705
|
*/
|
|
18717
18706
|
openingquantity: components["schemas"]["BasePermissionsSchema_Inventory_OpeningquantityEnum"][];
|
|
18707
|
+
/**
|
|
18708
|
+
* Goodsreceiptnote
|
|
18709
|
+
* @description goodsreceiptnote actions
|
|
18710
|
+
* @default []
|
|
18711
|
+
*/
|
|
18712
|
+
goodsreceiptnote: components["schemas"]["BasePermissionsSchema_Inventory_GoodsreceiptnoteEnum"][];
|
|
18713
|
+
/**
|
|
18714
|
+
* Returnablepackagereconciliation
|
|
18715
|
+
* @description returnablepackagereconciliation actions
|
|
18716
|
+
* @default []
|
|
18717
|
+
*/
|
|
18718
|
+
returnablepackagereconciliation: components["schemas"]["BasePermissionsSchema_Inventory_ReturnablepackagereconciliationEnum"][];
|
|
18719
|
+
/**
|
|
18720
|
+
* Salesreturnpackage
|
|
18721
|
+
* @description salesreturnpackage actions
|
|
18722
|
+
* @default []
|
|
18723
|
+
*/
|
|
18724
|
+
salesreturnpackage: components["schemas"]["BasePermissionsSchema_Inventory_SalesreturnpackageEnum"][];
|
|
18718
18725
|
/**
|
|
18719
18726
|
* Internaltransfer
|
|
18720
18727
|
* @description internaltransfer actions
|
|
@@ -18728,11 +18735,16 @@ export interface components {
|
|
|
18728
18735
|
*/
|
|
18729
18736
|
warehouse: components["schemas"]["BasePermissionsSchema_Inventory_WarehouseEnum"][];
|
|
18730
18737
|
};
|
|
18738
|
+
/**
|
|
18739
|
+
* BasePermissionsSchema_Inventory_GoodsdeliverynoteEnum
|
|
18740
|
+
* @enum {string}
|
|
18741
|
+
*/
|
|
18742
|
+
BasePermissionsSchema_Inventory_GoodsdeliverynoteEnum: "add" | "approve" | "cancel" | "change" | "delete" | "export" | "resettodraft" | "send" | "view";
|
|
18731
18743
|
/**
|
|
18732
18744
|
* BasePermissionsSchema_Inventory_GoodsreceiptnoteEnum
|
|
18733
18745
|
* @enum {string}
|
|
18734
18746
|
*/
|
|
18735
|
-
BasePermissionsSchema_Inventory_GoodsreceiptnoteEnum: "add" | "change" | "delete" | "export" | "resettodraft" | "submit" | "view";
|
|
18747
|
+
BasePermissionsSchema_Inventory_GoodsreceiptnoteEnum: "add" | "cancel" | "change" | "delete" | "export" | "resettodraft" | "submit" | "view";
|
|
18736
18748
|
/**
|
|
18737
18749
|
* BasePermissionsSchema_Inventory_InternaltransferEnum
|
|
18738
18750
|
* @enum {string}
|
|
@@ -18763,6 +18775,16 @@ export interface components {
|
|
|
18763
18775
|
* @enum {string}
|
|
18764
18776
|
*/
|
|
18765
18777
|
BasePermissionsSchema_Inventory_PackagetypeEnum: "add" | "change" | "delete" | "view";
|
|
18778
|
+
/**
|
|
18779
|
+
* BasePermissionsSchema_Inventory_ReturnablepackagereconciliationEnum
|
|
18780
|
+
* @enum {string}
|
|
18781
|
+
*/
|
|
18782
|
+
BasePermissionsSchema_Inventory_ReturnablepackagereconciliationEnum: "add" | "approve" | "cancel" | "change" | "delete" | "resettodraft" | "view";
|
|
18783
|
+
/**
|
|
18784
|
+
* BasePermissionsSchema_Inventory_SalesreturnpackageEnum
|
|
18785
|
+
* @enum {string}
|
|
18786
|
+
*/
|
|
18787
|
+
BasePermissionsSchema_Inventory_SalesreturnpackageEnum: "add" | "approve" | "cancel" | "change" | "delete" | "resettodraft" | "view";
|
|
18766
18788
|
/**
|
|
18767
18789
|
* BasePermissionsSchema_Inventory_StockadjustmentEnum
|
|
18768
18790
|
* @enum {string}
|
|
@@ -18850,31 +18872,20 @@ export interface components {
|
|
|
18850
18872
|
* @default []
|
|
18851
18873
|
*/
|
|
18852
18874
|
project: components["schemas"]["BasePermissionsSchema_Project_ProjectEnum"][];
|
|
18853
|
-
/**
|
|
18854
|
-
* Projectstatement
|
|
18855
|
-
* @description projectstatement actions
|
|
18856
|
-
* @default []
|
|
18857
|
-
*/
|
|
18858
|
-
projectstatement: components["schemas"]["BasePermissionsSchema_Project_ProjectstatementEnum"][];
|
|
18859
18875
|
};
|
|
18860
18876
|
/**
|
|
18861
18877
|
* BasePermissionsSchema_Project_ProjectEnum
|
|
18862
18878
|
* @enum {string}
|
|
18863
18879
|
*/
|
|
18864
18880
|
BasePermissionsSchema_Project_ProjectEnum: "add" | "change" | "delete" | "view";
|
|
18865
|
-
/**
|
|
18866
|
-
* BasePermissionsSchema_Project_ProjectstatementEnum
|
|
18867
|
-
* @enum {string}
|
|
18868
|
-
*/
|
|
18869
|
-
BasePermissionsSchema_Project_ProjectstatementEnum: "export" | "view";
|
|
18870
18881
|
/** BasePermissionsSchema_Purchase */
|
|
18871
18882
|
BasePermissionsSchema_Purchase: {
|
|
18872
18883
|
/**
|
|
18873
|
-
*
|
|
18874
|
-
* @description
|
|
18884
|
+
* Purchasecreditnote
|
|
18885
|
+
* @description purchasecreditnote actions
|
|
18875
18886
|
* @default []
|
|
18876
18887
|
*/
|
|
18877
|
-
|
|
18888
|
+
purchasecreditnote: components["schemas"]["BasePermissionsSchema_Purchase_PurchasecreditnoteEnum"][];
|
|
18878
18889
|
/**
|
|
18879
18890
|
* Paymentvoucher
|
|
18880
18891
|
* @description paymentvoucher actions
|
|
@@ -18929,6 +18940,12 @@ export interface components {
|
|
|
18929
18940
|
* @default []
|
|
18930
18941
|
*/
|
|
18931
18942
|
requisition: components["schemas"]["BasePermissionsSchema_Purchase_RequisitionEnum"][];
|
|
18943
|
+
/**
|
|
18944
|
+
* Purchaseinvoice
|
|
18945
|
+
* @description purchaseinvoice actions
|
|
18946
|
+
* @default []
|
|
18947
|
+
*/
|
|
18948
|
+
purchaseinvoice: components["schemas"]["BasePermissionsSchema_Purchase_PurchaseinvoiceEnum"][];
|
|
18932
18949
|
/**
|
|
18933
18950
|
* Refundvoucher
|
|
18934
18951
|
* @description refundvoucher actions
|
|
@@ -18948,20 +18965,25 @@ export interface components {
|
|
|
18948
18965
|
*/
|
|
18949
18966
|
BasePermissionsSchema_Purchase_AdvancepaymentEnum: "add" | "approve" | "cancel" | "change" | "delete" | "export" | "print" | "resettodraft" | "send" | "view";
|
|
18950
18967
|
/**
|
|
18951
|
-
*
|
|
18968
|
+
* BasePermissionsSchema_Purchase_PaymentvoucherEnum
|
|
18952
18969
|
* @enum {string}
|
|
18953
18970
|
*/
|
|
18954
|
-
|
|
18971
|
+
BasePermissionsSchema_Purchase_PaymentvoucherEnum: "add" | "approve" | "cancel" | "change" | "delete" | "export" | "resettodraft" | "send" | "view";
|
|
18955
18972
|
/**
|
|
18956
|
-
*
|
|
18973
|
+
* BasePermissionsSchema_Purchase_PurchasecreditnoteEnum
|
|
18957
18974
|
* @enum {string}
|
|
18958
18975
|
*/
|
|
18959
|
-
|
|
18976
|
+
BasePermissionsSchema_Purchase_PurchasecreditnoteEnum: "add" | "approve" | "cancel" | "change" | "delete" | "export" | "resettodraft" | "send" | "view";
|
|
18960
18977
|
/**
|
|
18961
18978
|
* BasePermissionsSchema_Purchase_PurchasehistorypriceEnum
|
|
18962
18979
|
* @constant
|
|
18963
18980
|
*/
|
|
18964
18981
|
BasePermissionsSchema_Purchase_PurchasehistorypriceEnum: "view";
|
|
18982
|
+
/**
|
|
18983
|
+
* BasePermissionsSchema_Purchase_PurchaseinvoiceEnum
|
|
18984
|
+
* @enum {string}
|
|
18985
|
+
*/
|
|
18986
|
+
BasePermissionsSchema_Purchase_PurchaseinvoiceEnum: "add" | "approve" | "cancel" | "change" | "delete" | "export" | "print" | "resettodraft" | "send" | "view";
|
|
18965
18987
|
/**
|
|
18966
18988
|
* BasePermissionsSchema_Purchase_PurchaseorderEnum
|
|
18967
18989
|
* @enum {string}
|
|
@@ -19043,6 +19065,12 @@ export interface components {
|
|
|
19043
19065
|
* @default []
|
|
19044
19066
|
*/
|
|
19045
19067
|
accountstatement: components["schemas"]["BasePermissionsSchema_Report_Accounting_AccountstatementEnum"][];
|
|
19068
|
+
/**
|
|
19069
|
+
* Balancesheet
|
|
19070
|
+
* @description balancesheet actions
|
|
19071
|
+
* @default []
|
|
19072
|
+
*/
|
|
19073
|
+
balancesheet: components["schemas"]["BasePermissionsSchema_Report_Accounting_BalancesheetEnum"][];
|
|
19046
19074
|
/**
|
|
19047
19075
|
* Cashflow
|
|
19048
19076
|
* @description cashflow actions
|
|
@@ -19079,11 +19107,16 @@ export interface components {
|
|
|
19079
19107
|
* @enum {string}
|
|
19080
19108
|
*/
|
|
19081
19109
|
BasePermissionsSchema_Report_Accounting_AccountstatementEnum: "export" | "view";
|
|
19110
|
+
/**
|
|
19111
|
+
* BasePermissionsSchema_Report_Accounting_BalancesheetEnum
|
|
19112
|
+
* @enum {string}
|
|
19113
|
+
*/
|
|
19114
|
+
BasePermissionsSchema_Report_Accounting_BalancesheetEnum: "export" | "view";
|
|
19082
19115
|
/**
|
|
19083
19116
|
* BasePermissionsSchema_Report_Accounting_CashflowEnum
|
|
19084
|
-
* @
|
|
19117
|
+
* @enum {string}
|
|
19085
19118
|
*/
|
|
19086
|
-
BasePermissionsSchema_Report_Accounting_CashflowEnum: "view";
|
|
19119
|
+
BasePermissionsSchema_Report_Accounting_CashflowEnum: "export" | "view";
|
|
19087
19120
|
/**
|
|
19088
19121
|
* BasePermissionsSchema_Report_Accounting_GeneralledgerreportEnum
|
|
19089
19122
|
* @enum {string}
|
|
@@ -19101,12 +19134,6 @@ export interface components {
|
|
|
19101
19134
|
BasePermissionsSchema_Report_Accounting_TrialbalanceEnum: "export" | "view";
|
|
19102
19135
|
/** BasePermissionsSchema_Report_Bank */
|
|
19103
19136
|
BasePermissionsSchema_Report_Bank: {
|
|
19104
|
-
/**
|
|
19105
|
-
* Balancesheet
|
|
19106
|
-
* @description balancesheet actions
|
|
19107
|
-
* @default []
|
|
19108
|
-
*/
|
|
19109
|
-
balancesheet: components["schemas"]["BasePermissionsSchema_Report_Bank_BalancesheetEnum"][];
|
|
19110
19137
|
/**
|
|
19111
19138
|
* Bankstatement
|
|
19112
19139
|
* @description bankstatement actions
|
|
@@ -19114,11 +19141,6 @@ export interface components {
|
|
|
19114
19141
|
*/
|
|
19115
19142
|
bankstatement: components["schemas"]["BasePermissionsSchema_Report_Bank_BankstatementEnum"][];
|
|
19116
19143
|
};
|
|
19117
|
-
/**
|
|
19118
|
-
* BasePermissionsSchema_Report_Bank_BalancesheetEnum
|
|
19119
|
-
* @enum {string}
|
|
19120
|
-
*/
|
|
19121
|
-
BasePermissionsSchema_Report_Bank_BalancesheetEnum: "export" | "view";
|
|
19122
19144
|
/**
|
|
19123
19145
|
* BasePermissionsSchema_Report_Bank_BankstatementEnum
|
|
19124
19146
|
* @enum {string}
|
|
@@ -19218,12 +19240,36 @@ export interface components {
|
|
|
19218
19240
|
* @default []
|
|
19219
19241
|
*/
|
|
19220
19242
|
receiptvoucher: components["schemas"]["BasePermissionsSchema_Sales_ReceiptvoucherEnum"][];
|
|
19243
|
+
/**
|
|
19244
|
+
* Salesreturninvoice
|
|
19245
|
+
* @description salesreturninvoice actions
|
|
19246
|
+
* @default []
|
|
19247
|
+
*/
|
|
19248
|
+
salesreturninvoice: components["schemas"]["BasePermissionsSchema_Sales_SalesreturninvoiceEnum"][];
|
|
19249
|
+
/**
|
|
19250
|
+
* Salesreturnorder
|
|
19251
|
+
* @description salesreturnorder actions
|
|
19252
|
+
* @default []
|
|
19253
|
+
*/
|
|
19254
|
+
salesreturnorder: components["schemas"]["BasePermissionsSchema_Sales_SalesreturnorderEnum"][];
|
|
19255
|
+
/**
|
|
19256
|
+
* Salescreditnote
|
|
19257
|
+
* @description salescreditnote actions
|
|
19258
|
+
* @default []
|
|
19259
|
+
*/
|
|
19260
|
+
salescreditnote: components["schemas"]["BasePermissionsSchema_Sales_SalescreditnoteEnum"][];
|
|
19221
19261
|
/**
|
|
19222
19262
|
* Salesinvoice
|
|
19223
19263
|
* @description salesinvoice actions
|
|
19224
19264
|
* @default []
|
|
19225
19265
|
*/
|
|
19226
19266
|
salesinvoice: components["schemas"]["BasePermissionsSchema_Sales_SalesinvoiceEnum"][];
|
|
19267
|
+
/**
|
|
19268
|
+
* Salesrefundvoucher
|
|
19269
|
+
* @description salesrefundvoucher actions
|
|
19270
|
+
* @default []
|
|
19271
|
+
*/
|
|
19272
|
+
salesrefundvoucher: components["schemas"]["BasePermissionsSchema_Sales_SalesrefundvoucherEnum"][];
|
|
19227
19273
|
/**
|
|
19228
19274
|
* Cost
|
|
19229
19275
|
* @description cost actions
|
|
@@ -19284,6 +19330,11 @@ export interface components {
|
|
|
19284
19330
|
* @enum {string}
|
|
19285
19331
|
*/
|
|
19286
19332
|
BasePermissionsSchema_Sales_ReceiptvoucherEnum: "add" | "approve" | "cancel" | "change" | "delete" | "export" | "resettodraft" | "send" | "view";
|
|
19333
|
+
/**
|
|
19334
|
+
* BasePermissionsSchema_Sales_SalescreditnoteEnum
|
|
19335
|
+
* @enum {string}
|
|
19336
|
+
*/
|
|
19337
|
+
BasePermissionsSchema_Sales_SalescreditnoteEnum: "add" | "approve" | "cancel" | "change" | "delete" | "export" | "resettodraft" | "send" | "view";
|
|
19287
19338
|
/**
|
|
19288
19339
|
* BasePermissionsSchema_Sales_SalesinvoiceEnum
|
|
19289
19340
|
* @enum {string}
|
|
@@ -19304,6 +19355,21 @@ export interface components {
|
|
|
19304
19355
|
* @enum {string}
|
|
19305
19356
|
*/
|
|
19306
19357
|
BasePermissionsSchema_Sales_SalesquotationEnum: "add" | "approve" | "cancel" | "change" | "delete" | "export" | "resettodraft" | "send" | "view";
|
|
19358
|
+
/**
|
|
19359
|
+
* BasePermissionsSchema_Sales_SalesrefundvoucherEnum
|
|
19360
|
+
* @enum {string}
|
|
19361
|
+
*/
|
|
19362
|
+
BasePermissionsSchema_Sales_SalesrefundvoucherEnum: "add" | "approve" | "cancel" | "change" | "delete" | "export" | "resettodraft" | "send" | "view";
|
|
19363
|
+
/**
|
|
19364
|
+
* BasePermissionsSchema_Sales_SalesreturninvoiceEnum
|
|
19365
|
+
* @enum {string}
|
|
19366
|
+
*/
|
|
19367
|
+
BasePermissionsSchema_Sales_SalesreturninvoiceEnum: "add" | "approve" | "cancel" | "change" | "delete" | "export" | "resettodraft" | "send" | "view";
|
|
19368
|
+
/**
|
|
19369
|
+
* BasePermissionsSchema_Sales_SalesreturnorderEnum
|
|
19370
|
+
* @enum {string}
|
|
19371
|
+
*/
|
|
19372
|
+
BasePermissionsSchema_Sales_SalesreturnorderEnum: "add" | "approve" | "cancel" | "change" | "delete" | "export" | "resettodraft" | "view";
|
|
19307
19373
|
/** BasePermissionsSchema_Settings */
|
|
19308
19374
|
BasePermissionsSchema_Settings: {
|
|
19309
19375
|
/**
|
|
@@ -19539,7 +19605,7 @@ export interface components {
|
|
|
19539
19605
|
* BasePermissionsSchema_Settings_Approval_ApprovalsettingsEnum
|
|
19540
19606
|
* @enum {string}
|
|
19541
19607
|
*/
|
|
19542
|
-
BasePermissionsSchema_Settings_Approval_ApprovalsettingsEnum: "addadvancepayment" | "add" | "addclosingcommission" | "addcommissionpayout" | "addcommissionstructure" | "addcreditnote" | "adddownpayment" | "addgoodsreceiptnote" | "addinternaltransfer" | "addjournalvoucher" | "addofferandpromotion" | "addopeningquantity" | "addpaymentvoucher" | "addpurchaseorder" | "addpurchasequotation" | "addpurchasereturnorder" | "addreceiptvoucher" | "addrefundvoucher" | "addrequestforquotation" | "addrequisition" | "addsalesinvoice" | "addsalesorder" | "addsalespricelist" | "addsalesquotation" | "addstockadjustment" | "addsupplierpricelist" | "changeadvancepayment" | "change" | "changeclosingcommission" | "changecommissionpayout" | "changecommissionstructure" | "changecreditnote" | "changedownpayment" | "changegoodsreceiptnote" | "changeinternaltransfer" | "changejournalvoucher" | "changeofferandpromotion" | "changeopeningquantity" | "changepaymentvoucher" | "changepurchaseorder" | "changepurchasequotation" | "changepurchasereturnorder" | "changereceiptvoucher" | "changerefundvoucher" | "changerequestforquotation" | "changerequisition" | "changesalesinvoice" | "changesalesorder" | "changesalespricelist" | "changesalesquotation" | "changestockadjustment" | "changesupplierpricelist" | "deleteadvancepayment" | "delete" | "deleteclosingcommission" | "deletecommissionpayout" | "deletecommissionstructure" | "deletecreditnote" | "deletedownpayment" | "deletegoodsreceiptnote" | "deleteinternaltransfer" | "deletejournalvoucher" | "deleteofferandpromotion" | "deleteopeningquantity" | "deletepaymentvoucher" | "deletepurchaseorder" | "deletepurchasequotation" | "deletepurchasereturnorder" | "deletereceiptvoucher" | "deleterefundvoucher" | "deleterequestforquotation" | "deleterequisition" | "deletesalesinvoice" | "deletesalesorder" | "deletesalespricelist" | "deletesalesquotation" | "deletestockadjustment" | "deletesupplierpricelist" | "viewadvancepayment" | "view" | "viewclosingcommission" | "viewcommissionpayout" | "viewcommissionstructure" | "viewcreditnote" | "viewdownpayment" | "viewgoodsreceiptnote" | "viewinternaltransfer" | "viewjournalvoucher" | "viewofferandpromotion" | "viewopeningquantity" | "viewpaymentvoucher" | "viewpurchaseorder" | "viewpurchasequotation" | "viewpurchasereturnorder" | "viewreceiptvoucher" | "viewrefundvoucher" | "viewrequestforquotation" | "viewrequisition" | "viewsalesinvoice" | "viewsalesorder" | "viewsalespricelist" | "viewsalesquotation" | "viewstockadjustment" | "viewsupplierpricelist";
|
|
19608
|
+
BasePermissionsSchema_Settings_Approval_ApprovalsettingsEnum: "addadvancepayment" | "add" | "addclosingcommission" | "addcommissionpayout" | "addcommissionstructure" | "addcreditnote" | "adddownpayment" | "addgoodsdeliverynote" | "addgoodsreceiptnote" | "addinternaltransfer" | "addjournalvoucher" | "addofferandpromotion" | "addopeningquantity" | "addpaymentvoucher" | "addpurchasecreditnote" | "addpurchaseorder" | "addpurchasequotation" | "addpurchasereturnorder" | "addreceiptvoucher" | "addrefundvoucher" | "addrequestforquotation" | "addrequisition" | "addreturnablepackagereconciliation" | "addsalescreditnote" | "addsalesinvoice" | "addsalesorder" | "addsalespricelist" | "addsalesquotation" | "addsalesrefundvoucher" | "addsalesreturninvoice" | "addsalesreturnorder" | "addsalesreturnpackage" | "addstockadjustment" | "addsupplierpricelist" | "changeadvancepayment" | "change" | "changeclosingcommission" | "changecommissionpayout" | "changecommissionstructure" | "changecreditnote" | "changedownpayment" | "changegoodsdeliverynote" | "changegoodsreceiptnote" | "changeinternaltransfer" | "changejournalvoucher" | "changeofferandpromotion" | "changeopeningquantity" | "changepaymentvoucher" | "changepurchasecreditnote" | "changepurchaseorder" | "changepurchasequotation" | "changepurchasereturnorder" | "changereceiptvoucher" | "changerefundvoucher" | "changerequestforquotation" | "changerequisition" | "changereturnablepackagereconciliation" | "changesalescreditnote" | "changesalesinvoice" | "changesalesorder" | "changesalespricelist" | "changesalesquotation" | "changesalesrefundvoucher" | "changesalesreturninvoice" | "changesalesreturnorder" | "changesalesreturnpackage" | "changestockadjustment" | "changesupplierpricelist" | "deleteadvancepayment" | "delete" | "deleteclosingcommission" | "deletecommissionpayout" | "deletecommissionstructure" | "deletecreditnote" | "deletedownpayment" | "deletegoodsdeliverynote" | "deletegoodsreceiptnote" | "deleteinternaltransfer" | "deletejournalvoucher" | "deleteofferandpromotion" | "deleteopeningquantity" | "deletepaymentvoucher" | "deletepurchasecreditnote" | "deletepurchaseorder" | "deletepurchasequotation" | "deletepurchasereturnorder" | "deletereceiptvoucher" | "deleterefundvoucher" | "deleterequestforquotation" | "deleterequisition" | "deletereturnablepackagereconciliation" | "deletesalescreditnote" | "deletesalesinvoice" | "deletesalesorder" | "deletesalespricelist" | "deletesalesquotation" | "deletesalesrefundvoucher" | "deletesalesreturninvoice" | "deletesalesreturnorder" | "deletesalesreturnpackage" | "deletestockadjustment" | "deletesupplierpricelist" | "viewadvancepayment" | "view" | "viewclosingcommission" | "viewcommissionpayout" | "viewcommissionstructure" | "viewcreditnote" | "viewdownpayment" | "viewgoodsdeliverynote" | "viewgoodsreceiptnote" | "viewinternaltransfer" | "viewjournalvoucher" | "viewofferandpromotion" | "viewopeningquantity" | "viewpaymentvoucher" | "viewpurchasecreditnote" | "viewpurchaseorder" | "viewpurchasequotation" | "viewpurchasereturnorder" | "viewreceiptvoucher" | "viewrefundvoucher" | "viewrequestforquotation" | "viewrequisition" | "viewreturnablepackagereconciliation" | "viewsalescreditnote" | "viewsalesinvoice" | "viewsalesorder" | "viewsalespricelist" | "viewsalesquotation" | "viewsalesrefundvoucher" | "viewsalesreturninvoice" | "viewsalesreturnorder" | "viewsalesreturnpackage" | "viewstockadjustment" | "viewsupplierpricelist";
|
|
19543
19609
|
/**
|
|
19544
19610
|
* BasePermissionsSchema_Settings_Approval_ApprovaltrackingEnum
|
|
19545
19611
|
* @enum {string}
|
|
@@ -19595,17 +19661,17 @@ export interface components {
|
|
|
19595
19661
|
/** BasePermissionsSchema_Settings_Hr */
|
|
19596
19662
|
BasePermissionsSchema_Settings_Hr: {
|
|
19597
19663
|
/**
|
|
19598
|
-
*
|
|
19599
|
-
* @description
|
|
19664
|
+
* Jobtitle
|
|
19665
|
+
* @description jobtitle actions
|
|
19600
19666
|
* @default []
|
|
19601
19667
|
*/
|
|
19602
|
-
|
|
19668
|
+
jobtitle: components["schemas"]["BasePermissionsSchema_Settings_Hr_JobtitleEnum"][];
|
|
19603
19669
|
};
|
|
19604
19670
|
/**
|
|
19605
|
-
*
|
|
19671
|
+
* BasePermissionsSchema_Settings_Hr_JobtitleEnum
|
|
19606
19672
|
* @enum {string}
|
|
19607
19673
|
*/
|
|
19608
|
-
|
|
19674
|
+
BasePermissionsSchema_Settings_Hr_JobtitleEnum: "add" | "change" | "delete" | "view";
|
|
19609
19675
|
/** BasePermissionsSchema_Settings_Integrations */
|
|
19610
19676
|
BasePermissionsSchema_Settings_Integrations: {
|
|
19611
19677
|
/**
|
|
@@ -19713,6 +19779,12 @@ export interface components {
|
|
|
19713
19779
|
BasePermissionsSchema_Settings_Inventory_VariationsheaderEnum: "add" | "change" | "delete" | "view";
|
|
19714
19780
|
/** BasePermissionsSchema_Settings_Miscellaneous */
|
|
19715
19781
|
BasePermissionsSchema_Settings_Miscellaneous: {
|
|
19782
|
+
/**
|
|
19783
|
+
* Contactsegmentation
|
|
19784
|
+
* @description contactsegmentation actions
|
|
19785
|
+
* @default []
|
|
19786
|
+
*/
|
|
19787
|
+
contactsegmentation: components["schemas"]["BasePermissionsSchema_Settings_Miscellaneous_ContactsegmentationEnum"][];
|
|
19716
19788
|
/**
|
|
19717
19789
|
* Currency
|
|
19718
19790
|
* @description currency actions
|
|
@@ -19755,6 +19827,12 @@ export interface components {
|
|
|
19755
19827
|
* @default []
|
|
19756
19828
|
*/
|
|
19757
19829
|
company: components["schemas"]["BasePermissionsSchema_Settings_Miscellaneous_CompanyEnum"][];
|
|
19830
|
+
/**
|
|
19831
|
+
* Department
|
|
19832
|
+
* @description department actions
|
|
19833
|
+
* @default []
|
|
19834
|
+
*/
|
|
19835
|
+
department: components["schemas"]["BasePermissionsSchema_Settings_Miscellaneous_DepartmentEnum"][];
|
|
19758
19836
|
/**
|
|
19759
19837
|
* City
|
|
19760
19838
|
* @description city actions
|
|
@@ -19789,11 +19867,21 @@ export interface components {
|
|
|
19789
19867
|
* @enum {string}
|
|
19790
19868
|
*/
|
|
19791
19869
|
BasePermissionsSchema_Settings_Miscellaneous_CompanyEnum: "add" | "change" | "delete" | "view";
|
|
19870
|
+
/**
|
|
19871
|
+
* BasePermissionsSchema_Settings_Miscellaneous_ContactsegmentationEnum
|
|
19872
|
+
* @enum {string}
|
|
19873
|
+
*/
|
|
19874
|
+
BasePermissionsSchema_Settings_Miscellaneous_ContactsegmentationEnum: "add" | "change" | "delete" | "view";
|
|
19792
19875
|
/**
|
|
19793
19876
|
* BasePermissionsSchema_Settings_Miscellaneous_CurrencyEnum
|
|
19794
19877
|
* @enum {string}
|
|
19795
19878
|
*/
|
|
19796
19879
|
BasePermissionsSchema_Settings_Miscellaneous_CurrencyEnum: "add" | "change" | "delete" | "view";
|
|
19880
|
+
/**
|
|
19881
|
+
* BasePermissionsSchema_Settings_Miscellaneous_DepartmentEnum
|
|
19882
|
+
* @enum {string}
|
|
19883
|
+
*/
|
|
19884
|
+
BasePermissionsSchema_Settings_Miscellaneous_DepartmentEnum: "add" | "change" | "delete" | "view";
|
|
19797
19885
|
/**
|
|
19798
19886
|
* BasePermissionsSchema_Settings_Miscellaneous_FacilityEnum
|
|
19799
19887
|
* @enum {string}
|
|
@@ -19888,23 +19976,12 @@ export interface components {
|
|
|
19888
19976
|
* @default []
|
|
19889
19977
|
*/
|
|
19890
19978
|
supplier: components["schemas"]["BasePermissionsSchema_Supplier_SupplierEnum"][];
|
|
19891
|
-
/**
|
|
19892
|
-
* Supplierstatement
|
|
19893
|
-
* @description supplierstatement actions
|
|
19894
|
-
* @default []
|
|
19895
|
-
*/
|
|
19896
|
-
supplierstatement: components["schemas"]["BasePermissionsSchema_Supplier_SupplierstatementEnum"][];
|
|
19897
19979
|
};
|
|
19898
19980
|
/**
|
|
19899
19981
|
* BasePermissionsSchema_Supplier_SupplierEnum
|
|
19900
19982
|
* @enum {string}
|
|
19901
19983
|
*/
|
|
19902
19984
|
BasePermissionsSchema_Supplier_SupplierEnum: "add" | "change" | "delete" | "view";
|
|
19903
|
-
/**
|
|
19904
|
-
* BasePermissionsSchema_Supplier_SupplierstatementEnum
|
|
19905
|
-
* @enum {string}
|
|
19906
|
-
*/
|
|
19907
|
-
BasePermissionsSchema_Supplier_SupplierstatementEnum: "export" | "view";
|
|
19908
19985
|
/**
|
|
19909
19986
|
* CountryCodes
|
|
19910
19987
|
* @enum {string}
|
|
@@ -26504,7 +26581,7 @@ export interface components {
|
|
|
26504
26581
|
/**
|
|
26505
26582
|
* Id
|
|
26506
26583
|
* Format: uuid
|
|
26507
|
-
* @example
|
|
26584
|
+
* @example 2a17dde1-27f2-40f4-8932-663f4ce8e3a4
|
|
26508
26585
|
*/
|
|
26509
26586
|
id: string;
|
|
26510
26587
|
/**
|
|
@@ -36019,13 +36096,17 @@ export interface components {
|
|
|
36019
36096
|
/** Commissionvalue */
|
|
36020
36097
|
commissionValue: number;
|
|
36021
36098
|
commissionValueType: components["schemas"]["CommissionValueTypes"];
|
|
36022
|
-
/**
|
|
36099
|
+
/**
|
|
36100
|
+
* Salesvolumevalue
|
|
36101
|
+
* @description visible when structure = tiered, required when salesTierType exist
|
|
36102
|
+
*/
|
|
36023
36103
|
salesVolumeValue?: number;
|
|
36024
36104
|
/**
|
|
36025
36105
|
* Currency
|
|
36026
|
-
* @description currency id
|
|
36106
|
+
* @description currency id, visible when structure = tiered, required when salesVolumeValue exist
|
|
36027
36107
|
*/
|
|
36028
36108
|
currency?: number;
|
|
36109
|
+
/** @description visible when structure = tiered */
|
|
36029
36110
|
salesTierType?: components["schemas"]["SalesTierType"];
|
|
36030
36111
|
/**
|
|
36031
36112
|
* Products
|
|
@@ -36047,19 +36128,25 @@ export interface components {
|
|
|
36047
36128
|
categories: number[];
|
|
36048
36129
|
/**
|
|
36049
36130
|
* Customergroups
|
|
36050
|
-
* @description
|
|
36131
|
+
* @description
|
|
36132
|
+
* customers or customerGroups required , cannot both be empty
|
|
36133
|
+
* to get customer groups use route /api/v1/common/contact-segmentation/ and filter by type=customer
|
|
36134
|
+
*
|
|
36051
36135
|
* @default []
|
|
36052
36136
|
*/
|
|
36053
36137
|
customerGroups: string[];
|
|
36054
36138
|
/**
|
|
36055
36139
|
* Customers
|
|
36056
|
-
* @description
|
|
36140
|
+
* @description
|
|
36141
|
+
* customers or customerGroups required , cannot both be empty
|
|
36142
|
+
* to get customers use route /api/v1/customers/?type=children and filter by isActive=true
|
|
36143
|
+
*
|
|
36057
36144
|
* @default []
|
|
36058
36145
|
*/
|
|
36059
36146
|
customers: number[];
|
|
36060
36147
|
/**
|
|
36061
36148
|
* Paymentmethod
|
|
36062
|
-
* @description to get payment methods use route /api/v1/payment-methods/
|
|
36149
|
+
* @description visible and required when structure = paymentBased, to get payment methods use route /api/v1/payment-methods/
|
|
36063
36150
|
*/
|
|
36064
36151
|
paymentMethod?: number;
|
|
36065
36152
|
/** Target */
|
|
@@ -36167,13 +36254,17 @@ export interface components {
|
|
|
36167
36254
|
/** Commissionvalue */
|
|
36168
36255
|
commissionValue: number;
|
|
36169
36256
|
commissionValueType: components["schemas"]["CommissionValueTypes"];
|
|
36170
|
-
/**
|
|
36257
|
+
/**
|
|
36258
|
+
* Salesvolumevalue
|
|
36259
|
+
* @description visible when structure = tiered, required when salesTierType exist
|
|
36260
|
+
*/
|
|
36171
36261
|
salesVolumeValue?: number;
|
|
36172
36262
|
/**
|
|
36173
36263
|
* Currency
|
|
36174
|
-
* @description currency id
|
|
36264
|
+
* @description currency id, visible when structure = tiered, required when salesVolumeValue exist
|
|
36175
36265
|
*/
|
|
36176
36266
|
currency?: number;
|
|
36267
|
+
/** @description visible when structure = tiered */
|
|
36177
36268
|
salesTierType?: components["schemas"]["SalesTierType"];
|
|
36178
36269
|
/**
|
|
36179
36270
|
* Products
|
|
@@ -36195,15 +36286,26 @@ export interface components {
|
|
|
36195
36286
|
categories: number[];
|
|
36196
36287
|
/**
|
|
36197
36288
|
* Customergroups
|
|
36289
|
+
* @description
|
|
36290
|
+
* customers or customerGroups required , cannot both be empty
|
|
36291
|
+
* to get customer groups use route /api/v1/common/contact-segmentation/ and filter by type=customer
|
|
36292
|
+
*
|
|
36198
36293
|
* @default []
|
|
36199
36294
|
*/
|
|
36200
36295
|
customerGroups: string[];
|
|
36201
36296
|
/**
|
|
36202
36297
|
* Customers
|
|
36298
|
+
* @description
|
|
36299
|
+
* customers or customerGroups required , cannot both be empty
|
|
36300
|
+
* to get customers use route /api/v1/customers/?type=children and filter by isActive=true
|
|
36301
|
+
*
|
|
36203
36302
|
* @default []
|
|
36204
36303
|
*/
|
|
36205
36304
|
customers: number[];
|
|
36206
|
-
/**
|
|
36305
|
+
/**
|
|
36306
|
+
* Paymentmethod
|
|
36307
|
+
* @description visible and required when structure = paymentBased, to get payment methods use route /api/v1/payment-methods/
|
|
36308
|
+
*/
|
|
36207
36309
|
paymentMethod?: number;
|
|
36208
36310
|
/** Target */
|
|
36209
36311
|
target?: number;
|