@juhuu/sdk-ts 1.2.181 → 1.2.182

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.mts CHANGED
@@ -449,6 +449,17 @@ type GraphNode = {
449
449
  nodeIdArray: string[];
450
450
  subject: LocaleString;
451
451
  message: LocaleString;
452
+ } | {
453
+ id: string;
454
+ nodeIdArray: string[];
455
+ type: "app.alert.show";
456
+ title: LocaleString;
457
+ description: LocaleString;
458
+ } | {
459
+ id: string;
460
+ nodeIdArray: string[];
461
+ type: "app.navigation.navigate";
462
+ screenName: string;
452
463
  } | {
453
464
  id: string;
454
465
  type: "parameter.set";
package/dist/index.d.ts CHANGED
@@ -449,6 +449,17 @@ type GraphNode = {
449
449
  nodeIdArray: string[];
450
450
  subject: LocaleString;
451
451
  message: LocaleString;
452
+ } | {
453
+ id: string;
454
+ nodeIdArray: string[];
455
+ type: "app.alert.show";
456
+ title: LocaleString;
457
+ description: LocaleString;
458
+ } | {
459
+ id: string;
460
+ nodeIdArray: string[];
461
+ type: "app.navigation.navigate";
462
+ screenName: string;
452
463
  } | {
453
464
  id: string;
454
465
  type: "parameter.set";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@juhuu/sdk-ts",
3
- "version": "1.2.181",
3
+ "version": "1.2.182",
4
4
  "description": "Typescript wrapper for JUHUU services",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.mjs",