@globus/sdk 6.3.1 → 6.4.0

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 (50) hide show
  1. package/README.md +5 -4
  2. package/dist/cjs/core/authorization/index.js +1 -1
  3. package/dist/cjs/core/authorization/index.js.map +1 -1
  4. package/dist/cjs/core/info/index.js +1 -1
  5. package/dist/cjs/core/info/index.js.map +1 -1
  6. package/dist/cjs/index.js +143 -59
  7. package/dist/cjs/index.js.map +4 -4
  8. package/dist/cjs/services/globus-connect-server/client.js +1 -1
  9. package/dist/cjs/services/globus-connect-server/client.js.map +1 -1
  10. package/dist/esm/core/info/version.d.ts +1 -1
  11. package/dist/esm/core/info/version.js +1 -1
  12. package/dist/esm/open-api/types/compute.d.ts +372 -394
  13. package/dist/esm/open-api/types/compute.d.ts.map +1 -1
  14. package/dist/esm/open-api/types/flows.d.ts +1009 -194
  15. package/dist/esm/open-api/types/flows.d.ts.map +1 -1
  16. package/dist/esm/open-api/types/search.d.ts +157 -10
  17. package/dist/esm/open-api/types/search.d.ts.map +1 -1
  18. package/dist/esm/open-api/types/transfer.d.ts +8 -6
  19. package/dist/esm/open-api/types/transfer.d.ts.map +1 -1
  20. package/dist/esm/package.json +1 -1
  21. package/dist/esm/services/compute/service/endpoints.d.ts +19 -15
  22. package/dist/esm/services/compute/service/endpoints.d.ts.map +1 -1
  23. package/dist/esm/services/flows/config.d.ts +2 -0
  24. package/dist/esm/services/flows/config.d.ts.map +1 -1
  25. package/dist/esm/services/flows/config.js +2 -0
  26. package/dist/esm/services/flows/config.js.map +1 -1
  27. package/dist/esm/services/flows/index.d.ts +1 -0
  28. package/dist/esm/services/flows/index.d.ts.map +1 -1
  29. package/dist/esm/services/flows/index.js +1 -0
  30. package/dist/esm/services/flows/index.js.map +1 -1
  31. package/dist/esm/services/flows/service/flows.d.ts +1 -0
  32. package/dist/esm/services/flows/service/flows.d.ts.map +1 -1
  33. package/dist/esm/services/flows/service/runs.d.ts +4 -0
  34. package/dist/esm/services/flows/service/runs.d.ts.map +1 -1
  35. package/dist/esm/services/flows/service/web-inputs.d.ts +63 -0
  36. package/dist/esm/services/flows/service/web-inputs.d.ts.map +1 -0
  37. package/dist/esm/services/flows/service/web-inputs.js +54 -0
  38. package/dist/esm/services/flows/service/web-inputs.js.map +1 -0
  39. package/dist/esm/services/search/service/task.d.ts.map +1 -1
  40. package/dist/esm/services/transfer/index.d.ts +1 -0
  41. package/dist/esm/services/transfer/index.d.ts.map +1 -1
  42. package/dist/esm/services/transfer/index.js.map +1 -1
  43. package/dist/esm/services/transfer/service/stream-access-point.d.ts.map +1 -1
  44. package/dist/esm/services/transfer/service/tunnel.d.ts.map +1 -1
  45. package/dist/esm/services/transfer/service/tunnel.js +26 -6
  46. package/dist/esm/services/transfer/service/tunnel.js.map +1 -1
  47. package/dist/esm/services/transfer/service/v2/bookmarks.d.ts.map +1 -1
  48. package/dist/umd/globus.production.js +2 -2
  49. package/dist/umd/globus.production.js.map +4 -4
  50. package/package.json +2 -2
@@ -43,7 +43,7 @@ function toString(info) {
43
43
  }
44
44
 
45
45
  // src/core/info/version.ts
46
- var VERSION = "6.3.1";
46
+ var VERSION = "6.4.0";
47
47
 
48
48
  // src/core/info/index.ts
49
49
  var VERSION2 = VERSION;
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "version": 3,
3
3
  "sources": ["../../../../src/core/info/index.ts", "../../../../src/core/info/private.ts", "../../../../src/core/info/version.ts"],
