This repository was archived by the owner on Mar 2, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtypings.d.ts
156 lines (85 loc) · 3.89 KB
/
typings.d.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
declare namespace DataManager {
export interface DataManager {
constructor(options: dmOptions);
getFileUrl(assetID: string, locale?: string): Promise<string>;
getImageUrl(assetID: string, size?: number, locale?: string): Promise<string>;
getImageThumbUrl(assetID: string, size?: number, locale?: string): Promise<string>;
resolve(): Promise<DataManager>;
modelList(): Promise<any>;
enableCache(models: string | Array<string>, env: env, maxCacheAge?: number): Promise<any>;
clearCache(): Promise<any>;
model(title: string, metadata: any): Model;
assetList(options?: any): AssetList;
assets(options?: any): Array<Asset>;
asset(assetID: string): Asset;
createAsset(input: any): Array<Promise<Asset>>;
tagList(options?: any): TagList;
tags(options?: any): Array<Tag>;
tag(tag: string): Tag;
registerAnonymous(validUntil: string): Promise<User>;
account(): Promise<User>;
getAuthLink(relation: string, templateParameter: any): Promise<string>;
emailAvailable(email: string): Promise<boolean>;
can(permission: string): Promise<boolean>;
logout(): void;
}
export function getFileUrl(assetID: string, locale?: string): Promise<string>;
export function getImageUrl(assetID: string, size?: number, locale?: string): Promise<string>;
export function getImageThumbUrl(assetID: string, size?: number, locale?: string): Promise<string>;
export function cloneEntry(entry: Entry): Entry;
export function cloneEntries(entries: Array<Entry>): Array<Entry>;
export function cloneAsset(asset: Asset): Asset;
export function cloneAssets(assets: Array<Asset>): Array<Asset>;
export function cloneTag(tag: Tag): Tag;
export function cloneTags(tags: Array<Tag>): Array<Tag>;
export const DB_NODEJS: string;
export const DB_CORDOVA: string;
export const DB_BROWSER: string;
export interface Asset {
save(): Promise<Asset>;
delete(): Promise<boolean>;
getFileUrl(locale?: string): Promise<string>;
getImageUrl(size?: number, locale?: string): Promise<string>;
getImageThumbUrl(size?: number, locale?: string): Promise<string>;
clone(): Entry;
}
export function Asset(asset: any, dm: DataManager): void;
export interface Entry {
save(): Promise<Entry>;
delete(): Promise<boolean>;
getTitle(property: string): string;
getModelTitle(property: string): string;
}
export function Entry(entry: any, dm: DataManager, model: Model): void;
export interface Model {
enableCache(env: env, maxCacheAge?: number): Promise<any>;
clearCache(): Promise<any>;
resolve(): Promise<Model>;
getSchema(): Promise<any>;
entryList(options?: any): Promise<EntryList>;
entries(options?: any): Promise<Array<Entry>>;
entry(id: any, levels: number): Promise<Entry>;
nestedEntry(id: any, levels: number): Promise<Entry>;
createEntry(entry: any): Promise<Entry>;
deleteEntry(entryId: string): Promise<boolean>;
}
export function Model(title: string, metadata: any, dm: DataManager): void;
export interface Tag {
save(): Promise<Tag>;
delete(): Promise<boolean>;
}
export function Tag(tag: any, dm: DataManager, traversal: any): void;
export interface User {
logout(): Promise<void>;
isAnonymous(): boolean;
isAnon(): boolean;
}
export function User(isAnon: boolean, user: any, dm: DataManager): void;
export type dmOptions = { url?: string, id?: string, accessToken?: string, clientID?: string, errorHandler?: (error: Error) => {} };
export type env = 'NODEJS' | 'CORDOVA' | 'BROWSER';
export type AssetList = { assets: Array<Asset>, count: number, total: number }
export type TagList = { tags: Array<Tag>, count: number, total: number }
export type EntryList = { entries: Array<Entry>, count: number, total: number }
}
declare function DataManager(options: DataManager.dmOptions): void;
export = DataManager;