@rtsdk/topia 0.8.2 → 0.8.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/index.cjs +1 -1
- package/dist/index.js +1 -1
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -41371,7 +41371,7 @@ class Visitor extends User {
|
|
|
41371
41371
|
const response = yield this.topiaPublicApi().get(`/expressions?name=${name}`, this.requestOptions);
|
|
41372
41372
|
expressionId = response.data[0].id;
|
|
41373
41373
|
}
|
|
41374
|
-
const result = yield this.topiaPublicApi().put(`/world/${this.urlSlug}/visitors/${this.id}/grant-expression/${
|
|
41374
|
+
const result = yield this.topiaPublicApi().put(`/world/${this.urlSlug}/visitors/${this.id}/grant-expression/${expressionId}`, {}, this.requestOptions);
|
|
41375
41375
|
return result;
|
|
41376
41376
|
}
|
|
41377
41377
|
catch (error) {
|
package/dist/index.js
CHANGED
|
@@ -41369,7 +41369,7 @@ class Visitor extends User {
|
|
|
41369
41369
|
const response = yield this.topiaPublicApi().get(`/expressions?name=${name}`, this.requestOptions);
|
|
41370
41370
|
expressionId = response.data[0].id;
|
|
41371
41371
|
}
|
|
41372
|
-
const result = yield this.topiaPublicApi().put(`/world/${this.urlSlug}/visitors/${this.id}/grant-expression/${
|
|
41372
|
+
const result = yield this.topiaPublicApi().put(`/world/${this.urlSlug}/visitors/${this.id}/grant-expression/${expressionId}`, {}, this.requestOptions);
|
|
41373
41373
|
return result;
|
|
41374
41374
|
}
|
|
41375
41375
|
catch (error) {
|
package/package.json
CHANGED