@clxmedia/types 1.0.45 → 1.0.47

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.
@@ -263,6 +263,13 @@ export type CLXFormQuestion = {
263
263
  export type CLXFormQuestions = {
264
264
  [questionSlug: string]: CLXFormQuestion;
265
265
  };
266
+ export type CLXFormPortableResponse = {
267
+ question: CLXFormQuestion;
268
+ response?: CLXFormResponseValue;
269
+ };
270
+ export type CLXFormPortableResponses = {
271
+ [questionSlug: string]: CLXFormPortableResponse;
272
+ };
266
273
  export type CLXRuleComparison = 'stringEquals' | 'stringContains' | 'stringStartsWith' | 'stringEndsWith' | 'stringInList' | 'stringListContainsAll' | 'stringListContainsAny' | 'stringListEntryEquals' | 'stringListEntryContains' | 'stringListEntryStartsWith' | 'stringListEntryEndsWith' | 'dateEquals' | 'dateBefore' | 'dateAfter' | 'booleanEquals' | 'fileExists' | 'numberEquals' | 'numberGreaterThan' | 'numberLessThan';
267
274
  export type CLXFormRuleDefinition = {
268
275
  subject: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@clxmedia/types",
3
- "version": "1.0.45",
3
+ "version": "1.0.47",
4
4
  "description": "Conversion Logix TypeScript type definitions",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",