@globus/sdk 6.3.0 → 6.3.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (39) hide show
  1. package/dist/cjs/core/authorization/index.js +2 -2
  2. package/dist/cjs/core/authorization/index.js.map +2 -2
  3. package/dist/cjs/core/info/index.js +1 -1
  4. package/dist/cjs/core/info/index.js.map +1 -1
  5. package/dist/cjs/index.js +5 -5
  6. package/dist/cjs/index.js.map +2 -2
  7. package/dist/cjs/services/globus-connect-server/client.js +5 -5
  8. package/dist/cjs/services/globus-connect-server/client.js.map +2 -2
  9. package/dist/esm/core/info/version.d.ts +1 -1
  10. package/dist/esm/core/info/version.js +1 -1
  11. package/dist/esm/open-api/types/flows.d.ts +1 -405
  12. package/dist/esm/open-api/types/flows.d.ts.map +1 -1
  13. package/dist/esm/open-api/types/gcs/v5.4.d.ts +102 -1
  14. package/dist/esm/open-api/types/gcs/v5.4.d.ts.map +1 -1
  15. package/dist/esm/open-api/types/transfer.d.ts +10 -284
  16. package/dist/esm/open-api/types/transfer.d.ts.map +1 -1
  17. package/dist/esm/package.json +1 -1
  18. package/dist/esm/services/flows/service/flows.d.ts.map +1 -1
  19. package/dist/esm/services/flows/service/runs.d.ts.map +1 -1
  20. package/dist/esm/services/globus-connect-server/client.d.ts.map +1 -1
  21. package/dist/esm/services/globus-connect-server/service/collections.d.ts.map +1 -1
  22. package/dist/esm/services/globus-connect-server/service/endpoint.d.ts.map +1 -1
  23. package/dist/esm/services/globus-connect-server/service/https.js +3 -3
  24. package/dist/esm/services/globus-connect-server/service/https.js.map +1 -1
  25. package/dist/esm/services/globus-connect-server/service/nodes.d.ts.map +1 -1
  26. package/dist/esm/services/globus-connect-server/service/roles.d.ts.map +1 -1
  27. package/dist/esm/services/globus-connect-server/service/storage-gateways.d.ts.map +1 -1
  28. package/dist/esm/services/globus-connect-server/service/user-credentials.d.ts.map +1 -1
  29. package/dist/esm/services/globus-connect-server/service/versioning.d.ts.map +1 -1
  30. package/dist/esm/services/shared.js +1 -1
  31. package/dist/esm/services/shared.js.map +1 -1
  32. package/dist/esm/services/transfer/service/stream-access-point.d.ts.map +1 -1
  33. package/dist/esm/services/transfer/service/tunnel.d.ts.map +1 -1
  34. package/dist/esm/services/transfer/service/v2/bookmarks.d.ts.map +1 -1
  35. package/dist/esm/services/types.d.ts +1 -0
  36. package/dist/esm/services/types.d.ts.map +1 -1
  37. package/dist/umd/globus.production.js +1 -1
  38. package/dist/umd/globus.production.js.map +2 -2
  39. package/package.json +1 -1
@@ -1,2 +1,2 @@
1
- export declare const VERSION = "6.3.0";
1
+ export declare const VERSION = "6.3.1";
2
2
  //# sourceMappingURL=version.d.ts.map
@@ -1,4 +1,4 @@
1
1
  // x-release-please-start-version
2
- export const VERSION = '6.3.0';
2
+ export const VERSION = '6.3.1';
3
3
  // x-release-please-end
4
4
  //# sourceMappingURL=version.js.map
@@ -2117,326 +2117,13 @@ export interface paths {
2117
2117
  };
2118
2118
  };
2119
2119
  put?: never;
