react-native-update 10.29.2 → 10.29.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.
|
@@ -73,7 +73,7 @@ static jsi::Value _hostFunction_PushyTurboModule_downloadPatchFromPpk(
|
|
|
73
73
|
const jsi::Value* args,
|
|
74
74
|
size_t count)
|
|
75
75
|
{
|
|
76
|
-
return jsi::Value(static_cast<ArkTSTurboModule &> (turboModule).
|
|
76
|
+
return jsi::Value(static_cast<ArkTSTurboModule &> (turboModule).callAsync(rt,"downloadPatchFromPpk", args, count));
|
|
77
77
|
}
|
|
78
78
|
|
|
79
79
|
static jsi::Value _hostFunction_PushyTurboModule_downloadPatchFromPackage(
|
|
@@ -82,7 +82,7 @@ static jsi::Value _hostFunction_PushyTurboModule_downloadPatchFromPackage(
|
|
|
82
82
|
const jsi::Value* args,
|
|
83
83
|
size_t count)
|
|
84
84
|
{
|
|
85
|
-
return jsi::Value(static_cast<ArkTSTurboModule &> (turboModule).
|
|
85
|
+
return jsi::Value(static_cast<ArkTSTurboModule &> (turboModule).callAsync(rt,"downloadPatchFromPackage", args, count));
|
|
86
86
|
}
|
|
87
87
|
|
|
88
88
|
static jsi::Value _hostFunction_PushyTurboModule_downloadFullUpdate(
|
|
@@ -91,7 +91,7 @@ static jsi::Value _hostFunction_PushyTurboModule_downloadFullUpdate(
|
|
|
91
91
|
const jsi::Value* args,
|
|
92
92
|
size_t count)
|
|
93
93
|
{
|
|
94
|
-
return jsi::Value(static_cast<ArkTSTurboModule &> (turboModule).
|
|
94
|
+
return jsi::Value(static_cast<ArkTSTurboModule &> (turboModule).callAsync(rt,"downloadFullUpdate", args, count));
|
|
95
95
|
}
|
|
96
96
|
|
|
97
97
|
static jsi::Value _hostFunction_PushyTurboModule_downloadAndInstallApk(
|
|
@@ -100,7 +100,7 @@ static jsi::Value _hostFunction_PushyTurboModule_downloadAndInstallApk(
|
|
|
100
100
|
const jsi::Value* args,
|
|
101
101
|
size_t count)
|
|
102
102
|
{
|
|
103
|
-
return jsi::Value(static_cast<ArkTSTurboModule &> (turboModule).
|
|
103
|
+
return jsi::Value(static_cast<ArkTSTurboModule &> (turboModule).callAsync(rt,"downloadAndInstallApk", args, count));
|
|
104
104
|
}
|
|
105
105
|
|
|
106
106
|
|