reach-api-sdk 1.0.186 → 1.0.187

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.
@@ -42421,7 +42421,7 @@ type SurveyAnswerPage = {
42421
42421
  };
42422
42422
 
42423
42423
  /**
42424
- * Post model for survey answer updates.
42424
+ * Patch model for survey answer updates.
42425
42425
  */
42426
42426
  type SurveyAnswerPatch = {
42427
42427
  /**
@@ -42432,6 +42432,10 @@ type SurveyAnswerPatch = {
42432
42432
  * Gets or sets the Id.
42433
42433
  */
42434
42434
  id: string;
42435
+ /**
42436
+ * Gets or sets the survey question answer.
42437
+ */
42438
+ answer?: string | null;
42435
42439
  };
42436
42440
 
42437
42441
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "reach-api-sdk",
3
- "version": "1.0.186",
3
+ "version": "1.0.187",
4
4
  "description": "sdk for reach api",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -131190,8 +131190,12 @@ components:
131190
131190
  type: string
131191
131191
  description: Gets or sets the Id.
131192
131192
  format: uuid
131193
+ answer:
131194
+ type: string
131195
+ description: Gets or sets the survey question answer.
131196
+ nullable: true
131193
131197
  additionalProperties: false
131194
- description: Post model for survey answer updates.
131198
+ description: Patch model for survey answer updates.
131195
131199
  SurveyAnswerPost:
131196
131200
  required:
131197
131201
  - tenantId
@@ -4,7 +4,7 @@
4
4
  /* eslint-disable */
5
5
 
6
6
  /**
7
- * Post model for survey answer updates.
7
+ * Patch model for survey answer updates.
8
8
  */
9
9
  export type SurveyAnswerPatch = {
10
10
  /**
@@ -15,4 +15,8 @@ export type SurveyAnswerPatch = {
15
15
  * Gets or sets the Id.
16
16
  */
17
17
  id: string;
18
+ /**
19
+ * Gets or sets the survey question answer.
20
+ */
21
+ answer?: string | null;
18
22
  };