@parra/parra-js-sdk 0.2.122 → 0.2.123
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 +5 -3
- package/package.json +1 -1
package/dist/ParraAPI.d.ts
CHANGED
|
@@ -432,6 +432,8 @@ export interface FeedbackFormStub {
|
|
|
432
432
|
title: string;
|
|
433
433
|
description?: string | null;
|
|
434
434
|
}
|
|
435
|
+
export interface SubmitFeedbackFormResponseBody {
|
|
436
|
+
}
|
|
435
437
|
export interface FeedbackFormResponse {
|
|
436
438
|
id: string;
|
|
437
439
|
created_at: string;
|
|
@@ -1102,9 +1104,9 @@ declare class ParraAPI {
|
|
|
1102
1104
|
$expand?: string | undefined;
|
|
1103
1105
|
$search?: string | undefined;
|
|
1104
1106
|
} | undefined) => Promise<TenantUserCollectionResponse>;
|
|
1105
|
-
createFeedbackFormForTenantById: (tenant_id: string, body?: CreateFeedbackFormRequestBody | undefined) => Promise<
|
|
1106
|
-
getFeedbackFormForTenantById: (tenant_id: string, feedback_form_id: string) => Promise<
|
|
1107
|
-
getFormById: (feedback_form_id: string) => Promise<
|
|
1107
|
+
createFeedbackFormForTenantById: (tenant_id: string, body?: CreateFeedbackFormRequestBody | undefined) => Promise<FeedbackFormResponse>;
|
|
1108
|
+
getFeedbackFormForTenantById: (tenant_id: string, feedback_form_id: string) => Promise<FeedbackFormResponse>;
|
|
1109
|
+
getFormById: (feedback_form_id: string) => Promise<FeedbackFormResponse>;
|
|
1108
1110
|
submitFormById: (feedback_form_id: string, body?: FeedbackFormResponse | undefined) => Promise<Response>;
|
|
1109
1111
|
createQuestion: (body?: CreateQuestionRequestBody | undefined) => Promise<Question>;
|
|
1110
1112
|
paginateQuestions: (query?: {
|