@qite/tide-client 1.1.27 → 1.1.29
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.
|
@@ -43,7 +43,7 @@ export declare const getEntryList: (
|
|
|
43
43
|
export declare const getCustomEntryStatus: (
|
|
44
44
|
config: TideClientConfig,
|
|
45
45
|
signal?: AbortSignal | undefined
|
|
46
|
-
) => Promise<CustomEntryStatusItem>;
|
|
46
|
+
) => Promise<CustomEntryStatusItem[]>;
|
|
47
47
|
export declare const getEntryStatus: (
|
|
48
48
|
config: TideClientConfig,
|
|
49
49
|
signal?: AbortSignal | undefined
|
package/package.json
CHANGED
|
@@ -73,11 +73,11 @@ export const getEntryList = (
|
|
|
73
73
|
export const getCustomEntryStatus = (
|
|
74
74
|
config: TideClientConfig,
|
|
75
75
|
signal?: AbortSignal
|
|
76
|
-
): Promise<CustomEntryStatusItem> => {
|
|
76
|
+
): Promise<CustomEntryStatusItem[]> => {
|
|
77
77
|
const url = `${config.host}${ENDPOINT_CUSTOM_ENTRY_STATUS}`;
|
|
78
78
|
const apiKey = config.apiKey;
|
|
79
79
|
|
|
80
|
-
return get<CustomEntryStatusItem>(url, apiKey, signal, true);
|
|
80
|
+
return get<CustomEntryStatusItem[]>(url, apiKey, signal, true);
|
|
81
81
|
};
|
|
82
82
|
|
|
83
83
|
export const getEntryStatus = (
|