@ember-data/model 5.5.0-alpha.2 → 5.5.0-alpha.21
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/LICENSE.md +19 -7
- package/README.md +21 -2
- package/addon-main.cjs +5 -0
- package/blueprints/model/index.js +18 -5
- package/blueprints/model-test/index.js +16 -10
- package/blueprints/model-test/qunit-files/__root__/__path__/__test__.js +4 -5
- package/dist/-private.js +3 -0
- package/{addon → dist}/-private.js.map +1 -1
- package/dist/has-many-CwEZBhUG.js +682 -0
- package/dist/has-many-CwEZBhUG.js.map +1 -0
- package/dist/hooks-C6_7V3O3.js +75 -0
- package/dist/hooks-C6_7V3O3.js.map +1 -0
- package/dist/hooks.js +2 -0
- package/{addon → dist}/hooks.js.map +1 -1
- package/dist/index.js +5 -0
- package/{addon → dist}/index.js.map +1 -1
- package/dist/migration-support.js +213 -0
- package/dist/migration-support.js.map +1 -0
- package/{addon/model-b638e17c.js → dist/model-B9PHp6Pe.js} +2555 -2455
- package/dist/model-B9PHp6Pe.js.map +1 -0
- package/dist/schema-provider-WdyaNQ3o.js +259 -0
- package/dist/schema-provider-WdyaNQ3o.js.map +1 -0
- package/logos/NCC-1701-a-blue.svg +4 -0
- package/logos/NCC-1701-a-gold.svg +4 -0
- package/logos/NCC-1701-a-gold_100.svg +1 -0
- package/logos/NCC-1701-a-gold_base-64.txt +1 -0
- package/logos/NCC-1701-a.svg +4 -0
- package/logos/README.md +4 -0
- package/logos/docs-badge.svg +2 -0
- package/logos/ember-data-logo-dark.svg +12 -0
- package/logos/ember-data-logo-light.svg +12 -0
- package/logos/github-header.svg +444 -0
- package/logos/social1.png +0 -0
- package/logos/social2.png +0 -0
- package/logos/warp-drive-logo-dark.svg +4 -0
- package/logos/warp-drive-logo-gold.svg +4 -0
- package/package.json +62 -58
- package/unstable-preview-types/-private/attr.d.ts +175 -0
- package/unstable-preview-types/-private/attr.d.ts.map +1 -0
- package/unstable-preview-types/-private/attr.type-test.d.ts +4 -0
- package/unstable-preview-types/-private/attr.type-test.d.ts.map +1 -0
- package/unstable-preview-types/-private/belongs-to.d.ts +181 -0
- package/unstable-preview-types/-private/belongs-to.d.ts.map +1 -0
- package/unstable-preview-types/-private/belongs-to.type-test.d.ts +4 -0
- package/unstable-preview-types/-private/belongs-to.type-test.d.ts.map +1 -0
- package/unstable-preview-types/-private/debug/assert-polymorphic-type.d.ts +8 -0
- package/unstable-preview-types/-private/debug/assert-polymorphic-type.d.ts.map +1 -0
- package/unstable-preview-types/-private/errors.d.ts +303 -0
- package/unstable-preview-types/-private/errors.d.ts.map +1 -0
- package/unstable-preview-types/-private/has-many.d.ts +169 -0
- package/unstable-preview-types/-private/has-many.d.ts.map +1 -0
- package/unstable-preview-types/-private/has-many.type-test.d.ts +4 -0
- package/unstable-preview-types/-private/has-many.type-test.d.ts.map +1 -0
- package/unstable-preview-types/-private/hooks.d.ts +13 -0
- package/unstable-preview-types/-private/hooks.d.ts.map +1 -0
- package/unstable-preview-types/-private/legacy-relationships-support.d.ts +60 -0
- package/unstable-preview-types/-private/legacy-relationships-support.d.ts.map +1 -0
- package/unstable-preview-types/-private/model-for-mixin.d.ts +6 -0
- package/unstable-preview-types/-private/model-for-mixin.d.ts.map +1 -0
- package/unstable-preview-types/-private/model-methods.d.ts +37 -0
- package/unstable-preview-types/-private/model-methods.d.ts.map +1 -0
- package/unstable-preview-types/-private/model.d.ts +1303 -0
- package/unstable-preview-types/-private/model.d.ts.map +1 -0
- package/unstable-preview-types/-private/model.type-test.d.ts +4 -0
- package/unstable-preview-types/-private/model.type-test.d.ts.map +1 -0
- package/unstable-preview-types/-private/notify-changes.d.ts +8 -0
- package/unstable-preview-types/-private/notify-changes.d.ts.map +1 -0
- package/unstable-preview-types/-private/promise-belongs-to.d.ts +46 -0
- package/unstable-preview-types/-private/promise-belongs-to.d.ts.map +1 -0
- package/unstable-preview-types/-private/promise-many-array.d.ts +132 -0
- package/unstable-preview-types/-private/promise-many-array.d.ts.map +1 -0
- package/unstable-preview-types/-private/promise-proxy-base.d.ts +5 -0
- package/unstable-preview-types/-private/promise-proxy-base.d.ts.map +1 -0
- package/unstable-preview-types/-private/record-state.d.ts +80 -0
- package/unstable-preview-types/-private/record-state.d.ts.map +1 -0
- package/unstable-preview-types/-private/references/belongs-to.d.ts +503 -0
- package/unstable-preview-types/-private/references/belongs-to.d.ts.map +1 -0
- package/unstable-preview-types/-private/references/has-many.d.ts +515 -0
- package/unstable-preview-types/-private/references/has-many.d.ts.map +1 -0
- package/unstable-preview-types/-private/schema-provider.d.ts +65 -0
- package/unstable-preview-types/-private/schema-provider.d.ts.map +1 -0
- package/unstable-preview-types/-private/type-utils.d.ts +64 -0
- package/unstable-preview-types/-private/type-utils.d.ts.map +1 -0
- package/unstable-preview-types/-private/util.d.ts +8 -0
- package/unstable-preview-types/-private/util.d.ts.map +1 -0
- package/unstable-preview-types/-private.d.ts +13 -0
- package/unstable-preview-types/-private.d.ts.map +1 -0
- package/unstable-preview-types/hooks.d.ts +5 -0
- package/unstable-preview-types/hooks.d.ts.map +1 -0
- package/unstable-preview-types/index.d.ts +76 -0
- package/unstable-preview-types/index.d.ts.map +1 -0
- package/unstable-preview-types/migration-support.d.ts +64 -0
- package/unstable-preview-types/migration-support.d.ts.map +1 -0
- package/addon/-private.js +0 -2
- package/addon/has-many-774c4c4b.js +0 -507
- package/addon/has-many-774c4c4b.js.map +0 -1
- package/addon/hooks-6d5c2fc2.js +0 -157
- package/addon/hooks-6d5c2fc2.js.map +0 -1
- package/addon/hooks.js +0 -1
- package/addon/index.js +0 -3
- package/addon/model-b638e17c.js.map +0 -1
- package/addon-main.js +0 -93
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
declare module '@ember-data/model/-private' {
|
|
2
|
+
export { attr } from '@ember-data/model/-private/attr';
|
|
3
|
+
export { belongsTo } from '@ember-data/model/-private/belongs-to';
|
|
4
|
+
export { hasMany } from '@ember-data/model/-private/has-many';
|
|
5
|
+
export { Model } from '@ember-data/model/-private/model';
|
|
6
|
+
export type { ModelStore } from '@ember-data/model/-private/model';
|
|
7
|
+
export { Errors } from '@ember-data/model/-private/errors';
|
|
8
|
+
export { RelatedCollection as ManyArray } from '@ember-data/store/-private';
|
|
9
|
+
export { PromiseBelongsTo } from '@ember-data/model/-private/promise-belongs-to';
|
|
10
|
+
export { PromiseManyArray } from '@ember-data/model/-private/promise-many-array';
|
|
11
|
+
export { lookupLegacySupport, LEGACY_SUPPORT } from '@ember-data/model/-private/legacy-relationships-support';
|
|
12
|
+
}
|
|
13
|
+
//# sourceMappingURL=-private.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"-private.d.ts","sourceRoot":"","sources":["../src/-private.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,IAAI,EAAE,MAAM,iBAAiB,CAAC;AACvC,OAAO,EAAE,SAAS,EAAE,MAAM,uBAAuB,CAAC;AAClD,OAAO,EAAE,OAAO,EAAE,MAAM,qBAAqB,CAAC;AAC9C,OAAO,EAAE,KAAK,EAAE,MAAM,kBAAkB,CAAC;AACzC,YAAY,EAAE,UAAU,EAAE,MAAM,kBAAkB,CAAC;AACnD,OAAO,EAAE,MAAM,EAAE,MAAM,mBAAmB,CAAC;AAE3C,OAAO,EAAE,iBAAiB,IAAI,SAAS,EAAE,MAAM,4BAA4B,CAAC;AAC5E,OAAO,EAAE,gBAAgB,EAAE,MAAM,+BAA+B,CAAC;AACjE,OAAO,EAAE,gBAAgB,EAAE,MAAM,+BAA+B,CAAC;AAGjE,OAAO,EAAE,mBAAmB,EAAE,cAAc,EAAE,MAAM,yCAAyC,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"hooks.d.ts","sourceRoot":"","sources":["../src/hooks.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,iBAAiB,EAAE,cAAc,EAAE,QAAQ,EAAE,MAAM,kBAAkB,CAAC;AAC/E,OAAO,EAAE,WAAW,EAAE,MAAM,4BAA4B,CAAC"}
|
|
@@ -0,0 +1,76 @@
|
|
|
1
|
+
/// <reference path="./-private.d.ts" />
|
|
2
|
+
/// <reference path="./migration-support.d.ts" />
|
|
3
|
+
/// <reference path="./hooks.d.ts" />
|
|
4
|
+
/// <reference path="./-private/attr.type-test.d.ts" />
|
|
5
|
+
/// <reference path="./-private/model.d.ts" />
|
|
6
|
+
/// <reference path="./-private/notify-changes.d.ts" />
|
|
7
|
+
/// <reference path="./-private/promise-many-array.d.ts" />
|
|
8
|
+
/// <reference path="./-private/errors.d.ts" />
|
|
9
|
+
/// <reference path="./-private/has-many.d.ts" />
|
|
10
|
+
/// <reference path="./-private/attr.d.ts" />
|
|
11
|
+
/// <reference path="./-private/schema-provider.d.ts" />
|
|
12
|
+
/// <reference path="./-private/legacy-relationships-support.d.ts" />
|
|
13
|
+
/// <reference path="./-private/model-for-mixin.d.ts" />
|
|
14
|
+
/// <reference path="./-private/promise-belongs-to.d.ts" />
|
|
15
|
+
/// <reference path="./-private/hooks.d.ts" />
|
|
16
|
+
/// <reference path="./-private/promise-proxy-base.d.ts" />
|
|
17
|
+
/// <reference path="./-private/belongs-to.type-test.d.ts" />
|
|
18
|
+
/// <reference path="./-private/type-utils.d.ts" />
|
|
19
|
+
/// <reference path="./-private/util.d.ts" />
|
|
20
|
+
/// <reference path="./-private/has-many.type-test.d.ts" />
|
|
21
|
+
/// <reference path="./-private/record-state.d.ts" />
|
|
22
|
+
/// <reference path="./-private/model-methods.d.ts" />
|
|
23
|
+
/// <reference path="./-private/belongs-to.d.ts" />
|
|
24
|
+
/// <reference path="./-private/model.type-test.d.ts" />
|
|
25
|
+
/// <reference path="./-private/debug/assert-polymorphic-type.d.ts" />
|
|
26
|
+
/// <reference path="./-private/references/has-many.d.ts" />
|
|
27
|
+
/// <reference path="./-private/references/belongs-to.d.ts" />
|
|
28
|
+
declare module '@ember-data/model' {
|
|
29
|
+
/**
|
|
30
|
+
* This package provides a Presentation Model for resource data in an EmberData Cache.
|
|
31
|
+
*
|
|
32
|
+
* Models are defined as classes extending from `import Model from '@ember-data/model';` and the
|
|
33
|
+
* attributes and relationships on these classes are parsed at runtime to supply static "schema"
|
|
34
|
+
* to EmberData's SchemaService.
|
|
35
|
+
*
|
|
36
|
+
* Resource data for individual resources fetched from your API is presented to the UI via instances
|
|
37
|
+
* of the `Model`s you define. An instantiated `Model` is referred to as a `record`.
|
|
38
|
+
|
|
39
|
+
When we refer to the `ModelClass` as opposed to a `Model` or `Record` we are referring
|
|
40
|
+
specifically to the class definition and the static schema methods present on it.
|
|
41
|
+
|
|
42
|
+
When we refer to a `record` we refer to a specific class instance presenting
|
|
43
|
+
the resource data for a given `type` and `id`.
|
|
44
|
+
|
|
45
|
+
### Defining a Model
|
|
46
|
+
|
|
47
|
+
```app/models/person.js
|
|
48
|
+
import Model, { attr, belongsTo, hasMany } from '@ember-data/model';
|
|
49
|
+
|
|
50
|
+
export default class PersonModel extends Model {
|
|
51
|
+
@attr name;
|
|
52
|
+
|
|
53
|
+
@belongsTo('pet', { inverse: 'owners', async: false }) dog;
|
|
54
|
+
|
|
55
|
+
@hasMany('person', { inverse: 'friends', async: true }) friends;
|
|
56
|
+
}
|
|
57
|
+
```
|
|
58
|
+
|
|
59
|
+
### modelName convention
|
|
60
|
+
|
|
61
|
+
By convention, the name of a given model (its `type`) matches the name
|
|
62
|
+
of the file in the `app/models` folder and should be lowercase, singular
|
|
63
|
+
and dasherized.
|
|
64
|
+
|
|
65
|
+
@module @ember-data/model
|
|
66
|
+
@main @ember-data/model
|
|
67
|
+
*/
|
|
68
|
+
export { Model as default, attr, belongsTo, hasMany } from '@ember-data/model/-private';
|
|
69
|
+
export type { PromiseBelongsTo as AsyncBelongsTo } from '@ember-data/model/-private/promise-belongs-to';
|
|
70
|
+
export type { PromiseManyArray as AsyncHasMany } from '@ember-data/model/-private/promise-many-array';
|
|
71
|
+
export type { RelatedCollection as ManyArray } from '@ember-data/store/-private';
|
|
72
|
+
export type { RelatedCollection as HasMany } from '@ember-data/store/-private';
|
|
73
|
+
export { instantiateRecord, teardownRecord, modelFor } from '@ember-data/model/-private/hooks';
|
|
74
|
+
export { ModelSchemaProvider } from '@ember-data/model/-private/schema-provider';
|
|
75
|
+
}
|
|
76
|
+
//# sourceMappingURL=index.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAsCG;AACH,OAAO,EAAE,KAAK,IAAI,OAAO,EAAE,IAAI,EAAE,SAAS,EAAE,OAAO,EAAE,MAAM,YAAY,CAAC;AAExE,YAAY,EAAE,gBAAgB,IAAI,cAAc,EAAE,MAAM,+BAA+B,CAAC;AACxF,YAAY,EAAE,gBAAgB,IAAI,YAAY,EAAE,MAAM,+BAA+B,CAAC;AACtF,YAAY,EAAE,iBAAiB,IAAI,SAAS,EAAE,MAAM,4BAA4B,CAAC;AACjF,YAAY,EAAE,iBAAiB,IAAI,OAAO,EAAE,MAAM,4BAA4B,CAAC;AAC/E,OAAO,EAAE,iBAAiB,EAAE,cAAc,EAAE,QAAQ,EAAE,MAAM,kBAAkB,CAAC;AAC/E,OAAO,EAAE,mBAAmB,EAAE,MAAM,4BAA4B,CAAC"}
|
|
@@ -0,0 +1,64 @@
|
|
|
1
|
+
declare module '@ember-data/model/migration-support' {
|
|
2
|
+
import type Store from '@ember-data/store';
|
|
3
|
+
import type { SchemaService } from '@ember-data/store/types';
|
|
4
|
+
import type { StableRecordIdentifier } from '@warp-drive/core-types';
|
|
5
|
+
import type { ObjectValue } from '@warp-drive/core-types/json/raw';
|
|
6
|
+
import type { TypedRecordInstance } from '@warp-drive/core-types/record';
|
|
7
|
+
import type { Derivation, HashFn, Transformation } from '@warp-drive/core-types/schema/concepts';
|
|
8
|
+
import type { ArrayField, DerivedField, FieldSchema, GenericField, HashField, ObjectField, ObjectSchema, ResourceSchema } from '@warp-drive/core-types/schema/fields';
|
|
9
|
+
import type { WithPartial } from '@warp-drive/core-types/utils';
|
|
10
|
+
import type { MinimalLegacyRecord } from '@ember-data/model/-private/model-methods';
|
|
11
|
+
import { belongsTo, hasMany } from '@ember-data/model/-private/model-methods';
|
|
12
|
+
export type WithLegacyDerivations<T extends TypedRecordInstance> = T & MinimalLegacyRecord & {
|
|
13
|
+
belongsTo: typeof belongsTo;
|
|
14
|
+
hasMany: typeof hasMany;
|
|
15
|
+
};
|
|
16
|
+
type AttributesSchema = ReturnType<Exclude<SchemaService['attributesDefinitionFor'], undefined>>;
|
|
17
|
+
type RelationshipsSchema = ReturnType<Exclude<SchemaService['relationshipsDefinitionFor'], undefined>>;
|
|
18
|
+
export function withDefaults(schema: WithPartial<ResourceSchema, 'legacy' | 'identity'>): ResourceSchema;
|
|
19
|
+
export function registerDerivations(schema: SchemaService): void;
|
|
20
|
+
export interface DelegatingSchemaService {
|
|
21
|
+
attributesDefinitionFor?(resource: StableRecordIdentifier | {
|
|
22
|
+
type: string;
|
|
23
|
+
}): AttributesSchema;
|
|
24
|
+
relationshipsDefinitionFor?(resource: StableRecordIdentifier | {
|
|
25
|
+
type: string;
|
|
26
|
+
}): RelationshipsSchema;
|
|
27
|
+
doesTypeExist?(type: string): boolean;
|
|
28
|
+
}
|
|
29
|
+
export class DelegatingSchemaService implements SchemaService {
|
|
30
|
+
_preferred: SchemaService;
|
|
31
|
+
_secondary: SchemaService;
|
|
32
|
+
constructor(store: Store, schema: SchemaService);
|
|
33
|
+
resourceTypes(): Readonly<string[]>;
|
|
34
|
+
hasResource(resource: StableRecordIdentifier | {
|
|
35
|
+
type: string;
|
|
36
|
+
}): boolean;
|
|
37
|
+
hasTrait(type: string): boolean;
|
|
38
|
+
resourceHasTrait(resource: StableRecordIdentifier | {
|
|
39
|
+
type: string;
|
|
40
|
+
}, trait: string): boolean;
|
|
41
|
+
fields(resource: StableRecordIdentifier | {
|
|
42
|
+
type: string;
|
|
43
|
+
}): Map<string, FieldSchema>;
|
|
44
|
+
transformation(field: GenericField | ObjectField | ArrayField | {
|
|
45
|
+
type: string;
|
|
46
|
+
}): Transformation;
|
|
47
|
+
hashFn(field: HashField | {
|
|
48
|
+
type: string;
|
|
49
|
+
}): HashFn;
|
|
50
|
+
derivation(field: DerivedField | {
|
|
51
|
+
type: string;
|
|
52
|
+
}): Derivation;
|
|
53
|
+
resource(resource: StableRecordIdentifier | {
|
|
54
|
+
type: string;
|
|
55
|
+
}): ResourceSchema | ObjectSchema;
|
|
56
|
+
registerResources(schemas: Array<ResourceSchema | ObjectSchema>): void;
|
|
57
|
+
registerResource(schema: ResourceSchema | ObjectSchema): void;
|
|
58
|
+
registerTransformation(transform: Transformation): void;
|
|
59
|
+
registerDerivation<R, T, FM extends ObjectValue | null>(derivation: Derivation<R, T, FM>): void;
|
|
60
|
+
registerHashFn(hashFn: HashFn): void;
|
|
61
|
+
}
|
|
62
|
+
export {};
|
|
63
|
+
}
|
|
64
|
+
//# sourceMappingURL=migration-support.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"migration-support.d.ts","sourceRoot":"","sources":["../src/migration-support.ts"],"names":[],"mappings":"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"}
|
package/addon/-private.js
DELETED