@coast/core-api-types 1.2.211 → 1.2.213

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.
@@ -1,6 +1,7 @@
1
+ import { HmacSecretKey } from '../../../common/HmacSecretKey';
1
2
  import { AutomationActionType } from '../AutomationActionType';
2
3
  import { AutomationActionSettings } from './AutomationActionSettings';
3
4
  export interface SendWebhookActionSettings extends AutomationActionSettings<AutomationActionType.SEND_WEBHOOK> {
4
5
  destinationUrl: string;
5
- secretKey: string;
6
+ secretKey: HmacSecretKey;
6
7
  }
@@ -0,0 +1,2 @@
1
+ import { Brand } from '@paradoxical-io/types';
2
+ export type HmacSecretKey = Brand<string, 'HmacSecretKey'>;
@@ -0,0 +1,3 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ //# sourceMappingURL=HmacSecretKey.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"HmacSecretKey.js","sourceRoot":"","sources":["../../../src/models/common/HmacSecretKey.ts"],"names":[],"mappings":""}
@@ -1,5 +1,6 @@
1
+ import { EntityFields } from '../../entities/EntityFields';
1
2
  import { WorkflowTemplateId } from '../../WorkflowTemplateId';
2
3
  export interface SubformComponentDataValue {
3
- data?: Record<string, unknown>;
4
+ data?: EntityFields;
4
5
  workflowTemplateId: WorkflowTemplateId;
5
6
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@coast/core-api-types",
3
- "version": "1.2.211",
3
+ "version": "1.2.213",
4
4
  "description": "Facilitates the generation of core-api-types npm package",
5
5
  "exports": {
6
6
  "./*": {