@parra/parra-js-sdk 0.3.245 → 0.3.246
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 +1 -1
- package/dist/ParraAPI.js +1 -1
- package/package.json +1 -1
package/dist/ParraAPI.d.ts
CHANGED
|
@@ -3143,7 +3143,7 @@ declare class ParraAPI {
|
|
|
3143
3143
|
getFaqSectionById: (tenant_id: string, faq_view_id: string, faq_section_id: string, options?: Options) => Promise<FaqSection>;
|
|
3144
3144
|
updateFaqSectionById: (tenant_id: string, faq_view_id: string, faq_section_id: string, body: UpdateFaqSectionRequestBody, options?: Options) => Promise<FaqSection>;
|
|
3145
3145
|
deleteFaqSectionById: (tenant_id: string, faq_view_id: string, faq_section_id: string, options?: Options) => Promise<Response>;
|
|
3146
|
-
|
|
3146
|
+
paginateItemsForAppFeed: (tenant_id: string, application_id: string, feed_id_or_slug: string, query?: {
|
|
3147
3147
|
limit?: number;
|
|
3148
3148
|
offset?: number;
|
|
3149
3149
|
}, options?: Options) => Promise<FeedItemCollectionResponse>;
|
package/dist/ParraAPI.js
CHANGED
|
@@ -525,7 +525,7 @@ var ParraAPI = /** @class */ (function () {
|
|
|
525
525
|
if (options === void 0) { options = {}; }
|
|
526
526
|
return _this.http.execute("".concat(_this.options.baseUrl, "/v1/tenants/").concat(tenant_id, "/faqs/views/").concat(faq_view_id, "/sections/").concat(faq_section_id), __assign({ method: "delete" }, options));
|
|
527
527
|
};
|
|
528
|
-
this.
|
|
528
|
+
this.paginateItemsForAppFeed = function (tenant_id, application_id, feed_id_or_slug, query, options) {
|
|
529
529
|
if (options === void 0) { options = {}; }
|
|
530
530
|
return _this.http.execute("".concat(_this.options.baseUrl, "/v1/tenants/").concat(tenant_id, "/applications/").concat(application_id, "/feeds/").concat(feed_id_or_slug, "/items"), __assign({ method: "get", query: query }, options));
|
|
531
531
|
};
|