@rtsdk/topia 0.17.5 → 0.17.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/dist/index.d.ts +14 -0
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -2120,6 +2120,13 @@ interface VisitorInterface extends SDKInterface {
|
|
|
2120
2120
|
setDataObject(dataObject: object | null | undefined, options: object): Promise<void | ResponseType$1>;
|
|
2121
2121
|
updateDataObject(dataObject: object, options: object): Promise<void | ResponseType$1>;
|
|
2122
2122
|
incrementDataObjectValue(path: string, amount: number, options: object): Promise<void | ResponseType$1>;
|
|
2123
|
+
updatePublicKeyAnalytics(analytics?: AnalyticType[]): Promise<void | ResponseType$1>;
|
|
2124
|
+
getAllParticles(): Promise<ResponseType$1>;
|
|
2125
|
+
triggerParticle({ id, name, duration, }: {
|
|
2126
|
+
id?: string;
|
|
2127
|
+
name?: string;
|
|
2128
|
+
duration?: number;
|
|
2129
|
+
}): Promise<ResponseType$1 | string>;
|
|
2123
2130
|
color?: string;
|
|
2124
2131
|
dataObject?: object | null | undefined;
|
|
2125
2132
|
displayName?: string;
|
|
@@ -2249,6 +2256,13 @@ interface WorldInterface extends SDKInterface, WorldDetailsInterface {
|
|
|
2249
2256
|
setDataObject(dataObject: object | null | undefined, options: object): Promise<void | ResponseType$1>;
|
|
2250
2257
|
updateDataObject(dataObject: object, options: object): Promise<void | ResponseType$1>;
|
|
2251
2258
|
incrementDataObjectValue(path: string, amount: number, options: object): Promise<void | ResponseType$1>;
|
|
2259
|
+
getAllParticles(): Promise<ResponseType$1>;
|
|
2260
|
+
triggerParticle({ id, name, duration, position, }: {
|
|
2261
|
+
id?: string;
|
|
2262
|
+
name?: string;
|
|
2263
|
+
duration?: number;
|
|
2264
|
+
position?: object;
|
|
2265
|
+
}): Promise<ResponseType$1 | string>;
|
|
2252
2266
|
dataObject?: object | null;
|
|
2253
2267
|
}
|
|
2254
2268
|
interface WorldOptionalInterface {
|
package/package.json
CHANGED