@adhese/sdk 1.5.0 → 1.5.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 +8 -0
- package/dist/adheseSdk.d.ts +3 -3
- package/dist/cjs/package.json.cjs +1 -1
- package/dist/package.json.js +1 -1
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
package/dist/adheseSdk.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as _adhese_sdk_shared from '@adhese/sdk-shared';
|
|
2
|
-
import { createAsyncHook, createPassiveHook, Ref, Merge,
|
|
2
|
+
import { createAsyncHook, createPassiveHook, Ref, Merge, EventManager } from '@adhese/sdk-shared';
|
|
3
3
|
import * as zod from 'zod';
|
|
4
4
|
import { TypeOf, ZodType } from '@adhese/sdk-shared/validators';
|
|
5
5
|
|
|
@@ -469,14 +469,14 @@ type BaseOptions = {
|
|
|
469
469
|
*
|
|
470
470
|
* @default 'https://ads-{{account}}.adhese.com'
|
|
471
471
|
*/
|
|
472
|
-
host?:
|
|
472
|
+
host?: string;
|
|
473
473
|
/**
|
|
474
474
|
* The url that is used to connect to the Adhese pool server. Pass a custom URL if you want to use your own domain for
|
|
475
475
|
* the connection.
|
|
476
476
|
*
|
|
477
477
|
* @default 'https://pool-{{account}}.adhese.com'
|
|
478
478
|
*/
|
|
479
|
-
poolHost?:
|
|
479
|
+
poolHost?: string;
|
|
480
480
|
/**
|
|
481
481
|
* The page location. This is used to determine the current page location identifier.
|
|
482
482
|
*/
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
|
|
3
3
|
const name = "@adhese/sdk";
|
|
4
|
-
const version = "1.5.
|
|
4
|
+
const version = "1.5.1";
|
|
5
5
|
exports.name = name;
|
|
6
6
|
exports.version = version;
|
|
7
7
|
//# sourceMappingURL=package.json.cjs.map
|
package/dist/package.json.js
CHANGED
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@adhese/sdk",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "1.5.
|
|
4
|
+
"version": "1.5.1",
|
|
5
5
|
"description": "Adhese SDK",
|
|
6
6
|
"license": "GPL-3.0",
|
|
7
7
|
"repository": {
|
|
@@ -47,6 +47,6 @@
|
|
|
47
47
|
"prepareRelease": "npm run build"
|
|
48
48
|
},
|
|
49
49
|
"dependencies": {
|
|
50
|
-
"@adhese/sdk-shared": "1.
|
|
50
|
+
"@adhese/sdk-shared": "1.4.0"
|
|
51
51
|
}
|
|
52
52
|
}
|