@osdk/foundry.orchestration 0.0.0 → 2.1.0-beta.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 (40) hide show
  1. package/CHANGELOG.md +32 -0
  2. package/build/browser/chunk-7GV6MUVI.js +31 -0
  3. package/build/browser/chunk-7GV6MUVI.js.map +1 -0
  4. package/build/browser/chunk-HE4XPEFD.js +21 -0
  5. package/build/browser/chunk-HE4XPEFD.js.map +1 -0
  6. package/build/browser/chunk-PZ5AY32C.js +9 -0
  7. package/build/browser/chunk-PZ5AY32C.js.map +1 -0
  8. package/build/browser/index.js +3 -2
  9. package/build/browser/public/Build.js +4 -0
  10. package/build/browser/public/Build.js.map +1 -0
  11. package/build/browser/public/Schedule.js +2 -1
  12. package/build/browser/public/ScheduleVersion.js +1 -1
  13. package/build/esm/_components.d.ts +102 -10
  14. package/build/esm/_components.d.ts.map +1 -1
  15. package/build/esm/chunk-7GV6MUVI.js +31 -0
  16. package/build/esm/chunk-7GV6MUVI.js.map +1 -0
  17. package/build/esm/chunk-HE4XPEFD.js +21 -0
  18. package/build/esm/chunk-HE4XPEFD.js.map +1 -0
  19. package/build/esm/chunk-PZ5AY32C.js +9 -0
  20. package/build/esm/chunk-PZ5AY32C.js.map +1 -0
  21. package/build/esm/index.d.ts +2 -2
  22. package/build/esm/index.d.ts.map +1 -1
  23. package/build/esm/index.js +3 -2
  24. package/build/esm/public/Build.d.ts +30 -0
  25. package/build/esm/public/Build.d.ts.map +1 -0
  26. package/build/esm/public/Build.js +4 -0
  27. package/build/esm/public/Build.js.map +1 -0
  28. package/build/esm/public/Schedule.d.ts +40 -2
  29. package/build/esm/public/Schedule.d.ts.map +1 -1
  30. package/build/esm/public/Schedule.js +2 -1
  31. package/build/esm/public/ScheduleVersion.js +1 -1
  32. package/package.json +9 -7
  33. package/build/browser/chunk-2KKE6G2P.js +0 -21
  34. package/build/browser/chunk-2KKE6G2P.js.map +0 -1
  35. package/build/browser/chunk-VNXNO6G4.js +0 -6
  36. package/build/browser/chunk-VNXNO6G4.js.map +0 -1
  37. package/build/esm/chunk-2KKE6G2P.js +0 -21
  38. package/build/esm/chunk-2KKE6G2P.js.map +0 -1
  39. package/build/esm/chunk-VNXNO6G4.js +0 -6
  40. package/build/esm/chunk-VNXNO6G4.js.map +0 -1
