@qite/tide-client 1.1.27 → 1.1.28

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@qite/tide-client",
3
- "version": "1.1.27",
3
+ "version": "1.1.28",
4
4
  "description": "Frontend client for Tide",
5
5
  "main": "build/index.js",
6
6
  "scripts": {
@@ -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 = (