@applicaster/zapp-react-native-utils 16.0.0-rc.61 → 16.0.0-rc.62
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.
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export const getUpcomingQueue = async (): Promise<unknown[] | null> => null;
|
|
@@ -8,6 +8,7 @@ import { log_error, log_info } from "./OverlaysObserver";
|
|
|
8
8
|
import { toNumber, toNumberWithDefault } from "../../../numberUtils";
|
|
9
9
|
|
|
10
10
|
import { findPluginByIdentifier } from "../../../pluginUtils";
|
|
11
|
+
import { getUpcomingQueue } from "./getUpcomingQueue";
|
|
11
12
|
|
|
12
13
|
export const parseTimeToSeconds = (timeStr: string): number => {
|
|
13
14
|
const validationError = new Error("Invalid time format");
|
|
@@ -69,8 +70,7 @@ export const retrieveFeedUrl = async (
|
|
|
69
70
|
|
|
70
71
|
if (queuePlugin) {
|
|
71
72
|
try {
|
|
72
|
-
const
|
|
73
|
-
const upcomingQueue = await QueueManager.instance.getUpcomingQueue();
|
|
73
|
+
const upcomingQueue = await getUpcomingQueue();
|
|
74
74
|
|
|
75
75
|
if (upcomingQueue && upcomingQueue.length > 0) {
|
|
76
76
|
const queueItemId = entry?.extensions?.queueItemId || entry?.id;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@applicaster/zapp-react-native-utils",
|
|
3
|
-
"version": "16.0.0-rc.
|
|
3
|
+
"version": "16.0.0-rc.62",
|
|
4
4
|
"description": "Applicaster Zapp React Native utilities package",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"types": "index.d.ts",
|
|
@@ -27,7 +27,7 @@
|
|
|
27
27
|
},
|
|
28
28
|
"homepage": "https://github.com/applicaster/quickbrick#readme",
|
|
29
29
|
"dependencies": {
|
|
30
|
-
"@applicaster/applicaster-types": "16.0.0-rc.
|
|
30
|
+
"@applicaster/applicaster-types": "16.0.0-rc.62",
|
|
31
31
|
"buffer": "^5.2.1",
|
|
32
32
|
"camelize": "^1.0.0",
|
|
33
33
|
"dayjs": "^1.11.10",
|