@builder.io/sdk 1.1.34 → 1.1.35

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.
Files changed (43) hide show
  1. package/CHANGELOG.md +3 -0
  2. package/dist/index.browser.js +1 -1
  3. package/dist/index.browser.js.map +1 -1
  4. package/dist/index.cjs.js +85 -24
  5. package/dist/index.cjs.js.map +1 -1
  6. package/dist/index.d.ts +7 -6
  7. package/dist/index.esm.js +85 -24
  8. package/dist/index.esm.js.map +1 -1
  9. package/dist/index.js.map +1 -1
  10. package/dist/index.umd.js +96 -35
  11. package/dist/index.umd.js.map +1 -1
  12. package/dist/package.json +16 -14
  13. package/dist/src/builder.class.d.ts +842 -837
  14. package/dist/src/builder.class.js +46 -6
  15. package/dist/src/builder.class.js.map +1 -1
  16. package/dist/src/classes/animator.class.d.ts +26 -26
  17. package/dist/src/classes/cookies.class.d.ts +15 -15
  18. package/dist/src/classes/observable.class.d.ts +26 -26
  19. package/dist/src/classes/promise.class.d.ts +17 -17
  20. package/dist/src/classes/query-string.class.d.ts +9 -9
  21. package/dist/src/classes/query-string.class.test.d.ts +1 -1
  22. package/dist/src/constants/builder.d.ts +2 -2
  23. package/dist/src/functions/assign.function.d.ts +1 -1
  24. package/dist/src/functions/fetch.function.d.ts +28 -28
  25. package/dist/src/functions/finder.function.d.ts +10 -10
  26. package/dist/src/functions/finder.function.js +1 -1
  27. package/dist/src/functions/get-top-level-domain.d.ts +6 -6
  28. package/dist/src/functions/next-tick.function.d.ts +1 -1
  29. package/dist/src/functions/omit.function.d.ts +1 -1
  30. package/dist/src/functions/server-only-require.function.d.ts +3 -3
  31. package/dist/src/functions/throttle.function.d.ts +1 -1
  32. package/dist/src/functions/to-error.d.ts +13 -13
  33. package/dist/src/functions/uuid.d.ts +8 -8
  34. package/dist/src/types/api-version.d.ts +2 -0
  35. package/dist/src/types/api-version.js +5 -0
  36. package/dist/src/types/api-version.js.map +1 -0
  37. package/dist/src/types/content.d.ts +31 -31
  38. package/dist/src/types/element.d.ts +60 -60
  39. package/dist/src/url.d.ts +9 -9
  40. package/dist/src/url.test.d.ts +1 -1
  41. package/dist/src/url.test.js +1 -1
  42. package/dist/tsconfig.tsbuildinfo +1 -1
  43. package/package.json +17 -15
package/dist/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@builder.io/sdk",
3
- "version": "1.1.34-2",
3
+ "version": "1.1.34",
4
4
  "unpkg": "./dist/index.browser.js",
5
5
  "main": "./dist/index.cjs.js",
6
6
  "module": "./dist/index.esm.js",
@@ -11,21 +11,21 @@
11
11
  },
12
12
  "license": "MIT",
13
13
  "scripts": {
14
- "_unlink": "npm unlink *",
15
- "_install": "npm install",
16
- "docs": "npm run docs:generate && npm run docs:cleanup",
14
+ "_unlink": "yarn unlink *",
15
+ "_install": "yarn install",
16
+ "docs": "yarn run docs:generate && yarn run docs:cleanup",
17
17
  "docs:generate": "typedoc",
18
18
  "docs:cleanup": "node scripts/cleanup-generated-docs",
19
- "build": "npm run tsc && rollup -c",
19
+ "build": "yarn run tsc && rollup -c",
20
20
  "watch": "rollup -cw",
21
- "start": "npm run watch",
21
+ "start": "yarn run watch",
22
22
  "tsc": "tsc --module commonjs",
23
- "release": "npm run build && ALLOW_PUBLISH=true npm publish",
24
- "release:patch": "npm run build && npm version patch && ALLOW_PUBLISH=true npm publish",
25
- "release:patch:nightly": "npm run build && npm version patch && ALLOW_PUBLISH=true npm publish",
26
- "release:dev": "npm run build && npm version prerelease --no-git-tag-version && ALLOW_PUBLISH=true npm publish --tag dev",
23
+ "release": "yarn run build && yarn npm publish",
24
+ "release:patch": "yarn run build && yarn version patch && yarn npm publish",
25
+ "release:patch:nightly": "yarn run build && yarn version patch && yarn npm publish",
26
+ "release:dev": "yarn run build && yarn version prerelease --no-git-tag-version && yarn npm publish --tag dev",
27
27
  "prepublishOnly": "block-publish",
28
- "ci:build": "npm run build",
28
+ "ci:build": "yarn run build",
29
29
  "test": "jest --color"
30
30
  },
31
31
  "devDependencies": {
@@ -55,17 +55,19 @@
55
55
  "rollup-plugin-node-globals": "^1.3.0",
56
56
  "rollup-plugin-node-resolve": "^3.3.0",
57
57
  "rollup-plugin-sourcemaps": "^0.4.2",
58
- "rollup-plugin-typescript": "^0.8.1",
59
- "rollup-plugin-typescript2": "^0.13.0",
58
+ "rollup-plugin-typescript2": "^0.32.1",
60
59
  "rollup-plugin-uglify": "^3.0.0",
61
60
  "typedoc": "^0.22.15",
62
61
  "typedoc-plugin-markdown": "^3.12.1",
63
- "typescript": "^4.6.4"
62
+ "typescript": "^4.7.4"
64
63
  },
65
64
  "dependencies": {
66
65
  "hash-sum": "^2.0.0",
67
66
  "node-fetch": "^2.3.0",
68
67
  "tslib": "^1.10.0"
69
68
  },
69
+ "installConfig": {
70
+ "hoistingLimits": "workspaces"
71
+ },
70
72
  "gitHead": "4d96fbc32864698afbb355ab991c6d90be991951"
71
73
  }