package/CHANGELOG.md ADDED
@@ -0,0 +1,32 @@
1
+ # @osdk/foundry.orchestration
2
+
3
+ ## 2.1.0-beta.1
4
+
5
+ ### Minor Changes
6
+
7
+ - 5d6d5ab: Autofill Content-Length and Content-Type headers in API's that accept Blobs
8
+ - 5d6d5ab: SLS dependencies are optional
9
+
10
+ ### Patch Changes
11
+
12
+ - Updated dependencies [5d6d5ab]
13
+ - Updated dependencies [5d6d5ab]
14
+ - @osdk/foundry.filesystem@2.1.0-beta.1
15
+ - @osdk/foundry.datasets@2.1.0-beta.1
16
+ - @osdk/foundry.core@2.1.0-beta.1
17
+
18
+ ## 2.1.0-beta.0
19
+
20
+ ### Minor Changes
21
+
22
+ - 5d6d5ab: Updated to latest gateway apis
23
+ - 5d6d5ab: Includes @alpha/@beta/@public jsdoc tags
24
+
25
+ ### Patch Changes
26
+
27
+ - Updated dependencies [1770490]
28
+ - Updated dependencies [5d6d5ab]
29
+ - Updated dependencies [5d6d5ab]
30
+ - @osdk/foundry.datasets@2.1.0-beta.0
31
+ - @osdk/foundry.core@2.1.0-beta.0
32
+ - @osdk/foundry.filesystem@2.1.0-beta.0
@@ -0,0 +1,31 @@
1
+ import { __export } from './chunk-PZ5AY32C.js';
2
+ import { foundryPlatformFetch } from '@osdk/shared.net.platformapi';
3
+
4
+ // src/public/Schedule.ts
5
+ var Schedule_exports = {};
6
+ __export(Schedule_exports, {
7
+ getSchedule: () => getSchedule,
8
+ pauseSchedule: () => pauseSchedule,
9
+ runSchedule: () => runSchedule,
10
+ unpauseSchedule: () => unpauseSchedule
11
+ });
12
+ var _getSchedule = [0, "/v2/orchestration/schedules/{0}", 2];
13
+ function getSchedule($ctx, ...args) {
14
+ return foundryPlatformFetch($ctx, _getSchedule, ...args);
15
+ }
16
+ var _runSchedule = [1, "/v2/orchestration/schedules/{0}/run", 2];
17
+ function runSchedule($ctx, ...args) {
18
+ return foundryPlatformFetch($ctx, _runSchedule, ...args);
19
+ }
20
+ var _pauseSchedule = [1, "/v2/orchestration/schedules/{0}/pause", 2];
21
+ function pauseSchedule($ctx, ...args) {
22
+ return foundryPlatformFetch($ctx, _pauseSchedule, ...args);
23
+ }
24
+ var _unpauseSchedule = [1, "/v2/orchestration/schedules/{0}/unpause", 2];
25
+ function unpauseSchedule($ctx, ...args) {
26
+ return foundryPlatformFetch($ctx, _unpauseSchedule, ...args);
27
+ }
28
+
29
+ export { Schedule_exports, getSchedule, pauseSchedule, runSchedule, unpauseSchedule };
30
+ //# sourceMappingURL=chunk-7GV6MUVI.js.map
31
+ //# sourceMappingURL=chunk-7GV6MUVI.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../../src/public/Schedule.ts"],"names":["$foundryPlatformFetch"],"mappings":";;;;AAAA,IAAA,gBAAA,GAAA,GAAA;AAAA,QAAA,CAAA,gBAAA,EAAA;AAAA,EAAA,WAAA,EAAA,MAAA,WAAA;AAAA,EAAA,aAAA,EAAA,MAAA,aAAA;AAAA,EAAA,WAAA,EAAA,MAAA,WAAA;AAAA,EAAA,eAAA,EAAA,MAAA,eAAA;AAAA,CAAA,CAAA,CAAA;AAmBA,IAAM,YAAe,GAAA,CAAC,CAAG,EAAA,iCAAA,EAAmC,CAAC,CAAA,CAAA;AAUtD,SAAS,WAAA,CAAY,SAAS,IAAM,EAAA;AACzC,EAAA,OAAOA,oBAAsB,CAAA,IAAA,EAAM,YAAc,EAAA,GAAG,IAAI,CAAA,CAAA;AAC1D,CAAA;AACA,IAAM,YAAe,GAAA,CAAC,CAAG,EAAA,qCAAA,EAAuC,CAAC,CAAA,CAAA;AAQ1D,SAAS,WAAA,CAAY,SAAS,IAAM,EAAA;AACzC,EAAA,OAAOA,oBAAsB,CAAA,IAAA,EAAM,YAAc,EAAA,GAAG,IAAI,CAAA,CAAA;AAC1D,CAAA;AACA,IAAM,cAAiB,GAAA,CAAC,CAAG,EAAA,uCAAA,EAAyC,CAAC,CAAA,CAAA;AAQ9D,SAAS,aAAA,CAAc,SAAS,IAAM,EAAA;AAC3C,EAAA,OAAOA,oBAAsB,CAAA,IAAA,EAAM,cAAgB,EAAA,GAAG,IAAI,CAAA,CAAA;AAC5D,CAAA;AACA,IAAM,gBAAmB,GAAA,CAAC,CAAG,EAAA,yCAAA,EAA2C,CAAC,CAAA,CAAA;AAQlE,SAAS,eAAA,CAAgB,SAAS,IAAM,EAAA;AAC7C,EAAA,OAAOA,oBAAsB,CAAA,IAAA,EAAM,gBAAkB,EAAA,GAAG,IAAI,CAAA,CAAA;AAC9D","file":"chunk-7GV6MUVI.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 */\n\nimport { foundryPlatformFetch as $foundryPlatformFetch } from \"@osdk/shared.net.platformapi\";\n//\n\nconst _getSchedule = [0, \"/v2/orchestration/schedules/{0}\", 2];\n\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 getSchedule($ctx, ...args) {\n return $foundryPlatformFetch($ctx, _getSchedule, ...args);\n}\nconst _runSchedule = [1, \"/v2/orchestration/schedules/{0}/run\", 2];\n\n/**\n * @beta\n *\n * Required Scopes: [api:orchestration-write]\n * URL: /v2/orchestration/schedules/{scheduleRid}/run\n */\nexport function runSchedule($ctx, ...args) {\n return $foundryPlatformFetch($ctx, _runSchedule, ...args);\n}\nconst _pauseSchedule = [1, \"/v2/orchestration/schedules/{0}/pause\", 2];\n\n/**\n * @beta\n *\n * Required Scopes: [api:orchestration-write]\n * URL: /v2/orchestration/schedules/{scheduleRid}/pause\n */\nexport function pauseSchedule($ctx, ...args) {\n return $foundryPlatformFetch($ctx, _pauseSchedule, ...args);\n}\nconst _unpauseSchedule = [1, \"/v2/orchestration/schedules/{0}/unpause\", 2];\n\n/**\n * @beta\n *\n * Required Scopes: [api:orchestration-write]\n * URL: /v2/orchestration/schedules/{scheduleRid}/unpause\n */\nexport function unpauseSchedule($ctx, ...args) {\n return $foundryPlatformFetch($ctx, _unpauseSchedule, ...args);\n}"]}
@@ -0,0 +1,21 @@
1
+ import { __export } from './chunk-PZ5AY32C.js';
2
+ import { foundryPlatformFetch } from '@osdk/shared.net.platformapi';
3
+
4
+ // src/public/Build.ts
5
+ var Build_exports = {};
6
+ __export(Build_exports, {
7
+ createBuilds: () => createBuilds,
8
+ getBuild: () => getBuild
9
+ });
10
+ var _getBuild = [0, "/v2/orchestration/builds/{0}", 2];
11
+ function getBuild($ctx, ...args) {
12
+ return foundryPlatformFetch($ctx, _getBuild, ...args);
13
+ }
14
+ var _createBuilds = [1, "/v2/orchestration/builds/create", 3];
15
+ function createBuilds($ctx, ...args) {
16
+ return foundryPlatformFetch($ctx, _createBuilds, ...args);
17
+ }
18
+
19
+ export { Build_exports, createBuilds, getBuild };
20
+ //# sourceMappingURL=chunk-HE4XPEFD.js.map
21
+ //# sourceMappingURL=chunk-HE4XPEFD.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../../src/public/Build.ts"],"names":["$foundryPlatformFetch"],"mappings":";;;;AAAA,IAAA,aAAA,GAAA,GAAA;AAAA,QAAA,CAAA,aAAA,EAAA;AAAA,EAAA,YAAA,EAAA,MAAA,YAAA;AAAA,EAAA,QAAA,EAAA,MAAA,QAAA;AAAA,CAAA,CAAA,CAAA;AAmBA,IAAM,SAAY,GAAA,CAAC,CAAG,EAAA,8BAAA,EAAgC,CAAC,CAAA,CAAA;AAUhD,SAAS,QAAA,CAAS,SAAS,IAAM,EAAA;AACtC,EAAA,OAAOA,oBAAsB,CAAA,IAAA,EAAM,SAAW,EAAA,GAAG,IAAI,CAAA,CAAA;AACvD,CAAA;AACA,IAAM,aAAgB,GAAA,CAAC,CAAG,EAAA,iCAAA,EAAmC,CAAC,CAAA,CAAA;AAQvD,SAAS,YAAA,CAAa,SAAS,IAAM,EAAA;AAC1C,EAAA,OAAOA,oBAAsB,CAAA,IAAA,EAAM,aAAe,EAAA,GAAG,IAAI,CAAA,CAAA;AAC3D","file":"chunk-HE4XPEFD.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 */\n\nimport { foundryPlatformFetch as $foundryPlatformFetch } from \"@osdk/shared.net.platformapi\";\n//\n\nconst _getBuild = [0, \"/v2/orchestration/builds/{0}\", 2];\n\n/**\n * Get the Build with the specified rid.\n *\n * @beta\n *\n * Required Scopes: [api:orchestration-read]\n * URL: /v2/orchestration/builds/{buildRid}\n */\nexport function getBuild($ctx, ...args) {\n return $foundryPlatformFetch($ctx, _getBuild, ...args);\n}\nconst _createBuilds = [1, \"/v2/orchestration/builds/create\", 3];\n\n/**\n * @beta\n *\n * Required Scopes: [api:orchestration-write]\n * URL: /v2/orchestration/builds/create\n */\nexport function createBuilds($ctx, ...args) {\n return $foundryPlatformFetch($ctx, _createBuilds, ...args);\n}"]}
@@ -0,0 +1,9 @@
1
+ var __defProp = Object.defineProperty;
2
+ var __export = (target, all) => {
3
+ for (var name in all)
4
+ __defProp(target, name, { get: all[name], enumerable: true });
5
+ };
6
+
7
+ export { __export };
8
+ //# sourceMappingURL=chunk-PZ5AY32C.js.map
9
+ //# sourceMappingURL=chunk-PZ5AY32C.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":[],"names":[],"mappings":"","file":"chunk-PZ5AY32C.js"}
@@ -1,4 +1,5 @@
1
- export { Schedule_exports as Schedules } from './chunk-2KKE6G2P.js';
2
- export { ScheduleVersion_exports as ScheduleVersions } from './chunk-VNXNO6G4.js';
1
+ export { Build_exports as Builds } from './chunk-HE4XPEFD.js';
2
+ export { Schedule_exports as Schedules } from './chunk-7GV6MUVI.js';
3
+ import './chunk-PZ5AY32C.js';
3
4
  //# sourceMappingURL=index.js.map
