@osdk/foundry 1.1.0-beta.2 → 3.0.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 +33 -0
- package/build/browser/index.js +5 -3
- package/build/browser/index.js.map +1 -1
- package/build/cjs/index.cjs +7 -4
- 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 +5 -3
- package/build/esm/index.js.map +1 -1
- package/package.json +10 -9
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,38 @@
|
|
|
1
1
|
# @osdk/foundry
|
|
2
2
|
|
|
3
|
+
## 3.0.0-beta.0
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- @osdk/foundry.admin@3.0.0-beta.0
|
|
8
|
+
- @osdk/foundry.datasets@3.0.0-beta.0
|
|
9
|
+
- @osdk/foundry.core@3.0.0-beta.0
|
|
10
|
+
- @osdk/foundry.thirdpartyapplications@3.0.0-beta.0
|
|
11
|
+
|
|
12
|
+
## 2.0.0
|
|
13
|
+
|
|
14
|
+
### Minor Changes
|
|
15
|
+
|
|
16
|
+
- af1d316: Added support to omni api code gen for binary type bodies in requests.
|
|
17
|
+
- 388dba9: Change all internal dependencies to be tilde not caret
|
|
18
|
+
- 9405a3e: Bump api-gateway to 1.891.0
|
|
19
|
+
- bc89b62: Spelling fixes and spell check in CI
|
|
20
|
+
- a8dc51a: Modified codegen so that return types now include Blobs.
|
|
21
|
+
|
|
22
|
+
### Patch Changes
|
|
23
|
+
|
|
24
|
+
- Updated dependencies [af1d316]
|
|
25
|
+
- Updated dependencies [94833a7]
|
|
26
|
+
- Updated dependencies [388dba9]
|
|
27
|
+
- Updated dependencies [9405a3e]
|
|
28
|
+
- Updated dependencies [bc89b62]
|
|
29
|
+
- Updated dependencies [a8dc51a]
|
|
30
|
+
- @osdk/foundry.thirdpartyapplications@2.0.0
|
|
31
|
+
- @osdk/foundry.admin@2.0.0
|
|
32
|
+
- @osdk/foundry.core@2.0.0
|
|
33
|
+
- @osdk/shared.net.platformapi@0.2.0
|
|
34
|
+
- @osdk/foundry.datasets@2.0.0
|
|
35
|
+
|
|
3
36
|
## 1.1.0-beta.2
|
|
4
37
|
|
|
5
38
|
### Minor Changes
|
package/build/browser/index.js
CHANGED
|
@@ -1,7 +1,9 @@
|
|
|
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
|
-
//# sourceMappingURL=
|
|
8
|
+
//# sourceMappingURL=index.js.map
|
|
7
9
|
//# sourceMappingURL=index.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":[
|
|
1
|
+
{"version":3,"sources":[],"names":[],"mappings":"","file":"index.js","sourcesContent":[]}
|
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, {
|
|
@@ -35,5 +38,5 @@ Object.keys(foundry_core).forEach(function (k) {
|
|
|
35
38
|
get: function () { return foundry_core[k]; }
|
|
36
39
|
});
|
|
37
40
|
});
|
|
38
|
-
//# sourceMappingURL=
|
|
41
|
+
//# sourceMappingURL=index.cjs.map
|
|
39
42
|
//# sourceMappingURL=index.cjs.map
|
package/build/cjs/index.cjs.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":[
|
|
1
|
+
{"version":3,"sources":[],"names":[],"mappings":"","file":"index.cjs","sourcesContent":[]}
|
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,7 +1,9 @@
|
|
|
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
|
-
//# sourceMappingURL=
|
|
8
|
+
//# sourceMappingURL=index.js.map
|
|
7
9
|
//# 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": "
|
|
3
|
+
"version": "3.0.0-beta.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": "3.0.0-beta.0",
|
|
21
|
+
"@osdk/foundry.core": "3.0.0-beta.0",
|
|
22
|
+
"@osdk/foundry.datasets": "3.0.0-beta.0",
|
|
23
|
+
"@osdk/foundry.thirdpartyapplications": "3.0.0-beta.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
|
-
"typescript": "^5.5.
|
|
28
|
-
"@osdk/monorepo.
|
|
28
|
+
"typescript": "^5.5.4",
|
|
29
|
+
"@osdk/monorepo.tsconfig": "~0.0.0",
|
|
29
30
|
"@osdk/monorepo.tsup": "~0.0.0",
|
|
30
|
-
"@osdk/monorepo.
|
|
31
|
+
"@osdk/monorepo.api-extractor": "~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
|
}
|