@osdk/foundry 1.1.0-beta.2 → 2.0.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 +24 -0
- package/build/browser/index.js +4 -2
- package/build/browser/index.js.map +1 -1
- package/build/cjs/index.cjs +6 -3
- package/build/cjs/index.cjs.map +1 -1
- package/build/esm/index.d.ts +2 -1
- package/build/esm/index.d.ts.map +1 -1
- package/build/esm/index.js +4 -2
- package/build/esm/index.js.map +1 -1
- package/package.json +9 -8
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,29 @@
|
|
|
1
1
|
# @osdk/foundry
|
|
2
2
|
|
|
3
|
+
## 2.0.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- af1d316: Added support to omni api code gen for binary type bodies in requests.
|
|
8
|
+
- 388dba9: Change all internal dependencies to be tilde not caret
|
|
9
|
+
- 9405a3e: Bump api-gateway to 1.891.0
|
|
10
|
+
- bc89b62: Spelling fixes and spell check in CI
|
|
11
|
+
- a8dc51a: Modified codegen so that return types now include Blobs.
|
|
12
|
+
|
|
13
|
+
### Patch Changes
|
|
14
|
+
|
|
15
|
+
- Updated dependencies [af1d316]
|
|
16
|
+
- Updated dependencies [94833a7]
|
|
17
|
+
- Updated dependencies [388dba9]
|
|
18
|
+
- Updated dependencies [9405a3e]
|
|
19
|
+
- Updated dependencies [bc89b62]
|
|
20
|
+
- Updated dependencies [a8dc51a]
|
|
21
|
+
- @osdk/foundry.thirdpartyapplications@2.0.0
|
|
22
|
+
- @osdk/foundry.admin@2.0.0
|
|
23
|
+
- @osdk/foundry.core@2.0.0
|
|
24
|
+
- @osdk/shared.net.platformapi@0.2.0
|
|
25
|
+
- @osdk/foundry.datasets@2.0.0
|
|
26
|
+
|
|
3
27
|
## 1.1.0-beta.2
|
|
4
28
|
|
|
5
29
|
### Minor Changes
|
package/build/browser/index.js
CHANGED
|
@@ -1,6 +1,8 @@
|
|
|
1
|
+
import * as foundry_admin from '@osdk/foundry.admin';
|
|
2
|
+
export { foundry_admin as Admin };
|
|
1
3
|
export * from '@osdk/foundry.core';
|
|
2
|
-
import * as
|
|
3
|
-
export {
|
|
4
|
+
import * as foundry_datasets from '@osdk/foundry.datasets';
|
|
5
|
+
export { foundry_datasets as Datasets };
|
|
4
6
|
import * as foundry_thirdpartyapplications from '@osdk/foundry.thirdpartyapplications';
|
|
5
7
|
export { foundry_thirdpartyapplications as ThirdPartyApplications };
|
|
6
8
|
//# sourceMappingURL=out.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../../src/index.ts"],"names":[],"mappings":";AAgBA,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 * from \"@osdk/foundry.core\";\nexport * as
|
|
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\";"]}
|
package/build/cjs/index.cjs
CHANGED
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
|
|
3
|
+
var foundry_admin = require('@osdk/foundry.admin');
|
|
3
4
|
var foundry_core = require('@osdk/foundry.core');
|
|
4
|
-
var
|
|
5
|
+
var foundry_datasets = require('@osdk/foundry.datasets');
|
|
5
6
|
var foundry_thirdpartyapplications = require('@osdk/foundry.thirdpartyapplications');
|
|
6
7
|
|
|
7
8
|
function _interopNamespace(e) {
|
|
@@ -22,12 +23,14 @@ function _interopNamespace(e) {
|
|
|
22
23
|
return Object.freeze(n);
|
|
23
24
|
}
|
|
24
25
|
|
|
25
|
-
var
|
|
26
|
+
var foundry_admin__namespace = /*#__PURE__*/_interopNamespace(foundry_admin);
|
|
27
|
+
var foundry_datasets__namespace = /*#__PURE__*/_interopNamespace(foundry_datasets);
|
|
26
28
|
var foundry_thirdpartyapplications__namespace = /*#__PURE__*/_interopNamespace(foundry_thirdpartyapplications);
|
|
27
29
|
|
|
28
30
|
|
|
29
31
|
|
|
30
|
-
exports.
|
|
32
|
+
exports.Admin = foundry_admin__namespace;
|
|
33
|
+
exports.Datasets = foundry_datasets__namespace;
|
|
31
34
|
exports.ThirdPartyApplications = foundry_thirdpartyapplications__namespace;
|
|
32
35
|
Object.keys(foundry_core).forEach(function (k) {
|
|
33
36
|
if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
|
package/build/cjs/index.cjs.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../../src/index.ts"],"names":[],"mappings":";AAgBA,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 * from \"@osdk/foundry.core\";\nexport * as
|
|
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\";"]}
|
package/build/esm/index.d.ts
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
|
+
export * as Admin from "@osdk/foundry.admin";
|
|
1
2
|
export * from "@osdk/foundry.core";
|
|
2
|
-
export * as
|
|
3
|
+
export * as Datasets from "@osdk/foundry.datasets";
|
|
3
4
|
export * as ThirdPartyApplications from "@osdk/foundry.thirdpartyapplications";
|
|
4
5
|
//# 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,cAAc,oBAAoB,CAAC;AACnC,OAAO,KAAK,QAAQ,MAAM,wBAAwB,CAAC;AACnD,OAAO,KAAK,sBAAsB,MAAM,sCAAsC,CAAC"}
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAgBA,OAAO,KAAK,KAAK,MAAM,qBAAqB,CAAC;AAC7C,cAAc,oBAAoB,CAAC;AACnC,OAAO,KAAK,QAAQ,MAAM,wBAAwB,CAAC;AACnD,OAAO,KAAK,sBAAsB,MAAM,sCAAsC,CAAC"}
|
package/build/esm/index.js
CHANGED
|
@@ -1,6 +1,8 @@
|
|
|
1
|
+
import * as foundry_admin from '@osdk/foundry.admin';
|
|
2
|
+
export { foundry_admin as Admin };
|
|
1
3
|
export * from '@osdk/foundry.core';
|
|
2
|
-
import * as
|
|
3
|
-
export {
|
|
4
|
+
import * as foundry_datasets from '@osdk/foundry.datasets';
|
|
5
|
+
export { foundry_datasets as Datasets };
|
|
4
6
|
import * as foundry_thirdpartyapplications from '@osdk/foundry.thirdpartyapplications';
|
|
5
7
|
export { foundry_thirdpartyapplications as ThirdPartyApplications };
|
|
6
8
|
//# sourceMappingURL=out.js.map
|
package/build/esm/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../../src/index.ts"],"names":[],"mappings":";AAgBA,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 * from \"@osdk/foundry.core\";\nexport * as
|
|
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\";"]}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@osdk/foundry",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "2.0.0",
|
|
4
4
|
"license": "Apache-2.0",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -17,17 +17,18 @@
|
|
|
17
17
|
}
|
|
18
18
|
},
|
|
19
19
|
"dependencies": {
|
|
20
|
-
"@osdk/foundry.
|
|
21
|
-
"@osdk/foundry.
|
|
22
|
-
"@osdk/foundry.
|
|
20
|
+
"@osdk/foundry.admin": "2.0.0",
|
|
21
|
+
"@osdk/foundry.datasets": "2.0.0",
|
|
22
|
+
"@osdk/foundry.core": "2.0.0",
|
|
23
|
+
"@osdk/foundry.thirdpartyapplications": "2.0.0",
|
|
23
24
|
"@osdk/shared.client": "~0.0.0",
|
|
24
|
-
"@osdk/shared.net.platformapi": "~0.2.0
|
|
25
|
+
"@osdk/shared.net.platformapi": "~0.2.0"
|
|
25
26
|
},
|
|
26
27
|
"devDependencies": {
|
|
27
28
|
"typescript": "^5.5.2",
|
|
28
29
|
"@osdk/monorepo.api-extractor": "~0.0.0",
|
|
29
|
-
"@osdk/monorepo.
|
|
30
|
-
"@osdk/monorepo.
|
|
30
|
+
"@osdk/monorepo.tsconfig": "~0.0.0",
|
|
31
|
+
"@osdk/monorepo.tsup": "~0.0.0"
|
|
31
32
|
},
|
|
32
33
|
"publishConfig": {
|
|
33
34
|
"access": "public"
|
|
@@ -47,7 +48,7 @@
|
|
|
47
48
|
"sls": {
|
|
48
49
|
"dependencies": {
|
|
49
50
|
"com.palantir.foundry.api:api-gateway": {
|
|
50
|
-
"minVersion": "1.
|
|
51
|
+
"minVersion": "1.891.0",
|
|
51
52
|
"maxVersion": "1.x.x"
|
|
52
53
|
}
|
|
53
54
|
}
|