@parra/parra-js-sdk 0.3.463 → 0.3.465
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/ParraAPI.d.ts +2 -7
- package/package.json +1 -1
package/dist/ParraAPI.d.ts
CHANGED
@@ -4868,13 +4868,8 @@ declare class ParraAPI {
|
|
4868
4868
|
include?: string;
|
4869
4869
|
}, options?: Options) => Promise<Array<SocialAccount>>;
|
4870
4870
|
paginateFeedsForTenant: (tenant_id: string, query?: {
|
4871
|
-
|
4872
|
-
|
4873
|
-
$skip?: number;
|
4874
|
-
$orderby?: string;
|
4875
|
-
$filter?: string;
|
4876
|
-
$expand?: string;
|
4877
|
-
$search?: string;
|
4871
|
+
limit?: number;
|
4872
|
+
offset?: number;
|
4878
4873
|
}, options?: Options) => Promise<FeedCollectionResponse>;
|
4879
4874
|
createFeedForTenant: (tenant_id: string, body: CreateFeedRequestBody, options?: Options) => Promise<FeedView>;
|
4880
4875
|
paginateItemsForAppFeed: (tenant_id: string, application_id: string, feed_id_or_slug: string, query?: {
|