4
- "sourcesContent": ["/**\n * @module Information\n * @description This module is mostly intended for internal use, but can be helpful\n * identifying information about the SDK package you are using at runtime.\n */\nimport { toString, isEnabled, CLIENT_INFO_HEADER } from './private.js';\nimport { VERSION as _VERSION } from './version.js';\n\nexport type Version = string;\n\n/**\n * The version of the `@globus/sdk` package that is in use.\n */\nexport const VERSION: Version = _VERSION;\n\nexport type Info = {\n product: string;\n version: Version;\n};\n\n/**\n * The client information identifier for this package.\n */\nexport const CLIENT_INFO: Info = {\n product: 'javascript-sdk',\n version: VERSION,\n};\n\nlet INFOS: Info[] = [CLIENT_INFO];\n\n/**\n * Add a client information identifier to the existing SDK information.\n */\nexport function addClientInfo(info: Info) {\n INFOS = INFOS.concat(info);\n}\n/**\n * Get the current client information as a string.\n */\nexport function getClientInfo(): string {\n return toString(INFOS);\n}\n\nexport function getClientInfoRequestHeaders(): Record<string, string> {\n if (!isEnabled()) {\n return {};\n }\n return {\n [CLIENT_INFO_HEADER]: getClientInfo(),\n };\n}\n", "import type { Info } from './index.js';\n\n/**\n * @private\n */\nexport const CLIENT_INFO_HEADER = `X-Globus-Client-Info`;\n\nlet ENABLED = true;\n/**\n * Disable the client information header from being included in requests (enabled by default).\n * @private\n */\nexport function disable() {\n ENABLED = false;\n}\n\n/**\n * Enables the client information header to be included in requests.\n * @private\n */\nexport function enable() {\n ENABLED = true;\n}\n\n/**\n * Whether or not the client information header should be sent with requests.\n * @private\n */\nexport function isEnabled() {\n return ENABLED;\n}\n\nconst INFOS_SEPERATOR = ';';\nconst INFO_ITEM_SEPARATOR = ',';\n\n/**\n * Exported for test purposes only.\n * @private\n */\nexport function toString(info: Info | Info[]) {\n const infos = Array.isArray(info) ? info : [info];\n return infos\n .map((i) =>\n Object.entries(i)\n .map(([key, value]) => `${key}=${value}`)\n .join(INFO_ITEM_SEPARATOR),\n )\n .join(INFOS_SEPERATOR);\n}\n", "// x-release-please-start-version\nexport const VERSION = '6.3.1';\n// x-release-please-end\n"],
4
+ "sourcesContent": ["/**\n * @module Information\n * @description This module is mostly intended for internal use, but can be helpful\n * identifying information about the SDK package you are using at runtime.\n */\nimport { toString, isEnabled, CLIENT_INFO_HEADER } from './private.js';\nimport { VERSION as _VERSION } from './version.js';\n\nexport type Version = string;\n\n/**\n * The version of the `@globus/sdk` package that is in use.\n */\nexport const VERSION: Version = _VERSION;\n\nexport type Info = {\n product: string;\n version: Version;\n};\n\n/**\n * The client information identifier for this package.\n */\nexport const CLIENT_INFO: Info = {\n product: 'javascript-sdk',\n version: VERSION,\n};\n\nlet INFOS: Info[] = [CLIENT_INFO];\n\n/**\n * Add a client information identifier to the existing SDK information.\n */\nexport function addClientInfo(info: Info) {\n INFOS = INFOS.concat(info);\n}\n/**\n * Get the current client information as a string.\n */\nexport function getClientInfo(): string {\n return toString(INFOS);\n}\n\nexport function getClientInfoRequestHeaders(): Record<string, string> {\n if (!isEnabled()) {\n return {};\n }\n return {\n [CLIENT_INFO_HEADER]: getClientInfo(),\n };\n}\n", "import type { Info } from './index.js';\n\n/**\n * @private\n */\nexport const CLIENT_INFO_HEADER = `X-Globus-Client-Info`;\n\nlet ENABLED = true;\n/**\n * Disable the client information header from being included in requests (enabled by default).\n * @private\n */\nexport function disable() {\n ENABLED = false;\n}\n\n/**\n * Enables the client information header to be included in requests.\n * @private\n */\nexport function enable() {\n ENABLED = true;\n}\n\n/**\n * Whether or not the client information header should be sent with requests.\n * @private\n */\nexport function isEnabled() {\n return ENABLED;\n}\n\nconst INFOS_SEPERATOR = ';';\nconst INFO_ITEM_SEPARATOR = ',';\n\n/**\n * Exported for test purposes only.\n * @private\n */\nexport function toString(info: Info | Info[]) {\n const infos = Array.isArray(info) ? info : [info];\n return infos\n .map((i) =>\n Object.entries(i)\n .map(([key, value]) => `${key}=${value}`)\n .join(INFO_ITEM_SEPARATOR),\n )\n .join(INFOS_SEPERATOR);\n}\n", "// x-release-please-start-version\nexport const VERSION = '6.4.0';\n// x-release-please-end\n"],
5
5
  "mappings": ";;;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA,iBAAAA;AAAA,EAAA;AAAA;AAAA;AAAA;AAAA;;;ACKO,IAAM,qBAAqB;AAElC,IAAI,UAAU;AAqBP,SAAS,YAAY;AAC1B,SAAO;AACT;AAEA,IAAM,kBAAkB;AACxB,IAAM,sBAAsB;AAMrB,SAAS,SAAS,MAAqB;AAC5C,QAAM,QAAQ,MAAM,QAAQ,IAAI,IAAI,OAAO,CAAC,IAAI;AAChD,SAAO,MACJ;AAAA,IAAI,CAAC,MACJ,OAAO,QAAQ,CAAC,EACb,IAAI,CAAC,CAAC,KAAK,KAAK,MAAM,GAAG,GAAG,IAAI,KAAK,EAAE,EACvC,KAAK,mBAAmB;AAAA,EAC7B,EACC,KAAK,eAAe;AACzB;;;AC/CO,IAAM,UAAU;;;AFYhB,IAAMC,WAAmB;AAUzB,IAAM,cAAoB;AAAA,EAC/B,SAAS;AAAA,EACT,SAASA;AACX;AAEA,IAAI,QAAgB,CAAC,WAAW;AAKzB,SAAS,cAAc,MAAY;AACxC,UAAQ,MAAM,OAAO,IAAI;AAC3B;AAIO,SAAS,gBAAwB;AACtC,SAAO,SAAS,KAAK;AACvB;AAEO,SAAS,8BAAsD;AACpE,MAAI,CAAC,UAAU,GAAG;AAChB,WAAO,CAAC;AAAA,EACV;AACA,SAAO;AAAA,IACL,CAAC,kBAAkB,GAAG,cAAc;AAAA,EACtC;AACF;",
