@zernio/node 0.2.88 → 0.2.89
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 +28 -0
- package/dist/index.d.ts +28 -0
- package/package.json +1 -1
- package/src/generated/types.gen.ts +28 -0
package/dist/index.d.mts
CHANGED
|
@@ -11925,8 +11925,22 @@ type GetCommentAutomationResponse = ({
|
|
|
11925
11925
|
commenterId?: string;
|
|
11926
11926
|
commenterName?: string;
|
|
11927
11927
|
commentText?: string;
|
|
11928
|
+
/**
|
|
11929
|
+
* DM outcome
|
|
11930
|
+
*/
|
|
11928
11931
|
status?: 'sent' | 'failed' | 'skipped';
|
|
11932
|
+
/**
|
|
11933
|
+
* DM error message if status is failed
|
|
11934
|
+
*/
|
|
11929
11935
|
error?: string;
|
|
11936
|
+
/**
|
|
11937
|
+
* Outcome of the optional public reply on the triggering comment. 'skipped' if no commentReply was configured or if the DM failed (the public reply is not attempted in that case).
|
|
11938
|
+
*/
|
|
11939
|
+
commentReplyStatus?: 'sent' | 'failed' | 'skipped';
|
|
11940
|
+
/**
|
|
11941
|
+
* Public-reply error message if commentReplyStatus is failed
|
|
11942
|
+
*/
|
|
11943
|
+
commentReplyError?: string;
|
|
11930
11944
|
createdAt?: string;
|
|
11931
11945
|
}>;
|
|
11932
11946
|
});
|
|
@@ -11992,8 +12006,22 @@ type ListCommentAutomationLogsResponse = ({
|
|
|
11992
12006
|
commenterId?: string;
|
|
11993
12007
|
commenterName?: string;
|
|
11994
12008
|
commentText?: string;
|
|
12009
|
+
/**
|
|
12010
|
+
* DM outcome
|
|
12011
|
+
*/
|
|
11995
12012
|
status?: 'sent' | 'failed' | 'skipped';
|
|
12013
|
+
/**
|
|
12014
|
+
* DM error message if status is failed
|
|
12015
|
+
*/
|
|
11996
12016
|
error?: string;
|
|
12017
|
+
/**
|
|
12018
|
+
* Outcome of the optional public reply on the triggering comment. 'skipped' if no commentReply was configured or if the DM failed (the public reply is not attempted in that case).
|
|
12019
|
+
*/
|
|
12020
|
+
commentReplyStatus?: 'sent' | 'failed' | 'skipped';
|
|
12021
|
+
/**
|
|
12022
|
+
* Public-reply error message if commentReplyStatus is failed
|
|
12023
|
+
*/
|
|
12024
|
+
commentReplyError?: string;
|
|
11997
12025
|
createdAt?: string;
|
|
11998
12026
|
}>;
|
|
11999
12027
|
pagination?: {
|
package/dist/index.d.ts
CHANGED
|
@@ -11925,8 +11925,22 @@ type GetCommentAutomationResponse = ({
|
|
|
11925
11925
|
commenterId?: string;
|
|
11926
11926
|
commenterName?: string;
|
|
11927
11927
|
commentText?: string;
|
|
11928
|
+
/**
|
|
11929
|
+
* DM outcome
|
|
11930
|
+
*/
|
|
11928
11931
|
status?: 'sent' | 'failed' | 'skipped';
|
|
11932
|
+
/**
|
|
11933
|
+
* DM error message if status is failed
|
|
11934
|
+
*/
|
|
11929
11935
|
error?: string;
|
|
11936
|
+
/**
|
|
11937
|
+
* Outcome of the optional public reply on the triggering comment. 'skipped' if no commentReply was configured or if the DM failed (the public reply is not attempted in that case).
|
|
11938
|
+
*/
|
|
11939
|
+
commentReplyStatus?: 'sent' | 'failed' | 'skipped';
|
|
11940
|
+
/**
|
|
11941
|
+
* Public-reply error message if commentReplyStatus is failed
|
|
11942
|
+
*/
|
|
11943
|
+
commentReplyError?: string;
|
|
11930
11944
|
createdAt?: string;
|
|
11931
11945
|
}>;
|
|
11932
11946
|
});
|
|
@@ -11992,8 +12006,22 @@ type ListCommentAutomationLogsResponse = ({
|
|
|
11992
12006
|
commenterId?: string;
|
|
11993
12007
|
commenterName?: string;
|
|
11994
12008
|
commentText?: string;
|
|
12009
|
+
/**
|
|
12010
|
+
* DM outcome
|
|
12011
|
+
*/
|
|
11995
12012
|
status?: 'sent' | 'failed' | 'skipped';
|
|
12013
|
+
/**
|
|
12014
|
+
* DM error message if status is failed
|
|
12015
|
+
*/
|
|
11996
12016
|
error?: string;
|
|
12017
|
+
/**
|
|
12018
|
+
* Outcome of the optional public reply on the triggering comment. 'skipped' if no commentReply was configured or if the DM failed (the public reply is not attempted in that case).
|
|
12019
|
+
*/
|
|
12020
|
+
commentReplyStatus?: 'sent' | 'failed' | 'skipped';
|
|
12021
|
+
/**
|
|
12022
|
+
* Public-reply error message if commentReplyStatus is failed
|
|
12023
|
+
*/
|
|
12024
|
+
commentReplyError?: string;
|
|
11997
12025
|
createdAt?: string;
|
|
11998
12026
|
}>;
|
|
11999
12027
|
pagination?: {
|
package/package.json
CHANGED
|
@@ -12192,8 +12192,22 @@ export type GetCommentAutomationResponse = ({
|
|
|
12192
12192
|
commenterId?: string;
|
|
12193
12193
|
commenterName?: string;
|
|
12194
12194
|
commentText?: string;
|
|
12195
|
+
/**
|
|
12196
|
+
* DM outcome
|
|
12197
|
+
*/
|
|
12195
12198
|
status?: 'sent' | 'failed' | 'skipped';
|
|
12199
|
+
/**
|
|
12200
|
+
* DM error message if status is failed
|
|
12201
|
+
*/
|
|
12196
12202
|
error?: string;
|
|
12203
|
+
/**
|
|
12204
|
+
* Outcome of the optional public reply on the triggering comment. 'skipped' if no commentReply was configured or if the DM failed (the public reply is not attempted in that case).
|
|
12205
|
+
*/
|
|
12206
|
+
commentReplyStatus?: 'sent' | 'failed' | 'skipped';
|
|
12207
|
+
/**
|
|
12208
|
+
* Public-reply error message if commentReplyStatus is failed
|
|
12209
|
+
*/
|
|
12210
|
+
commentReplyError?: string;
|
|
12197
12211
|
createdAt?: string;
|
|
12198
12212
|
}>;
|
|
12199
12213
|
});
|
|
@@ -12268,8 +12282,22 @@ export type ListCommentAutomationLogsResponse = ({
|
|
|
12268
12282
|
commenterId?: string;
|
|
12269
12283
|
commenterName?: string;
|
|
12270
12284
|
commentText?: string;
|
|
12285
|
+
/**
|
|
12286
|
+
* DM outcome
|
|
12287
|
+
*/
|
|
12271
12288
|
status?: 'sent' | 'failed' | 'skipped';
|
|
12289
|
+
/**
|
|
12290
|
+
* DM error message if status is failed
|
|
12291
|
+
*/
|
|
12272
12292
|
error?: string;
|
|
12293
|
+
/**
|
|
12294
|
+
* Outcome of the optional public reply on the triggering comment. 'skipped' if no commentReply was configured or if the DM failed (the public reply is not attempted in that case).
|
|
12295
|
+
*/
|
|
12296
|
+
commentReplyStatus?: 'sent' | 'failed' | 'skipped';
|
|
12297
|
+
/**
|
|
12298
|
+
* Public-reply error message if commentReplyStatus is failed
|
|
12299
|
+
*/
|
|
12300
|
+
commentReplyError?: string;
|
|
12273
12301
|
createdAt?: string;
|
|
12274
12302
|
}>;
|
|
12275
12303
|
pagination?: {
|