@osdk/foundry.orchestration 2.8.0 → 2.9.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 (42) hide show
  1. package/CHANGELOG.md +13 -0
  2. package/build/browser/_components.d.ts +132 -1
  3. package/build/browser/_components.d.ts.map +1 -1
  4. package/build/browser/_errors.d.ts +44 -26
  5. package/build/browser/_errors.d.ts.map +1 -1
  6. package/build/browser/index.d.ts +3 -2
  7. package/build/browser/index.d.ts.map +1 -1
  8. package/build/browser/index.js +1 -0
  9. package/build/browser/index.js.map +1 -1
  10. package/build/browser/public/Build.d.ts +30 -0
  11. package/build/browser/public/Build.d.ts.map +1 -1
  12. package/build/browser/public/Build.js +26 -0
  13. package/build/browser/public/Build.js.map +1 -1
  14. package/build/browser/public/Schedule.d.ts +16 -0
  15. package/build/browser/public/Schedule.d.ts.map +1 -1
  16. package/build/browser/public/Schedule.js +12 -0
  17. package/build/browser/public/Schedule.js.map +1 -1
  18. package/build/browser/public/ScheduleVersion.d.ts +30 -1
  19. package/build/browser/public/ScheduleVersion.d.ts.map +1 -1
  20. package/build/browser/public/ScheduleVersion.js +23 -1
  21. package/build/browser/public/ScheduleVersion.js.map +1 -1
  22. package/build/esm/_components.d.ts +132 -1
  23. package/build/esm/_components.d.ts.map +1 -1
  24. package/build/esm/_errors.d.ts +44 -26
  25. package/build/esm/_errors.d.ts.map +1 -1
  26. package/build/esm/index.d.ts +3 -2
  27. package/build/esm/index.d.ts.map +1 -1
  28. package/build/esm/index.js +1 -0
  29. package/build/esm/index.js.map +1 -1
  30. package/build/esm/public/Build.d.ts +30 -0
  31. package/build/esm/public/Build.d.ts.map +1 -1
  32. package/build/esm/public/Build.js +26 -0
  33. package/build/esm/public/Build.js.map +1 -1
  34. package/build/esm/public/Schedule.d.ts +16 -0
  35. package/build/esm/public/Schedule.d.ts.map +1 -1
  36. package/build/esm/public/Schedule.js +12 -0
  37. package/build/esm/public/Schedule.js.map +1 -1
  38. package/build/esm/public/ScheduleVersion.d.ts +30 -1
  39. package/build/esm/public/ScheduleVersion.d.ts.map +1 -1
  40. package/build/esm/public/ScheduleVersion.js +23 -1
  41. package/build/esm/public/ScheduleVersion.js.map +1 -1
  42. package/package.json +6 -6
@@ -93,4 +93,16 @@ const _unpause = [1, "/v2/orchestration/schedules/{0}/unpause", 2];
93
93
  export function unpause($ctx, ...args) {
94
94
  return $foundryPlatformFetch($ctx, _unpause, ...args);
95
95
  }
