@cloudflare/realtimekit 1.2.3 → 1.2.4-staging.2
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/EncryptionManager.cjs.js +1 -1
- package/dist/EncryptionManager.d.ts +4 -4
- package/dist/EncryptionManager.es.js +13 -13
- package/dist/browser.js +12 -12
- package/dist/dependencies.txt +1 -1
- package/dist/index.cjs.js +10 -10
- package/dist/index.d.ts +4 -4
- package/dist/index.es.js +574 -312
- package/dist/index.es5.js +892 -710
- package/dist/index.rn.js +10 -10
- package/dist/ts3.4/dist/EncryptionManager.d.ts +4 -4
- package/dist/ts3.4/dist/index.d.ts +4 -4
- package/package.json +2 -3
|
@@ -4564,15 +4564,15 @@ declare class Store {
|
|
|
4564
4564
|
});
|
|
4565
4565
|
set(key: string, value: any, sync?: boolean, emit?: boolean): Promise<void>;
|
|
4566
4566
|
private remoteSet;
|
|
4567
|
-
bulkSet(data: {
|
|
4567
|
+
bulkSet(data: Array<{
|
|
4568
4568
|
key: string;
|
|
4569
4569
|
payload: any;
|
|
4570
|
-
}
|
|
4570
|
+
}>): Promise<void>;
|
|
4571
4571
|
update(key: string, value: any, sync?: boolean): Promise<void>;
|
|
4572
4572
|
delete(key: string, sync?: boolean, emit?: boolean): Promise<void>;
|
|
4573
|
-
bulkDelete(data: {
|
|
4573
|
+
bulkDelete(data: Array<{
|
|
4574
4574
|
key: string;
|
|
4575
|
-
}
|
|
4575
|
+
}>): Promise<void>;
|
|
4576
4576
|
get(key: string): any;
|
|
4577
4577
|
getAll(): StoreData;
|
|
4578
4578
|
readonly rateLimits: {
|
|
@@ -4797,15 +4797,15 @@ declare class Store {
|
|
|
4797
4797
|
});
|
|
4798
4798
|
set(key: string, value: any, sync?: boolean, emit?: boolean): Promise<void>;
|
|
4799
4799
|
private remoteSet;
|
|
4800
|
-
bulkSet(data: {
|
|
4800
|
+
bulkSet(data: Array<{
|
|
4801
4801
|
key: string;
|
|
4802
4802
|
payload: any;
|
|
4803
|
-
}
|
|
4803
|
+
}>): Promise<void>;
|
|
4804
4804
|
update(key: string, value: any, sync?: boolean): Promise<void>;
|
|
4805
4805
|
delete(key: string, sync?: boolean, emit?: boolean): Promise<void>;
|
|
4806
|
-
bulkDelete(data: {
|
|
4806
|
+
bulkDelete(data: Array<{
|
|
4807
4807
|
key: string;
|
|
4808
|
-
}
|
|
4808
|
+
}>): Promise<void>;
|
|
4809
4809
|
get(key: string): any;
|
|
4810
4810
|
getAll(): StoreData;
|
|
4811
4811
|
readonly rateLimits: {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cloudflare/realtimekit",
|
|
3
|
-
"version": "1.2.
|
|
3
|
+
"version": "1.2.4-staging.2",
|
|
4
4
|
"description": "A real-time video and audio SDK for building custom, collaborative communication experiences.",
|
|
5
5
|
"main": "./dist/index.cjs.js",
|
|
6
6
|
"module": "./dist/index.es.js",
|
|
@@ -86,8 +86,7 @@
|
|
|
86
86
|
"worker-timers": "7.0.60"
|
|
87
87
|
},
|
|
88
88
|
"publishConfig": {
|
|
89
|
-
"
|
|
90
|
-
"tag": "latest"
|
|
89
|
+
"tag": "staging"
|
|
91
90
|
},
|
|
92
91
|
"devDependencies": {
|
|
93
92
|
"@types/events": "^3.0.0",
|