@forteplatforms/sdk 1.0.139 → 1.0.140

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.
@@ -638,6 +638,8 @@ export declare const ListUserActionLogsActionTypeType: {
638
638
  readonly USER_LOGOUT: "USER_LOGOUT";
639
639
  readonly PAYMENT_CREATED: "PAYMENT_CREATED";
640
640
  readonly WELCOME_MESSAGE_SENT: "WELCOME_MESSAGE_SENT";
641
+ readonly EMAIL_SENT: "EMAIL_SENT";
642
+ readonly SMS_SENT: "SMS_SENT";
641
643
  };
642
644
  export type ListUserActionLogsActionTypeType = typeof ListUserActionLogsActionTypeType[keyof typeof ListUserActionLogsActionTypeType];
643
645
  /**
@@ -2851,7 +2851,9 @@ exports.ListUserActionLogsActionTypeType = {
2851
2851
  USER_LOGIN: 'USER_LOGIN',
2852
2852
  USER_LOGOUT: 'USER_LOGOUT',
2853
2853
  PAYMENT_CREATED: 'PAYMENT_CREATED',
2854
- WELCOME_MESSAGE_SENT: 'WELCOME_MESSAGE_SENT'
2854
+ WELCOME_MESSAGE_SENT: 'WELCOME_MESSAGE_SENT',
2855
+ EMAIL_SENT: 'EMAIL_SENT',
2856
+ SMS_SENT: 'SMS_SENT'
2855
2857
  };
2856
2858
  /**
2857
2859
  * @export
@@ -45,6 +45,14 @@ export interface UserActionLogObject {
45
45
  * @memberof UserActionLogObject
46
46
  */
47
47
  performedByAccountId?: string;
48
+ /**
49
+ *
50
+ * @type {{ [key: string]: string; }}
51
+ * @memberof UserActionLogObject
52
+ */
53
+ metadata?: {
54
+ [key: string]: string;
55
+ };
48
56
  }
49
57
  /**
50
58
  * @export
@@ -64,6 +72,8 @@ export declare const UserActionLogObjectActionTypeType: {
64
72
  readonly USER_LOGOUT: "USER_LOGOUT";
65
73
  readonly PAYMENT_CREATED: "PAYMENT_CREATED";
66
74
  readonly WELCOME_MESSAGE_SENT: "WELCOME_MESSAGE_SENT";
75
+ readonly EMAIL_SENT: "EMAIL_SENT";
76
+ readonly SMS_SENT: "SMS_SENT";
67
77
  };
68
78
  export type UserActionLogObjectActionTypeType = typeof UserActionLogObjectActionTypeType[keyof typeof UserActionLogObjectActionTypeType];
69
79
  /**
@@ -36,7 +36,9 @@ exports.UserActionLogObjectActionTypeType = {
36
36
  USER_LOGIN: 'USER_LOGIN',
37
37
  USER_LOGOUT: 'USER_LOGOUT',
38
38
  PAYMENT_CREATED: 'PAYMENT_CREATED',
39
- WELCOME_MESSAGE_SENT: 'WELCOME_MESSAGE_SENT'
39
+ WELCOME_MESSAGE_SENT: 'WELCOME_MESSAGE_SENT',
40
+ EMAIL_SENT: 'EMAIL_SENT',
41
+ SMS_SENT: 'SMS_SENT'
40
42
  };
41
43
  /**
42
44
  * Check if a given object implements the UserActionLogObject interface.
@@ -63,6 +65,7 @@ function UserActionLogObjectFromJSONTyped(json, ignoreDiscriminator) {
63
65
  'actionType': json['actionType'],
64
66
  'contactMethodId': json['contactMethodId'] == null ? undefined : json['contactMethodId'],
65
67
  'performedByAccountId': json['performedByAccountId'] == null ? undefined : json['performedByAccountId'],
68
+ 'metadata': json['metadata'] == null ? undefined : json['metadata'],
66
69
  };
67
70
  }
68
71
  function UserActionLogObjectToJSON(json) {
@@ -79,5 +82,6 @@ function UserActionLogObjectToJSONTyped(value, ignoreDiscriminator) {
79
82
  'actionType': value['actionType'],
80
83
  'contactMethodId': value['contactMethodId'],
81
84
  'performedByAccountId': value['performedByAccountId'],
85
+ 'metadata': value['metadata'],
82
86
  };
83
87
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@forteplatforms/sdk",
3
- "version": "1.0.139",
3
+ "version": "1.0.140",
4
4
  "description": "Official TypeScript SDK for Forte Platforms",
5
5
  "author": "Forte Platforms <support@forteplatforms.com>",
6
6
  "repository": {