placementt-core 1.300.564 → 1.300.565

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.
@@ -2044,6 +2044,7 @@ export type EmailInteraction = {
2044
2044
  additionalData?: {
2045
2045
  [key: string]: unknown;
2046
2046
  };
2047
+ infinite?: boolean;
2047
2048
  };
2048
2049
  export type SkillLabel = {
2049
2050
  label: string;
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "private": false,
3
3
  "name": "placementt-core",
4
4
  "author": "Placementt",
5
- "version": "1.300.564",
5
+ "version": "1.300.565",
6
6
  "main": "lib/index.js",
7
7
  "types": "lib/index.d.ts",
8
8
  "scripts": {
@@ -1971,7 +1971,8 @@ export type EmailInteraction = {
1971
1971
  reminderNumber?: number, // Which of the reminders is this?
1972
1972
  sendReminders?: boolean,
1973
1973
  sentDay: string, // Used to ensure we send >= 7 days before sent.
1974
- additionalData?: {[key: string]: unknown} // Values to be used in the reminderChecker function
1974
+ additionalData?: {[key: string]: unknown}, // Values to be used in the reminderChecker function
1975
+ infinite?: boolean, // Do we want them to never stop sending?
1975
1976
  }
1976
1977
 
1977
1978
  export type SkillLabel = {