case-editor-tools 1.0.0-beta.24 → 1.0.0-beta.25

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.
@@ -50,7 +50,7 @@ export declare const StudyEngineActions: {
50
50
  };
51
51
  messages: {
52
52
  add: (messageType: string, scheduledFor: number | Expression) => Expression;
53
- removeAll: (messageType: string, scheduledFor: number | Expression) => Expression;
53
+ removeAll: () => Expression;
54
54
  remove: (messageType: string) => Expression;
55
55
  };
56
56
  stopParticipation: () => Expression;
@@ -101,7 +101,7 @@ export declare const StudyEngine: {
101
101
  };
102
102
  messages: {
103
103
  add: (messageType: string, scheduledFor: number | Expression) => Expression;
104
- removeAll: (messageType: string, scheduledFor: number | Expression) => Expression;
104
+ removeAll: () => Expression;
105
105
  remove: (messageType: string) => Expression;
106
106
  };
107
107
  stopParticipation: () => Expression;
@@ -171,7 +171,7 @@ const ADD_MESSAGE = (messageType, scheduledFor) => expressionUtils_expressionGen
171
171
  * Remove all messages scheduled for the participant
172
172
  * @returns
173
173
  */
174
- const REMOVE_ALL_MESSAGES = (messageType, scheduledFor) => expressionUtils_expressionGen.generateExpression('REMOVE_ALL_MESSAGES', undefined);
174
+ const REMOVE_ALL_MESSAGES = () => expressionUtils_expressionGen.generateExpression('REMOVE_ALL_MESSAGES', undefined);
175
175
  /**
176
176
  * Remove all messages with this message type
177
177
  * @param messageType message type
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.24",
4
+ "version": "1.0.0-beta.25",
5
5
  "main": "index.js",
6
6
  "license": "Apache-2.0",
7
7
  "repository": "github:case-framework/case-editor-tools",