case-editor-tools 1.0.0-beta.44 → 1.0.0-beta.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.
@@ -65,7 +65,7 @@ export declare const StudyEngineActions: {
65
65
  reports: {
66
66
  init: (reportKey: string) => Expression;
67
67
  cancel: (reportKey: string) => Expression;
68
- updateData: (reportKey: string, attributeKey: string, value: number | string | Expression, dtype?: "string" | "date" | "float" | "int" | "rawMessage" | undefined) => Expression;
68
+ updateData: (reportKey: string, attributeKey: string, value: number | string | Expression, dtype?: "string" | "date" | "float" | "int" | "rawMessage" | "keyList" | undefined) => Expression;
69
69
  removeData: (reportKey: string, attributeKey: string) => Expression;
70
70
  setReportIcon: (reportKey: string, icon: string) => Expression;
71
71
  setReportMessage: (reportKey: string, content: string, asTranslationKey?: boolean | undefined) => Expression;
@@ -128,7 +128,7 @@ export declare const StudyEngine: {
128
128
  reports: {
129
129
  init: (reportKey: string) => Expression;
130
130
  cancel: (reportKey: string) => Expression;
131
- updateData: (reportKey: string, attributeKey: string, value: number | string | Expression, dtype?: "string" | "date" | "float" | "int" | "rawMessage" | undefined) => Expression;
131
+ updateData: (reportKey: string, attributeKey: string, value: number | string | Expression, dtype?: "string" | "date" | "float" | "int" | "rawMessage" | "keyList" | undefined) => Expression;
132
132
  removeData: (reportKey: string, attributeKey: string) => Expression;
133
133
  setReportIcon: (reportKey: string, icon: string) => Expression;
134
134
  setReportMessage: (reportKey: string, content: string, asTranslationKey?: boolean | undefined) => Expression;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "case-editor-tools",
3
3
  "description": "Javascript tools to simplify survey and study coding for CASE.",
4
- "version": "1.0.0-beta.44",
4
+ "version": "1.0.0-beta.45",
5
5
  "main": "index.js",
6
6
  "license": "Apache-2.0",
7
7
  "repository": "github:case-framework/case-editor-tools",