PluginProbe
Code Snippets / 3.10.2
Code Snippets v3.10.2
4.0.0-beta.2 3.10.2 3.10.1 3.10.0 3.10.0-beta.2 3.10.0-beta.1 4.0.0-beta.1 3.9.6 trunk 2.10.0 2.10.1 2.12.0 2.12.1 2.13.0 2.13.1 2.13.2 2.13.3 2.14.0 2.14.1 2.14.2 2.14.3 2.14.4 2.14.5 2.14.6 3.0.0 All 65 releases
code-snippets / js / types / schema / CloudSnippetSchema.ts

CloudSnippetSchema.ts in Code Snippets 3.10.2, at js/types/schema/CloudSnippetSchema.ts

31 lines 541 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 import type { SnippetScope } from '../Snippet'
2
3 export interface CloudSnippetSchema {
4 id: number
5 slug: string
6 name: string
7 description: string
8 code: string
9 tags: string[]
10 scope: SnippetScope
11 codevault: string
12 total_votes: number
13 vote_count: number
14 wp_tested: string
15 status: CloudStatus
16 created: string
17 updated: string
18 revision: number
19 is_owner: boolean
20 local_id?: number | null
21 update_available?: boolean | null
22 }
23
24 export enum CloudStatus {
25 Private = 3,
26 Public = 4,
27 Unverified = 5,
28 AI_Verified = 6,
29 Pro_Verified = 8
30 }
31