@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.
Files changed (102) hide show
  1. package/LICENSE.md +19 -7
  2. package/README.md +21 -2
  3. package/addon-main.cjs +5 -0
  4. package/blueprints/model/index.js +18 -5
  5. package/blueprints/model-test/index.js +16 -10
  6. package/blueprints/model-test/qunit-files/__root__/__path__/__test__.js +4 -5
  7. package/dist/-private.js +3 -0
  8. package/{addon → dist}/-private.js.map +1 -1
  9. package/dist/has-many-CwEZBhUG.js +682 -0
  10. package/dist/has-many-CwEZBhUG.js.map +1 -0
  11. package/dist/hooks-C6_7V3O3.js +75 -0
  12. package/dist/hooks-C6_7V3O3.js.map +1 -0
  13. package/dist/hooks.js +2 -0
  14. package/{addon → dist}/hooks.js.map +1 -1
  15. package/dist/index.js +5 -0
  16. package/{addon → dist}/index.js.map +1 -1
  17. package/dist/migration-support.js +213 -0
  18. package/dist/migration-support.js.map +1 -0
  19. package/{addon/model-b638e17c.js → dist/model-B9PHp6Pe.js} +2555 -2455
  20. package/dist/model-B9PHp6Pe.js.map +1 -0
  21. package/dist/schema-provider-WdyaNQ3o.js +259 -0
  22. package/dist/schema-provider-WdyaNQ3o.js.map +1 -0
  23. package/logos/NCC-1701-a-blue.svg +4 -0
  24. package/logos/NCC-1701-a-gold.svg +4 -0
  25. package/logos/NCC-1701-a-gold_100.svg +1 -0
  26. package/logos/NCC-1701-a-gold_base-64.txt +1 -0
  27. package/logos/NCC-1701-a.svg +4 -0
  28. package/logos/README.md +4 -0
  29. package/logos/docs-badge.svg +2 -0
  30. package/logos/ember-data-logo-dark.svg +12 -0
  31. package/logos/ember-data-logo-light.svg +12 -0
  32. package/logos/github-header.svg +444 -0
  33. package/logos/social1.png +0 -0
  34. package/logos/social2.png +0 -0
  35. package/logos/warp-drive-logo-dark.svg +4 -0
  36. package/logos/warp-drive-logo-gold.svg +4 -0
  37. package/package.json +62 -58
  38. package/unstable-preview-types/-private/attr.d.ts +175 -0
  39. package/unstable-preview-types/-private/attr.d.ts.map +1 -0
  40. package/unstable-preview-types/-private/attr.type-test.d.ts +4 -0
  41. package/unstable-preview-types/-private/attr.type-test.d.ts.map +1 -0
  42. package/unstable-preview-types/-private/belongs-to.d.ts +181 -0
  43. package/unstable-preview-types/-private/belongs-to.d.ts.map +1 -0
  44. package/unstable-preview-types/-private/belongs-to.type-test.d.ts +4 -0
  45. package/unstable-preview-types/-private/belongs-to.type-test.d.ts.map +1 -0
  46. package/unstable-preview-types/-private/debug/assert-polymorphic-type.d.ts +8 -0
  47. package/unstable-preview-types/-private/debug/assert-polymorphic-type.d.ts.map +1 -0
  48. package/unstable-preview-types/-private/errors.d.ts +303 -0
  49. package/unstable-preview-types/-private/errors.d.ts.map +1 -0
  50. package/unstable-preview-types/-private/has-many.d.ts +169 -0
  51. package/unstable-preview-types/-private/has-many.d.ts.map +1 -0
  52. package/unstable-preview-types/-private/has-many.type-test.d.ts +4 -0
  53. package/unstable-preview-types/-private/has-many.type-test.d.ts.map +1 -0
  54. package/unstable-preview-types/-private/hooks.d.ts +13 -0
  55. package/unstable-preview-types/-private/hooks.d.ts.map +1 -0
  56. package/unstable-preview-types/-private/legacy-relationships-support.d.ts +60 -0
  57. package/unstable-preview-types/-private/legacy-relationships-support.d.ts.map +1 -0
  58. package/unstable-preview-types/-private/model-for-mixin.d.ts +6 -0
  59. package/unstable-preview-types/-private/model-for-mixin.d.ts.map +1 -0
  60. package/unstable-preview-types/-private/model-methods.d.ts +37 -0
  61. package/unstable-preview-types/-private/model-methods.d.ts.map +1 -0
  62. package/unstable-preview-types/-private/model.d.ts +1303 -0
  63. package/unstable-preview-types/-private/model.d.ts.map +1 -0
  64. package/unstable-preview-types/-private/model.type-test.d.ts +4 -0
  65. package/unstable-preview-types/-private/model.type-test.d.ts.map +1 -0
  66. package/unstable-preview-types/-private/notify-changes.d.ts +8 -0
  67. package/unstable-preview-types/-private/notify-changes.d.ts.map +1 -0
  68. package/unstable-preview-types/-private/promise-belongs-to.d.ts +46 -0
  69. package/unstable-preview-types/-private/promise-belongs-to.d.ts.map +1 -0
  70. package/unstable-preview-types/-private/promise-many-array.d.ts +132 -0
  71. package/unstable-preview-types/-private/promise-many-array.d.ts.map +1 -0
  72. package/unstable-preview-types/-private/promise-proxy-base.d.ts +5 -0
  73. package/unstable-preview-types/-private/promise-proxy-base.d.ts.map +1 -0
  74. package/unstable-preview-types/-private/record-state.d.ts +80 -0
  75. package/unstable-preview-types/-private/record-state.d.ts.map +1 -0
  76. package/unstable-preview-types/-private/references/belongs-to.d.ts +503 -0
  77. package/unstable-preview-types/-private/references/belongs-to.d.ts.map +1 -0
  78. package/unstable-preview-types/-private/references/has-many.d.ts +515 -0
  79. package/unstable-preview-types/-private/references/has-many.d.ts.map +1 -0
  80. package/unstable-preview-types/-private/schema-provider.d.ts +65 -0
  81. package/unstable-preview-types/-private/schema-provider.d.ts.map +1 -0
  82. package/unstable-preview-types/-private/type-utils.d.ts +64 -0
  83. package/unstable-preview-types/-private/type-utils.d.ts.map +1 -0
  84. package/unstable-preview-types/-private/util.d.ts +8 -0
  85. package/unstable-preview-types/-private/util.d.ts.map +1 -0
  86. package/unstable-preview-types/-private.d.ts +13 -0
  87. package/unstable-preview-types/-private.d.ts.map +1 -0
  88. package/unstable-preview-types/hooks.d.ts +5 -0
  89. package/unstable-preview-types/hooks.d.ts.map +1 -0
  90. package/unstable-preview-types/index.d.ts +76 -0
  91. package/unstable-preview-types/index.d.ts.map +1 -0
  92. package/unstable-preview-types/migration-support.d.ts +64 -0
  93. package/unstable-preview-types/migration-support.d.ts.map +1 -0
  94. package/addon/-private.js +0 -2
  95. package/addon/has-many-774c4c4b.js +0 -507
  96. package/addon/has-many-774c4c4b.js.map +0 -1
  97. package/addon/hooks-6d5c2fc2.js +0 -157
  98. package/addon/hooks-6d5c2fc2.js.map +0 -1
  99. package/addon/hooks.js +0 -1
  100. package/addon/index.js +0 -3
  101. package/addon/model-b638e17c.js.map +0 -1
  102. 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,5 @@
1
+ declare module '@ember-data/model/hooks' {
2
+ export { instantiateRecord, teardownRecord, modelFor } from '@ember-data/model/-private/hooks';
3
+ export { buildSchema } from '@ember-data/model/-private/schema-provider';
4
+ }
5
+ //# sourceMappingURL=hooks.d.ts.map
@@ -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
@@ -1,2 +0,0 @@
1
- export { a as attr, b as belongsTo, h as hasMany } from "./has-many-774c4c4b";
2
- export { E as Errors, L as LEGACY_SUPPORT, R as ManyArray, M as Model, P as PromiseBelongsTo, a as PromiseManyArray } from "./model-b638e17c";