2120
- /**
2121
- * Create a Registered API
2122
- * @description Create a new Registered API.
2123
- */
2124
- post: {
2125
- parameters: {
2126
- query?: never;
2127
- header?: never;
2128
- path?: never;
2129
- cookie?: never;
2130
- };
2131
- requestBody: {
2132
- content: {
2133
- "application/json": {
2134
- /**
2135
- * @description A non-unique, human-friendly name used for displaying the
2136
- * Registered API to end users.
2137
- */
2138
- name: string;
2139
- /** @description A detailed description of the Registered API for end user display. */
2140
- description?: string;
2141
- /** @description The OpenAPI specification and configuration for the registered API. */
2142
- target: {
2143
- /** @enum {string} */
2144
- type: "openapi";
2145
- openapi_version: string;
2146
- destination: {
2147
- /** @enum {string} */
2148
- method: "get" | "head" | "post" | "put" | "delete" | "connect" | "options" | "trace" | "patch";
2149
- /** Format: uri */
2150
- url: string;
2151
- };
2152
- specification: {
2153
- [key: string]: unknown;
2154
- };
2155
- components?: {
2156
- [key: string]: unknown;
2157
- };
2158
- };
2159
- /** @description Access control roles for the Registered API. */
2160
- roles?: {
2161
- /**
2162
- * @description The set of Principal URN values of users and/or groups who own
2163
- * the Registered API.
2164
- */
2165
- owners?: components["schemas"]["PrincipalURN"][];
2166
- /**
2167
- * @description The set of Principal URN values of users and/or groups who may
2168
- * perform administrative operations on the Registered API.
2169
- */
2170
- administrators?: components["schemas"]["PrincipalURN"][];
2171
- /**
2172
- * @description The set of Principal URN values of users and/or groups who may
2173
- * view the Registered API.
2174
- */
2175
- viewers?: components["schemas"]["PrincipalURN"][];
2176
- };
2177
- /**
2178
- * Format: uuid
2179
- * @description A subscription to associate with this Registered API.
2180
- */
2181
- subscription_id: string;
2182
- };
2183
- };
2184
- };
2185
- responses: {
2186
- /** @description The Registered API was successfully created. */
2187
- 201: {
2188
- headers: {
2189
- [name: string]: unknown;
2190
- };
2191
- content: {
2192
- "application/json": components["schemas"]["RegisteredApi"];
2193
- };
2194
- };
2195
- /** @description The requestor attempted to create a malformed Registered API. */
2196
- 400: {
2197
- headers: {
2198
- [name: string]: unknown;
2199
- };
2200
- content?: never;
2201
- };
2202
- /** @description The requestor is not authorized to create a Registered API. */
2203
- 403: {
2204
- headers: {
2205
- [name: string]: unknown;
2206
- };
2207
- content?: never;
2208
- };
2209
- };
2210
- };
2120
+ post?: never;
2211
2121
  delete?: never;
2212
2122
  options?: never;
2213
2123
  head?: never;
2214
2124
  patch?: never;
2215
2125
  trace?: never;
2216
2126
  };