96
+ const _runs = [0, "/v2/orchestration/schedules/{0}/runs", 2];
97
+ /**
98
+ * Get the most recent runs of a Schedule. If no page size is provided, a page size of 100 will be used.
99
+ *
100
+ * @beta
101
+ *
102
+ * Required Scopes: [api:orchestration-read]
103
+ * URL: /v2/orchestration/schedules/{scheduleRid}/runs
104
+ */
105
+ export function runs($ctx, ...args) {
106
+ return $foundryPlatformFetch($ctx, _runs, ...args);
107
+ }
96
108
  //# sourceMappingURL=Schedule.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"Schedule.js","names":["foundryPlatformFetch","$foundryPlatformFetch","_create","create","$ctx","args","_deleteSchedule","deleteSchedule","_get","get","_replace","replace","_run","run","_pause","pause","_unpause","unpause"],"sources":["Schedule.js"],"sourcesContent":["/*\n * Copyright 2024 Palantir Technologies, Inc. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\nimport { foundryPlatformFetch as $foundryPlatformFetch } from \"@osdk/shared.net.platformapi\";\n//\nconst _create = [1, \"/v2/orchestration/schedules\", 3];\n/**\n * Creates a new Schedule.\n *\n * @beta\n *\n * Required Scopes: [api:orchestration-write]\n * URL: /v2/orchestration/schedules\n */\nexport function create($ctx, ...args) {\n return $foundryPlatformFetch($ctx, _create, ...args);\n}\nconst _deleteSchedule = [3, \"/v2/orchestration/schedules/{0}\", 2];\n/**\n * Delete the Schedule with the specified rid.\n *\n * @beta\n *\n * Required Scopes: [api:orchestration-write]\n * URL: /v2/orchestration/schedules/{scheduleRid}\n */\nexport function deleteSchedule($ctx, ...args) {\n return $foundryPlatformFetch($ctx, _deleteSchedule, ...args);\n}\nconst _get = [0, \"/v2/orchestration/schedules/{0}\", 2];\n/**\n * Get the Schedule with the specified rid.\n *\n * @beta\n *\n * Required Scopes: [api:orchestration-read]\n * URL: /v2/orchestration/schedules/{scheduleRid}\n */\nexport function get($ctx, ...args) {\n return $foundryPlatformFetch($ctx, _get, ...args);\n}\nconst _replace = [2, \"/v2/orchestration/schedules/{0}\", 3];\n/**\n * Replace the Schedule with the specified rid.\n *\n * @beta\n *\n * Required Scopes: [api:orchestration-write]\n * URL: /v2/orchestration/schedules/{scheduleRid}\n */\nexport function replace($ctx, ...args) {\n return $foundryPlatformFetch($ctx, _replace, ...args);\n}\nconst _run = [1, \"/v2/orchestration/schedules/{0}/run\", 2];\n/**\n * @beta\n *\n * Required Scopes: [api:orchestration-write]\n * URL: /v2/orchestration/schedules/{scheduleRid}/run\n */\nexport function run($ctx, ...args) {\n return $foundryPlatformFetch($ctx, _run, ...args);\n}\nconst _pause = [1, \"/v2/orchestration/schedules/{0}/pause\", 2];\n/**\n * @beta\n *\n * Required Scopes: [api:orchestration-write]\n * URL: /v2/orchestration/schedules/{scheduleRid}/pause\n */\nexport function pause($ctx, ...args) {\n return $foundryPlatformFetch($ctx, _pause, ...args);\n}\nconst _unpause = [1, \"/v2/orchestration/schedules/{0}/unpause\", 2];\n/**\n * @beta\n *\n * Required Scopes: [api:orchestration-write]\n * URL: /v2/orchestration/schedules/{scheduleRid}/unpause\n */\nexport function unpause($ctx, ...args) {\n return $foundryPlatformFetch($ctx, _unpause, ...args);\n}\n"],"mappings":"AAAA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,SAASA,oBAAoB,IAAIC,qBAAqB,QAAQ,8BAA8B;AAC5F;AACA,MAAMC,OAAO,GAAG,CAAC,CAAC,EAAE,6BAA6B,EAAE,CAAC,CAAC;AACrD;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,OAAO,SAASC,MAAMA,CAACC,IAAI,EAAE,GAAGC,IAAI,EAAE;EAClC,OAAOJ,qBAAqB,CAACG,IAAI,EAAEF,OAAO,EAAE,GAAGG,IAAI,CAAC;AACxD;AACA,MAAMC,eAAe,GAAG,CAAC,CAAC,EAAE,iCAAiC,EAAE,CAAC,CAAC;AACjE;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,OAAO,SAASC,cAAcA,CAACH,IAAI,EAAE,GAAGC,IAAI,EAAE;EAC1C,OAAOJ,qBAAqB,CAACG,IAAI,EAAEE,eAAe,EAAE,GAAGD,IAAI,CAAC;AAChE;AACA,MAAMG,IAAI,GAAG,CAAC,CAAC,EAAE,iCAAiC,EAAE,CAAC,CAAC;AACtD;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,OAAO,SAASC,GAAGA,CAACL,IAAI,EAAE,GAAGC,IAAI,EAAE;EAC/B,OAAOJ,qBAAqB,CAACG,IAAI,EAAEI,IAAI,EAAE,GAAGH,IAAI,CAAC;AACrD;AACA,MAAMK,QAAQ,GAAG,CAAC,CAAC,EAAE,iCAAiC,EAAE,CAAC,CAAC;AAC1D;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,OAAO,SAASC,OAAOA,CAACP,IAAI,EAAE,GAAGC,IAAI,EAAE;EACnC,OAAOJ,qBAAqB,CAACG,IAAI,EAAEM,QAAQ,EAAE,GAAGL,IAAI,CAAC;AACzD;AACA,MAAMO,IAAI,GAAG,CAAC,CAAC,EAAE,qCAAqC,EAAE,CAAC,CAAC;AAC1D;AACA;AACA;AACA;AACA;AACA;AACA,OAAO,SAASC,GAAGA,CAACT,IAAI,EAAE,GAAGC,IAAI,EAAE;EAC/B,OAAOJ,qBAAqB,CAACG,IAAI,EAAEQ,IAAI,EAAE,GAAGP,IAAI,CAAC;AACrD;AACA,MAAMS,MAAM,GAAG,CAAC,CAAC,EAAE,uCAAuC,EAAE,CAAC,CAAC;AAC9D;AACA;AACA;AACA;AACA;AACA;AACA,OAAO,SAASC,KAAKA,CAACX,IAAI,EAAE,GAAGC,IAAI,EAAE;EACjC,OAAOJ,qBAAqB,CAACG,IAAI,EAAEU,MAAM,EAAE,GAAGT,IAAI,CAAC;AACvD;AACA,MAAMW,QAAQ,GAAG,CAAC,CAAC,EAAE,yCAAyC,EAAE,CAAC,CAAC;AAClE;AACA;AACA;AACA;AACA;AACA;AACA,OAAO,SAASC,OAAOA,CAACb,IAAI,EAAE,GAAGC,IAAI,EAAE;EACnC,OAAOJ,qBAAqB,CAACG,IAAI,EAAEY,QAAQ,EAAE,GAAGX,IAAI,CAAC;AACzD","ignoreList":[]}
