@builder.io/sdk 3.0.5 → 3.0.6
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 +6 -0
- package/dist/index.browser.js +3 -7
- package/dist/index.browser.js.map +1 -1
- package/dist/index.cjs.js +3 -7
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.esm.js +3 -7
- package/dist/index.esm.js.map +1 -1
- package/dist/index.umd.js +3 -7
- package/dist/index.umd.js.map +1 -1
- package/dist/package.json +3 -2
- package/dist/src/builder.class.d.ts +0 -4
- package/dist/src/builder.class.js +2 -6
- package/dist/src/builder.class.js.map +1 -1
- package/dist/src/sdk-version.d.ts +1 -0
- package/dist/src/sdk-version.js +5 -0
- package/dist/src/sdk-version.js.map +1 -0
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +3 -2
- package/scripts/set-sdk-version.sh +25 -0
package/dist/index.cjs.js
CHANGED
|
@@ -126,8 +126,6 @@ function assertAllowedPropertyName(name) {
|
|
|
126
126
|
throw new Error("Property name \"".concat(name, "\" is not allowed"));
|
|
127
127
|
}
|
|
128
128
|
|
|
129
|
-
var version = "3.0.5";
|
|
130
|
-
|
|
131
129
|
var Subscription = /** @class */ (function () {
|
|
132
130
|
function Subscription(listeners, listener) {
|
|
133
131
|
this.listeners = listeners;
|
|
@@ -960,6 +958,8 @@ function toError(err) {
|
|
|
960
958
|
|
|
961
959
|
var DEFAULT_API_VERSION = 'v3';
|
|
962
960
|
|
|
961
|
+
var SDK_VERSION = '3.0.6';
|
|
962
|
+
|
|
963
963
|
function datePlusMinutes(minutes) {
|
|
964
964
|
if (minutes === void 0) { minutes = 30; }
|
|
965
965
|
return new Date(Date.now() + minutes * 60000);
|
|
@@ -2634,11 +2634,7 @@ var Builder = /** @class */ (function () {
|
|
|
2634
2634
|
: undefined }))
|
|
2635
2635
|
.promise();
|
|
2636
2636
|
};
|
|
2637
|
-
|
|
2638
|
-
* @hidden
|
|
2639
|
-
* @deprecated. This is buggy, and always behind by a version.
|
|
2640
|
-
*/
|
|
2641
|
-
Builder.VERSION = version;
|
|
2637
|
+
Builder.VERSION = SDK_VERSION;
|
|
2642
2638
|
Builder.components = [];
|
|
2643
2639
|
/**
|
|
2644
2640
|
* Makes it so that a/b tests generate code like {@link
|