4
5
  //# sourceMappingURL=index.js.map
@@ -0,0 +1,4 @@
1
+ export { createBuilds, getBuild } from '../chunk-HE4XPEFD.js';
2
+ import '../chunk-PZ5AY32C.js';
3
+ //# sourceMappingURL=Build.js.map
4
+ //# sourceMappingURL=Build.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":[],"names":[],"mappings":"","file":"Build.js"}
@@ -1,3 +1,4 @@
1
- export { getSchedule } from '../chunk-2KKE6G2P.js';
1
+ export { getSchedule, pauseSchedule, runSchedule, unpauseSchedule } from '../chunk-7GV6MUVI.js';
2
+ import '../chunk-PZ5AY32C.js';
2
3
  //# sourceMappingURL=Schedule.js.map
3
4
  //# sourceMappingURL=Schedule.js.map
@@ -1,3 +1,3 @@
1
- import '../chunk-VNXNO6G4.js';
1
+
2
2
  //# sourceMappingURL=ScheduleVersion.js.map
3
3
  //# sourceMappingURL=ScheduleVersion.js.map
@@ -1,5 +1,6 @@
1
- import type { CreatedBy, CreatedTime, Duration, MediaSetRid, ProjectRid, UpdatedBy, UpdatedTime } from "@osdk/foundry.core";
1
+ import type { CreatedBy, CreatedTime, Duration, MediaSetRid, UpdatedBy, UpdatedTime } from "@osdk/foundry.core";
2
2
  import type { BranchName, DatasetRid } from "@osdk/foundry.datasets";
3
+ import type { ProjectRid } from "@osdk/foundry.filesystem";
3
4
  export type LooselyBrandedString<T extends string> = string & {
4
5
  __LOOSE_BRAND?: T;
5
6
  };
