@osdk/foundry 2.0.0 → 2.1.0-beta.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.
- package/CHANGELOG.md +20 -0
- package/build/browser/index.js +9 -2
- package/build/browser/index.js.map +1 -1
- package/build/esm/index.d.ts +4 -1
- package/build/esm/index.d.ts.map +1 -1
- package/build/esm/index.js +9 -2
- package/build/esm/index.js.map +1 -1
- package/package.json +14 -11
- package/build/cjs/index.cjs +0 -42
- package/build/cjs/index.cjs.map +0 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,25 @@
|
|
|
1
1
|
# @osdk/foundry
|
|
2
2
|
|
|
3
|
+
## 2.1.0-beta.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- 5d6d5ab: Updated to latest gateway apis
|
|
8
|
+
- 5d6d5ab: Includes @alpha/@beta/@public jsdoc tags
|
|
9
|
+
|
|
10
|
+
### Patch Changes
|
|
11
|
+
|
|
12
|
+
- Updated dependencies [1770490]
|
|
13
|
+
- Updated dependencies [5d6d5ab]
|
|
14
|
+
- Updated dependencies [5d6d5ab]
|
|
15
|
+
- @osdk/foundry.datasets@2.1.0-beta.0
|
|
16
|
+
- @osdk/foundry.thirdpartyapplications@2.1.0-beta.0
|
|
17
|
+
- @osdk/foundry.orchestration@2.1.0-beta.0
|
|
18
|
+
- @osdk/foundry.admin@2.1.0-beta.0
|
|
19
|
+
- @osdk/foundry.core@2.1.0-beta.0
|
|
20
|
+
- @osdk/foundry.filesystem@2.1.0-beta.0
|
|
21
|
+
- @osdk/foundry.publicapis@2.1.0-beta.0
|
|
22
|
+
|
|
3
23
|
## 2.0.0
|
|
4
24
|
|
|
5
25
|
### Minor Changes
|
package/build/browser/index.js
CHANGED
|
@@ -1,9 +1,16 @@
|
|
|
1
1
|
import * as foundry_admin from '@osdk/foundry.admin';
|
|
2
2
|
export { foundry_admin as Admin };
|
|
3
|
-
|
|
3
|
+
import * as foundry_core from '@osdk/foundry.core';
|
|
4
|
+
export { foundry_core as Core };
|
|
4
5
|
import * as foundry_datasets from '@osdk/foundry.datasets';
|
|
5
6
|
export { foundry_datasets as Datasets };
|
|
7
|
+
import * as foundry_filesystem from '@osdk/foundry.filesystem';
|
|
8
|
+
export { foundry_filesystem as Filesystem };
|
|
9
|
+
import * as foundry_orchestration from '@osdk/foundry.orchestration';
|
|
10
|
+
export { foundry_orchestration as Orchestration };
|
|
11
|
+
import * as foundry_publicapis from '@osdk/foundry.publicapis';
|
|
12
|
+
export { foundry_publicapis as PublicApis };
|
|
6
13
|
import * as foundry_thirdpartyapplications from '@osdk/foundry.thirdpartyapplications';
|
|
7
14
|
export { foundry_thirdpartyapplications as ThirdPartyApplications };
|
|
8
|
-
//# sourceMappingURL=
|
|
15
|
+
//# sourceMappingURL=index.js.map
|
|
9
16
|
//# sourceMappingURL=index.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":[
|
|
1
|
+
{"version":3,"sources":[],"names":[],"mappings":"","file":"index.js","sourcesContent":[]}
|
package/build/esm/index.d.ts
CHANGED
|
@@ -1,5 +1,8 @@
|
|
|
1
1
|
export * as Admin from "@osdk/foundry.admin";
|
|
2
|
-
export * from "@osdk/foundry.core";
|
|
2
|
+
export * as Core from "@osdk/foundry.core";
|
|
3
3
|
export * as Datasets from "@osdk/foundry.datasets";
|
|
4
|
+
export * as Filesystem from "@osdk/foundry.filesystem";
|
|
5
|
+
export * as Orchestration from "@osdk/foundry.orchestration";
|
|
6
|
+
export * as PublicApis from "@osdk/foundry.publicapis";
|
|
4
7
|
export * as ThirdPartyApplications from "@osdk/foundry.thirdpartyapplications";
|
|
5
8
|
//# sourceMappingURL=index.d.ts.map
|
package/build/esm/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAgBA,OAAO,KAAK,KAAK,MAAM,qBAAqB,CAAC;AAC7C,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAgBA,OAAO,KAAK,KAAK,MAAM,qBAAqB,CAAC;AAC7C,OAAO,KAAK,IAAI,MAAM,oBAAoB,CAAC;AAC3C,OAAO,KAAK,QAAQ,MAAM,wBAAwB,CAAC;AACnD,OAAO,KAAK,UAAU,MAAM,0BAA0B,CAAC;AACvD,OAAO,KAAK,aAAa,MAAM,6BAA6B,CAAC;AAC7D,OAAO,KAAK,UAAU,MAAM,0BAA0B,CAAC;AACvD,OAAO,KAAK,sBAAsB,MAAM,sCAAsC,CAAC"}
|
package/build/esm/index.js
CHANGED
|
@@ -1,9 +1,16 @@
|
|
|
1
1
|
import * as foundry_admin from '@osdk/foundry.admin';
|
|
2
2
|
export { foundry_admin as Admin };
|
|
3
|
-
|
|
3
|
+
import * as foundry_core from '@osdk/foundry.core';
|
|
4
|
+
export { foundry_core as Core };
|
|
4
5
|
import * as foundry_datasets from '@osdk/foundry.datasets';
|
|
5
6
|
export { foundry_datasets as Datasets };
|
|
7
|
+
import * as foundry_filesystem from '@osdk/foundry.filesystem';
|
|
8
|
+
export { foundry_filesystem as Filesystem };
|
|
9
|
+
import * as foundry_orchestration from '@osdk/foundry.orchestration';
|
|
10
|
+
export { foundry_orchestration as Orchestration };
|
|
11
|
+
import * as foundry_publicapis from '@osdk/foundry.publicapis';
|
|
12
|
+
export { foundry_publicapis as PublicApis };
|
|
6
13
|
import * as foundry_thirdpartyapplications from '@osdk/foundry.thirdpartyapplications';
|
|
7
14
|
export { foundry_thirdpartyapplications as ThirdPartyApplications };
|
|
8
|
-
//# sourceMappingURL=
|
|
15
|
+
//# sourceMappingURL=index.js.map
|
|
9
16
|
//# sourceMappingURL=index.js.map
|
package/build/esm/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":[
|
|
1
|
+
{"version":3,"sources":[],"names":[],"mappings":"","file":"index.js","sourcesContent":[]}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@osdk/foundry",
|
|
3
|
-
"version": "2.0.0",
|
|
3
|
+
"version": "2.1.0-beta.0",
|
|
4
4
|
"license": "Apache-2.0",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -17,18 +17,21 @@
|
|
|
17
17
|
}
|
|
18
18
|
},
|
|
19
19
|
"dependencies": {
|
|
20
|
-
"@osdk/foundry.admin": "2.0.0",
|
|
21
|
-
"@osdk/foundry.
|
|
22
|
-
"@osdk/foundry.
|
|
23
|
-
"@osdk/foundry.
|
|
24
|
-
"@osdk/
|
|
25
|
-
"@osdk/
|
|
20
|
+
"@osdk/foundry.admin": "2.1.0-beta.0",
|
|
21
|
+
"@osdk/foundry.core": "2.1.0-beta.0",
|
|
22
|
+
"@osdk/foundry.datasets": "2.1.0-beta.0",
|
|
23
|
+
"@osdk/foundry.filesystem": "2.1.0-beta.0",
|
|
24
|
+
"@osdk/foundry.orchestration": "2.1.0-beta.0",
|
|
25
|
+
"@osdk/foundry.publicapis": "2.1.0-beta.0",
|
|
26
|
+
"@osdk/foundry.thirdpartyapplications": "2.1.0-beta.0",
|
|
27
|
+
"@osdk/shared.net.platformapi": "~0.2.0",
|
|
28
|
+
"@osdk/shared.client": "~0.0.0"
|
|
26
29
|
},
|
|
27
30
|
"devDependencies": {
|
|
28
|
-
"typescript": "^5.5.
|
|
31
|
+
"typescript": "^5.5.4",
|
|
29
32
|
"@osdk/monorepo.api-extractor": "~0.0.0",
|
|
30
|
-
"@osdk/monorepo.
|
|
31
|
-
"@osdk/monorepo.
|
|
33
|
+
"@osdk/monorepo.tsup": "~0.0.0",
|
|
34
|
+
"@osdk/monorepo.tsconfig": "~0.0.0"
|
|
32
35
|
},
|
|
33
36
|
"publishConfig": {
|
|
34
37
|
"access": "public"
|
|
@@ -48,7 +51,7 @@
|
|
|
48
51
|
"sls": {
|
|
49
52
|
"dependencies": {
|
|
50
53
|
"com.palantir.foundry.api:api-gateway": {
|
|
51
|
-
"minVersion": "1.
|
|
54
|
+
"minVersion": "1.908.0",
|
|
52
55
|
"maxVersion": "1.x.x"
|
|
53
56
|
}
|
|
54
57
|
}
|
package/build/cjs/index.cjs
DELETED
|
@@ -1,42 +0,0 @@
|
|
|
1
|
-
'use strict';
|
|
2
|
-
|
|
3
|
-
var foundry_admin = require('@osdk/foundry.admin');
|
|
4
|
-
var foundry_core = require('@osdk/foundry.core');
|
|
5
|
-
var foundry_datasets = require('@osdk/foundry.datasets');
|
|
6
|
-
var foundry_thirdpartyapplications = require('@osdk/foundry.thirdpartyapplications');
|
|
7
|
-
|
|
8
|
-
function _interopNamespace(e) {
|
|
9
|
-
if (e && e.__esModule) return e;
|
|
10
|
-
var n = Object.create(null);
|
|
11
|
-
if (e) {
|
|
12
|
-
Object.keys(e).forEach(function (k) {
|
|
13
|
-
if (k !== 'default') {
|
|
14
|
-
var d = Object.getOwnPropertyDescriptor(e, k);
|
|
15
|
-
Object.defineProperty(n, k, d.get ? d : {
|
|
16
|
-
enumerable: true,
|
|
17
|
-
get: function () { return e[k]; }
|
|
18
|
-
});
|
|
19
|
-
}
|
|
20
|
-
});
|
|
21
|
-
}
|
|
22
|
-
n.default = e;
|
|
23
|
-
return Object.freeze(n);
|
|
24
|
-
}
|
|
25
|
-
|
|
26
|
-
var foundry_admin__namespace = /*#__PURE__*/_interopNamespace(foundry_admin);
|
|
27
|
-
var foundry_datasets__namespace = /*#__PURE__*/_interopNamespace(foundry_datasets);
|
|
28
|
-
var foundry_thirdpartyapplications__namespace = /*#__PURE__*/_interopNamespace(foundry_thirdpartyapplications);
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
exports.Admin = foundry_admin__namespace;
|
|
33
|
-
exports.Datasets = foundry_datasets__namespace;
|
|
34
|
-
exports.ThirdPartyApplications = foundry_thirdpartyapplications__namespace;
|
|
35
|
-
Object.keys(foundry_core).forEach(function (k) {
|
|
36
|
-
if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
|
|
37
|
-
enumerable: true,
|
|
38
|
-
get: function () { return foundry_core[k]; }
|
|
39
|
-
});
|
|
40
|
-
});
|
|
41
|
-
//# sourceMappingURL=out.js.map
|
|
42
|
-
//# sourceMappingURL=index.cjs.map
|
package/build/cjs/index.cjs.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"sources":["../../src/index.ts"],"names":[],"mappings":";AAgBA,YAAY,WAAW;AACvB,cAAc;AACd,YAAY,cAAc;AAC1B,YAAY,4BAA4B","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\nexport * as Admin from \"@osdk/foundry.admin\";\nexport * from \"@osdk/foundry.core\";\nexport * as Datasets from \"@osdk/foundry.datasets\";\nexport * as ThirdPartyApplications from \"@osdk/foundry.thirdpartyapplications\";"]}
|