@warp-drive/legacy 5.9.0-alpha.2 → 5.9.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/README.md +6 -0
- package/declarations/adapter/-private/build-url-mixin.d.ts +156 -0
- package/declarations/adapter/error.d.ts +385 -169
- package/declarations/adapter/json-api.d.ts +12 -1
- package/declarations/adapter/rest.d.ts +74 -0
- package/declarations/adapter.d.ts +6 -0
- package/declarations/compat/builders/find-all.d.ts +0 -1
- package/declarations/compat/extensions.d.ts +40 -0
- package/declarations/compat/legacy-network-handler/legacy-network-handler.d.ts +7 -0
- package/declarations/compat/legacy-network-handler/minimum-adapter-interface.d.ts +4 -0
- package/declarations/compat/legacy-network-handler/minimum-serializer-interface.d.ts +7 -0
- package/declarations/compat/utils.d.ts +11 -0
- package/declarations/compat.d.ts +32 -0
- package/declarations/index.d.ts +142 -0
- package/declarations/model/-private/attr.d.ts +21 -0
- package/declarations/model/-private/belongs-to.d.ts +21 -0
- package/declarations/model/-private/hooks.d.ts +26 -0
- package/declarations/model/-private/model.d.ts +55 -4
- package/declarations/model/-private/promise-many-array.d.ts +25 -1
- package/declarations/model/-private/schema-provider.d.ts +11 -1
- package/declarations/model/migration-support.d.ts +31 -5
- package/declarations/model-fragments/extensions/fragment-array.d.ts +38 -0
- package/declarations/model-fragments/extensions/fragment.d.ts +35 -0
- package/declarations/model-fragments/hooks/model-for.d.ts +7 -0
- package/declarations/model-fragments/index.d.ts +8 -0
- package/declarations/model-fragments/instance-initializers/fragment-extensions.d.ts +6 -0
- package/declarations/model-fragments/utilities/with-array-defaults.d.ts +30 -0
- package/declarations/model-fragments/utilities/with-fragment-array-defaults.d.ts +18 -0
- package/declarations/model-fragments/utilities/with-fragment-defaults.d.ts +15 -0
- package/declarations/model-fragments/utilities/with-legacy.d.ts +8 -0
- package/declarations/serializer/-private/transforms/boolean.d.ts +13 -0
- package/declarations/serializer/-private/transforms/date.d.ts +15 -1
- package/declarations/serializer/-private/transforms/number.d.ts +14 -1
- package/declarations/serializer/-private/transforms/string.d.ts +14 -1
- package/declarations/serializer/-private/utils.d.ts +24 -0
- package/declarations/serializer/json-api.d.ts +1 -1
- package/declarations/serializer.d.ts +4 -6
- package/declarations/store/-private.d.ts +2 -2
- package/declarations/store.d.ts +7 -0
- package/dist/adapter/error.js +386 -241
- package/dist/adapter/json-api.js +12 -0
- package/dist/adapter/rest.js +39 -3
- package/dist/adapter.js +23 -26
- package/dist/compat/builders.js +0 -1
- package/dist/compat/extensions.js +80 -3
- package/dist/compat/utils.js +14 -0
- package/dist/compat.js +17 -0
- package/dist/{errors-Cz5KrzBk.js → errors-DZKA206g.js} +24 -1
- package/dist/{hooks-D6diaM34.js → hooks-BvOqJBei.js} +33 -2
- package/dist/index.js +168 -13
- package/dist/{json-ChdEfB0X.js → json-DU8m1pGf.js} +83 -6
- package/dist/model/-private.js +1 -1
- package/dist/model/migration-support.js +15 -2
- package/dist/{unpkg/dev-deprecated/model-for-CqXsIKws.js → model-for-CXkJw59V.js} +77 -1
- package/dist/model-fragments.js +18 -2
- package/dist/model.js +12 -8
- package/dist/{schema-provider-DJCV_6AF.js → schema-provider-DtPOp0d7.js} +93 -6
- package/dist/serializer/json-api.js +8 -3
- package/dist/serializer/json.js +1 -1
- package/dist/serializer/rest.js +3 -4
- package/dist/serializer/transform.js +51 -3
- package/dist/serializer.js +4 -7
- package/dist/store.js +13 -7
- package/dist/unpkg/dev/adapter/error.js +386 -241
- package/dist/unpkg/dev/adapter/json-api.js +13 -1
- package/dist/unpkg/dev/adapter/rest.js +39 -3
- package/dist/unpkg/dev/adapter.js +23 -26
- package/dist/unpkg/dev/compat/builders.js +0 -1
- package/dist/unpkg/dev/compat/extensions.js +80 -3
- package/dist/unpkg/dev/compat/utils.js +14 -0
- package/dist/unpkg/dev/compat.js +34 -1
- package/dist/unpkg/dev/{errors-DmGGJr3T.js → errors-DngRU-If.js} +24 -1
- package/dist/unpkg/dev/{hooks-CkYiE6Ud.js → hooks-UuiLxWxS.js} +33 -2
- package/dist/unpkg/dev/index.js +171 -13
- package/dist/unpkg/dev/json-K2Y9z6MN.js +1333 -0
- package/dist/unpkg/dev/model/-private.js +1 -1
- package/dist/unpkg/dev/model/migration-support.js +16 -2
- package/dist/unpkg/{prod-deprecated/model-for-CqXsIKws.js → dev/model-for-CXkJw59V.js} +77 -1
- package/dist/unpkg/dev/model-fragments.js +18 -2
- package/dist/unpkg/dev/model.js +12 -8
- package/dist/unpkg/dev/{schema-provider-DDVYxmUV.js → schema-provider-0D7f-QOn.js} +92 -6
- package/dist/unpkg/dev/serializer/json-api.js +9 -4
- package/dist/unpkg/dev/serializer/json.js +1 -1
- package/dist/unpkg/dev/serializer/rest.js +3 -4
- package/dist/unpkg/dev/serializer/transform.js +51 -3
- package/dist/unpkg/dev/serializer.js +4 -7
- package/dist/unpkg/dev/store.js +21 -7
- package/dist/unpkg/dev-deprecated/adapter/error.js +386 -241
- package/dist/unpkg/dev-deprecated/adapter/json-api.js +13 -1
- package/dist/unpkg/dev-deprecated/adapter/rest.js +39 -3
- package/dist/unpkg/dev-deprecated/adapter.js +23 -26
- package/dist/unpkg/dev-deprecated/compat/builders.js +0 -1
- package/dist/unpkg/dev-deprecated/compat/extensions.js +80 -3
- package/dist/unpkg/dev-deprecated/compat/utils.js +14 -0
- package/dist/unpkg/dev-deprecated/compat.js +34 -1
- package/dist/unpkg/dev-deprecated/{errors-Spt6ubMd.js → errors-Bzidntpi.js} +24 -1
- package/dist/unpkg/dev-deprecated/{hooks-DOXegvhL.js → hooks-DVXhMW14.js} +33 -2
- package/dist/unpkg/dev-deprecated/index.js +171 -13
- package/dist/unpkg/{prod-deprecated/json-BWrZ5546.js → dev-deprecated/json-K2Y9z6MN.js} +96 -6
- package/dist/unpkg/dev-deprecated/model/-private.js +1 -1
- package/dist/unpkg/dev-deprecated/model/migration-support.js +16 -2
- package/dist/unpkg/{dev/model-for-CqXsIKws.js → dev-deprecated/model-for-CXkJw59V.js} +77 -1
- package/dist/unpkg/dev-deprecated/model-fragments.js +18 -2
- package/dist/unpkg/dev-deprecated/model.js +12 -8
- package/dist/unpkg/dev-deprecated/{schema-provider-BP6_8N-V.js → schema-provider-ZwO5_fZw.js} +84 -3
- package/dist/unpkg/dev-deprecated/serializer/json-api.js +9 -4
- package/dist/unpkg/dev-deprecated/serializer/json.js +1 -1
- package/dist/unpkg/dev-deprecated/serializer/rest.js +3 -4
- package/dist/unpkg/dev-deprecated/serializer/transform.js +51 -3
- package/dist/unpkg/dev-deprecated/serializer.js +4 -7
- package/dist/unpkg/dev-deprecated/store.js +21 -7
- package/dist/unpkg/prod/adapter/error.js +386 -241
- package/dist/unpkg/prod/adapter/json-api.js +13 -1
- package/dist/unpkg/prod/adapter/rest.js +39 -3
- package/dist/unpkg/prod/adapter.js +23 -26
- package/dist/unpkg/prod/compat/builders.js +0 -1
- package/dist/unpkg/prod/compat/extensions.js +70 -3
- package/dist/unpkg/prod/compat/utils.js +14 -0
- package/dist/unpkg/prod/compat.js +17 -0
- package/dist/unpkg/prod/{errors-BGVFCBmi.js → errors-B-PWeYlW.js} +24 -1
- package/dist/unpkg/prod/{hooks-BztVA_x0.js → hooks-Bx-zBziU.js} +32 -1
- package/dist/unpkg/prod/index.js +171 -5
- package/dist/unpkg/{dev/json-Cu1LNgmQ.js → prod/json-Qewu-UN9.js} +63 -19
- package/dist/unpkg/prod/model/-private.js +1 -1
- package/dist/unpkg/prod/model/migration-support.js +16 -2
- package/dist/unpkg/prod/model-for-CXkJw59V.js +297 -0
- package/dist/unpkg/prod/model-fragments.js +18 -2
- package/dist/unpkg/prod/model.js +12 -8
- package/dist/unpkg/prod/{schema-provider-DJtD_8jZ.js → schema-provider-BgRqk8i9.js} +96 -6
- package/dist/unpkg/prod/serializer/json-api.js +9 -4
- package/dist/unpkg/prod/serializer/json.js +1 -1
- package/dist/unpkg/prod/serializer/rest.js +3 -4
- package/dist/unpkg/prod/serializer/transform.js +51 -3
- package/dist/unpkg/prod/serializer.js +4 -7
- package/dist/unpkg/prod/store.js +21 -7
- package/dist/unpkg/prod-deprecated/adapter/error.js +386 -241
- package/dist/unpkg/prod-deprecated/adapter/json-api.js +13 -1
- package/dist/unpkg/prod-deprecated/adapter/rest.js +39 -3
- package/dist/unpkg/prod-deprecated/adapter.js +23 -26
- package/dist/unpkg/prod-deprecated/compat/builders.js +0 -1
- package/dist/unpkg/prod-deprecated/compat/extensions.js +70 -3
- package/dist/unpkg/prod-deprecated/compat/utils.js +14 -0
- package/dist/unpkg/prod-deprecated/compat.js +17 -0
- package/dist/unpkg/prod-deprecated/{errors-CdDaK81x.js → errors-Dl2J9d1D.js} +24 -1
- package/dist/unpkg/prod-deprecated/{hooks-yId87yyG.js → hooks-Cm60wWTf.js} +32 -1
- package/dist/unpkg/prod-deprecated/index.js +171 -5
- package/dist/unpkg/{dev-deprecated/json-Cu1LNgmQ.js → prod-deprecated/json-Qewu-UN9.js} +63 -19
- package/dist/unpkg/prod-deprecated/model/-private.js +1 -1
- package/dist/unpkg/prod-deprecated/model/migration-support.js +16 -2
- package/dist/{model-for-CqXsIKws.js → unpkg/prod-deprecated/model-for-CXkJw59V.js} +77 -1
- package/dist/unpkg/prod-deprecated/model-fragments.js +18 -2
- package/dist/unpkg/prod-deprecated/model.js +12 -8
- package/dist/unpkg/prod-deprecated/{schema-provider-CjX55uSY.js → schema-provider-Dh6tRqVI.js} +79 -3
- package/dist/unpkg/prod-deprecated/serializer/json-api.js +9 -4
- package/dist/unpkg/prod-deprecated/serializer/json.js +1 -1
- package/dist/unpkg/prod-deprecated/serializer/rest.js +3 -4
- package/dist/unpkg/prod-deprecated/serializer/transform.js +51 -3
- package/dist/unpkg/prod-deprecated/serializer.js +4 -7
- package/dist/unpkg/prod-deprecated/store.js +21 -7
- package/package.json +8 -8
- package/dist/unpkg/prod/json-BWrZ5546.js +0 -1243
- package/dist/unpkg/prod/model-for-CqXsIKws.js +0 -221
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { camelize, dasherize, singularize } from '@warp-drive/utilities/string';
|
|
2
|
-
import { J as JSONSerializer, c as coerceId } from "../json-
|
|
2
|
+
import { i as inverseForRelationship, J as JSONSerializer, c as coerceId } from "../json-Qewu-UN9.js";
|
|
3
3
|
import Mixin from '@ember/object/mixin';
|
|
4
4
|
|
|
5
5
|
/* eslint-disable @typescript-eslint/no-unsafe-argument */
|
|
@@ -417,8 +417,7 @@ const EmbeddedRecordsMixin = Mixin.create({
|
|
|
417
417
|
*/
|
|
418
418
|
removeEmbeddedForeignKey(snapshot, embeddedSnapshot, relationship, json) {
|
|
419
419
|
if (relationship.kind === 'belongsTo') {
|
|
420
|
-
const
|
|
421
|
-
const parentRecord = schema.inverseFor(relationship.name, this.store);
|
|
420
|
+
const parentRecord = inverseForRelationship(this.store, snapshot.modelName, relationship.name);
|
|
422
421
|
if (parentRecord) {
|
|
423
422
|
const name = parentRecord.name;
|
|
424
423
|
const embeddedSerializer = this.store.serializerFor(embeddedSnapshot.modelName);
|
|
@@ -999,7 +998,7 @@ const RESTSerializer = JSONSerializer.extend({
|
|
|
999
998
|
`serialize` takes an options hash with a single option:
|
|
1000
999
|
`includeId`. If this option is `true`, `serialize` will,
|
|
1001
1000
|
by default include the ID in the JSON object it builds.
|
|
1002
|
-
The
|
|
1001
|
+
The RESTAdapter passes in `includeId: true` when serializing
|
|
1003
1002
|
a record for `createRecord`, but not for `updateRecord`.
|
|
1004
1003
|
## Customization
|
|
1005
1004
|
Your server may expect a different JSON format than the
|
|
@@ -116,6 +116,10 @@ const Transform = EmberObject;
|
|
|
116
116
|
@public
|
|
117
117
|
*/
|
|
118
118
|
class BooleanTransform {
|
|
119
|
+
/**
|
|
120
|
+
* Converts a serialized (raw payload) value into a `boolean` (or `null`
|
|
121
|
+
* when `allowNull` is set and the value is nullish).
|
|
122
|
+
*/
|
|
119
123
|
deserialize(serialized, options) {
|
|
120
124
|
if ((serialized === null || serialized === undefined) && options?.allowNull === true) {
|
|
121
125
|
return null;
|
|
@@ -130,12 +134,20 @@ class BooleanTransform {
|
|
|
130
134
|
return false;
|
|
131
135
|
}
|
|
132
136
|
}
|
|
137
|
+
|
|
138
|
+
/**
|
|
139
|
+
* Converts a `boolean` attribute value into its serialized (raw payload) form.
|
|
140
|
+
*/
|
|
133
141
|
serialize(deserialized, options) {
|
|
134
142
|
if ((deserialized === null || deserialized === undefined) && options?.allowNull === true) {
|
|
135
143
|
return null;
|
|
136
144
|
}
|
|
137
145
|
return Boolean(deserialized);
|
|
138
146
|
}
|
|
147
|
+
|
|
148
|
+
/**
|
|
149
|
+
* Creates a new instance of this transform.
|
|
150
|
+
*/
|
|
139
151
|
static create() {
|
|
140
152
|
return new this();
|
|
141
153
|
}
|
|
@@ -151,7 +163,7 @@ class BooleanTransform {
|
|
|
151
163
|
standard.
|
|
152
164
|
|
|
153
165
|
```js [app/models/score.js]
|
|
154
|
-
import Model, { attr, belongsTo } from '@
|
|
166
|
+
import Model, { attr, belongsTo } from '@warp-drive/legacy/model';
|
|
155
167
|
|
|
156
168
|
export default class ScoreModel extends Model {
|
|
157
169
|
@attr('number') value;
|
|
@@ -164,6 +176,10 @@ class BooleanTransform {
|
|
|
164
176
|
*/
|
|
165
177
|
|
|
166
178
|
class DateTransform {
|
|
179
|
+
/**
|
|
180
|
+
* Converts a serialized (raw payload) `ISO 8601` string, epoch number,
|
|
181
|
+
* or nullish value into a `Date` (or `null`/`undefined`).
|
|
182
|
+
*/
|
|
167
183
|
deserialize(serialized, _options) {
|
|
168
184
|
if (typeof serialized === 'string') {
|
|
169
185
|
let offset = serialized.indexOf('+');
|
|
@@ -182,6 +198,11 @@ class DateTransform {
|
|
|
182
198
|
return null;
|
|
183
199
|
}
|
|
184
200
|
}
|
|
201
|
+
|
|
202
|
+
/**
|
|
203
|
+
* Converts a `Date` attribute value into an `ISO 8601` string, or `null`
|
|
204
|
+
* if the value is not a valid `Date`.
|
|
205
|
+
*/
|
|
185
206
|
serialize(date, _options) {
|
|
186
207
|
// @ts-expect-error isNaN accepts date as it is coercible
|
|
187
208
|
if (date instanceof Date && !isNaN(date)) {
|
|
@@ -190,6 +211,10 @@ class DateTransform {
|
|
|
190
211
|
return null;
|
|
191
212
|
}
|
|
192
213
|
}
|
|
214
|
+
|
|
215
|
+
/**
|
|
216
|
+
* Creates a new instance of this transform.
|
|
217
|
+
*/
|
|
193
218
|
static create() {
|
|
194
219
|
return new this();
|
|
195
220
|
}
|
|
@@ -209,7 +234,7 @@ function isNumber(value) {
|
|
|
209
234
|
Usage
|
|
210
235
|
|
|
211
236
|
```js [app/models/score.js]
|
|
212
|
-
import Model, { attr, belongsTo } from '@
|
|
237
|
+
import Model, { attr, belongsTo } from '@warp-drive/legacy/model';
|
|
213
238
|
|
|
214
239
|
export default class ScoreModel extends Model {
|
|
215
240
|
@attr('number') value;
|
|
@@ -221,6 +246,10 @@ function isNumber(value) {
|
|
|
221
246
|
@public
|
|
222
247
|
*/
|
|
223
248
|
class NumberTransform {
|
|
249
|
+
/**
|
|
250
|
+
* Converts a serialized (raw payload) value into a `number`, or `null`
|
|
251
|
+
* if the value is empty, nullish, or not a valid number.
|
|
252
|
+
*/
|
|
224
253
|
deserialize(serialized, _options) {
|
|
225
254
|
if (serialized === '' || serialized === null || serialized === undefined) {
|
|
226
255
|
return null;
|
|
@@ -229,6 +258,10 @@ class NumberTransform {
|
|
|
229
258
|
return isNumber(transformed) ? transformed : null;
|
|
230
259
|
}
|
|
231
260
|
}
|
|
261
|
+
|
|
262
|
+
/**
|
|
263
|
+
* Converts a `number` attribute value into its serialized (raw payload) form.
|
|
264
|
+
*/
|
|
232
265
|
serialize(deserialized, _options) {
|
|
233
266
|
if (deserialized === '' || deserialized === null || deserialized === undefined) {
|
|
234
267
|
return null;
|
|
@@ -237,6 +270,10 @@ class NumberTransform {
|
|
|
237
270
|
return isNumber(transformed) ? transformed : null;
|
|
238
271
|
}
|
|
239
272
|
}
|
|
273
|
+
|
|
274
|
+
/**
|
|
275
|
+
* Creates a new instance of this transform.
|
|
276
|
+
*/
|
|
240
277
|
static create() {
|
|
241
278
|
return new this();
|
|
242
279
|
}
|
|
@@ -253,7 +290,7 @@ class NumberTransform {
|
|
|
253
290
|
Usage
|
|
254
291
|
|
|
255
292
|
```js [app/models/user.js]
|
|
256
|
-
import Model, { attr, belongsTo } from '@
|
|
293
|
+
import Model, { attr, belongsTo } from '@warp-drive/legacy/model';
|
|
257
294
|
|
|
258
295
|
export default class UserModel extends Model {
|
|
259
296
|
@attr('boolean') isAdmin;
|
|
@@ -265,12 +302,23 @@ class NumberTransform {
|
|
|
265
302
|
@public
|
|
266
303
|
*/
|
|
267
304
|
class StringTransform {
|
|
305
|
+
/**
|
|
306
|
+
* Converts a serialized (raw payload) value into a `string`, or `null`
|
|
307
|
+
* if the value is falsy (and not an empty string).
|
|
308
|
+
*/
|
|
268
309
|
deserialize(serialized, _options) {
|
|
269
310
|
return !serialized && serialized !== '' ? null : String(serialized);
|
|
270
311
|
}
|
|
312
|
+
/**
|
|
313
|
+
* Converts a `string` attribute value into its serialized (raw payload) form.
|
|
314
|
+
*/
|
|
271
315
|
serialize(deserialized, _options) {
|
|
272
316
|
return !deserialized && deserialized !== '' ? null : String(deserialized);
|
|
273
317
|
}
|
|
318
|
+
|
|
319
|
+
/**
|
|
320
|
+
* Creates a new instance of this transform.
|
|
321
|
+
*/
|
|
274
322
|
static create() {
|
|
275
323
|
return new this();
|
|
276
324
|
}
|
|
@@ -149,11 +149,8 @@ class Serializer extends EmberObject {
|
|
|
149
149
|
}
|
|
150
150
|
});
|
|
151
151
|
```
|
|
152
|
-
@
|
|
153
|
-
@type {Store}
|
|
154
|
-
@public
|
|
152
|
+
@public
|
|
155
153
|
*/
|
|
156
|
-
|
|
157
154
|
/**
|
|
158
155
|
The `normalizeResponse` method is used to normalize a payload from the
|
|
159
156
|
server to a JSON-API Document.
|
|
@@ -237,9 +234,9 @@ class Serializer extends EmberObject {
|
|
|
237
234
|
})
|
|
238
235
|
```
|
|
239
236
|
@public
|
|
240
|
-
@param
|
|
241
|
-
@param
|
|
242
|
-
@return
|
|
237
|
+
@param _typeClass - the model class the hash is being normalized for
|
|
238
|
+
@param hash - the raw payload hash to normalize
|
|
239
|
+
@return the normalized resource document
|
|
243
240
|
*/
|
|
244
241
|
normalize(_typeClass, hash) {
|
|
245
242
|
return hash;
|
|
@@ -98,12 +98,11 @@ function resourceIsFullyDeleted(instanceCache, identifier) {
|
|
|
98
98
|
class RecordReference {
|
|
99
99
|
/** @internal */
|
|
100
100
|
|
|
101
|
-
/** @internal */
|
|
102
101
|
// unsubscribe token given to us by the notification manager
|
|
102
|
+
/** @internal */
|
|
103
103
|
___token;
|
|
104
104
|
/** @internal */
|
|
105
105
|
___identifier;
|
|
106
|
-
|
|
107
106
|
/** @internal */
|
|
108
107
|
|
|
109
108
|
constructor(store, identifier) {
|
|
@@ -134,7 +133,7 @@ class RecordReference {
|
|
|
134
133
|
userRef.id(); // '1'
|
|
135
134
|
```
|
|
136
135
|
@public
|
|
137
|
-
|
|
136
|
+
@return The id of the record.
|
|
138
137
|
*/
|
|
139
138
|
id() {
|
|
140
139
|
// eslint-disable-next-line @typescript-eslint/no-unused-expressions
|
|
@@ -152,7 +151,7 @@ class RecordReference {
|
|
|
152
151
|
userRef.identifier(); // '1'
|
|
153
152
|
```
|
|
154
153
|
@public
|
|
155
|
-
|
|
154
|
+
@return The identifier of the record.
|
|
156
155
|
*/
|
|
157
156
|
identifier() {
|
|
158
157
|
return this.___identifier;
|
|
@@ -178,7 +177,7 @@ class RecordReference {
|
|
|
178
177
|
simplest usage of this API is similar to `store.push`: you provide a
|
|
179
178
|
normalized hash of data and the object represented by the reference
|
|
180
179
|
will update.
|
|
181
|
-
If you pass a promise to `push`,
|
|
180
|
+
If you pass a promise to `push`, WarpDrive will not ask the adapter
|
|
182
181
|
for the data if another attempt to fetch it is made in the
|
|
183
182
|
interim. When the promise resolves, the underlying object is updated
|
|
184
183
|
with the new data, and the promise returned by *this function* is resolved
|
|
@@ -222,7 +221,7 @@ class RecordReference {
|
|
|
222
221
|
userRef.value(); // user
|
|
223
222
|
```
|
|
224
223
|
@public
|
|
225
|
-
|
|
224
|
+
@return the record for this RecordReference
|
|
226
225
|
*/
|
|
227
226
|
value() {
|
|
228
227
|
return this.store.peekRecord(this.___identifier);
|
|
@@ -357,6 +356,14 @@ class ShimModelClass {
|
|
|
357
356
|
});
|
|
358
357
|
}
|
|
359
358
|
}
|
|
359
|
+
|
|
360
|
+
/**
|
|
361
|
+
* Restores the deprecated `findRecord`/`findAll`/`query`/`queryRecord`/
|
|
362
|
+
* `findBelongsTo`/`findHasMany`/`createRecord`/`deleteRecord`/`saveRecord`
|
|
363
|
+
* legacy-network-layer implementations of these methods onto the given
|
|
364
|
+
* `Store` subclass, for apps that have not yet migrated to the
|
|
365
|
+
* `RequestManager`-based equivalents.
|
|
366
|
+
*/
|
|
360
367
|
function restoreDeprecatedStoreBehaviors(StoreKlass) {
|
|
361
368
|
StoreKlass.prototype.findRecord = function (resource, id, options) {
|
|
362
369
|
if (isMaybeIdentifier(resource)) {
|
|
@@ -437,7 +444,14 @@ function restoreDeprecatedStoreBehaviors(StoreKlass) {
|
|
|
437
444
|
};
|
|
438
445
|
|
|
439
446
|
// do not put a ts-expect-error here, because typedoc will fail to
|
|
440
|
-
// build due to this error only occurring when references are in use in the editor
|
|
447
|
+
// build due to this error only occurring when references are in use in the editor.
|
|
448
|
+
// The return statement below casts to `PrivateStore['getReference']`'s return
|
|
449
|
+
// type rather than annotating this function `: RecordReference` directly,
|
|
450
|
+
// since this package's `RecordReference` and core's `deprecated/-private.ts`
|
|
451
|
+
// copy are structurally identical but nominally distinct classes (TS treats
|
|
452
|
+
// their private fields as separate brands); casting only the return value
|
|
453
|
+
// (instead of the whole function) keeps `this` contextually typed from the
|
|
454
|
+
// assignment target below.
|
|
441
455
|
StoreKlass.prototype.getReference = function (resource, id) {
|
|
442
456
|
let resourceIdentifier;
|
|
443
457
|
if (arguments.length === 1 && isMaybeIdentifier(resource)) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@warp-drive/legacy",
|
|
3
|
-
"version": "5.9.0-alpha.
|
|
3
|
+
"version": "5.9.0-alpha.21",
|
|
4
4
|
"description": "Decommissioned Packages for WarpDrive | Things your app might still want to maintain use of for a little longer.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"ember-addon"
|
|
@@ -40,22 +40,22 @@
|
|
|
40
40
|
}
|
|
41
41
|
},
|
|
42
42
|
"peerDependencies": {
|
|
43
|
-
"@warp-drive/core": "5.9.0-alpha.
|
|
44
|
-
"@warp-drive/utilities": "5.9.0-alpha.
|
|
43
|
+
"@warp-drive/core": "5.9.0-alpha.21",
|
|
44
|
+
"@warp-drive/utilities": "5.9.0-alpha.21"
|
|
45
45
|
},
|
|
46
46
|
"dependencies": {
|
|
47
|
-
"@embroider/macros": "^1.
|
|
47
|
+
"@embroider/macros": "^1.20.6"
|
|
48
48
|
},
|
|
49
49
|
"devDependencies": {
|
|
50
50
|
"@babel/core": "^7.28.3",
|
|
51
51
|
"@babel/plugin-transform-typescript": "^7.28.0",
|
|
52
52
|
"@babel/preset-typescript": "^7.27.1",
|
|
53
53
|
"@types/jquery": "^3.5.33",
|
|
54
|
-
"@warp-drive/
|
|
55
|
-
"@warp-drive/
|
|
56
|
-
"@warp-drive/utilities": "5.9.0-alpha.
|
|
57
|
-
"ember-source": "~6.10.0",
|
|
54
|
+
"@warp-drive/core": "5.9.0-alpha.21",
|
|
55
|
+
"@warp-drive/internal-config": "5.9.0-alpha.21",
|
|
56
|
+
"@warp-drive/utilities": "5.9.0-alpha.21",
|
|
58
57
|
"decorator-transforms": "^2.3.0",
|
|
58
|
+
"ember-source": "~6.12.0",
|
|
59
59
|
"expect-type": "^1.2.2",
|
|
60
60
|
"typescript": "^5.9.3",
|
|
61
61
|
"vite": "^7.3.1"
|