@zernio/node 0.2.195 → 0.2.196
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/index.d.mts +14 -0
- package/dist/index.d.ts +14 -0
- package/dist/index.js +1 -1
- package/dist/index.mjs +1 -1
- package/package.json +1 -1
- package/src/generated/types.gen.ts +14 -0
package/dist/index.d.mts
CHANGED
|
@@ -15694,6 +15694,10 @@ type ListCommentAutomationsResponse = ({
|
|
|
15694
15694
|
* Whether link buttons in the DM are wrapped in a tracked redirect to count clicks.
|
|
15695
15695
|
*/
|
|
15696
15696
|
linkTracking?: boolean;
|
|
15697
|
+
/**
|
|
15698
|
+
* Tag applied to a contact when they click a tracked link.
|
|
15699
|
+
*/
|
|
15700
|
+
clickTag?: string;
|
|
15697
15701
|
isActive?: boolean;
|
|
15698
15702
|
stats?: {
|
|
15699
15703
|
triggered?: number;
|
|
@@ -15759,6 +15763,10 @@ type CreateCommentAutomationData = {
|
|
|
15759
15763
|
* Wrap link buttons in the DM in a tracked redirect so clicks are counted (Link Clicks / CTR). Pass false to send links exactly as written. Defaults to on.
|
|
15760
15764
|
*/
|
|
15761
15765
|
linkTracking?: boolean;
|
|
15766
|
+
/**
|
|
15767
|
+
* Optional tag applied to a contact when they click a tracked link (requires linkTracking). Lets you segment clickers for broadcasts/sequences.
|
|
15768
|
+
*/
|
|
15769
|
+
clickTag?: string;
|
|
15762
15770
|
};
|
|
15763
15771
|
};
|
|
15764
15772
|
type CreateCommentAutomationResponse = ({
|
|
@@ -15777,6 +15785,7 @@ type CreateCommentAutomationResponse = ({
|
|
|
15777
15785
|
buttons?: Array<DmButton>;
|
|
15778
15786
|
commentReply?: string;
|
|
15779
15787
|
linkTracking?: boolean;
|
|
15788
|
+
clickTag?: string;
|
|
15780
15789
|
isActive?: boolean;
|
|
15781
15790
|
stats?: {
|
|
15782
15791
|
totalTriggered?: number;
|
|
@@ -15813,6 +15822,7 @@ type GetCommentAutomationResponse = ({
|
|
|
15813
15822
|
buttons?: Array<DmButton>;
|
|
15814
15823
|
commentReply?: string;
|
|
15815
15824
|
linkTracking?: boolean;
|
|
15825
|
+
clickTag?: string;
|
|
15816
15826
|
isActive?: boolean;
|
|
15817
15827
|
stats?: {
|
|
15818
15828
|
totalTriggered?: number;
|
|
@@ -15865,6 +15875,10 @@ type UpdateCommentAutomationData = {
|
|
|
15865
15875
|
* Wrap link buttons in a tracked redirect to count clicks. Pass false to send links untouched.
|
|
15866
15876
|
*/
|
|
15867
15877
|
linkTracking?: boolean;
|
|
15878
|
+
/**
|
|
15879
|
+
* Tag applied to a contact when they click a tracked link (requires linkTracking). Empty string clears it.
|
|
15880
|
+
*/
|
|
15881
|
+
clickTag?: string;
|
|
15868
15882
|
isActive?: boolean;
|
|
15869
15883
|
};
|
|
15870
15884
|
path: {
|
package/dist/index.d.ts
CHANGED
|
@@ -15694,6 +15694,10 @@ type ListCommentAutomationsResponse = ({
|
|
|
15694
15694
|
* Whether link buttons in the DM are wrapped in a tracked redirect to count clicks.
|
|
15695
15695
|
*/
|
|
15696
15696
|
linkTracking?: boolean;
|
|
15697
|
+
/**
|
|
15698
|
+
* Tag applied to a contact when they click a tracked link.
|
|
15699
|
+
*/
|
|
15700
|
+
clickTag?: string;
|
|
15697
15701
|
isActive?: boolean;
|
|
15698
15702
|
stats?: {
|
|
15699
15703
|
triggered?: number;
|
|
@@ -15759,6 +15763,10 @@ type CreateCommentAutomationData = {
|
|
|
15759
15763
|
* Wrap link buttons in the DM in a tracked redirect so clicks are counted (Link Clicks / CTR). Pass false to send links exactly as written. Defaults to on.
|
|
15760
15764
|
*/
|
|
15761
15765
|
linkTracking?: boolean;
|
|
15766
|
+
/**
|
|
15767
|
+
* Optional tag applied to a contact when they click a tracked link (requires linkTracking). Lets you segment clickers for broadcasts/sequences.
|
|
15768
|
+
*/
|
|
15769
|
+
clickTag?: string;
|
|
15762
15770
|
};
|
|
15763
15771
|
};
|
|
15764
15772
|
type CreateCommentAutomationResponse = ({
|
|
@@ -15777,6 +15785,7 @@ type CreateCommentAutomationResponse = ({
|
|
|
15777
15785
|
buttons?: Array<DmButton>;
|
|
15778
15786
|
commentReply?: string;
|
|
15779
15787
|
linkTracking?: boolean;
|
|
15788
|
+
clickTag?: string;
|
|
15780
15789
|
isActive?: boolean;
|
|
15781
15790
|
stats?: {
|
|
15782
15791
|
totalTriggered?: number;
|
|
@@ -15813,6 +15822,7 @@ type GetCommentAutomationResponse = ({
|
|
|
15813
15822
|
buttons?: Array<DmButton>;
|
|
15814
15823
|
commentReply?: string;
|
|
15815
15824
|
linkTracking?: boolean;
|
|
15825
|
+
clickTag?: string;
|
|
15816
15826
|
isActive?: boolean;
|
|
15817
15827
|
stats?: {
|
|
15818
15828
|
totalTriggered?: number;
|
|
@@ -15865,6 +15875,10 @@ type UpdateCommentAutomationData = {
|
|
|
15865
15875
|
* Wrap link buttons in a tracked redirect to count clicks. Pass false to send links untouched.
|
|
15866
15876
|
*/
|
|
15867
15877
|
linkTracking?: boolean;
|
|
15878
|
+
/**
|
|
15879
|
+
* Tag applied to a contact when they click a tracked link (requires linkTracking). Empty string clears it.
|
|
15880
|
+
*/
|
|
15881
|
+
clickTag?: string;
|
|
15868
15882
|
isActive?: boolean;
|
|
15869
15883
|
};
|
|
15870
15884
|
path: {
|
package/dist/index.js
CHANGED
|
@@ -36,7 +36,7 @@ module.exports = __toCommonJS(index_exports);
|
|
|
36
36
|
// package.json
|
|
37
37
|
var package_default = {
|
|
38
38
|
name: "@zernio/node",
|
|
39
|
-
version: "0.2.
|
|
39
|
+
version: "0.2.196",
|
|
40
40
|
description: "The official Node.js library for the Zernio API",
|
|
41
41
|
main: "dist/index.js",
|
|
42
42
|
module: "dist/index.mjs",
|
package/dist/index.mjs
CHANGED
|
@@ -5,7 +5,7 @@ var __publicField = (obj, key, value) => __defNormalProp(obj, typeof key !== "sy
|
|
|
5
5
|
// package.json
|
|
6
6
|
var package_default = {
|
|
7
7
|
name: "@zernio/node",
|
|
8
|
-
version: "0.2.
|
|
8
|
+
version: "0.2.196",
|
|
9
9
|
description: "The official Node.js library for the Zernio API",
|
|
10
10
|
main: "dist/index.js",
|
|
11
11
|
module: "dist/index.mjs",
|
package/package.json
CHANGED
|
@@ -16039,6 +16039,10 @@ export type ListCommentAutomationsResponse = ({
|
|
|
16039
16039
|
* Whether link buttons in the DM are wrapped in a tracked redirect to count clicks.
|
|
16040
16040
|
*/
|
|
16041
16041
|
linkTracking?: boolean;
|
|
16042
|
+
/**
|
|
16043
|
+
* Tag applied to a contact when they click a tracked link.
|
|
16044
|
+
*/
|
|
16045
|
+
clickTag?: string;
|
|
16042
16046
|
isActive?: boolean;
|
|
16043
16047
|
stats?: {
|
|
16044
16048
|
triggered?: number;
|
|
@@ -16106,6 +16110,10 @@ export type CreateCommentAutomationData = {
|
|
|
16106
16110
|
* Wrap link buttons in the DM in a tracked redirect so clicks are counted (Link Clicks / CTR). Pass false to send links exactly as written. Defaults to on.
|
|
16107
16111
|
*/
|
|
16108
16112
|
linkTracking?: boolean;
|
|
16113
|
+
/**
|
|
16114
|
+
* Optional tag applied to a contact when they click a tracked link (requires linkTracking). Lets you segment clickers for broadcasts/sequences.
|
|
16115
|
+
*/
|
|
16116
|
+
clickTag?: string;
|
|
16109
16117
|
};
|
|
16110
16118
|
};
|
|
16111
16119
|
|
|
@@ -16125,6 +16133,7 @@ export type CreateCommentAutomationResponse = ({
|
|
|
16125
16133
|
buttons?: Array<DmButton>;
|
|
16126
16134
|
commentReply?: string;
|
|
16127
16135
|
linkTracking?: boolean;
|
|
16136
|
+
clickTag?: string;
|
|
16128
16137
|
isActive?: boolean;
|
|
16129
16138
|
stats?: {
|
|
16130
16139
|
totalTriggered?: number;
|
|
@@ -16164,6 +16173,7 @@ export type GetCommentAutomationResponse = ({
|
|
|
16164
16173
|
buttons?: Array<DmButton>;
|
|
16165
16174
|
commentReply?: string;
|
|
16166
16175
|
linkTracking?: boolean;
|
|
16176
|
+
clickTag?: string;
|
|
16167
16177
|
isActive?: boolean;
|
|
16168
16178
|
stats?: {
|
|
16169
16179
|
totalTriggered?: number;
|
|
@@ -16218,6 +16228,10 @@ export type UpdateCommentAutomationData = {
|
|
|
16218
16228
|
* Wrap link buttons in a tracked redirect to count clicks. Pass false to send links untouched.
|
|
16219
16229
|
*/
|
|
16220
16230
|
linkTracking?: boolean;
|
|
16231
|
+
/**
|
|
16232
|
+
* Tag applied to a contact when they click a tracked link (requires linkTracking). Empty string clears it.
|
|
16233
|
+
*/
|
|
16234
|
+
clickTag?: string;
|
|
16221
16235
|
isActive?: boolean;
|
|
16222
16236
|
};
|
|
16223
16237
|
path: {
|