@automate.ax/catalog 0.89.2 → 0.90.0
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/dist/triggers/index.d.ts
CHANGED
|
@@ -875,6 +875,10 @@ export declare const triggerDefinitions: {
|
|
|
875
875
|
account: import("..").IntegrationAccountRequirement<"notion">;
|
|
876
876
|
type: "notion.comment.updated";
|
|
877
877
|
};
|
|
878
|
+
readonly notionDatabaseContentUpdated: {
|
|
879
|
+
account: import("..").IntegrationAccountRequirement<"notion">;
|
|
880
|
+
type: "notion.database.contentUpdated";
|
|
881
|
+
};
|
|
878
882
|
readonly notionDatabaseCreated: {
|
|
879
883
|
account: import("..").IntegrationAccountRequirement<"notion">;
|
|
880
884
|
type: "notion.database.created";
|
|
@@ -887,6 +891,10 @@ export declare const triggerDefinitions: {
|
|
|
887
891
|
account: import("..").IntegrationAccountRequirement<"notion">;
|
|
888
892
|
type: "notion.database.moved";
|
|
889
893
|
};
|
|
894
|
+
readonly notionDatabaseSchemaUpdated: {
|
|
895
|
+
account: import("..").IntegrationAccountRequirement<"notion">;
|
|
896
|
+
type: "notion.database.schemaUpdated";
|
|
897
|
+
};
|
|
890
898
|
readonly notionDatabaseUndeleted: {
|
|
891
899
|
account: import("..").IntegrationAccountRequirement<"notion">;
|
|
892
900
|
type: "notion.database.undeleted";
|
|
@@ -6398,6 +6406,10 @@ export declare const triggerCatalog: ({
|
|
|
6398
6406
|
name: string;
|
|
6399
6407
|
account: import("..").IntegrationAccountRequirement<"notion">;
|
|
6400
6408
|
type: "notion.comment.updated";
|
|
6409
|
+
} | {
|
|
6410
|
+
name: string;
|
|
6411
|
+
account: import("..").IntegrationAccountRequirement<"notion">;
|
|
6412
|
+
type: "notion.database.contentUpdated";
|
|
6401
6413
|
} | {
|
|
6402
6414
|
name: string;
|
|
6403
6415
|
account: import("..").IntegrationAccountRequirement<"notion">;
|
|
@@ -6410,6 +6422,10 @@ export declare const triggerCatalog: ({
|
|
|
6410
6422
|
name: string;
|
|
6411
6423
|
account: import("..").IntegrationAccountRequirement<"notion">;
|
|
6412
6424
|
type: "notion.database.moved";
|
|
6425
|
+
} | {
|
|
6426
|
+
name: string;
|
|
6427
|
+
account: import("..").IntegrationAccountRequirement<"notion">;
|
|
6428
|
+
type: "notion.database.schemaUpdated";
|
|
6413
6429
|
} | {
|
|
6414
6430
|
name: string;
|
|
6415
6431
|
account: import("..").IntegrationAccountRequirement<"notion">;
|
|
@@ -12,6 +12,10 @@ export declare const notionTriggerDefinitions: {
|
|
|
12
12
|
account: IntegrationAccountRequirement<"notion">;
|
|
13
13
|
type: "notion.comment.updated";
|
|
14
14
|
};
|
|
15
|
+
readonly notionDatabaseContentUpdated: {
|
|
16
|
+
account: IntegrationAccountRequirement<"notion">;
|
|
17
|
+
type: "notion.database.contentUpdated";
|
|
18
|
+
};
|
|
15
19
|
readonly notionDatabaseCreated: {
|
|
16
20
|
account: IntegrationAccountRequirement<"notion">;
|
|
17
21
|
type: "notion.database.created";
|
|
@@ -24,6 +28,10 @@ export declare const notionTriggerDefinitions: {
|
|
|
24
28
|
account: IntegrationAccountRequirement<"notion">;
|
|
25
29
|
type: "notion.database.moved";
|
|
26
30
|
};
|
|
31
|
+
readonly notionDatabaseSchemaUpdated: {
|
|
32
|
+
account: IntegrationAccountRequirement<"notion">;
|
|
33
|
+
type: "notion.database.schemaUpdated";
|
|
34
|
+
};
|
|
27
35
|
readonly notionDatabaseUndeleted: {
|
|
28
36
|
account: IntegrationAccountRequirement<"notion">;
|
|
29
37
|
type: "notion.database.undeleted";
|
package/dist/triggers/notion.js
CHANGED
|
@@ -5,9 +5,11 @@ export const notionTriggerDefinitions = {
|
|
|
5
5
|
notionCommentCreated: notionTrigger(NOTION_READ_COMMENTS_ACCOUNT, "notion.comment.created"),
|
|
6
6
|
notionCommentDeleted: notionTrigger(NOTION_READ_COMMENTS_ACCOUNT, "notion.comment.deleted"),
|
|
7
7
|
notionCommentUpdated: notionTrigger(NOTION_READ_COMMENTS_ACCOUNT, "notion.comment.updated"),
|
|
8
|
+
notionDatabaseContentUpdated: notionTrigger(NOTION_READ_CONTENT_ACCOUNT, "notion.database.contentUpdated"),
|
|
8
9
|
notionDatabaseCreated: notionTrigger(NOTION_READ_CONTENT_ACCOUNT, "notion.database.created"),
|
|
9
10
|
notionDatabaseDeleted: notionTrigger(NOTION_READ_CONTENT_ACCOUNT, "notion.database.deleted"),
|
|
10
11
|
notionDatabaseMoved: notionTrigger(NOTION_READ_CONTENT_ACCOUNT, "notion.database.moved"),
|
|
12
|
+
notionDatabaseSchemaUpdated: notionTrigger(NOTION_READ_CONTENT_ACCOUNT, "notion.database.schemaUpdated"),
|
|
11
13
|
notionDatabaseUndeleted: notionTrigger(NOTION_READ_CONTENT_ACCOUNT, "notion.database.undeleted"),
|
|
12
14
|
notionDataSourceContentUpdated: notionTrigger(NOTION_READ_CONTENT_ACCOUNT, "notion.dataSource.contentUpdated"),
|
|
13
15
|
notionDataSourceCreated: notionTrigger(NOTION_READ_CONTENT_ACCOUNT, "notion.dataSource.created"),
|
package/package.json
CHANGED
package/src/triggers/notion.ts
CHANGED
|
@@ -17,6 +17,10 @@ export const notionTriggerDefinitions = {
|
|
|
17
17
|
NOTION_READ_COMMENTS_ACCOUNT,
|
|
18
18
|
"notion.comment.updated",
|
|
19
19
|
),
|
|
20
|
+
notionDatabaseContentUpdated: notionTrigger(
|
|
21
|
+
NOTION_READ_CONTENT_ACCOUNT,
|
|
22
|
+
"notion.database.contentUpdated",
|
|
23
|
+
),
|
|
20
24
|
notionDatabaseCreated: notionTrigger(
|
|
21
25
|
NOTION_READ_CONTENT_ACCOUNT,
|
|
22
26
|
"notion.database.created",
|
|
@@ -29,6 +33,10 @@ export const notionTriggerDefinitions = {
|
|
|
29
33
|
NOTION_READ_CONTENT_ACCOUNT,
|
|
30
34
|
"notion.database.moved",
|
|
31
35
|
),
|
|
36
|
+
notionDatabaseSchemaUpdated: notionTrigger(
|
|
37
|
+
NOTION_READ_CONTENT_ACCOUNT,
|
|
38
|
+
"notion.database.schemaUpdated",
|
|
39
|
+
),
|
|
32
40
|
notionDatabaseUndeleted: notionTrigger(
|
|
33
41
|
NOTION_READ_CONTENT_ACCOUNT,
|
|
34
42
|
"notion.database.undeleted",
|