@parra/parra-js-sdk 0.3.444 → 0.3.446

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.
@@ -4079,6 +4079,7 @@ export interface UserDevice {
4079
4079
  ad_id?: string | null;
4080
4080
  manufacturer?: string | null;
4081
4081
  model?: string | null;
4082
+ has_push_token: boolean;
4082
4083
  }
4083
4084
  export type UserDeviceListResponse = Array<UserDevice>;
4084
4085
  export interface UserProperties {
@@ -4761,6 +4762,7 @@ declare class ParraAPI {
4761
4762
  $expand?: string;
4762
4763
  $search?: string;
4763
4764
  }, options?: Options) => Promise<FeedbackFormSubmissionCollectionResponse>;
4765
+ deleteFeedbackFormResponseById: (tenant_id: string, feedback_form_id: string, feedback_form_response_id: string, options?: Options) => Promise<Response>;
4764
4766
  createAnalyticEventTypeForTenantById: (tenant_id: string, body: CreateAnalyticEventTypeRequestBody, options?: Options) => Promise<AnalyticEventType>;
4765
4767
  paginateAnalyticEventTypesForTenantById: (tenant_id: string, query?: {
4766
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: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@parra/parra-js-sdk",
3
- "version": "0.3.444",
3
+ "version": "0.3.446",
4
4
  "description": "",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",