@automate.ax/catalog 0.91.0 → 0.92.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.
@@ -875,10 +875,6 @@ 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
- };
882
878
  readonly notionDatabaseCreated: {
883
879
  account: import("..").IntegrationAccountRequirement<"notion">;
884
880
  type: "notion.database.created";
@@ -891,10 +887,6 @@ export declare const triggerDefinitions: {
891
887
  account: import("..").IntegrationAccountRequirement<"notion">;
892
888
  type: "notion.database.moved";
893
889
  };
894
- readonly notionDatabaseSchemaUpdated: {
895
- account: import("..").IntegrationAccountRequirement<"notion">;
896
- type: "notion.database.schemaUpdated";
897
- };
898
890
  readonly notionDatabaseUndeleted: {
899
891
  account: import("..").IntegrationAccountRequirement<"notion">;
900
892
  type: "notion.database.undeleted";
@@ -6406,10 +6398,6 @@ export declare const triggerCatalog: ({
6406
6398
  name: string;
6407
6399
  account: import("..").IntegrationAccountRequirement<"notion">;
6408
6400
  type: "notion.comment.updated";
6409
- } | {
6410
- name: string;
6411
- account: import("..").IntegrationAccountRequirement<"notion">;
6412
- type: "notion.database.contentUpdated";
6413
6401
  } | {
6414
6402
  name: string;
6415
6403
  account: import("..").IntegrationAccountRequirement<"notion">;
@@ -6422,10 +6410,6 @@ export declare const triggerCatalog: ({
6422
6410
  name: string;
6423
6411
  account: import("..").IntegrationAccountRequirement<"notion">;
6424
6412
  type: "notion.database.moved";
6425
- } | {
6426
- name: string;
6427
- account: import("..").IntegrationAccountRequirement<"notion">;
6428
- type: "notion.database.schemaUpdated";
6429
6413
  } | {
6430
6414
  name: string;
6431
6415
  account: import("..").IntegrationAccountRequirement<"notion">;
@@ -12,10 +12,6 @@ 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
- };
19
15
  readonly notionDatabaseCreated: {
20
16
  account: IntegrationAccountRequirement<"notion">;
21
17
  type: "notion.database.created";
@@ -28,10 +24,6 @@ export declare const notionTriggerDefinitions: {
28
24
  account: IntegrationAccountRequirement<"notion">;
29
25
  type: "notion.database.moved";
30
26
  };
31
- readonly notionDatabaseSchemaUpdated: {
32
- account: IntegrationAccountRequirement<"notion">;
33
- type: "notion.database.schemaUpdated";
34
- };
35
27
  readonly notionDatabaseUndeleted: {
36
28
  account: IntegrationAccountRequirement<"notion">;
37
29
  type: "notion.database.undeleted";
@@ -5,11 +5,9 @@ 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"),
9
8
  notionDatabaseCreated: notionTrigger(NOTION_READ_CONTENT_ACCOUNT, "notion.database.created"),
10
9
  notionDatabaseDeleted: notionTrigger(NOTION_READ_CONTENT_ACCOUNT, "notion.database.deleted"),
11
10
  notionDatabaseMoved: notionTrigger(NOTION_READ_CONTENT_ACCOUNT, "notion.database.moved"),
12
- notionDatabaseSchemaUpdated: notionTrigger(NOTION_READ_CONTENT_ACCOUNT, "notion.database.schemaUpdated"),
13
11
  notionDatabaseUndeleted: notionTrigger(NOTION_READ_CONTENT_ACCOUNT, "notion.database.undeleted"),
14
12
  notionDataSourceContentUpdated: notionTrigger(NOTION_READ_CONTENT_ACCOUNT, "notion.dataSource.contentUpdated"),
15
13
  notionDataSourceCreated: notionTrigger(NOTION_READ_CONTENT_ACCOUNT, "notion.dataSource.created"),
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@automate.ax/catalog",
3
- "version": "0.91.0",
3
+ "version": "0.92.0",
4
4
  "description": "Shared integration service and trigger definitions for Automate.ax.",
5
5
  "license": "MIT",
6
6
  "repository": {
@@ -17,10 +17,6 @@ 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
- ),
24
20
  notionDatabaseCreated: notionTrigger(
25
21
  NOTION_READ_CONTENT_ACCOUNT,
26
22
  "notion.database.created",
@@ -33,10 +29,6 @@ export const notionTriggerDefinitions = {
33
29
  NOTION_READ_CONTENT_ACCOUNT,
34
30
  "notion.database.moved",
35
31
  ),
36
- notionDatabaseSchemaUpdated: notionTrigger(
37
- NOTION_READ_CONTENT_ACCOUNT,
38
- "notion.database.schemaUpdated",
39
- ),
40
32
  notionDatabaseUndeleted: notionTrigger(
41
33
  NOTION_READ_CONTENT_ACCOUNT,
42
34
  "notion.database.undeleted",