6
6
  "names": ["VERSION", "VERSION"]
7
7
  }
package/dist/cjs/index.js CHANGED
@@ -72,7 +72,7 @@ function toString(info2) {
72
72
  }
73
73
 
74
74
  // src/core/info/version.ts
75
- var VERSION = "6.3.1";
75
+ var VERSION = "6.4.0";
76
76
 
77
77
  // src/core/info/index.ts
78
78
  var VERSION2 = VERSION;
@@ -196,7 +196,9 @@ var SCOPES2 = {
196
196
  VIEW_FLOWS: "https://auth.globus.org/scopes/eec9b274-0c81-4334-bdc2-54e90e689b9a/view_flows",
197
197
  RUN: "https://auth.globus.org/scopes/eec9b274-0c81-4334-bdc2-54e90e689b9a/run",
198
198
  RUN_STATUS: "https://auth.globus.org/scopes/eec9b274-0c81-4334-bdc2-54e90e689b9a/run_status",
199
- RUN_MANAGE: "https://auth.globus.org/scopes/eec9b274-0c81-4334-bdc2-54e90e689b9a/run_manage"
199
+ RUN_MANAGE: "https://auth.globus.org/scopes/eec9b274-0c81-4334-bdc2-54e90e689b9a/run_manage",
200
+ WEB_INPUT_VIEW: "https://auth.globus.org/scopes/eec9b274-0c81-4334-bdc2-54e90e689b9a/web_input_view",
201
+ WEB_INPUT_RESPOND: "https://auth.globus.org/scopes/eec9b274-0c81-4334-bdc2-54e90e689b9a/web_input_respond"
200
202
  };
