@ember-data-types/rest 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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ember-data-types/rest",
3
- "version": "5.6.0-alpha.5",
3
+ "version": "5.6.0-beta.1",
4
4
  "files": [
5
5
  "unstable-preview-types",
6
6
  "README.md",
@@ -1,5 +1 @@
1
- /// <reference path="./request.d.ts" />
2
- /// <reference path="./-private/builders/-utils.d.ts" />
3
- /// <reference path="./-private/builders/find-record.d.ts" />
4
- /// <reference path="./-private/builders/save-record.d.ts" />
5
- /// <reference path="./-private/builders/query.d.ts" />
1
+ /// <reference path="./request.d.ts" />
@@ -1,13 +1,13 @@
1
1
  declare module '@ember-data/rest/request' {
2
2
  /**
3
- * <p align="center">
4
- <img
5
- class="project-logo"
6
- src="https://raw.githubusercontent.com/emberjs/data/4612c9354e4c54d53327ec2cf21955075ce21294/ember-data-logo-light.svg#gh-light-mode-only"
7
- alt="EmberData"
8
- width="240px"
9
- title="EmberData"
10
- />
3
+ * <p align="center">
4
+ <img
5
+ class="project-logo"
6
+ src="https://raw.githubusercontent.com/emberjs/data/4612c9354e4c54d53327ec2cf21955075ce21294/ember-data-logo-light.svg#gh-light-mode-only"
7
+ alt="EmberData"
8
+ width="240px"
9
+ title="EmberData"
10
+ />
11
11
  </p>
12
12
 
13
13
  This package provides utilities for working with **REST**ful APIs with [*Ember***Data**](https://github.com/emberjs/data/).
@@ -33,13 +33,13 @@ declare module '@ember-data/rest/request' {
33
33
  const options = findRecord('ember-developer', '1', { include: ['pets', 'friends'] });
34
34
 
35
35
  /*
36
- => {
37
- url: 'https://api.example.com/v1/emberDevelopers/1?include=friends,pets',
38
- method: 'GET',
39
- headers: <Headers>, // 'Content-Type': 'application/json;charset=utf-8'
40
- op: 'findRecord';
41
- records: [{ type: 'ember-developer', id: '1' }]
42
- }
36
+ => {
37
+ url: 'https://api.example.com/v1/emberDevelopers/1?include=friends,pets',
38
+ method: 'GET',
39
+ headers: <Headers>, // 'Content-Type': 'application/json;charset=utf-8'
40
+ op: 'findRecord';
41
+ records: [{ type: 'ember-developer', id: '1' }]
42
+ }
43
43
  * /
44
44
  ```
45
45
 
@@ -61,11 +61,9 @@ declare module '@ember-data/rest/request' {
61
61
  - [query](https://api.emberjs.com/ember-data/release/functions/@ember-data%2Frest/query)
62
62
  - [updateRecord](https://api.emberjs.com/ember-data/release/functions/@ember-data%2Frest/updateRecord)
63
63
 
64
- * @module
65
- * @public
66
- */
67
- export { findRecord } from '@ember-data/rest/-private/builders/find-record';
68
- export { query } from '@ember-data/rest/-private/builders/query';
69
- export { deleteRecord, createRecord, updateRecord } from '@ember-data/rest/-private/builders/save-record';
70
- }
71
- //# sourceMappingURL=request.d.ts.map
64
+ * @module
65
+ * @public
66
+ */
67
+ export { findRecord, query, deleteRecord, createRecord, updateRecord } from "@warp-drive/utilities/rest";
68
+
69
+ }
@@ -1,7 +0,0 @@
1
- declare module '@ember-data/rest/-private/builders/-utils' {
2
- import type { UrlOptions } from '@ember-data/request-utils';
3
- import type { CacheOptions, ConstrainedRequestOptions } from '@warp-drive/core-types/request';
4
- export function copyForwardUrlOptions(urlOptions: UrlOptions, options: ConstrainedRequestOptions): void;
5
- export function extractCacheOptions(options: ConstrainedRequestOptions): CacheOptions;
6
- }
7
- //# sourceMappingURL=-utils.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"-utils.d.ts","sourceRoot":"","sources":["../../../src/-private/builders/-utils.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,2BAA2B,CAAC;AAC5D,OAAO,KAAK,EAAE,YAAY,EAAE,yBAAyB,EAAE,MAAM,gCAAgC,CAAC;AAE9F,wBAAgB,qBAAqB,CAAC,UAAU,EAAE,UAAU,EAAE,OAAO,EAAE,yBAAyB,GAAG,IAAI,CAUtG;AAED,wBAAgB,mBAAmB,CAAC,OAAO,EAAE,yBAAyB,GAAG,YAAY,CASpF"}
@@ -1,68 +0,0 @@
1
- declare module '@ember-data/rest/-private/builders/find-record' {
2
- import type { TypeFromInstance } from '@warp-drive/core-types/record';
3
- import type { FindRecordOptions, FindRecordRequestOptions, RemotelyAccessibleIdentifier } from '@warp-drive/core-types/request';
4
- import type { SingleResourceDataDocument } from '@warp-drive/core-types/spec/document';
5
- /**
6
- * Builds request options to fetch a single resource by a known id or identifier
7
- * configured for the url and header expectations of most REST APIs.
8
- *
9
- * **Basic Usage**
10
- *
11
- * ```ts
12
- * import { findRecord } from '@ember-data/rest/request';
13
- *
14
- * const data = await store.request(findRecord('person', '1'));
15
- * ```
16
- *
17
- * **With Options**
18
- *
19
- * ```ts
20
- * import { findRecord } from '@ember-data/rest/request';
21
- *
22
- * const options = findRecord('person', '1', { include: ['pets', 'friends'] });
23
- * const data = await store.request(options);
24
- * ```
25
- *
26
- * **With an Identifier**
27
- *
28
- * ```ts
29
- * import { findRecord } from '@ember-data/rest/request';
30
- *
31
- * const options = findRecord({ type: 'person', id: '1' }, { include: ['pets', 'friends'] });
32
- * const data = await store.request(options);
33
- * ```
34
- *
35
- * **Supplying Options to Modify the Request Behavior**
36
- *
37
- * The following options are supported:
38
- *
39
- * - `host` - The host to use for the request, defaults to the `host` configured with `setBuildURLConfig`.
40
- * - `namespace` - The namespace to use for the request, defaults to the `namespace` configured with `setBuildURLConfig`.
41
- * - `resourcePath` - The resource path to use for the request, defaults to pluralizing and camelCasing the supplied type
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 CachePolicy, defaulting to `false` if none is configured.
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 CachePolicy,
46
- * defaulting to `false` if none is configured.
47
- * - `urlParamsSetting` - an object containing options for how to serialize the query params (see `buildQueryParams`)
48
- *
49
- * ```ts
50
- * import { findRecord } from '@ember-data/rest/request';
51
- *
52
- * const options = findRecord('person', '1', { include: ['pets', 'friends'] }, { namespace: 'api/v2' });
53
- * const data = await store.request(options);
54
- * ```
55
- *
56
- * @public
57
- * @param identifier
58
- * @param options
59
- */
60
- export type FindRecordResultDocument<T> = Omit<SingleResourceDataDocument<T>, 'data'> & {
61
- data: T;
62
- };
63
- export function findRecord<T>(identifier: RemotelyAccessibleIdentifier<TypeFromInstance<T>>, options?: FindRecordOptions<T>): FindRecordRequestOptions<FindRecordResultDocument<T>, T>;
64
- export function findRecord(identifier: RemotelyAccessibleIdentifier, options?: FindRecordOptions): FindRecordRequestOptions;
65
- export function findRecord<T>(type: TypeFromInstance<T>, id: string, options?: FindRecordOptions<T>): FindRecordRequestOptions<FindRecordResultDocument<T>, T>;
66
- export function findRecord(type: string, id: string, options?: FindRecordOptions): FindRecordRequestOptions;
67
- }
68
- //# sourceMappingURL=find-record.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"find-record.d.ts","sourceRoot":"","sources":["../../../src/-private/builders/find-record.ts"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAE,gBAAgB,EAAE,MAAM,+BAA+B,CAAC;AACtE,OAAO,KAAK,EACV,iBAAiB,EACjB,wBAAwB,EACxB,4BAA4B,EAC7B,MAAM,gCAAgC,CAAC;AACxC,OAAO,KAAK,EAAE,0BAA0B,EAAE,MAAM,sCAAsC,CAAC;AAIvF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAsDG;AACH,MAAM,MAAM,wBAAwB,CAAC,CAAC,IAAI,IAAI,CAAC,0BAA0B,CAAC,CAAC,CAAC,EAAE,MAAM,CAAC,GAAG;IAAE,IAAI,EAAE,CAAC,CAAA;CAAE,CAAC;AAEpG,wBAAgB,UAAU,CAAC,CAAC,EAC1B,UAAU,EAAE,4BAA4B,CAAC,gBAAgB,CAAC,CAAC,CAAC,CAAC,EAC7D,OAAO,CAAC,EAAE,iBAAiB,CAAC,CAAC,CAAC,GAC7B,wBAAwB,CAAC,wBAAwB,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC;AAC5D,wBAAgB,UAAU,CACxB,UAAU,EAAE,4BAA4B,EACxC,OAAO,CAAC,EAAE,iBAAiB,GAC1B,wBAAwB,CAAC;AAC5B,wBAAgB,UAAU,CAAC,CAAC,EAC1B,IAAI,EAAE,gBAAgB,CAAC,CAAC,CAAC,EACzB,EAAE,EAAE,MAAM,EACV,OAAO,CAAC,EAAE,iBAAiB,CAAC,CAAC,CAAC,GAC7B,wBAAwB,CAAC,wBAAwB,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC;AAC5D,wBAAgB,UAAU,CAAC,IAAI,EAAE,MAAM,EAAE,EAAE,EAAE,MAAM,EAAE,OAAO,CAAC,EAAE,iBAAiB,GAAG,wBAAwB,CAAC"}
@@ -1,56 +0,0 @@
1
- declare module '@ember-data/rest/-private/builders/query' {
2
- import type { QueryParamsSource } from '@warp-drive/core-types/params';
3
- import type { TypeFromInstance } from '@warp-drive/core-types/record';
4
- import type { ConstrainedRequestOptions, QueryRequestOptions } from '@warp-drive/core-types/request';
5
- import type { CollectionResourceDataDocument } from '@warp-drive/core-types/spec/document';
6
- /**
7
- * Builds request options to query for resources, usually by a primary
8
- * type, configured for the url and header expectations of most REST APIs.
9
- *
10
- * **Basic Usage**
11
- *
12
- * ```ts
13
- * import { query } from '@ember-data/rest/request';
14
- *
15
- * const data = await store.request(query('person'));
16
- * ```
17
- *
18
- * **With Query Params**
19
- *
20
- * ```ts
21
- * import { query } from '@ember-data/rest/request';
22
- *
23
- * const options = query('person', { include: ['pets', 'friends'] });
24
- * const data = await store.request(options);
25
- * ```
26
- *
27
- * **Supplying Options to Modify the Request Behavior**
28
- *
29
- * The following options are supported:
30
- *
31
- * - `host` - The host to use for the request, defaults to the `host` configured with `setBuildURLConfig`.
32
- * - `namespace` - The namespace to use for the request, defaults to the `namespace` configured with `setBuildURLConfig`.
33
- * - `resourcePath` - The resource path to use for the request, defaults to pluralizing and camelCasing the supplied type
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 CachePolicy, defaulting to `false` if none is configured.
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 CachePolicy,
38
- * defaulting to `false` if none is configured.
39
- * - `urlParamsSettings` - an object containing options for how to serialize the query params (see `buildQueryParams`)
40
- *
41
- * ```ts
42
- * import { query } from '@ember-data/rest/request';
43
- *
44
- * const options = query('person', { include: ['pets', 'friends'] }, { reload: true });
45
- * const data = await store.request(options);
46
- * ```
47
- *
48
- * @public
49
- * @param identifier
50
- * @param query
51
- * @param options
52
- */
53
- export function query<T>(type: TypeFromInstance<T>, query?: QueryParamsSource, options?: ConstrainedRequestOptions): QueryRequestOptions<CollectionResourceDataDocument<T>, T>;
54
- export function query(type: string, query?: QueryParamsSource, options?: ConstrainedRequestOptions): QueryRequestOptions;
55
- }
56
- //# sourceMappingURL=query.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"query.d.ts","sourceRoot":"","sources":["../../../src/-private/builders/query.ts"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,+BAA+B,CAAC;AACvE,OAAO,KAAK,EAAE,gBAAgB,EAAE,MAAM,+BAA+B,CAAC;AACtE,OAAO,KAAK,EAAE,yBAAyB,EAAE,mBAAmB,EAAE,MAAM,gCAAgC,CAAC;AACrG,OAAO,KAAK,EAAE,8BAA8B,EAAE,MAAM,sCAAsC,CAAC;AAI3F;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA8CG;AACH,wBAAgB,KAAK,CAAC,CAAC,EACrB,IAAI,EAAE,gBAAgB,CAAC,CAAC,CAAC,EACzB,KAAK,CAAC,EAAE,iBAAiB,EACzB,OAAO,CAAC,EAAE,yBAAyB,GAClC,mBAAmB,CAAC,8BAA8B,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC;AAC7D,wBAAgB,KAAK,CACnB,IAAI,EAAE,MAAM,EACZ,KAAK,CAAC,EAAE,iBAAiB,EACzB,OAAO,CAAC,EAAE,yBAAyB,GAClC,mBAAmB,CAAC"}
@@ -1,146 +0,0 @@
1
- declare module '@ember-data/rest/-private/builders/save-record' {
2
- import type { TypedRecordInstance } from '@warp-drive/core-types/record';
3
- import type { ConstrainedRequestOptions, CreateRequestOptions, DeleteRequestOptions, UpdateRequestOptions } from '@warp-drive/core-types/request';
4
- import type { SingleResourceDataDocument } from '@warp-drive/core-types/spec/document';
5
- /**
6
- * Builds request options to delete record for resources,
7
- * configured for the url, method and header expectations of REST APIs.
8
- *
9
- * **Basic Usage**
10
- *
11
- * ```ts
12
- * import { deleteRecord } from '@ember-data/rest/request';
13
- *
14
- * const person = store.peekRecord('person', '1');
15
- *
16
- * // mark record as deleted
17
- * store.deleteRecord(person);
18
- *
19
- * // persist deletion
20
- * const data = await store.request(deleteRecord(person));
21
- * ```
22
- *
23
- * **Supplying Options to Modify the Request Behavior**
24
- *
25
- * The following options are supported:
26
- *
27
- * - `host` - The host to use for the request, defaults to the `host` configured with `setBuildURLConfig`.
28
- * - `namespace` - The namespace to use for the request, defaults to the `namespace` configured with `setBuildURLConfig`.
29
- * - `resourcePath` - The resource path to use for the request, defaults to pluralizing the supplied type
30
- * - `reload` - Whether to forcibly reload the request if it is already in the store, not supplying this
31
- * option will delegate to the store's CachePolicy, defaulting to `false` if none is configured.
32
- * - `backgroundReload` - Whether to reload the request if it is already in the store, but to also resolve the
33
- * promise with the cached value, not supplying this option will delegate to the store's CachePolicy,
34
- * defaulting to `false` if none is configured.
35
- * - `urlParamsSetting` - an object containing options for how to serialize the query params (see `buildQueryParams`)
36
- *
37
- * ```ts
38
- * import { deleteRecord } from '@ember-data/rest/request';
39
- *
40
- * const person = store.peekRecord('person', '1');
41
- *
42
- * // mark record as deleted
43
- * store.deleteRecord(person);
44
- *
45
- * // persist deletion
46
- * const options = deleteRecord(person, { namespace: 'api/v1' });
47
- * const data = await store.request(options);
48
- * ```
49
- *
50
- * @public
51
- * @param record
52
- * @param options
53
- */
54
- export function deleteRecord<T>(record: T, options?: ConstrainedRequestOptions): DeleteRequestOptions<T>;
55
- export function deleteRecord(record: unknown, options?: ConstrainedRequestOptions): DeleteRequestOptions;
56
- /**
57
- * Builds request options to create new record for resources,
58
- * configured for the url, method and header expectations of most REST APIs.
59
- *
60
- * **Basic Usage**
61
- *
62
- * ```ts
63
- * import { createRecord } from '@ember-data/rest/request';
64
- *
65
- * const person = store.createRecord('person', { name: 'Ted' });
66
- * const data = await store.request(createRecord(person));
67
- * ```
68
- *
69
- * **Supplying Options to Modify the Request Behavior**
70
- *
71
- * The following options are supported:
72
- *
73
- * - `host` - The host to use for the request, defaults to the `host` configured with `setBuildURLConfig`.
74
- * - `namespace` - The namespace to use for the request, defaults to the `namespace` configured with `setBuildURLConfig`.
75
- * - `resourcePath` - The resource path to use for the request, defaults to pluralizing the supplied type
76
- * - `reload` - Whether to forcibly reload the request if it is already in the store, not supplying this
77
- * option will delegate to the store's CachePolicy, defaulting to `false` if none is configured.
78
- * - `backgroundReload` - Whether to reload the request if it is already in the store, but to also resolve the
79
- * promise with the cached value, not supplying this option will delegate to the store's CachePolicy,
80
- * defaulting to `false` if none is configured.
81
- * - `urlParamsSetting` - an object containing options for how to serialize the query params (see `buildQueryParams`)
82
- *
83
- * ```ts
84
- * import { createRecord } from '@ember-data/rest/request';
85
- *
86
- * const person = store.createRecord('person', { name: 'Ted' });
87
- * const options = createRecord(person, { namespace: 'api/v1' });
88
- * const data = await store.request(options);
89
- * ```
90
- *
91
- * @public
92
- * @param record
93
- * @param options
94
- */
95
- export function createRecord<T>(record: T, options?: ConstrainedRequestOptions): CreateRequestOptions<T>;
96
- export function createRecord(record: unknown, options?: ConstrainedRequestOptions): CreateRequestOptions;
97
- /**
98
- * Builds request options to update existing record for resources,
99
- * configured for the url, method and header expectations of most REST APIs.
100
- *
101
- * **Basic Usage**
102
- *
103
- * ```ts
104
- * import { updateRecord } from '@ember-data/rest/request';
105
- *
106
- * const person = store.peekRecord('person', '1');
107
- * person.name = 'Chris';
108
- * const data = await store.request(updateRecord(person));
109
- * ```
110
- *
111
- * **Supplying Options to Modify the Request Behavior**
112
- *
113
- * The following options are supported:
114
- *
115
- * - `patch` - Allows caller to specify whether to use a PATCH request instead of a PUT request, defaults to `false`.
116
- * - `host` - The host to use for the request, defaults to the `host` configured with `setBuildURLConfig`.
117
- * - `namespace` - The namespace to use for the request, defaults to the `namespace` configured with `setBuildURLConfig`.
118
- * - `resourcePath` - The resource path to use for the request, defaults to pluralizing the supplied type
119
- * - `reload` - Whether to forcibly reload the request if it is already in the store, not supplying this
120
- * option will delegate to the store's CachePolicy, defaulting to `false` if none is configured.
121
- * - `backgroundReload` - Whether to reload the request if it is already in the store, but to also resolve the
122
- * promise with the cached value, not supplying this option will delegate to the store's CachePolicy,
123
- * defaulting to `false` if none is configured.
124
- * - `urlParamsSetting` - an object containing options for how to serialize the query params (see `buildQueryParams`)
125
- *
126
- * ```ts
127
- * import { updateRecord } from '@ember-data/rest/request';
128
- *
129
- * const person = store.peekRecord('person', '1');
130
- * person.name = 'Chris';
131
- * const options = updateRecord(person, { patch: true });
132
- * const data = await store.request(options);
133
- * ```
134
- *
135
- * @public
136
- * @param record
137
- * @param options
138
- */
139
- export function updateRecord<T extends TypedRecordInstance, RT extends TypedRecordInstance = T>(record: T, options?: ConstrainedRequestOptions & {
140
- patch?: boolean;
141
- }): UpdateRequestOptions<SingleResourceDataDocument<RT>, T>;
142
- export function updateRecord(record: unknown, options?: ConstrainedRequestOptions & {
143
- patch?: boolean;
144
- }): UpdateRequestOptions;
145
- }
146
- //# sourceMappingURL=save-record.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"save-record.d.ts","sourceRoot":"","sources":["../../../src/-private/builders/save-record.ts"],"names":[],"mappings":"AAUA,OAAO,KAAK,EAAE,mBAAmB,EAAE,MAAM,+BAA+B,CAAC;AACzE,OAAO,KAAK,EACV,yBAAyB,EACzB,oBAAoB,EACpB,oBAAoB,EACpB,oBAAoB,EACrB,MAAM,gCAAgC,CAAC;AACxC,OAAO,KAAK,EAAE,0BAA0B,EAAE,MAAM,sCAAsC,CAAC;AAQvF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAgDG;AACH,wBAAgB,YAAY,CAAC,CAAC,EAAE,MAAM,EAAE,CAAC,EAAE,OAAO,CAAC,EAAE,yBAAyB,GAAG,oBAAoB,CAAC,CAAC,CAAC,CAAC;AACzG,wBAAgB,YAAY,CAAC,MAAM,EAAE,OAAO,EAAE,OAAO,CAAC,EAAE,yBAAyB,GAAG,oBAAoB,CAAC;AA8BzG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAsCG;AACH,wBAAgB,YAAY,CAAC,CAAC,EAAE,MAAM,EAAE,CAAC,EAAE,OAAO,CAAC,EAAE,yBAAyB,GAAG,oBAAoB,CAAC,CAAC,CAAC,CAAC;AACzG,wBAAgB,YAAY,CAAC,MAAM,EAAE,OAAO,EAAE,OAAO,CAAC,EAAE,yBAAyB,GAAG,oBAAoB,CAAC;AA6BzG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAyCG;AACH,wBAAgB,YAAY,CAAC,CAAC,SAAS,mBAAmB,EAAE,EAAE,SAAS,mBAAmB,GAAG,CAAC,EAC5F,MAAM,EAAE,CAAC,EACT,OAAO,CAAC,EAAE,yBAAyB,GAAG;IAAE,KAAK,CAAC,EAAE,OAAO,CAAA;CAAE,GACxD,oBAAoB,CAAC,0BAA0B,CAAC,EAAE,CAAC,EAAE,CAAC,CAAC,CAAC;AAC3D,wBAAgB,YAAY,CAC1B,MAAM,EAAE,OAAO,EACf,OAAO,CAAC,EAAE,yBAAyB,GAAG;IAAE,KAAK,CAAC,EAAE,OAAO,CAAA;CAAE,GACxD,oBAAoB,CAAC"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"request.d.ts","sourceRoot":"","sources":["../src/request.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAgEG;AACH,OAAO,EAAE,UAAU,EAAE,MAAM,iCAAiC,CAAC;AAC7D,OAAO,EAAE,KAAK,EAAE,MAAM,2BAA2B,CAAC;AAClD,OAAO,EAAE,YAAY,EAAE,YAAY,EAAE,YAAY,EAAE,MAAM,iCAAiC,CAAC"}