@gen3/core 0.12.43 → 0.12.45
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/index.js +503 -165
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/server.js +26 -14
- package/dist/cjs/server.js.map +1 -1
- package/dist/dts/features/cart/cartSelectors.d.ts +12 -0
- package/dist/dts/features/cart/cartSelectors.d.ts.map +1 -1
- package/dist/dts/features/cohort/cohortManagerSelector.d.ts +12 -0
- package/dist/dts/features/cohort/cohortManagerSelector.d.ts.map +1 -1
- package/dist/dts/features/cohort/cohortManagerSlice.d.ts +3 -0
- package/dist/dts/features/cohort/cohortManagerSlice.d.ts.map +1 -1
- package/dist/dts/features/fence/fetchFence.d.ts +1 -1
- package/dist/dts/features/fence/fetchFence.d.ts.map +1 -1
- package/dist/dts/features/fence/index.d.ts +2 -2
- package/dist/dts/features/fence/index.d.ts.map +1 -1
- package/dist/dts/features/fence/jwtApi.d.ts +184 -1
- package/dist/dts/features/fence/jwtApi.d.ts.map +1 -1
- package/dist/dts/features/fence/utils.d.ts.map +1 -1
- package/dist/dts/features/gen3/gen3Api.d.ts.map +1 -1
- package/dist/dts/features/notifications/index.d.ts +2 -0
- package/dist/dts/features/notifications/index.d.ts.map +1 -0
- package/dist/dts/features/notifications/notificationService.d.ts +42 -0
- package/dist/dts/features/notifications/notificationService.d.ts.map +1 -0
- package/dist/dts/features/requestor/remoteSupport/types.d.ts +5 -1
- package/dist/dts/features/requestor/remoteSupport/types.d.ts.map +1 -1
- package/dist/dts/features/requestor/remoteSupport/zenDesk.d.ts.map +1 -1
- package/dist/dts/features/requestor/requestorSlice.d.ts.map +1 -1
- package/dist/dts/features/submission/submissionApi.d.ts +186 -1
- package/dist/dts/features/submission/submissionApi.d.ts.map +1 -1
- package/dist/dts/features/user/userSliceRTK.d.ts +9 -0
- package/dist/dts/features/user/userSliceRTK.d.ts.map +1 -1
- package/dist/dts/features/workspace/index.d.ts +7 -3
- package/dist/dts/features/workspace/index.d.ts.map +1 -1
- package/dist/dts/features/workspace/jegKernelSelector.d.ts +162 -0
- package/dist/dts/features/workspace/jegKernelSelector.d.ts.map +1 -0
- package/dist/dts/features/workspace/jegKernelSlice.d.ts +482 -0
- package/dist/dts/features/workspace/jegKernelSlice.d.ts.map +1 -0
- package/dist/dts/features/workspace/jegWorkspaceSlice.d.ts +16 -0
- package/dist/dts/features/workspace/jegWorkspaceSlice.d.ts.map +1 -0
- package/dist/dts/features/workspace/tieredWorkspaceSlice.d.ts +14 -0
- package/dist/dts/features/workspace/tieredWorkspaceSlice.d.ts.map +1 -0
- package/dist/dts/features/workspace/types.d.ts +11 -1
- package/dist/dts/features/workspace/types.d.ts.map +1 -1
- package/dist/dts/features/workspace/workspaceSlice.d.ts +1 -1
- package/dist/dts/features/workspace/workspaceSlice.d.ts.map +1 -1
- package/dist/dts/hooks.d.ts +6 -0
- package/dist/dts/hooks.d.ts.map +1 -1
- package/dist/dts/index.d.ts +1 -0
- package/dist/dts/index.d.ts.map +1 -1
- package/dist/dts/reducers.d.ts +37 -31
- package/dist/dts/reducers.d.ts.map +1 -1
- package/dist/dts/store.d.ts +12 -0
- package/dist/dts/store.d.ts.map +1 -1
- package/dist/dts/utils/index.d.ts +3 -2
- package/dist/dts/utils/index.d.ts.map +1 -1
- package/dist/dts/utils/normalizeRtkError.d.ts +14 -0
- package/dist/dts/utils/normalizeRtkError.d.ts.map +1 -0
- package/dist/dts/utils/time.d.ts +14 -0
- package/dist/dts/utils/time.d.ts.map +1 -1
- package/dist/esm/index.js +476 -166
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/server.js +26 -14
- package/dist/esm/server.js.map +1 -1
- package/dist/index.d.ts +11650 -10940
- package/dist/server.d.ts +1 -1
- package/package.json +3 -3
package/dist/server.d.ts
CHANGED
|
@@ -83,7 +83,7 @@ interface FetchRequest {
|
|
|
83
83
|
* or rejects with an error if the request fails.
|
|
84
84
|
* @throws {Error} Throws an error if the fetch request fails or the response is not successful.
|
|
85
85
|
*/
|
|
86
|
-
declare const fetchFence: <T>({ endpoint, headers, body, method, isJSON }: FetchRequest, useService?: boolean) => Promise<Gen3FenceResponse<T>>;
|
|
86
|
+
declare const fetchFence: <T>({ endpoint, headers, body, method, isJSON, }: FetchRequest, useService?: boolean) => Promise<Gen3FenceResponse<T>>;
|
|
87
87
|
|
|
88
88
|
declare const isFetchError: <T>(obj: unknown) => obj is FetchError<T>;
|
|
89
89
|
/**
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@gen3/core",
|
|
3
|
-
"version": "0.12.
|
|
3
|
+
"version": "0.12.45",
|
|
4
4
|
"author": "CTDS",
|
|
5
5
|
"description": "Core module for Gen3.2. Packages provides an interface for interacting with the gen3 API, various types, and a redux store for managing state.",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -25,7 +25,7 @@
|
|
|
25
25
|
"./server": {
|
|
26
26
|
"types": "./dist/server.d.ts",
|
|
27
27
|
"import": "./dist/esm/server.js",
|
|
28
|
-
"require": "./dist/cjs/server.
|
|
28
|
+
"require": "./dist/cjs/server.js"
|
|
29
29
|
},
|
|
30
30
|
"./exports/constants": {
|
|
31
31
|
"types": "./dist/constant.d.ts",
|
|
@@ -79,5 +79,5 @@
|
|
|
79
79
|
"files": [
|
|
80
80
|
"dist"
|
|
81
81
|
],
|
|
82
|
-
"gitHead": "
|
|
82
|
+
"gitHead": "24a5383c30b654ae045004043c4b2bc540fd68cb"
|
|
83
83
|
}
|