@warp-drive/schema-record 5.6.0-alpha.5 → 5.6.0-beta.1

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 (29) hide show
  1. package/README.md +1 -1
  2. package/addon-main.cjs +1 -1
  3. package/dist/-private.js +1 -1
  4. package/dist/index.js +1 -1812
  5. package/package.json +5 -24
  6. package/unstable-preview-types/-private.d.ts +3 -3
  7. package/unstable-preview-types/index.d.ts +339 -350
  8. package/dist/-private.js.map +0 -1
  9. package/dist/index.js.map +0 -1
  10. package/dist/symbols-B_60yPO2.js +0 -44
  11. package/dist/symbols-B_60yPO2.js.map +0 -1
  12. package/unstable-preview-types/-private/fields/compute.d.ts +0 -43
  13. package/unstable-preview-types/-private/fields/compute.d.ts.map +0 -1
  14. package/unstable-preview-types/-private/fields/managed-array.d.ts +0 -25
  15. package/unstable-preview-types/-private/fields/managed-array.d.ts.map +0 -1
  16. package/unstable-preview-types/-private/fields/managed-object.d.ts +0 -23
  17. package/unstable-preview-types/-private/fields/managed-object.d.ts.map +0 -1
  18. package/unstable-preview-types/-private/fields/many-array-manager.d.ts +0 -22
  19. package/unstable-preview-types/-private/fields/many-array-manager.d.ts.map +0 -1
  20. package/unstable-preview-types/-private/hooks.d.ts +0 -8
  21. package/unstable-preview-types/-private/hooks.d.ts.map +0 -1
  22. package/unstable-preview-types/-private/record.d.ts +0 -63
  23. package/unstable-preview-types/-private/record.d.ts.map +0 -1
  24. package/unstable-preview-types/-private/schema.d.ts +0 -139
  25. package/unstable-preview-types/-private/schema.d.ts.map +0 -1
  26. package/unstable-preview-types/-private/symbols.d.ts +0 -13
  27. package/unstable-preview-types/-private/symbols.d.ts.map +0 -1
  28. package/unstable-preview-types/-private.d.ts.map +0 -1
  29. package/unstable-preview-types/index.d.ts.map +0 -1
