@automate.ax/catalog 0.146.0 → 0.146.1
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.
|
@@ -7,7 +7,7 @@ const MESSAGE_ACCOUNT = highLevelOAuthAccount([
|
|
|
7
7
|
]);
|
|
8
8
|
const OPPORTUNITY_ACCOUNT = highLevelOAuthAccount(["opportunities.readonly"]);
|
|
9
9
|
const LOCATION_ACCOUNT = highLevelOAuthAccount(["locations.readonly"]);
|
|
10
|
-
const USER_ACCOUNT = highLevelOAuthAccount(["users.
|
|
10
|
+
const USER_ACCOUNT = highLevelOAuthAccount(["users.write"]);
|
|
11
11
|
export const highLevelTriggerDefinitions = {
|
|
12
12
|
highLevelAppointmentCreated: definition(APPOINTMENT_ACCOUNT, "highlevel.appointment.created"),
|
|
13
13
|
highLevelAppointmentDeleted: definition(APPOINTMENT_ACCOUNT, "highlevel.appointment.deleted"),
|
|
@@ -29,6 +29,7 @@ export const highLevelTriggerDefinitions = {
|
|
|
29
29
|
"locations.readonly",
|
|
30
30
|
"opportunities.readonly",
|
|
31
31
|
"users.readonly",
|
|
32
|
+
"users.write",
|
|
32
33
|
]), "highlevel.event"),
|
|
33
34
|
highLevelLocationUpdated: definition(LOCATION_ACCOUNT, "highlevel.location.updated"),
|
|
34
35
|
highLevelMessageReceived: definition(MESSAGE_ACCOUNT, "highlevel.message.received"),
|
package/package.json
CHANGED
|
@@ -9,7 +9,7 @@ const MESSAGE_ACCOUNT = highLevelOAuthAccount([
|
|
|
9
9
|
])
|
|
10
10
|
const OPPORTUNITY_ACCOUNT = highLevelOAuthAccount(["opportunities.readonly"])
|
|
11
11
|
const LOCATION_ACCOUNT = highLevelOAuthAccount(["locations.readonly"])
|
|
12
|
-
const USER_ACCOUNT = highLevelOAuthAccount(["users.
|
|
12
|
+
const USER_ACCOUNT = highLevelOAuthAccount(["users.write"])
|
|
13
13
|
|
|
14
14
|
export const highLevelTriggerDefinitions = {
|
|
15
15
|
highLevelAppointmentCreated: definition(
|
|
@@ -66,6 +66,7 @@ export const highLevelTriggerDefinitions = {
|
|
|
66
66
|
"locations.readonly",
|
|
67
67
|
"opportunities.readonly",
|
|
68
68
|
"users.readonly",
|
|
69
|
+
"users.write",
|
|
69
70
|
]),
|
|
70
71
|
"highlevel.event",
|
|
71
72
|
),
|