@parra/parra-js-sdk 0.3.479 → 0.3.481
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 -0
- package/package.json +1 -1
package/dist/ParraAPI.d.ts
CHANGED
@@ -4930,6 +4930,8 @@ declare class ParraAPI {
|
|
4930
4930
|
paginateFeedbackFormsForTenantById: (tenant_id: string, query?: {
|
4931
4931
|
limit?: number;
|
4932
4932
|
offset?: number;
|
4933
|
+
sort?: string;
|
4934
|
+
search?: string;
|
4933
4935
|
}, options?: Options) => Promise<FeedbackFormCollectionResponse>;
|
4934
4936
|
createFeedbackFormForTenantById: (tenant_id: string, body?: CreateFeedbackFormRequestBody, options?: Options) => Promise<FeedbackForm>;
|
4935
4937
|
getFeedbackFormForTenantById: (tenant_id: string, feedback_form_id: string, query?: {
|