2217
- "/registered_apis/{registered_api_id}": {
2218
- parameters: {
2219
- query?: never;
2220
- header?: never;
2221
- path: {
2222
- /** @description The unique identifier for the Registered API. */
2223
- registered_api_id: string;
2224
- };
2225
- cookie?: never;
2226
- };
2227
- /**
2228
- * Get Registered API
2229
- * @description Retrieve details of a specific Registered API by its ID.
2230
- */
2231
- get: {
2232
- parameters: {
2233
- query?: never;
2234
- header?: never;
2235
- path: {
2236
- /** @description The unique identifier for the Registered API. */
2237
- registered_api_id: string;
2238
- };
2239
- cookie?: never;
2240
- };
2241
- requestBody?: never;
2242
- responses: {
2243
- /** @description Successfully retrieved the Registered API details. */
2244
- 200: {
2245
- headers: {
2246
- [name: string]: unknown;
2247
- };
2248
- content: {
2249
- "application/json": components["schemas"]["RegisteredApi"];
2250
- };
2251
- };
2252
- /**
2253
- * @description The requestor presented a token with insufficient scopes or lacks
2254
- * permission to view this Registered API.
2255
- */
2256
- 403: {
2257
- headers: {
2258
- [name: string]: unknown;
2259
- };
2260
- content?: never;
2261
- };
2262
- /** @description No Registered API exists with the specified ID. */
2263
- 404: {
2264
- headers: {
2265
- [name: string]: unknown;
2266
- };
2267
- content?: never;
2268
- };
2269
- };
2270
- };
2271
- put?: never;
2272
- post?: never;
2273
- /**
2274
- * Remove a Registered API
2275
- * @description Remove a Registered API from the Flows service.
2276
- */
2277
- delete: {
2278
- parameters: {
2279
- query?: never;
2280
- header?: never;
2281
- path: {
2282
- /** @description The unique identifier for the Registered API. */
2283
- registered_api_id: string;
2284
- };
2285
- cookie?: never;
2286
- };
2287
- requestBody?: never;
2288
- responses: {
2289
- /**
2290
- * @description The requestor has successfully removed the Registered API from the
2291
- * Flows service.
2292
- */
2293
- 200: {
2294
- headers: {
2295
- [name: string]: unknown;
2296
- };
2297
- content: {
2298
- "application/json": components["schemas"]["RegisteredApi"];
2299
- };
2300
- };
2301
- /**
2302
- * @description The requestor attempted to delete a Registered API for which they
2303
- * did not have access.
2304
- */
2305
- 403: {
2306
- headers: {
2307
- [name: string]: unknown;
2308
- };
2309
- content?: never;
2310
- };
2311
- /**
2312
- * @description The requestor attempted to delete a non-existent Registered API,
2313
- * or the requestor did not have permissions to delete it.
2314
- */
2315
- 404: {
2316
- headers: {
2317
- [name: string]: unknown;
2318
- };
2319
- content?: never;
2320
- };
2321
- };
2322
- };
2323
- options?: never;
2324
- head?: never;
2325
- /**
2326
- * Update a Registered API
2327
- * @description Modify a previously created Registered API. Only specified fields will be updated.
2328
- */
2329
- patch: {
2330
- parameters: {
2331
- query?: never;
2332
- header?: never;
2333
- path: {
2334
- /** @description The unique identifier for the Registered API. */
2335
- registered_api_id: string;
2336
- };
2337
- cookie?: never;
2338
- };
2339
- requestBody: {
2340
- content: {
2341
- "application/json": {
2342
- /**
2343
- * @description A non-unique, human-friendly name used for displaying the
2344
- * Registered API to end users.
2345
- */
2346
- name?: string;
2347
- /** @description A detailed description of the Registered API for end user display. */
2348
- description?: string;
2349
- /** @description The OpenAPI specification and configuration for the registered API. */
2350
- target?: {
2351
- /** @enum {string} */
2352
- type?: "openapi";
2353
- openapi_version?: string;
2354
- destination?: {
2355
- /** @enum {string} */
2356
- method?: "get" | "head" | "post" | "put" | "delete" | "connect" | "options" | "trace" | "patch";
2357
- /** Format: uri */
2358
- url?: string;
2359
- };
2360
- specification?: {
2361
- [key: string]: unknown;
2362
- };
2363
- components?: {
2364
- [key: string]: unknown;
2365
- };
2366
- };
2367
- /** @description Access control roles for the Registered API. */
2368
- roles?: {
2369
- /**
2370
- * @description The set of Principal URN values of users and/or groups who own
2371
- * the Registered API.
2372
- */
2373
- owners?: components["schemas"]["PrincipalURN"][];
2374
- /**
2375
- * @description The set of Principal URN values of users and/or groups who may
2376
- * perform administrative operations on the Registered API.
2377
- */
2378
- administrators?: components["schemas"]["PrincipalURN"][];
2379
- /**
2380
- * @description The set of Principal URN values of users and/or groups who may
2381
- * view the Registered API.
2382
- */
2383
- viewers?: components["schemas"]["PrincipalURN"][];
2384
- };
2385
- /**
2386
- * Format: uuid
2387
- * @description A subscription to associate with this Registered API.
2388
- */
2389
- subscription_id?: string;
2390
- };
2391
- };
2392
- };
2393
- responses: {
2394
- /**
2395
- * @description The requestor has successfully authenticated and updated the target
2396
- * Registered API.
2397
- */
2398
- 200: {
2399
- headers: {
2400
- [name: string]: unknown;
2401
- };
2402
- content: {
2403
- "application/json": components["schemas"]["RegisteredApi"];
2404
- };
2405
- };
2406
- /**
2407
- * @description The Registered API update failed due to an attempt to perform a
2408
- * malformed update.
2409
- */
2410
- 400: {
2411
- headers: {
2412
- [name: string]: unknown;
2413
- };
2414
- content?: never;
2415
- };
2416
- /**
2417
- * @description The requestor attempted to update a Registered API for which they
2418
- * did not have access.
2419
- */
2420
- 403: {
2421
- headers: {
2422
- [name: string]: unknown;
2423
- };
2424
- content?: never;
2425
- };
2426
- /**
2427
- * @description The requestor attempted to update a non-existent Registered API,
2428
- * or the requestor did not have permissions to update it.
2429
- */
2430
- 404: {
2431
- headers: {
2432
- [name: string]: unknown;
2433
- };
2434
- content?: never;
2435
- };
2436
- };
2437
- };
2438
- trace?: never;
2439
- };
2440
2127
  }