1
+ {"version":3,"file":"Schedule.js","names":["foundryPlatformFetch","$foundryPlatformFetch","_create","create","$ctx","args","_deleteSchedule","deleteSchedule","_get","get","_replace","replace","_run","run","_pause","pause","_unpause","unpause","_runs","runs"],"sources":["Schedule.js"],"sourcesContent":["/*\n * Copyright 2024 Palantir Technologies, Inc. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\nimport { foundryPlatformFetch as $foundryPlatformFetch } from \"@osdk/shared.net.platformapi\";\n//\nconst _create = [1, \"/v2/orchestration/schedules\", 3];\n/**\n * Creates a new Schedule.\n *\n * @beta\n *\n * Required Scopes: [api:orchestration-write]\n * URL: /v2/orchestration/schedules\n */\nexport function create($ctx, ...args) {\n return $foundryPlatformFetch($ctx, _create, ...args);\n}\nconst _deleteSchedule = [3, \"/v2/orchestration/schedules/{0}\", 2];\n/**\n * Delete the Schedule with the specified rid.\n *\n * @beta\n *\n * Required Scopes: [api:orchestration-write]\n * URL: /v2/orchestration/schedules/{scheduleRid}\n */\nexport function deleteSchedule($ctx, ...args) {\n return $foundryPlatformFetch($ctx, _deleteSchedule, ...args);\n}\nconst _get = [0, \"/v2/orchestration/schedules/{0}\", 2];\n/**\n * Get the Schedule with the specified rid.\n *\n * @beta\n *\n * Required Scopes: [api:orchestration-read]\n * URL: /v2/orchestration/schedules/{scheduleRid}\n */\nexport function get($ctx, ...args) {\n return $foundryPlatformFetch($ctx, _get, ...args);\n}\nconst _replace = [2, \"/v2/orchestration/schedules/{0}\", 3];\n/**\n * Replace the Schedule with the specified rid.\n *\n * @beta\n *\n * Required Scopes: [api:orchestration-write]\n * URL: /v2/orchestration/schedules/{scheduleRid}\n */\nexport function replace($ctx, ...args) {\n return $foundryPlatformFetch($ctx, _replace, ...args);\n}\nconst _run = [1, \"/v2/orchestration/schedules/{0}/run\", 2];\n/**\n * @beta\n *\n * Required Scopes: [api:orchestration-write]\n * URL: /v2/orchestration/schedules/{scheduleRid}/run\n */\nexport function run($ctx, ...args) {\n return $foundryPlatformFetch($ctx, _run, ...args);\n}\nconst _pause = [1, \"/v2/orchestration/schedules/{0}/pause\", 2];\n/**\n * @beta\n *\n * Required Scopes: [api:orchestration-write]\n * URL: /v2/orchestration/schedules/{scheduleRid}/pause\n */\nexport function pause($ctx, ...args) {\n return $foundryPlatformFetch($ctx, _pause, ...args);\n}\nconst _unpause = [1, \"/v2/orchestration/schedules/{0}/unpause\", 2];\n/**\n * @beta\n *\n * Required Scopes: [api:orchestration-write]\n * URL: /v2/orchestration/schedules/{scheduleRid}/unpause\n */\nexport function unpause($ctx, ...args) {\n return $foundryPlatformFetch($ctx, _unpause, ...args);\n}\nconst _runs = [0, \"/v2/orchestration/schedules/{0}/runs\", 2];\n/**\n * Get the most recent runs of a Schedule. If no page size is provided, a page size of 100 will be used.\n *\n * @beta\n *\n * Required Scopes: [api:orchestration-read]\n * URL: /v2/orchestration/schedules/{scheduleRid}/runs\n */\nexport function runs($ctx, ...args) {\n return $foundryPlatformFetch($ctx, _runs, ...args);\n}\n"],"mappings":"AAAA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,SAASA,oBAAoB,IAAIC,qBAAqB,QAAQ,8BAA8B;AAC5F;AACA,MAAMC,OAAO,GAAG,CAAC,CAAC,EAAE,6BAA6B,EAAE,CAAC,CAAC;AACrD;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,OAAO,SAASC,MAAMA,CAACC,IAAI,EAAE,GAAGC,IAAI,EAAE;EAClC,OAAOJ,qBAAqB,CAACG,IAAI,EAAEF,OAAO,EAAE,GAAGG,IAAI,CAAC;AACxD;AACA,MAAMC,eAAe,GAAG,CAAC,CAAC,EAAE,iCAAiC,EAAE,CAAC,CAAC;AACjE;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,OAAO,SAASC,cAAcA,CAACH,IAAI,EAAE,GAAGC,IAAI,EAAE;EAC1C,OAAOJ,qBAAqB,CAACG,IAAI,EAAEE,eAAe,EAAE,GAAGD,IAAI,CAAC;AAChE;AACA,MAAMG,IAAI,GAAG,CAAC,CAAC,EAAE,iCAAiC,EAAE,CAAC,CAAC;AACtD;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,OAAO,SAASC,GAAGA,CAACL,IAAI,EAAE,GAAGC,IAAI,EAAE;EAC/B,OAAOJ,qBAAqB,CAACG,IAAI,EAAEI,IAAI,EAAE,GAAGH,IAAI,CAAC;AACrD;AACA,MAAMK,QAAQ,GAAG,CAAC,CAAC,EAAE,iCAAiC,EAAE,CAAC,CAAC;AAC1D;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,OAAO,SAASC,OAAOA,CAACP,IAAI,EAAE,GAAGC,IAAI,EAAE;EACnC,OAAOJ,qBAAqB,CAACG,IAAI,EAAEM,QAAQ,EAAE,GAAGL,IAAI,CAAC;AACzD;AACA,MAAMO,IAAI,GAAG,CAAC,CAAC,EAAE,qCAAqC,EAAE,CAAC,CAAC;AAC1D;AACA;AACA;AACA;AACA;AACA;AACA,OAAO,SAASC,GAAGA,CAACT,IAAI,EAAE,GAAGC,IAAI,EAAE;EAC/B,OAAOJ,qBAAqB,CAACG,IAAI,EAAEQ,IAAI,EAAE,GAAGP,IAAI,CAAC;AACrD;AACA,MAAMS,MAAM,GAAG,CAAC,CAAC,EAAE,uCAAuC,EAAE,CAAC,CAAC;AAC9D;AACA;AACA;AACA;AACA;AACA;AACA,OAAO,SAASC,KAAKA,CAACX,IAAI,EAAE,GAAGC,IAAI,EAAE;EACjC,OAAOJ,qBAAqB,CAACG,IAAI,EAAEU,MAAM,EAAE,GAAGT,IAAI,CAAC;AACvD;AACA,MAAMW,QAAQ,GAAG,CAAC,CAAC,EAAE,yCAAyC,EAAE,CAAC,CAAC;AAClE;AACA;AACA;AACA;AACA;AACA;AACA,OAAO,SAASC,OAAOA,CAACb,IAAI,EAAE,GAAGC,IAAI,EAAE;EACnC,OAAOJ,qBAAqB,CAACG,IAAI,EAAEY,QAAQ,EAAE,GAAGX,IAAI,CAAC;AACzD;AACA,MAAMa,KAAK,GAAG,CAAC,CAAC,EAAE,sCAAsC,EAAE,CAAC,CAAC;AAC5D;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,OAAO,SAASC,IAAIA,CAACf,IAAI,EAAE,GAAGC,IAAI,EAAE;EAChC,OAAOJ,qBAAqB,CAACG,IAAI,EAAEc,KAAK,EAAE,GAAGb,IAAI,CAAC;AACtD","ignoreList":[]}
@@ -1,2 +1,31 @@
1
- export {};
1
+ import type * as _Core from "@osdk/foundry.core";
2
+ import type { SharedClient as $OldClient, SharedClientContext as $OldClientContext } from "@osdk/shared.client";
3
+ import type { SharedClient as $Client, SharedClientContext as $ClientContext } from "@osdk/shared.client2";
4
+ import type * as _Orchestration from "../_components.js";
5
+ /**
6
+ * Get the ScheduleVersion with the specified rid.
7
+ *
8
+ * @beta
9
+ *
10
+ * Required Scopes: [api:orchestration-read]
11
+ * URL: /v2/orchestration/scheduleVersions/{scheduleVersionRid}
12
+ */
13
+ export declare function get($ctx: $Client | $ClientContext | $OldClient | $OldClientContext, ...args: [
14
+ scheduleVersionRid: _Orchestration.ScheduleVersionRid,
15
+ $queryParams?: {
16
+ preview?: _Core.PreviewMode | undefined;
17
+ }
18
+ ]): Promise<_Orchestration.ScheduleVersion>;
19
+ /**
20
+ * @beta
21
+ *
22
+ * Required Scopes: [api:orchestration-read]
23
+ * URL: /v2/orchestration/scheduleVersions/{scheduleVersionRid}/schedule
24
+ */
25
+ export declare function schedule($ctx: $Client | $ClientContext | $OldClient | $OldClientContext, ...args: [
26
+ scheduleVersionRid: _Orchestration.ScheduleVersionRid,
27
+ $queryParams?: {
28
+ preview?: _Core.PreviewMode | undefined;
29
+ }
30
+ ]): Promise<_Orchestration.Schedule | undefined>;
2
31
  //# sourceMappingURL=ScheduleVersion.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"ScheduleVersion.d.ts","sourceRoot":"","sources":["../../../src/public/ScheduleVersion.ts"],"names":[],"mappings":""}
