@parra/parra-js-sdk 0.3.445 → 0.3.447
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 -0
- package/dist/ParraAPI.js +4 -0
- package/package.json +1 -1
package/dist/ParraAPI.d.ts
CHANGED
@@ -4762,6 +4762,7 @@ declare class ParraAPI {
|
|
4762
4762
|
$expand?: string;
|
4763
4763
|
$search?: string;
|
4764
4764
|
}, options?: Options) => Promise<FeedbackFormSubmissionCollectionResponse>;
|
4765
|
+
deleteFeedbackFormResponseById: (tenant_id: string, feedback_form_id: string, feedback_form_response_id: string, options?: Options) => Promise<Response>;
|
4765
4766
|
createAnalyticEventTypeForTenantById: (tenant_id: string, body: CreateAnalyticEventTypeRequestBody, options?: Options) => Promise<AnalyticEventType>;
|
4766
4767
|
paginateAnalyticEventTypesForTenantById: (tenant_id: string, query?: {
|
4767
4768
|
$select?: string;
|
package/dist/ParraAPI.js
CHANGED
@@ -1206,6 +1206,10 @@ var ParraAPI = /** @class */ (function () {
|
|
1206
1206
|
if (options === void 0) { options = {}; }
|
1207
1207
|
return _this.http.execute("".concat(_this.options.baseUrl, "/v1/tenants/").concat(tenant_id, "/feedback/forms/").concat(feedback_form_id, "/responses"), __assign({ method: "get", query: query }, options));
|
1208
1208
|
};
|
1209
|
+
this.deleteFeedbackFormResponseById = function (tenant_id, feedback_form_id, feedback_form_response_id, options) {
|
1210
|
+
if (options === void 0) { options = {}; }
|
1211
|
+
return _this.http.execute("".concat(_this.options.baseUrl, "/v1/tenants/").concat(tenant_id, "/feedback/forms/").concat(feedback_form_id, "/responses/").concat(feedback_form_response_id), __assign({ method: "delete" }, options));
|
1212
|
+
};
|
1209
1213
|
this.createAnalyticEventTypeForTenantById = function (tenant_id, body, options) {
|
1210
1214
|
if (options === void 0) { options = {}; }
|
1211
1215
|
return _this.http.execute("".concat(_this.options.baseUrl, "/v1/tenants/").concat(tenant_id, "/analytics/events/types"), __assign({ method: "post", body: JSON.stringify(body), headers: {
|