@@ -31,6 +32,26 @@ export interface Action {
31
32
  export interface AndTrigger {
32
33
  triggers: Array<Trigger>;
33
34
  }
35
+ /**
36
+ * Log Safety: UNSAFE
37
+ */
38
+ export interface Build {
39
+ rid: BuildRid;
40
+ branchName: BranchName;
41
+ createdTime: CreatedTime;
42
+ createdBy: CreatedBy;
43
+ fallbackBranches: FallbackBranches;
44
+ retryCount: RetryCount;
45
+ retryBackoffDuration: RetryBackoffDuration;
46
+ abortOnFailure: AbortOnFailure;
47
+ status: BuildStatus;
48
+ }
49
+ /**
50
+ * The RID of a build
51
+ *
52
+ * Log Safety: SAFE
53
+ */
54
+ export type BuildRid = LooselyBrandedString<"BuildRid">;
34
55
  /**
35
56
  * The status of the build.
36
57
  *
@@ -60,6 +81,19 @@ export interface ConnectingTarget {
60
81
  targetDatasetRids: Array<DatasetRid>;
61
82
  ignoredDatasetRids: Array<DatasetRid>;
62
83
  }
84
+ /**
85
+ * Log Safety: UNSAFE
86
+ */
87
+ export interface CreateBuildsRequest {
88
+ target: BuildTarget;
89
+ branchName?: BranchName;
90
+ fallbackBranches: FallbackBranches;
91
+ forceBuild?: ForceBuild;
92
+ retryCount?: RetryCount;
93
+ retryBackoffDuration?: RetryBackoffDuration;
94
+ abortOnFailure?: AbortOnFailure;
95
+ notificationsEnabled?: NotificationsEnabled;
96
+ }
63
97
  /**
64
98
  * A standard CRON expression with minute, hour, day, month
65
99
  and day of week.
@@ -153,18 +187,18 @@ export interface ProjectScope {
153
187
  projectRids: Array<ProjectRid>;
154
188
  }
155
189
  /**
156
- * The duration to wait between job retries. Defaults to 0.
190
+ * The duration to wait before retrying after a Job fails.
157
191
  *
158
192
  * Log Safety: SAFE
159
193
  */
160
- export interface RetryBackoffDuration {
161
- duration: Duration;
162
- }
194
+ export type RetryBackoffDuration = Duration;
163
195
  /**
164
- * The number of run attempts for failed jobs.
165
- *
166
- * Log Safety: SAFE
167
- */
196
+ * The number of retry attempts for failed Jobs within the Build. A Job's failure is not considered final until
197
+ all retries have been attempted or an error occurs indicating that retries cannot be performed. Be aware,
198
+ not all types of failures can be retried.
199
+ *
200
+ * Log Safety: SAFE
201
+ */
168
202
  export type RetryCount = number;
169
203
  /**
170
204
  * Log Safety: UNSAFE
@@ -173,7 +207,7 @@ export interface Schedule {
173
207
  rid: ScheduleRid;
174
208
  displayName?: string;
175
209
  description?: string;
176
- versionRid: ScheduleVersionRid;
210
+ currentVersionRid: ScheduleVersionRid;
177
211
  createdTime: CreatedTime;
178
212
  createdBy: CreatedBy;
179
213
  updatedTime: UpdatedTime;
@@ -193,6 +227,64 @@ export type SchedulePaused = boolean;
193
227
  * Log Safety: SAFE
194
228
  */
195
229
  export type ScheduleRid = LooselyBrandedString<"ScheduleRid">;
230
+ /**
231
+ * Log Safety: UNSAFE
232
+ */
233
+ export interface ScheduleRun {
234
+ rid: ScheduleRunRid;
235
+ scheduleRid: ScheduleRid;
236
+ scheduleVersionRid: ScheduleVersionRid;
237
+ createdTime: CreatedTime;
238
+ createdBy?: CreatedBy;
239
+ result?: ScheduleRunResult;
240
+ }
241
+ /**
242
+ * An error occurred attempting to run the schedule.
243
+ *
244
+ * Log Safety: UNSAFE
245
+ */
246
+ export interface ScheduleRunError {
247
+ errorName: ScheduleRunErrorName;
248
+ description: string;
249
+ }
250
+ /**
251
+ * Log Safety: SAFE
252
+ */
253
+ export type ScheduleRunErrorName = "TargetResolutionFailure" | "CyclicDependency" | "IncompatibleTargets" | "PermissionDenied" | "JobSpecNotFound" | "ScheduleOwnerNotFound" | "Internal";
254
+ /**
255
+ * The schedule is not running as all targets are up-to-date.
256
+ *
257
+ * Log Safety: SAFE
258
+ */
259
+ export interface ScheduleRunIgnored {
260
+ }
261
+ /**
262
+ * The result of attempting to trigger the schedule. The schedule run will either be submitted as a build,
263
+ ignored if all targets are up-to-date or error.
264
+ *
265
+ * Log Safety: UNSAFE
266
+ */
267
+ export type ScheduleRunResult = ({
268
+ type: "submitted";
269
+ } & ScheduleRunSubmitted) | ({
270
+ type: "ignored";
271
+ } & ScheduleRunIgnored) | ({
272
+ type: "error";
273
+ } & ScheduleRunError);
274
+ /**
275
+ * The RID of a schedule run
276
+ *
277
+ * Log Safety: SAFE
278
+ */
279
+ export type ScheduleRunRid = LooselyBrandedString<"ScheduleRunRid">;
280
+ /**
281
+ * The schedule has been successfully triggered.
282
+ *
283
+ * Log Safety: SAFE
284
+ */
285
+ export interface ScheduleRunSubmitted {
286
+ buildRid: BuildRid;
287
+ }
196
288
  /**
197
289
  * Trigger whenever the specified schedule completes its action
198
290
  successfully.
@@ -1 +1 @@
1
- {"version":3,"file":"_components.d.ts","sourceRoot":"","sources":["../../src/_components.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"_components.d.ts","sourceRoot":"","sources":["../../src/_components.ts"],"names":[],"mappings":"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"}
@@ -0,0 +1,31 @@
1
+ import { __export } from './chunk-PZ5AY32C.js';
2
+ import { foundryPlatformFetch } from '@osdk/shared.net.platformapi';
3
+
4
+ // src/public/Schedule.ts
5
+ var Schedule_exports = {};
6
+ __export(Schedule_exports, {
7
+ getSchedule: () => getSchedule,
8
+ pauseSchedule: () => pauseSchedule,
9
+ runSchedule: () => runSchedule,
10
+ unpauseSchedule: () => unpauseSchedule
11
+ });
12
+ var _getSchedule = [0, "/v2/orchestration/schedules/{0}", 2];
13
+ function getSchedule($ctx, ...args) {
14
+ return foundryPlatformFetch($ctx, _getSchedule, ...args);
15
+ }
16
+ var _runSchedule = [1, "/v2/orchestration/schedules/{0}/run", 2];
17
+ function runSchedule($ctx, ...args) {
18
+ return foundryPlatformFetch($ctx, _runSchedule, ...args);
19
+ }
20
+ var _pauseSchedule = [1, "/v2/orchestration/schedules/{0}/pause", 2];
21
+ function pauseSchedule($ctx, ...args) {
22
+ return foundryPlatformFetch($ctx, _pauseSchedule, ...args);
23
+ }
24
+ var _unpauseSchedule = [1, "/v2/orchestration/schedules/{0}/unpause", 2];
25
+ function unpauseSchedule($ctx, ...args) {
26
+ return foundryPlatformFetch($ctx, _unpauseSchedule, ...args);
27
+ }
28
+
29
+ export { Schedule_exports, getSchedule, pauseSchedule, runSchedule, unpauseSchedule };
30
+ //# sourceMappingURL=chunk-7GV6MUVI.js.map
31
+ //# sourceMappingURL=chunk-7GV6MUVI.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../../src/public/Schedule.ts"],"names":["$foundryPlatformFetch"],"mappings":";;;;AAAA,IAAA,gBAAA,GAAA,GAAA;AAAA,QAAA,CAAA,gBAAA,EAAA;AAAA,EAAA,WAAA,EAAA,MAAA,WAAA;AAAA,EAAA,aAAA,EAAA,MAAA,aAAA;AAAA,EAAA,WAAA,EAAA,MAAA,WAAA;AAAA,EAAA,eAAA,EAAA,MAAA,eAAA;AAAA,CAAA,CAAA,CAAA;AAmBA,IAAM,YAAe,GAAA,CAAC,CAAG,EAAA,iCAAA,EAAmC,CAAC,CAAA,CAAA;AAUtD,SAAS,WAAA,CAAY,SAAS,IAAM,EAAA;AACzC,EAAA,OAAOA,oBAAsB,CAAA,IAAA,EAAM,YAAc,EAAA,GAAG,IAAI,CAAA,CAAA;AAC1D,CAAA;AACA,IAAM,YAAe,GAAA,CAAC,CAAG,EAAA,qCAAA,EAAuC,CAAC,CAAA,CAAA;AAQ1D,SAAS,WAAA,CAAY,SAAS,IAAM,EAAA;AACzC,EAAA,OAAOA,oBAAsB,CAAA,IAAA,EAAM,YAAc,EAAA,GAAG,IAAI,CAAA,CAAA;AAC1D,CAAA;AACA,IAAM,cAAiB,GAAA,CAAC,CAAG,EAAA,uCAAA,EAAyC,CAAC,CAAA,CAAA;AAQ9D,SAAS,aAAA,CAAc,SAAS,IAAM,EAAA;AAC3C,EAAA,OAAOA,oBAAsB,CAAA,IAAA,EAAM,cAAgB,EAAA,GAAG,IAAI,CAAA,CAAA;AAC5D,CAAA;AACA,IAAM,gBAAmB,GAAA,CAAC,CAAG,EAAA,yCAAA,EAA2C,CAAC,CAAA,CAAA;AAQlE,SAAS,eAAA,CAAgB,SAAS,IAAM,EAAA;AAC7C,EAAA,OAAOA,oBAAsB,CAAA,IAAA,EAAM,gBAAkB,EAAA,GAAG,IAAI,CAAA,CAAA;AAC9D","file":"chunk-7GV6MUVI.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 */\n\nimport { foundryPlatformFetch as $foundryPlatformFetch } from \"@osdk/shared.net.platformapi\";\n//\n\nconst _getSchedule = [0, \"/v2/orchestration/schedules/{0}\", 2];\n\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 getSchedule($ctx, ...args) {\n return $foundryPlatformFetch($ctx, _getSchedule, ...args);\n}\nconst _runSchedule = [1, \"/v2/orchestration/schedules/{0}/run\", 2];\n\n/**\n * @beta\n *\n * Required Scopes: [api:orchestration-write]\n * URL: /v2/orchestration/schedules/{scheduleRid}/run\n */\nexport function runSchedule($ctx, ...args) {\n return $foundryPlatformFetch($ctx, _runSchedule, ...args);\n}\nconst _pauseSchedule = [1, \"/v2/orchestration/schedules/{0}/pause\", 2];\n\n/**\n * @beta\n *\n * Required Scopes: [api:orchestration-write]\n * URL: /v2/orchestration/schedules/{scheduleRid}/pause\n */\nexport function pauseSchedule($ctx, ...args) {\n return $foundryPlatformFetch($ctx, _pauseSchedule, ...args);\n}\nconst _unpauseSchedule = [1, \"/v2/orchestration/schedules/{0}/unpause\", 2];\n\n/**\n * @beta\n *\n * Required Scopes: [api:orchestration-write]\n * URL: /v2/orchestration/schedules/{scheduleRid}/unpause\n */\nexport function unpauseSchedule($ctx, ...args) {\n return $foundryPlatformFetch($ctx, _unpauseSchedule, ...args);\n}"]}
@@ -0,0 +1,21 @@
1
+ import { __export } from './chunk-PZ5AY32C.js';
2
+ import { foundryPlatformFetch } from '@osdk/shared.net.platformapi';
3
+
4
+ // src/public/Build.ts
5
+ var Build_exports = {};
6
+ __export(Build_exports, {
7
+ createBuilds: () => createBuilds,
8
+ getBuild: () => getBuild
9
+ });
10
+ var _getBuild = [0, "/v2/orchestration/builds/{0}", 2];
11
+ function getBuild($ctx, ...args) {
12
+ return foundryPlatformFetch($ctx, _getBuild, ...args);
13
+ }
14
+ var _createBuilds = [1, "/v2/orchestration/builds/create", 3];
15
+ function createBuilds($ctx, ...args) {
16
+ return foundryPlatformFetch($ctx, _createBuilds, ...args);
17
+ }
18
+
19
+ export { Build_exports, createBuilds, getBuild };
20
+ //# sourceMappingURL=chunk-HE4XPEFD.js.map
21
+ //# sourceMappingURL=chunk-HE4XPEFD.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../../src/public/Build.ts"],"names":["$foundryPlatformFetch"],"mappings":";;;;AAAA,IAAA,aAAA,GAAA,GAAA;AAAA,QAAA,CAAA,aAAA,EAAA;AAAA,EAAA,YAAA,EAAA,MAAA,YAAA;AAAA,EAAA,QAAA,EAAA,MAAA,QAAA;AAAA,CAAA,CAAA,CAAA;AAmBA,IAAM,SAAY,GAAA,CAAC,CAAG,EAAA,8BAAA,EAAgC,CAAC,CAAA,CAAA;AAUhD,SAAS,QAAA,CAAS,SAAS,IAAM,EAAA;AACtC,EAAA,OAAOA,oBAAsB,CAAA,IAAA,EAAM,SAAW,EAAA,GAAG,IAAI,CAAA,CAAA;AACvD,CAAA;AACA,IAAM,aAAgB,GAAA,CAAC,CAAG,EAAA,iCAAA,EAAmC,CAAC,CAAA,CAAA;AAQvD,SAAS,YAAA,CAAa,SAAS,IAAM,EAAA;AAC1C,EAAA,OAAOA,oBAAsB,CAAA,IAAA,EAAM,aAAe,EAAA,GAAG,IAAI,CAAA,CAAA;AAC3D","file":"chunk-HE4XPEFD.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 */\n\nimport { foundryPlatformFetch as $foundryPlatformFetch } from \"@osdk/shared.net.platformapi\";\n//\n\nconst _getBuild = [0, \"/v2/orchestration/builds/{0}\", 2];\n\n/**\n * Get the Build with the specified rid.\n *\n * @beta\n *\n * Required Scopes: [api:orchestration-read]\n * URL: /v2/orchestration/builds/{buildRid}\n */\nexport function getBuild($ctx, ...args) {\n return $foundryPlatformFetch($ctx, _getBuild, ...args);\n}\nconst _createBuilds = [1, \"/v2/orchestration/builds/create\", 3];\n\n/**\n * @beta\n *\n * Required Scopes: [api:orchestration-write]\n * URL: /v2/orchestration/builds/create\n */\nexport function createBuilds($ctx, ...args) {\n return $foundryPlatformFetch($ctx, _createBuilds, ...args);\n}"]}
@@ -0,0 +1,9 @@
1
+ var __defProp = Object.defineProperty;
2
+ var __export = (target, all) => {
3
+ for (var name in all)
4
+ __defProp(target, name, { get: all[name], enumerable: true });
5
+ };
6
+
7
+ export { __export };
8
+ //# sourceMappingURL=chunk-PZ5AY32C.js.map
9
+ //# sourceMappingURL=chunk-PZ5AY32C.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":[],"names":[],"mappings":"","file":"chunk-PZ5AY32C.js"}
@@ -1,4 +1,4 @@
1
- export type { AbortOnFailure, Action, AndTrigger, BuildStatus, BuildTarget, ConnectingTarget, CronExpression, DatasetUpdatedTrigger, FallbackBranches, ForceBuild, JobSucceededTrigger, ManualTarget, MediaSetUpdatedTrigger, NewLogicTrigger, NotificationsEnabled, OrTrigger, ProjectScope, RetryBackoffDuration, RetryCount, Schedule, SchedulePaused, ScheduleRid, ScheduleSucceededTrigger, ScheduleVersion, ScheduleVersionRid, ScopeMode, TimeTrigger, Trigger, UpstreamTarget, UserScope, ZoneId, } from "./_components.js";
1
+ export type { AbortOnFailure, Action, AndTrigger, Build, BuildRid, BuildStatus, BuildTarget, ConnectingTarget, CreateBuildsRequest, CronExpression, DatasetUpdatedTrigger, FallbackBranches, ForceBuild, JobSucceededTrigger, ManualTarget, MediaSetUpdatedTrigger, NewLogicTrigger, NotificationsEnabled, OrTrigger, ProjectScope, RetryBackoffDuration, RetryCount, Schedule, SchedulePaused, ScheduleRid, ScheduleRun, ScheduleRunError, ScheduleRunErrorName, ScheduleRunIgnored, ScheduleRunResult, ScheduleRunRid, ScheduleRunSubmitted, ScheduleSucceededTrigger, ScheduleVersion, ScheduleVersionRid, ScopeMode, TimeTrigger, Trigger, UpstreamTarget, UserScope, ZoneId, } from "./_components.js";
2
+ export * as Builds from "./public/Build.js";
2
3
  export * as Schedules from "./public/Schedule.js";
