@gen3/core 0.12.42 → 0.12.44
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 +3 -7
- package/dist/cjs/index.js.map +1 -1
- 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/esm/index.js +3 -7
- package/dist/esm/index.js.map +1 -1
- package/dist/index.d.ts +5 -1
- package/package.json +3 -4
package/dist/index.d.ts
CHANGED
|
@@ -20258,7 +20258,11 @@ interface RemoteSupportRequest {
|
|
|
20258
20258
|
email: string;
|
|
20259
20259
|
contents: string;
|
|
20260
20260
|
}
|
|
20261
|
-
|
|
20261
|
+
interface RemoteSupportConfiguration {
|
|
20262
|
+
custom_fields?: Record<string, string>[];
|
|
20263
|
+
zendeskSubdomainName: string;
|
|
20264
|
+
[key: string]: string | Record<string, string>[] | unknown;
|
|
20265
|
+
}
|
|
20262
20266
|
type RemoteSupportRequestAction = (requestData: RemoteSupportRequest, configuration: RemoteSupportConfiguration) => Promise<void>;
|
|
20263
20267
|
declare class MissingServiceConfigurationError extends Error {
|
|
20264
20268
|
constructor(serviceName: string);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@gen3/core",
|
|
3
|
-
"version": "0.12.
|
|
3
|
+
"version": "0.12.44",
|
|
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",
|
|
@@ -61,7 +61,6 @@
|
|
|
61
61
|
"@types/isomorphic-fetch": "^0.0.39",
|
|
62
62
|
"@types/lodash": "^4.17.23",
|
|
63
63
|
"@types/papaparse": "^5.3.14",
|
|
64
|
-
"@types/uuid": "^9.0.0",
|
|
65
64
|
"fake-indexeddb": "^6.0.0"
|
|
66
65
|
},
|
|
67
66
|
"dependencies": {
|
|
@@ -75,10 +74,10 @@
|
|
|
75
74
|
"redux": "^5.0.1",
|
|
76
75
|
"redux-persist": "^6.0.0",
|
|
77
76
|
"swr": "^2.3.0",
|
|
78
|
-
"uuid": "
|
|
77
|
+
"uuid": "11.1.1"
|
|
79
78
|
},
|
|
80
79
|
"files": [
|
|
81
80
|
"dist"
|
|
82
81
|
],
|
|
83
|
-
"gitHead": "
|
|
82
|
+
"gitHead": "be9886cec24499b104395e8c26d912d9aca464ad"
|
|
84
83
|
}
|