@neurosity/sdk 6.5.8 → 6.5.10
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/browser/neurosity.iife.js +2322 -979
- package/dist/browser/neurosity.js +98 -66
- package/dist/browser/neurosity.js.map +1 -1
- package/dist/cjs/Neurosity.d.ts +5 -0
- package/dist/cjs/Neurosity.js +7 -1
- package/dist/electron/index.js +2 -2
- package/dist/electron/index.js.map +1 -1
- package/dist/esm/Neurosity.d.ts +5 -0
- package/dist/esm/Neurosity.js +5 -0
- package/dist/esm/neurosity.mjs +2359 -954
- package/dist/examples/neurosity.iife.js +2322 -979
- package/dist/examples/neurosity.js +98 -66
- package/dist/examples/neurosity.mjs +2359 -954
- package/package.json +2 -2
package/dist/esm/Neurosity.d.ts
CHANGED
|
@@ -638,3 +638,8 @@ export declare class Neurosity {
|
|
|
638
638
|
export declare class Notion extends Neurosity {
|
|
639
639
|
constructor(options?: SDKOptions);
|
|
640
640
|
}
|
|
641
|
+
/**
|
|
642
|
+
* @hidden
|
|
643
|
+
* Internal use only. Will be removed in next versions.
|
|
644
|
+
*/
|
|
645
|
+
export { __firebase } from "./api/firebase";
|
package/dist/esm/Neurosity.js
CHANGED
|
@@ -1254,3 +1254,8 @@ export class Notion extends Neurosity {
|
|
|
1254
1254
|
console.log(`The Notion class is deprecated and will be removed in the next version of the SDK. Please use the Neurosity class instead. e.g. new Notion() => new Neurosity()`);
|
|
1255
1255
|
}
|
|
1256
1256
|
}
|
|
1257
|
+
/**
|
|
1258
|
+
* @hidden
|
|
1259
|
+
* Internal use only. Will be removed in next versions.
|
|
1260
|
+
*/
|
|
1261
|
+
export { __firebase } from "./api/firebase";
|