@kohost/api-client 3.1.4 → 3.1.5

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.
@@ -19,6 +19,10 @@ export interface Property {
19
19
  organization: string | null;
20
20
  testModeEnabled?: boolean;
21
21
  testMode?: {
22
+ /**
23
+ * Only users with these email addresses will receive notifications in test mode, including sms, email, or push.
24
+ */
25
+ notificationEmails?: string[];
22
26
  /**
23
27
  * Only users with email addreses ending in these domains will receive notifications in test mode, including sms, email, or push.
24
28
  */
@@ -30,6 +30,13 @@
30
30
  "testMode": {
31
31
  "type": "object",
32
32
  "properties": {
33
+ "notificationEmails": {
34
+ "type": "array",
35
+ "items": {
36
+ "type": "string"
37
+ },
38
+ "description": "Only users with these email addresses will receive notifications in test mode, including sms, email, or push."
39
+ },
33
40
  "notificationEmailDomains": {
34
41
  "type": "array",
35
42
  "items": {
@@ -12986,6 +12986,13 @@ var require_property = __commonJS({
12986
12986
  testMode: {
12987
12987
  type: "object",
12988
12988
  properties: {
12989
+ notificationEmails: {
12990
+ type: "array",
12991
+ items: {
12992
+ type: "string"
12993
+ },
12994
+ description: "Only users with these email addresses will receive notifications in test mode, including sms, email, or push."
12995
+ },
12989
12996
  notificationEmailDomains: {
12990
12997
  type: "array",
12991
12998
  items: {