@activepieces/piece-posthog 0.2.0 → 0.2.2
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 +5 -5
- package/src/index.d.ts +1 -1
- package/src/index.js +2 -2
- package/src/index.js.map +1 -1
- package/src/lib/actions/create-event.d.ts +1 -1
- package/src/lib/actions/create-event.js +15 -17
- package/src/lib/actions/create-event.js.map +1 -1
- package/src/lib/actions/create-project.d.ts +1 -1
- package/src/lib/actions/create-project.js +12 -14
- package/src/lib/actions/create-project.js.map +1 -1
- package/src/lib/common/models.d.ts +1 -1
- package/src/lib/common/props.d.ts +1 -0
- package/src/lib/common/props.js +13 -0
- package/src/lib/common/props.js.map +1 -0
package/package.json
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@activepieces/piece-posthog",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.2",
|
|
4
4
|
"dependencies": {
|
|
5
|
-
"@sinclair/typebox": "0.
|
|
5
|
+
"@sinclair/typebox": "0.26.8",
|
|
6
6
|
"axios": "1.2.4",
|
|
7
|
-
"cron-validator": "1.3.1",
|
|
8
7
|
"nanoid": "3.3.4",
|
|
9
|
-
"@activepieces/framework": "0.
|
|
10
|
-
"@activepieces/shared": "0.
|
|
8
|
+
"@activepieces/pieces-framework": "0.3.13",
|
|
9
|
+
"@activepieces/shared": "0.3.11",
|
|
10
|
+
"@activepieces/pieces-common": "0.0.1",
|
|
11
11
|
"tslib": "2.4.1"
|
|
12
12
|
},
|
|
13
13
|
"main": "./src/index.js",
|
package/src/index.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const posthog: import("@activepieces/framework").Piece;
|
|
1
|
+
export declare const posthog: import("@activepieces/pieces-framework").Piece;
|
package/src/index.js
CHANGED
|
@@ -3,10 +3,10 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
3
3
|
exports.posthog = void 0;
|
|
4
4
|
const tslib_1 = require("tslib");
|
|
5
5
|
const package_json_1 = tslib_1.__importDefault(require("../package.json"));
|
|
6
|
-
const
|
|
6
|
+
const pieces_framework_1 = require("@activepieces/pieces-framework");
|
|
7
7
|
const create_event_1 = require("./lib/actions/create-event");
|
|
8
8
|
const create_project_1 = require("./lib/actions/create-project");
|
|
9
|
-
exports.posthog = (0,
|
|
9
|
+
exports.posthog = (0, pieces_framework_1.createPiece)({
|
|
10
10
|
name: 'posthog',
|
|
11
11
|
displayName: "PostHog",
|
|
12
12
|
logoUrl: 'https://cdn.activepieces.com/pieces/posthog.png',
|
package/src/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../packages/pieces/posthog/src/index.ts"],"names":[],"mappings":";;;;AAAA,2EAA0C;AAC1C,
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../packages/pieces/posthog/src/index.ts"],"names":[],"mappings":";;;;AAAA,2EAA0C;AAC1C,qEAA6D;AAC7D,6DAAgE;AAChE,iEAAoE;AAEvD,QAAA,OAAO,GAAG,IAAA,8BAAW,EAAC;IACjC,IAAI,EAAE,SAAS;IACf,WAAW,EAAE,SAAS;IACtB,OAAO,EAAE,iDAAiD;IAC1D,OAAO,EAAE,CAAC,iCAAkB,EAAE,qCAAoB,CAAC;IACnD,OAAO,EAAE,CAAC,UAAU,CAAC;IACrB,QAAQ,EAAE,EAAE;IACZ,OAAO,EAAE,sBAAW,CAAC,OAAO;CAC7B,CAAC,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const posthogCreateEvent: import("@activepieces/framework").Action;
|
|
1
|
+
export declare const posthogCreateEvent: import("@activepieces/pieces-framework").Action;
|
|
@@ -2,8 +2,10 @@
|
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.posthogCreateEvent = void 0;
|
|
4
4
|
const tslib_1 = require("tslib");
|
|
5
|
-
const
|
|
6
|
-
|
|
5
|
+
const pieces_framework_1 = require("@activepieces/pieces-framework");
|
|
6
|
+
const pieces_common_1 = require("@activepieces/pieces-common");
|
|
7
|
+
const props_1 = require("../common/props");
|
|
8
|
+
exports.posthogCreateEvent = (0, pieces_framework_1.createAction)({
|
|
7
9
|
name: 'create_event',
|
|
8
10
|
displayName: 'Create Event',
|
|
9
11
|
description: 'Create an event inside a project',
|
|
@@ -11,17 +13,13 @@ exports.posthogCreateEvent = (0, framework_1.createAction)({
|
|
|
11
13
|
"status": 1
|
|
12
14
|
},
|
|
13
15
|
props: {
|
|
14
|
-
project_api_key:
|
|
15
|
-
|
|
16
|
-
description: "Your project API key",
|
|
17
|
-
required: true
|
|
18
|
-
}),
|
|
19
|
-
event: framework_1.Property.ShortText({
|
|
16
|
+
project_api_key: props_1.posthogAuthentication,
|
|
17
|
+
event: pieces_framework_1.Property.ShortText({
|
|
20
18
|
displayName: "Event name",
|
|
21
19
|
description: "The event name",
|
|
22
20
|
required: true
|
|
23
21
|
}),
|
|
24
|
-
event_type:
|
|
22
|
+
event_type: pieces_framework_1.Property.StaticDropdown({
|
|
25
23
|
displayName: "Event type",
|
|
26
24
|
required: true,
|
|
27
25
|
options: {
|
|
@@ -34,27 +32,27 @@ exports.posthogCreateEvent = (0, framework_1.createAction)({
|
|
|
34
32
|
]
|
|
35
33
|
}
|
|
36
34
|
}),
|
|
37
|
-
distinct_id:
|
|
35
|
+
distinct_id: pieces_framework_1.Property.ShortText({
|
|
38
36
|
displayName: "Distinct Id",
|
|
39
37
|
description: "User's Distinct Id",
|
|
40
38
|
required: true
|
|
41
39
|
}),
|
|
42
|
-
properties:
|
|
40
|
+
properties: pieces_framework_1.Property.Object({
|
|
43
41
|
displayName: "Properties",
|
|
44
42
|
description: "The event properties",
|
|
45
43
|
required: false
|
|
46
44
|
}),
|
|
47
|
-
context:
|
|
45
|
+
context: pieces_framework_1.Property.Object({
|
|
48
46
|
displayName: "Context",
|
|
49
47
|
description: "The event context,",
|
|
50
48
|
required: false
|
|
51
49
|
}),
|
|
52
|
-
message_id:
|
|
50
|
+
message_id: pieces_framework_1.Property.ShortText({
|
|
53
51
|
displayName: "Message ID",
|
|
54
52
|
description: "The message id,",
|
|
55
53
|
required: false
|
|
56
54
|
}),
|
|
57
|
-
category:
|
|
55
|
+
category: pieces_framework_1.Property.ShortText({
|
|
58
56
|
displayName: "Category",
|
|
59
57
|
description: "The event category.",
|
|
60
58
|
required: false
|
|
@@ -73,15 +71,15 @@ exports.posthogCreateEvent = (0, framework_1.createAction)({
|
|
|
73
71
|
category: context.propsValue.category
|
|
74
72
|
};
|
|
75
73
|
const request = {
|
|
76
|
-
method:
|
|
74
|
+
method: pieces_common_1.HttpMethod.POST,
|
|
77
75
|
url: `https://app.posthog.com/capture/`,
|
|
78
76
|
body,
|
|
79
77
|
authentication: {
|
|
80
|
-
type:
|
|
78
|
+
type: pieces_common_1.AuthenticationType.BEARER_TOKEN,
|
|
81
79
|
token: context.propsValue.project_api_key
|
|
82
80
|
}
|
|
83
81
|
};
|
|
84
|
-
const result = yield
|
|
82
|
+
const result = yield pieces_common_1.httpClient.sendRequest(request);
|
|
85
83
|
console.debug("Event creation response", result);
|
|
86
84
|
if (result.status === 200) {
|
|
87
85
|
return result.body;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"create-event.js","sourceRoot":"","sources":["../../../../../../../packages/pieces/posthog/src/lib/actions/create-event.ts"],"names":[],"mappings":";;;;AAAA,
|
|
1
|
+
{"version":3,"file":"create-event.js","sourceRoot":"","sources":["../../../../../../../packages/pieces/posthog/src/lib/actions/create-event.ts"],"names":[],"mappings":"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"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const posthogCreateProject: import("@activepieces/framework").Action;
|
|
1
|
+
export declare const posthogCreateProject: import("@activepieces/pieces-framework").Action;
|
|
@@ -2,8 +2,10 @@
|
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.posthogCreateProject = void 0;
|
|
4
4
|
const tslib_1 = require("tslib");
|
|
5
|
-
const
|
|
6
|
-
|
|
5
|
+
const pieces_framework_1 = require("@activepieces/pieces-framework");
|
|
6
|
+
const pieces_common_1 = require("@activepieces/pieces-common");
|
|
7
|
+
const props_1 = require("../common/props");
|
|
8
|
+
exports.posthogCreateProject = (0, pieces_framework_1.createAction)({
|
|
7
9
|
name: 'create_project',
|
|
8
10
|
displayName: 'Create Project',
|
|
9
11
|
description: 'Create a posthog project',
|
|
@@ -62,27 +64,23 @@ exports.posthogCreateProject = (0, framework_1.createAction)({
|
|
|
62
64
|
"inject_web_apps": true
|
|
63
65
|
},
|
|
64
66
|
props: {
|
|
65
|
-
api_key:
|
|
66
|
-
|
|
67
|
-
description: "Check https://posthog.com/docs/api/overview#personal-api-keys-recommended for more information.",
|
|
68
|
-
required: true
|
|
69
|
-
}),
|
|
70
|
-
name: framework_1.Property.ShortText({
|
|
67
|
+
api_key: props_1.posthogAuthentication,
|
|
68
|
+
name: pieces_framework_1.Property.ShortText({
|
|
71
69
|
displayName: "Name",
|
|
72
70
|
description: "Project Name",
|
|
73
71
|
required: false
|
|
74
72
|
}),
|
|
75
|
-
slack_incoming_webhook:
|
|
73
|
+
slack_incoming_webhook: pieces_framework_1.Property.ShortText({
|
|
76
74
|
displayName: "Slack Incoming Webhook",
|
|
77
75
|
description: "Slack incoming webhook",
|
|
78
76
|
required: false
|
|
79
77
|
}),
|
|
80
|
-
anonymize_ips:
|
|
78
|
+
anonymize_ips: pieces_framework_1.Property.Checkbox({
|
|
81
79
|
displayName: "Anonymize IPs",
|
|
82
80
|
description: "Whether to anonymize incoming IP addresses.",
|
|
83
81
|
required: false
|
|
84
82
|
}),
|
|
85
|
-
is_demo:
|
|
83
|
+
is_demo: pieces_framework_1.Property.Checkbox({
|
|
86
84
|
displayName: "Is demo project",
|
|
87
85
|
description: "If this is a demo project",
|
|
88
86
|
required: false
|
|
@@ -92,15 +90,15 @@ exports.posthogCreateProject = (0, framework_1.createAction)({
|
|
|
92
90
|
return tslib_1.__awaiter(this, void 0, void 0, function* () {
|
|
93
91
|
const body = Object.assign({}, context.propsValue);
|
|
94
92
|
const request = {
|
|
95
|
-
method:
|
|
93
|
+
method: pieces_common_1.HttpMethod.POST,
|
|
96
94
|
url: `https://app.posthog.com/api/projects/`,
|
|
97
95
|
body,
|
|
98
96
|
authentication: {
|
|
99
|
-
type:
|
|
97
|
+
type: pieces_common_1.AuthenticationType.BEARER_TOKEN,
|
|
100
98
|
token: context.propsValue.api_key
|
|
101
99
|
}
|
|
102
100
|
};
|
|
103
|
-
const result = yield
|
|
101
|
+
const result = yield pieces_common_1.httpClient.sendRequest(request);
|
|
104
102
|
console.debug("Project creation response", result);
|
|
105
103
|
if (result.status === 200) {
|
|
106
104
|
return result.body;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"create-project.js","sourceRoot":"","sources":["../../../../../../../packages/pieces/posthog/src/lib/actions/create-project.ts"],"names":[],"mappings":";;;;AAAA,
|
|
1
|
+
{"version":3,"file":"create-project.js","sourceRoot":"","sources":["../../../../../../../packages/pieces/posthog/src/lib/actions/create-project.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const posthogAuthentication: import("@activepieces/pieces-framework").SecretTextProperty<true>;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.posthogAuthentication = void 0;
|
|
4
|
+
const pieces_framework_1 = require("@activepieces/pieces-framework");
|
|
5
|
+
const authenticationMarkdown = `
|
|
6
|
+
[Click here](https://posthog.com/docs/api/overview#personal-api-keys-recommended) to learn how to obtain your Personal API key.
|
|
7
|
+
`;
|
|
8
|
+
exports.posthogAuthentication = pieces_framework_1.Property.SecretText({
|
|
9
|
+
displayName: "Personal API Key",
|
|
10
|
+
description: authenticationMarkdown,
|
|
11
|
+
required: true
|
|
12
|
+
});
|
|
13
|
+
//# sourceMappingURL=props.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"props.js","sourceRoot":"","sources":["../../../../../../../packages/pieces/posthog/src/lib/common/props.ts"],"names":[],"mappings":";;;AAAA,qEAA0D;AAC1D,MAAM,sBAAsB,GAAG;;CAE9B,CAAC;AAEW,QAAA,qBAAqB,GAAG,2BAAQ,CAAC,UAAU,CAAC;IACrD,WAAW,EAAE,kBAAkB;IAC/B,WAAW,EAAE,sBAAsB;IACnC,QAAQ,EAAE,IAAI;CACjB,CAAC,CAAC"}
|