3
- export * as ScheduleVersions from "./public/ScheduleVersion.js";
4
4
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAgBA,YAAY,EACV,cAAc,EACd,MAAM,EACN,UAAU,EACV,WAAW,EACX,WAAW,EACX,gBAAgB,EAChB,cAAc,EACd,qBAAqB,EACrB,gBAAgB,EAChB,UAAU,EACV,mBAAmB,EACnB,YAAY,EACZ,sBAAsB,EACtB,eAAe,EACf,oBAAoB,EACpB,SAAS,EACT,YAAY,EACZ,oBAAoB,EACpB,UAAU,EACV,QAAQ,EACR,cAAc,EACd,WAAW,EACX,wBAAwB,EACxB,eAAe,EACf,kBAAkB,EAClB,SAAS,EACT,WAAW,EACX,OAAO,EACP,cAAc,EACd,SAAS,EACT,MAAM,GACP,MAAM,kBAAkB,CAAC;AAC1B,OAAO,KAAK,SAAS,MAAM,sBAAsB,CAAC;AAClD,OAAO,KAAK,gBAAgB,MAAM,6BAA6B,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAgBA,YAAY,EACV,cAAc,EACd,MAAM,EACN,UAAU,EACV,KAAK,EACL,QAAQ,EACR,WAAW,EACX,WAAW,EACX,gBAAgB,EAChB,mBAAmB,EACnB,cAAc,EACd,qBAAqB,EACrB,gBAAgB,EAChB,UAAU,EACV,mBAAmB,EACnB,YAAY,EACZ,sBAAsB,EACtB,eAAe,EACf,oBAAoB,EACpB,SAAS,EACT,YAAY,EACZ,oBAAoB,EACpB,UAAU,EACV,QAAQ,EACR,cAAc,EACd,WAAW,EACX,WAAW,EACX,gBAAgB,EAChB,oBAAoB,EACpB,kBAAkB,EAClB,iBAAiB,EACjB,cAAc,EACd,oBAAoB,EACpB,wBAAwB,EACxB,eAAe,EACf,kBAAkB,EAClB,SAAS,EACT,WAAW,EACX,OAAO,EACP,cAAc,EACd,SAAS,EACT,MAAM,GACP,MAAM,kBAAkB,CAAC;AAC1B,OAAO,KAAK,MAAM,MAAM,mBAAmB,CAAC;AAC5C,OAAO,KAAK,SAAS,MAAM,sBAAsB,CAAC"}
@@ -1,4 +1,5 @@
1
- export { Schedule_exports as Schedules } from './chunk-2KKE6G2P.js';
2
- export { ScheduleVersion_exports as ScheduleVersions } from './chunk-VNXNO6G4.js';
1
+ export { Build_exports as Builds } from './chunk-HE4XPEFD.js';
2
+ export { Schedule_exports as Schedules } from './chunk-7GV6MUVI.js';
3
+ import './chunk-PZ5AY32C.js';
3
4
  //# sourceMappingURL=index.js.map
