@duvdu-v1/duvdu 1.1.183 → 1.1.184
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.
|
@@ -64,7 +64,10 @@ export declare enum PERMISSIONS {
|
|
|
64
64
|
createSettingHandler = "create setting",
|
|
65
65
|
updateSettingHandler = "update setting",
|
|
66
66
|
deleteSettingHandler = "delete setting",
|
|
67
|
-
accessDashboard = "access dashboard"
|
|
67
|
+
accessDashboard = "access dashboard",
|
|
68
|
+
createPlatform = "create producer platform",
|
|
69
|
+
updatePlatform = "update producer platform",
|
|
70
|
+
getPlatform = "get producer platform"
|
|
68
71
|
}
|
|
69
72
|
export declare const permissions: {
|
|
70
73
|
auth: PERMISSIONS[];
|
|
@@ -81,6 +81,10 @@ var PERMISSIONS;
|
|
|
81
81
|
PERMISSIONS["deleteSettingHandler"] = "delete setting";
|
|
82
82
|
// dashboard
|
|
83
83
|
PERMISSIONS["accessDashboard"] = "access dashboard";
|
|
84
|
+
// producer platform
|
|
85
|
+
PERMISSIONS["createPlatform"] = "create producer platform";
|
|
86
|
+
PERMISSIONS["updatePlatform"] = "update producer platform";
|
|
87
|
+
PERMISSIONS["getPlatform"] = "get producer platform";
|
|
84
88
|
})(PERMISSIONS || (exports.PERMISSIONS = PERMISSIONS = {}));
|
|
85
89
|
exports.permissions = {
|
|
86
90
|
auth: [
|