@monterosa/sdk-interact-kit 0.19.0-rc.2 → 0.19.0-rc.4
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/dist/core/connect/public-types.d.ts +2 -1
- package/dist/core/index.d.ts +1 -0
- package/dist/core/presence_counter/api.d.ts +16 -0
- package/dist/core/presence_counter/index.d.ts +10 -0
- package/dist/core/presence_counter/presence_counter_impl.d.ts +28 -0
- package/dist/core/presence_counter/types.d.ts +21 -0
- package/dist/index.cjs.js +198 -50
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.esm.js +154 -49
- package/dist/index.esm.js.map +1 -1
- package/dist/utils/logger.d.ts +10 -0
- package/package.json +5 -5
- package/dist/utils/calculate_percentage.d.ts +0 -9
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @license
|
|
3
|
+
* @monterosa/sdk-interact-kit
|
|
4
|
+
*
|
|
5
|
+
* Copyright © 2023 Monterosa Productions Limited. All rights reserved.
|
|
6
|
+
*
|
|
7
|
+
* More details on the license can be found at https://www.monterosa.co/sdk/license
|
|
8
|
+
*/
|
|
9
|
+
import { Logger } from '@monterosa/sdk-core';
|
|
10
|
+
export declare const logger: Logger;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@monterosa/sdk-interact-kit",
|
|
3
|
-
"version": "0.19.0-rc.
|
|
3
|
+
"version": "0.19.0-rc.4",
|
|
4
4
|
"description": "Monterosa JS SDK / Interact Kit",
|
|
5
5
|
"author": "Monterosa Productions Limited <hello@monterosa.co.uk> (https://www.monterosa.co/)",
|
|
6
6
|
"main": "dist/index.cjs.js",
|
|
@@ -27,9 +27,9 @@
|
|
|
27
27
|
"@monterosa/sdk-util": "0.x"
|
|
28
28
|
},
|
|
29
29
|
"dependencies": {
|
|
30
|
-
"@monterosa/sdk-connect-kit": "^0.19.0-rc.
|
|
31
|
-
"@monterosa/sdk-core": "^0.19.0-rc.
|
|
32
|
-
"@monterosa/sdk-util": "^0.19.0-rc.
|
|
30
|
+
"@monterosa/sdk-connect-kit": "^0.19.0-rc.4",
|
|
31
|
+
"@monterosa/sdk-core": "^0.19.0-rc.4",
|
|
32
|
+
"@monterosa/sdk-util": "^0.19.0-rc.4"
|
|
33
33
|
},
|
|
34
34
|
"devDependencies": {
|
|
35
35
|
"@faker-js/faker": "^6.0.0-alpha.7",
|
|
@@ -52,5 +52,5 @@
|
|
|
52
52
|
"publishConfig": {
|
|
53
53
|
"access": "public"
|
|
54
54
|
},
|
|
55
|
-
"gitHead": "
|
|
55
|
+
"gitHead": "a30424980f8c8fb968377c3e78e7128904c5e7f8"
|
|
56
56
|
}
|
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* @license
|
|
3
|
-
* @monterosa/sdk-interact-kit
|
|
4
|
-
*
|
|
5
|
-
* Copyright © 2022 Monterosa Productions Limited. All rights reserved.
|
|
6
|
-
*
|
|
7
|
-
* More details on the license can be found at https://www.monterosa.co/sdk/license
|
|
8
|
-
*/
|
|
9
|
-
export declare const calculatePercentage: (values: number[]) => number[];
|