@@ -1 +0,0 @@
1
- {"version":3,"file":"hooks.d.ts","sourceRoot":"","sources":["../../src/-private/hooks.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,KAAK,MAAM,mBAAmB,CAAC;AAE3C,OAAO,KAAK,EAAE,sBAAsB,EAAE,MAAM,wBAAwB,CAAC;AAGrE,OAAO,EAAE,YAAY,EAAE,MAAM,UAAU,CAAC;AAIxC,wBAAgB,iBAAiB,CAC/B,KAAK,EAAE,KAAK,EACZ,UAAU,EAAE,sBAAsB,EAClC,UAAU,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,GACnC,YAAY,CAgBd;AAMD,wBAAgB,cAAc,CAAC,MAAM,EAAE,OAAO,GAAG,IAAI,CAGpD"}
@@ -1,63 +0,0 @@
1
- declare module '@warp-drive/schema-record/-private/record' {
2
- import type Store from '@ember-data/store';
3
- import type { StableRecordIdentifier } from '@warp-drive/core-types';
4
- import { RecordStore } from '@warp-drive/core-types/symbols';
5
- import { Checkout, Destroy, Editable, EmbeddedPath, EmbeddedType, Identifier, Legacy, Parent } from '@warp-drive/schema-record/-private/symbols';
6
- export { Editable, Legacy, Checkout } from '@warp-drive/schema-record/-private/symbols';
7
- /**
8
- * A class that uses a the ResourceSchema for a ResourceType
9
- * and a ResouceKey to transform data from the cache into a rich, reactive
10
- * object.
11
- *
12
- * This class is not directly instantiable. To use it, you should
13
- * configure the store's `instantiateRecord` and `teardownRecord` hooks
14
- * with the matching hooks provided by this package.
15
- *
16
- * @hideconstructor
17
- * @public
18
- */
19
- export class SchemaRecord {
20
- /** @internal */
21
- [RecordStore]: Store;
22
- /** @internal */
23
- [Identifier]: StableRecordIdentifier;
24
- /** @internal */
25
- [Parent]: StableRecordIdentifier;
26
- /** @internal */
27
- [EmbeddedType]: string | null;
28
- /** @internal */
29
- [EmbeddedPath]: string[] | null;
30
- /** @internal */
31
- [Editable]: boolean;
32
- /** @internal */
33
- [Legacy]: boolean;
34
- [Symbol.toStringTag]: `SchemaRecord<${string}>`;
35
- /** @internal */
36
- ___notifications: object;
37
- constructor(store: Store, identifier: StableRecordIdentifier, Mode: {
38
- [Editable]: boolean;
39
- [Legacy]: boolean;
40
- }, isEmbedded?: boolean, embeddedType?: string | null, embeddedPath?: string[] | null);
41
- /** @internal */
42
- [Destroy](): void;
43
- /**
44
- * Create an editable copy of the record
45
- *
46
- * SchemaRecord instances are not editable by default. This method creates an editable copy of the record. To use,
47
- * import the `Checkout` symbol from `@warp-drive/schema-record` and call it on the record.
48
- *
49
- * ```ts
50
- * import { Checkout } from '@warp-drive/schema-record';
51
- *
52
- * const record = store.peekRecord('user', '1');
53
- * const editableRecord = await record[Checkout]();
54
- * ```
55
- *
56
- * @returns a promise that resolves to the editable record
57
- * @throws if the record is already editable or if the record is embedded
58
- *
59
- */
60
- [Checkout](): Promise<SchemaRecord>;
61
- }
62
- }
63
- //# sourceMappingURL=record.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"record.d.ts","sourceRoot":"","sources":["../../src/-private/record.ts"],"names":[],"mappings":"AAGA,OAAO,KAAK,KAAK,MAAM,mBAAmB,CAAC;AAgB3C,OAAO,KAAK,EAAE,sBAAsB,EAAE,MAAM,wBAAwB,CAAC;AAKrE,OAAO,EAAE,WAAW,EAAE,MAAM,gCAAgC,CAAC;AAkB7D,OAAO,EAAE,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,YAAY,EAAE,YAAY,EAAE,UAAU,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,WAAW,CAAC;AAOhH,OAAO,EAAE,QAAQ,EAAE,MAAM,EAAE,QAAQ,EAAE,MAAM,WAAW,CAAC;AAyBvD;;;;;;;;;;;GAWG;AACH,qBAAa,YAAY;IACvB,gBAAgB;IACR,CAAC,WAAW,CAAC,EAAE,KAAK,CAAC;IAC7B,gBAAgB;IACR,CAAC,UAAU,CAAC,EAAE,sBAAsB,CAAC;IAC7C,gBAAgB;IACR,CAAC,MAAM,CAAC,EAAE,sBAAsB,CAAC;IACzC,gBAAgB;IACR,CAAC,YAAY,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACtC,gBAAgB;IACR,CAAC,YAAY,CAAC,EAAE,MAAM,EAAE,GAAG,IAAI,CAAC;IACxC,gBAAgB;IACR,CAAC,QAAQ,CAAC,EAAE,OAAO,CAAC;IAC5B,gBAAgB;IACR,CAAC,MAAM,CAAC,EAAE,OAAO,CAAC;IAClB,CAAC,MAAM,CAAC,WAAW,CAAC,EAAE,gBAAgB,MAAM,GAAG,CAAC;IACxD,gBAAgB;IACR,gBAAgB,EAAE,MAAM,CAAC;gBAG/B,KAAK,EAAE,KAAK,EACZ,UAAU,EAAE,sBAAsB,EAClC,IAAI,EAAE;QAAE,CAAC,QAAQ,CAAC,EAAE,OAAO,CAAC;QAAC,CAAC,MAAM,CAAC,EAAE,OAAO,CAAA;KAAE,EAChD,UAAU,UAAQ,EAClB,YAAY,GAAE,MAAM,GAAG,IAAW,EAClC,YAAY,GAAE,MAAM,EAAE,GAAG,IAAW;IAkpBtC,gBAAgB;IAChB,CAAC,OAAO,CAAC,IAAI,IAAI;IAUjB;;;;;;;;;;;;;;;;OAgBG;IACH,CAAC,QAAQ,CAAC,IAAI,OAAO,CAAC,YAAY,CAAC;CAiCpC"}
@@ -1,139 +0,0 @@
1
- declare module '@warp-drive/schema-record/-private/schema' {
2
- import type { SchemaService as SchemaServiceInterface } from '@ember-data/store/types';
3
- import type { StableRecordIdentifier } from '@warp-drive/core-types';
4
- import type { ObjectValue, Value } from '@warp-drive/core-types/json/raw';
5
- import type { Derivation, HashFn } from '@warp-drive/core-types/schema/concepts';
6
- import { type ArrayField, type DerivedField, type FieldSchema, type GenericField, type HashField, type LegacyAttributeField, type LegacyRelationshipField, type ObjectField, type ObjectSchema, type PolarisResourceSchema, type ResourceSchema } from '@warp-drive/core-types/schema/fields';
7
- import { Type } from '@warp-drive/core-types/symbols';
8
- import type { WithPartial } from '@warp-drive/core-types/utils';
9
- import type { SchemaRecord } from '@warp-drive/schema-record/-private/record';
10
- /**
11
- * Utility for constructing a ResourceSchema with the recommended
12
- * fields for the PolarisMode experience.
13
- *
14
- * Using this requires registering the PolarisMode derivations
15
- *
16
- * ```ts
17
- * import { registerDerivations } from '@warp-drive/schema-record';
18
- *
19
- * registerDerivations(schema);
20
- * ```
21
- *
22
- * @public
23
- * @param schema
24
- * @return {PolarisResourceSchema}
25
- */
26
- export function withDefaults(schema: WithPartial<PolarisResourceSchema, 'identity'>): ResourceSchema;
27
- /**
28
- * A derivation that computes its value from the
29
- * record's identity.
30
- *
31
- * It can be used via a derived field definition like:
32
- *
33
- * ```ts
34
- * {
35
- * kind: 'derived',
36
- * name: 'id',
37
- * type: '@identity',
38
- * options: { key: 'id' }
39
- * }
40
- * ```
41
- *
42
- * Valid keys are `'id'`, `'lid'`, `'type'`, and `'^'`.
43
- *
44
- * `^` returns the entire identifier object.
45
- *
46
- * @public
47
- */
48
- export function fromIdentity(record: SchemaRecord, options: {
49
- key: 'lid';
50
- } | {
51
- key: 'type';
52
- }, key: string): string;
53
- export function fromIdentity(record: SchemaRecord, options: {
54
- key: 'id';
55
- }, key: string): string | null;
56
- export function fromIdentity(record: SchemaRecord, options: {
57
- key: '^';
58
- }, key: string): StableRecordIdentifier;
59
- export function fromIdentity(record: SchemaRecord, options: null, key: string): asserts options;
60
- export namespace fromIdentity { }
61
- /**
62
- * Registers the default derivations for records that want
63
- * to use the PolarisMode defaults provided by
64
- *
65
- * ```ts
66
- * import { withDefaults } from '@warp-drive/schema-record';
67
- * ```
68
- *
69
- * @public
70
- * @param {SchemaService} schema
71
- */
72
- export function registerDerivations(schema: SchemaServiceInterface): void;
73
- interface InternalSchema {
74
- original: ResourceSchema | ObjectSchema;
75
- traits: Set<string>;
76
- fields: Map<string, FieldSchema>;
77
- attributes: Record<string, LegacyAttributeField>;
78
- relationships: Record<string, LegacyRelationshipField>;
79
- }
80
- export type Transformation<T extends Value = Value, PT = unknown> = {
81
- serialize(value: PT, options: Record<string, unknown> | null, record: SchemaRecord): T;
82
- hydrate(value: T | undefined, options: Record<string, unknown> | null, record: SchemaRecord): PT;
83
- defaultValue?(options: Record<string, unknown> | null, identifier: StableRecordIdentifier): T;
84
- [Type]: string;
85
- };
86
- export interface SchemaService {
87
- doesTypeExist(type: string): boolean;
88
- attributesDefinitionFor(identifier: {
89
- type: string;
90
- }): InternalSchema['attributes'];
91
- relationshipsDefinitionFor(identifier: {
92
- type: string;
93
- }): InternalSchema['relationships'];
94
- }
95
- /**
96
- * A SchemaService designed to work with dynamically registered schemas.
97
- *
98
- * @class SchemaService
99
- * @public
100
- */
101
- export class SchemaService implements SchemaServiceInterface {
102
- _schemas: Map<string, InternalSchema>;
103
- _transforms: Map<string, Transformation>;
104
- _hashFns: Map<string, HashFn>;
105
- _derivations: Map<string, Derivation<any, any, any>>;
106
- _traits: Set<string>;
107
- constructor();
108
- resourceTypes(): Readonly<string[]>;
109
- hasTrait(type: string): boolean;
110
- resourceHasTrait(resource: StableRecordIdentifier | {
111
- type: string;
112
- }, trait: string): boolean;
113
- transformation(field: GenericField | ObjectField | ArrayField | {
114
- type: string;
115
- }): Transformation;
116
- derivation(field: DerivedField | {
117
- type: string;
118
- }): Derivation;
119
- hashFn(field: HashField | {
120
- type: string;
121
- }): HashFn;
122
- resource(resource: StableRecordIdentifier | {
123
- type: string;
124
- }): ResourceSchema | ObjectSchema;
125
- registerResources(schemas: Array<ResourceSchema | ObjectSchema>): void;
126
- registerResource(schema: ResourceSchema | ObjectSchema): void;
127
- registerTransformation<T extends Value = string, PT = unknown>(transformation: Transformation<T, PT>): void;
128
- registerDerivation<R, T, FM extends ObjectValue | null>(derivation: Derivation<R, T, FM>): void;
129
- registerHashFn<T extends object>(hashFn: HashFn<T>): void;
130
- fields({ type }: {
131
- type: string;
132
- }): InternalSchema['fields'];
133
- hasResource(resource: {
134
- type: string;
135
- }): boolean;
136
- }
137
- export {};
138
- }
139
- //# sourceMappingURL=schema.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"schema.d.ts","sourceRoot":"","sources":["../../src/-private/schema.ts"],"names":[],"mappings":"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"}
@@ -1,13 +0,0 @@
1
- declare module '@warp-drive/schema-record/-private/symbols' {
2
- export const SOURCE: "___(unique) Symbol(SOURCE)";
3
- export const MUTATE: "___(unique) Symbol(MUTATE)";
4
- export const Destroy: "___(unique) Symbol(Destroy)";
5
- export const Identifier: "___(unique) Symbol(Identifier)";
6
- export const Editable: "___(unique) Symbol(Editable)";
7
- export const Parent: "___(unique) Symbol(Parent)";
8
- export const Checkout: "___(unique) Symbol(Checkout)";
9
- export const Legacy: "___(unique) Symbol(Legacy)";
10
- export const EmbeddedPath: "___(unique) Symbol(EmbeddedPath)";
11
- export const EmbeddedType: "___(unique) Symbol(EmbeddedType)";
12
- }
13
- //# sourceMappingURL=symbols.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"symbols.d.ts","sourceRoot":"","sources":["../../src/-private/symbols.ts"],"names":[],"mappings":"AAiCA,eAAO,MAAM,MAAM,8BAA8C,CAAC;AAClE,eAAO,MAAM,MAAM,8BAA8C,CAAC;AAElE,eAAO,MAAM,OAAO,+BAA+C,CAAC;AACpE,eAAO,MAAM,UAAU,kCAAqD,CAAC;AAC7E,eAAO,MAAM,QAAQ,gCAAiD,CAAC;AACvE,eAAO,MAAM,MAAM,8BAA6C,CAAC;AACjE,eAAO,MAAM,QAAQ,gCAAiD,CAAC;AACvE,eAAO,MAAM,MAAM,8BAA6C,CAAC;AAEjE,eAAO,MAAM,YAAY,oCAAyD,CAAC;AACnF,eAAO,MAAM,YAAY,oCAAyD,CAAC"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"-private.d.ts","sourceRoot":"","sources":["../src/-private.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,oBAAoB,CAAC"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAiVG;AACH,OAAO,EAAE,iBAAiB,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAC;AACrE,OAAO,EAAE,KAAK,cAAc,EAAE,aAAa,EAAE,YAAY,EAAE,YAAY,EAAE,mBAAmB,EAAE,MAAM,mBAAmB,CAAC;AACxH,OAAO,EAAE,KAAK,YAAY,EAAE,MAAM,mBAAmB,CAAC;AACtD,OAAO,EAAE,QAAQ,EAAE,MAAM,oBAAoB,CAAC"}