4
5
  //# sourceMappingURL=index.js.map
@@ -0,0 +1,30 @@
1
+ import type { PreviewMode } from "@osdk/foundry.core";
2
+ import type { SharedClient as $Client, SharedClientContext as $ClientContext } from "@osdk/shared.client";
3
+ import type { Build, BuildRid, CreateBuildsRequest } from "../_components.js";
4
+ /**
5
+ * Get the Build with the specified rid.
6
+ *
7
+ * @beta
8
+ *
9
+ * Required Scopes: [api:orchestration-read]
10
+ * URL: /v2/orchestration/builds/{buildRid}
11
+ */
12
+ export declare function getBuild($ctx: $Client | $ClientContext, ...args: [
13
+ buildRid: BuildRid,
14
+ $queryParams?: {
15
+ preview?: PreviewMode | undefined;
16
+ }
17
+ ]): Promise<Build>;
18
+ /**
19
+ * @beta
20
+ *
21
+ * Required Scopes: [api:orchestration-write]
22
+ * URL: /v2/orchestration/builds/create
23
+ */
24
+ export declare function createBuilds($ctx: $Client | $ClientContext, ...args: [
25
+ $body: CreateBuildsRequest,
26
+ $queryParams?: {
27
+ preview?: PreviewMode | undefined;
28
+ }
29
+ ]): Promise<Build>;
30
+ //# sourceMappingURL=Build.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Build.d.ts","sourceRoot":"","sources":["../../../src/public/Build.ts"],"names":[],"mappings":"AAgBA,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,oBAAoB,CAAC;AACtD,OAAO,KAAK,EACV,YAAY,IAAI,OAAO,EACvB,mBAAmB,IAAI,cAAc,EACtC,MAAM,qBAAqB,CAAC;AAG7B,OAAO,KAAK,EAAE,KAAK,EAAE,QAAQ,EAAE,mBAAmB,EAAE,MAAM,mBAAmB,CAAC;AAW9E;;;;;;;GAOG;AACH,wBAAgB,QAAQ,CACtB,IAAI,EAAE,OAAO,GAAG,cAAc,EAC9B,GAAG,IAAI,EAAE;IACP,QAAQ,EAAE,QAAQ;IAElB,YAAY,CAAC,EAAE;QAAE,OAAO,CAAC,EAAE,WAAW,GAAG,SAAS,CAAA;KAAE;CACrD,GACA,OAAO,CAAC,KAAK,CAAC,CAEhB;AASD;;;;;GAKG;AACH,wBAAgB,YAAY,CAC1B,IAAI,EAAE,OAAO,GAAG,cAAc,EAC9B,GAAG,IAAI,EAAE;IACP,KAAK,EAAE,mBAAmB;IAC1B,YAAY,CAAC,EAAE;QAAE,OAAO,CAAC,EAAE,WAAW,GAAG,SAAS,CAAA;KAAE;CACrD,GACA,OAAO,CAAC,KAAK,CAAC,CAEhB"}
@@ -0,0 +1,4 @@
1
+ export { createBuilds, getBuild } from '../chunk-HE4XPEFD.js';
2
+ import '../chunk-PZ5AY32C.js';
3
+ //# sourceMappingURL=Build.js.map
4
+ //# sourceMappingURL=Build.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":[],"names":[],"mappings":"","file":"Build.js"}
@@ -1,8 +1,10 @@
1
1
  import type { PreviewMode } from "@osdk/foundry.core";
2
2
  import type { SharedClient as $Client, SharedClientContext as $ClientContext } from "@osdk/shared.client";
