@globus/sdk
Advanced tools
Comparing version 5.2.0 to 5.3.0
@@ -338,3 +338,3 @@ var __create = Object.create; | ||
// src/core/info/version.ts | ||
var VERSION = "5.2.0"; | ||
var VERSION = "5.3.0"; | ||
@@ -697,3 +697,3 @@ // src/core/info/index.ts | ||
*/ | ||
async getToken(options = { shouldReplace: true }) { | ||
async getToken(options = { shouldReplace: true, includeConsentedScopes: false }) { | ||
const url = new URL(window.location.href); | ||
@@ -730,2 +730,5 @@ const params = new URLSearchParams(url.search); | ||
const response = await (await oauth2_exports.token.exchange({ | ||
query: options.includeConsentedScopes ? { | ||
include_consented_scopes: true | ||
} : void 0, | ||
payload | ||
@@ -832,2 +835,5 @@ })).json(); | ||
} | ||
remove(token2) { | ||
this.#manager.storage.removeItem(`${this.#manager.storageKeyPrefix}${token2.resource_server}`); | ||
} | ||
/** | ||
@@ -1071,4 +1077,2 @@ * Determines whether or not a stored token is expired. | ||
params: { | ||
// @todo @todo Decide if we want to include the `include_consented_scopes` parameter by default. | ||
// include_consented_scopes: 'true', | ||
...overrides?.params | ||
@@ -1105,3 +1109,4 @@ } | ||
const response = await this.#buildTransport({ params: options?.additionalParams }).getToken({ | ||
shouldReplace: options?.shouldReplace | ||
shouldReplace: options?.shouldReplace, | ||
includeConsentedScopes: options?.includeConsentedScopes | ||
}); | ||
@@ -1108,0 +1113,0 @@ if (isGlobusAuthTokenResponse(response)) { |
@@ -46,3 +46,3 @@ var __defProp = Object.defineProperty; | ||
// src/core/info/version.ts | ||
var VERSION = "5.2.0"; | ||
var VERSION = "5.3.0"; | ||
@@ -49,0 +49,0 @@ // src/core/info/index.ts |
@@ -55,3 +55,3 @@ var __create = Object.create; | ||
// src/core/info/version.ts | ||
var VERSION = "5.2.0"; | ||
var VERSION = "5.3.0"; | ||
@@ -58,0 +58,0 @@ // src/core/info/index.ts |
@@ -170,3 +170,4 @@ import { Event } from './Event.js'; | ||
handleCodeRedirect(options?: { | ||
shouldReplace: GetTokenOptions['shouldReplace']; | ||
shouldReplace?: GetTokenOptions['shouldReplace']; | ||
includeConsentedScopes?: GetTokenOptions['includeConsentedScopes']; | ||
additionalParams?: RedirectTransportOptions['params']; | ||
@@ -173,0 +174,0 @@ }): Promise<any>; |
@@ -291,2 +291,3 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) { | ||
shouldReplace: options === null || options === void 0 ? void 0 : options.shouldReplace, | ||
includeConsentedScopes: options === null || options === void 0 ? void 0 : options.includeConsentedScopes, | ||
}); | ||
@@ -293,0 +294,0 @@ if (isGlobusAuthTokenResponse(response)) { |
@@ -8,2 +8,10 @@ import type { AuthorizationManagerConfiguration } from './AuthorizationManager'; | ||
shouldReplace?: boolean; | ||
/** | ||
* When set to `true` in addition to the `scope` values originally requested, Globus Auth | ||
* will return tokens for **all** of the scopes that the user has consented to, for | ||
* the requesting client. | ||
* @default false | ||
* @private | ||
*/ | ||
includeConsentedScopes?: boolean; | ||
}; | ||
@@ -10,0 +18,0 @@ export type RedirectTransportOptions = Pick<AuthorizationManagerConfiguration, 'client' | 'redirect' | 'scopes'> & { |
@@ -76,3 +76,3 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) { | ||
getToken() { | ||
return __awaiter(this, arguments, void 0, function* (options = { shouldReplace: true }) { | ||
return __awaiter(this, arguments, void 0, function* (options = { shouldReplace: true, includeConsentedScopes: false }) { | ||
const url = new URL(window.location.href); | ||
@@ -128,2 +128,7 @@ const params = new URLSearchParams(url.search); | ||
const response = yield (yield oauth2.token.exchange({ | ||
query: options.includeConsentedScopes | ||
? { | ||
include_consented_scopes: true, | ||
} | ||
: undefined, | ||
payload, | ||
@@ -130,0 +135,0 @@ })).json(); |
@@ -41,2 +41,3 @@ import { AuthorizationManager } from './AuthorizationManager.js'; | ||
add(token: Token | TokenResponse): void; | ||
remove(token: Token | TokenResponse): void; | ||
/** | ||
@@ -43,0 +44,0 @@ * Determines whether or not a stored token is expired. |
@@ -78,2 +78,5 @@ var __classPrivateFieldSet = (this && this.__classPrivateFieldSet) || function (receiver, state, value, kind, f) { | ||
} | ||
remove(token) { | ||
__classPrivateFieldGet(this, _TokenManager_manager, "f").storage.removeItem(`${__classPrivateFieldGet(this, _TokenManager_manager, "f").storageKeyPrefix}${token.resource_server}`); | ||
} | ||
/** | ||
@@ -80,0 +83,0 @@ * Determines whether or not a stored token is expired. |
@@ -1,2 +0,2 @@ | ||
export declare const VERSION = "5.2.0"; | ||
export declare const VERSION = "5.3.0"; | ||
//# sourceMappingURL=version.d.ts.map |
// x-release-please-start-version | ||
export const VERSION = '5.2.0'; | ||
export const VERSION = '5.3.0'; | ||
// x-release-please-end | ||
//# sourceMappingURL=version.js.map |
{ | ||
"type": "module", | ||
"version": "5.2.0" | ||
"version": "5.3.0" | ||
} |
@@ -7,5 +7,5 @@ import { ID, SCOPES } from '../../config.js'; | ||
scope: SCOPES.VIEW_IDENTITIES, | ||
path: `/identities/${identity_id}/consents`, | ||
path: `/v2/api/identities/${identity_id}/consents`, | ||
}, options, sdkOptions); | ||
}; | ||
//# sourceMappingURL=consents.js.map |
@@ -12,3 +12,3 @@ import { ID, SCOPES } from '../../config.js'; | ||
scope: SCOPES.VIEW_IDENTITIES, | ||
path: `/identities/${identity_id}`, | ||
path: `/v2/api/identities/${identity_id}`, | ||
}, options, sdkOptions); | ||
@@ -24,5 +24,5 @@ }; | ||
scope: SCOPES.VIEW_IDENTITIES, | ||
path: `/identities`, | ||
path: `/v2/api/identities`, | ||
}, options, sdkOptions); | ||
}; | ||
//# sourceMappingURL=index.js.map |
@@ -36,2 +36,9 @@ type IntrospectPayload = { | ||
payload?: ExchangePayload; | ||
query?: { | ||
/** | ||
* Include tokens for all scopes that the user has consented to, for the requesting client. | ||
* @private | ||
*/ | ||
include_consented_scopes?: boolean; | ||
}; | ||
} & import("../../../types.js").BaseServiceMethodOptions) | undefined, sdkOptions?: import("../../../types.js").SDKOptions | undefined) => Promise<Response>; | ||
@@ -43,2 +50,9 @@ /** | ||
payload?: ExchangePayload; | ||
query?: { | ||
/** | ||
* Include tokens for all scopes that the user has consented to, for the requesting client. | ||
* @private | ||
*/ | ||
include_consented_scopes?: boolean; | ||
}; | ||
} & import("../../../types.js").BaseServiceMethodOptions) | undefined, sdkOptions?: import("../../../types.js").SDKOptions | undefined) => Promise<Response>; | ||
@@ -45,0 +59,0 @@ /** |
@@ -1,3 +0,3 @@ | ||
var globus=(()=>{var Ar=Object.create;var pe=Object.defineProperty;var Mr=Object.getOwnPropertyDescriptor;var wr=Object.getOwnPropertyNames;var Cr=Object.getPrototypeOf,Lr=Object.prototype.hasOwnProperty;var kr=(e,t)=>()=>(t||e((t={exports:{}}).exports,t),t.exports),u=(e,t)=>{for(var r in t)pe(e,r,{get:t[r],enumerable:!0})},Jt=(e,t,r,s)=>{if(t&&typeof t=="object"||typeof t=="function")for(let a of wr(t))!Lr.call(e,a)&&a!==r&&pe(e,a,{get:()=>t[a],enumerable:!(s=Mr(t,a))||s.enumerable});return e};var Nr=(e,t,r)=>(r=e!=null?Ar(Cr(e)):{},Jt(t||!e||!e.__esModule?pe(r,"default",{value:e,enumerable:!0}):r,e)),Ir=e=>Jt(pe({},"__esModule",{value:!0}),e);var or=kr((G,rr)=>{var ye=typeof globalThis<"u"&&globalThis||typeof self<"u"&&self||typeof global<"u"&&global,Se=function(){function e(){this.fetch=!1,this.DOMException=ye.DOMException}return e.prototype=ye,new e}();(function(e){var t=function(r){var s=typeof e<"u"&&e||typeof self<"u"&&self||typeof global<"u"&&global||{},a={searchParams:"URLSearchParams"in s,iterable:"Symbol"in s&&"iterator"in Symbol,blob:"FileReader"in s&&"Blob"in s&&function(){try{return new Blob,!0}catch{return!1}}(),formData:"FormData"in s,arrayBuffer:"ArrayBuffer"in s};function l(n){return n&&DataView.prototype.isPrototypeOf(n)}if(a.arrayBuffer)var b=["[object Int8Array]","[object Uint8Array]","[object Uint8ClampedArray]","[object Int16Array]","[object Uint16Array]","[object Int32Array]","[object Uint32Array]","[object Float32Array]","[object Float64Array]"],E=ArrayBuffer.isView||function(n){return n&&b.indexOf(Object.prototype.toString.call(n))>-1};function O(n){if(typeof n!="string"&&(n=String(n)),/[^a-z0-9\-#$%&'*+.^_`|~!]/i.test(n)||n==="")throw new TypeError('Invalid character in header field name: "'+n+'"');return n.toLowerCase()}function q(n){return typeof n!="string"&&(n=String(n)),n}function C(n){var i={next:function(){var d=n.shift();return{done:d===void 0,value:d}}};return a.iterable&&(i[Symbol.iterator]=function(){return i}),i}function f(n){this.map={},n instanceof f?n.forEach(function(i,d){this.append(d,i)},this):Array.isArray(n)?n.forEach(function(i){if(i.length!=2)throw new TypeError("Headers constructor: expected name/value pair to be length 2, found"+i.length);this.append(i[0],i[1])},this):n&&Object.getOwnPropertyNames(n).forEach(function(i){this.append(i,n[i])},this)}f.prototype.append=function(n,i){n=O(n),i=q(i);var d=this.map[n];this.map[n]=d?d+", "+i:i},f.prototype.delete=function(n){delete this.map[O(n)]},f.prototype.get=function(n){return n=O(n),this.has(n)?this.map[n]:null},f.prototype.has=function(n){return this.map.hasOwnProperty(O(n))},f.prototype.set=function(n,i){this.map[O(n)]=q(i)},f.prototype.forEach=function(n,i){for(var d in this.map)this.map.hasOwnProperty(d)&&n.call(i,this.map[d],d,this)},f.prototype.keys=function(){var n=[];return this.forEach(function(i,d){n.push(d)}),C(n)},f.prototype.values=function(){var n=[];return this.forEach(function(i){n.push(i)}),C(n)},f.prototype.entries=function(){var n=[];return this.forEach(function(i,d){n.push([d,i])}),C(n)},a.iterable&&(f.prototype[Symbol.iterator]=f.prototype.entries);function w(n){if(!n._noBody){if(n.bodyUsed)return Promise.reject(new TypeError("Already read"));n.bodyUsed=!0}}function $(n){return new Promise(function(i,d){n.onload=function(){i(n.result)},n.onerror=function(){d(n.error)}})}function qt(n){var i=new FileReader,d=$(i);return i.readAsArrayBuffer(n),d}function j(n){var i=new FileReader,d=$(i),h=/charset=([A-Za-z0-9_-]+)/.exec(n.type),y=h?h[1]:"utf-8";return i.readAsText(n,y),d}function Er(n){for(var i=new Uint8Array(n),d=new Array(i.length),h=0;h<i.length;h++)d[h]=String.fromCharCode(i[h]);return d.join("")}function jt(n){if(n.slice)return n.slice(0);var i=new Uint8Array(n.byteLength);return i.set(new Uint8Array(n)),i.buffer}function Ut(){return this.bodyUsed=!1,this._initBody=function(n){this.bodyUsed=this.bodyUsed,this._bodyInit=n,n?typeof n=="string"?this._bodyText=n:a.blob&&Blob.prototype.isPrototypeOf(n)?this._bodyBlob=n:a.formData&&FormData.prototype.isPrototypeOf(n)?this._bodyFormData=n:a.searchParams&&URLSearchParams.prototype.isPrototypeOf(n)?this._bodyText=n.toString():a.arrayBuffer&&a.blob&&l(n)?(this._bodyArrayBuffer=jt(n.buffer),this._bodyInit=new Blob([this._bodyArrayBuffer])):a.arrayBuffer&&(ArrayBuffer.prototype.isPrototypeOf(n)||E(n))?this._bodyArrayBuffer=jt(n):this._bodyText=n=Object.prototype.toString.call(n):(this._noBody=!0,this._bodyText=""),this.headers.get("content-type")||(typeof n=="string"?this.headers.set("content-type","text/plain;charset=UTF-8"):this._bodyBlob&&this._bodyBlob.type?this.headers.set("content-type",this._bodyBlob.type):a.searchParams&&URLSearchParams.prototype.isPrototypeOf(n)&&this.headers.set("content-type","application/x-www-form-urlencoded;charset=UTF-8"))},a.blob&&(this.blob=function(){var n=w(this);if(n)return n;if(this._bodyBlob)return Promise.resolve(this._bodyBlob);if(this._bodyArrayBuffer)return Promise.resolve(new Blob([this._bodyArrayBuffer]));if(this._bodyFormData)throw new Error("could not read FormData body as blob");return Promise.resolve(new Blob([this._bodyText]))}),this.arrayBuffer=function(){if(this._bodyArrayBuffer){var n=w(this);return n||(ArrayBuffer.isView(this._bodyArrayBuffer)?Promise.resolve(this._bodyArrayBuffer.buffer.slice(this._bodyArrayBuffer.byteOffset,this._bodyArrayBuffer.byteOffset+this._bodyArrayBuffer.byteLength)):Promise.resolve(this._bodyArrayBuffer))}else{if(a.blob)return this.blob().then(qt);throw new Error("could not read as ArrayBuffer")}},this.text=function(){var n=w(this);if(n)return n;if(this._bodyBlob)return j(this._bodyBlob);if(this._bodyArrayBuffer)return Promise.resolve(Er(this._bodyArrayBuffer));if(this._bodyFormData)throw new Error("could not read FormData body as text");return Promise.resolve(this._bodyText)},a.formData&&(this.formData=function(){return this.text().then(Pr)}),this.json=function(){return this.text().then(JSON.parse)},this}var Or=["CONNECT","DELETE","GET","HEAD","OPTIONS","PATCH","POST","PUT","TRACE"];function br(n){var i=n.toUpperCase();return Or.indexOf(i)>-1?i:n}function k(n,i){if(!(this instanceof k))throw new TypeError('Please use the "new" operator, this DOM object constructor cannot be called as a function.');i=i||{};var d=i.body;if(n instanceof k){if(n.bodyUsed)throw new TypeError("Already read");this.url=n.url,this.credentials=n.credentials,i.headers||(this.headers=new f(n.headers)),this.method=n.method,this.mode=n.mode,this.signal=n.signal,!d&&n._bodyInit!=null&&(d=n._bodyInit,n.bodyUsed=!0)}else this.url=String(n);if(this.credentials=i.credentials||this.credentials||"same-origin",(i.headers||!this.headers)&&(this.headers=new f(i.headers)),this.method=br(i.method||this.method||"GET"),this.mode=i.mode||this.mode||null,this.signal=i.signal||this.signal||function(){if("AbortController"in s){var m=new AbortController;return m.signal}}(),this.referrer=null,(this.method==="GET"||this.method==="HEAD")&&d)throw new TypeError("Body not allowed for GET or HEAD requests");if(this._initBody(d),(this.method==="GET"||this.method==="HEAD")&&(i.cache==="no-store"||i.cache==="no-cache")){var h=/([?&])_=[^&]*/;if(h.test(this.url))this.url=this.url.replace(h,"$1_="+new Date().getTime());else{var y=/\?/;this.url+=(y.test(this.url)?"&":"?")+"_="+new Date().getTime()}}}k.prototype.clone=function(){return new k(this,{body:this._bodyInit})};function Pr(n){var i=new FormData;return n.trim().split("&").forEach(function(d){if(d){var h=d.split("="),y=h.shift().replace(/\+/g," "),m=h.join("=").replace(/\+/g," ");i.append(decodeURIComponent(y),decodeURIComponent(m))}}),i}function xr(n){var i=new f,d=n.replace(/\r?\n[\t ]+/g," ");return d.split("\r").map(function(h){return h.indexOf(` | ||
`)===0?h.substr(1,h.length):h}).forEach(function(h){var y=h.split(":"),m=y.shift().trim();if(m){var ae=y.join(":").trim();try{i.append(m,ae)}catch(Ee){console.warn("Response "+Ee.message)}}}),i}Ut.call(k.prototype);function A(n,i){if(!(this instanceof A))throw new TypeError('Please use the "new" operator, this DOM object constructor cannot be called as a function.');if(i||(i={}),this.type="default",this.status=i.status===void 0?200:i.status,this.status<200||this.status>599)throw new RangeError("Failed to construct 'Response': The status provided (0) is outside the range [200, 599].");this.ok=this.status>=200&&this.status<300,this.statusText=i.statusText===void 0?"":""+i.statusText,this.headers=new f(i.headers),this.url=i.url||"",this._initBody(n)}Ut.call(A.prototype),A.prototype.clone=function(){return new A(this._bodyInit,{status:this.status,statusText:this.statusText,headers:new f(this.headers),url:this.url})},A.error=function(){var n=new A(null,{status:200,statusText:""});return n.ok=!1,n.status=0,n.type="error",n};var Dr=[301,302,303,307,308];A.redirect=function(n,i){if(Dr.indexOf(i)===-1)throw new RangeError("Invalid status code");return new A(null,{status:i,headers:{location:n}})},r.DOMException=s.DOMException;try{new r.DOMException}catch{r.DOMException=function(i,d){this.message=i,this.name=d;var h=Error(i);this.stack=h.stack},r.DOMException.prototype=Object.create(Error.prototype),r.DOMException.prototype.constructor=r.DOMException}function Re(n,i){return new Promise(function(d,h){var y=new k(n,i);if(y.signal&&y.signal.aborted)return h(new r.DOMException("Aborted","AbortError"));var m=new XMLHttpRequest;function ae(){m.abort()}m.onload=function(){var R={statusText:m.statusText,headers:xr(m.getAllResponseHeaders()||"")};y.url.indexOf("file://")===0&&(m.status<200||m.status>599)?R.status=200:R.status=m.status,R.url="responseURL"in m?m.responseURL:R.headers.get("X-Request-URL");var U="response"in m?m.response:m.responseText;setTimeout(function(){d(new A(U,R))},0)},m.onerror=function(){setTimeout(function(){h(new TypeError("Network request failed"))},0)},m.ontimeout=function(){setTimeout(function(){h(new TypeError("Network request timed out"))},0)},m.onabort=function(){setTimeout(function(){h(new r.DOMException("Aborted","AbortError"))},0)};function Ee(R){try{return R===""&&s.location.href?s.location.href:R}catch{return R}}if(m.open(y.method,Ee(y.url),!0),y.credentials==="include"?m.withCredentials=!0:y.credentials==="omit"&&(m.withCredentials=!1),"responseType"in m&&(a.blob?m.responseType="blob":a.arrayBuffer&&(m.responseType="arraybuffer")),i&&typeof i.headers=="object"&&!(i.headers instanceof f||s.Headers&&i.headers instanceof s.Headers)){var Ht=[];Object.getOwnPropertyNames(i.headers).forEach(function(R){Ht.push(O(R)),m.setRequestHeader(R,q(i.headers[R]))}),y.headers.forEach(function(R,U){Ht.indexOf(U)===-1&&m.setRequestHeader(U,R)})}else y.headers.forEach(function(R,U){m.setRequestHeader(U,R)});y.signal&&(y.signal.addEventListener("abort",ae),m.onreadystatechange=function(){m.readyState===4&&y.signal.removeEventListener("abort",ae)}),m.send(typeof y._bodyInit>"u"?null:y._bodyInit)})}return Re.polyfill=!0,s.fetch||(s.fetch=Re,s.Headers=f,s.Request=k,s.Response=A),r.Headers=f,r.Request=k,r.Response=A,r.fetch=Re,r}({})})(Se);Se.fetch.ponyfill=!0;delete Se.fetch.polyfill;var V=ye.fetch?ye:Se;G=V.fetch;G.default=V.fetch;G.fetch=V.fetch;G.Headers=V.Headers;G.Request=V.Request;G.Response=V.Response;rr.exports=G});var Fn={};u(Fn,{auth:()=>ze,authorization:()=>We,compute:()=>Gt,errors:()=>Fe,flows:()=>Et,gcs:()=>kt,groups:()=>_t,info:()=>Pe,logger:()=>De,search:()=>gt,timer:()=>Nt,transfer:()=>dt,webapp:()=>Ft});var Pe={};u(Pe,{CLIENT_INFO:()=>Wt,VERSION:()=>Kt,addClientInfo:()=>jr,getClientInfo:()=>Yt,getClientInfoRequestHeaders:()=>be});var $t="X-Globus-Client-Info",Gr=!0;function Bt(){return Gr}var Fr=";",qr=",";function zt(e){return(Array.isArray(e)?e:[e]).map(r=>Object.entries(r).map(([s,a])=>`${s}=${a}`).join(qr)).join(Fr)}var Vt="5.2.0";var Kt=Vt,Wt={product:"javascript-sdk",version:Kt},Oe=[Wt];function jr(e){Oe=Oe.concat(e)}function Yt(){return zt(Oe)}function be(){return Bt()?{[$t]:Yt()}:{}}var De={};u(De,{log:()=>_,setLogLevel:()=>Hr,setLogger:()=>Ur});var xe=["debug","info","warn","error"],ce,Qt=xe.indexOf("error");function Ur(e){ce=e}function Hr(e){Qt=xe.indexOf(e)}function _(e,...t){if(!ce||xe.indexOf(e)<Qt)return;(ce[e]??ce.log)(...t)}var We={};u(We,{AuthorizationManager:()=>ne,create:()=>ho});var H=class extends Error{};H.prototype.name="InvalidTokenError";function Jr(e){return decodeURIComponent(atob(e).replace(/(.)/g,(t,r)=>{let s=r.charCodeAt(0).toString(16).toUpperCase();return s.length<2&&(s="0"+s),"%"+s}))}function $r(e){let t=e.replace(/-/g,"+").replace(/_/g,"/");switch(t.length%4){case 0:break;case 2:t+="==";break;case 3:t+="=";break;default:throw new Error("base64 string is not of the correct length")}try{return Jr(t)}catch{return atob(t)}}function Xt(e,t){if(typeof e!="string")throw new H("Invalid token specified: must be a string");t||(t={});let r=t.header===!0?0:1,s=e.split(".")[r];if(typeof s!="string")throw new H(`Invalid token specified: missing part #${r+1}`);let a;try{a=$r(s)}catch(l){throw new H(`Invalid token specified: invalid base64 for part #${r+1} (${l.message})`)}try{return JSON.parse(a)}catch(l){throw new H(`Invalid token specified: invalid json for part #${r+1} (${l.message})`)}}var ze={};u(ze,{CONFIG:()=>$e,getAuthorizationEndpoint:()=>Be,getTokenEndpoint:()=>po,identities:()=>He,isGlobusAuthTokenResponse:()=>ve,isRefreshToken:()=>te,isToken:()=>K,oauth2:()=>F});var ge={};u(ge,{HOSTS:()=>Ne,ID:()=>S,RESOURCE_SERVERS:()=>Q,SCOPES:()=>B});var ue={};u(ue,{HOSTS:()=>Ae,ID:()=>p,SCOPES:()=>c});var p="TRANSFER",c={ALL:"urn:globus:auth:scope:transfer.api.globus.org:all"},Ae={sandbox:"transfer.api.sandbox.globuscs.info",production:"transfer.api.globusonline.org",staging:"transfer.api.staging.globuscs.info",integration:"transfer.api.integration.globuscs.info",test:"transfer.api.test.globuscs.info",preview:"transfer.api.preview.globus.org"};var de={};u(de,{HOSTS:()=>Me,ID:()=>T,SCOPES:()=>D});var T="FLOWS",Me={sandbox:"sandbox.flows.automate.globus.org",production:"flows.globus.org",staging:"staging.flows.automate.globus.org",integration:"integration.flows.automate.globus.org",test:"test.flows.automate.globus.org",preview:"preview.flows.automate.globus.org"},D={MANAGE_FLOWS:"https://auth.globus.org/scopes/eec9b274-0c81-4334-bdc2-54e90e689b9a/manage_flows",VIEW_FLOWS:"https://auth.globus.org/scopes/eec9b274-0c81-4334-bdc2-54e90e689b9a/view_flows",RUN:"https://auth.globus.org/scopes/eec9b274-0c81-4334-bdc2-54e90e689b9a/run",RUN_STATUS:"https://auth.globus.org/scopes/eec9b274-0c81-4334-bdc2-54e90e689b9a/run_status",RUN_MANAGE:"https://auth.globus.org/scopes/eec9b274-0c81-4334-bdc2-54e90e689b9a/run_manage"};var le={};u(le,{HOSTS:()=>we,ID:()=>L});var L="TIMER",we={sandbox:"sandbox.timer.automate.globus.org",production:"timer.automate.globus.org",staging:"staging.timer.automate.globus.org",integration:"integration.timer.automate.globus.org",test:"test.timer.automate.globus.org",preview:"preview.timer.automate.globus.org"};var me={};u(me,{HOSTS:()=>Ce,ID:()=>P,SCOPES:()=>N});var P="GROUPS",Ce={sandbox:"groups.api.sandbox.globuscs.info",production:"groups.api.globus.org",staging:"groups.api.staging.globuscs.info",integration:"groups.api.integration.globuscs.info",test:"groups.api.test.globuscs.info",preview:"groups.api.preview.globuscs.info"},N={ALL:"urn:globus:auth:scope:groups.api.globus.org:all",VIEW_MY:"urn:globus:auth:scope:groups.api.globus.org:view_my_groups_and_membership"};var he={};u(he,{HOSTS:()=>Le,ID:()=>v,SCOPES:()=>x});var v="SEARCH",Le={sandbox:"search.api.sandbox.globuscs.info",production:"search.api.globus.org",staging:"search.api.staging.globuscs.info",integration:"search.api.integration.globuscs.info",test:"search.api.test.globuscs.info",preview:"search.api.preview.globus.org"},x={ALL:"urn:globus:auth:scope:search.api.globus.org:all",INGEST:"urn:globus:auth:scope:search.api.globus.org:ingest",SEARCH:"urn:globus:auth:scope:search.api.globus.org:search"};var fe={};u(fe,{HOSTS:()=>ke,ID:()=>M,SCOPES:()=>Y});var M="COMPUTE",ke={sandbox:"compute.api.sandbox.globuscs.info",production:"compute.api.globus.org",staging:"compute.api.staging.globuscs.info",integration:"compute.api.integration.globuscs.info",test:"compute.api.test.globuscs.info",preview:"compute.api.preview.globus.org"},Y={ALL:"https://auth.globus.org/scopes/facd7ccc-c5f4-42aa-916b-a0e270e2c2a9/all"};var S="AUTH",Ne={integration:"auth.integration.globuscs.info",sandbox:"auth.sandbox.globuscs.info",production:"auth.globus.org",test:"auth.test.globuscs.info",staging:"auth.staging.globuscs.info",preview:"auth.preview.globus.org"},B={VIEW_IDENTITIES:"urn:globus:auth:scope:auth.globus.org:view_identities"},Q={[S]:"auth.globus.org",[p]:"transfer.api.globus.org",[T]:"flows.globus.org",[P]:"groups.api.globus.org",[v]:"search.api.globus.org",[L]:"524230d7-ea86-4a52-8312-86065a9e0417",[M]:"funcx_service"};var Fe={};u(Fe,{EnvironmentConfigurationError:()=>X,isAuthorizationRequirementsError:()=>Z,isConsentRequiredError:()=>Ie,isErrorWellFormed:()=>Zt,toAuthorizationQueryParams:()=>Ge});var X=class extends Error{name="EnvironmentConfigurationError";constructor(t,r){super(),this.message=`Invalid configuration value provided for ${t} (${r}).`}};function Zt(e){return typeof e=="object"&&e!==null&&"code"in e&&"message"in e}function Ie(e){return Zt(e)&&e.code==="ConsentRequired"&&"required_scopes"in e&&Array.isArray(e.required_scopes)}var Br=["required_scopes"];function Ge(e){let t={scope:e.authorization_parameters.required_scopes?.join(" "),...e.authorization_parameters};return Object.entries(t).reduce((r,[s,a])=>{if(Br.includes(s)||a===void 0||a===null)return r;let l=a;return Array.isArray(l)?l=l.join(","):typeof a=="boolean"&&(l=l?"true":"false"),{...r,[s]:l}},{})}function Z(e){return typeof e=="object"&&e!==null&&"authorization_parameters"in e&&typeof e.authorization_parameters=="object"&&e.authorization_parameters!==null}function zr(){return typeof window<"u"?window:process}function Vr(e){return typeof window==typeof e}function qe(e,t){let r=zr(),s;return Vr(r)?s=r:s=r.env,e in s?s[e]:t}var er={PRODUCTION:"production",PREVIEW:"preview",STAGING:"staging",SANDBOX:"sandbox",INTEGRATION:"integration",TEST:"test"},I={[S]:S,[p]:p,[T]:T,[P]:P,[v]:v,[L]:L,[M]:M},Kr={[S]:Ne,[p]:Ae,[T]:Me,[P]:Ce,[v]:Le,[L]:we,[M]:ke};function je(e){let t=qe("GLOBUS_SDK_OPTIONS",{});return typeof t=="string"&&(t=JSON.parse(t)),{...t,...e,fetch:{...t?.fetch,...e?.fetch,options:{...t?.fetch?.options,...e?.fetch?.options,headers:{...t?.fetch?.options?.headers,...e?.fetch?.options?.headers}}}}}function z(){let e=je(),t=qe("GLOBUS_SDK_ENVIRONMENT",e?.environment??er.PRODUCTION);if(e?.environment&&t!==e.environment&&_("debug","GLOBUS_SDK_ENVIRONMENT and GLOBUS_SDK_OPTIONS.environment are set to different values. GLOBUS_SDK_ENVIRONMENT will take precedence"),!t||!Object.values(er).includes(t))throw new X("GLOBUS_SDK_ENVIRONMENT",t);return t}function Wr(e,t=z()){return Kr[e][t]}function tr(e,t=z()){let r=Wr(e,t);return qe(`GLOBUS_SDK_SERVICE_URL_${e}`,r?`https://${r}`:void 0)}function Yr(e){let t=new URLSearchParams;return Array.from(Object.entries(e)).forEach(([r,s])=>{Array.isArray(s)?t.set(r,s.join(",")):s!==void 0&&t.set(r,String(s))}),t.toString()}function Qr(e,t="",r=z()){let s=tr(e,r);return new URL(t,s)}function ee(e,t,r,s){let a;return typeof e=="object"?a=new URL(t,e.host):a=Qr(e,t,s?.environment),r&&r.search&&(a.search=Yr(r.search)),a.toString()}var He={};u(He,{consents:()=>Ue,get:()=>Zr,getAll:()=>eo});var sr=Nr(or());async function o(e,t,r){let s=je(r),a=s?.fetch?.options||{},l={...be(),...t?.headers,...a.headers},b=s?.manager,E;if(e.resource_server&&b&&(E=b.tokens.getByResourceServer(e.resource_server),E&&(l.Authorization=`Bearer ${E.access_token}`)),e.scope&&b&&(typeof e.service=="string"||"endpoint_id"in e.service)){let j=typeof e.service=="string"?Q[e.service]:e.service.endpoint_id;E=b.tokens.getByResourceServer(j),E&&(l.Authorization=`Bearer ${E.access_token}`)}let O=t?.body;!O&&t?.payload&&(O=JSON.stringify(t.payload)),!l?.["Content-Type"]&&O&&(l["Content-Type"]="application/json");let q=ee(e.service,e.path,{search:t?.query},s),C={method:e.method,body:O,...a,headers:l},f=sr.default;if(a?.__callable&&(f=a.__callable.bind(this),delete C.__callable),e.preventRetry||!b||!E||!te(E))return f(q,C);let w=await f(q,C);if(w.ok)return w;let $;try{$=Z(await w.clone().json())}catch{$=!1}if(w.status===401&&!$){let j=await b.refreshToken(E);return j?f(q,{...C,headers:{...C.headers,Authorization:`Bearer ${j.access_token}`}}):w}return w}var Ue={};u(Ue,{getAll:()=>Xr});var Xr=function(e,t={},r){return o({service:S,scope:B.VIEW_IDENTITIES,path:`/identities/${e}/consents`},t,r)};var Zr=function(e,t={},r){return o({service:S,scope:B.VIEW_IDENTITIES,path:`/identities/${e}`},t,r)},eo=function(e={},t){return o({service:S,scope:B.VIEW_IDENTITIES,path:"/identities"},e,t)};var F={};u(F,{token:()=>Je,userinfo:()=>ao});var Je={};u(Je,{exchange:()=>ro,introspect:()=>oo,refresh:()=>no,revoke:()=>so,token:()=>nr,validate:()=>io});function to(e){return new URLSearchParams(e)}function re(e){return{...e,body:e.payload?to(e.payload):void 0,headers:{...e?.headers||{},Accept:"application/json","Content-Type":"application/x-www-form-urlencoded; charset=UTF-8"}}}var nr=function(e={},t){return o({service:S,scope:void 0,path:"/v2/oauth2/token",method:"POST",preventRetry:!0},re(e),t)},ro=nr,oo=function(e,t){if(!e?.payload)throw new Error("'payload' is required for introspect");return o({service:S,scope:void 0,path:"/v2/oauth2/token/introspect",method:"POST",preventRetry:!0},re(e),t)},so=function(e,t){if(!e?.payload)throw new Error("'payload' is required for revoke");return o({service:S,scope:void 0,path:"/v2/oauth2/token/revoke",method:"POST",preventRetry:!0},re(e),t)},no=function(e,t){if(!e?.payload)throw new Error("'payload' is required for revoke");return o({service:S,scope:void 0,path:"/v2/oauth2/token",method:"POST",preventRetry:!0},re(e),t)},io=function(e,t){if(!e?.payload)throw new Error("'payload' is required for validate");return o({service:S,scope:void 0,path:"/v2/oauth2/token/validate",method:"POST",preventRetry:!0},re(e),t)};var ao=function(e,t){return o({service:S,scope:void 0,path:"/v2/oauth2/userinfo",method:"GET"},e,t)};var $e=ge;function Be(){return ee(S,"/v2/oauth2/authorize")}function po(){return ee(S,"/v2/oauth2/token")}function K(e){return typeof e=="object"&&e!==null&&"access_token"in e}function te(e){return K(e)&&e!==null&&"refresh_token"in e}function ve(e){return K(e)&&e!==null&&"resource_server"in e}var oe=class{constructor(t){this.name=t}#e=[];addListener(t){return this.#e.push(t),()=>this.removeListener(t)}removeListener(t){this.#e=this.#e.filter(r=>r!==t)}clearListeners(){this.#e=[]}async dispatch(t){await Promise.all(this.#e.map(r=>r(t)))}};function ar(){return"crypto"in globalThis}function Ke(){return"webcrypto"in globalThis.crypto?globalThis.crypto.webcrypto:globalThis.crypto}var co=e=>btoa(e).replace(/\+/g,"-").replace(/\//g,"_").replace(/=+$/,"");async function uo(e){let t=await Ke().subtle.digest("SHA-256",new TextEncoder().encode(e));return String.fromCharCode(...new Uint8Array(t))}var Ve="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789",ir=`${Ve}-._~`;function pr(){return Array.from(Ke().getRandomValues(new Uint8Array(43))).map(e=>ir[e%ir.length]).join("")}async function cr(e){let t=await uo(e);return co(t)}function ur(){return Array.from(Ke().getRandomValues(new Uint8Array(16))).map(e=>Ve[e%Ve.length]).join("")}var W={PKCE_STATE:"pkce_state",PKCE_CODE_VERIFIER:"pkce_code_verifier"};function lo(){sessionStorage.removeItem(W.PKCE_STATE),sessionStorage.removeItem(W.PKCE_CODE_VERIFIER)}var _e=class e{#e;constructor(t){if(this.#e=t,e.supported===!1)throw new Error("RedirectTransport is not supported in this environment.")}static supported=ar();async send(){let t=pr(),r=await cr(t),s=this.#e.params?.state??ur();sessionStorage.setItem(W.PKCE_CODE_VERIFIER,t),sessionStorage.setItem(W.PKCE_STATE,s);let a={response_type:"code",client_id:this.#e.client,scope:this.#e.scopes||"",redirect_uri:this.#e.redirect,state:s,code_challenge:r,code_challenge_method:"S256",...this.#e.params||{}},l=new URL(Be());l.search=new URLSearchParams(a).toString(),window.location.assign(l.toString())}async getToken(t={shouldReplace:!0}){let r=new URL(window.location.href),s=new URLSearchParams(r.search);if(s.get("error"))throw new Error(s.get("error_description")||"An error occurred during the authorization process.");let a=s.get("code");if(!a)return;let l=sessionStorage.getItem(W.PKCE_STATE),b=sessionStorage.getItem(W.PKCE_CODE_VERIFIER);if(lo(),s.get("state")!==l)throw new Error('Invalid State. The received "state" parameter does not match the expected state.');if(!b)throw new Error("Invalid Code Verifier");let E={code:a,client_id:this.#e.client,code_verifier:b,redirect_uri:this.#e.redirect,grant_type:"authorization_code"},O=await(await F.token.exchange({payload:E})).json();return t.shouldReplace&&(s.delete("code"),s.delete("state"),r.search=s.toString(),window.location.replace(r)),O}};var Te=class{#e;constructor(t){this.#e=t.manager}#r(t){let r=this.#e.storage.getItem(t)||"null",s=null;try{let a=JSON.parse(r);K(a)&&(s=a)}catch{}return s}#t(t){let r=$e.RESOURCE_SERVERS?.[t];return this.getByResourceServer(r)}getByResourceServer(t){return this.#r(`${this.#e.storageKeyPrefix}${t}`)}get auth(){return this.#t(I.AUTH)}get transfer(){return this.#t(I.TRANSFER)}get flows(){return this.#t(I.FLOWS)}get groups(){return this.#t(I.GROUPS)}get search(){return this.#t(I.SEARCH)}get timer(){return this.#t(I.TIMER)}get compute(){return this.#t(I.COMPUTE)}gcs(t){return this.getByResourceServer(t)}getAll(){return Object.keys(this.#e.storage).reduce((r,s)=>(s.startsWith(this.#e.storageKeyPrefix)&&r.push(this.#r(s)),r),[]).filter(K)}add(t){let r=Date.now(),s=r+t.expires_in*1e3;this.#e.storage.setItem(`${this.#e.storageKeyPrefix}${t.resource_server}`,JSON.stringify({...t,__metadata:{created:r,expires:s}})),"other_tokens"in t&&t.other_tokens?.forEach(a=>{this.add(a)})}static isTokenExpired(t,r=0){if(!(!t||!t.__metadata||typeof t.__metadata.expires!="number"))return Date.now()+r>=t.__metadata.expires}};var se=class{#e={};getItem(t){return this.#e[t]!==void 0?this.#e[t]:null}setItem(t,r){this.#e[t]=r}removeItem(t){delete this.#e[t]}key(t){return Object.keys(this.#e)[t]}clear(){this.#e={}}get length(){return Object.keys(this.#e).length}};var mo={redirect:_e},dr={useRefreshTokens:!1,defaultScopes:"openid profile email",transport:"redirect"},lr={execute:!0,additionalParams:void 0},ne=class{#e;configuration;storage;#r=!1;get authenticated(){return this.#r}set authenticated(t){t!==this.#r&&(this.#r=t,this.#n())}tokens;events={authenticated:new oe("authenticated"),revoke:new oe("revoke")};constructor(t){if(!t.client)throw new Error("You must provide a `client` for your application.");let r=t.defaultScopes===!1?"":t.defaultScopes??dr.defaultScopes;this.configuration={...dr,...t,scopes:[t.scopes?t.scopes:"",r].filter(s=>s.length).join(" ")},this.storage=t.storage||new se,this.configuration.events&&Object.entries(this.configuration.events).forEach(([s,a])=>{s in this.events&&this.events[s].addListener(a)}),this.tokens=new Te({manager:this}),this.#t()}get storageKeyPrefix(){return`${this.configuration.client}:`}get user(){let t=this.getGlobusAuthToken();return t&&t.id_token?Xt(t.id_token):null}async refreshTokens(){_("debug","AuthorizationManager.refreshTokens");let t=await Promise.allSettled(this.tokens.getAll().map(r=>te(r)?this.refreshToken(r):Promise.resolve(null)));return this.#t(),t}async refreshToken(t){_("debug",`AuthorizationManager.refreshToken | resource_server=${t.resource_server}`);try{let r=await(await F.token.refresh({payload:{client_id:this.configuration.client,refresh_token:t.refresh_token,grant_type:"refresh_token"}})).json();if(ve(r))return this.addTokenResponse(r),r}catch{_("error",`AuthorizationManager.refreshToken | resource_server=${t.resource_server}`)}return null}hasGlobusAuthToken(){return this.getGlobusAuthToken()!==null}getGlobusAuthToken(){let t=this.storage.getItem(`${this.storageKeyPrefix}${Q.AUTH}`);return t?JSON.parse(t):null}#t(){_("debug","AuthorizationManager.#checkAuthorizationState"),this.hasGlobusAuthToken()&&(this.authenticated=!0)}async#n(){let t=this.authenticated,r=this.getGlobusAuthToken()??void 0;await this.events.authenticated.dispatch({isAuthenticated:t,token:r})}reset(){Object.keys(this.storage).forEach(t=>{t.startsWith(this.storageKeyPrefix)&&this.storage.removeItem(t)}),this.authenticated=!1}#s(t){return`${t}${this.configuration.useRefreshTokens?" offline_access":""}`}#o(t){let{scopes:r,...s}=t??{},a=mo[this.configuration.transport||"redirect"],l=this.#s(r??(this.configuration.scopes||""));return this.storage instanceof se&&(l=[...new Set(l.split(" ").concat((this.configuration?.scopes||"").split(" ")))].join(" ")),new a({client:this.configuration.client,redirect:this.configuration.redirect,scopes:l,...s,params:{...s?.params}})}async login(t={additionalParams:{}}){_("debug","AuthorizationManager.login"),this.reset(),await this.#o({params:t?.additionalParams}).send()}async prompt(t){_("debug","AuthorizationManager.prompt"),await this.#o(t).send()}async handleCodeRedirect(t={shouldReplace:!0,additionalParams:{}}){_("debug","AuthorizationManager.handleCodeRedirect");let r=await this.#o({params:t?.additionalParams}).getToken({shouldReplace:t?.shouldReplace});return ve(r)&&(_("debug",`AuthorizationManager.handleCodeRedirect | response=${JSON.stringify(r)}`),this.addTokenResponse(r)),r}async handleErrorResponse(t,r){let s=typeof r=="boolean"?{...lr,execute:r}:{...lr,...r};_("debug",`AuthorizationManager.handleErrorResponse | response=${JSON.stringify(t)} execute=${s.execute}`);let a=async()=>{};return Z(t)&&(_("debug","AuthorizationManager.handleErrorResponse | error=AuthorizationRequirementsError"),a=async()=>{await this.handleAuthorizationRequirementsError(t,{additionalParams:s.additionalParams})}),Ie(t)&&(_("debug","AuthorizationManager.handleErrorResponse | error=ConsentRequiredError"),a=async()=>{await this.handleConsentRequiredError(t,{additionalParams:s.additionalParams})}),"code"in t&&t.code==="AuthenticationFailed"&&(_("debug","AuthorizationManager.handleErrorResponse | error=AuthenticationFailed"),a=async()=>{await this.revoke()}),s.execute===!0?await a():a}async handleAuthorizationRequirementsError(t,r){this.#e=this.#o({params:{prompt:"login",...Ge(t),...r?.additionalParams}}),await this.#e.send()}async handleConsentRequiredError(t,r){this.#e=this.#o({scopes:this.#s(t.required_scopes.join(" ")),params:{...r?.additionalParams}}),await this.#e.send()}addTokenResponse=t=>{this.tokens.add(t),this.#t()};async revoke(){_("debug","AuthorizationManager.revoke");let t=Promise.all(this.tokens.getAll().map(this.#i.bind(this)));this.reset(),await t,await this.events.revoke.dispatch()}#i(t){return _("debug",`AuthorizationManager.revokeToken | resource_server=${t.resource_server}`),F.token.revoke({payload:{client_id:this.configuration.client,token:t.access_token}})}};function ho(e){return new ne(e)}var dt={};u(dt,{CONFIG:()=>fs,access:()=>et,collectionBookmarks:()=>tt,endpoint:()=>Xe,endpointManager:()=>nt,endpointSearch:()=>mr,fileOperations:()=>Ye,task:()=>Ze,taskSubmission:()=>Qe,utils:()=>ut});var mr=function(e,t){let r={...e,query:e?.query};return o({service:p,scope:c.ALL,path:"/v0.10/endpoint_search"},r,t)};var Ye={};u(Ye,{ls:()=>fo,mkdir:()=>go,rename:()=>yo,stat:()=>vo,symlink:()=>So});function J(e){return e==="GET"?{}:{"Content-Type":"application/json"}}var fo=function(e,t,r){return o({service:p,scope:c.ALL,path:`/v0.10/operation/endpoint/${e}/ls`},t,r)},go=function(e,t,r){let s={payload:{DATA_TYPE:"mkdir",...t?.payload},headers:{...J("POST"),...t?.headers}};return o({service:p,scope:c.ALL,path:`/v0.10/operation/endpoint/${e}/mkdir`,method:"POST"},s,r)},yo=function(e,t,r){let s={payload:{DATA_TYPE:"rename",...t?.payload},headers:{...J("POST"),...t?.headers}};return o({service:p,scope:c.ALL,path:`/v0.10/operation/endpoint/${e}/rename`,method:"POST"},s,r)},So=function(e,t,r){let s={payload:{DATA_TYPE:"symlink",...t?.payload},headers:{...J("POST"),...t?.headers}};return o({service:p,scope:c.ALL,path:`/v0.10/operation/endpoint/${e}/symlink`,method:"POST"},s,r)},vo=function(e,t,r){return o({service:p,scope:c.ALL,path:`/v0.10/operation/endpoint/${e}/stat`},t,r)};var Qe={};u(Qe,{submissionId:()=>Ro,submitDelete:()=>_o,submitTransfer:()=>To});var _o=function(e,t){let r={payload:{DATA_TYPE:"delete",...e?.payload},headers:{...J("POST"),...e?.headers}};return o({service:p,scope:c.ALL,path:"/v0.10/delete",method:"POST"},r,t)},To=function(e,t){let r={payload:{DATA_TYPE:"transfer",...e?.payload},headers:{...J("POST"),...e?.headers}};return o({service:p,scope:c.ALL,path:"/v0.10/transfer",method:"POST"},r,t)},Ro=function(e,t){return o({service:p,scope:c.ALL,path:"/v0.10/submission_id"},e,t)};var Xe={};u(Xe,{create:()=>Oo,get:()=>Eo,remove:()=>Po,update:()=>bo});var Eo=function(e,t,r){return o({service:p,scope:c.ALL,path:`/v0.10/endpoint/${e}`},t,r)},Oo=function(e,t){return e?.payload&&Object.assign(e.payload,{DATA_TYPE:"shared_endpoint"}),o({service:p,scope:c.ALL,path:"/v0.10/shared_endpoint",method:"POST"},e,t)},bo=function(e,t,r){return t?.payload&&Object.assign(t.payload,{DATA_TYPE:"endpoint"}),o({service:p,scope:c.ALL,path:`/v0.10/endpoint/${e}`,method:"PUT"},t,r)},Po=function(e,t,r){return o({service:p,scope:c.ALL,path:`/v0.10/endpoint/${e}`,method:"DELETE"},t,r)};var Ze={};u(Ze,{cancel:()=>Mo,get:()=>Do,getAll:()=>xo,getEventList:()=>Co,getPauseInfo:()=>No,getSkippedErrors:()=>ko,getSuccessfulTransfers:()=>Lo,remove:()=>wo,update:()=>Ao});var xo=function(e={},t){return o({service:p,scope:c.ALL,path:"/v0.10/task_list"},e,t)},Do=function(e,t,r){return o({service:p,scope:c.ALL,path:`/v0.10/task/${e}`},t,r)},Ao=function(e,t,r){return o({service:p,scope:c.ALL,path:`/v0.10/task/${e}`,method:"PUT"},t,r)},Mo=function(e,t,r){return o({service:p,scope:c.ALL,path:`/v0.10/task/${e}/cancel`,method:"POST"},t,r)},wo=function(e,t,r){return o({service:p,scope:c.ALL,path:`/v0.10/task/${e}/remove`,method:"POST"},t,r)},Co=function(e,t,r){return o({service:p,scope:c.ALL,path:`/v0.10/task/${e}/event_list`},t,r)},Lo=function(e,t,r){return o({service:p,scope:c.ALL,path:`/v0.10/task/${e}/successful_transfers`},t,r)},ko=function(e,t,r){return o({service:p,scope:c.ALL,path:`/v0.10/task/${e}/skipped_errors`},t,r)},No=function(e,t,r){return o({service:p,scope:c.ALL,path:`/v0.10/task/${e}/pause_info`},t,r)};var et={};u(et,{create:()=>Go,get:()=>Fo,getAll:()=>Io,remove:()=>jo,update:()=>qo});var Io=function(e,t,r){return o({service:p,scope:c.ALL,path:`/v0.10/endpoint/${e}/access_list`},t,r)},Go=function(e,t,r){return o({service:p,scope:c.ALL,path:`/v0.10/endpoint/${e}/access`,method:"POST"},t,r)},Fo=function({endpoint_xid:e,id:t},r,s){return o({service:p,scope:c.ALL,path:`/v0.10/endpoint/${e}/access/${t}`},r,s)},qo=function({endpoint_xid:e,id:t},r,s){return o({service:p,scope:c.ALL,path:`/v0.10/endpoint/${e}/access/${t}`,method:"PUT"},r,s)},jo=function({endpoint_xid:e,id:t},r,s){return o({service:p,scope:c.ALL,path:`/v0.10/endpoint/${e}/access/${t}`,method:"DELETE"},r,s)};var tt={};u(tt,{create:()=>Ho,get:()=>Jo,getAll:()=>Uo,remove:()=>Bo,update:()=>$o});var Uo=function(e,t){return o({service:p,scope:c.ALL,path:"/v0.10/bookmark_list"},e,t)},Ho=function(e,t){return o({service:p,scope:c.ALL,path:"/v0.10/bookmark",method:"POST"},e,t)},Jo=function(e,t,r){return o({service:p,scope:c.ALL,path:`/v0.10/bookmark/${e}`},t,r)},$o=function(e,t,r){return o({service:p,scope:c.ALL,path:`/v0.10/bookmark/${e}`,method:"PUT"},t,r)},Bo=function(e,t,r){return o({service:p,scope:c.ALL,path:`/v0.10/bookmark/${e}`,method:"DELETE"},t,r)};var nt={};u(nt,{endpoint:()=>rt,pauseRule:()=>ot,task:()=>st});var rt={};u(rt,{get:()=>zo,getAccessList:()=>Ko,getHostedEndpoints:()=>Vo,getMonitoredEndpoints:()=>Wo});var zo=function(e,t,r){return o({service:p,scope:c.ALL,path:`/v0.10/endpoint_manager/endpoint/${e}`},t,r)},Vo=function(e,t,r){return o({service:p,scope:c.ALL,path:`/v0.10/endpoint_manager/endpoint/${e}/hosted_endpoint_list`},t,r)},Ko=function(e,t,r){return o({service:p,scope:c.ALL,path:`/v0.10/endpoint_manager/endpoint/${e}/access_list`},t,r)},Wo=function(e={},t){return o({service:p,scope:c.ALL,path:"/v0.10/endpoint_manager/monitored_endpoints"},e,t)};var ot={};u(ot,{create:()=>Qo,get:()=>Xo,getAll:()=>Yo,remove:()=>es,update:()=>Zo});var Yo=function(e,t){return o({service:p,scope:c.ALL,path:"/v0.10/endpoint_manager/pause_rule_list"},e,t)},Qo=function(e,t){return o({service:p,scope:c.ALL,path:"/v0.10/endpoint_manager/pause_rule",method:"POST"},e,t)},Xo=function(e,t,r){return o({service:p,scope:c.ALL,path:`/v0.10/endpoint_manager/pause_rule/${e}`},t,r)},Zo=function(e,t,r){return o({service:p,scope:c.ALL,path:`/v0.10/endpoint_manager/pause_rule/${e}`,method:"PUT"},t,r)},es=function(e,t,r){return o({service:p,scope:c.ALL,path:`/v0.10/endpoint_manager/pause_rule/${e}`,method:"DELETE"},t,r)};var st={};u(st,{cancel:()=>os,get:()=>rs,getAdminCancel:()=>ss,getAll:()=>ts,getEventList:()=>ns,getPauseInfo:()=>us,getSkippedErrors:()=>as,getSuccessfulTransfers:()=>is,pause:()=>ps,resume:()=>cs});var ts=function(e={},t){return o({service:p,scope:c.ALL,path:"/v0.10/task_list"},e,t)},rs=function(e,t,r){return o({service:p,scope:c.ALL,path:`/v0.10/endpoint_manager/task/${e}`},t,r)},os=function(e,t){return o({service:p,scope:c.ALL,path:"/v0.10/endpoint_manager/admin_cancel",method:"POST"},e,t)},ss=function(e,t,r){return o({service:p,scope:c.ALL,path:`/v0.10/endpoint_manager/admin_cancel/${e}`,method:"POST"},t,r)},ns=function(e,t,r){return o({service:p,scope:c.ALL,path:`/v0.10/endpoint_manager/task/${e}/event_list`},t,r)},is=function(e,t,r){return o({service:p,scope:c.ALL,path:`/v0.10/endpoint_manager/task/${e}/successful_transfers`},t,r)},as=function(e,t,r){return o({service:p,scope:c.ALL,path:`/v0.10/endpoint_manager/task/${e}/skipped_errors`},t,r)},ps=function(e,t){return o({service:p,scope:c.ALL,path:"/v0.10/endpoint_manager/admin_pause",method:"POST"},e,t)},cs=function(e,t){return o({service:p,scope:c.ALL,path:"/v0.10/endpoint_manager/admin_resume",method:"POST"},e,t)},us=function(e,t,r){return o({service:p,scope:c.ALL,path:`/v0.10/endpoint_manager/task/${e}/pause_info`},t,r)};var ut={};u(ut,{getDomainFromEndpoint:()=>hs,isDirectory:()=>ds,isFileDocument:()=>fr,readableBytes:()=>ls});function fr(e){return typeof e=="object"&&e!==null&&"DATA_TYPE"in e&&e.DATA_TYPE==="file"}function ds(e){return fr(e)&&e.type==="dir"}var it=1e3,at=it*1e3,pt=at*1e3,ct=pt*1e3,hr=ct*1e3;function ls(e,t=2){let r="B",s=1;if(e<it)return`${e} ${r}`;e<at?(r="KB",s=it):e<pt?(r="MB",s=at):e<ct?(r="GB",s=pt):e<hr?(r="TB",s=ct):(r="PB",s=hr);let a=e/s,[l,b]=`${a}`.split("."),E=`${l}`;if(b&&b.length){let O=b.slice(0,t);O.length&&(E=`${l}.${O}`)}return`${E} ${r}`}var ms=["dnsteam.globuscs.info","data.globus.org","dn.glob.us"];function hs(e){let{tlsftp_server:t}=e;if(!t||typeof t!="string")return null;let{hostname:r}=new URL(t.replace("tlsftp","https"));return!ms.find(l=>r.endsWith(l))&&/(?:[gm]-\w{6}.)?(\w+(\.\w+)+)$/.exec(r)?.[1]||r||null}var fs=ue;var gt={};u(gt,{CONFIG:()=>Ps,entry:()=>ht,index:()=>ft,query:()=>lt,subject:()=>mt});var lt={};u(lt,{get:()=>gs,post:()=>ys});var gs=function(e,t,r){return o({service:v,scope:x.SEARCH,path:`/v1/index/${e}/search`},t,r)},ys=function(e,t,r){return o({service:v,scope:x.SEARCH,path:`/v1/index/${e}/search`,method:"POST"},t,r)};var mt={};u(mt,{get:()=>Ss});var Ss=function(e,t,r){return o({service:v,scope:x.SEARCH,path:`/v1/index/${e}/subject`},t,r)};var ht={};u(ht,{get:()=>vs});var vs=function(e,t,r){return o({service:v,scope:x.SEARCH,path:`/v1/index/${e}/entry`},t,r)};var ft={};u(ft,{create:()=>Rs,get:()=>_s,getAll:()=>Ts,ingest:()=>bs,remove:()=>Es,reopen:()=>Os});var _s=function(e,t,r){return o({service:v,path:`/v1/index/${e}`},t,r)},Ts=function(e,t){return o({service:v,scope:x.ALL,path:"/v1/index_list"},e,t)},Rs=function(e,t){return o({service:v,scope:x.ALL,path:"/v1/index",method:"POST"},e,t)},Es=function(e,t,r){return o({service:v,scope:x.ALL,path:`/v1/index/${e}`,method:"DELETE"},t,r)},Os=function(e,t,r){return o({service:v,scope:x.ALL,path:`/v1/index/${e}/reopen`,method:"POST"},t,r)},bs=function(e,t,r){return o({service:v,scope:x.ALL,path:`/v1/index/${e}/ingest`,method:"POST"},t,r)};var Ps=he;var _t={};u(_t,{CONFIG:()=>ws,groups:()=>yt,membership:()=>vt,policies:()=>St});var yt={};u(yt,{get:()=>Ds,getMyGroups:()=>xs});var xs=function(e,t){return o({scope:N.ALL,path:"/v2/groups/my_groups",service:P},e,t)},Ds=function(e,t,r){return o({service:P,scope:N.ALL,path:`/v2/groups/${e}`},t,r)};var St={};u(St,{get:()=>As});var As=function(e,t,r){return o({scope:N.ALL,path:`/v2/groups/${e}/policies`,service:P},t,r)};var vt={};u(vt,{act:()=>Ms});var Ms=function(e,t,r){if(!t?.payload)throw new Error("payload is required.");return o({service:P,scope:N.ALL,path:`/v2/groups/${e}`,method:"POST"},t,r)};var ws=me;var Et={};u(Et,{CONFIG:()=>Us,flows:()=>Tt,runs:()=>Rt});var Tt={};u(Tt,{create:()=>gr,deploy:()=>Gs,get:()=>Ls,getAll:()=>Cs,remove:()=>ks,run:()=>Ns,validate:()=>Is});var Cs=function(e,t){return o({service:T,scope:D.VIEW_FLOWS,path:"/flows"},e,t)},Ls=function(e,t,r){return o({service:T,scope:D.VIEW_FLOWS,path:`/flows/${e}`},t,r)},ks=function(e,t,r){return o({scope:D.MANAGE_FLOWS,service:T,path:`/flows/${e}`,method:"DELETE"},t,r)},Ns=function(e,t,r){return o({service:T,scope:D.VIEW_FLOWS,path:`/flows/${e}/run`,method:"POST"},t,r)},Is=function(e,t){return o({service:T,scope:D.MANAGE_FLOWS,path:"/flows/validate",method:"POST"},e,t)},gr=function(e,t){return o({service:T,scope:D.MANAGE_FLOWS,path:"/flows",method:"POST"},e,t)},Gs=gr;var Rt={};u(Rt,{cancel:()=>qs,getAll:()=>Fs,getLog:()=>js});var Fs=function(e={},t){return o({service:T,scope:D.RUN_MANAGE,path:"/runs"},e,t)},qs=function(e,t,r){return o({service:T,scope:D.RUN_MANAGE,path:`/runs/${e}/cancel`,method:"POST"},t,r)},js=function(e,t,r){return o({service:T,scope:D.RUN_MANAGE,path:`/runs/${e}/log`},t,r)};var Us=de;var kt={};u(kt,{collections:()=>Ot,endpoint:()=>bt,getScopes:()=>Mn,https:()=>Pt,nodes:()=>xt,roles:()=>Dt,storageGateways:()=>At,userCredentials:()=>Mt,utils:()=>Lt,versioning:()=>Ct});var Ot={};u(Ot,{create:()=>Bs,get:()=>Js,getAll:()=>Hs,patch:()=>Vs,remove:()=>$s,resetOwnerString:()=>Ws,update:()=>zs,updateOwnerString:()=>Ks});var Hs=function(e,t,r){return o({service:e,resource_server:e.endpoint_id,path:"/api/collections"},t,r)},Js=function(e,t,r,s){return o({service:e,resource_server:e.endpoint_id,path:`/api/collections/${t}`},r,s)},$s=function(e,t,r,s){return o({service:e,resource_server:e.endpoint_id,path:`/api/collections/${t}`,method:"DELETE"},r,s)},Bs=function(e,t,r){return o({service:e,resource_server:e.endpoint_id,path:"/api/collections",method:"POST"},t,r)},zs=function(e,t,r,s){return o({service:e,resource_server:e.endpoint_id,path:`/api/collections/${t}`,method:"PUT"},r,s)},Vs=function(e,t,r,s){return o({service:e,resource_server:e.endpoint_id,path:`/api/collections/${t}`,method:"PATCH"},r,s)},Ks=function(e,t,r,s){return o({service:e,resource_server:e.endpoint_id,path:`/api/collections/${t}/owner_string`,method:"PUT"},r,s)},Ws=function(e,t,r,s){return o({service:e,resource_server:e.endpoint_id,path:`/api/collections/${t}/owner_string`,method:"DELETE"},r,s)};var bt={};u(bt,{get:()=>Ys,patch:()=>Xs,resetOwnerString:()=>rn,update:()=>Qs,updateOwner:()=>en,updateOwnerString:()=>tn,updateSubscriptionId:()=>Zs});var Ys=function(e,t,r){return o({service:e,resource_server:e.endpoint_id,path:"/api/endpoint"},t,r)},Qs=function(e,t,r){return o({service:e,resource_server:e.endpoint_id,path:"/api/endpoint",method:"PUT"},t,r)},Xs=function(e,t,r){return o({service:e,resource_server:e.endpoint_id,path:"/api/endpoint",method:"PATCH"},t,r)},Zs=function(e,t,r){return o({service:e,resource_server:e.endpoint_id,path:"/api/endpoint/subscription_id",method:"PUT"},t,r)},en=function(e,t,r){return o({service:e,resource_server:e.endpoint_id,path:"/api/endpoint/owner",method:"PUT"},t,r)},tn=function(e,t,r){return o({service:e,resource_server:e.endpoint_id,path:"/api/endpoint/owner_string",method:"PUT"},t,r)},rn=function(e,t,r){return o({service:e,resource_server:e.endpoint_id,path:"/api/endpoint/owner_string",method:"DELETE"},t,r)};var Pt={};u(Pt,{get:()=>on,remove:()=>sn,update:()=>nn});var on=function(e,t,r,s){return o({service:e,resource_server:e.endpoint_id,path:t},r,s)},sn=function(e,t,r,s){return o({service:e,resource_server:e.endpoint_id,path:t,method:"DELETE"},r,s)},nn=function(e,t,r,s){return o({service:e,resource_server:e.endpoint_id,path:t,method:"PUT"},r,s)};var xt={};u(xt,{create:()=>un,get:()=>pn,getAll:()=>an,patch:()=>ln,remove:()=>cn,update:()=>dn});var an=function(e,t,r){return o({service:e,resource_server:e.endpoint_id,path:"/api/nodes"},t,r)},pn=function(e,t,r,s){return o({service:e,resource_server:e.endpoint_id,path:`/api/nodes/${t}`},r,s)},cn=function(e,t,r,s){return o({service:e,resource_server:e.endpoint_id,path:`/api/nodes/${t}`,method:"DELETE"},r,s)},un=function(e,t,r){return o({service:e,resource_server:e.endpoint_id,path:"/api/nodes",method:"POST"},t,r)},dn=function(e,t,r,s){return o({service:e,resource_server:e.endpoint_id,path:`/api/nodes/${t}`,method:"PUT"},r,s)},ln=function(e,t,r,s){return o({service:e,resource_server:e.endpoint_id,path:`/api/nodes/${t}`,method:"PATCH"},r,s)};var Dt={};u(Dt,{create:()=>gn,get:()=>hn,getAll:()=>mn,remove:()=>fn});var mn=function(e,t,r){return o({service:e,resource_server:e.endpoint_id,path:"/api/roles"},t,r)},hn=function(e,t,r,s){return o({service:e,resource_server:e.endpoint_id,path:`/api/roles/${t}`},r,s)},fn=function(e,t,r,s){return o({service:e,resource_server:e.endpoint_id,path:`/api/roles/${t}`,method:"DELETE"},r,s)},gn=function(e,t,r){return o({service:e,resource_server:e.endpoint_id,path:"/api/roles",method:"POST"},t,r)};var At={};u(At,{create:()=>_n,get:()=>Sn,getAll:()=>yn,patch:()=>Rn,remove:()=>vn,update:()=>Tn});var yn=function(e,t,r){return o({service:e,resource_server:e.endpoint_id,path:"/api/storage_gateways"},t,r)},Sn=function(e,t,r,s){return o({service:e,resource_server:e.endpoint_id,path:`/api/storage_gateways/${t}`},r,s)},vn=function(e,t,r,s){return o({service:e,resource_server:e.endpoint_id,path:`/api/storage_gateways/${t}`,method:"DELETE"},r,s)},_n=function(e,t,r){return o({service:e,resource_server:e.endpoint_id,path:"/api/storage_gateways",method:"POST"},t,r)},Tn=function(e,t,r,s){return o({service:e,resource_server:e.endpoint_id,path:`/api/storage_gateways/${t}`,method:"PUT"},r,s)},Rn=function(e,t,r,s){return o({service:e,resource_server:e.endpoint_id,path:`/api/storage_gateways/${t}`,method:"PATCH"},r,s)};var Mt={};u(Mt,{create:()=>Pn,get:()=>On,getAll:()=>En,patch:()=>Dn,remove:()=>bn,update:()=>xn});var En=function(e,t,r){return o({service:e,resource_server:e.endpoint_id,path:"/api/user_credentials"},t,r)},On=function(e,t,r,s){return o({service:e,resource_server:e.endpoint_id,path:`/api/user_credentials/${t}`},r,s)},bn=function(e,t,r,s){return o({service:e,resource_server:e.endpoint_id,path:`/api/user_credentials/${t}`,method:"DELETE"},r,s)},Pn=function(e,t,r){return o({service:e,resource_server:e.endpoint_id,path:"/api/user_credentials",method:"POST"},t,r)},xn=function(e,t,r,s){return o({service:e,resource_server:e.endpoint_id,path:`/api/user_credentials/${t}`,method:"PUT"},r,s)},Dn=function(e,t,r,s){return o({service:e,resource_server:e.endpoint_id,path:`/api/user_credentials/${t}`,method:"PATCH"},r,s)};var Ct={};u(Ct,{info:()=>wt});var wt=function(e,t,r){return o({service:e,path:"/api/info"},t,r)};var Lt={};u(Lt,{getEndpointIdFromURL:()=>An,getGCSDomainFromURL:()=>yr});var ie="data.globus.org";function yr(e){let{host:t}=typeof e=="string"?new URL(e):e;if(!t.endsWith(ie))return t;let[r]=t.split(`.${ie}`),s=r.split(".");return(s.length===2?[...s,ie]:[s[1],s[2],ie]).join(".")}async function An(e){let t=typeof e=="string"?new URL(e):e;if(!t.host.endsWith(ie))return null;let a=(await(await wt({host:`https://${yr(t)}`})).json()).data?.filter(l=>l.DATA_TYPE.startsWith("info#"))[0];return a&&"endpoint_id"in a?a.endpoint_id:null}var Sr={HIGH_ASSURANCE:"urn:globus:auth:scope:<ENDPOINT_ID>:manage_collections",NON_HIGH_ASSURANCE:"urn:globus:auth:scope:<ENDPOINT_ID>:manage_collections[*https://auth.globus.org/scopes/<MAPPED_COLLECTION_ID>/data_access]"};function Mn(e,t){let{endpoint_id:r}=e;if(!r)throw new Error("An 'endpoint_id' is required to determine the required scopes");return t?Sr[t].replace("<ENDPOINT_ID>",r):Object.entries(Sr).reduce((s,[a,l])=>({...s,[a]:l.replace("<ENDPOINT_ID>",r)}),{})}var Nt={};u(Nt,{CONFIG:()=>wn,create:()=>vr});var vr=function(e,t){return o({service:L,scope:"https://auth.globus.org/scopes/524230d7-ea86-4a52-8312-86065a9e0417/timer",path:"/v2/timer",method:"POST"},e,t)};var wn=le;var Gt={};u(Gt,{CONFIG:()=>Nn,endpoints:()=>It});var It={};u(It,{get:()=>Ln,getAll:()=>Cn,getStatus:()=>kn});var Cn=function(e,t){return o({service:M,scope:Y.ALL,path:"/v2/endpoints",method:"GET"},e,t)},Ln=function(e,t,r){return o({service:M,scope:Y.ALL,path:`/v2/endpoints/${e}`,method:"GET"},t,r)},kn=function(e,t,r){return o({service:M,scope:Y.ALL,path:`/v2/endpoints/${e}/status`},t,r)};var Nn=fe;var Ft={};u(Ft,{HOSTS:()=>_r,host:()=>Tr,url:()=>Rr,urlFor:()=>Gn});var _r={integration:"app.integration.globuscs.info",sandbox:"app.sandbox.globuscs.info",test:"app.test.globuscs.info",staging:"app.staging.globuscs.info",preview:"app.preview.globus.org",production:"app.globus.org"};function Tr(e=z()){return _r[e]}function Rr(e,t){return new URL(e||"",`https://${Tr(t?.environment)}`)}var In={TASK:"/activity/%s/overview",COLLECTION:"/file-manager/collections/%s/overview",ENDPOINT:"/file-manager/collections/%s/overview"};function Gn(e,t,r){let s=In[e].replace(/%s/g,t?.join("/")||"");return Rr(s,r)}return Ir(Fn);})(); | ||
var globus=(()=>{var Ar=Object.create;var pe=Object.defineProperty;var Mr=Object.getOwnPropertyDescriptor;var Cr=Object.getOwnPropertyNames;var wr=Object.getPrototypeOf,Lr=Object.prototype.hasOwnProperty;var kr=(e,t)=>()=>(t||e((t={exports:{}}).exports,t),t.exports),u=(e,t)=>{for(var r in t)pe(e,r,{get:t[r],enumerable:!0})},Jt=(e,t,r,s)=>{if(t&&typeof t=="object"||typeof t=="function")for(let a of Cr(t))!Lr.call(e,a)&&a!==r&&pe(e,a,{get:()=>t[a],enumerable:!(s=Mr(t,a))||s.enumerable});return e};var Nr=(e,t,r)=>(r=e!=null?Ar(wr(e)):{},Jt(t||!e||!e.__esModule?pe(r,"default",{value:e,enumerable:!0}):r,e)),Ir=e=>Jt(pe({},"__esModule",{value:!0}),e);var or=kr((G,rr)=>{var ye=typeof globalThis<"u"&&globalThis||typeof self<"u"&&self||typeof global<"u"&&global,Se=function(){function e(){this.fetch=!1,this.DOMException=ye.DOMException}return e.prototype=ye,new e}();(function(e){var t=function(r){var s=typeof e<"u"&&e||typeof self<"u"&&self||typeof global<"u"&&global||{},a={searchParams:"URLSearchParams"in s,iterable:"Symbol"in s&&"iterator"in Symbol,blob:"FileReader"in s&&"Blob"in s&&function(){try{return new Blob,!0}catch{return!1}}(),formData:"FormData"in s,arrayBuffer:"ArrayBuffer"in s};function l(n){return n&&DataView.prototype.isPrototypeOf(n)}if(a.arrayBuffer)var b=["[object Int8Array]","[object Uint8Array]","[object Uint8ClampedArray]","[object Int16Array]","[object Uint16Array]","[object Int32Array]","[object Uint32Array]","[object Float32Array]","[object Float64Array]"],E=ArrayBuffer.isView||function(n){return n&&b.indexOf(Object.prototype.toString.call(n))>-1};function O(n){if(typeof n!="string"&&(n=String(n)),/[^a-z0-9\-#$%&'*+.^_`|~!]/i.test(n)||n==="")throw new TypeError('Invalid character in header field name: "'+n+'"');return n.toLowerCase()}function q(n){return typeof n!="string"&&(n=String(n)),n}function w(n){var i={next:function(){var d=n.shift();return{done:d===void 0,value:d}}};return a.iterable&&(i[Symbol.iterator]=function(){return i}),i}function f(n){this.map={},n instanceof f?n.forEach(function(i,d){this.append(d,i)},this):Array.isArray(n)?n.forEach(function(i){if(i.length!=2)throw new TypeError("Headers constructor: expected name/value pair to be length 2, found"+i.length);this.append(i[0],i[1])},this):n&&Object.getOwnPropertyNames(n).forEach(function(i){this.append(i,n[i])},this)}f.prototype.append=function(n,i){n=O(n),i=q(i);var d=this.map[n];this.map[n]=d?d+", "+i:i},f.prototype.delete=function(n){delete this.map[O(n)]},f.prototype.get=function(n){return n=O(n),this.has(n)?this.map[n]:null},f.prototype.has=function(n){return this.map.hasOwnProperty(O(n))},f.prototype.set=function(n,i){this.map[O(n)]=q(i)},f.prototype.forEach=function(n,i){for(var d in this.map)this.map.hasOwnProperty(d)&&n.call(i,this.map[d],d,this)},f.prototype.keys=function(){var n=[];return this.forEach(function(i,d){n.push(d)}),w(n)},f.prototype.values=function(){var n=[];return this.forEach(function(i){n.push(i)}),w(n)},f.prototype.entries=function(){var n=[];return this.forEach(function(i,d){n.push([d,i])}),w(n)},a.iterable&&(f.prototype[Symbol.iterator]=f.prototype.entries);function C(n){if(!n._noBody){if(n.bodyUsed)return Promise.reject(new TypeError("Already read"));n.bodyUsed=!0}}function $(n){return new Promise(function(i,d){n.onload=function(){i(n.result)},n.onerror=function(){d(n.error)}})}function qt(n){var i=new FileReader,d=$(i);return i.readAsArrayBuffer(n),d}function j(n){var i=new FileReader,d=$(i),h=/charset=([A-Za-z0-9_-]+)/.exec(n.type),y=h?h[1]:"utf-8";return i.readAsText(n,y),d}function Er(n){for(var i=new Uint8Array(n),d=new Array(i.length),h=0;h<i.length;h++)d[h]=String.fromCharCode(i[h]);return d.join("")}function jt(n){if(n.slice)return n.slice(0);var i=new Uint8Array(n.byteLength);return i.set(new Uint8Array(n)),i.buffer}function Ut(){return this.bodyUsed=!1,this._initBody=function(n){this.bodyUsed=this.bodyUsed,this._bodyInit=n,n?typeof n=="string"?this._bodyText=n:a.blob&&Blob.prototype.isPrototypeOf(n)?this._bodyBlob=n:a.formData&&FormData.prototype.isPrototypeOf(n)?this._bodyFormData=n:a.searchParams&&URLSearchParams.prototype.isPrototypeOf(n)?this._bodyText=n.toString():a.arrayBuffer&&a.blob&&l(n)?(this._bodyArrayBuffer=jt(n.buffer),this._bodyInit=new Blob([this._bodyArrayBuffer])):a.arrayBuffer&&(ArrayBuffer.prototype.isPrototypeOf(n)||E(n))?this._bodyArrayBuffer=jt(n):this._bodyText=n=Object.prototype.toString.call(n):(this._noBody=!0,this._bodyText=""),this.headers.get("content-type")||(typeof n=="string"?this.headers.set("content-type","text/plain;charset=UTF-8"):this._bodyBlob&&this._bodyBlob.type?this.headers.set("content-type",this._bodyBlob.type):a.searchParams&&URLSearchParams.prototype.isPrototypeOf(n)&&this.headers.set("content-type","application/x-www-form-urlencoded;charset=UTF-8"))},a.blob&&(this.blob=function(){var n=C(this);if(n)return n;if(this._bodyBlob)return Promise.resolve(this._bodyBlob);if(this._bodyArrayBuffer)return Promise.resolve(new Blob([this._bodyArrayBuffer]));if(this._bodyFormData)throw new Error("could not read FormData body as blob");return Promise.resolve(new Blob([this._bodyText]))}),this.arrayBuffer=function(){if(this._bodyArrayBuffer){var n=C(this);return n||(ArrayBuffer.isView(this._bodyArrayBuffer)?Promise.resolve(this._bodyArrayBuffer.buffer.slice(this._bodyArrayBuffer.byteOffset,this._bodyArrayBuffer.byteOffset+this._bodyArrayBuffer.byteLength)):Promise.resolve(this._bodyArrayBuffer))}else{if(a.blob)return this.blob().then(qt);throw new Error("could not read as ArrayBuffer")}},this.text=function(){var n=C(this);if(n)return n;if(this._bodyBlob)return j(this._bodyBlob);if(this._bodyArrayBuffer)return Promise.resolve(Er(this._bodyArrayBuffer));if(this._bodyFormData)throw new Error("could not read FormData body as text");return Promise.resolve(this._bodyText)},a.formData&&(this.formData=function(){return this.text().then(Pr)}),this.json=function(){return this.text().then(JSON.parse)},this}var Or=["CONNECT","DELETE","GET","HEAD","OPTIONS","PATCH","POST","PUT","TRACE"];function br(n){var i=n.toUpperCase();return Or.indexOf(i)>-1?i:n}function k(n,i){if(!(this instanceof k))throw new TypeError('Please use the "new" operator, this DOM object constructor cannot be called as a function.');i=i||{};var d=i.body;if(n instanceof k){if(n.bodyUsed)throw new TypeError("Already read");this.url=n.url,this.credentials=n.credentials,i.headers||(this.headers=new f(n.headers)),this.method=n.method,this.mode=n.mode,this.signal=n.signal,!d&&n._bodyInit!=null&&(d=n._bodyInit,n.bodyUsed=!0)}else this.url=String(n);if(this.credentials=i.credentials||this.credentials||"same-origin",(i.headers||!this.headers)&&(this.headers=new f(i.headers)),this.method=br(i.method||this.method||"GET"),this.mode=i.mode||this.mode||null,this.signal=i.signal||this.signal||function(){if("AbortController"in s){var m=new AbortController;return m.signal}}(),this.referrer=null,(this.method==="GET"||this.method==="HEAD")&&d)throw new TypeError("Body not allowed for GET or HEAD requests");if(this._initBody(d),(this.method==="GET"||this.method==="HEAD")&&(i.cache==="no-store"||i.cache==="no-cache")){var h=/([?&])_=[^&]*/;if(h.test(this.url))this.url=this.url.replace(h,"$1_="+new Date().getTime());else{var y=/\?/;this.url+=(y.test(this.url)?"&":"?")+"_="+new Date().getTime()}}}k.prototype.clone=function(){return new k(this,{body:this._bodyInit})};function Pr(n){var i=new FormData;return n.trim().split("&").forEach(function(d){if(d){var h=d.split("="),y=h.shift().replace(/\+/g," "),m=h.join("=").replace(/\+/g," ");i.append(decodeURIComponent(y),decodeURIComponent(m))}}),i}function xr(n){var i=new f,d=n.replace(/\r?\n[\t ]+/g," ");return d.split("\r").map(function(h){return h.indexOf(` | ||
`)===0?h.substr(1,h.length):h}).forEach(function(h){var y=h.split(":"),m=y.shift().trim();if(m){var ae=y.join(":").trim();try{i.append(m,ae)}catch(Ee){console.warn("Response "+Ee.message)}}}),i}Ut.call(k.prototype);function A(n,i){if(!(this instanceof A))throw new TypeError('Please use the "new" operator, this DOM object constructor cannot be called as a function.');if(i||(i={}),this.type="default",this.status=i.status===void 0?200:i.status,this.status<200||this.status>599)throw new RangeError("Failed to construct 'Response': The status provided (0) is outside the range [200, 599].");this.ok=this.status>=200&&this.status<300,this.statusText=i.statusText===void 0?"":""+i.statusText,this.headers=new f(i.headers),this.url=i.url||"",this._initBody(n)}Ut.call(A.prototype),A.prototype.clone=function(){return new A(this._bodyInit,{status:this.status,statusText:this.statusText,headers:new f(this.headers),url:this.url})},A.error=function(){var n=new A(null,{status:200,statusText:""});return n.ok=!1,n.status=0,n.type="error",n};var Dr=[301,302,303,307,308];A.redirect=function(n,i){if(Dr.indexOf(i)===-1)throw new RangeError("Invalid status code");return new A(null,{status:i,headers:{location:n}})},r.DOMException=s.DOMException;try{new r.DOMException}catch{r.DOMException=function(i,d){this.message=i,this.name=d;var h=Error(i);this.stack=h.stack},r.DOMException.prototype=Object.create(Error.prototype),r.DOMException.prototype.constructor=r.DOMException}function Re(n,i){return new Promise(function(d,h){var y=new k(n,i);if(y.signal&&y.signal.aborted)return h(new r.DOMException("Aborted","AbortError"));var m=new XMLHttpRequest;function ae(){m.abort()}m.onload=function(){var R={statusText:m.statusText,headers:xr(m.getAllResponseHeaders()||"")};y.url.indexOf("file://")===0&&(m.status<200||m.status>599)?R.status=200:R.status=m.status,R.url="responseURL"in m?m.responseURL:R.headers.get("X-Request-URL");var U="response"in m?m.response:m.responseText;setTimeout(function(){d(new A(U,R))},0)},m.onerror=function(){setTimeout(function(){h(new TypeError("Network request failed"))},0)},m.ontimeout=function(){setTimeout(function(){h(new TypeError("Network request timed out"))},0)},m.onabort=function(){setTimeout(function(){h(new r.DOMException("Aborted","AbortError"))},0)};function Ee(R){try{return R===""&&s.location.href?s.location.href:R}catch{return R}}if(m.open(y.method,Ee(y.url),!0),y.credentials==="include"?m.withCredentials=!0:y.credentials==="omit"&&(m.withCredentials=!1),"responseType"in m&&(a.blob?m.responseType="blob":a.arrayBuffer&&(m.responseType="arraybuffer")),i&&typeof i.headers=="object"&&!(i.headers instanceof f||s.Headers&&i.headers instanceof s.Headers)){var Ht=[];Object.getOwnPropertyNames(i.headers).forEach(function(R){Ht.push(O(R)),m.setRequestHeader(R,q(i.headers[R]))}),y.headers.forEach(function(R,U){Ht.indexOf(U)===-1&&m.setRequestHeader(U,R)})}else y.headers.forEach(function(R,U){m.setRequestHeader(U,R)});y.signal&&(y.signal.addEventListener("abort",ae),m.onreadystatechange=function(){m.readyState===4&&y.signal.removeEventListener("abort",ae)}),m.send(typeof y._bodyInit>"u"?null:y._bodyInit)})}return Re.polyfill=!0,s.fetch||(s.fetch=Re,s.Headers=f,s.Request=k,s.Response=A),r.Headers=f,r.Request=k,r.Response=A,r.fetch=Re,r}({})})(Se);Se.fetch.ponyfill=!0;delete Se.fetch.polyfill;var V=ye.fetch?ye:Se;G=V.fetch;G.default=V.fetch;G.fetch=V.fetch;G.Headers=V.Headers;G.Request=V.Request;G.Response=V.Response;rr.exports=G});var Fn={};u(Fn,{auth:()=>ze,authorization:()=>We,compute:()=>Gt,errors:()=>Fe,flows:()=>Et,gcs:()=>kt,groups:()=>_t,info:()=>Pe,logger:()=>De,search:()=>gt,timer:()=>Nt,transfer:()=>dt,webapp:()=>Ft});var Pe={};u(Pe,{CLIENT_INFO:()=>Wt,VERSION:()=>Kt,addClientInfo:()=>jr,getClientInfo:()=>Yt,getClientInfoRequestHeaders:()=>be});var $t="X-Globus-Client-Info",Gr=!0;function Bt(){return Gr}var Fr=";",qr=",";function zt(e){return(Array.isArray(e)?e:[e]).map(r=>Object.entries(r).map(([s,a])=>`${s}=${a}`).join(qr)).join(Fr)}var Vt="5.3.0";var Kt=Vt,Wt={product:"javascript-sdk",version:Kt},Oe=[Wt];function jr(e){Oe=Oe.concat(e)}function Yt(){return zt(Oe)}function be(){return Bt()?{[$t]:Yt()}:{}}var De={};u(De,{log:()=>_,setLogLevel:()=>Hr,setLogger:()=>Ur});var xe=["debug","info","warn","error"],ce,Qt=xe.indexOf("error");function Ur(e){ce=e}function Hr(e){Qt=xe.indexOf(e)}function _(e,...t){if(!ce||xe.indexOf(e)<Qt)return;(ce[e]??ce.log)(...t)}var We={};u(We,{AuthorizationManager:()=>ne,create:()=>ho});var H=class extends Error{};H.prototype.name="InvalidTokenError";function Jr(e){return decodeURIComponent(atob(e).replace(/(.)/g,(t,r)=>{let s=r.charCodeAt(0).toString(16).toUpperCase();return s.length<2&&(s="0"+s),"%"+s}))}function $r(e){let t=e.replace(/-/g,"+").replace(/_/g,"/");switch(t.length%4){case 0:break;case 2:t+="==";break;case 3:t+="=";break;default:throw new Error("base64 string is not of the correct length")}try{return Jr(t)}catch{return atob(t)}}function Xt(e,t){if(typeof e!="string")throw new H("Invalid token specified: must be a string");t||(t={});let r=t.header===!0?0:1,s=e.split(".")[r];if(typeof s!="string")throw new H(`Invalid token specified: missing part #${r+1}`);let a;try{a=$r(s)}catch(l){throw new H(`Invalid token specified: invalid base64 for part #${r+1} (${l.message})`)}try{return JSON.parse(a)}catch(l){throw new H(`Invalid token specified: invalid json for part #${r+1} (${l.message})`)}}var ze={};u(ze,{CONFIG:()=>$e,getAuthorizationEndpoint:()=>Be,getTokenEndpoint:()=>po,identities:()=>He,isGlobusAuthTokenResponse:()=>ve,isRefreshToken:()=>te,isToken:()=>K,oauth2:()=>F});var ge={};u(ge,{HOSTS:()=>Ne,ID:()=>S,RESOURCE_SERVERS:()=>Q,SCOPES:()=>B});var ue={};u(ue,{HOSTS:()=>Ae,ID:()=>p,SCOPES:()=>c});var p="TRANSFER",c={ALL:"urn:globus:auth:scope:transfer.api.globus.org:all"},Ae={sandbox:"transfer.api.sandbox.globuscs.info",production:"transfer.api.globusonline.org",staging:"transfer.api.staging.globuscs.info",integration:"transfer.api.integration.globuscs.info",test:"transfer.api.test.globuscs.info",preview:"transfer.api.preview.globus.org"};var de={};u(de,{HOSTS:()=>Me,ID:()=>T,SCOPES:()=>D});var T="FLOWS",Me={sandbox:"sandbox.flows.automate.globus.org",production:"flows.globus.org",staging:"staging.flows.automate.globus.org",integration:"integration.flows.automate.globus.org",test:"test.flows.automate.globus.org",preview:"preview.flows.automate.globus.org"},D={MANAGE_FLOWS:"https://auth.globus.org/scopes/eec9b274-0c81-4334-bdc2-54e90e689b9a/manage_flows",VIEW_FLOWS:"https://auth.globus.org/scopes/eec9b274-0c81-4334-bdc2-54e90e689b9a/view_flows",RUN:"https://auth.globus.org/scopes/eec9b274-0c81-4334-bdc2-54e90e689b9a/run",RUN_STATUS:"https://auth.globus.org/scopes/eec9b274-0c81-4334-bdc2-54e90e689b9a/run_status",RUN_MANAGE:"https://auth.globus.org/scopes/eec9b274-0c81-4334-bdc2-54e90e689b9a/run_manage"};var le={};u(le,{HOSTS:()=>Ce,ID:()=>L});var L="TIMER",Ce={sandbox:"sandbox.timer.automate.globus.org",production:"timer.automate.globus.org",staging:"staging.timer.automate.globus.org",integration:"integration.timer.automate.globus.org",test:"test.timer.automate.globus.org",preview:"preview.timer.automate.globus.org"};var me={};u(me,{HOSTS:()=>we,ID:()=>P,SCOPES:()=>N});var P="GROUPS",we={sandbox:"groups.api.sandbox.globuscs.info",production:"groups.api.globus.org",staging:"groups.api.staging.globuscs.info",integration:"groups.api.integration.globuscs.info",test:"groups.api.test.globuscs.info",preview:"groups.api.preview.globuscs.info"},N={ALL:"urn:globus:auth:scope:groups.api.globus.org:all",VIEW_MY:"urn:globus:auth:scope:groups.api.globus.org:view_my_groups_and_membership"};var he={};u(he,{HOSTS:()=>Le,ID:()=>v,SCOPES:()=>x});var v="SEARCH",Le={sandbox:"search.api.sandbox.globuscs.info",production:"search.api.globus.org",staging:"search.api.staging.globuscs.info",integration:"search.api.integration.globuscs.info",test:"search.api.test.globuscs.info",preview:"search.api.preview.globus.org"},x={ALL:"urn:globus:auth:scope:search.api.globus.org:all",INGEST:"urn:globus:auth:scope:search.api.globus.org:ingest",SEARCH:"urn:globus:auth:scope:search.api.globus.org:search"};var fe={};u(fe,{HOSTS:()=>ke,ID:()=>M,SCOPES:()=>Y});var M="COMPUTE",ke={sandbox:"compute.api.sandbox.globuscs.info",production:"compute.api.globus.org",staging:"compute.api.staging.globuscs.info",integration:"compute.api.integration.globuscs.info",test:"compute.api.test.globuscs.info",preview:"compute.api.preview.globus.org"},Y={ALL:"https://auth.globus.org/scopes/facd7ccc-c5f4-42aa-916b-a0e270e2c2a9/all"};var S="AUTH",Ne={integration:"auth.integration.globuscs.info",sandbox:"auth.sandbox.globuscs.info",production:"auth.globus.org",test:"auth.test.globuscs.info",staging:"auth.staging.globuscs.info",preview:"auth.preview.globus.org"},B={VIEW_IDENTITIES:"urn:globus:auth:scope:auth.globus.org:view_identities"},Q={[S]:"auth.globus.org",[p]:"transfer.api.globus.org",[T]:"flows.globus.org",[P]:"groups.api.globus.org",[v]:"search.api.globus.org",[L]:"524230d7-ea86-4a52-8312-86065a9e0417",[M]:"funcx_service"};var Fe={};u(Fe,{EnvironmentConfigurationError:()=>X,isAuthorizationRequirementsError:()=>Z,isConsentRequiredError:()=>Ie,isErrorWellFormed:()=>Zt,toAuthorizationQueryParams:()=>Ge});var X=class extends Error{name="EnvironmentConfigurationError";constructor(t,r){super(),this.message=`Invalid configuration value provided for ${t} (${r}).`}};function Zt(e){return typeof e=="object"&&e!==null&&"code"in e&&"message"in e}function Ie(e){return Zt(e)&&e.code==="ConsentRequired"&&"required_scopes"in e&&Array.isArray(e.required_scopes)}var Br=["required_scopes"];function Ge(e){let t={scope:e.authorization_parameters.required_scopes?.join(" "),...e.authorization_parameters};return Object.entries(t).reduce((r,[s,a])=>{if(Br.includes(s)||a===void 0||a===null)return r;let l=a;return Array.isArray(l)?l=l.join(","):typeof a=="boolean"&&(l=l?"true":"false"),{...r,[s]:l}},{})}function Z(e){return typeof e=="object"&&e!==null&&"authorization_parameters"in e&&typeof e.authorization_parameters=="object"&&e.authorization_parameters!==null}function zr(){return typeof window<"u"?window:process}function Vr(e){return typeof window==typeof e}function qe(e,t){let r=zr(),s;return Vr(r)?s=r:s=r.env,e in s?s[e]:t}var er={PRODUCTION:"production",PREVIEW:"preview",STAGING:"staging",SANDBOX:"sandbox",INTEGRATION:"integration",TEST:"test"},I={[S]:S,[p]:p,[T]:T,[P]:P,[v]:v,[L]:L,[M]:M},Kr={[S]:Ne,[p]:Ae,[T]:Me,[P]:we,[v]:Le,[L]:Ce,[M]:ke};function je(e){let t=qe("GLOBUS_SDK_OPTIONS",{});return typeof t=="string"&&(t=JSON.parse(t)),{...t,...e,fetch:{...t?.fetch,...e?.fetch,options:{...t?.fetch?.options,...e?.fetch?.options,headers:{...t?.fetch?.options?.headers,...e?.fetch?.options?.headers}}}}}function z(){let e=je(),t=qe("GLOBUS_SDK_ENVIRONMENT",e?.environment??er.PRODUCTION);if(e?.environment&&t!==e.environment&&_("debug","GLOBUS_SDK_ENVIRONMENT and GLOBUS_SDK_OPTIONS.environment are set to different values. GLOBUS_SDK_ENVIRONMENT will take precedence"),!t||!Object.values(er).includes(t))throw new X("GLOBUS_SDK_ENVIRONMENT",t);return t}function Wr(e,t=z()){return Kr[e][t]}function tr(e,t=z()){let r=Wr(e,t);return qe(`GLOBUS_SDK_SERVICE_URL_${e}`,r?`https://${r}`:void 0)}function Yr(e){let t=new URLSearchParams;return Array.from(Object.entries(e)).forEach(([r,s])=>{Array.isArray(s)?t.set(r,s.join(",")):s!==void 0&&t.set(r,String(s))}),t.toString()}function Qr(e,t="",r=z()){let s=tr(e,r);return new URL(t,s)}function ee(e,t,r,s){let a;return typeof e=="object"?a=new URL(t,e.host):a=Qr(e,t,s?.environment),r&&r.search&&(a.search=Yr(r.search)),a.toString()}var He={};u(He,{consents:()=>Ue,get:()=>Zr,getAll:()=>eo});var sr=Nr(or());async function o(e,t,r){let s=je(r),a=s?.fetch?.options||{},l={...be(),...t?.headers,...a.headers},b=s?.manager,E;if(e.resource_server&&b&&(E=b.tokens.getByResourceServer(e.resource_server),E&&(l.Authorization=`Bearer ${E.access_token}`)),e.scope&&b&&(typeof e.service=="string"||"endpoint_id"in e.service)){let j=typeof e.service=="string"?Q[e.service]:e.service.endpoint_id;E=b.tokens.getByResourceServer(j),E&&(l.Authorization=`Bearer ${E.access_token}`)}let O=t?.body;!O&&t?.payload&&(O=JSON.stringify(t.payload)),!l?.["Content-Type"]&&O&&(l["Content-Type"]="application/json");let q=ee(e.service,e.path,{search:t?.query},s),w={method:e.method,body:O,...a,headers:l},f=sr.default;if(a?.__callable&&(f=a.__callable.bind(this),delete w.__callable),e.preventRetry||!b||!E||!te(E))return f(q,w);let C=await f(q,w);if(C.ok)return C;let $;try{$=Z(await C.clone().json())}catch{$=!1}if(C.status===401&&!$){let j=await b.refreshToken(E);return j?f(q,{...w,headers:{...w.headers,Authorization:`Bearer ${j.access_token}`}}):C}return C}var Ue={};u(Ue,{getAll:()=>Xr});var Xr=function(e,t={},r){return o({service:S,scope:B.VIEW_IDENTITIES,path:`/v2/api/identities/${e}/consents`},t,r)};var Zr=function(e,t={},r){return o({service:S,scope:B.VIEW_IDENTITIES,path:`/v2/api/identities/${e}`},t,r)},eo=function(e={},t){return o({service:S,scope:B.VIEW_IDENTITIES,path:"/v2/api/identities"},e,t)};var F={};u(F,{token:()=>Je,userinfo:()=>ao});var Je={};u(Je,{exchange:()=>ro,introspect:()=>oo,refresh:()=>no,revoke:()=>so,token:()=>nr,validate:()=>io});function to(e){return new URLSearchParams(e)}function re(e){return{...e,body:e.payload?to(e.payload):void 0,headers:{...e?.headers||{},Accept:"application/json","Content-Type":"application/x-www-form-urlencoded; charset=UTF-8"}}}var nr=function(e={},t){return o({service:S,scope:void 0,path:"/v2/oauth2/token",method:"POST",preventRetry:!0},re(e),t)},ro=nr,oo=function(e,t){if(!e?.payload)throw new Error("'payload' is required for introspect");return o({service:S,scope:void 0,path:"/v2/oauth2/token/introspect",method:"POST",preventRetry:!0},re(e),t)},so=function(e,t){if(!e?.payload)throw new Error("'payload' is required for revoke");return o({service:S,scope:void 0,path:"/v2/oauth2/token/revoke",method:"POST",preventRetry:!0},re(e),t)},no=function(e,t){if(!e?.payload)throw new Error("'payload' is required for revoke");return o({service:S,scope:void 0,path:"/v2/oauth2/token",method:"POST",preventRetry:!0},re(e),t)},io=function(e,t){if(!e?.payload)throw new Error("'payload' is required for validate");return o({service:S,scope:void 0,path:"/v2/oauth2/token/validate",method:"POST",preventRetry:!0},re(e),t)};var ao=function(e,t){return o({service:S,scope:void 0,path:"/v2/oauth2/userinfo",method:"GET"},e,t)};var $e=ge;function Be(){return ee(S,"/v2/oauth2/authorize")}function po(){return ee(S,"/v2/oauth2/token")}function K(e){return typeof e=="object"&&e!==null&&"access_token"in e}function te(e){return K(e)&&e!==null&&"refresh_token"in e}function ve(e){return K(e)&&e!==null&&"resource_server"in e}var oe=class{constructor(t){this.name=t}#e=[];addListener(t){return this.#e.push(t),()=>this.removeListener(t)}removeListener(t){this.#e=this.#e.filter(r=>r!==t)}clearListeners(){this.#e=[]}async dispatch(t){await Promise.all(this.#e.map(r=>r(t)))}};function ar(){return"crypto"in globalThis}function Ke(){return"webcrypto"in globalThis.crypto?globalThis.crypto.webcrypto:globalThis.crypto}var co=e=>btoa(e).replace(/\+/g,"-").replace(/\//g,"_").replace(/=+$/,"");async function uo(e){let t=await Ke().subtle.digest("SHA-256",new TextEncoder().encode(e));return String.fromCharCode(...new Uint8Array(t))}var Ve="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789",ir=`${Ve}-._~`;function pr(){return Array.from(Ke().getRandomValues(new Uint8Array(43))).map(e=>ir[e%ir.length]).join("")}async function cr(e){let t=await uo(e);return co(t)}function ur(){return Array.from(Ke().getRandomValues(new Uint8Array(16))).map(e=>Ve[e%Ve.length]).join("")}var W={PKCE_STATE:"pkce_state",PKCE_CODE_VERIFIER:"pkce_code_verifier"};function lo(){sessionStorage.removeItem(W.PKCE_STATE),sessionStorage.removeItem(W.PKCE_CODE_VERIFIER)}var _e=class e{#e;constructor(t){if(this.#e=t,e.supported===!1)throw new Error("RedirectTransport is not supported in this environment.")}static supported=ar();async send(){let t=pr(),r=await cr(t),s=this.#e.params?.state??ur();sessionStorage.setItem(W.PKCE_CODE_VERIFIER,t),sessionStorage.setItem(W.PKCE_STATE,s);let a={response_type:"code",client_id:this.#e.client,scope:this.#e.scopes||"",redirect_uri:this.#e.redirect,state:s,code_challenge:r,code_challenge_method:"S256",...this.#e.params||{}},l=new URL(Be());l.search=new URLSearchParams(a).toString(),window.location.assign(l.toString())}async getToken(t={shouldReplace:!0,includeConsentedScopes:!1}){let r=new URL(window.location.href),s=new URLSearchParams(r.search);if(s.get("error"))throw new Error(s.get("error_description")||"An error occurred during the authorization process.");let a=s.get("code");if(!a)return;let l=sessionStorage.getItem(W.PKCE_STATE),b=sessionStorage.getItem(W.PKCE_CODE_VERIFIER);if(lo(),s.get("state")!==l)throw new Error('Invalid State. The received "state" parameter does not match the expected state.');if(!b)throw new Error("Invalid Code Verifier");let E={code:a,client_id:this.#e.client,code_verifier:b,redirect_uri:this.#e.redirect,grant_type:"authorization_code"},O=await(await F.token.exchange({query:t.includeConsentedScopes?{include_consented_scopes:!0}:void 0,payload:E})).json();return t.shouldReplace&&(s.delete("code"),s.delete("state"),r.search=s.toString(),window.location.replace(r)),O}};var Te=class{#e;constructor(t){this.#e=t.manager}#r(t){let r=this.#e.storage.getItem(t)||"null",s=null;try{let a=JSON.parse(r);K(a)&&(s=a)}catch{}return s}#t(t){let r=$e.RESOURCE_SERVERS?.[t];return this.getByResourceServer(r)}getByResourceServer(t){return this.#r(`${this.#e.storageKeyPrefix}${t}`)}get auth(){return this.#t(I.AUTH)}get transfer(){return this.#t(I.TRANSFER)}get flows(){return this.#t(I.FLOWS)}get groups(){return this.#t(I.GROUPS)}get search(){return this.#t(I.SEARCH)}get timer(){return this.#t(I.TIMER)}get compute(){return this.#t(I.COMPUTE)}gcs(t){return this.getByResourceServer(t)}getAll(){return Object.keys(this.#e.storage).reduce((r,s)=>(s.startsWith(this.#e.storageKeyPrefix)&&r.push(this.#r(s)),r),[]).filter(K)}add(t){let r=Date.now(),s=r+t.expires_in*1e3;this.#e.storage.setItem(`${this.#e.storageKeyPrefix}${t.resource_server}`,JSON.stringify({...t,__metadata:{created:r,expires:s}})),"other_tokens"in t&&t.other_tokens?.forEach(a=>{this.add(a)})}remove(t){this.#e.storage.removeItem(`${this.#e.storageKeyPrefix}${t.resource_server}`)}static isTokenExpired(t,r=0){if(!(!t||!t.__metadata||typeof t.__metadata.expires!="number"))return Date.now()+r>=t.__metadata.expires}};var se=class{#e={};getItem(t){return this.#e[t]!==void 0?this.#e[t]:null}setItem(t,r){this.#e[t]=r}removeItem(t){delete this.#e[t]}key(t){return Object.keys(this.#e)[t]}clear(){this.#e={}}get length(){return Object.keys(this.#e).length}};var mo={redirect:_e},dr={useRefreshTokens:!1,defaultScopes:"openid profile email",transport:"redirect"},lr={execute:!0,additionalParams:void 0},ne=class{#e;configuration;storage;#r=!1;get authenticated(){return this.#r}set authenticated(t){t!==this.#r&&(this.#r=t,this.#n())}tokens;events={authenticated:new oe("authenticated"),revoke:new oe("revoke")};constructor(t){if(!t.client)throw new Error("You must provide a `client` for your application.");let r=t.defaultScopes===!1?"":t.defaultScopes??dr.defaultScopes;this.configuration={...dr,...t,scopes:[t.scopes?t.scopes:"",r].filter(s=>s.length).join(" ")},this.storage=t.storage||new se,this.configuration.events&&Object.entries(this.configuration.events).forEach(([s,a])=>{s in this.events&&this.events[s].addListener(a)}),this.tokens=new Te({manager:this}),this.#t()}get storageKeyPrefix(){return`${this.configuration.client}:`}get user(){let t=this.getGlobusAuthToken();return t&&t.id_token?Xt(t.id_token):null}async refreshTokens(){_("debug","AuthorizationManager.refreshTokens");let t=await Promise.allSettled(this.tokens.getAll().map(r=>te(r)?this.refreshToken(r):Promise.resolve(null)));return this.#t(),t}async refreshToken(t){_("debug",`AuthorizationManager.refreshToken | resource_server=${t.resource_server}`);try{let r=await(await F.token.refresh({payload:{client_id:this.configuration.client,refresh_token:t.refresh_token,grant_type:"refresh_token"}})).json();if(ve(r))return this.addTokenResponse(r),r}catch{_("error",`AuthorizationManager.refreshToken | resource_server=${t.resource_server}`)}return null}hasGlobusAuthToken(){return this.getGlobusAuthToken()!==null}getGlobusAuthToken(){let t=this.storage.getItem(`${this.storageKeyPrefix}${Q.AUTH}`);return t?JSON.parse(t):null}#t(){_("debug","AuthorizationManager.#checkAuthorizationState"),this.hasGlobusAuthToken()&&(this.authenticated=!0)}async#n(){let t=this.authenticated,r=this.getGlobusAuthToken()??void 0;await this.events.authenticated.dispatch({isAuthenticated:t,token:r})}reset(){Object.keys(this.storage).forEach(t=>{t.startsWith(this.storageKeyPrefix)&&this.storage.removeItem(t)}),this.authenticated=!1}#s(t){return`${t}${this.configuration.useRefreshTokens?" offline_access":""}`}#o(t){let{scopes:r,...s}=t??{},a=mo[this.configuration.transport||"redirect"],l=this.#s(r??(this.configuration.scopes||""));return this.storage instanceof se&&(l=[...new Set(l.split(" ").concat((this.configuration?.scopes||"").split(" ")))].join(" ")),new a({client:this.configuration.client,redirect:this.configuration.redirect,scopes:l,...s,params:{...s?.params}})}async login(t={additionalParams:{}}){_("debug","AuthorizationManager.login"),this.reset(),await this.#o({params:t?.additionalParams}).send()}async prompt(t){_("debug","AuthorizationManager.prompt"),await this.#o(t).send()}async handleCodeRedirect(t={shouldReplace:!0,additionalParams:{}}){_("debug","AuthorizationManager.handleCodeRedirect");let r=await this.#o({params:t?.additionalParams}).getToken({shouldReplace:t?.shouldReplace,includeConsentedScopes:t?.includeConsentedScopes});return ve(r)&&(_("debug",`AuthorizationManager.handleCodeRedirect | response=${JSON.stringify(r)}`),this.addTokenResponse(r)),r}async handleErrorResponse(t,r){let s=typeof r=="boolean"?{...lr,execute:r}:{...lr,...r};_("debug",`AuthorizationManager.handleErrorResponse | response=${JSON.stringify(t)} execute=${s.execute}`);let a=async()=>{};return Z(t)&&(_("debug","AuthorizationManager.handleErrorResponse | error=AuthorizationRequirementsError"),a=async()=>{await this.handleAuthorizationRequirementsError(t,{additionalParams:s.additionalParams})}),Ie(t)&&(_("debug","AuthorizationManager.handleErrorResponse | error=ConsentRequiredError"),a=async()=>{await this.handleConsentRequiredError(t,{additionalParams:s.additionalParams})}),"code"in t&&t.code==="AuthenticationFailed"&&(_("debug","AuthorizationManager.handleErrorResponse | error=AuthenticationFailed"),a=async()=>{await this.revoke()}),s.execute===!0?await a():a}async handleAuthorizationRequirementsError(t,r){this.#e=this.#o({params:{prompt:"login",...Ge(t),...r?.additionalParams}}),await this.#e.send()}async handleConsentRequiredError(t,r){this.#e=this.#o({scopes:this.#s(t.required_scopes.join(" ")),params:{...r?.additionalParams}}),await this.#e.send()}addTokenResponse=t=>{this.tokens.add(t),this.#t()};async revoke(){_("debug","AuthorizationManager.revoke");let t=Promise.all(this.tokens.getAll().map(this.#i.bind(this)));this.reset(),await t,await this.events.revoke.dispatch()}#i(t){return _("debug",`AuthorizationManager.revokeToken | resource_server=${t.resource_server}`),F.token.revoke({payload:{client_id:this.configuration.client,token:t.access_token}})}};function ho(e){return new ne(e)}var dt={};u(dt,{CONFIG:()=>fs,access:()=>et,collectionBookmarks:()=>tt,endpoint:()=>Xe,endpointManager:()=>nt,endpointSearch:()=>mr,fileOperations:()=>Ye,task:()=>Ze,taskSubmission:()=>Qe,utils:()=>ut});var mr=function(e,t){let r={...e,query:e?.query};return o({service:p,scope:c.ALL,path:"/v0.10/endpoint_search"},r,t)};var Ye={};u(Ye,{ls:()=>fo,mkdir:()=>go,rename:()=>yo,stat:()=>vo,symlink:()=>So});function J(e){return e==="GET"?{}:{"Content-Type":"application/json"}}var fo=function(e,t,r){return o({service:p,scope:c.ALL,path:`/v0.10/operation/endpoint/${e}/ls`},t,r)},go=function(e,t,r){let s={payload:{DATA_TYPE:"mkdir",...t?.payload},headers:{...J("POST"),...t?.headers}};return o({service:p,scope:c.ALL,path:`/v0.10/operation/endpoint/${e}/mkdir`,method:"POST"},s,r)},yo=function(e,t,r){let s={payload:{DATA_TYPE:"rename",...t?.payload},headers:{...J("POST"),...t?.headers}};return o({service:p,scope:c.ALL,path:`/v0.10/operation/endpoint/${e}/rename`,method:"POST"},s,r)},So=function(e,t,r){let s={payload:{DATA_TYPE:"symlink",...t?.payload},headers:{...J("POST"),...t?.headers}};return o({service:p,scope:c.ALL,path:`/v0.10/operation/endpoint/${e}/symlink`,method:"POST"},s,r)},vo=function(e,t,r){return o({service:p,scope:c.ALL,path:`/v0.10/operation/endpoint/${e}/stat`},t,r)};var Qe={};u(Qe,{submissionId:()=>Ro,submitDelete:()=>_o,submitTransfer:()=>To});var _o=function(e,t){let r={payload:{DATA_TYPE:"delete",...e?.payload},headers:{...J("POST"),...e?.headers}};return o({service:p,scope:c.ALL,path:"/v0.10/delete",method:"POST"},r,t)},To=function(e,t){let r={payload:{DATA_TYPE:"transfer",...e?.payload},headers:{...J("POST"),...e?.headers}};return o({service:p,scope:c.ALL,path:"/v0.10/transfer",method:"POST"},r,t)},Ro=function(e,t){return o({service:p,scope:c.ALL,path:"/v0.10/submission_id"},e,t)};var Xe={};u(Xe,{create:()=>Oo,get:()=>Eo,remove:()=>Po,update:()=>bo});var Eo=function(e,t,r){return o({service:p,scope:c.ALL,path:`/v0.10/endpoint/${e}`},t,r)},Oo=function(e,t){return e?.payload&&Object.assign(e.payload,{DATA_TYPE:"shared_endpoint"}),o({service:p,scope:c.ALL,path:"/v0.10/shared_endpoint",method:"POST"},e,t)},bo=function(e,t,r){return t?.payload&&Object.assign(t.payload,{DATA_TYPE:"endpoint"}),o({service:p,scope:c.ALL,path:`/v0.10/endpoint/${e}`,method:"PUT"},t,r)},Po=function(e,t,r){return o({service:p,scope:c.ALL,path:`/v0.10/endpoint/${e}`,method:"DELETE"},t,r)};var Ze={};u(Ze,{cancel:()=>Mo,get:()=>Do,getAll:()=>xo,getEventList:()=>wo,getPauseInfo:()=>No,getSkippedErrors:()=>ko,getSuccessfulTransfers:()=>Lo,remove:()=>Co,update:()=>Ao});var xo=function(e={},t){return o({service:p,scope:c.ALL,path:"/v0.10/task_list"},e,t)},Do=function(e,t,r){return o({service:p,scope:c.ALL,path:`/v0.10/task/${e}`},t,r)},Ao=function(e,t,r){return o({service:p,scope:c.ALL,path:`/v0.10/task/${e}`,method:"PUT"},t,r)},Mo=function(e,t,r){return o({service:p,scope:c.ALL,path:`/v0.10/task/${e}/cancel`,method:"POST"},t,r)},Co=function(e,t,r){return o({service:p,scope:c.ALL,path:`/v0.10/task/${e}/remove`,method:"POST"},t,r)},wo=function(e,t,r){return o({service:p,scope:c.ALL,path:`/v0.10/task/${e}/event_list`},t,r)},Lo=function(e,t,r){return o({service:p,scope:c.ALL,path:`/v0.10/task/${e}/successful_transfers`},t,r)},ko=function(e,t,r){return o({service:p,scope:c.ALL,path:`/v0.10/task/${e}/skipped_errors`},t,r)},No=function(e,t,r){return o({service:p,scope:c.ALL,path:`/v0.10/task/${e}/pause_info`},t,r)};var et={};u(et,{create:()=>Go,get:()=>Fo,getAll:()=>Io,remove:()=>jo,update:()=>qo});var Io=function(e,t,r){return o({service:p,scope:c.ALL,path:`/v0.10/endpoint/${e}/access_list`},t,r)},Go=function(e,t,r){return o({service:p,scope:c.ALL,path:`/v0.10/endpoint/${e}/access`,method:"POST"},t,r)},Fo=function({endpoint_xid:e,id:t},r,s){return o({service:p,scope:c.ALL,path:`/v0.10/endpoint/${e}/access/${t}`},r,s)},qo=function({endpoint_xid:e,id:t},r,s){return o({service:p,scope:c.ALL,path:`/v0.10/endpoint/${e}/access/${t}`,method:"PUT"},r,s)},jo=function({endpoint_xid:e,id:t},r,s){return o({service:p,scope:c.ALL,path:`/v0.10/endpoint/${e}/access/${t}`,method:"DELETE"},r,s)};var tt={};u(tt,{create:()=>Ho,get:()=>Jo,getAll:()=>Uo,remove:()=>Bo,update:()=>$o});var Uo=function(e,t){return o({service:p,scope:c.ALL,path:"/v0.10/bookmark_list"},e,t)},Ho=function(e,t){return o({service:p,scope:c.ALL,path:"/v0.10/bookmark",method:"POST"},e,t)},Jo=function(e,t,r){return o({service:p,scope:c.ALL,path:`/v0.10/bookmark/${e}`},t,r)},$o=function(e,t,r){return o({service:p,scope:c.ALL,path:`/v0.10/bookmark/${e}`,method:"PUT"},t,r)},Bo=function(e,t,r){return o({service:p,scope:c.ALL,path:`/v0.10/bookmark/${e}`,method:"DELETE"},t,r)};var nt={};u(nt,{endpoint:()=>rt,pauseRule:()=>ot,task:()=>st});var rt={};u(rt,{get:()=>zo,getAccessList:()=>Ko,getHostedEndpoints:()=>Vo,getMonitoredEndpoints:()=>Wo});var zo=function(e,t,r){return o({service:p,scope:c.ALL,path:`/v0.10/endpoint_manager/endpoint/${e}`},t,r)},Vo=function(e,t,r){return o({service:p,scope:c.ALL,path:`/v0.10/endpoint_manager/endpoint/${e}/hosted_endpoint_list`},t,r)},Ko=function(e,t,r){return o({service:p,scope:c.ALL,path:`/v0.10/endpoint_manager/endpoint/${e}/access_list`},t,r)},Wo=function(e={},t){return o({service:p,scope:c.ALL,path:"/v0.10/endpoint_manager/monitored_endpoints"},e,t)};var ot={};u(ot,{create:()=>Qo,get:()=>Xo,getAll:()=>Yo,remove:()=>es,update:()=>Zo});var Yo=function(e,t){return o({service:p,scope:c.ALL,path:"/v0.10/endpoint_manager/pause_rule_list"},e,t)},Qo=function(e,t){return o({service:p,scope:c.ALL,path:"/v0.10/endpoint_manager/pause_rule",method:"POST"},e,t)},Xo=function(e,t,r){return o({service:p,scope:c.ALL,path:`/v0.10/endpoint_manager/pause_rule/${e}`},t,r)},Zo=function(e,t,r){return o({service:p,scope:c.ALL,path:`/v0.10/endpoint_manager/pause_rule/${e}`,method:"PUT"},t,r)},es=function(e,t,r){return o({service:p,scope:c.ALL,path:`/v0.10/endpoint_manager/pause_rule/${e}`,method:"DELETE"},t,r)};var st={};u(st,{cancel:()=>os,get:()=>rs,getAdminCancel:()=>ss,getAll:()=>ts,getEventList:()=>ns,getPauseInfo:()=>us,getSkippedErrors:()=>as,getSuccessfulTransfers:()=>is,pause:()=>ps,resume:()=>cs});var ts=function(e={},t){return o({service:p,scope:c.ALL,path:"/v0.10/task_list"},e,t)},rs=function(e,t,r){return o({service:p,scope:c.ALL,path:`/v0.10/endpoint_manager/task/${e}`},t,r)},os=function(e,t){return o({service:p,scope:c.ALL,path:"/v0.10/endpoint_manager/admin_cancel",method:"POST"},e,t)},ss=function(e,t,r){return o({service:p,scope:c.ALL,path:`/v0.10/endpoint_manager/admin_cancel/${e}`,method:"POST"},t,r)},ns=function(e,t,r){return o({service:p,scope:c.ALL,path:`/v0.10/endpoint_manager/task/${e}/event_list`},t,r)},is=function(e,t,r){return o({service:p,scope:c.ALL,path:`/v0.10/endpoint_manager/task/${e}/successful_transfers`},t,r)},as=function(e,t,r){return o({service:p,scope:c.ALL,path:`/v0.10/endpoint_manager/task/${e}/skipped_errors`},t,r)},ps=function(e,t){return o({service:p,scope:c.ALL,path:"/v0.10/endpoint_manager/admin_pause",method:"POST"},e,t)},cs=function(e,t){return o({service:p,scope:c.ALL,path:"/v0.10/endpoint_manager/admin_resume",method:"POST"},e,t)},us=function(e,t,r){return o({service:p,scope:c.ALL,path:`/v0.10/endpoint_manager/task/${e}/pause_info`},t,r)};var ut={};u(ut,{getDomainFromEndpoint:()=>hs,isDirectory:()=>ds,isFileDocument:()=>fr,readableBytes:()=>ls});function fr(e){return typeof e=="object"&&e!==null&&"DATA_TYPE"in e&&e.DATA_TYPE==="file"}function ds(e){return fr(e)&&e.type==="dir"}var it=1e3,at=it*1e3,pt=at*1e3,ct=pt*1e3,hr=ct*1e3;function ls(e,t=2){let r="B",s=1;if(e<it)return`${e} ${r}`;e<at?(r="KB",s=it):e<pt?(r="MB",s=at):e<ct?(r="GB",s=pt):e<hr?(r="TB",s=ct):(r="PB",s=hr);let a=e/s,[l,b]=`${a}`.split("."),E=`${l}`;if(b&&b.length){let O=b.slice(0,t);O.length&&(E=`${l}.${O}`)}return`${E} ${r}`}var ms=["dnsteam.globuscs.info","data.globus.org","dn.glob.us"];function hs(e){let{tlsftp_server:t}=e;if(!t||typeof t!="string")return null;let{hostname:r}=new URL(t.replace("tlsftp","https"));return!ms.find(l=>r.endsWith(l))&&/(?:[gm]-\w{6}.)?(\w+(\.\w+)+)$/.exec(r)?.[1]||r||null}var fs=ue;var gt={};u(gt,{CONFIG:()=>Ps,entry:()=>ht,index:()=>ft,query:()=>lt,subject:()=>mt});var lt={};u(lt,{get:()=>gs,post:()=>ys});var gs=function(e,t,r){return o({service:v,scope:x.SEARCH,path:`/v1/index/${e}/search`},t,r)},ys=function(e,t,r){return o({service:v,scope:x.SEARCH,path:`/v1/index/${e}/search`,method:"POST"},t,r)};var mt={};u(mt,{get:()=>Ss});var Ss=function(e,t,r){return o({service:v,scope:x.SEARCH,path:`/v1/index/${e}/subject`},t,r)};var ht={};u(ht,{get:()=>vs});var vs=function(e,t,r){return o({service:v,scope:x.SEARCH,path:`/v1/index/${e}/entry`},t,r)};var ft={};u(ft,{create:()=>Rs,get:()=>_s,getAll:()=>Ts,ingest:()=>bs,remove:()=>Es,reopen:()=>Os});var _s=function(e,t,r){return o({service:v,path:`/v1/index/${e}`},t,r)},Ts=function(e,t){return o({service:v,scope:x.ALL,path:"/v1/index_list"},e,t)},Rs=function(e,t){return o({service:v,scope:x.ALL,path:"/v1/index",method:"POST"},e,t)},Es=function(e,t,r){return o({service:v,scope:x.ALL,path:`/v1/index/${e}`,method:"DELETE"},t,r)},Os=function(e,t,r){return o({service:v,scope:x.ALL,path:`/v1/index/${e}/reopen`,method:"POST"},t,r)},bs=function(e,t,r){return o({service:v,scope:x.ALL,path:`/v1/index/${e}/ingest`,method:"POST"},t,r)};var Ps=he;var _t={};u(_t,{CONFIG:()=>Cs,groups:()=>yt,membership:()=>vt,policies:()=>St});var yt={};u(yt,{get:()=>Ds,getMyGroups:()=>xs});var xs=function(e,t){return o({scope:N.ALL,path:"/v2/groups/my_groups",service:P},e,t)},Ds=function(e,t,r){return o({service:P,scope:N.ALL,path:`/v2/groups/${e}`},t,r)};var St={};u(St,{get:()=>As});var As=function(e,t,r){return o({scope:N.ALL,path:`/v2/groups/${e}/policies`,service:P},t,r)};var vt={};u(vt,{act:()=>Ms});var Ms=function(e,t,r){if(!t?.payload)throw new Error("payload is required.");return o({service:P,scope:N.ALL,path:`/v2/groups/${e}`,method:"POST"},t,r)};var Cs=me;var Et={};u(Et,{CONFIG:()=>Us,flows:()=>Tt,runs:()=>Rt});var Tt={};u(Tt,{create:()=>gr,deploy:()=>Gs,get:()=>Ls,getAll:()=>ws,remove:()=>ks,run:()=>Ns,validate:()=>Is});var ws=function(e,t){return o({service:T,scope:D.VIEW_FLOWS,path:"/flows"},e,t)},Ls=function(e,t,r){return o({service:T,scope:D.VIEW_FLOWS,path:`/flows/${e}`},t,r)},ks=function(e,t,r){return o({scope:D.MANAGE_FLOWS,service:T,path:`/flows/${e}`,method:"DELETE"},t,r)},Ns=function(e,t,r){return o({service:T,scope:D.VIEW_FLOWS,path:`/flows/${e}/run`,method:"POST"},t,r)},Is=function(e,t){return o({service:T,scope:D.MANAGE_FLOWS,path:"/flows/validate",method:"POST"},e,t)},gr=function(e,t){return o({service:T,scope:D.MANAGE_FLOWS,path:"/flows",method:"POST"},e,t)},Gs=gr;var Rt={};u(Rt,{cancel:()=>qs,getAll:()=>Fs,getLog:()=>js});var Fs=function(e={},t){return o({service:T,scope:D.RUN_MANAGE,path:"/runs"},e,t)},qs=function(e,t,r){return o({service:T,scope:D.RUN_MANAGE,path:`/runs/${e}/cancel`,method:"POST"},t,r)},js=function(e,t,r){return o({service:T,scope:D.RUN_MANAGE,path:`/runs/${e}/log`},t,r)};var Us=de;var kt={};u(kt,{collections:()=>Ot,endpoint:()=>bt,getScopes:()=>Mn,https:()=>Pt,nodes:()=>xt,roles:()=>Dt,storageGateways:()=>At,userCredentials:()=>Mt,utils:()=>Lt,versioning:()=>wt});var Ot={};u(Ot,{create:()=>Bs,get:()=>Js,getAll:()=>Hs,patch:()=>Vs,remove:()=>$s,resetOwnerString:()=>Ws,update:()=>zs,updateOwnerString:()=>Ks});var Hs=function(e,t,r){return o({service:e,resource_server:e.endpoint_id,path:"/api/collections"},t,r)},Js=function(e,t,r,s){return o({service:e,resource_server:e.endpoint_id,path:`/api/collections/${t}`},r,s)},$s=function(e,t,r,s){return o({service:e,resource_server:e.endpoint_id,path:`/api/collections/${t}`,method:"DELETE"},r,s)},Bs=function(e,t,r){return o({service:e,resource_server:e.endpoint_id,path:"/api/collections",method:"POST"},t,r)},zs=function(e,t,r,s){return o({service:e,resource_server:e.endpoint_id,path:`/api/collections/${t}`,method:"PUT"},r,s)},Vs=function(e,t,r,s){return o({service:e,resource_server:e.endpoint_id,path:`/api/collections/${t}`,method:"PATCH"},r,s)},Ks=function(e,t,r,s){return o({service:e,resource_server:e.endpoint_id,path:`/api/collections/${t}/owner_string`,method:"PUT"},r,s)},Ws=function(e,t,r,s){return o({service:e,resource_server:e.endpoint_id,path:`/api/collections/${t}/owner_string`,method:"DELETE"},r,s)};var bt={};u(bt,{get:()=>Ys,patch:()=>Xs,resetOwnerString:()=>rn,update:()=>Qs,updateOwner:()=>en,updateOwnerString:()=>tn,updateSubscriptionId:()=>Zs});var Ys=function(e,t,r){return o({service:e,resource_server:e.endpoint_id,path:"/api/endpoint"},t,r)},Qs=function(e,t,r){return o({service:e,resource_server:e.endpoint_id,path:"/api/endpoint",method:"PUT"},t,r)},Xs=function(e,t,r){return o({service:e,resource_server:e.endpoint_id,path:"/api/endpoint",method:"PATCH"},t,r)},Zs=function(e,t,r){return o({service:e,resource_server:e.endpoint_id,path:"/api/endpoint/subscription_id",method:"PUT"},t,r)},en=function(e,t,r){return o({service:e,resource_server:e.endpoint_id,path:"/api/endpoint/owner",method:"PUT"},t,r)},tn=function(e,t,r){return o({service:e,resource_server:e.endpoint_id,path:"/api/endpoint/owner_string",method:"PUT"},t,r)},rn=function(e,t,r){return o({service:e,resource_server:e.endpoint_id,path:"/api/endpoint/owner_string",method:"DELETE"},t,r)};var Pt={};u(Pt,{get:()=>on,remove:()=>sn,update:()=>nn});var on=function(e,t,r,s){return o({service:e,resource_server:e.endpoint_id,path:t},r,s)},sn=function(e,t,r,s){return o({service:e,resource_server:e.endpoint_id,path:t,method:"DELETE"},r,s)},nn=function(e,t,r,s){return o({service:e,resource_server:e.endpoint_id,path:t,method:"PUT"},r,s)};var xt={};u(xt,{create:()=>un,get:()=>pn,getAll:()=>an,patch:()=>ln,remove:()=>cn,update:()=>dn});var an=function(e,t,r){return o({service:e,resource_server:e.endpoint_id,path:"/api/nodes"},t,r)},pn=function(e,t,r,s){return o({service:e,resource_server:e.endpoint_id,path:`/api/nodes/${t}`},r,s)},cn=function(e,t,r,s){return o({service:e,resource_server:e.endpoint_id,path:`/api/nodes/${t}`,method:"DELETE"},r,s)},un=function(e,t,r){return o({service:e,resource_server:e.endpoint_id,path:"/api/nodes",method:"POST"},t,r)},dn=function(e,t,r,s){return o({service:e,resource_server:e.endpoint_id,path:`/api/nodes/${t}`,method:"PUT"},r,s)},ln=function(e,t,r,s){return o({service:e,resource_server:e.endpoint_id,path:`/api/nodes/${t}`,method:"PATCH"},r,s)};var Dt={};u(Dt,{create:()=>gn,get:()=>hn,getAll:()=>mn,remove:()=>fn});var mn=function(e,t,r){return o({service:e,resource_server:e.endpoint_id,path:"/api/roles"},t,r)},hn=function(e,t,r,s){return o({service:e,resource_server:e.endpoint_id,path:`/api/roles/${t}`},r,s)},fn=function(e,t,r,s){return o({service:e,resource_server:e.endpoint_id,path:`/api/roles/${t}`,method:"DELETE"},r,s)},gn=function(e,t,r){return o({service:e,resource_server:e.endpoint_id,path:"/api/roles",method:"POST"},t,r)};var At={};u(At,{create:()=>_n,get:()=>Sn,getAll:()=>yn,patch:()=>Rn,remove:()=>vn,update:()=>Tn});var yn=function(e,t,r){return o({service:e,resource_server:e.endpoint_id,path:"/api/storage_gateways"},t,r)},Sn=function(e,t,r,s){return o({service:e,resource_server:e.endpoint_id,path:`/api/storage_gateways/${t}`},r,s)},vn=function(e,t,r,s){return o({service:e,resource_server:e.endpoint_id,path:`/api/storage_gateways/${t}`,method:"DELETE"},r,s)},_n=function(e,t,r){return o({service:e,resource_server:e.endpoint_id,path:"/api/storage_gateways",method:"POST"},t,r)},Tn=function(e,t,r,s){return o({service:e,resource_server:e.endpoint_id,path:`/api/storage_gateways/${t}`,method:"PUT"},r,s)},Rn=function(e,t,r,s){return o({service:e,resource_server:e.endpoint_id,path:`/api/storage_gateways/${t}`,method:"PATCH"},r,s)};var Mt={};u(Mt,{create:()=>Pn,get:()=>On,getAll:()=>En,patch:()=>Dn,remove:()=>bn,update:()=>xn});var En=function(e,t,r){return o({service:e,resource_server:e.endpoint_id,path:"/api/user_credentials"},t,r)},On=function(e,t,r,s){return o({service:e,resource_server:e.endpoint_id,path:`/api/user_credentials/${t}`},r,s)},bn=function(e,t,r,s){return o({service:e,resource_server:e.endpoint_id,path:`/api/user_credentials/${t}`,method:"DELETE"},r,s)},Pn=function(e,t,r){return o({service:e,resource_server:e.endpoint_id,path:"/api/user_credentials",method:"POST"},t,r)},xn=function(e,t,r,s){return o({service:e,resource_server:e.endpoint_id,path:`/api/user_credentials/${t}`,method:"PUT"},r,s)},Dn=function(e,t,r,s){return o({service:e,resource_server:e.endpoint_id,path:`/api/user_credentials/${t}`,method:"PATCH"},r,s)};var wt={};u(wt,{info:()=>Ct});var Ct=function(e,t,r){return o({service:e,path:"/api/info"},t,r)};var Lt={};u(Lt,{getEndpointIdFromURL:()=>An,getGCSDomainFromURL:()=>yr});var ie="data.globus.org";function yr(e){let{host:t}=typeof e=="string"?new URL(e):e;if(!t.endsWith(ie))return t;let[r]=t.split(`.${ie}`),s=r.split(".");return(s.length===2?[...s,ie]:[s[1],s[2],ie]).join(".")}async function An(e){let t=typeof e=="string"?new URL(e):e;if(!t.host.endsWith(ie))return null;let a=(await(await Ct({host:`https://${yr(t)}`})).json()).data?.filter(l=>l.DATA_TYPE.startsWith("info#"))[0];return a&&"endpoint_id"in a?a.endpoint_id:null}var Sr={HIGH_ASSURANCE:"urn:globus:auth:scope:<ENDPOINT_ID>:manage_collections",NON_HIGH_ASSURANCE:"urn:globus:auth:scope:<ENDPOINT_ID>:manage_collections[*https://auth.globus.org/scopes/<MAPPED_COLLECTION_ID>/data_access]"};function Mn(e,t){let{endpoint_id:r}=e;if(!r)throw new Error("An 'endpoint_id' is required to determine the required scopes");return t?Sr[t].replace("<ENDPOINT_ID>",r):Object.entries(Sr).reduce((s,[a,l])=>({...s,[a]:l.replace("<ENDPOINT_ID>",r)}),{})}var Nt={};u(Nt,{CONFIG:()=>Cn,create:()=>vr});var vr=function(e,t){return o({service:L,scope:"https://auth.globus.org/scopes/524230d7-ea86-4a52-8312-86065a9e0417/timer",path:"/v2/timer",method:"POST"},e,t)};var Cn=le;var Gt={};u(Gt,{CONFIG:()=>Nn,endpoints:()=>It});var It={};u(It,{get:()=>Ln,getAll:()=>wn,getStatus:()=>kn});var wn=function(e,t){return o({service:M,scope:Y.ALL,path:"/v2/endpoints",method:"GET"},e,t)},Ln=function(e,t,r){return o({service:M,scope:Y.ALL,path:`/v2/endpoints/${e}`,method:"GET"},t,r)},kn=function(e,t,r){return o({service:M,scope:Y.ALL,path:`/v2/endpoints/${e}/status`},t,r)};var Nn=fe;var Ft={};u(Ft,{HOSTS:()=>_r,host:()=>Tr,url:()=>Rr,urlFor:()=>Gn});var _r={integration:"app.integration.globuscs.info",sandbox:"app.sandbox.globuscs.info",test:"app.test.globuscs.info",staging:"app.staging.globuscs.info",preview:"app.preview.globus.org",production:"app.globus.org"};function Tr(e=z()){return _r[e]}function Rr(e,t){return new URL(e||"",`https://${Tr(t?.environment)}`)}var In={TASK:"/activity/%s/overview",COLLECTION:"/file-manager/collections/%s/overview",ENDPOINT:"/file-manager/collections/%s/overview"};function Gn(e,t,r){let s=In[e].replace(/%s/g,t?.join("/")||"");return Rr(s,r)}return Ir(Fn);})(); | ||
//# sourceMappingURL=globus.production.js.map |
{ | ||
"name": "@globus/sdk", | ||
"version": "5.2.0", | ||
"version": "5.3.0", | ||
"description": "The Globus SDK for JavaScript", | ||
@@ -5,0 +5,0 @@ "main": "dist/cjs/index.js", |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
1514353
14648