@gandalan/weblibs 1.5.27 → 1.5.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/index.d.ts
CHANGED
|
@@ -1,12 +1,6 @@
|
|
|
1
1
|
export * from "./index.js";
|
|
2
2
|
export { IDASFactory } from "./api/IDAS.js";
|
|
3
3
|
export { RESTClient } from "./api/RESTClient.js";
|
|
4
|
-
export { initIDAS } from "./api/authUtils.js";
|
|
5
|
-
export { createApi, fluentApi } from "./api/fluentApi.js";
|
|
6
|
-
export { createIDASApi, idasFluentApi } from "./api/idasFluentApi.js";
|
|
7
|
-
export { createAuthManager, fluentIdasAuthManager } from "./api/fluentAuthManager.js";
|
|
8
|
-
export { fetchEnvConfig } from "./api/fluentEnvUtils.js";
|
|
9
|
-
export { restClient } from "./api/fluentRestClient.js";
|
|
10
4
|
export function createApi(): FluentApi;
|
|
11
5
|
export function fluentApi(url: string, authManager: FluentAuthManager | null, serviceName: string): FluentApi;
|
|
12
6
|
export function createIDASApi(): IDASFluentApi;
|
package/package.json
CHANGED
|
@@ -25,13 +25,7 @@ const businessRootMarkerEnd = "// END GENERATED ROOT BUSINESS TYPEDEFS";
|
|
|
25
25
|
|
|
26
26
|
const rootValueExportStatements = [
|
|
27
27
|
"export { IDASFactory } from \"./api/IDAS.js\";",
|
|
28
|
-
"export { RESTClient } from \"./api/RESTClient.js\";"
|
|
29
|
-
"export { initIDAS } from \"./api/authUtils.js\";",
|
|
30
|
-
"export { createApi, fluentApi } from \"./api/fluentApi.js\";",
|
|
31
|
-
"export { createIDASApi, idasFluentApi } from \"./api/idasFluentApi.js\";",
|
|
32
|
-
"export { createAuthManager, fluentIdasAuthManager } from \"./api/fluentAuthManager.js\";",
|
|
33
|
-
"export { fetchEnvConfig } from \"./api/fluentEnvUtils.js\";",
|
|
34
|
-
"export { restClient } from \"./api/fluentRestClient.js\";"
|
|
28
|
+
"export { RESTClient } from \"./api/RESTClient.js\";"
|
|
35
29
|
];
|
|
36
30
|
|
|
37
31
|
const rootFunctionDeclarationStatements = [
|