201
203
 
202
204
  // src/services/timers/config.ts
@@ -3253,7 +3255,7 @@ var start = function(tunnel_uuid, options, sdkOptions) {
3253
3255
  path: `/v2/tunnels/${tunnel_uuid}`,
3254
3256
  method: "PATCH" /* PATCH */
3255
3257
  },
3256
- { payload: { data: { attributes: { ...options.payload } } } },
3258
+ { payload: { data: { type: "Tunnel", id: tunnel_uuid, attributes: { ...options.payload } } } },
3257
3259
  sdkOptions
3258
3260
  );
3259
3261
  };
@@ -3265,7 +3267,15 @@ var stop = function(tunnel_uuid, options = {}, sdkOptions) {
3265
3267
  path: `/v2/tunnels/${tunnel_uuid}`,
3266
3268
  method: "PATCH" /* PATCH */
3267
3269
  },
3268
- { payload: { data: { attributes: { ...options.payload, state: "STOPPING" } } } },
3270
+ {
3271
+ payload: {
3272
+ data: {
3273
+ type: "Tunnel",
3274
+ id: tunnel_uuid,
3275
+ attributes: { ...options.payload, state: "STOPPING" }
3276
+ }
3277
+ }
3278
+ },
3269
3279
  sdkOptions
3270
3280
  );
3271
3281
  };
@@ -3300,7 +3310,13 @@ var next17 = {
3300
3310
  ...payload,
3301
3311
  request: {
3302
3312
  ...payload?.request,
3303
- data: { data: { attributes: payload?.request?.data } }
3313
+ data: {
3314
+ data: {
3315
+ type: "Tunnel",
3316
+ id: payload.request?.data?.["id"],
3317
+ attributes: payload?.request?.data
3318
+ }
3319
+ }
3304
3320
  }
3305
3321
  })
3306
3322
  }).generate(),
@@ -3325,7 +3341,13 @@ var next17 = {
3325
3341
  ...payload,
3326
3342
  request: {
3327
3343
  ...payload?.request,
3328
- data: { data: { attributes: { ...payload?.request?.data, state: "STOPPING" } } }
3344
+ data: {
3345
+ data: {
3346
+ type: "Tunnel",
3347
+ id: payload.request?.data?.["id"],
3348
+ attributes: { ...payload?.request?.data, state: "STOPPING" }
3349
+ }
3350
+ }
3329
3351
  }
3330
3352
  })
3331
3353
  }).generate(),
@@ -4392,7 +4414,8 @@ var flows_exports2 = {};
4392
4414
  __export(flows_exports2, {
4393
4415
  CONFIG: () => CONFIG5,
4394
4416
  flows: () => flows_exports,
4395
- runs: () => runs_exports
4417
+ runs: () => runs_exports,
4418
+ webInputs: () => web_inputs_exports
4396
4419
  });
4397
4420
 
4398
4421
  // src/services/flows/service/flows.ts
@@ -4668,6 +4691,67 @@ var next33 = {
4668
4691
  }).generate()
4669
4692
  };
4670
4693
 
