@rtsdk/topia 0.8.2 → 0.8.3

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 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/${id}`, {}, this.requestOptions);
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/${id}`, {}, this.requestOptions);
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
@@ -59,5 +59,5 @@
59
59
  "local-publish": "yarn build && yalc publish --push --no-scripts"
60
60
  },
61
61
  "type": "module",
62
- "version": "0.8.2"
62
+ "version": "0.8.3"
63
63
  }