@erp-galoper/main-package 1.0.277 → 1.0.279
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 +18 -2
- package/package.json +1 -1
package/openapi.ts
CHANGED
|
@@ -9071,12 +9071,23 @@ export interface components {
|
|
|
9071
9071
|
* @default []
|
|
9072
9072
|
*/
|
|
9073
9073
|
project: components["schemas"]["BasePermissionsSchema_Project_ProjectEnum"][];
|
|
9074
|
+
/**
|
|
9075
|
+
* Projectstatement
|
|
9076
|
+
* @description projectstatement actions
|
|
9077
|
+
* @default []
|
|
9078
|
+
*/
|
|
9079
|
+
projectstatement: components["schemas"]["BasePermissionsSchema_Project_ProjectstatementEnum"][];
|
|
9074
9080
|
};
|
|
9075
9081
|
/**
|
|
9076
9082
|
* BasePermissionsSchema_Project_ProjectEnum
|
|
9077
9083
|
* @enum {string}
|
|
9078
9084
|
*/
|
|
9079
9085
|
BasePermissionsSchema_Project_ProjectEnum: "add" | "change" | "delete" | "view";
|
|
9086
|
+
/**
|
|
9087
|
+
* BasePermissionsSchema_Project_ProjectstatementEnum
|
|
9088
|
+
* @enum {string}
|
|
9089
|
+
*/
|
|
9090
|
+
BasePermissionsSchema_Project_ProjectstatementEnum: "export" | "view";
|
|
9080
9091
|
/** BasePermissionsSchema_Purchase */
|
|
9081
9092
|
BasePermissionsSchema_Purchase: {
|
|
9082
9093
|
/**
|
|
@@ -9243,8 +9254,13 @@ export interface components {
|
|
|
9243
9254
|
* @description projectstatement actions
|
|
9244
9255
|
* @default []
|
|
9245
9256
|
*/
|
|
9246
|
-
projectstatement:
|
|
9257
|
+
projectstatement: components["schemas"]["BasePermissionsSchema_Report_Project_ProjectstatementEnum"][];
|
|
9247
9258
|
};
|
|
9259
|
+
/**
|
|
9260
|
+
* BasePermissionsSchema_Report_Project_ProjectstatementEnum
|
|
9261
|
+
* @enum {string}
|
|
9262
|
+
*/
|
|
9263
|
+
BasePermissionsSchema_Report_Project_ProjectstatementEnum: "export" | "view";
|
|
9248
9264
|
/** BasePermissionsSchema_Report_Supplier */
|
|
9249
9265
|
BasePermissionsSchema_Report_Supplier: {
|
|
9250
9266
|
/**
|
|
@@ -15945,7 +15961,7 @@ export interface components {
|
|
|
15945
15961
|
/**
|
|
15946
15962
|
* Id
|
|
15947
15963
|
* Format: uuid
|
|
15948
|
-
* @example
|
|
15964
|
+
* @example c2df988f-87f0-4ccb-89cb-785fac711ab5
|
|
15949
15965
|
*/
|
|
15950
15966
|
id: string;
|
|
15951
15967
|
/**
|
package/package.json
CHANGED