@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 +11 -0
- package/dist/index.d.ts +11 -0
- package/package.json +1 -1
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";
|