3
- import type { Schedule, ScheduleRid } from "../_components.js";
3
+ import type { Schedule, ScheduleRid, ScheduleRun } from "../_components.js";
4
4
  /**
5
- * Get the Schedule
5
+ * Get the Schedule with the specified rid.
6
+ *
7
+ * @beta
6
8
  *
7
9
  * Required Scopes: [api:orchestration-read]
8
10
  * URL: /v2/orchestration/schedules/{scheduleRid}
@@ -13,4 +15,40 @@ export declare function getSchedule($ctx: $Client | $ClientContext, ...args: [
13
15
  preview?: PreviewMode | undefined;
14
16
  }
15
17
  ]): Promise<Schedule>;
18
+ /**
19
+ * @beta
20
+ *
21
+ * Required Scopes: [api:orchestration-write]
22
+ * URL: /v2/orchestration/schedules/{scheduleRid}/run
23
+ */
24
+ export declare function runSchedule($ctx: $Client | $ClientContext, ...args: [
25
+ scheduleRid: ScheduleRid,
26
+ $queryParams?: {
27
+ preview?: PreviewMode | undefined;
28
+ }
29
+ ]): Promise<ScheduleRun>;
30
+ /**
31
+ * @beta
32
+ *
33
+ * Required Scopes: [api:orchestration-write]
34
+ * URL: /v2/orchestration/schedules/{scheduleRid}/pause
35
+ */
36
+ export declare function pauseSchedule($ctx: $Client | $ClientContext, ...args: [
37
+ scheduleRid: ScheduleRid,
38
+ $queryParams?: {
39
+ preview?: PreviewMode | undefined;
40
+ }
41
+ ]): Promise<void>;
42
+ /**
43
+ * @beta
44
+ *
45
+ * Required Scopes: [api:orchestration-write]
46
+ * URL: /v2/orchestration/schedules/{scheduleRid}/unpause
47
+ */
48
+ export declare function unpauseSchedule($ctx: $Client | $ClientContext, ...args: [
49
+ scheduleRid: ScheduleRid,
50
+ $queryParams?: {
51
+ preview?: PreviewMode | undefined;
52
+ }
53
+ ]): Promise<void>;
16
54
  //# sourceMappingURL=Schedule.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"Schedule.d.ts","sourceRoot":"","sources":["../../../src/public/Schedule.ts"],"names":[],"mappings":"AAgBA,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,oBAAoB,CAAC;AACtD,OAAO,KAAK,EACV,YAAY,IAAI,OAAO,EACvB,mBAAmB,IAAI,cAAc,EACtC,MAAM,qBAAqB,CAAC;AAG7B,OAAO,KAAK,EAAE,QAAQ,EAAE,WAAW,EAAE,MAAM,mBAAmB,CAAC;AAW/D;;;;;GAKG;AACH,wBAAgB,WAAW,CACzB,IAAI,EAAE,OAAO,GAAG,cAAc,EAC9B,GAAG,IAAI,EAAE;IACP,WAAW,EAAE,WAAW;IAExB,YAAY,CAAC,EAAE;QAAE,OAAO,CAAC,EAAE,WAAW,GAAG,SAAS,CAAA;KAAE;CACrD,GACA,OAAO,CAAC,QAAQ,CAAC,CAEnB"}
1
+ {"version":3,"file":"Schedule.d.ts","sourceRoot":"","sources":["../../../src/public/Schedule.ts"],"names":[],"mappings":"AAgBA,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,oBAAoB,CAAC;AACtD,OAAO,KAAK,EACV,YAAY,IAAI,OAAO,EACvB,mBAAmB,IAAI,cAAc,EACtC,MAAM,qBAAqB,CAAC;AAG7B,OAAO,KAAK,EAAE,QAAQ,EAAE,WAAW,EAAE,WAAW,EAAE,MAAM,mBAAmB,CAAC;AAW5E;;;;;;;GAOG;AACH,wBAAgB,WAAW,CACzB,IAAI,EAAE,OAAO,GAAG,cAAc,EAC9B,GAAG,IAAI,EAAE;IACP,WAAW,EAAE,WAAW;IAExB,YAAY,CAAC,EAAE;QAAE,OAAO,CAAC,EAAE,WAAW,GAAG,SAAS,CAAA;KAAE;CACrD,GACA,OAAO,CAAC,QAAQ,CAAC,CAEnB;AASD;;;;;GAKG;AACH,wBAAgB,WAAW,CACzB,IAAI,EAAE,OAAO,GAAG,cAAc,EAC9B,GAAG,IAAI,EAAE;IACP,WAAW,EAAE,WAAW;IAExB,YAAY,CAAC,EAAE;QAAE,OAAO,CAAC,EAAE,WAAW,GAAG,SAAS,CAAA;KAAE;CACrD,GACA,OAAO,CAAC,WAAW,CAAC,CAEtB;AASD;;;;;GAKG;AACH,wBAAgB,aAAa,CAC3B,IAAI,EAAE,OAAO,GAAG,cAAc,EAC9B,GAAG,IAAI,EAAE;IACP,WAAW,EAAE,WAAW;IAExB,YAAY,CAAC,EAAE;QAAE,OAAO,CAAC,EAAE,WAAW,GAAG,SAAS,CAAA;KAAE;CACrD,GACA,OAAO,CAAC,IAAI,CAAC,CAEf;AASD;;;;;GAKG;AACH,wBAAgB,eAAe,CAC7B,IAAI,EAAE,OAAO,GAAG,cAAc,EAC9B,GAAG,IAAI,EAAE;IACP,WAAW,EAAE,WAAW;IAExB,YAAY,CAAC,EAAE;QAAE,OAAO,CAAC,EAAE,WAAW,GAAG,SAAS,CAAA;KAAE;CACrD,GACA,OAAO,CAAC,IAAI,CAAC,CAEf"}
@@ -1,3 +1,4 @@
1
- export { getSchedule } from '../chunk-2KKE6G2P.js';
1
+ export { getSchedule, pauseSchedule, runSchedule, unpauseSchedule } from '../chunk-7GV6MUVI.js';
2
+ import '../chunk-PZ5AY32C.js';
2
3
  //# sourceMappingURL=Schedule.js.map
3
4
  //# sourceMappingURL=Schedule.js.map
@@ -1,3 +1,3 @@
1
- import '../chunk-VNXNO6G4.js';
1
+
2
2
  //# sourceMappingURL=ScheduleVersion.js.map
3
3
  //# sourceMappingURL=ScheduleVersion.js.map
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@osdk/foundry.orchestration",
3
- "version": "0.0.0",
3
+ "version": "2.1.0-beta.1",
4
4
  "license": "Apache-2.0",
5
5
  "repository": {
6
6
  "type": "git",
@@ -17,16 +17,17 @@
17
17
  }
18
18
  },
19
19
  "dependencies": {
20
- "@osdk/foundry.core": "2.0.0",
21
- "@osdk/foundry.datasets": "~2.0.0",
20
+ "@osdk/foundry.core": "2.1.0-beta.1",
21
+ "@osdk/foundry.datasets": "2.1.0-beta.1",
22
22
  "@osdk/shared.client": "~0.0.0",
23
+ "@osdk/foundry.filesystem": "2.1.0-beta.1",
23
24
  "@osdk/shared.net.platformapi": "~0.2.0"
24
25
  },