1
+ {"version":3,"file":"ScheduleVersion.d.ts","sourceRoot":"","sources":["../../../src/public/ScheduleVersion.ts"],"names":[],"mappings":"AAgBA,OAAO,KAAK,KAAK,KAAK,MAAM,oBAAoB,CAAC;AACjD,OAAO,KAAK,EACV,YAAY,IAAI,UAAU,EAC1B,mBAAmB,IAAI,iBAAiB,EACzC,MAAM,qBAAqB,CAAC;AAC7B,OAAO,KAAK,EACV,YAAY,IAAI,OAAO,EACvB,mBAAmB,IAAI,cAAc,EACtC,MAAM,sBAAsB,CAAC;AAG9B,OAAO,KAAK,KAAK,cAAc,MAAM,mBAAmB,CAAC;AAWzD;;;;;;;GAOG;AACH,wBAAgB,GAAG,CACjB,IAAI,EAAE,OAAO,GAAG,cAAc,GAAG,UAAU,GAAG,iBAAiB,EAC/D,GAAG,IAAI,EAAE;IACP,kBAAkB,EAAE,cAAc,CAAC,kBAAkB;IAErD,YAAY,CAAC,EAAE;QAAE,OAAO,CAAC,EAAE,KAAK,CAAC,WAAW,GAAG,SAAS,CAAA;KAAE;CAC3D,GACA,OAAO,CAAC,cAAc,CAAC,eAAe,CAAC,CAEzC;AASD;;;;;GAKG;AACH,wBAAgB,QAAQ,CACtB,IAAI,EAAE,OAAO,GAAG,cAAc,GAAG,UAAU,GAAG,iBAAiB,EAC/D,GAAG,IAAI,EAAE;IACP,kBAAkB,EAAE,cAAc,CAAC,kBAAkB;IAErD,YAAY,CAAC,EAAE;QAAE,OAAO,CAAC,EAAE,KAAK,CAAC,WAAW,GAAG,SAAS,CAAA;KAAE;CAC3D,GACA,OAAO,CAAC,cAAc,CAAC,QAAQ,GAAG,SAAS,CAAC,CAE9C"}
@@ -13,6 +13,28 @@
13
13
  * See the License for the specific language governing permissions and
