-
-
Notifications
You must be signed in to change notification settings - Fork 98
Expand file tree
/
Copy pathschema.d.ts
More file actions
368 lines (325 loc) · 9.07 KB
/
schema.d.ts
File metadata and controls
368 lines (325 loc) · 9.07 KB
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
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
import type {
Schema,
EntityInterface,
IDenormalizeDelegate,
PolymorphicInterface,
SchemaClass,
IQueryDelegate,
INormalizeDelegate,
} from './interface.js';
import type {
AbstractInstanceType,
Normalize,
NormalizeNullable,
Denormalize,
DenormalizeNullable,
DenormalizeObject,
DenormalizeNullableObject,
NormalizeObject,
NormalizedNullableObject,
EntityMap,
ObjectArgs,
} from './normal.js';
import { EntityFields } from './schemas/EntityFields.js';
import {
default as EntityMixin,
default as Entity,
} from './schemas/EntityMixin.js';
import { default as Invalidate } from './schemas/Invalidate.js';
import { default as Lazy } from './schemas/Lazy.js';
import { default as Query } from './schemas/Query.js';
import { default as Scalar } from './schemas/Scalar.js';
import type {
CollectionConstructor,
DefaultArgs,
SchemaAttributeFunction,
SchemaFunction,
UnionResult,
} from './schemaTypes.js';
export { EntityMap, Invalidate, Query, Lazy, Scalar, EntityMixin, Entity };
export type { SchemaClass };
export { EntityInterface } from './interface.js';
export * from './schemaTypes.js';
/**
* Represents arrays
* @see https://dataclient.io/rest/api/Array
*/
export class Array<S extends Schema = Schema> implements SchemaClass {
/**
* Represents arrays
* @see https://dataclient.io/rest/api/Array
*/
constructor(
definition: S,
schemaAttribute?: S extends EntityMap<infer T> ?
string | SchemaFunction<keyof S>
: undefined,
);
define(definition: Schema): void;
readonly isSingleSchema: S extends EntityMap ? false : true;
schemaKey(): string;
readonly schema: S;
normalize(
input: any,
parent: any,
key: any,
delegate: INormalizeDelegate,
): (S extends EntityMap ? UnionResult<S> : Normalize<S>)[];
_normalizeNullable():
| (S extends EntityMap ? UnionResult<S> : Normalize<S>)[]
| undefined;
_denormalizeNullable():
| (S extends EntityMap<infer T> ? T : Denormalize<S>)[]
| undefined;
denormalize(
input: {},
delegate: IDenormalizeDelegate,
): (S extends EntityMap<infer T> ? T : Denormalize<S>)[];
queryKey(
args: readonly any[],
unvisit: (...args: any) => any,
delegate: any,
): undefined;
}
/**
* Retrieves all entities in cache
*
* @see https://dataclient.io/rest/api/All
*/
export class All<
S extends EntityMap | EntityInterface = EntityMap | EntityInterface,
> implements SchemaClass {
/**
* Retrieves all entities in cache
*
* @see https://dataclient.io/rest/api/All
*/
constructor(
definition: S,
schemaAttribute?: S extends EntityMap<infer T> ?
string | SchemaFunction<keyof S>
: undefined,
);
define(definition: Schema): void;
readonly isSingleSchema: S extends EntityMap ? false : true;
schemaKey(): string;
readonly schema: S;
schemaKey(): string;
normalize(
input: any,
parent: any,
key: any,
delegate: INormalizeDelegate,
): (S extends EntityMap ? UnionResult<S> : Normalize<S>)[];
_normalizeNullable():
| (S extends EntityMap ? UnionResult<S> : Normalize<S>)[]
| undefined;
_denormalizeNullable():
| (S extends EntityMap<infer T> ? T : Denormalize<S>)[]
| undefined;
denormalize(
input: {},
delegate: IDenormalizeDelegate,
): (S extends EntityMap<infer T> ? T : Denormalize<S>)[];
queryKey(
// TODO: hack for now to allow for variable arg combinations with Query
args: [] | [unknown],
unvisit: (...args: any) => any,
delegate: IQueryDelegate,
): any;
}
/**
* Represents objects with statically known members
* @see https://dataclient.io/rest/api/Object
*/
export class Object<
O extends Record<string, any> = Record<string, any>,
> implements SchemaClass {
/**
* Represents objects with statically known members
* @see https://dataclient.io/rest/api/Object
*/
constructor(definition: O);
define(definition: Schema): void;
readonly schema: O;
normalize(
input: any,
parent: any,
key: any,
delegate: INormalizeDelegate,
): NormalizeObject<O>;
_normalizeNullable(): NormalizedNullableObject<O>;
_denormalizeNullable(): DenormalizeNullableObject<O>;
denormalize(input: {}, delegate: IDenormalizeDelegate): DenormalizeObject<O>;
queryKey(
args: ObjectArgs<O>,
unvisit: (...args: any) => any,
delegate: IQueryDelegate,
): any;
}
type RequiredMember<
O extends Record<string | number | symbol, unknown>,
Required extends keyof O,
> = {
[K in Required]: O[K];
};
type UnionSchemaToArgs<
Choices extends EntityMap,
SchemaAttribute extends
| keyof AbstractInstanceType<Choices[keyof Choices]>
| SchemaFunction<keyof Choices>,
> =
SchemaAttribute extends keyof AbstractInstanceType<Choices[keyof Choices]> ?
RequiredMember<
AbstractInstanceType<Choices[keyof Choices]>,
SchemaAttribute
>
: SchemaAttribute extends (value: infer Args, ...rest: any) => unknown ? Args
: never;
/**
* Represents polymorphic values.
* @see https://dataclient.io/rest/api/Union
*/
export interface UnionConstructor {
/**
* Represents polymorphic values.
* @see https://dataclient.io/rest/api/Union
*/
new <
Choices extends EntityMap,
SchemaAttribute extends
| keyof AbstractInstanceType<Choices[keyof Choices]>
| SchemaFunction<keyof Choices>,
>(
definition: Choices,
schemaAttribute: SchemaAttribute,
): UnionInstance<
Choices,
Partial<UnionSchemaToArgs<Choices, SchemaAttribute>> &
Partial<AbstractInstanceType<Choices[keyof Choices]>>
>;
readonly prototype: UnionInstance;
}
/**
* Represents polymorphic values.
* @see https://dataclient.io/rest/api/Union
*/
export interface UnionInstance<
Choices extends EntityMap = any,
Args extends EntityFields<AbstractInstanceType<Choices[keyof Choices]>> =
EntityFields<AbstractInstanceType<Choices[keyof Choices]>>,
> {
readonly _hoistable: true;
define(definition: Schema): void;
inferSchema: SchemaAttributeFunction<Choices[keyof Choices]>;
getSchemaAttribute: SchemaFunction<keyof Choices>;
schemaKey(): string;
readonly schema: Choices;
normalize(
input: any,
parent: any,
key: any,
delegate: INormalizeDelegate,
): UnionResult<Choices>;
_normalizeNullable(): UnionResult<Choices> | undefined;
_denormalizeNullable():
| AbstractInstanceType<Choices[keyof Choices]>
| undefined;
denormalize(
input: {},
delegate: IDenormalizeDelegate,
): AbstractInstanceType<Choices[keyof Choices]>;
queryKey(
args: [Args],
unvisit: (...args: any) => any,
delegate: IQueryDelegate,
): { id: any; schema: string };
}
/**
* Represents polymorphic values.
* @see https://dataclient.io/rest/api/Union
*/
export declare let UnionRoot: UnionConstructor;
/**
* Represents polymorphic values.
* @see https://dataclient.io/rest/api/Union
*/
export declare class Union<
Choices extends EntityMap,
SchemaAttribute extends
| keyof AbstractInstanceType<Choices[keyof Choices]>
| SchemaFunction<keyof Choices>,
> extends UnionRoot<Choices, SchemaAttribute> {}
/**
* Represents variably sized objects
* @see https://dataclient.io/rest/api/Values
*/
export class Values<Choices extends Schema = any> implements SchemaClass {
/**
* Represents variably sized objects
* @see https://dataclient.io/rest/api/Values
*/
constructor(
definition: Choices,
schemaAttribute?: Choices extends EntityMap<infer T> ?
keyof T | SchemaFunction<keyof Choices>
: undefined,
);
define(definition: Schema): void;
readonly isSingleSchema: Choices extends EntityMap ? false : true;
schemaKey(): string;
inferSchema: SchemaAttributeFunction<
Choices extends EntityMap ? Choices[keyof Choices] : Choices
>;
getSchemaAttribute: Choices extends EntityMap ? SchemaFunction<keyof Choices>
: false;
readonly schema: Choices;
normalize(
input: any,
parent: any,
key: any,
delegate: INormalizeDelegate,
): Record<
string,
Choices extends EntityMap ? UnionResult<Choices> : Normalize<Choices>
>;
_normalizeNullable():
| Record<
string,
Choices extends EntityMap ? UnionResult<Choices>
: NormalizeNullable<Choices>
>
| undefined;
_denormalizeNullable(): Record<
string,
Choices extends EntityMap<infer T> ? T | undefined
: DenormalizeNullable<Choices>
>;
denormalize(
input: {},
delegate: IDenormalizeDelegate,
): Record<
string,
Choices extends EntityMap<infer T> ? T : Denormalize<Choices>
>;
queryKey(
args: readonly any[],
unvisit: (...args: any) => any,
delegate: IQueryDelegate,
): undefined;
}
/** Collection merge that places incoming items at the start.
*
* @see https://dataclient.io/rest/api/Collection#moveWith
*/
export declare const unshift: (existing: any, incoming: any) => any;
export declare let CollectionRoot: CollectionConstructor;
/**
* Entities but for Arrays instead of classes
* @see https://dataclient.io/rest/api/Collection
*/
export declare class Collection<
S extends any[] | PolymorphicInterface = any,
Args extends any[] = DefaultArgs,
Parent = any,
> extends CollectionRoot<S, Args, Parent> {}