@putkoff/abstract-utilities 0.1.103 → 0.1.105
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/cjs/config/apiBase.d.ts +8 -0
- package/dist/cjs/functions/fetch_utils/imports.d.ts +0 -1
- package/dist/cjs/functions/fetch_utils/src/utils.d.ts +0 -2
- package/dist/cjs/functions/index.d.ts +1 -0
- package/dist/cjs/index.js +15 -10
- package/dist/cjs/index.js.map +1 -1
- package/dist/config/apiBase.d.ts +8 -0
- package/dist/esm/config/apiBase.d.ts +8 -0
- package/dist/esm/functions/fetch_utils/imports.d.ts +0 -1
- package/dist/esm/functions/fetch_utils/src/utils.d.ts +0 -2
- package/dist/esm/functions/index.d.ts +1 -0
- package/dist/esm/index.js +4 -10
- package/dist/esm/index.js.map +1 -1
- package/dist/functions/fetch_utils/imports.d.ts +0 -1
- package/dist/functions/fetch_utils/src/utils.d.ts +0 -2
- package/dist/functions/index.d.ts +1 -0
- package/dist/index.d.ts +2 -1
- package/package.json +1 -1
|
@@ -4,5 +4,4 @@ export { stripPrefixes } from './../string_utils';
|
|
|
4
4
|
export { alertit } from './../rndm_utils';
|
|
5
5
|
export { ensure_list } from './../type_utils';
|
|
6
6
|
export { eatInner } from './../string_utils';
|
|
7
|
-
export { AppConfig } from './../../utils/src/config';
|
|
8
7
|
export type { LogoutButtonProps, FetchVariables } from './../../types';
|
|
@@ -4,8 +4,6 @@ export declare function ensureAbstractUrl(endpoint: string, slices?: string[]):
|
|
|
4
4
|
* Unwraps nested { result } fields until you hit a non-object or no more "result" keys.
|
|
5
5
|
*/
|
|
6
6
|
export declare function getResult<T>(obj: unknown): T;
|
|
7
|
-
/** Pulls base-URL from AppConfig.API_BASE_URL, strips trailing slashes */
|
|
8
|
-
export declare function getRawConfigUrl(): any;
|
|
9
7
|
export declare function api(endpoint: string): string;
|
|
10
8
|
export declare function checkResponse(res: Response): any;
|
|
11
9
|
export declare function parseResult(res: Response): Promise<unknown>;
|
package/dist/index.d.ts
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
|
-
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
2
1
|
import * as react from 'react';
|
|
3
2
|
import react__default from 'react';
|
|
3
|
+
export { useCallback, useRef, useState } from 'react';
|
|
4
|
+
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
4
5
|
|
|
5
6
|
/** Non-React “direct download” used by some old links (kept for parity) */
|
|
6
7
|
declare function directDownload(relPath: string, filename: string): Promise<void>;
|