@osdk/foundry.orchestration 2.1.0-beta.4 → 2.1.0-beta.6
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.
- package/CHANGELOG.md +29 -0
- package/build/browser/_components.d.ts +679 -0
- package/build/browser/_components.d.ts.map +1 -0
- package/build/browser/_components.js +17 -0
- package/build/browser/_components.js.map +1 -0
- package/build/browser/_errors.d.ts +342 -0
- package/build/browser/_errors.d.ts.map +1 -0
- package/build/browser/_errors.js +17 -0
- package/build/browser/_errors.js.map +1 -0
- package/build/browser/index.d.ts +5 -0
- package/build/browser/index.d.ts.map +1 -0
- package/build/browser/index.js +17 -4
- package/build/browser/index.js.map +1 -1
- package/build/browser/public/Build.d.ts +30 -0
- package/build/browser/public/Build.d.ts.map +1 -0
- package/build/browser/public/Build.js +39 -3
- package/build/browser/public/Build.js.map +1 -1
- package/build/browser/public/Schedule.d.ts +97 -0
- package/build/browser/public/Schedule.d.ts.map +1 -0
- package/build/browser/public/Schedule.js +95 -3
- package/build/browser/public/Schedule.js.map +1 -1
- package/build/browser/public/ScheduleVersion.d.ts +2 -0
- package/build/browser/public/ScheduleVersion.d.ts.map +1 -0
- package/build/browser/public/ScheduleVersion.js +17 -2
- package/build/browser/public/ScheduleVersion.js.map +1 -1
- package/build/esm/_components.d.ts +346 -38
- package/build/esm/_components.d.ts.map +1 -1
- package/build/esm/_components.js +17 -0
- package/build/esm/_components.js.map +1 -0
- package/build/esm/_errors.d.ts +178 -0
- package/build/esm/_errors.d.ts.map +1 -1
- package/build/esm/_errors.js +17 -0
- package/build/esm/_errors.js.map +1 -0
- package/build/esm/index.d.ts +2 -2
- package/build/esm/index.d.ts.map +1 -1
- package/build/esm/index.js +17 -4
- package/build/esm/index.js.map +1 -1
- package/build/esm/public/Build.d.ts +8 -8
- package/build/esm/public/Build.d.ts.map +1 -1
- package/build/esm/public/Build.js +39 -3
- package/build/esm/public/Build.js.map +1 -1
- package/build/esm/public/Schedule.d.ts +55 -12
- package/build/esm/public/Schedule.d.ts.map +1 -1
- package/build/esm/public/Schedule.js +95 -3
- package/build/esm/public/Schedule.js.map +1 -1
- package/build/esm/public/ScheduleVersion.js +17 -2
- package/build/esm/public/ScheduleVersion.js.map +1 -1
- package/package.json +8 -9
- package/build/browser/chunk-7GV6MUVI.js +0 -31
- package/build/browser/chunk-7GV6MUVI.js.map +0 -1
- package/build/browser/chunk-HE4XPEFD.js +0 -21
- package/build/browser/chunk-HE4XPEFD.js.map +0 -1
- package/build/browser/chunk-PZ5AY32C.js +0 -9
- package/build/browser/chunk-PZ5AY32C.js.map +0 -1
- package/build/esm/chunk-7GV6MUVI.js +0 -31
- package/build/esm/chunk-7GV6MUVI.js.map +0 -1
- package/build/esm/chunk-HE4XPEFD.js +0 -21
- package/build/esm/chunk-HE4XPEFD.js.map +0 -1
- package/build/esm/chunk-PZ5AY32C.js +0 -9
- package/build/esm/chunk-PZ5AY32C.js.map +0 -1
|
@@ -1,4 +1,96 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
1
|
+
/*
|
|
2
|
+
* Copyright 2024 Palantir Technologies, Inc. All rights reserved.
|
|
3
|
+
*
|
|
4
|
+
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
5
|
+
* you may not use this file except in compliance with the License.
|
|
6
|
+
* You may obtain a copy of the License at
|
|
7
|
+
*
|
|
8
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
|
9
|
+
*
|
|
10
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
11
|
+
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
12
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
13
|
+
* See the License for the specific language governing permissions and
|
|
14
|
+
* limitations under the License.
|
|
15
|
+
*/
|
|
16
|
+
import { foundryPlatformFetch as $foundryPlatformFetch } from "@osdk/shared.net.platformapi";
|
|
17
|
+
//
|
|
18
|
+
const _createSchedule = [1, "/v2/orchestration/schedules", 3];
|
|
19
|
+
/**
|
|
20
|
+
* Creates a new Schedule.
|
|
21
|
+
*
|
|
22
|
+
* @beta
|
|
23
|
+
*
|
|
24
|
+
* Required Scopes: [api:orchestration-write]
|
|
25
|
+
* URL: /v2/orchestration/schedules
|
|
26
|
+
*/
|
|
27
|
+
export function createSchedule($ctx, ...args) {
|
|
28
|
+
return $foundryPlatformFetch($ctx, _createSchedule, ...args);
|
|
29
|
+
}
|
|
30
|
+
const _deleteSchedule = [3, "/v2/orchestration/schedules/{0}", 2];
|
|
31
|
+
/**
|
|
32
|
+
* Delete the Schedule with the specified rid.
|
|
33
|
+
*
|
|
34
|
+
* @beta
|
|
35
|
+
*
|
|
36
|
+
* Required Scopes: [api:orchestration-write]
|
|
37
|
+
* URL: /v2/orchestration/schedules/{scheduleRid}
|
|
38
|
+
*/
|
|
39
|
+
export function deleteSchedule($ctx, ...args) {
|
|
40
|
+
return $foundryPlatformFetch($ctx, _deleteSchedule, ...args);
|
|
41
|
+
}
|
|
42
|
+
const _getSchedule = [0, "/v2/orchestration/schedules/{0}", 2];
|
|
43
|
+
/**
|
|
44
|
+
* Get the Schedule with the specified rid.
|
|
45
|
+
*
|
|
46
|
+
* @beta
|
|
47
|
+
*
|
|
48
|
+
* Required Scopes: [api:orchestration-read]
|
|
49
|
+
* URL: /v2/orchestration/schedules/{scheduleRid}
|
|
50
|
+
*/
|
|
51
|
+
export function getSchedule($ctx, ...args) {
|
|
52
|
+
return $foundryPlatformFetch($ctx, _getSchedule, ...args);
|
|
53
|
+
}
|
|
54
|
+
const _replaceSchedule = [2, "/v2/orchestration/schedules/{0}", 3];
|
|
55
|
+
/**
|
|
56
|
+
* Replace the Schedule with the specified rid.
|
|
57
|
+
*
|
|
58
|
+
* @beta
|
|
59
|
+
*
|
|
60
|
+
* Required Scopes: [api:orchestration-write]
|
|
61
|
+
* URL: /v2/orchestration/schedules/{scheduleRid}
|
|
62
|
+
*/
|
|
63
|
+
export function replaceSchedule($ctx, ...args) {
|
|
64
|
+
return $foundryPlatformFetch($ctx, _replaceSchedule, ...args);
|
|
65
|
+
}
|
|
66
|
+
const _runSchedule = [1, "/v2/orchestration/schedules/{0}/run", 2];
|
|
67
|
+
/**
|
|
68
|
+
* @beta
|
|
69
|
+
*
|
|
70
|
+
* Required Scopes: [api:orchestration-write]
|
|
71
|
+
* URL: /v2/orchestration/schedules/{scheduleRid}/run
|
|
72
|
+
*/
|
|
73
|
+
export function runSchedule($ctx, ...args) {
|
|
74
|
+
return $foundryPlatformFetch($ctx, _runSchedule, ...args);
|
|
75
|
+
}
|
|
76
|
+
const _pauseSchedule = [1, "/v2/orchestration/schedules/{0}/pause", 2];
|
|
77
|
+
/**
|
|
78
|
+
* @beta
|
|
79
|
+
*
|
|
80
|
+
* Required Scopes: [api:orchestration-write]
|
|
81
|
+
* URL: /v2/orchestration/schedules/{scheduleRid}/pause
|
|
82
|
+
*/
|
|
83
|
+
export function pauseSchedule($ctx, ...args) {
|
|
84
|
+
return $foundryPlatformFetch($ctx, _pauseSchedule, ...args);
|
|
85
|
+
}
|
|
86
|
+
const _unpauseSchedule = [1, "/v2/orchestration/schedules/{0}/unpause", 2];
|
|
87
|
+
/**
|
|
88
|
+
* @beta
|
|
89
|
+
*
|
|
90
|
+
* Required Scopes: [api:orchestration-write]
|
|
91
|
+
* URL: /v2/orchestration/schedules/{scheduleRid}/unpause
|
|
92
|
+
*/
|
|
93
|
+
export function unpauseSchedule($ctx, ...args) {
|
|
94
|
+
return $foundryPlatformFetch($ctx, _unpauseSchedule, ...args);
|
|
95
|
+
}
|
|
4
96
|
//# sourceMappingURL=Schedule.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"
|
|
1
|
+
{"version":3,"file":"Schedule.js","names":["foundryPlatformFetch","$foundryPlatformFetch","_createSchedule","createSchedule","$ctx","args","_deleteSchedule","deleteSchedule","_getSchedule","getSchedule","_replaceSchedule","replaceSchedule","_runSchedule","runSchedule","_pauseSchedule","pauseSchedule","_unpauseSchedule","unpauseSchedule"],"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 _createSchedule = [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 createSchedule($ctx, ...args) {\n return $foundryPlatformFetch($ctx, _createSchedule, ...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 _getSchedule = [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 getSchedule($ctx, ...args) {\n return $foundryPlatformFetch($ctx, _getSchedule, ...args);\n}\nconst _replaceSchedule = [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 replaceSchedule($ctx, ...args) {\n return $foundryPlatformFetch($ctx, _replaceSchedule, ...args);\n}\nconst _runSchedule = [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 runSchedule($ctx, ...args) {\n return $foundryPlatformFetch($ctx, _runSchedule, ...args);\n}\nconst _pauseSchedule = [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 pauseSchedule($ctx, ...args) {\n return $foundryPlatformFetch($ctx, _pauseSchedule, ...args);\n}\nconst _unpauseSchedule = [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 unpauseSchedule($ctx, ...args) {\n return $foundryPlatformFetch($ctx, _unpauseSchedule, ...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,eAAe,GAAG,CAAC,CAAC,EAAE,6BAA6B,EAAE,CAAC,CAAC;AAC7D;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,OAAO,SAASC,cAAcA,CAACC,IAAI,EAAE,GAAGC,IAAI,EAAE;EAC1C,OAAOJ,qBAAqB,CAACG,IAAI,EAAEF,eAAe,EAAE,GAAGG,IAAI,CAAC;AAChE;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,YAAY,GAAG,CAAC,CAAC,EAAE,iCAAiC,EAAE,CAAC,CAAC;AAC9D;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,OAAO,SAASC,WAAWA,CAACL,IAAI,EAAE,GAAGC,IAAI,EAAE;EACvC,OAAOJ,qBAAqB,CAACG,IAAI,EAAEI,YAAY,EAAE,GAAGH,IAAI,CAAC;AAC7D;AACA,MAAMK,gBAAgB,GAAG,CAAC,CAAC,EAAE,iCAAiC,EAAE,CAAC,CAAC;AAClE;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,OAAO,SAASC,eAAeA,CAACP,IAAI,EAAE,GAAGC,IAAI,EAAE;EAC3C,OAAOJ,qBAAqB,CAACG,IAAI,EAAEM,gBAAgB,EAAE,GAAGL,IAAI,CAAC;AACjE;AACA,MAAMO,YAAY,GAAG,CAAC,CAAC,EAAE,qCAAqC,EAAE,CAAC,CAAC;AAClE;AACA;AACA;AACA;AACA;AACA;AACA,OAAO,SAASC,WAAWA,CAACT,IAAI,EAAE,GAAGC,IAAI,EAAE;EACvC,OAAOJ,qBAAqB,CAACG,IAAI,EAAEQ,YAAY,EAAE,GAAGP,IAAI,CAAC;AAC7D;AACA,MAAMS,cAAc,GAAG,CAAC,CAAC,EAAE,uCAAuC,EAAE,CAAC,CAAC;AACtE;AACA;AACA;AACA;AACA;AACA;AACA,OAAO,SAASC,aAAaA,CAACX,IAAI,EAAE,GAAGC,IAAI,EAAE;EACzC,OAAOJ,qBAAqB,CAACG,IAAI,EAAEU,cAAc,EAAE,GAAGT,IAAI,CAAC;AAC/D;AACA,MAAMW,gBAAgB,GAAG,CAAC,CAAC,EAAE,yCAAyC,EAAE,CAAC,CAAC;AAC1E;AACA;AACA;AACA;AACA;AACA;AACA,OAAO,SAASC,eAAeA,CAACb,IAAI,EAAE,GAAGC,IAAI,EAAE;EAC3C,OAAOJ,qBAAqB,CAACG,IAAI,EAAEY,gBAAgB,EAAE,GAAGX,IAAI,CAAC;AACjE","ignoreList":[]}
|
|
@@ -1,3 +1,18 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
1
|
+
/*
|
|
2
|
+
* Copyright 2024 Palantir Technologies, Inc. All rights reserved.
|
|
3
|
+
*
|
|
4
|
+
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
5
|
+
* you may not use this file except in compliance with the License.
|
|
6
|
+
* You may obtain a copy of the License at
|
|
7
|
+
*
|
|
8
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
|
9
|
+
*
|
|
10
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
11
|
+
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
12
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
13
|
+
* See the License for the specific language governing permissions and
|
|
14
|
+
* limitations under the License.
|
|
15
|
+
*/
|
|
16
|
+
export {};
|
|
17
|
+
//
|
|
3
18
|
//# sourceMappingURL=ScheduleVersion.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"
|
|
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":[]}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@osdk/foundry.orchestration",
|
|
3
|
-
"version": "2.1.0-beta.
|
|
3
|
+
"version": "2.1.0-beta.6",
|
|
4
4
|
"license": "Apache-2.0",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -17,11 +17,11 @@
|
|
|
17
17
|
}
|
|
18
18
|
},
|
|
19
19
|
"dependencies": {
|
|
20
|
-
"@osdk/foundry.
|
|
21
|
-
"@osdk/
|
|
22
|
-
"@osdk/foundry.
|
|
23
|
-
"@osdk/
|
|
24
|
-
"@osdk/shared.net.platformapi": "~0.3.0-beta.
|
|
20
|
+
"@osdk/foundry.datasets": "2.1.0-beta.6",
|
|
21
|
+
"@osdk/shared.client": "^1.0.0-beta.3",
|
|
22
|
+
"@osdk/foundry.core": "2.1.0-beta.6",
|
|
23
|
+
"@osdk/foundry.filesystem": "2.1.0-beta.6",
|
|
24
|
+
"@osdk/shared.net.platformapi": "~0.3.0-beta.3"
|
|
25
25
|
},
|
|
26
26
|
"devDependencies": {
|
|
27
27
|
"typescript": "^5.5.4",
|
|
@@ -46,7 +46,7 @@
|
|
|
46
46
|
"sls": {
|
|
47
47
|
"dependencies": {
|
|
48
48
|
"com.palantir.foundry.api:api-gateway": {
|
|
49
|
-
"minVersion": "1.
|
|
49
|
+
"minVersion": "1.934.0",
|
|
50
50
|
"maxVersion": "1.x.x",
|
|
51
51
|
"optional": true
|
|
52
52
|
}
|
|
@@ -59,7 +59,6 @@
|
|
|
59
59
|
"clean": "rm -rf lib dist types build tsconfig.tsbuildinfo",
|
|
60
60
|
"fix-lint": "eslint . --fix && dprint fmt --config $(find-up dprint.json)",
|
|
61
61
|
"lint": "eslint . && dprint check --config $(find-up dprint.json)",
|
|
62
|
-
"transpile": "monorepo.tool.transpile"
|
|
63
|
-
"typecheck": "monorepo.tool.typecheck esm"
|
|
62
|
+
"transpile": "monorepo.tool.transpile"
|
|
64
63
|
}
|
|
65
64
|
}
|
|
@@ -1,31 +0,0 @@
|
|
|
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
|
|
@@ -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,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}"]}
|
|
@@ -1,21 +0,0 @@
|
|
|
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
|
|
@@ -1 +0,0 @@
|
|
|
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}"]}
|
|
@@ -1,9 +0,0 @@
|
|
|
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
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"sources":[],"names":[],"mappings":"","file":"chunk-PZ5AY32C.js"}
|
|
@@ -1,31 +0,0 @@
|
|
|
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
|
|
@@ -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,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}"]}
|
|
@@ -1,21 +0,0 @@
|
|
|
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
|
|
@@ -1 +0,0 @@
|
|
|
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}"]}
|
|
@@ -1,9 +0,0 @@
|
|
|
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
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"sources":[],"names":[],"mappings":"","file":"chunk-PZ5AY32C.js"}
|