@gen3/core 0.12.43 → 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/index.d.ts CHANGED
@@ -20258,7 +20258,11 @@ interface RemoteSupportRequest {
20258
20258
  email: string;
20259
20259
  contents: string;
20260
20260
  }
20261
- type RemoteSupportConfiguration = Record<string, string>;
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.43",
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",
@@ -79,5 +79,5 @@
79
79
  "files": [
80
80
  "dist"
81
81
  ],
82
- "gitHead": "8948283d154e2a56a7dbc0b4218cc187c293485e"
82
+ "gitHead": "be9886cec24499b104395e8c26d912d9aca464ad"
83
83
  }