4694
+ // src/services/flows/service/web-inputs.ts
4695
+ var web_inputs_exports = {};
4696
+ __export(web_inputs_exports, {
4697
+ get: () => get27,
4698
+ getAll: () => getAll22,
4699
+ next: () => next34,
4700
+ respond: () => respond
4701
+ });
4702
+ var get27 = function(web_input_id, options, sdkOptions) {
4703
+ return serviceRequest(
4704
+ {
4705
+ service: ID2,
4706
+ scope: SCOPES2.WEB_INPUT_VIEW,
4707
+ path: `/web_inputs/${web_input_id}`
4708
+ },
4709
+ options,
4710
+ sdkOptions
4711
+ );
4712
+ };
4713
+ var getAll22 = function(options, sdkOptions) {
4714
+ return serviceRequest(
4715
+ {
4716
+ service: ID2,
4717
+ scope: SCOPES2.WEB_INPUT_VIEW,
4718
+ path: `/web_inputs`
4719
+ },
4720
+ options,
4721
+ sdkOptions
4722
+ );
4723
+ };
4724
+ var respond = function(web_input_id, options, sdkOptions) {
4725
+ return serviceRequest(
4726
+ {
4727
+ service: ID2,
4728
+ scope: SCOPES2.WEB_INPUT_RESPOND,
4729
+ path: `/web_inputs/${web_input_id}/respond`,
4730
+ method: "POST" /* POST */
4731
+ },
4732
+ options,
4733
+ sdkOptions
4734
+ );
4735
+ };
4736
+ var next34 = {
4737
+ get: createServiceMethodFactory({
4738
+ service: ID2,
4739
+ resource_server: RESOURCE_SERVERS.FLOWS,
4740
+ path: `/web_inputs/{web_input_id}`
4741
+ }).generate(),
4742
+ getAll: createServiceMethodFactory({
4743
+ service: ID2,
4744
+ resource_server: RESOURCE_SERVERS.FLOWS,
4745
+ path: `/web_inputs`
4746
+ }).generate(),
4747
+ respond: createServiceMethodFactory({
4748
+ service: ID2,
4749
+ resource_server: RESOURCE_SERVERS.FLOWS,
4750
+ path: `/web_inputs/{web_input_id}/respond`,
4751
+ method: "POST" /* POST */
4752
+ }).generate()
4753
+ };
4754
+
4671
4755
  // src/services/flows/index.ts
4672
4756
  var CONFIG5 = config_exports2;
4673
4757
 
