@erp-galoper/main-package 1.0.159 → 1.0.160
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 +19 -3
- package/package.json +1 -1
package/openapi.ts
CHANGED
@@ -9013,12 +9013,23 @@ export interface components {
|
|
9013
9013
|
* @default []
|
9014
9014
|
*/
|
9015
9015
|
project: components["schemas"]["BasePermissionsSchema_Project_ProjectEnum"][];
|
9016
|
+
/**
|
9017
|
+
* Projectstatement
|
9018
|
+
* @description projectstatement actions
|
9019
|
+
* @default []
|
9020
|
+
*/
|
9021
|
+
projectstatement: components["schemas"]["BasePermissionsSchema_Project_ProjectstatementEnum"][];
|
9016
9022
|
};
|
9017
9023
|
/**
|
9018
9024
|
* BasePermissionsSchema_Project_ProjectEnum
|
9019
9025
|
* @enum {string}
|
9020
9026
|
*/
|
9021
9027
|
BasePermissionsSchema_Project_ProjectEnum: "add" | "change" | "delete" | "view";
|
9028
|
+
/**
|
9029
|
+
* BasePermissionsSchema_Project_ProjectstatementEnum
|
9030
|
+
* @enum {string}
|
9031
|
+
*/
|
9032
|
+
BasePermissionsSchema_Project_ProjectstatementEnum: "export" | "view";
|
9022
9033
|
/** BasePermissionsSchema_Purchase */
|
9023
9034
|
BasePermissionsSchema_Purchase: {
|
9024
9035
|
/**
|
@@ -9190,8 +9201,13 @@ export interface components {
|
|
9190
9201
|
* @description projectstatement actions
|
9191
9202
|
* @default []
|
9192
9203
|
*/
|
9193
|
-
projectstatement:
|
9204
|
+
projectstatement: components["schemas"]["BasePermissionsSchema_Report_Project_ProjectstatementEnum"][];
|
9194
9205
|
};
|
9206
|
+
/**
|
9207
|
+
* BasePermissionsSchema_Report_Project_ProjectstatementEnum
|
9208
|
+
* @enum {string}
|
9209
|
+
*/
|
9210
|
+
BasePermissionsSchema_Report_Project_ProjectstatementEnum: "export" | "view";
|
9195
9211
|
/** BasePermissionsSchema_Report_Supplier */
|
9196
9212
|
BasePermissionsSchema_Report_Supplier: {
|
9197
9213
|
/**
|
@@ -9724,7 +9740,7 @@ export interface components {
|
|
9724
9740
|
* BasePermissionsSchema_Settings_Purchase_PurchasesettingsEnum
|
9725
9741
|
* @enum {string}
|
9726
9742
|
*/
|
9727
|
-
BasePermissionsSchema_Settings_Purchase_PurchasesettingsEnum: "add" | "change" | "
|
9743
|
+
BasePermissionsSchema_Settings_Purchase_PurchasesettingsEnum: "add" | "change" | "view";
|
9728
9744
|
/** BasePermissionsSchema_Supplier */
|
9729
9745
|
BasePermissionsSchema_Supplier: {
|
9730
9746
|
/**
|
@@ -15809,7 +15825,7 @@ export interface components {
|
|
15809
15825
|
/**
|
15810
15826
|
* Id
|
15811
15827
|
* Format: uuid
|
15812
|
-
* @example
|
15828
|
+
* @example 9fbba4d4-05ff-4364-85ab-c2c6ab29dd9d
|
15813
15829
|
*/
|
15814
15830
|
id: string;
|
15815
15831
|
/**
|
package/package.json
CHANGED