@zernio/node 0.2.90 → 0.2.91
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 +4 -0
- package/dist/index.d.ts +4 -0
- package/package.json +1 -1
- package/src/generated/types.gen.ts +4 -0
package/dist/index.d.mts
CHANGED
|
@@ -5021,6 +5021,10 @@ type GetUsageStatsError = ({
|
|
|
5021
5021
|
});
|
|
5022
5022
|
type ListPostsData = {
|
|
5023
5023
|
query?: {
|
|
5024
|
+
/**
|
|
5025
|
+
* Filter posts to those published via a specific social account (24-char hex ObjectId).
|
|
5026
|
+
*/
|
|
5027
|
+
accountId?: string;
|
|
5024
5028
|
createdBy?: string;
|
|
5025
5029
|
dateFrom?: string;
|
|
5026
5030
|
dateTo?: string;
|
package/dist/index.d.ts
CHANGED
|
@@ -5021,6 +5021,10 @@ type GetUsageStatsError = ({
|
|
|
5021
5021
|
});
|
|
5022
5022
|
type ListPostsData = {
|
|
5023
5023
|
query?: {
|
|
5024
|
+
/**
|
|
5025
|
+
* Filter posts to those published via a specific social account (24-char hex ObjectId).
|
|
5026
|
+
*/
|
|
5027
|
+
accountId?: string;
|
|
5024
5028
|
createdBy?: string;
|
|
5025
5029
|
dateFrom?: string;
|
|
5026
5030
|
dateTo?: string;
|
package/package.json
CHANGED
|
@@ -4678,6 +4678,10 @@ export type GetUsageStatsError = ({
|
|
|
4678
4678
|
|
|
4679
4679
|
export type ListPostsData = {
|
|
4680
4680
|
query?: {
|
|
4681
|
+
/**
|
|
4682
|
+
* Filter posts to those published via a specific social account (24-char hex ObjectId).
|
|
4683
|
+
*/
|
|
4684
|
+
accountId?: string;
|
|
4681
4685
|
createdBy?: string;
|
|
4682
4686
|
dateFrom?: string;
|
|
4683
4687
|
dateTo?: string;
|