14
14
  * limitations under the License.
15
15
  */
16
- export {};
16
+ import { foundryPlatformFetch as $foundryPlatformFetch } from "@osdk/shared.net.platformapi";
17
17
  //
18
+ const _get = [0, "/v2/orchestration/scheduleVersions/{0}", 2];
19
+ /**
20
+ * Get the ScheduleVersion with the specified rid.
21
+ *
22
+ * @beta
23
+ *
24
+ * Required Scopes: [api:orchestration-read]
25
+ * URL: /v2/orchestration/scheduleVersions/{scheduleVersionRid}
26
+ */
27
+ export function get($ctx, ...args) {
28
+ return $foundryPlatformFetch($ctx, _get, ...args);
29
+ }
30
+ const _schedule = [0, "/v2/orchestration/scheduleVersions/{0}/schedule", 2];
31
+ /**
32
+ * @beta
33
+ *
34
+ * Required Scopes: [api:orchestration-read]
35
+ * URL: /v2/orchestration/scheduleVersions/{scheduleVersionRid}/schedule
36
+ */
37
+ export function schedule($ctx, ...args) {
38
+ return $foundryPlatformFetch($ctx, _schedule, ...args);
39
+ }
18
40
  //# sourceMappingURL=ScheduleVersion.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"ScheduleVersion.js","names":[],"sources":["ScheduleVersion.js"],"sourcesContent":["/*\n * Copyright 2024 Palantir Technologies, Inc. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\nexport {};\n//\n"],"mappings":"AAAA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA","ignoreList":[]}
