rez_core 3.1.111 → 3.1.112

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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "rez_core",
3
- "version": "3.1.111",
3
+ "version": "3.1.112",
4
4
  "description": "",
5
5
  "author": "",
6
6
  "private": false,
@@ -93,6 +93,7 @@ export class GmailApiStrategy implements IntegrationStrategy {
93
93
  provider: 'gmail',
94
94
  service: 'API',
95
95
  timestamp: new Date(),
96
+ message: "Email sent successfully"
96
97
  };
97
98
  } catch (error) {
98
99
  console.error('---- Gmail SDK API Error ----');
@@ -94,6 +94,7 @@ export class SendGridApiStrategy implements IntegrationStrategy {
94
94
  service: 'API',
95
95
  messageId: result[0].headers['x-message-id'] || undefined,
96
96
  timestamp: new Date(),
97
+ message: "Email sent successfully"
97
98
  };
98
99
  } catch (error) {
99
100
  let errorMessage = 'Unknown error';
@@ -19,6 +19,7 @@ export interface IntegrationResult {
19
19
  error?: string;
20
20
  timestamp: Date;
21
21
  refreshedToken?: string;
22
+ message?: string;
22
23
  }
23
24
 
24
25
  export interface EmailAttachment {
@@ -103,6 +103,7 @@ export class OzonetelVoiceStrategy implements IntegrationStrategy {
103
103
  provider: 'ozonetel',
104
104
  service: 'THIRD_PARTY',
105
105
  timestamp: new Date(),
106
+ message: "Call initiated successfully"
106
107
  };
107
108
  } catch (error) {
108
109
  let errorMsg = 'Unknown error';
@@ -76,6 +76,7 @@ export class TubelightVoiceStrategy implements IntegrationStrategy {
76
76
  provider: 'tubelight',
77
77
  service: 'THIRD_PARTY',
78
78
  timestamp: new Date(),
79
+ message: "Call initiated successfully"
79
80
  };
80
81
  } catch (error) {
81
82
  let errorMsg = 'Unknown error';