@@ -4690,16 +4774,16 @@ __export(globus_connect_server_exports, {
4690
4774
  var collections_exports = {};
4691
4775
  __export(collections_exports, {
4692
4776
  create: () => create18,
4693
- get: () => get27,
4694
- getAll: () => getAll22,
4695
- next: () => next34,
4777
+ get: () => get28,
4778
+ getAll: () => getAll23,
4779
+ next: () => next35,
4696
4780
  patch: () => patch,
4697
4781
  remove: () => remove19,
4698
4782
  resetOwnerString: () => resetOwnerString,
4699
4783
  update: () => update15,
4700
4784
  updateOwnerString: () => updateOwnerString
4701
4785
  });
4702
- var getAll22 = function(configuration, options, sdkOptions) {
4786
+ var getAll23 = function(configuration, options, sdkOptions) {
4703
4787
  return serviceRequest(
4704
4788
  {
4705
4789
  service: configuration,
@@ -4710,7 +4794,7 @@ var getAll22 = function(configuration, options, sdkOptions) {
4710
4794
  sdkOptions
4711
4795
  );
4712
4796
  };
4713
- var get27 = function(configuration, collection_id, options, sdkOptions) {
4797
+ var get28 = function(configuration, collection_id, options, sdkOptions) {
4714
4798
  return serviceRequest(
4715
4799
  {
4716
4800
  service: configuration,
@@ -4793,7 +4877,7 @@ var resetOwnerString = function(configuration, collection_id, options, sdkOption
4793
4877
  sdkOptions
4794
4878
  );
4795
4879
  };
4796
- var next34 = {
4880
+ var next35 = {
4797
4881
  getAll: createGCSServiceMethodFactory({
4798
4882
  path: `/api/collections`
4799
4883
  }).generate(),
@@ -4829,8 +4913,8 @@ var next34 = {
4829
4913
  // src/services/globus-connect-server/service/endpoint.ts
4830
4914
  var endpoint_exports3 = {};
4831
4915
  __export(endpoint_exports3, {
4832
- get: () => get28,
4833
- next: () => next35,
4916
+ get: () => get29,
4917
+ next: () => next36,
4834
4918
  patch: () => patch2,
4835
4919
  resetOwnerString: () => resetOwnerString2,
4836
4920
  update: () => update16,
@@ -4838,7 +4922,7 @@ __export(endpoint_exports3, {
4838
4922
  updateOwnerString: () => updateOwnerString2,
4839
4923
  updateSubscriptionId: () => updateSubscriptionId
4840
4924
  });
4841
- var get28 = function(configuration, options, sdkOptions) {
4925
+ var get29 = function(configuration, options, sdkOptions) {
4842
4926
  return serviceRequest(
4843
4927
  {
4844
4928
  service: configuration,
@@ -4921,7 +5005,7 @@ var resetOwnerString2 = function(configuration, options, sdkOptions) {
4921
5005
  sdkOptions
4922
5006
  );
4923
5007
  };
4924
- var next35 = {
5008
+ var next36 = {
4925
5009
  get: createGCSServiceMethodFactory({
4926
5010
  path: `/api/endpoint`
4927
5011
  }).generate(),
@@ -4954,11 +5038,11 @@ var next35 = {
4954
5038
  // src/services/globus-connect-server/service/https.ts
4955
5039
  var https_exports = {};
4956
5040
  __export(https_exports, {
4957
- get: () => get29,
5041
+ get: () => get30,
4958
5042
  remove: () => remove20,
4959
5043
  update: () => update17
4960
5044
  });
4961
- var get29 = function(configuration, path, options, sdkOptions) {
5045
+ var get30 = function(configuration, path, options, sdkOptions) {
4962
5046
  return serviceRequest(
4963
5047
  {
4964
5048
  service: configuration,
@@ -4998,14 +5082,14 @@ var update17 = function(configuration, path, options, sdkOptions) {
4998
5082
  var nodes_exports = {};
4999
5083
  __export(nodes_exports, {
5000
5084
  create: () => create19,
5001
- get: () => get30,
5002
- getAll: () => getAll23,
5003
- next: () => next36,
5085
+ get: () => get31,
5086
+ getAll: () => getAll24,
5087
+ next: () => next37,
5004
5088
  patch: () => patch3,
5005
5089
  remove: () => remove21,
5006
5090
  update: () => update18
5007
5091
  });
5008
- var getAll23 = function(configuration, options, sdkOptions) {
5092
+ var getAll24 = function(configuration, options, sdkOptions) {
5009
5093
  return serviceRequest(
5010
5094
  {
5011
5095
  service: configuration,
@@ -5016,7 +5100,7 @@ var getAll23 = function(configuration, options, sdkOptions) {
5016
5100
  sdkOptions
5017
5101
  );
5018
5102
  };
5019
- var get30 = function(configuration, node_id, options, sdkOptions) {
5103
+ var get31 = function(configuration, node_id, options, sdkOptions) {
5020
5104
  return serviceRequest(
5021
5105
  {
5022
5106
  service: configuration,
@@ -5075,7 +5159,7 @@ var patch3 = function(configuration, node_id, options, sdkOptions) {
5075
5159
  sdkOptions
5076
5160
  );
5077
5161
  };
5078
- var next36 = {
5162
+ var next37 = {
5079
5163
  getAll: createGCSServiceMethodFactory({
5080
5164
  path: `/api/nodes`
5081
5165
  }).generate(),
@@ -5104,12 +5188,12 @@ var next36 = {
5104
5188
  var roles_exports3 = {};
5105
5189
  __export(roles_exports3, {
5106
5190
  create: () => create20,
5107
- get: () => get31,
5108
- getAll: () => getAll24,
5109
- next: () => next37,
5191
+ get: () => get32,
5192
+ getAll: () => getAll25,
5193
+ next: () => next38,
5110
5194
  remove: () => remove22
5111
5195
  });
5112
- var getAll24 = function(configuration, options, sdkOptions) {
5196
+ var getAll25 = function(configuration, options, sdkOptions) {
5113
5197
  return serviceRequest(
5114
5198
  {
5115
5199
  service: configuration,
@@ -5120,7 +5204,7 @@ var getAll24 = function(configuration, options, sdkOptions) {
5120
5204
  sdkOptions
5121
5205
  );
5122
5206
  };
5123
- var get31 = function(configuration, role_id, options, sdkOptions) {
5207
+ var get32 = function(configuration, role_id, options, sdkOptions) {
5124
5208
  return serviceRequest(
5125
5209
  {
5126
5210
  service: configuration,
@@ -5155,7 +5239,7 @@ var create20 = function(configuration, options, sdkOptions) {
5155
5239
  sdkOptions
5156
5240
  );
5157
5241
  };
5158
- var next37 = {
5242
+ var next38 = {
5159
5243
  getAll: createGCSServiceMethodFactory({
5160
5244
  path: `/api/roles`
5161
5245
  }).generate(),
@@ -5176,14 +5260,14 @@ var next37 = {
5176
5260
  var storage_gateways_exports = {};
5177
5261
  __export(storage_gateways_exports, {
5178
5262
  create: () => create21,
5179
- get: () => get32,
5180
- getAll: () => getAll25,
5181
- next: () => next38,
5263
+ get: () => get33,
5264
+ getAll: () => getAll26,
5265
+ next: () => next39,
5182
5266
  patch: () => patch4,
5183
5267
  remove: () => remove23,
5184
5268
  update: () => update19
5185
5269
  });
5186
- var getAll25 = function(configuration, options, sdkOptions) {
5270
+ var getAll26 = function(configuration, options, sdkOptions) {
5187
5271
  return serviceRequest(
5188
5272
  {
5189
5273
  service: configuration,
@@ -5194,7 +5278,7 @@ var getAll25 = function(configuration, options, sdkOptions) {
5194
5278
  sdkOptions
5195
5279
  );
5196
5280
  };
5197
- var get32 = function(configuration, storage_gateway_id, options, sdkOptions) {
5281
+ var get33 = function(configuration, storage_gateway_id, options, sdkOptions) {
5198
5282
  return serviceRequest(
5199
5283
  {
5200
5284
  service: configuration,
@@ -5253,7 +5337,7 @@ var patch4 = function(configuration, storage_gateway_id, options, sdkOptions) {
5253
5337
  sdkOptions
5254
5338
  );
5255
5339
  };
5256
- var next38 = {
5340
+ var next39 = {
5257
5341
  getAll: createGCSServiceMethodFactory({
5258
5342
  path: `/api/storage_gateways`
5259
5343
  }).generate(),
@@ -5282,14 +5366,14 @@ var next38 = {
5282
5366
  var user_credentials_exports = {};
5283
5367
  __export(user_credentials_exports, {
5284
5368
  create: () => create22,
5285
- get: () => get33,
5286
- getAll: () => getAll26,
5287
- next: () => next39,
5369
+ get: () => get34,
5370
+ getAll: () => getAll27,
5371
+ next: () => next40,
5288
5372
  patch: () => patch5,
5289
5373
  remove: () => remove24,
5290
5374
  update: () => update20
5291
5375
  });
5292
- var getAll26 = function(configuration, options, sdkOptions) {
5376
+ var getAll27 = function(configuration, options, sdkOptions) {
5293
5377
  return serviceRequest(
5294
5378
  {
5295
5379
  service: configuration,
@@ -5300,7 +5384,7 @@ var getAll26 = function(configuration, options, sdkOptions) {
5300
5384
  sdkOptions
5301
5385
  );
5302
5386
  };
5303
- var get33 = function(configuration, user_credential_id, options, sdkOptions) {
5387
+ var get34 = function(configuration, user_credential_id, options, sdkOptions) {
5304
5388
  return serviceRequest(
5305
5389
  {
5306
5390
  service: configuration,
@@ -5359,7 +5443,7 @@ var patch5 = function(configuration, user_credential_id, options, sdkOptions) {
5359
5443
  sdkOptions
5360
5444
  );
5361
5445
  };
5362
- var next39 = {
5446
+ var next40 = {
5363
5447
  getAll: createGCSServiceMethodFactory({
5364
5448
  path: `/api/user_credentials`
5365
5449
  }).generate(),
@@ -5388,7 +5472,7 @@ var next39 = {
5388
5472
  var versioning_exports = {};
5389
5473
  __export(versioning_exports, {
5390
5474
  info: () => info,
5391
- next: () => next40
5475
+ next: () => next41
5392
5476
  });
5393
5477
  var info = function(configuration, options, sdkOptions) {
5394
5478
  return serviceRequest(
@@ -5400,7 +5484,7 @@ var info = function(configuration, options, sdkOptions) {
5400
5484
  sdkOptions
5401
5485
  );
5402
5486
  };
5403
- var next40 = {
5487
+ var next41 = {
5404
5488
  info: createGCSServiceMethodFactory({
5405
5489
  path: `/api/info`
5406
5490
  }).generate()
@@ -5469,7 +5553,7 @@ __export(timers_exports, {
5469
5553
  var timer_exports = {};
5470
5554
  __export(timer_exports, {
5471
5555
  create: () => create23,
5472
- next: () => next41
5556
+ next: () => next42
5473
5557
  });
5474
5558
  var create23 = function(options, sdkOptions) {
5475
5559
  return serviceRequest(
@@ -5483,7 +5567,7 @@ var create23 = function(options, sdkOptions) {
5483
5567
  sdkOptions
5484
5568
  );
5485
5569
  };
5486
- var next41 = {
5570
+ var next42 = {
5487
5571
  create: createServiceMethodFactory({
5488
5572
  service: ID3,
5489
5573
  resource_server: RESOURCE_SERVERS.TIMERS,
@@ -5495,15 +5579,15 @@ var next41 = {
5495
5579
  // src/services/timers/service/jobs/index.ts
5496
5580
  var jobs_exports = {};
5497
5581
  __export(jobs_exports, {
5498
- get: () => get34,
5499
- getAll: () => getAll27,
5500
- next: () => next42,
5582
+ get: () => get35,
5583
+ getAll: () => getAll28,
5584
+ next: () => next43,
5501
5585
  patch: () => patch6,
5502
5586
  pause: () => pause2,
5503
5587
  remove: () => remove25,
5504
5588
  resume: () => resume2
5505
5589
  });
5506
- var getAll27 = function(options, sdkOptions) {
5590
+ var getAll28 = function(options, sdkOptions) {
5507
5591
  return serviceRequest(
5508
5592
  {
5509
5593
  service: ID3,
@@ -5515,7 +5599,7 @@ var getAll27 = function(options, sdkOptions) {
5515
5599
  sdkOptions
5516
5600
  );
5517
5601
  };
5518
- var get34 = function(job_id, options, sdkOptions) {
5602
+ var get35 = function(job_id, options, sdkOptions) {
5519
5603
  return serviceRequest(
5520
5604
  {
5521
5605
  service: ID3,
@@ -5575,7 +5659,7 @@ var remove25 = function(job_id, options, sdkOptions) {
5575
5659
  sdkOptions
5576
5660
  );
5577
5661
  };
5578
- var next42 = {
5662
+ var next43 = {
5579
5663
  getAll: createServiceMethodFactory({
5580
5664
  service: ID3,
5581
5665
  resource_server: RESOURCE_SERVERS.TIMERS,
@@ -5625,14 +5709,14 @@ __export(compute_exports, {
5625
5709
  // src/services/compute/service/endpoints.ts
5626
5710
  var endpoints_exports = {};
5627
5711
  __export(endpoints_exports, {
5628
- get: () => get35,
5629
- getAll: () => getAll28,
5712
+ get: () => get36,
5713
+ getAll: () => getAll29,
5630
5714
  getStatus: () => getStatus,
5631
- next: () => next43,
5715
+ next: () => next44,
5632
5716
  remove: () => remove26,
5633
5717
  update: () => update21
5634
5718
  });
5635
- var getAll28 = function(options, sdkOptions) {
5719
+ var getAll29 = function(options, sdkOptions) {
5636
5720
  return serviceRequest(
5637
5721
  {
5638
5722
  service: ID6,
@@ -5644,7 +5728,7 @@ var getAll28 = function(options, sdkOptions) {
5644
5728
  sdkOptions
5645
5729
  );
5646
5730
  };
5647
- var get35 = function(endpoint_uuid, options, sdkOptions) {
5731
+ var get36 = function(endpoint_uuid, options, sdkOptions) {
5648
5732
  return serviceRequest(
5649
5733
  {
5650
5734
  service: ID6,
@@ -5691,7 +5775,7 @@ var remove26 = function(endpoint_uuid, options, sdkOptions) {
5691
5775
  sdkOptions
5692
5776
  );
5693
5777
  };
5694
- var next43 = {
5778
+ var next44 = {
5695
5779
  getAll: createServiceMethodFactory({
5696
5780
  service: ID6,
5697
5781
  resource_server: RESOURCE_SERVERS.COMPUTE,