@globus/sdk 6.0.0-rc.2 → 6.0.0-rc.3
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/dist/cjs/index.js +27 -1
- package/dist/cjs/index.js.map +3 -3
- package/dist/esm/package.json +1 -1
- package/dist/esm/services/compute/service/endpoints.d.ts +29 -0
- package/dist/esm/services/compute/service/endpoints.d.ts.map +1 -1
- package/dist/esm/services/compute/service/endpoints.js +31 -0
- package/dist/esm/services/compute/service/endpoints.js.map +1 -1
- package/dist/esm/services/transfer/service/access.d.ts +7 -7
- package/dist/esm/services/transfer/service/access.d.ts.map +1 -1
- package/dist/esm/services/transfer/service/access.js +5 -5
- package/dist/esm/services/transfer/service/endpoint-manager/endpoint.d.ts +8 -14
- package/dist/esm/services/transfer/service/endpoint-manager/endpoint.d.ts.map +1 -1
- package/dist/esm/services/transfer/service/endpoint-manager/endpoint.js.map +1 -1
- package/dist/esm/services/transfer/service/endpoint-manager/task.d.ts +13 -13
- package/dist/esm/services/transfer/service/endpoint-manager/task.d.ts.map +1 -1
- package/dist/esm/services/transfer/service/endpoint-manager/task.js.map +1 -1
- package/dist/esm/services/transfer/service/endpoint-search.d.ts +4 -5
- package/dist/esm/services/transfer/service/endpoint-search.d.ts.map +1 -1
- package/dist/esm/services/transfer/service/endpoint-search.js.map +1 -1
- package/dist/esm/services/transfer/service/endpoint.d.ts +207 -9
- package/dist/esm/services/transfer/service/endpoint.d.ts.map +1 -1
- package/dist/esm/services/transfer/service/endpoint.js.map +1 -1
- package/dist/esm/services/transfer/service/file-operations.d.ts +18 -6
- package/dist/esm/services/transfer/service/file-operations.d.ts.map +1 -1
- package/dist/esm/services/transfer/service/file-operations.js.map +1 -1
- package/dist/esm/services/transfer/service/task-submission.d.ts +84 -3
- package/dist/esm/services/transfer/service/task-submission.d.ts.map +1 -1
- package/dist/esm/services/transfer/service/task-submission.js.map +1 -1
- package/dist/esm/services/transfer/service/task.d.ts +8 -8
- package/dist/esm/services/transfer/service/task.d.ts.map +1 -1
- package/dist/esm/services/transfer/service/task.js.map +1 -1
- package/dist/esm/services/transfer/types.d.ts +67 -347
- package/dist/esm/services/transfer/types.d.ts.map +1 -1
- package/dist/umd/globus.production.js +2 -2
- package/dist/umd/globus.production.js.map +3 -3
- package/package.json +1 -1
|
@@ -1,9 +1,8 @@
|
|
|
1
1
|
import { AuthorizationRequirementsError } from '../../core/errors.js';
|
|
2
|
-
import { ExtractKeys, Segment } from '../types.js';
|
|
3
2
|
/**
|
|
4
3
|
* @see https://docs.globus.org/api/transfer/overview/#errors
|
|
5
4
|
*/
|
|
6
|
-
export type
|
|
5
|
+
export type ErrorDocument = {
|
|
7
6
|
code: string;
|
|
8
7
|
message: string;
|
|
9
8
|
request_id: string;
|
|
@@ -17,375 +16,96 @@ export type TransferErrorDocument = {
|
|
|
17
16
|
* @see https://docs.globus.org/api/transfer/overview/#common_query_parameters
|
|
18
17
|
*/
|
|
19
18
|
export type CommonQueryParameters = {
|
|
20
|
-
limit?: number;
|
|
21
|
-
offset?: number;
|
|
22
19
|
orderby?: string;
|
|
23
20
|
fields?: string;
|
|
24
21
|
filter?: string;
|
|
25
22
|
};
|
|
26
|
-
export type EntityType = 'GCSv5_endpoint' | 'GCSv5_mapped_collection' | 'GCSv5_guest_collection' | 'GCP_mapped_collection' | 'GCP_guest_collection';
|
|
27
23
|
/**
|
|
28
|
-
*
|
|
24
|
+
* Used to define query parameter types for the Transfer service.
|
|
25
|
+
* @private **Intended for internal service method definition only.**
|
|
26
|
+
*
|
|
27
|
+
* @param Parameters The allowed query parameters for the request.
|
|
28
|
+
* @param PaginationType The type of pagination the request uses, if any.
|
|
29
|
+
* If not specified, no pagination query parameters will be included.
|
|
30
|
+
* @param IncludeCommon Whether to include Transfer common query parameters as allowed query parameters.
|
|
31
|
+
* Defaults to `true`, which includes common query parameters.
|
|
32
|
+
* Set to `false` to exclude common query parameters.
|
|
33
|
+
*
|
|
34
|
+
* @example `QueryParameters<{ endpoint_id: string }, 'Offset'>`
|
|
29
35
|
*/
|
|
30
|
-
type
|
|
36
|
+
export type QueryParameters<Parameters extends Record<string, unknown>, PaginationType extends keyof Pagination | undefined = undefined, IncludeCommon extends boolean = true> = Parameters & (PaginationType extends keyof Pagination ? Pagination[PaginationType]['Query'] : {}) & (IncludeCommon extends true ? CommonQueryParameters : {});
|
|
31
37
|
/**
|
|
32
|
-
*
|
|
38
|
+
* Add pagination response members to an object; Use for creating paginated responses in the Transfer service.
|
|
39
|
+
* @private **Intended for internal service method definition only.**
|
|
40
|
+
* @param PaginationType The type of pagination the response uses.
|
|
41
|
+
* @param Response The response to extend with the pagination response.
|
|
42
|
+
* @example `PaginatedResponse<'Offset', { DATA_TYPE: 'task_list'; tasks: TaskDocument[] }>`
|
|
33
43
|
*/
|
|
34
|
-
type
|
|
44
|
+
export type PaginatedResponse<PaginationType, Response> = Response & (PaginationType extends keyof Pagination ? Pagination[PaginationType]['Response'] : {});
|
|
35
45
|
/**
|
|
36
|
-
*
|
|
46
|
+
* Pagination used by the Transfer service.
|
|
47
|
+
*
|
|
48
|
+
* Each pagination definition contains a `Query` and `Response` type.
|
|
49
|
+
* - The `Query` type is used to define the query parameters used by the pagination method.
|
|
50
|
+
* - The `Response` type is used to define the response properties returned by the pagination method (usually as
|
|
51
|
+
* top-level keys in the response body).
|
|
52
|
+
*
|
|
53
|
+
* Service methods **SHOULD** include the supported pagination members in their query parameters and response types, these
|
|
54
|
+
* are just made available as a convenience.
|
|
55
|
+
*
|
|
56
|
+
* @see https://docs.globus.org/api/transfer/overview/#paging
|
|
37
57
|
*/
|
|
38
|
-
type
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
DATA?: Components['schemas']['Server'][];
|
|
47
|
-
id: string;
|
|
48
|
-
display_name: string;
|
|
49
|
-
organization: string | null;
|
|
50
|
-
department: string | null;
|
|
51
|
-
keywords: string | null;
|
|
52
|
-
/**
|
|
53
|
-
* @deprecated
|
|
54
|
-
*/
|
|
55
|
-
name: string | null;
|
|
56
|
-
/**
|
|
57
|
-
* @deprecated use `id` instead in API requests, and use `display_name`
|
|
58
|
-
* to display to users.
|
|
59
|
-
*/
|
|
60
|
-
canonical_name: string;
|
|
61
|
-
/**
|
|
62
|
-
* @deprecated use `owner_id` or `owner_string` instead.
|
|
63
|
-
*/
|
|
64
|
-
username: string;
|
|
65
|
-
owner_id: string;
|
|
66
|
-
owner_string: string;
|
|
67
|
-
description: string | null;
|
|
68
|
-
contact_email: string | null;
|
|
69
|
-
contact_info: string | null;
|
|
70
|
-
info_link: string | null;
|
|
71
|
-
user_message: string | null;
|
|
72
|
-
user_message_link: string | null;
|
|
73
|
-
public: boolean;
|
|
74
|
-
subscription_id: string | null;
|
|
75
|
-
french_english_bilingual: boolean;
|
|
76
|
-
default_directory: string | null;
|
|
77
|
-
force_encryption: boolean;
|
|
78
|
-
disable_verify: boolean;
|
|
79
|
-
disable_anonymous_writes: boolean;
|
|
80
|
-
entity_type: EntityType;
|
|
81
|
-
force_verify: boolean;
|
|
82
|
-
mfa_required: boolean;
|
|
83
|
-
/**
|
|
84
|
-
* @deprecated GCSv4-specific property - no longer supported
|
|
85
|
-
*/
|
|
86
|
-
expire_time: null;
|
|
87
|
-
/**
|
|
88
|
-
* @deprecated GCSv4-specific property - no longer supported
|
|
89
|
-
*/
|
|
90
|
-
expires_in: null;
|
|
91
|
-
/**
|
|
92
|
-
* @deprecated GCSv4-specific property - no longer supported
|
|
93
|
-
*/
|
|
94
|
-
activated: boolean;
|
|
95
|
-
/**
|
|
96
|
-
* @deprecated GCSv4-specific property - no longer supported
|
|
97
|
-
*/
|
|
98
|
-
myproxy_server: string | null;
|
|
99
|
-
/**
|
|
100
|
-
* @deprecated GCSv4-specific property - no longer supported
|
|
101
|
-
*/
|
|
102
|
-
myproxy_dn: string | null;
|
|
103
|
-
/**
|
|
104
|
-
* @deprecated GCSv4-specific property - no longer supported
|
|
105
|
-
*/
|
|
106
|
-
oauth_server: string | null;
|
|
107
|
-
requester_pays: boolean;
|
|
108
|
-
/**
|
|
109
|
-
* @deprecated - use entity_type intead
|
|
110
|
-
*/
|
|
111
|
-
is_globus_connect: boolean;
|
|
112
|
-
gcs_version: string | null;
|
|
113
|
-
globus_connect_setup_key: string | null;
|
|
114
|
-
/**
|
|
115
|
-
* @deprecated use `host_endpoint_id` and `host_endpoint_display_name`
|
|
116
|
-
*/
|
|
117
|
-
host_endpoint: string | null;
|
|
118
|
-
/**
|
|
119
|
-
* UUID of standard endpoint hosting the shared endpoint; `null` for non-shared endpoints.
|
|
120
|
-
*/
|
|
121
|
-
host_endpoint_id: string | null;
|
|
122
|
-
host_endpoint_display_name: string | null;
|
|
123
|
-
host_path: string | null;
|
|
124
|
-
/**
|
|
125
|
-
* @deprecated
|
|
126
|
-
*/
|
|
127
|
-
s3_url: null;
|
|
128
|
-
/**
|
|
129
|
-
* @deprecated
|
|
130
|
-
*/
|
|
131
|
-
s3_owner_activated: false;
|
|
132
|
-
/**
|
|
133
|
-
* @deprecated GCSv4-specific property - use entity_type instead
|
|
134
|
-
*/
|
|
135
|
-
acl_available: boolean;
|
|
136
|
-
/**
|
|
137
|
-
* @deprecated use `my_effective_roles` instead.
|
|
138
|
-
*/
|
|
139
|
-
acl_editable: boolean;
|
|
140
|
-
in_use: boolean;
|
|
141
|
-
my_effective_roles: Array<EndpointRole | 'restricted_administrator'>;
|
|
142
|
-
gcp_connected: boolean | null;
|
|
143
|
-
gcp_paused: boolean | null;
|
|
144
|
-
network_use: 'normal' | 'minimal' | 'aggressive' | 'custom' | null;
|
|
145
|
-
location: string | null;
|
|
146
|
-
max_concurrency: number | null;
|
|
147
|
-
preferred_concurrency: number | null;
|
|
148
|
-
max_parallelism: number | null;
|
|
149
|
-
preferred_parallelism: number | null;
|
|
150
|
-
/**
|
|
151
|
-
* @deprecated GCSv4-specific property - no longer supported
|
|
152
|
-
*/
|
|
153
|
-
local_user_info_available: boolean | null;
|
|
154
|
-
https_server: string | null;
|
|
155
|
-
gcs_manager_url: `${string}://${string}` | null;
|
|
156
|
-
tlsftp_server: `tlsftp://${string}:${string}` | null;
|
|
157
|
-
high_assurance: boolean;
|
|
158
|
-
acl_max_expiration_period_mins: number | null;
|
|
159
|
-
authentication_timeout_mins: number | null;
|
|
160
|
-
/**
|
|
161
|
-
* @deprecated use `high_assurance` and `authentication_timeout_mins` instead.
|
|
162
|
-
*/
|
|
163
|
-
authentication_assurance_timeout: number;
|
|
164
|
-
non_functional: boolean;
|
|
165
|
-
non_functional_endpoint_id: string | null;
|
|
166
|
-
non_functional_endpoint_display_name: string | null;
|
|
167
|
-
mapped_collection_id: string | null;
|
|
168
|
-
mapped_collection_display_name: string | null;
|
|
169
|
-
last_accessed_time: string | null;
|
|
170
|
-
};
|
|
171
|
-
Server: {
|
|
172
|
-
DATA_TYPE: 'server';
|
|
173
|
-
id: number;
|
|
174
|
-
hostname: null | string;
|
|
175
|
-
port: null | number;
|
|
176
|
-
scheme: null | 'ftp' | 'gsiftp';
|
|
177
|
-
subject: null | string;
|
|
178
|
-
incoming_data_port_start: null | number;
|
|
179
|
-
incoming_data_port_end: null | number;
|
|
180
|
-
outgoing_data_port_start: null | number;
|
|
181
|
-
outgoing_data_port_end: null | number;
|
|
182
|
-
/**
|
|
183
|
-
* @deprecated
|
|
184
|
-
*/
|
|
185
|
-
uri: string;
|
|
186
|
-
/**
|
|
187
|
-
* @deprecated
|
|
188
|
-
*/
|
|
189
|
-
is_connected: boolean;
|
|
190
|
-
/**
|
|
191
|
-
* @deprecated
|
|
192
|
-
*/
|
|
193
|
-
is_paused: boolean;
|
|
194
|
-
};
|
|
195
|
-
};
|
|
196
|
-
}
|
|
197
|
-
export interface Operations extends Record<string, {
|
|
198
|
-
parameters?: Segment;
|
|
199
|
-
response?: any;
|
|
200
|
-
payload?: any;
|
|
201
|
-
}> {
|
|
202
|
-
GetEndpoint: {
|
|
203
|
-
parameters: string;
|
|
204
|
-
response: Components['schemas']['Endpoint'];
|
|
205
|
-
};
|
|
206
|
-
CreateEndpoint: {
|
|
207
|
-
payload: Partial<Pick<Components['schemas']['Endpoint'], GuestCollectionUpdatableField>> & {
|
|
208
|
-
DATA_TYPE?: 'shared_endpoint';
|
|
209
|
-
host_endpoint_id: string;
|
|
210
|
-
host_path: string;
|
|
58
|
+
export type Pagination = {
|
|
59
|
+
/**
|
|
60
|
+
* @see https://docs.globus.org/api/transfer/overview/#offset_paging
|
|
61
|
+
*/
|
|
62
|
+
Offset: {
|
|
63
|
+
Query: {
|
|
64
|
+
limit?: `${number}` | number;
|
|
65
|
+
offset?: `${number}` | number;
|
|
211
66
|
};
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
id: string;
|
|
217
|
-
message: string;
|
|
218
|
-
request_id: string;
|
|
219
|
-
resource: '/shared_endpoint';
|
|
67
|
+
Response: {
|
|
68
|
+
limit: number;
|
|
69
|
+
offset: number;
|
|
70
|
+
has_next_page: `${boolean}` | boolean;
|
|
220
71
|
};
|
|
221
72
|
};
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
request_id: string;
|
|
229
|
-
resource: `/endpoint/${string}`;
|
|
73
|
+
/**
|
|
74
|
+
* @see https://docs.globus.org/api/transfer/overview/#marker_paging
|
|
75
|
+
*/
|
|
76
|
+
Marker: {
|
|
77
|
+
Query: {
|
|
78
|
+
marker?: `${number}` | number;
|
|
230
79
|
};
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
response: {
|
|
234
|
-
DATA_TYPE: 'result';
|
|
235
|
-
code: 'Deleted';
|
|
236
|
-
message: string;
|
|
237
|
-
request_id: string;
|
|
238
|
-
resource: `/endpoint/${string}`;
|
|
80
|
+
Response: {
|
|
81
|
+
next_marker: number | null;
|
|
239
82
|
};
|
|
240
83
|
};
|
|
241
|
-
}
|
|
242
|
-
export interface Transfer {
|
|
243
84
|
/**
|
|
244
|
-
*
|
|
245
|
-
*
|
|
246
|
-
* Each pagination definition contains a `Query` and `Response` type.
|
|
247
|
-
* - The `Query` type is used to define the query parameters used by the pagination method.
|
|
248
|
-
* - The `Response` type is used to define the response properties returned by the pagination method (usually as
|
|
249
|
-
* top-level keys in the response body).
|
|
250
|
-
*
|
|
251
|
-
* @see https://docs.globus.org/api/transfer/overview/#paging
|
|
85
|
+
* @see https://docs.globus.org/api/transfer/overview/#last_key_paging
|
|
252
86
|
*/
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
Offset: {
|
|
258
|
-
Query: {
|
|
259
|
-
limit?: `${number}` | number;
|
|
260
|
-
offset?: `${number}` | number;
|
|
261
|
-
};
|
|
262
|
-
Response: {
|
|
263
|
-
limit: number;
|
|
264
|
-
offset: number;
|
|
265
|
-
has_next_page: `${boolean}` | boolean;
|
|
266
|
-
};
|
|
87
|
+
LastKey: {
|
|
88
|
+
Query: {
|
|
89
|
+
limit?: `${number}` | number;
|
|
90
|
+
last_key: string;
|
|
267
91
|
};
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
Query: {
|
|
273
|
-
marker?: `${number}` | number;
|
|
274
|
-
};
|
|
275
|
-
Response: {
|
|
276
|
-
next_marker: number | null;
|
|
277
|
-
};
|
|
278
|
-
};
|
|
279
|
-
/**
|
|
280
|
-
* @see https://docs.globus.org/api/transfer/overview/#last_key_paging
|
|
281
|
-
*/
|
|
282
|
-
LastKey: {
|
|
283
|
-
Query: {
|
|
284
|
-
limit?: `${number}` | number;
|
|
285
|
-
last_key: string;
|
|
286
|
-
};
|
|
287
|
-
Response: {
|
|
288
|
-
has_next_page: `${boolean}` | boolean;
|
|
289
|
-
last_key: string | null;
|
|
290
|
-
limit: number;
|
|
291
|
-
};
|
|
292
|
-
};
|
|
293
|
-
/**
|
|
294
|
-
* @see https://docs.globus.org/api/transfer/overview/#next_token_paging
|
|
295
|
-
*/
|
|
296
|
-
NextToken: {
|
|
297
|
-
Query: {
|
|
298
|
-
next_token?: string;
|
|
299
|
-
max_results?: `${number}` | number;
|
|
300
|
-
};
|
|
301
|
-
Response: {
|
|
302
|
-
next_token: string | null;
|
|
303
|
-
};
|
|
92
|
+
Response: {
|
|
93
|
+
has_next_page: `${boolean}` | boolean;
|
|
94
|
+
last_key: string | null;
|
|
95
|
+
limit: number;
|
|
304
96
|
};
|
|
305
97
|
};
|
|
306
98
|
/**
|
|
307
|
-
* @see https://docs.globus.org/api/transfer/
|
|
99
|
+
* @see https://docs.globus.org/api/transfer/overview/#next_token_paging
|
|
308
100
|
*/
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
|
|
312
|
-
|
|
313
|
-
offset?: `${number}` | number;
|
|
314
|
-
orderby?: string;
|
|
315
|
-
filter?: string;
|
|
316
|
-
};
|
|
317
|
-
Request: {
|
|
318
|
-
/**
|
|
319
|
-
* Common fields for Transfer and Delete requests.
|
|
320
|
-
* @see https://docs.globus.org/api/transfer/task_submit/#common_transfer_and_delete_fields
|
|
321
|
-
*/
|
|
322
|
-
Common: {
|
|
323
|
-
submission_id: string;
|
|
324
|
-
label?: string;
|
|
325
|
-
notify_on_succeeded?: boolean;
|
|
326
|
-
notify_on_failed?: boolean;
|
|
327
|
-
deadline?: string;
|
|
328
|
-
store_base_path_info?: boolean;
|
|
329
|
-
};
|
|
330
|
-
Mkdir: {
|
|
331
|
-
DATA_TYPE: 'mkdir';
|
|
332
|
-
path: string;
|
|
101
|
+
NextToken: {
|
|
102
|
+
Query: {
|
|
103
|
+
next_token?: string;
|
|
104
|
+
max_results?: `${number}` | number;
|
|
333
105
|
};
|
|
334
|
-
|
|
335
|
-
|
|
336
|
-
old_path: string;
|
|
337
|
-
new_path: string;
|
|
338
|
-
};
|
|
339
|
-
Symlink: {
|
|
340
|
-
DATA_TYPE: 'symlink';
|
|
341
|
-
path: string;
|
|
342
|
-
symlink_target: string;
|
|
343
|
-
};
|
|
344
|
-
Delete: Transfer['Request']['Common'] & {
|
|
345
|
-
DATA_TYPE: 'delete';
|
|
346
|
-
DATA: {
|
|
347
|
-
DATA_TYPE: string;
|
|
348
|
-
path: string;
|
|
349
|
-
}[];
|
|
350
|
-
endpoint: string;
|
|
351
|
-
ignore_missing?: boolean;
|
|
352
|
-
recursive?: boolean;
|
|
353
|
-
interpret_globs?: boolean;
|
|
354
|
-
local_user?: string;
|
|
355
|
-
};
|
|
356
|
-
Transfer: Transfer['Request']['Common'] & {
|
|
357
|
-
DATA_TYPE: 'transfer';
|
|
358
|
-
DATA: {
|
|
359
|
-
DATA_TYPE: string;
|
|
360
|
-
source_path: string;
|
|
361
|
-
destination_path: string;
|
|
362
|
-
recursive?: boolean;
|
|
363
|
-
external_checksum?: string;
|
|
364
|
-
checksum_algorithm?: string;
|
|
365
|
-
}[];
|
|
366
|
-
source_endpoint: string;
|
|
367
|
-
destination_endpoint: string;
|
|
368
|
-
filter_rules?: {
|
|
369
|
-
DATA_TYPE: 'filter_rule';
|
|
370
|
-
method: 'include' | 'exclude';
|
|
371
|
-
type?: 'file' | 'dir';
|
|
372
|
-
name: string;
|
|
373
|
-
}[];
|
|
374
|
-
encrypt_data?: boolean;
|
|
375
|
-
sync_level?: 0 | 1 | 2 | 3;
|
|
376
|
-
verify_checksum?: boolean;
|
|
377
|
-
preserve_timestamp?: boolean;
|
|
378
|
-
delete_destination_extra?: boolean;
|
|
379
|
-
/**
|
|
380
|
-
* @beta
|
|
381
|
-
*/
|
|
382
|
-
recursive_symlinks?: 'ignore' | 'keep' | 'copy';
|
|
383
|
-
skip_source_errors?: boolean;
|
|
384
|
-
fail_on_quota_errors?: boolean;
|
|
385
|
-
source_local_user?: string;
|
|
386
|
-
destination_local_user?: string;
|
|
106
|
+
Response: {
|
|
107
|
+
next_token: string | null;
|
|
387
108
|
};
|
|
388
109
|
};
|
|
389
|
-
}
|
|
390
|
-
export {};
|
|
110
|
+
};
|
|
391
111
|
//# sourceMappingURL=types.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../../src/services/transfer/types.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,8BAA8B,EAAE,MAAM,sBAAsB,CAAC;
|
|
1
|
+
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../../src/services/transfer/types.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,8BAA8B,EAAE,MAAM,sBAAsB,CAAC;AAEtE;;GAEG;AACH,MAAM,MAAM,aAAa,GAAG;IAC1B,IAAI,EAAE,MAAM,CAAC;IACb,OAAO,EAAE,MAAM,CAAC;IAChB,UAAU,EAAE,MAAM,CAAC;IACnB,QAAQ,EAAE,MAAM,CAAC;IACjB;;OAEG;IACH,wBAAwB,CAAC,EAAE,8BAA8B,CAAC,0BAA0B,CAAC,CAAC;CACvF,CAAC;AAEF;;GAEG;AACH,MAAM,MAAM,qBAAqB,GAAG;IAClC,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,MAAM,CAAC,EAAE,MAAM,CAAC;CACjB,CAAC;AAEF;;;;;;;;;;;;GAYG;AACH,MAAM,MAAM,eAAe,CACzB,UAAU,SAAS,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,EAC1C,cAAc,SAAS,MAAM,UAAU,GAAG,SAAS,GAAG,SAAS,EAC/D,aAAa,SAAS,OAAO,GAAG,IAAI,IAClC,UAAU,GACZ,CAAC,cAAc,SAAS,MAAM,UAAU,GAAG,UAAU,CAAC,cAAc,CAAC,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,GACpF,CAAC,aAAa,SAAS,IAAI,GAAG,qBAAqB,GAAG,EAAE,CAAC,CAAC;AAE5D;;;;;;GAMG;AACH,MAAM,MAAM,iBAAiB,CAAC,cAAc,EAAE,QAAQ,IAAI,QAAQ,GAChE,CAAC,cAAc,SAAS,MAAM,UAAU,GAAG,UAAU,CAAC,cAAc,CAAC,CAAC,UAAU,CAAC,GAAG,EAAE,CAAC,CAAC;AAE1F;;;;;;;;;;;;GAYG;AACH,MAAM,MAAM,UAAU,GAAG;IACvB;;OAEG;IACH,MAAM,EAAE;QACN,KAAK,EAAE;YACL,KAAK,CAAC,EAAE,GAAG,MAAM,EAAE,GAAG,MAAM,CAAC;YAC7B,MAAM,CAAC,EAAE,GAAG,MAAM,EAAE,GAAG,MAAM,CAAC;SAC/B,CAAC;QACF,QAAQ,EAAE;YACR,KAAK,EAAE,MAAM,CAAC;YACd,MAAM,EAAE,MAAM,CAAC;YACf,aAAa,EAAE,GAAG,OAAO,EAAE,GAAG,OAAO,CAAC;SACvC,CAAC;KACH,CAAC;IACF;;OAEG;IACH,MAAM,EAAE;QACN,KAAK,EAAE;YACL,MAAM,CAAC,EAAE,GAAG,MAAM,EAAE,GAAG,MAAM,CAAC;SAC/B,CAAC;QACF,QAAQ,EAAE;YACR,WAAW,EAAE,MAAM,GAAG,IAAI,CAAC;SAC5B,CAAC;KACH,CAAC;IACF;;OAEG;IACH,OAAO,EAAE;QACP,KAAK,EAAE;YACL,KAAK,CAAC,EAAE,GAAG,MAAM,EAAE,GAAG,MAAM,CAAC;YAC7B,QAAQ,EAAE,MAAM,CAAC;SAClB,CAAC;QACF,QAAQ,EAAE;YACR,aAAa,EAAE,GAAG,OAAO,EAAE,GAAG,OAAO,CAAC;YACtC,QAAQ,EAAE,MAAM,GAAG,IAAI,CAAC;YACxB,KAAK,EAAE,MAAM,CAAC;SACf,CAAC;KACH,CAAC;IACF;;OAEG;IACH,SAAS,EAAE;QACT,KAAK,EAAE;YACL,UAAU,CAAC,EAAE,MAAM,CAAC;YACpB,WAAW,CAAC,EAAE,GAAG,MAAM,EAAE,GAAG,MAAM,CAAC;SACpC,CAAC;QACF,QAAQ,EAAE;YACR,UAAU,EAAE,MAAM,GAAG,IAAI,CAAC;SAC3B,CAAC;KACH,CAAC;CACH,CAAC"}
|