@rtsdk/topia 0.16.1 → 0.16.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.
Files changed (2) hide show
  1. package/dist/index.d.ts +30 -0
  2. package/package.json +1 -1
package/dist/index.d.ts CHANGED
@@ -228,6 +228,8 @@ declare class DroppedAsset extends Asset implements DroppedAssetInterface {
228
228
  * ```
229
229
  */
230
230
  setDataObject(dataObject: object, options?: {
231
+ appPublicKey?: string;
232
+ appJWT?: string;
231
233
  sharedAppPublicKey?: string;
232
234
  sharedAppJWT?: string;
233
235
  analytics?: AnalyticType[];
@@ -250,6 +252,8 @@ declare class DroppedAsset extends Asset implements DroppedAssetInterface {
250
252
  * ```
251
253
  */
252
254
  updateDataObject(dataObject: object, options?: {
255
+ appPublicKey?: string;
256
+ appJWT?: string;
253
257
  sharedAppPublicKey?: string;
254
258
  sharedAppJWT?: string;
255
259
  analytics?: AnalyticType[];
@@ -270,6 +274,8 @@ declare class DroppedAsset extends Asset implements DroppedAssetInterface {
270
274
  * ```
271
275
  */
272
276
  incrementDataObjectValue(path: string, amount: number, options?: {
277
+ appPublicKey?: string;
278
+ appJWT?: string;
273
279
  sharedAppPublicKey?: string;
274
280
  sharedAppJWT?: string;
275
281
  analytics?: AnalyticType[];
@@ -843,6 +849,8 @@ declare class World extends SDKController implements WorldInterface {
843
849
  * ```
844
850
  */
845
851
  setDataObject: (dataObject: object | null | undefined, options?: {
852
+ appPublicKey?: string;
853
+ appJWT?: string;
846
854
  sharedAppPublicKey?: string;
847
855
  sharedAppJWT?: string;
848
856
  analytics?: AnalyticType[];
@@ -866,6 +874,8 @@ declare class World extends SDKController implements WorldInterface {
866
874
  * ```
867
875
  */
868
876
  updateDataObject: (dataObject: object, options?: {
877
+ appPublicKey?: string;
878
+ appJWT?: string;
869
879
  sharedAppPublicKey?: string;
870
880
  sharedAppJWT?: string;
871
881
  analytics?: AnalyticType[];
@@ -886,6 +896,8 @@ declare class World extends SDKController implements WorldInterface {
886
896
  * ```
887
897
  */
888
898
  incrementDataObjectValue(path: string, amount: number, options?: {
899
+ appPublicKey?: string;
900
+ appJWT?: string;
889
901
  sharedAppPublicKey?: string;
890
902
  sharedAppJWT?: string;
891
903
  analytics?: AnalyticType[];
@@ -1253,6 +1265,8 @@ declare class User extends SDKController implements UserInterface {
1253
1265
  * ```
1254
1266
  */
1255
1267
  setDataObject(dataObject: object | null | undefined, options?: {
1268
+ appPublicKey?: string;
1269
+ appJWT?: string;
1256
1270
  sharedAppPublicKey?: string;
1257
1271
  sharedAppJWT?: string;
1258
1272
  analytics?: AnalyticType[];
@@ -1275,6 +1289,8 @@ declare class User extends SDKController implements UserInterface {
1275
1289
  * ```
1276
1290
  */
1277
1291
  updateDataObject(dataObject: object, options?: {
1292
+ appPublicKey?: string;
1293
+ appJWT?: string;
1278
1294
  sharedAppPublicKey?: string;
1279
1295
  sharedAppJWT?: string;
1280
1296
  analytics?: AnalyticType[];
@@ -1295,6 +1311,8 @@ declare class User extends SDKController implements UserInterface {
1295
1311
  * ```
1296
1312
  */
1297
1313
  incrementDataObjectValue(path: string, amount: number, options?: {
1314
+ appPublicKey?: string;
1315
+ appJWT?: string;
1298
1316
  sharedAppPublicKey?: string;
1299
1317
  sharedAppJWT?: string;
1300
1318
  analytics?: AnalyticType[];
@@ -1483,6 +1501,8 @@ declare class Visitor extends User implements VisitorInterface {
1483
1501
  * ```
1484
1502
  */
1485
1503
  setDataObject(dataObject: object | null | undefined, options?: {
1504
+ appPublicKey?: string;
1505
+ appJWT?: string;
1486
1506
  sharedAppPublicKey?: string;
1487
1507
  sharedAppJWT?: string;
1488
1508
  analytics?: AnalyticType[];
@@ -1505,6 +1525,8 @@ declare class Visitor extends User implements VisitorInterface {
1505
1525
  * ```
1506
1526
  */
1507
1527
  updateDataObject(dataObject: object, options?: {
1528
+ appPublicKey?: string;
1529
+ appJWT?: string;
1508
1530
  sharedAppPublicKey?: string;
1509
1531
  sharedAppJWT?: string;
1510
1532
  analytics?: AnalyticType[];
@@ -1525,6 +1547,8 @@ declare class Visitor extends User implements VisitorInterface {
1525
1547
  * ```
1526
1548
  */
1527
1549
  incrementDataObjectValue(path: string, amount: number, options?: {
1550
+ appPublicKey?: string;
1551
+ appJWT?: string;
1528
1552
  sharedAppPublicKey?: string;
1529
1553
  sharedAppJWT?: string;
1530
1554
  analytics?: AnalyticType[];
@@ -2183,6 +2207,8 @@ declare class Ecosystem extends SDKController {
2183
2207
  * ```
2184
2208
  */
2185
2209
  setDataObject(dataObject: object | null | undefined, options?: {
2210
+ appPublicKey?: string;
2211
+ appJWT?: string;
2186
2212
  sharedAppPublicKey?: string;
2187
2213
  sharedAppJWT?: string;
2188
2214
  analytics?: AnalyticType[];
@@ -2206,6 +2232,8 @@ declare class Ecosystem extends SDKController {
2206
2232
  * ```
2207
2233
  */
2208
2234
  updateDataObject(dataObject: object, options?: {
2235
+ appPublicKey?: string;
2236
+ appJWT?: string;
2209
2237
  sharedAppPublicKey?: string;
2210
2238
  sharedAppJWT?: string;
2211
2239
  analytics?: AnalyticType[];
@@ -2229,6 +2257,8 @@ declare class Ecosystem extends SDKController {
2229
2257
  * ```
2230
2258
  */
2231
2259
  incrementDataObjectValue(path: string, amount: number, options?: {
2260
+ appPublicKey?: string;
2261
+ appJWT?: string;
2232
2262
  sharedAppPublicKey?: string;
2233
2263
  sharedAppJWT?: string;
2234
2264
  analytics?: AnalyticType[];
package/package.json CHANGED
@@ -60,5 +60,5 @@
60
60
  "yalc-push": "yarn build && yalc publish --push --dev --no-scripts"
61
61
  },
62
62
  "type": "module",
63
- "version": "0.16.01"
63
+ "version": "0.16.02"
64
64
  }