1
+ {"version":3,"file":"ScheduleVersion.js","names":["foundryPlatformFetch","$foundryPlatformFetch","_get","get","$ctx","args","_schedule","schedule"],"sources":["ScheduleVersion.js"],"sourcesContent":["/*\n * Copyright 2024 Palantir Technologies, Inc. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\nimport { foundryPlatformFetch as $foundryPlatformFetch } from \"@osdk/shared.net.platformapi\";\n//\nconst _get = [0, \"/v2/orchestration/scheduleVersions/{0}\", 2];\n/**\n * Get the ScheduleVersion with the specified rid.\n *\n * @beta\n *\n * Required Scopes: [api:orchestration-read]\n * URL: /v2/orchestration/scheduleVersions/{scheduleVersionRid}\n */\nexport function get($ctx, ...args) {\n return $foundryPlatformFetch($ctx, _get, ...args);\n}\nconst _schedule = [0, \"/v2/orchestration/scheduleVersions/{0}/schedule\", 2];\n/**\n * @beta\n *\n * Required Scopes: [api:orchestration-read]\n * URL: /v2/orchestration/scheduleVersions/{scheduleVersionRid}/schedule\n */\nexport function schedule($ctx, ...args) {\n return $foundryPlatformFetch($ctx, _schedule, ...args);\n}\n"],"mappings":"AAAA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,SAASA,oBAAoB,IAAIC,qBAAqB,QAAQ,8BAA8B;AAC5F;AACA,MAAMC,IAAI,GAAG,CAAC,CAAC,EAAE,wCAAwC,EAAE,CAAC,CAAC;AAC7D;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,OAAO,SAASC,GAAGA,CAACC,IAAI,EAAE,GAAGC,IAAI,EAAE;EAC/B,OAAOJ,qBAAqB,CAACG,IAAI,EAAEF,IAAI,EAAE,GAAGG,IAAI,CAAC;AACrD;AACA,MAAMC,SAAS,GAAG,CAAC,CAAC,EAAE,iDAAiD,EAAE,CAAC,CAAC;AAC3E;AACA;AACA;AACA;AACA;AACA;AACA,OAAO,SAASC,QAAQA,CAACH,IAAI,EAAE,GAAGC,IAAI,EAAE;EACpC,OAAOJ,qBAAqB,CAACG,IAAI,EAAEE,SAAS,EAAE,GAAGD,IAAI,CAAC;AAC1D","ignoreList":[]}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@osdk/foundry.orchestration",
3
- "version": "2.8.0",
3
+ "version": "2.9.0",
4
4
  "license": "Apache-2.0",
5
5
  "repository": {
6
6
  "type": "git",
@@ -21,10 +21,10 @@
21
21
  "dependencies": {
22
22
  "@osdk/shared.client": "^1.0.1",
23
23
  "@osdk/shared.client2": "^1.0.0",
24
- "@osdk/foundry.datasets": "2.8.0",
25
- "@osdk/foundry.filesystem": "2.8.0",
26
- "@osdk/shared.net.platformapi": "~1.2.0",
27
- "@osdk/foundry.core": "2.8.0"
24
+ "@osdk/foundry.core": "2.9.0",
25
+ "@osdk/foundry.datasets": "2.9.0",
26
+ "@osdk/foundry.filesystem": "2.9.0",
27
+ "@osdk/shared.net.platformapi": "~1.2.0"
28
28
  },
29
29
  "devDependencies": {
30
30
  "typescript": "^5.5.4",
@@ -47,7 +47,7 @@
47
47
  "sls": {
48
48
  "dependencies": {
49
49
  "com.palantir.foundry.api:api-gateway": {
50
- "minVersion": "1.1014.0",
50
+ "minVersion": "1.1040.0",
51
51
  "maxVersion": "1.x.x",
52
52
  "optional": false
53
53
  }