@erp-galoper/types 1.0.222 → 1.0.224

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 +161 -84
  2. 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 bank actions
18416
+ * @description accounting actions
18417
18417
  * @default []
18418
18418
  */
18419
- bank: components["schemas"]["BasePermissionsSchema_Bank"];
18419
+ accounting: components["schemas"]["BasePermissionsSchema_Accounting"];
18420
18420
  /**
18421
- * @description accounting actions
18421
+ * @description bank actions
18422
18422
  * @default []
18423
18423
  */
18424
- accounting: components["schemas"]["BasePermissionsSchema_Accounting"];
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
- * Goodsreceiptnote
18678
- * @description goodsreceiptnote actions
18666
+ * Goodsdeliverynote
18667
+ * @description goodsdeliverynote actions
18679
18668
  * @default []
18680
18669
  */
18681
- goodsreceiptnote: components["schemas"]["BasePermissionsSchema_Inventory_GoodsreceiptnoteEnum"][];
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
- * Creditnote
18874
- * @description creditnote actions
18884
+ * Purchasecreditnote
18885
+ * @description purchasecreditnote actions
18875
18886
  * @default []
18876
18887
  */
18877
- creditnote: components["schemas"]["BasePermissionsSchema_Purchase_CreditnoteEnum"][];
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
- * BasePermissionsSchema_Purchase_CreditnoteEnum
18968
+ * BasePermissionsSchema_Purchase_PaymentvoucherEnum
18952
18969
  * @enum {string}
18953
18970
  */
18954
- BasePermissionsSchema_Purchase_CreditnoteEnum: "add" | "approve" | "cancel" | "change" | "delete" | "export" | "resettodraft" | "send" | "view";
18971
+ BasePermissionsSchema_Purchase_PaymentvoucherEnum: "add" | "approve" | "cancel" | "change" | "delete" | "export" | "resettodraft" | "send" | "view";
18955
18972
  /**
18956
- * BasePermissionsSchema_Purchase_PaymentvoucherEnum
18973
+ * BasePermissionsSchema_Purchase_PurchasecreditnoteEnum
18957
18974
  * @enum {string}
18958
18975
  */
18959
- BasePermissionsSchema_Purchase_PaymentvoucherEnum: "add" | "approve" | "cancel" | "change" | "delete" | "export" | "resettodraft" | "send" | "view";
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
- * @constant
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
- * Title
19599
- * @description title actions
19664
+ * Jobtitle
19665
+ * @description jobtitle actions
19600
19666
  * @default []
19601
19667
  */
19602
- title: components["schemas"]["BasePermissionsSchema_Settings_Hr_TitleEnum"][];
19668
+ jobtitle: components["schemas"]["BasePermissionsSchema_Settings_Hr_JobtitleEnum"][];
19603
19669
  };
19604
19670
  /**
19605
- * BasePermissionsSchema_Settings_Hr_TitleEnum
19671
+ * BasePermissionsSchema_Settings_Hr_JobtitleEnum
19606
19672
  * @enum {string}
19607
19673
  */
19608
- BasePermissionsSchema_Settings_Hr_TitleEnum: "add" | "change" | "delete" | "view";
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 bc2613bf-e457-454b-89df-290047634b65
26584
+ * @example 7030a511-9d22-40ac-8b40-4e0774c05e52
26508
26585
  */
26509
26586
  id: string;
26510
26587
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@erp-galoper/types",
3
- "version": "1.0.222",
3
+ "version": "1.0.224",
4
4
  "main": "openapi.ts",
5
5
  "types": "openapi.ts",
6
6
  "files": ["openapi.ts"],