2441
2128
  export type webhooks = Record<string, never>;
2442
2129
  export interface components {
@@ -2939,97 +2626,6 @@ export interface components {
2939
2626
  */
2940
2627
  updated_timestamp: string;
2941
2628
  };
2942
- RegisteredApi: components["schemas"]["RegisteredApiSummary"] & {
2943
- /**
2944
- * @description Access control roles for the Registered API, mapping role names to
2945
- * lists of principal URNs.
2946
- */
2947
- roles: {
2948
- /** @description Principals with owner permissions on this Registered API. */
2949
- owners?: components["schemas"]["PrincipalURN"][];
2950
- /** @description Principals with administrator permissions on this Registered API. */
2951
- administrators?: components["schemas"]["PrincipalURN"][];
2952
- /** @description Principals with viewer permissions on this Registered API. */
2953
- viewers?: components["schemas"]["PrincipalURN"][];
2954
- };
2955
- /** @description The OpenAPI specification and configuration for the registered API. */
2956
- target: {
2957
- /**
2958
- * @description The type of API specification.
2959
- * @enum {string}
2960
- */
2961
- type: "openapi";
2962
- /** @description The OpenAPI specification version (e.g., "3.1"). */
2963
- openapi_version: string;
2964
- /** @description The target endpoint for API calls. */
2965
- destination: {
2966
- /**
2967
- * @description The HTTP method for the API call.
2968
- * @enum {string}
2969
- */
2970
- method: "get" | "post" | "put" | "patch" | "delete";
2971
- /**
2972
- * Format: uri
2973
- * @description The URL template for the API endpoint.
2974
- */
2975
- url: string;
2976
- };
2977
- /** @description The OpenAPI operation specification. */
2978
- specification: {
2979
- [key: string]: unknown;
2980
- };
2981
- /** @description OpenAPI components (schemas, etc.) referenced by the specification. */
2982
- components?: {
2983
- [key: string]: unknown;
2984
- };
2985
- };
2986
- /**
2987
- * @description Service-generated templates that map and transform the OpenAPI specification
2988
- * (target) to simplified parameter structures for use in flow definitions.
2989
- */
2990
- data_templates: {
2991
- /**
2992
- * @description Template defining how to map simplified flow parameters to the
2993
- * OpenAPI request structure.
2994
- */
2995
- request: {
2996
- [key: string]: unknown;
2997
- };
2998
- /** @description Template defining how to map the API response back to flow state. */
2999
- response: {
3000
- [key: string]: unknown;
3001
- };
3002
- };
3003
- /**
3004
- * @description Service-generated JSON Schema defining the input state required for this
3005
- * Registered API when used in a flow.
3006
- */
3007
- state_input_schema: {
3008
- [key: string]: unknown;
3009
- };
3010
- /**
3011
- * @description The current status of the Registered API.
3012
- * @enum {string}
3013
- */
3014
- status: "ACTIVE" | "INACTIVE";
3015
- /**
3016
- * Format: uuid
3017
- * @description The subscription ID associated with this Registered API.
3018
- */
3019
- subscription_id: string | null;
3020
- /**
3021
- * Format: date-time
3022
- * @description A timezone-aware ISO8601 format string that represents the time at
3023
- * which the Registered API was last edited.
3024
- */
3025
- edited_timestamp?: string | null;
3026
- /**
3027
- * Format: date-time
3028
- * @description A timezone-aware ISO8601 format string that represents the time at
3029
- * which the Registered API is scheduled for deletion.
3030
- */
3031
- scheduled_deletion_timestamp?: string | null;
3032
- };
3033
2629
  BatchRunUpdateOperation: {
3034
2630
  tags?: string[];
3035
2631
  run_managers?: components["schemas"]["PrincipalURN"][];