ch-admin-api-client-typescript 5.9.12 → 5.9.15

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.
@@ -13,9 +13,6 @@
13
13
  */
14
14
 
15
15
 
16
- // May contain unused imports in some cases
17
- // @ts-ignore
18
- import { SurveyResultElementModel } from './survey-result-element-model';
19
16
  // May contain unused imports in some cases
20
17
  // @ts-ignore
21
18
  import { SurveyResultUserModel } from './survey-result-user-model';
@@ -86,12 +83,6 @@ export interface SurveyResultItemModel {
86
83
  * @memberof SurveyResultItemModel
87
84
  */
88
85
  'createdDate'?: Date;
89
- /**
90
- *
91
- * @type {Array<SurveyResultElementModel>}
92
- * @memberof SurveyResultItemModel
93
- */
94
- 'elements'?: Array<SurveyResultElementModel> | null;
95
86
  /**
96
87
  *
97
88
  * @type {boolean}
@@ -88,16 +88,16 @@ export interface SurveyResultModel {
88
88
  'createdDate'?: Date;
89
89
  /**
90
90
  *
91
- * @type {Array<SurveyResultElementModel>}
91
+ * @type {boolean}
92
92
  * @memberof SurveyResultModel
93
93
  */
94
- 'elements'?: Array<SurveyResultElementModel> | null;
94
+ 'notificationSent'?: boolean;
95
95
  /**
96
96
  *
97
- * @type {boolean}
97
+ * @type {Array<SurveyResultElementModel>}
98
98
  * @memberof SurveyResultModel
99
99
  */
100
- 'notificationSent'?: boolean;
100
+ 'elements'?: Array<SurveyResultElementModel> | null;
101
101
  /**
102
102
  *
103
103
  * @type {string}
@@ -41,6 +41,12 @@ export interface UpdateDealCommand {
41
41
  * @memberof UpdateDealCommand
42
42
  */
43
43
  'description'?: string | null;
44
+ /**
45
+ *
46
+ * @type {string}
47
+ * @memberof UpdateDealCommand
48
+ */
49
+ 'overview'?: string | null;
44
50
  /**
45
51
  *
46
52
  * @type {MarketingType}