@osdk/foundry 1.0.0 → 1.0.1-main-20240520153817

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,5 +1,17 @@
1
1
  # @osdk/foundry
2
2
 
3
+ ## 1.0.1-main-20240520153817
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [94833a7]
8
+ - @osdk/shared.net@1.11.1-main-20240520153817
9
+ - @osdk/api@1.8.1-main-20240520153817
10
+ - @osdk/client@0.19.1-main-20240520153817
11
+ - @osdk/foundry.core@1.0.1-main-20240520153817
12
+ - @osdk/foundry.security@1.0.1-main-20240520153817
13
+ - @osdk/foundry.thirdpartyapplications@1.0.1-main-20240520153817
14
+
3
15
  ## 1.0.0
4
16
 
5
17
  ### Minor Changes
@@ -4,4 +4,4 @@ export { foundry_security as Security };
4
4
  import * as foundry_thirdpartyapplications from '@osdk/foundry.thirdpartyapplications';
5
5
  export { foundry_thirdpartyapplications as ThirdPartyApplications };
6
6
  //# sourceMappingURL=out.js.map
7
- //# sourceMappingURL=index.mjs.map
7
+ //# sourceMappingURL=index.js.map
@@ -4,4 +4,4 @@ export { foundry_security as Security };
4
4
  import * as foundry_thirdpartyapplications from '@osdk/foundry.thirdpartyapplications';
5
5
  export { foundry_thirdpartyapplications as ThirdPartyApplications };
6
6
  //# sourceMappingURL=out.js.map
7
- //# sourceMappingURL=index.browser.mjs.map
7
+ //# sourceMappingURL=index.js.map
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@osdk/foundry",
3
- "version": "1.0.0",
3
+ "version": "1.0.1-main-20240520153817",
4
4
  "license": "Apache-2.0",
5
5
  "repository": {
6
6
  "type": "git",
@@ -8,27 +8,23 @@
8
8
  },
9
9
  "exports": {
10
10
  ".": {
11
- "types": "./build/types/index.d.ts",
12
- "browser": "./build/js/index.browser.mjs",
13
- "import": "./build/js/index.mjs",
14
- "require": "./build/js/index.cjs"
11
+ "import": "./build/esm/index.js",
12
+ "browser": "./build/browser/index.browser.js"
15
13
  },
16
14
  "./*": {
17
- "types": "./build/types/public/*.d.ts",
18
- "browser": "./build/js/public/*.browser.mjs",
19
- "import": "./build/js/public/*.mjs",
20
- "require": "./build/js/public/*.cjs"
15
+ "import": "./build/esm/public/*.js",
16
+ "browser": "./build/browser/public/*.js"
21
17
  }
22
18
  },
23
19
  "dependencies": {
24
- "@osdk/foundry.core": "1.0.0",
25
- "@osdk/foundry.security": "1.0.0",
26
- "@osdk/foundry.thirdpartyapplications": "1.0.0"
20
+ "@osdk/foundry.core": "1.0.1-main-20240520153817",
21
+ "@osdk/foundry.security": "1.0.1-main-20240520153817",
22
+ "@osdk/foundry.thirdpartyapplications": "1.0.1-main-20240520153817"
27
23
  },
28
24
  "peerDependencies": {
29
- "@osdk/api": "^1.8.0",
30
- "@osdk/client": "^0.19.0",
31
- "@osdk/shared.net": "^1.11.0"
25
+ "@osdk/api": "^1.8.1-main-20240520153817",
26
+ "@osdk/client": "^0.19.1-main-20240520153817",
27
+ "@osdk/shared.net": "^1.11.1-main-20240520153817"
32
28
  },
33
29
  "devDependencies": {
34
30
  "typescript": "^5.4.5"
@@ -37,16 +33,17 @@
37
33
  "access": "public"
38
34
  },
39
35
  "files": [
40
- "build/types",
41
- "build/js",
36
+ "build/cjs",
37
+ "build/esm",
38
+ "build/browser",
42
39
  "CHANGELOG.md",
43
40
  "package.json",
44
41
  "templates",
45
42
  "*.d.ts"
46
43
  ],
47
44
  "main": "./build/js/index.cjs",
48
- "module": "./build/js/index.mjs",
49
- "types": "./build/types/index.d.ts",
45
+ "module": "./build/esm/index.js",
46
+ "types": "./build/esm/index.d.ts",
50
47
  "sls": {
51
48
  "dependencies": {
52
49
  "com.palantir.foundry.api:api-gateway": {
@@ -57,10 +54,11 @@
57
54
  },
58
55
  "type": "module",
59
56
  "scripts": {
57
+ "check-attw": "../../scripts/build_common/check-attw.sh esm",
60
58
  "clean": "rm -rf lib dist types build tsconfig.tsbuildinfo",
61
59
  "fix-lint": "eslint . --fix && dprint fmt --config $(find-up dprint.json)",
62
60
  "lint": "eslint . && dprint check --config $(find-up dprint.json)",
63
61
  "transpile": "tsup",
64
- "typecheck": "tsc-absolute"
62
+ "typecheck": "../../scripts/build_common/typecheck.sh esm"
65
63
  }
66
64
  }
File without changes
File without changes
File without changes
File without changes
File without changes