@sentio/api 1.0.3-rc.23 → 1.0.3-rc.24
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/dist/src/types.gen.d.ts +2 -0
- package/package.json +1 -1
- package/src/types.gen.ts +2 -0
package/dist/src/types.gen.d.ts
CHANGED
|
@@ -3040,6 +3040,8 @@ export declare namespace web_service {
|
|
|
3040
3040
|
url?: string;
|
|
3041
3041
|
projectOwner?: string;
|
|
3042
3042
|
projectSlug?: string;
|
|
3043
|
+
createPanels?: Array<string>;
|
|
3044
|
+
editPanels?: Array<string>;
|
|
3043
3045
|
};
|
|
3044
3046
|
type DashboardDashboardVisibility = 'INTERNAL' | 'PRIVATE' | 'PUBLIC';
|
|
3045
3047
|
type DashboardExtra = {
|
package/package.json
CHANGED
package/src/types.gen.ts
CHANGED
|
@@ -3053,6 +3053,8 @@ export namespace web_service {
|
|
|
3053
3053
|
url?: string;
|
|
3054
3054
|
projectOwner?: string;
|
|
3055
3055
|
projectSlug?: string;
|
|
3056
|
+
createPanels?: Array<string>;
|
|
3057
|
+
editPanels?: Array<string>;
|
|
3056
3058
|
};
|
|
3057
3059
|
export type DashboardDashboardVisibility = 'INTERNAL' | 'PRIVATE' | 'PUBLIC';
|
|
3058
3060
|
export type DashboardExtra = {
|