@ember-data-types/rest 5.4.0-alpha.64 → 5.4.0-alpha.71
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/package.json
CHANGED
|
@@ -40,9 +40,9 @@ declare module '@ember-data/rest/-private/builders/find-record' {
|
|
|
40
40
|
* - `namespace` - The namespace to use for the request, defaults to the `namespace` configured with `setBuildURLConfig`.
|
|
41
41
|
* - `resourcePath` - The resource path to use for the request, defaults to pluralizing and camelCasing the supplied type
|
|
42
42
|
* - `reload` - Whether to forcibly reload the request if it is already in the store, not supplying this
|
|
43
|
-
* option will delegate to the store's
|
|
43
|
+
* option will delegate to the store's CachePolicy, defaulting to `false` if none is configured.
|
|
44
44
|
* - `backgroundReload` - Whether to reload the request if it is already in the store, but to also resolve the
|
|
45
|
-
* promise with the cached value, not supplying this option will delegate to the store's
|
|
45
|
+
* promise with the cached value, not supplying this option will delegate to the store's CachePolicy,
|
|
46
46
|
* defaulting to `false` if none is configured.
|
|
47
47
|
* - `urlParamsSetting` - an object containing options for how to serialize the query params (see `buildQueryParams`)
|
|
48
48
|
*
|
|
@@ -32,9 +32,9 @@ declare module '@ember-data/rest/-private/builders/query' {
|
|
|
32
32
|
* - `namespace` - The namespace to use for the request, defaults to the `namespace` configured with `setBuildURLConfig`.
|
|
33
33
|
* - `resourcePath` - The resource path to use for the request, defaults to pluralizing and camelCasing the supplied type
|
|
34
34
|
* - `reload` - Whether to forcibly reload the request if it is already in the store, not supplying this
|
|
35
|
-
* option will delegate to the store's
|
|
35
|
+
* option will delegate to the store's CachePolicy, defaulting to `false` if none is configured.
|
|
36
36
|
* - `backgroundReload` - Whether to reload the request if it is already in the store, but to also resolve the
|
|
37
|
-
* promise with the cached value, not supplying this option will delegate to the store's
|
|
37
|
+
* promise with the cached value, not supplying this option will delegate to the store's CachePolicy,
|
|
38
38
|
* defaulting to `false` if none is configured.
|
|
39
39
|
* - `urlParamsSetting` - an object containing options for how to serialize the query params (see `buildQueryParams`)
|
|
40
40
|
*
|
|
@@ -26,9 +26,9 @@ declare module '@ember-data/rest/-private/builders/save-record' {
|
|
|
26
26
|
* - `namespace` - The namespace to use for the request, defaults to the `namespace` configured with `setBuildURLConfig`.
|
|
27
27
|
* - `resourcePath` - The resource path to use for the request, defaults to pluralizing the supplied type
|
|
28
28
|
* - `reload` - Whether to forcibly reload the request if it is already in the store, not supplying this
|
|
29
|
-
* option will delegate to the store's
|
|
29
|
+
* option will delegate to the store's CachePolicy, defaulting to `false` if none is configured.
|
|
30
30
|
* - `backgroundReload` - Whether to reload the request if it is already in the store, but to also resolve the
|
|
31
|
-
* promise with the cached value, not supplying this option will delegate to the store's
|
|
31
|
+
* promise with the cached value, not supplying this option will delegate to the store's CachePolicy,
|
|
32
32
|
* defaulting to `false` if none is configured.
|
|
33
33
|
* - `urlParamsSetting` - an object containing options for how to serialize the query params (see `buildQueryParams`)
|
|
34
34
|
*
|
|
@@ -75,9 +75,9 @@ declare module '@ember-data/rest/-private/builders/save-record' {
|
|
|
75
75
|
* - `namespace` - The namespace to use for the request, defaults to the `namespace` configured with `setBuildURLConfig`.
|
|
76
76
|
* - `resourcePath` - The resource path to use for the request, defaults to pluralizing the supplied type
|
|
77
77
|
* - `reload` - Whether to forcibly reload the request if it is already in the store, not supplying this
|
|
78
|
-
* option will delegate to the store's
|
|
78
|
+
* option will delegate to the store's CachePolicy, defaulting to `false` if none is configured.
|
|
79
79
|
* - `backgroundReload` - Whether to reload the request if it is already in the store, but to also resolve the
|
|
80
|
-
* promise with the cached value, not supplying this option will delegate to the store's
|
|
80
|
+
* promise with the cached value, not supplying this option will delegate to the store's CachePolicy,
|
|
81
81
|
* defaulting to `false` if none is configured.
|
|
82
82
|
* - `urlParamsSetting` - an object containing options for how to serialize the query params (see `buildQueryParams`)
|
|
83
83
|
*
|
|
@@ -121,9 +121,9 @@ declare module '@ember-data/rest/-private/builders/save-record' {
|
|
|
121
121
|
* - `namespace` - The namespace to use for the request, defaults to the `namespace` configured with `setBuildURLConfig`.
|
|
122
122
|
* - `resourcePath` - The resource path to use for the request, defaults to pluralizing the supplied type
|
|
123
123
|
* - `reload` - Whether to forcibly reload the request if it is already in the store, not supplying this
|
|
124
|
-
* option will delegate to the store's
|
|
124
|
+
* option will delegate to the store's CachePolicy, defaulting to `false` if none is configured.
|
|
125
125
|
* - `backgroundReload` - Whether to reload the request if it is already in the store, but to also resolve the
|
|
126
|
-
* promise with the cached value, not supplying this option will delegate to the store's
|
|
126
|
+
* promise with the cached value, not supplying this option will delegate to the store's CachePolicy,
|
|
127
127
|
* defaulting to `false` if none is configured.
|
|
128
128
|
* - `urlParamsSetting` - an object containing options for how to serialize the query params (see `buildQueryParams`)
|
|
129
129
|
*
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/// <reference path="./request.d.ts" />
|
|
2
|
-
/// <reference path="./-private/builders/save-record.d.ts" />
|
|
3
|
-
/// <reference path="./-private/builders/query.d.ts" />
|
|
4
2
|
/// <reference path="./-private/builders/-utils.d.ts" />
|
|
5
|
-
/// <reference path="./-private/builders/find-record.d.ts" />
|
|
3
|
+
/// <reference path="./-private/builders/find-record.d.ts" />
|
|
4
|
+
/// <reference path="./-private/builders/query.d.ts" />
|
|
5
|
+
/// <reference path="./-private/builders/save-record.d.ts" />
|