@rtsdk/topia 0.11.6 → 0.11.7
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 +2 -2
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -2036,7 +2036,7 @@ declare class DroppedAssetFactory extends SDKController {
|
|
|
2036
2036
|
getWithUniqueName(uniqueName: string, urlSlug: string, interactiveSecret: string, credentials: {
|
|
2037
2037
|
interactiveNonce: string;
|
|
2038
2038
|
interactivePublicKey: string;
|
|
2039
|
-
visitorId:
|
|
2039
|
+
visitorId: number;
|
|
2040
2040
|
}): Promise<DroppedAsset>;
|
|
2041
2041
|
/**
|
|
2042
2042
|
* @summary
|
|
@@ -2215,7 +2215,7 @@ declare class WorldFactory extends SDKController {
|
|
|
2215
2215
|
deleteDroppedAssets(urlSlug: string, droppedAssetIds: string[], interactiveSecret: string, credentials: {
|
|
2216
2216
|
interactiveNonce: string;
|
|
2217
2217
|
interactivePublicKey: string;
|
|
2218
|
-
visitorId:
|
|
2218
|
+
visitorId: number;
|
|
2219
2219
|
}): Promise<{
|
|
2220
2220
|
success: boolean;
|
|
2221
2221
|
}>;
|
package/package.json
CHANGED