@osdk/foundry 2.0.1 → 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.
package/CHANGELOG.md CHANGED
@@ -1,13 +1,43 @@
1
1
  # @osdk/foundry
2
2
 
3
- ## 2.0.1
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.thirdpartyapplications@2.1.0-beta.1
15
+ - @osdk/foundry.orchestration@2.1.0-beta.1
16
+ - @osdk/foundry.filesystem@2.1.0-beta.1
17
+ - @osdk/foundry.publicapis@2.1.0-beta.1
18
+ - @osdk/foundry.datasets@2.1.0-beta.1
19
+ - @osdk/foundry.admin@2.1.0-beta.1
20
+ - @osdk/foundry.core@2.1.0-beta.1
21
+
22
+ ## 2.1.0-beta.0
23
+
24
+ ### Minor Changes
25
+
26
+ - 5d6d5ab: Updated to latest gateway apis
27
+ - 5d6d5ab: Includes @alpha/@beta/@public jsdoc tags
4
28
 
5
29
  ### Patch Changes
6
30
 
7
- - @osdk/foundry.admin@2.0.1
8
- - @osdk/foundry.datasets@2.0.1
9
- - @osdk/foundry.core@2.0.1
10
- - @osdk/foundry.thirdpartyapplications@2.0.1
31
+ - Updated dependencies [1770490]
32
+ - Updated dependencies [5d6d5ab]
33
+ - Updated dependencies [5d6d5ab]
34
+ - @osdk/foundry.datasets@2.1.0-beta.0
35
+ - @osdk/foundry.thirdpartyapplications@2.1.0-beta.0
36
+ - @osdk/foundry.orchestration@2.1.0-beta.0
37
+ - @osdk/foundry.admin@2.1.0-beta.0
38
+ - @osdk/foundry.core@2.1.0-beta.0
39
+ - @osdk/foundry.filesystem@2.1.0-beta.0
40
+ - @osdk/foundry.publicapis@2.1.0-beta.0
11
41
 
12
42
  ## 2.0.0
13
43
 
@@ -1,8 +1,15 @@
1
1
  import * as foundry_admin from '@osdk/foundry.admin';
2
2
  export { foundry_admin as Admin };
3
- export * from '@osdk/foundry.core';
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
15
  //# sourceMappingURL=index.js.map
@@ -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
@@ -1 +1 @@
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"}
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"}
@@ -1,8 +1,15 @@
1
1
  import * as foundry_admin from '@osdk/foundry.admin';
2
2
  export { foundry_admin as Admin };
3
- export * from '@osdk/foundry.core';
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
15
  //# sourceMappingURL=index.js.map
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@osdk/foundry",
3
- "version": "2.0.1",
3
+ "version": "2.1.0-beta.1",
4
4
  "license": "Apache-2.0",
5
5
  "repository": {
6
6
  "type": "git",
@@ -17,12 +17,15 @@
17
17
  }
18
18
  },
19
19
  "dependencies": {
20
- "@osdk/foundry.admin": "2.0.1",
21
- "@osdk/foundry.core": "2.0.1",
22
- "@osdk/foundry.datasets": "2.0.1",
23
- "@osdk/shared.net.platformapi": "~0.2.0",
20
+ "@osdk/foundry.core": "2.1.0-beta.1",
21
+ "@osdk/foundry.datasets": "2.1.0-beta.1",
22
+ "@osdk/foundry.orchestration": "2.1.0-beta.1",
23
+ "@osdk/foundry.admin": "2.1.0-beta.1",
24
+ "@osdk/foundry.publicapis": "2.1.0-beta.1",
25
+ "@osdk/foundry.filesystem": "2.1.0-beta.1",
26
+ "@osdk/foundry.thirdpartyapplications": "2.1.0-beta.1",
24
27
  "@osdk/shared.client": "~0.0.0",
25
- "@osdk/foundry.thirdpartyapplications": "2.0.1"
28
+ "@osdk/shared.net.platformapi": "~0.2.0"
26
29
  },
27
30
  "devDependencies": {
28
31
  "typescript": "^5.5.4",
@@ -48,8 +51,9 @@
48
51
  "sls": {
49
52
  "dependencies": {
50
53
  "com.palantir.foundry.api:api-gateway": {
51
- "minVersion": "1.891.0",
52
- "maxVersion": "1.x.x"
54
+ "minVersion": "1.921.0",
55
+ "maxVersion": "1.x.x",
56
+ "optional": true
53
57
  }
54
58
  }
55
59
  },
@@ -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=index.cjs.map
42
- //# sourceMappingURL=index.cjs.map
@@ -1 +0,0 @@
1
- {"version":3,"sources":[],"names":[],"mappings":"","file":"index.cjs","sourcesContent":[]}