25
26
  "devDependencies": {
26
27
  "typescript": "^5.5.4",
27
28
  "@osdk/monorepo.api-extractor": "~0.0.0",
28
- "@osdk/monorepo.tsconfig": "~0.0.0",
29
- "@osdk/monorepo.tsup": "~0.0.0"
29
+ "@osdk/monorepo.tsup": "~0.0.0",
30
+ "@osdk/monorepo.tsconfig": "~0.0.0"
30
31
  },
31
32
  "publishConfig": {
32
33
  "access": "public"
@@ -45,8 +46,9 @@
45
46
  "sls": {
46
47
  "dependencies": {
47
48
  "com.palantir.foundry.api:api-gateway": {
48
- "minVersion": "1.896.0",
49
- "maxVersion": "1.x.x"
49
+ "minVersion": "1.921.0",
50
+ "maxVersion": "1.x.x",
51
+ "optional": true
50
52
  }
51
53
  }
52
54
  },
@@ -1,21 +0,0 @@
1
- import { foundryPlatformFetch } from '@osdk/shared.net.platformapi';
2
-
3
- var __defProp = Object.defineProperty;
4
- var __export = (target, all) => {
5
- for (var name in all)
6
- __defProp(target, name, { get: all[name], enumerable: true });
7
- };
8
-
9
- // src/public/Schedule.ts
10
- var Schedule_exports = {};
11
- __export(Schedule_exports, {
12
- getSchedule: () => getSchedule
13
- });
14
- var _getSchedule = [0, "/v2/orchestration/schedules/{0}", 2];
15
- function getSchedule($ctx, ...args) {
16
- return foundryPlatformFetch($ctx, _getSchedule, ...args);
17
- }
18
-
19
- export { Schedule_exports, getSchedule };
20
- //# sourceMappingURL=chunk-2KKE6G2P.js.map
21
- //# sourceMappingURL=chunk-2KKE6G2P.js.map
@@ -1 +0,0 @@
1
- {"version":3,"sources":["../../src/public/Schedule.ts"],"names":["$foundryPlatformFetch"],"mappings":";;;;;;;;;AAAA,IAAA,gBAAA,GAAA,GAAA;AAAA,QAAA,CAAA,gBAAA,EAAA;AAAA,EAAA,WAAA,EAAA,MAAA,WAAA;AAAA,CAAA,CAAA,CAAA;AAmBA,IAAM,YAAe,GAAA,CAAC,CAAG,EAAA,iCAAA,EAAmC,CAAC,CAAA,CAAA;AAQtD,SAAS,WAAA,CAAY,SAAS,IAAM,EAAA;AACzC,EAAA,OAAOA,oBAAsB,CAAA,IAAA,EAAM,YAAc,EAAA,GAAG,IAAI,CAAA,CAAA;AAC1D","file":"chunk-2KKE6G2P.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 */\n\nimport { foundryPlatformFetch as $foundryPlatformFetch } from \"@osdk/shared.net.platformapi\";\n//\n\nconst _getSchedule = [0, \"/v2/orchestration/schedules/{0}\", 2];\n\n/**\n * Get the Schedule\n *\n * Required Scopes: [api:orchestration-read]\n * URL: /v2/orchestration/schedules/{scheduleRid}\n */\nexport function getSchedule($ctx, ...args) {\n return $foundryPlatformFetch($ctx, _getSchedule, ...args);\n}"]}
@@ -1,6 +0,0 @@
1
- // src/public/ScheduleVersion.ts
2
- var ScheduleVersion_exports = {};
3
-
4
- export { ScheduleVersion_exports };
5
- //# sourceMappingURL=chunk-VNXNO6G4.js.map
6
- //# sourceMappingURL=chunk-VNXNO6G4.js.map
@@ -1 +0,0 @@
1
- {"version":3,"sources":["../../src/public/ScheduleVersion.ts"],"names":[],"mappings":";AAAA,IAAA,uBAAA,GAAA","file":"chunk-VNXNO6G4.js","sourcesContent":["export {};"]}
@@ -1,21 +0,0 @@
1
- import { foundryPlatformFetch } from '@osdk/shared.net.platformapi';
2
-
3
- var __defProp = Object.defineProperty;
4
- var __export = (target, all) => {
5
- for (var name in all)
6
- __defProp(target, name, { get: all[name], enumerable: true });
7
- };
8
-
9
- // src/public/Schedule.ts
10
- var Schedule_exports = {};
11
- __export(Schedule_exports, {
12
- getSchedule: () => getSchedule
13
- });
14
- var _getSchedule = [0, "/v2/orchestration/schedules/{0}", 2];
15
- function getSchedule($ctx, ...args) {
16
- return foundryPlatformFetch($ctx, _getSchedule, ...args);
17
- }
18
-
19
- export { Schedule_exports, getSchedule };
20
- //# sourceMappingURL=chunk-2KKE6G2P.js.map
21
- //# sourceMappingURL=chunk-2KKE6G2P.js.map
@@ -1 +0,0 @@
1
- {"version":3,"sources":["../../src/public/Schedule.ts"],"names":["$foundryPlatformFetch"],"mappings":";;;;;;;;;AAAA,IAAA,gBAAA,GAAA,GAAA;AAAA,QAAA,CAAA,gBAAA,EAAA;AAAA,EAAA,WAAA,EAAA,MAAA,WAAA;AAAA,CAAA,CAAA,CAAA;AAmBA,IAAM,YAAe,GAAA,CAAC,CAAG,EAAA,iCAAA,EAAmC,CAAC,CAAA,CAAA;AAQtD,SAAS,WAAA,CAAY,SAAS,IAAM,EAAA;AACzC,EAAA,OAAOA,oBAAsB,CAAA,IAAA,EAAM,YAAc,EAAA,GAAG,IAAI,CAAA,CAAA;AAC1D","file":"chunk-2KKE6G2P.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 */\n\nimport { foundryPlatformFetch as $foundryPlatformFetch } from \"@osdk/shared.net.platformapi\";\n//\n\nconst _getSchedule = [0, \"/v2/orchestration/schedules/{0}\", 2];\n\n/**\n * Get the Schedule\n *\n * Required Scopes: [api:orchestration-read]\n * URL: /v2/orchestration/schedules/{scheduleRid}\n */\nexport function getSchedule($ctx, ...args) {\n return $foundryPlatformFetch($ctx, _getSchedule, ...args);\n}"]}
@@ -1,6 +0,0 @@
1
- // src/public/ScheduleVersion.ts
2
- var ScheduleVersion_exports = {};
3
-
4
- export { ScheduleVersion_exports };
5
- //# sourceMappingURL=chunk-VNXNO6G4.js.map
6
- //# sourceMappingURL=chunk-VNXNO6G4.js.map
@@ -1 +0,0 @@
1
- {"version":3,"sources":["../../src/public/ScheduleVersion.ts"],"names":[],"mappings":";AAAA,IAAA,uBAAA,GAAA","file":"chunk-VNXNO6G4.js","sourcesContent":["export {};"]}