@globus/sdk 3.0.0-alpha.1 → 3.0.0-alpha.11
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/cjs/lib/core/authorization/AuthorizationManager.d.ts +57 -9
- package/cjs/lib/core/authorization/AuthorizationManager.d.ts.map +1 -1
- package/cjs/lib/core/authorization/AuthorizationManager.js +104 -35
- package/cjs/lib/core/authorization/AuthorizationManager.js.map +1 -1
- package/cjs/lib/core/authorization/Event.d.ts +6 -1
- package/cjs/lib/core/authorization/Event.d.ts.map +1 -1
- package/cjs/lib/core/authorization/Event.js +3 -0
- package/cjs/lib/core/authorization/Event.js.map +1 -1
- package/cjs/lib/core/authorization/RedirectTransport.d.ts +7 -1
- package/cjs/lib/core/authorization/RedirectTransport.d.ts.map +1 -1
- package/cjs/lib/core/authorization/RedirectTransport.js +7 -4
- package/cjs/lib/core/authorization/RedirectTransport.js.map +1 -1
- package/cjs/lib/core/authorization/TokenLookup.d.ts +12 -0
- package/cjs/lib/core/authorization/TokenLookup.d.ts.map +1 -0
- package/cjs/lib/core/authorization/TokenLookup.js +31 -0
- package/cjs/lib/core/authorization/TokenLookup.js.map +1 -0
- package/cjs/lib/core/authorization/tokens.d.ts.map +1 -1
- package/cjs/lib/core/authorization/tokens.js +2 -1
- package/cjs/lib/core/authorization/tokens.js.map +1 -1
- package/cjs/lib/core/errors.d.ts +21 -0
- package/cjs/lib/core/errors.d.ts.map +1 -1
- package/cjs/lib/core/errors.js +19 -1
- package/cjs/lib/core/errors.js.map +1 -1
- package/cjs/lib/core/global.d.ts +1 -0
- package/cjs/lib/core/global.d.ts.map +1 -1
- package/cjs/lib/core/storage/local-storage.js +2 -2
- package/cjs/lib/core/storage/local-storage.js.map +1 -1
- package/cjs/lib/core/storage/memory.d.ts +1 -1
- package/cjs/lib/core/storage/memory.d.ts.map +1 -1
- package/cjs/lib/core/storage/memory.js +2 -2
- package/cjs/lib/core/storage/memory.js.map +1 -1
- package/cjs/lib/services/auth/index.d.ts +7 -9
- package/cjs/lib/services/auth/index.d.ts.map +1 -1
- package/cjs/lib/services/auth/index.js +7 -1
- package/cjs/lib/services/auth/index.js.map +1 -1
- package/cjs/lib/services/globus-connect-server/client.d.ts +58 -58
- package/cjs/lib/services/transfer/service/file-operations.d.ts +1 -1
- package/cjs/lib/services/transfer/service/file-operations.d.ts.map +1 -1
- package/cjs/lib/services/transfer/service/file-operations.js.map +1 -1
- package/esm/lib/core/authorization/AuthorizationManager.d.ts +57 -9
- package/esm/lib/core/authorization/AuthorizationManager.d.ts.map +1 -1
- package/esm/lib/core/authorization/AuthorizationManager.js +105 -36
- package/esm/lib/core/authorization/AuthorizationManager.js.map +1 -1
- package/esm/lib/core/authorization/Event.d.ts +6 -1
- package/esm/lib/core/authorization/Event.d.ts.map +1 -1
- package/esm/lib/core/authorization/Event.js +3 -0
- package/esm/lib/core/authorization/Event.js.map +1 -1
- package/esm/lib/core/authorization/RedirectTransport.d.ts +7 -1
- package/esm/lib/core/authorization/RedirectTransport.d.ts.map +1 -1
- package/esm/lib/core/authorization/RedirectTransport.js +8 -5
- package/esm/lib/core/authorization/RedirectTransport.js.map +1 -1
- package/esm/lib/core/authorization/TokenLookup.d.ts +12 -0
- package/esm/lib/core/authorization/TokenLookup.d.ts.map +1 -0
- package/esm/lib/core/authorization/TokenLookup.js +27 -0
- package/esm/lib/core/authorization/TokenLookup.js.map +1 -0
- package/esm/lib/core/authorization/tokens.d.ts.map +1 -1
- package/esm/lib/core/authorization/tokens.js +2 -1
- package/esm/lib/core/authorization/tokens.js.map +1 -1
- package/esm/lib/core/errors.d.ts +21 -0
- package/esm/lib/core/errors.d.ts.map +1 -1
- package/esm/lib/core/errors.js +15 -0
- package/esm/lib/core/errors.js.map +1 -1
- package/esm/lib/core/global.d.ts +1 -0
- package/esm/lib/core/global.d.ts.map +1 -1
- package/esm/lib/core/storage/local-storage.js +2 -2
- package/esm/lib/core/storage/local-storage.js.map +1 -1
- package/esm/lib/core/storage/memory.d.ts +1 -1
- package/esm/lib/core/storage/memory.d.ts.map +1 -1
- package/esm/lib/core/storage/memory.js +2 -2
- package/esm/lib/core/storage/memory.js.map +1 -1
- package/esm/lib/services/auth/index.d.ts +7 -9
- package/esm/lib/services/auth/index.d.ts.map +1 -1
- package/esm/lib/services/auth/index.js +7 -1
- package/esm/lib/services/auth/index.js.map +1 -1
- package/esm/lib/services/globus-connect-server/client.d.ts +58 -58
- package/esm/lib/services/transfer/service/file-operations.d.ts +1 -1
- package/esm/lib/services/transfer/service/file-operations.d.ts.map +1 -1
- package/esm/lib/services/transfer/service/file-operations.js.map +1 -1
- package/package.json +1 -1
- package/umd/globus.production.js +1 -1
|
@@ -1,3 +1,9 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @description A wrapper around the Globus Auth service.
|
|
3
|
+
* @group Service
|
|
4
|
+
* @see [Globus Auth API Documentation](https://docs.globus.org/api/auth/)
|
|
5
|
+
* @module
|
|
6
|
+
*/
|
|
1
7
|
import { build } from '../../core/url.js';
|
|
2
8
|
import * as AUTH from './config.js';
|
|
3
9
|
/**
|
|
@@ -14,6 +20,6 @@ export function getTokenEndpoint() {
|
|
|
14
20
|
export * as identities from './service/identities.js';
|
|
15
21
|
export * as oauth2 from './service/oauth2/index.js';
|
|
16
22
|
export function isGlobusAuthTokenResponse(check) {
|
|
17
|
-
return
|
|
23
|
+
return typeof check === 'object' && check !== null && 'resource_server' in check;
|
|
18
24
|
}
|
|
19
25
|
//# sourceMappingURL=index.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../src/lib/services/auth/index.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../src/lib/services/auth/index.ts"],"names":[],"mappings":"AAAA;;;;;GAKG;AACH,OAAO,EAAE,KAAK,EAAE,MAAM,mBAAmB,CAAC;AAE1C,OAAO,KAAK,IAAI,MAAM,aAAa,CAAC;AAEpC;;;GAGG;AACH,MAAM,CAAC,MAAM,MAAM,GAAG,IAAI,CAAC;AAE3B,MAAM,UAAU,wBAAwB;IACtC,OAAO,KAAK,CAAC,IAAI,CAAC,EAAE,EAAE,sBAAsB,CAAC,CAAC;AAChD,CAAC;AAED,MAAM,UAAU,gBAAgB;IAC9B,OAAO,KAAK,CAAC,IAAI,CAAC,EAAE,EAAE,kBAAkB,CAAC,CAAC;AAC5C,CAAC;AAED,OAAO,KAAK,UAAU,MAAM,yBAAyB,CAAC;AACtD,OAAO,KAAK,MAAM,MAAM,2BAA2B,CAAC;AAmBpD,MAAM,UAAU,yBAAyB,CAAC,KAAc;IACtD,OAAO,OAAO,KAAK,KAAK,QAAQ,IAAI,KAAK,KAAK,IAAI,IAAI,iBAAiB,IAAI,KAAK,CAAC;AACnF,CAAC"}
|
|
@@ -29,8 +29,8 @@ export declare function getClient(configuration: GCSConfiguration): {
|
|
|
29
29
|
query?: {
|
|
30
30
|
[key: string]: string | number | boolean | (string | number | null | undefined)[] | null | undefined;
|
|
31
31
|
} | undefined;
|
|
32
|
-
headers?: import("
|
|
33
|
-
}) | undefined, sdkOptions?: import("
|
|
32
|
+
headers?: import("src/lib/services/types.js").Headers | undefined;
|
|
33
|
+
}) | undefined, sdkOptions?: import("src/lib/services/types.js").SDKOptions | undefined) => Promise<import("src/lib/services/types.js").JSONFetchResponse<{
|
|
34
34
|
code?: "success" | undefined;
|
|
35
35
|
data?: ({
|
|
36
36
|
DATA_TYPE: "endpoint#1.0.0";
|
|
@@ -175,8 +175,8 @@ export declare function getClient(configuration: GCSConfiguration): {
|
|
|
175
175
|
query?: {
|
|
176
176
|
[key: string]: string | number | boolean | (string | number | null | undefined)[] | null | undefined;
|
|
177
177
|
} | undefined;
|
|
178
|
-
headers?: import("
|
|
179
|
-
}) | undefined, sdkOptions?: import("
|
|
178
|
+
headers?: import("src/lib/services/types.js").Headers | undefined;
|
|
179
|
+
}) | undefined, sdkOptions?: import("src/lib/services/types.js").SDKOptions | undefined) => Promise<import("src/lib/services/types.js").JSONFetchResponse<{
|
|
180
180
|
code?: "success" | undefined;
|
|
181
181
|
data?: ({
|
|
182
182
|
DATA_TYPE: "endpoint#1.0.0";
|
|
@@ -321,8 +321,8 @@ export declare function getClient(configuration: GCSConfiguration): {
|
|
|
321
321
|
query?: {
|
|
322
322
|
[key: string]: string | number | boolean | (string | number | null | undefined)[] | null | undefined;
|
|
323
323
|
} | undefined;
|
|
324
|
-
headers?: import("
|
|
325
|
-
}) | undefined, sdkOptions?: import("
|
|
324
|
+
headers?: import("src/lib/services/types.js").Headers | undefined;
|
|
325
|
+
}) | undefined, sdkOptions?: import("src/lib/services/types.js").SDKOptions | undefined) => Promise<import("src/lib/services/types.js").JSONFetchResponse<{
|
|
326
326
|
code?: "success" | undefined;
|
|
327
327
|
data?: ({
|
|
328
328
|
DATA_TYPE: "endpoint#1.0.0";
|
|
@@ -407,8 +407,8 @@ export declare function getClient(configuration: GCSConfiguration): {
|
|
|
407
407
|
query?: {
|
|
408
408
|
[key: string]: string | number | boolean | (string | number | null | undefined)[] | null | undefined;
|
|
409
409
|
} | undefined;
|
|
410
|
-
headers?: import("
|
|
411
|
-
}) | undefined, sdkOptions?: import("
|
|
410
|
+
headers?: import("src/lib/services/types.js").Headers | undefined;
|
|
411
|
+
}) | undefined, sdkOptions?: import("src/lib/services/types.js").SDKOptions | undefined) => Promise<import("src/lib/services/types.js").JSONFetchResponse<{
|
|
412
412
|
DATA_TYPE: "result#1.0.0";
|
|
413
413
|
code: string;
|
|
414
414
|
data?: Record<string, unknown>[] | undefined;
|
|
@@ -427,8 +427,8 @@ export declare function getClient(configuration: GCSConfiguration): {
|
|
|
427
427
|
query?: {
|
|
428
428
|
[key: string]: string | number | boolean | (string | number | null | undefined)[] | null | undefined;
|
|
429
429
|
} | undefined;
|
|
430
|
-
headers?: import("
|
|
431
|
-
}) | undefined, sdkOptions?: import("
|
|
430
|
+
headers?: import("src/lib/services/types.js").Headers | undefined;
|
|
431
|
+
}) | undefined, sdkOptions?: import("src/lib/services/types.js").SDKOptions | undefined) => Promise<import("src/lib/services/types.js").JSONFetchResponse<{
|
|
432
432
|
code?: "success" | undefined;
|
|
433
433
|
data?: ({
|
|
434
434
|
DATA_TYPE: "connector#1.0.0";
|
|
@@ -463,8 +463,8 @@ export declare function getClient(configuration: GCSConfiguration): {
|
|
|
463
463
|
query?: {
|
|
464
464
|
[key: string]: string | number | boolean | (string | number | null | undefined)[] | null | undefined;
|
|
465
465
|
} | undefined;
|
|
466
|
-
headers?: import("
|
|
467
|
-
}) | undefined, sdkOptions?: import("
|
|
466
|
+
headers?: import("src/lib/services/types.js").Headers | undefined;
|
|
467
|
+
}) | undefined, sdkOptions?: import("src/lib/services/types.js").SDKOptions | undefined) => Promise<import("src/lib/services/types.js").JSONFetchResponse<{
|
|
468
468
|
code?: "success" | undefined;
|
|
469
469
|
data?: ({
|
|
470
470
|
DATA_TYPE: "collection#1.0.0";
|
|
@@ -1295,8 +1295,8 @@ export declare function getClient(configuration: GCSConfiguration): {
|
|
|
1295
1295
|
query?: {
|
|
1296
1296
|
[key: string]: string | number | boolean | (string | number | null | undefined)[] | null | undefined;
|
|
1297
1297
|
} | undefined;
|
|
1298
|
-
headers?: import("
|
|
1299
|
-
}) | undefined, sdkOptions?: import("
|
|
1298
|
+
headers?: import("src/lib/services/types.js").Headers | undefined;
|
|
1299
|
+
}) | undefined, sdkOptions?: import("src/lib/services/types.js").SDKOptions | undefined) => Promise<import("src/lib/services/types.js").JSONFetchResponse<{
|
|
1300
1300
|
code?: "success" | undefined;
|
|
1301
1301
|
data?: ({
|
|
1302
1302
|
DATA_TYPE: "collection#1.0.0";
|
|
@@ -2925,8 +2925,8 @@ export declare function getClient(configuration: GCSConfiguration): {
|
|
|
2925
2925
|
query?: {
|
|
2926
2926
|
[key: string]: string | number | boolean | (string | number | null | undefined)[] | null | undefined;
|
|
2927
2927
|
} | undefined;
|
|
2928
|
-
headers?: import("
|
|
2929
|
-
}) | undefined, sdkOptions?: import("
|
|
2928
|
+
headers?: import("src/lib/services/types.js").Headers | undefined;
|
|
2929
|
+
}) | undefined, sdkOptions?: import("src/lib/services/types.js").SDKOptions | undefined) => Promise<import("src/lib/services/types.js").JSONFetchResponse<{
|
|
2930
2930
|
code?: "success" | undefined;
|
|
2931
2931
|
data?: ({
|
|
2932
2932
|
DATA_TYPE: "collection#1.0.0";
|
|
@@ -3751,8 +3751,8 @@ export declare function getClient(configuration: GCSConfiguration): {
|
|
|
3751
3751
|
query?: {
|
|
3752
3752
|
[key: string]: string | number | boolean | (string | number | null | undefined)[] | null | undefined;
|
|
3753
3753
|
} | undefined;
|
|
3754
|
-
headers?: import("
|
|
3755
|
-
}) | undefined, sdkOptions?: import("
|
|
3754
|
+
headers?: import("src/lib/services/types.js").Headers | undefined;
|
|
3755
|
+
}) | undefined, sdkOptions?: import("src/lib/services/types.js").SDKOptions | undefined) => Promise<import("src/lib/services/types.js").JSONFetchResponse<{
|
|
3756
3756
|
DATA_TYPE: "result#1.0.0";
|
|
3757
3757
|
code: string;
|
|
3758
3758
|
data?: Record<string, unknown>[] | undefined;
|
|
@@ -4573,8 +4573,8 @@ export declare function getClient(configuration: GCSConfiguration): {
|
|
|
4573
4573
|
query?: {
|
|
4574
4574
|
[key: string]: string | number | boolean | (string | number | null | undefined)[] | null | undefined;
|
|
4575
4575
|
} | undefined;
|
|
4576
|
-
headers?: import("
|
|
4577
|
-
}) | undefined, sdkOptions?: import("
|
|
4576
|
+
headers?: import("src/lib/services/types.js").Headers | undefined;
|
|
4577
|
+
}) | undefined, sdkOptions?: import("src/lib/services/types.js").SDKOptions | undefined) => Promise<import("src/lib/services/types.js").JSONFetchResponse<{
|
|
4578
4578
|
DATA_TYPE: "result#1.0.0";
|
|
4579
4579
|
code: string;
|
|
4580
4580
|
data?: Record<string, unknown>[] | undefined;
|
|
@@ -5395,8 +5395,8 @@ export declare function getClient(configuration: GCSConfiguration): {
|
|
|
5395
5395
|
query?: {
|
|
5396
5396
|
[key: string]: string | number | boolean | (string | number | null | undefined)[] | null | undefined;
|
|
5397
5397
|
} | undefined;
|
|
5398
|
-
headers?: import("
|
|
5399
|
-
}) | undefined, sdkOptions?: import("
|
|
5398
|
+
headers?: import("src/lib/services/types.js").Headers | undefined;
|
|
5399
|
+
}) | undefined, sdkOptions?: import("src/lib/services/types.js").SDKOptions | undefined) => Promise<import("src/lib/services/types.js").JSONFetchResponse<{
|
|
5400
5400
|
DATA_TYPE: "result#1.0.0";
|
|
5401
5401
|
code: string;
|
|
5402
5402
|
data?: Record<string, unknown>[] | undefined;
|
|
@@ -5415,8 +5415,8 @@ export declare function getClient(configuration: GCSConfiguration): {
|
|
|
5415
5415
|
query?: {
|
|
5416
5416
|
[key: string]: string | number | boolean | (string | number | null | undefined)[] | null | undefined;
|
|
5417
5417
|
} | undefined;
|
|
5418
|
-
headers?: import("
|
|
5419
|
-
}) | undefined, sdkOptions?: import("
|
|
5418
|
+
headers?: import("src/lib/services/types.js").Headers | undefined;
|
|
5419
|
+
}) | undefined, sdkOptions?: import("src/lib/services/types.js").SDKOptions | undefined) => Promise<import("src/lib/services/types.js").JSONFetchResponse<{
|
|
5420
5420
|
DATA_TYPE: "result#1.0.0";
|
|
5421
5421
|
code: string;
|
|
5422
5422
|
data?: Record<string, unknown>[] | undefined;
|
|
@@ -5430,8 +5430,8 @@ export declare function getClient(configuration: GCSConfiguration): {
|
|
|
5430
5430
|
query?: {
|
|
5431
5431
|
[key: string]: string | number | boolean | (string | number | null | undefined)[] | null | undefined;
|
|
5432
5432
|
} | undefined;
|
|
5433
|
-
headers?: import("
|
|
5434
|
-
} | undefined, sdkOptions?: import("
|
|
5433
|
+
headers?: import("src/lib/services/types.js").Headers | undefined;
|
|
5434
|
+
} | undefined, sdkOptions?: import("src/lib/services/types.js").SDKOptions | undefined) => Promise<import("src/lib/services/types.js").JSONFetchResponse<{
|
|
5435
5435
|
DATA_TYPE: "result#1.0.0";
|
|
5436
5436
|
code: string;
|
|
5437
5437
|
data?: Record<string, unknown>[] | undefined;
|
|
@@ -5450,8 +5450,8 @@ export declare function getClient(configuration: GCSConfiguration): {
|
|
|
5450
5450
|
query?: {
|
|
5451
5451
|
[key: string]: string | number | boolean | (string | number | null | undefined)[] | null | undefined;
|
|
5452
5452
|
} | undefined;
|
|
5453
|
-
headers?: import("
|
|
5454
|
-
}) | undefined, sdkOptions?: import("
|
|
5453
|
+
headers?: import("src/lib/services/types.js").Headers | undefined;
|
|
5454
|
+
}) | undefined, sdkOptions?: import("src/lib/services/types.js").SDKOptions | undefined) => Promise<import("src/lib/services/types.js").JSONFetchResponse<{
|
|
5455
5455
|
code?: "success" | undefined;
|
|
5456
5456
|
data?: ({
|
|
5457
5457
|
DATA_TYPE: "collection#1.0.0";
|
|
@@ -6280,8 +6280,8 @@ export declare function getClient(configuration: GCSConfiguration): {
|
|
|
6280
6280
|
query?: {
|
|
6281
6281
|
[key: string]: string | number | boolean | (string | number | null | undefined)[] | null | undefined;
|
|
6282
6282
|
} | undefined;
|
|
6283
|
-
headers?: import("
|
|
6284
|
-
}) | undefined, sdkOptions?: import("
|
|
6283
|
+
headers?: import("src/lib/services/types.js").Headers | undefined;
|
|
6284
|
+
}) | undefined, sdkOptions?: import("src/lib/services/types.js").SDKOptions | undefined) => Promise<import("src/lib/services/types.js").JSONFetchResponse<{
|
|
6285
6285
|
code?: "success" | undefined;
|
|
6286
6286
|
data?: {
|
|
6287
6287
|
DATA_TYPE: "user_credential#1.0.0";
|
|
@@ -6488,8 +6488,8 @@ export declare function getClient(configuration: GCSConfiguration): {
|
|
|
6488
6488
|
query?: {
|
|
6489
6489
|
[key: string]: string | number | boolean | (string | number | null | undefined)[] | null | undefined;
|
|
6490
6490
|
} | undefined;
|
|
6491
|
-
headers?: import("
|
|
6492
|
-
}) | undefined, sdkOptions?: import("
|
|
6491
|
+
headers?: import("src/lib/services/types.js").Headers | undefined;
|
|
6492
|
+
}) | undefined, sdkOptions?: import("src/lib/services/types.js").SDKOptions | undefined) => Promise<import("src/lib/services/types.js").JSONFetchResponse<{
|
|
6493
6493
|
code?: "success" | undefined;
|
|
6494
6494
|
data?: {
|
|
6495
6495
|
DATA_TYPE: "user_credential#1.0.0";
|
|
@@ -6603,8 +6603,8 @@ export declare function getClient(configuration: GCSConfiguration): {
|
|
|
6603
6603
|
query?: {
|
|
6604
6604
|
[key: string]: string | number | boolean | (string | number | null | undefined)[] | null | undefined;
|
|
6605
6605
|
} | undefined;
|
|
6606
|
-
headers?: import("
|
|
6607
|
-
}) | undefined, sdkOptions?: import("
|
|
6606
|
+
headers?: import("src/lib/services/types.js").Headers | undefined;
|
|
6607
|
+
}) | undefined, sdkOptions?: import("src/lib/services/types.js").SDKOptions | undefined) => Promise<import("src/lib/services/types.js").JSONFetchResponse<{
|
|
6608
6608
|
DATA_TYPE: "result#1.0.0";
|
|
6609
6609
|
code: string;
|
|
6610
6610
|
data?: Record<string, unknown>[] | undefined;
|
|
@@ -6714,8 +6714,8 @@ export declare function getClient(configuration: GCSConfiguration): {
|
|
|
6714
6714
|
query?: {
|
|
6715
6715
|
[key: string]: string | number | boolean | (string | number | null | undefined)[] | null | undefined;
|
|
6716
6716
|
} | undefined;
|
|
6717
|
-
headers?: import("
|
|
6718
|
-
}) | undefined, sdkOptions?: import("
|
|
6717
|
+
headers?: import("src/lib/services/types.js").Headers | undefined;
|
|
6718
|
+
}) | undefined, sdkOptions?: import("src/lib/services/types.js").SDKOptions | undefined) => Promise<import("src/lib/services/types.js").JSONFetchResponse<{
|
|
6719
6719
|
code?: "success" | undefined;
|
|
6720
6720
|
data?: {
|
|
6721
6721
|
DATA_TYPE: "user_credential#1.0.0";
|
|
@@ -6922,8 +6922,8 @@ export declare function getClient(configuration: GCSConfiguration): {
|
|
|
6922
6922
|
query?: {
|
|
6923
6923
|
[key: string]: string | number | boolean | (string | number | null | undefined)[] | null | undefined;
|
|
6924
6924
|
} | undefined;
|
|
6925
|
-
headers?: import("
|
|
6926
|
-
}) | undefined, sdkOptions?: import("
|
|
6925
|
+
headers?: import("src/lib/services/types.js").Headers | undefined;
|
|
6926
|
+
}) | undefined, sdkOptions?: import("src/lib/services/types.js").SDKOptions | undefined) => Promise<import("src/lib/services/types.js").JSONFetchResponse<{
|
|
6927
6927
|
code?: "success" | undefined;
|
|
6928
6928
|
data?: {
|
|
6929
6929
|
DATA_TYPE: "user_credential#1.0.0";
|
|
@@ -7040,8 +7040,8 @@ export declare function getClient(configuration: GCSConfiguration): {
|
|
|
7040
7040
|
query?: {
|
|
7041
7041
|
[key: string]: string | number | boolean | (string | number | null | undefined)[] | null | undefined;
|
|
7042
7042
|
} | undefined;
|
|
7043
|
-
headers?: import("
|
|
7044
|
-
}) | undefined, sdkOptions?: import("
|
|
7043
|
+
headers?: import("src/lib/services/types.js").Headers | undefined;
|
|
7044
|
+
}) | undefined, sdkOptions?: import("src/lib/services/types.js").SDKOptions | undefined) => Promise<import("src/lib/services/types.js").JSONFetchResponse<{
|
|
7045
7045
|
code?: "success" | undefined;
|
|
7046
7046
|
data?: ({
|
|
7047
7047
|
DATA_TYPE: "storage_gateway#1.0.0";
|
|
@@ -7682,8 +7682,8 @@ export declare function getClient(configuration: GCSConfiguration): {
|
|
|
7682
7682
|
query?: {
|
|
7683
7683
|
[key: string]: string | number | boolean | (string | number | null | undefined)[] | null | undefined;
|
|
7684
7684
|
} | undefined;
|
|
7685
|
-
headers?: import("
|
|
7686
|
-
}) | undefined, sdkOptions?: import("
|
|
7685
|
+
headers?: import("src/lib/services/types.js").Headers | undefined;
|
|
7686
|
+
}) | undefined, sdkOptions?: import("src/lib/services/types.js").SDKOptions | undefined) => Promise<import("src/lib/services/types.js").JSONFetchResponse<{
|
|
7687
7687
|
code?: "success" | undefined;
|
|
7688
7688
|
data?: ({
|
|
7689
7689
|
DATA_TYPE: "storage_gateway#1.0.0";
|
|
@@ -8938,8 +8938,8 @@ export declare function getClient(configuration: GCSConfiguration): {
|
|
|
8938
8938
|
query?: {
|
|
8939
8939
|
[key: string]: string | number | boolean | (string | number | null | undefined)[] | null | undefined;
|
|
8940
8940
|
} | undefined;
|
|
8941
|
-
headers?: import("
|
|
8942
|
-
}) | undefined, sdkOptions?: import("
|
|
8941
|
+
headers?: import("src/lib/services/types.js").Headers | undefined;
|
|
8942
|
+
}) | undefined, sdkOptions?: import("src/lib/services/types.js").SDKOptions | undefined) => Promise<import("src/lib/services/types.js").JSONFetchResponse<{
|
|
8943
8943
|
code?: "success" | undefined;
|
|
8944
8944
|
data?: ({
|
|
8945
8945
|
DATA_TYPE: "storage_gateway#1.0.0";
|
|
@@ -9577,8 +9577,8 @@ export declare function getClient(configuration: GCSConfiguration): {
|
|
|
9577
9577
|
query?: {
|
|
9578
9578
|
[key: string]: string | number | boolean | (string | number | null | undefined)[] | null | undefined;
|
|
9579
9579
|
} | undefined;
|
|
9580
|
-
headers?: import("
|
|
9581
|
-
}) | undefined, sdkOptions?: import("
|
|
9580
|
+
headers?: import("src/lib/services/types.js").Headers | undefined;
|
|
9581
|
+
}) | undefined, sdkOptions?: import("src/lib/services/types.js").SDKOptions | undefined) => Promise<import("src/lib/services/types.js").JSONFetchResponse<{
|
|
9582
9582
|
DATA_TYPE: "result#1.0.0";
|
|
9583
9583
|
code: string;
|
|
9584
9584
|
data?: Record<string, unknown>[] | undefined;
|
|
@@ -10212,8 +10212,8 @@ export declare function getClient(configuration: GCSConfiguration): {
|
|
|
10212
10212
|
query?: {
|
|
10213
10213
|
[key: string]: string | number | boolean | (string | number | null | undefined)[] | null | undefined;
|
|
10214
10214
|
} | undefined;
|
|
10215
|
-
headers?: import("
|
|
10216
|
-
}) | undefined, sdkOptions?: import("
|
|
10215
|
+
headers?: import("src/lib/services/types.js").Headers | undefined;
|
|
10216
|
+
}) | undefined, sdkOptions?: import("src/lib/services/types.js").SDKOptions | undefined) => Promise<import("src/lib/services/types.js").JSONFetchResponse<{
|
|
10217
10217
|
code?: "success" | undefined;
|
|
10218
10218
|
data?: ({
|
|
10219
10219
|
DATA_TYPE: "storage_gateway#1.0.0";
|
|
@@ -11468,8 +11468,8 @@ export declare function getClient(configuration: GCSConfiguration): {
|
|
|
11468
11468
|
query?: {
|
|
11469
11469
|
[key: string]: string | number | boolean | (string | number | null | undefined)[] | null | undefined;
|
|
11470
11470
|
} | undefined;
|
|
11471
|
-
headers?: import("
|
|
11472
|
-
}) | undefined, sdkOptions?: import("
|
|
11471
|
+
headers?: import("src/lib/services/types.js").Headers | undefined;
|
|
11472
|
+
}) | undefined, sdkOptions?: import("src/lib/services/types.js").SDKOptions | undefined) => Promise<import("src/lib/services/types.js").JSONFetchResponse<{
|
|
11473
11473
|
code?: "success" | undefined;
|
|
11474
11474
|
data?: ({
|
|
11475
11475
|
DATA_TYPE: "storage_gateway#1.0.0";
|
|
@@ -12109,8 +12109,8 @@ export declare function getClient(configuration: GCSConfiguration): {
|
|
|
12109
12109
|
query?: {
|
|
12110
12110
|
[key: string]: string | number | boolean | (string | number | null | undefined)[] | null | undefined;
|
|
12111
12111
|
} | undefined;
|
|
12112
|
-
headers?: import("
|
|
12113
|
-
}) | undefined, sdkOptions?: import("
|
|
12112
|
+
headers?: import("src/lib/services/types.js").Headers | undefined;
|
|
12113
|
+
}) | undefined, sdkOptions?: import("src/lib/services/types.js").SDKOptions | undefined) => Promise<import("src/lib/services/types.js").JSONFetchResponse<{
|
|
12114
12114
|
code?: "success" | undefined;
|
|
12115
12115
|
data?: {
|
|
12116
12116
|
DATA_TYPE: "role#1.0.0";
|
|
@@ -12140,8 +12140,8 @@ export declare function getClient(configuration: GCSConfiguration): {
|
|
|
12140
12140
|
query?: {
|
|
12141
12141
|
[key: string]: string | number | boolean | (string | number | null | undefined)[] | null | undefined;
|
|
12142
12142
|
} | undefined;
|
|
12143
|
-
headers?: import("
|
|
12144
|
-
}) | undefined, sdkOptions?: import("
|
|
12143
|
+
headers?: import("src/lib/services/types.js").Headers | undefined;
|
|
12144
|
+
}) | undefined, sdkOptions?: import("src/lib/services/types.js").SDKOptions | undefined) => Promise<import("src/lib/services/types.js").JSONFetchResponse<{
|
|
12145
12145
|
code?: "success" | undefined;
|
|
12146
12146
|
data?: {
|
|
12147
12147
|
DATA_TYPE: "role#1.0.0";
|
|
@@ -12172,8 +12172,8 @@ export declare function getClient(configuration: GCSConfiguration): {
|
|
|
12172
12172
|
query?: {
|
|
12173
12173
|
[key: string]: string | number | boolean | (string | number | null | undefined)[] | null | undefined;
|
|
12174
12174
|
} | undefined;
|
|
12175
|
-
headers?: import("
|
|
12176
|
-
}) | undefined, sdkOptions?: import("
|
|
12175
|
+
headers?: import("src/lib/services/types.js").Headers | undefined;
|
|
12176
|
+
}) | undefined, sdkOptions?: import("src/lib/services/types.js").SDKOptions | undefined) => Promise<import("src/lib/services/types.js").JSONFetchResponse<{
|
|
12177
12177
|
code?: "success" | undefined;
|
|
12178
12178
|
data?: {
|
|
12179
12179
|
DATA_TYPE: "role#1.0.0";
|
|
@@ -12199,8 +12199,8 @@ export declare function getClient(configuration: GCSConfiguration): {
|
|
|
12199
12199
|
query?: {
|
|
12200
12200
|
[key: string]: string | number | boolean | (string | number | null | undefined)[] | null | undefined;
|
|
12201
12201
|
} | undefined;
|
|
12202
|
-
headers?: import("
|
|
12203
|
-
}) | undefined, sdkOptions?: import("
|
|
12202
|
+
headers?: import("src/lib/services/types.js").Headers | undefined;
|
|
12203
|
+
}) | undefined, sdkOptions?: import("src/lib/services/types.js").SDKOptions | undefined) => Promise<import("src/lib/services/types.js").JSONFetchResponse<{
|
|
12204
12204
|
DATA_TYPE: "result#1.0.0";
|
|
12205
12205
|
code: string;
|
|
12206
12206
|
data?: Record<string, unknown>[] | undefined;
|
|
@@ -42,7 +42,7 @@ export type DirectoryListingError = {
|
|
|
42
42
|
/**
|
|
43
43
|
* @see https://docs.globus.org/api/transfer/file_operations/#errors
|
|
44
44
|
*/
|
|
45
|
-
code: 'NotSupported' | 'ClientError.NotFound' | 'EndpointError' | string;
|
|
45
|
+
code: 'NotSupported' | 'ClientError.NotFound' | 'EndpointError' | 'ExternalError.DirListingFailed.LoginFailed' | string;
|
|
46
46
|
message: string;
|
|
47
47
|
request_id: string;
|
|
48
48
|
resource: string;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"file-operations.d.ts","sourceRoot":"","sources":["../../../../../../src/lib/services/transfer/service/file-operations.ts"],"names":[],"mappings":"AAIA,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,aAAa,CAAC;AAC5C,OAAO,KAAK,EAAE,iBAAiB,EAAgC,MAAM,gBAAgB,CAAC;AAEtF;;GAEG;AACH,MAAM,MAAM,YAAY,GAAG;IACzB,QAAQ,CAAC,SAAS,EAAE,MAAM,CAAC;IAC3B,QAAQ,CAAC,IAAI,EAAE,MAAM,CAAC;IACtB,QAAQ,CAAC,IAAI,EAAE,KAAK,GAAG,MAAM,GAAG,iBAAiB,GAAG,KAAK,GAAG,KAAK,GAAG,MAAM,GAAG,OAAO,CAAC;IACrF,QAAQ,CAAC,WAAW,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACrC,QAAQ,CAAC,IAAI,CAAC,EAAE,MAAM,CAAC;IACvB,QAAQ,CAAC,aAAa,CAAC,EAAE,MAAM,CAAC;IAChC,QAAQ,CAAC,WAAW,CAAC,EAAE,MAAM,CAAC;IAC9B,QAAQ,CAAC,IAAI,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC9B,QAAQ,CAAC,KAAK,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC/B,QAAQ,CAAC,SAAS,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACnC,QAAQ,CAAC,SAAS,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACnC,QAAQ,CAAC,UAAU,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACpC,QAAQ,CAAC,kBAAkB,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;CAC7C,CAAC;AAEF;;GAEG;AACH,MAAM,MAAM,gBAAgB,GAAG;IAC7B,QAAQ,CAAC,SAAS,EAAE,WAAW,CAAC;IAChC,QAAQ,CAAC,QAAQ,EAAE,MAAM,CAAC;IAC1B,QAAQ,CAAC,IAAI,EAAE,MAAM,CAAC;IACtB,QAAQ,CAAC,aAAa,EAAE,MAAM,GAAG,IAAI,CAAC;IACtC,QAAQ,CAAC,gBAAgB,EAAE,OAAO,CAAC;IACnC,QAAQ,CAAC,iBAAiB,EAAE,OAAO,CAAC;IACpC,QAAQ,CAAC,IAAI,EAAE,YAAY,EAAE,CAAC;IAC9B;;OAEG;IACH,QAAQ,CAAC,MAAM,EAAE,MAAM,CAAC;IACxB;;OAEG;IACH,QAAQ,CAAC,KAAK,EAAE,MAAM,CAAC;CACxB,CAAC;AAEF,MAAM,MAAM,qBAAqB,GAAG;IAClC;;OAEG;IACH,IAAI,
|
|
1
|
+
{"version":3,"file":"file-operations.d.ts","sourceRoot":"","sources":["../../../../../../src/lib/services/transfer/service/file-operations.ts"],"names":[],"mappings":"AAIA,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,aAAa,CAAC;AAC5C,OAAO,KAAK,EAAE,iBAAiB,EAAgC,MAAM,gBAAgB,CAAC;AAEtF;;GAEG;AACH,MAAM,MAAM,YAAY,GAAG;IACzB,QAAQ,CAAC,SAAS,EAAE,MAAM,CAAC;IAC3B,QAAQ,CAAC,IAAI,EAAE,MAAM,CAAC;IACtB,QAAQ,CAAC,IAAI,EAAE,KAAK,GAAG,MAAM,GAAG,iBAAiB,GAAG,KAAK,GAAG,KAAK,GAAG,MAAM,GAAG,OAAO,CAAC;IACrF,QAAQ,CAAC,WAAW,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACrC,QAAQ,CAAC,IAAI,CAAC,EAAE,MAAM,CAAC;IACvB,QAAQ,CAAC,aAAa,CAAC,EAAE,MAAM,CAAC;IAChC,QAAQ,CAAC,WAAW,CAAC,EAAE,MAAM,CAAC;IAC9B,QAAQ,CAAC,IAAI,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC9B,QAAQ,CAAC,KAAK,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC/B,QAAQ,CAAC,SAAS,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACnC,QAAQ,CAAC,SAAS,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACnC,QAAQ,CAAC,UAAU,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACpC,QAAQ,CAAC,kBAAkB,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;CAC7C,CAAC;AAEF;;GAEG;AACH,MAAM,MAAM,gBAAgB,GAAG;IAC7B,QAAQ,CAAC,SAAS,EAAE,WAAW,CAAC;IAChC,QAAQ,CAAC,QAAQ,EAAE,MAAM,CAAC;IAC1B,QAAQ,CAAC,IAAI,EAAE,MAAM,CAAC;IACtB,QAAQ,CAAC,aAAa,EAAE,MAAM,GAAG,IAAI,CAAC;IACtC,QAAQ,CAAC,gBAAgB,EAAE,OAAO,CAAC;IACnC,QAAQ,CAAC,iBAAiB,EAAE,OAAO,CAAC;IACpC,QAAQ,CAAC,IAAI,EAAE,YAAY,EAAE,CAAC;IAC9B;;OAEG;IACH,QAAQ,CAAC,MAAM,EAAE,MAAM,CAAC;IACxB;;OAEG;IACH,QAAQ,CAAC,KAAK,EAAE,MAAM,CAAC;CACxB,CAAC;AAEF,MAAM,MAAM,qBAAqB,GAAG;IAClC;;OAEG;IACH,IAAI,EACA,cAAc,GACd,sBAAsB,GACtB,eAAe,GAEf,4CAA4C,GAC5C,MAAM,CAAC;IACX,OAAO,EAAE,MAAM,CAAC;IAChB,UAAU,EAAE,MAAM,CAAC;IACnB,QAAQ,EAAE,MAAM,CAAC;CAClB,CAAC;AAEF;;;;;GAKG;AACH,eAAO,MAAM,EAAE;;;;;;;;;;;;;;iFAIZ,QAAQ,kBAAkB,gBAAgB,GAAG,qBAAqB,CAAC,CAerE,CAAC;AAEF;;;;;GAKG;AACH,eAAO,MAAM,KAAK;aAwBL,KAAK,QAAQ,CAAC,SAAS,CAAC,CAAC,OAAO,CAAC,EAAE,WAAW,CAAC;;;;;;kGAE3D,CAAC;AAEF;;;;;;;GAOG;AACH,eAAO,MAAM,MAAM;aAwBN,KAAK,QAAQ,CAAC,SAAS,CAAC,CAAC,QAAQ,CAAC,EAAE,WAAW,CAAC;;;;;;kGAE5D,CAAC;AAEF;;;;;GAKG;AACH,eAAO,MAAM,OAAO;aAwBP,KAAK,QAAQ,CAAC,SAAS,CAAC,CAAC,SAAS,CAAC,EAAE,WAAW,CAAC;;;;;;kGAE7D,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"file-operations.js","sourceRoot":"","sources":["../../../../../../src/lib/services/transfer/service/file-operations.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,YAAY,EAAE,cAAc,EAAE,MAAM,iBAAiB,CAAC;AAC/D,OAAO,EAAE,oBAAoB,EAAE,MAAM,cAAc,CAAC;AACpD,OAAO,EAAE,EAAE,EAAE,MAAM,EAAE,MAAM,cAAc,CAAC;
|
|
1
|
+
{"version":3,"file":"file-operations.js","sourceRoot":"","sources":["../../../../../../src/lib/services/transfer/service/file-operations.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,YAAY,EAAE,cAAc,EAAE,MAAM,iBAAiB,CAAC;AAC/D,OAAO,EAAE,oBAAoB,EAAE,MAAM,cAAc,CAAC;AACpD,OAAO,EAAE,EAAE,EAAE,MAAM,EAAE,MAAM,cAAc,CAAC;AA6D1C;;;;;GAKG;AACH,MAAM,CAAC,MAAM,EAAE,GAAG,UAChB,YAAY,EACZ,OAAQ,EACR,UAAW;IAEX,OAAO,cAAc,CACnB;QACE,OAAO,EAAE,EAAE;QACX,KAAK,EAAE,MAAM,CAAC,GAAG;QACjB,IAAI,EAAE,6BAA6B,YAAY,KAAK;KACrD,EACD,OAAO,EACP,UAAU,CACX,CAAC;AACJ,CAKC,CAAC;AAEF;;;;;GAKG;AACH,MAAM,CAAC,MAAM,KAAK,GAAG,UAAU,YAAY,EAAE,OAAO,EAAE,UAAW;IAC/D,MAAM,qBAAqB,GAAG;QAC5B,OAAO,kBACL,SAAS,EAAE,OAAO,IACf,OAAO,aAAP,OAAO,uBAAP,OAAO,CAAE,OAAO,CACpB;QACD,OAAO,kCACF,oBAAoB,CAAC,YAAY,CAAC,IAAI,CAAC,GACvC,OAAO,aAAP,OAAO,uBAAP,OAAO,CAAE,OAAO,CACpB;KACF,CAAC;IACF,OAAO,cAAc,CACnB;QACE,OAAO,EAAE,EAAE;QACX,KAAK,EAAE,MAAM,CAAC,GAAG;QACjB,IAAI,EAAE,6BAA6B,YAAY,QAAQ;QACvD,MAAM,EAAE,YAAY,CAAC,IAAI;KAC1B,EACD,qBAAqB,EACrB,UAAU,CACX,CAAC;AACJ,CAKC,CAAC;AAEF;;;;;;;GAOG;AACH,MAAM,CAAC,MAAM,MAAM,GAAG,UAAU,YAAY,EAAE,OAAO,EAAE,UAAW;IAChE,MAAM,qBAAqB,GAAG;QAC5B,OAAO,kBACL,SAAS,EAAE,QAAQ,IAChB,OAAO,aAAP,OAAO,uBAAP,OAAO,CAAE,OAAO,CACpB;QACD,OAAO,kCACF,oBAAoB,CAAC,YAAY,CAAC,IAAI,CAAC,GACvC,OAAO,aAAP,OAAO,uBAAP,OAAO,CAAE,OAAO,CACpB;KACF,CAAC;IACF,OAAO,cAAc,CACnB;QACE,OAAO,EAAE,EAAE;QACX,KAAK,EAAE,MAAM,CAAC,GAAG;QACjB,IAAI,EAAE,6BAA6B,YAAY,SAAS;QACxD,MAAM,EAAE,YAAY,CAAC,IAAI;KAC1B,EACD,qBAAqB,EACrB,UAAU,CACX,CAAC;AACJ,CAKC,CAAC;AAEF;;;;;GAKG;AACH,MAAM,CAAC,MAAM,OAAO,GAAG,UAAU,YAAY,EAAE,OAAO,EAAE,UAAW;IACjE,MAAM,qBAAqB,GAAG;QAC5B,OAAO,kBACL,SAAS,EAAE,SAAS,IACjB,OAAO,aAAP,OAAO,uBAAP,OAAO,CAAE,OAAO,CACpB;QACD,OAAO,kCACF,oBAAoB,CAAC,YAAY,CAAC,IAAI,CAAC,GACvC,OAAO,aAAP,OAAO,uBAAP,OAAO,CAAE,OAAO,CACpB;KACF,CAAC;IACF,OAAO,cAAc,CACnB;QACE,OAAO,EAAE,EAAE;QACX,KAAK,EAAE,MAAM,CAAC,GAAG;QACjB,IAAI,EAAE,6BAA6B,YAAY,UAAU;QACzD,MAAM,EAAE,YAAY,CAAC,IAAI;KAC1B,EACD,qBAAqB,EACrB,UAAU,CACX,CAAC;AACJ,CAKC,CAAC"}
|