ch-admin-api-client-typescript 5.1.6 → 5.1.7
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/lib/models/survey-form-element-input-model.d.ts +6 -0
- package/lib/models/survey-form-element-input-model.d.ts.map +1 -1
- package/lib/models/survey-form-element-model.d.ts +6 -0
- package/lib/models/survey-form-element-model.d.ts.map +1 -1
- package/lib/models/survey-form-element-types.d.ts +2 -0
- package/lib/models/survey-form-element-types.d.ts.map +1 -1
- package/lib/models/survey-form-element-types.js +3 -1
- package/package.json +1 -1
- package/src/models/survey-form-element-input-model.ts +6 -0
- package/src/models/survey-form-element-model.ts +6 -0
- package/src/models/survey-form-element-types.ts +3 -1
|
@@ -65,6 +65,12 @@ export interface SurveyFormElementInputModel {
|
|
|
65
65
|
* @memberof SurveyFormElementInputModel
|
|
66
66
|
*/
|
|
67
67
|
'placeholder'?: string | null;
|
|
68
|
+
/**
|
|
69
|
+
*
|
|
70
|
+
* @type {string}
|
|
71
|
+
* @memberof SurveyFormElementInputModel
|
|
72
|
+
*/
|
|
73
|
+
'description'?: string | null;
|
|
68
74
|
/**
|
|
69
75
|
*
|
|
70
76
|
* @type {boolean}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"survey-form-element-input-model.d.ts","sourceRoot":"","sources":["../../src/models/survey-form-element-input-model.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAKH,OAAO,EAAE,iCAAiC,EAAE,MAAM,0CAA0C,CAAC;AAG7F,OAAO,EAAE,sBAAsB,EAAE,MAAM,6BAA6B,CAAC;AAErE;;;;GAIG;AACH,MAAM,WAAW,2BAA2B;IACxC;;;;OAIG;IACH,IAAI,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACrB;;;;OAIG;IACH,aAAa,CAAC,EAAE,sBAAsB,CAAC;IACvC;;;;OAIG;IACH,eAAe,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAChC;;;;OAIG;IACH,YAAY,CAAC,EAAE,OAAO,CAAC;IACvB;;;;OAIG;IACH,UAAU,CAAC,EAAE,OAAO,CAAC;IACrB;;;;OAIG;IACH,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB;;;;OAIG;IACH,MAAM,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACvB;;;;OAIG;IACH,aAAa,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC9B;;;;OAIG;IACH,aAAa,CAAC,EAAE,OAAO,CAAC;IACxB;;;;OAIG;IACH,SAAS,CAAC,EAAE,KAAK,CAAC,iCAAiC,CAAC,GAAG,IAAI,CAAC;CAC/D"}
|
|
1
|
+
{"version":3,"file":"survey-form-element-input-model.d.ts","sourceRoot":"","sources":["../../src/models/survey-form-element-input-model.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAKH,OAAO,EAAE,iCAAiC,EAAE,MAAM,0CAA0C,CAAC;AAG7F,OAAO,EAAE,sBAAsB,EAAE,MAAM,6BAA6B,CAAC;AAErE;;;;GAIG;AACH,MAAM,WAAW,2BAA2B;IACxC;;;;OAIG;IACH,IAAI,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACrB;;;;OAIG;IACH,aAAa,CAAC,EAAE,sBAAsB,CAAC;IACvC;;;;OAIG;IACH,eAAe,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAChC;;;;OAIG;IACH,YAAY,CAAC,EAAE,OAAO,CAAC;IACvB;;;;OAIG;IACH,UAAU,CAAC,EAAE,OAAO,CAAC;IACrB;;;;OAIG;IACH,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB;;;;OAIG;IACH,MAAM,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACvB;;;;OAIG;IACH,aAAa,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC9B;;;;OAIG;IACH,aAAa,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC9B;;;;OAIG;IACH,aAAa,CAAC,EAAE,OAAO,CAAC;IACxB;;;;OAIG;IACH,SAAS,CAAC,EAAE,KAAK,CAAC,iCAAiC,CAAC,GAAG,IAAI,CAAC;CAC/D"}
|
|
@@ -71,6 +71,12 @@ export interface SurveyFormElementModel {
|
|
|
71
71
|
* @memberof SurveyFormElementModel
|
|
72
72
|
*/
|
|
73
73
|
'placeholder'?: string | null;
|
|
74
|
+
/**
|
|
75
|
+
*
|
|
76
|
+
* @type {string}
|
|
77
|
+
* @memberof SurveyFormElementModel
|
|
78
|
+
*/
|
|
79
|
+
'description'?: string | null;
|
|
74
80
|
/**
|
|
75
81
|
*
|
|
76
82
|
* @type {Array<SurveyFormElementOptionModel>}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"survey-form-element-model.d.ts","sourceRoot":"","sources":["../../src/models/survey-form-element-model.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAKH,OAAO,EAAE,4BAA4B,EAAE,MAAM,oCAAoC,CAAC;AAGlF,OAAO,EAAE,sBAAsB,EAAE,MAAM,6BAA6B,CAAC;AAErE;;;;GAIG;AACH,MAAM,WAAW,sBAAsB;IACnC;;;;OAIG;IACH,IAAI,CAAC,EAAE,MAAM,CAAC;IACd;;;;OAIG;IACH,aAAa,CAAC,EAAE,sBAAsB,CAAC;IACvC;;;;OAIG;IACH,eAAe,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAChC;;;;OAIG;IACH,YAAY,CAAC,EAAE,OAAO,CAAC;IACvB;;;;OAIG;IACH,UAAU,CAAC,EAAE,OAAO,CAAC;IACrB;;;;OAIG;IACH,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB;;;;OAIG;IACH,cAAc,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC/B;;;;OAIG;IACH,MAAM,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACvB;;;;OAIG;IACH,aAAa,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC9B;;;;OAIG;IACH,SAAS,CAAC,EAAE,KAAK,CAAC,4BAA4B,CAAC,GAAG,IAAI,CAAC;CAC1D"}
|
|
1
|
+
{"version":3,"file":"survey-form-element-model.d.ts","sourceRoot":"","sources":["../../src/models/survey-form-element-model.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAKH,OAAO,EAAE,4BAA4B,EAAE,MAAM,oCAAoC,CAAC;AAGlF,OAAO,EAAE,sBAAsB,EAAE,MAAM,6BAA6B,CAAC;AAErE;;;;GAIG;AACH,MAAM,WAAW,sBAAsB;IACnC;;;;OAIG;IACH,IAAI,CAAC,EAAE,MAAM,CAAC;IACd;;;;OAIG;IACH,aAAa,CAAC,EAAE,sBAAsB,CAAC;IACvC;;;;OAIG;IACH,eAAe,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAChC;;;;OAIG;IACH,YAAY,CAAC,EAAE,OAAO,CAAC;IACvB;;;;OAIG;IACH,UAAU,CAAC,EAAE,OAAO,CAAC;IACrB;;;;OAIG;IACH,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB;;;;OAIG;IACH,cAAc,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC/B;;;;OAIG;IACH,MAAM,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACvB;;;;OAIG;IACH,aAAa,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC9B;;;;OAIG;IACH,aAAa,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC9B;;;;OAIG;IACH,SAAS,CAAC,EAAE,KAAK,CAAC,4BAA4B,CAAC,GAAG,IAAI,CAAC;CAC1D"}
|
|
@@ -27,6 +27,8 @@ export declare const SurveyFormElementTypes: {
|
|
|
27
27
|
readonly Checkbox: "Checkbox";
|
|
28
28
|
readonly Radio: "Radio";
|
|
29
29
|
readonly File: "File";
|
|
30
|
+
readonly Countries: "Countries";
|
|
31
|
+
readonly Phone: "Phone";
|
|
30
32
|
};
|
|
31
33
|
export type SurveyFormElementTypes = typeof SurveyFormElementTypes[keyof typeof SurveyFormElementTypes];
|
|
32
34
|
//# sourceMappingURL=survey-form-element-types.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"survey-form-element-types.d.ts","sourceRoot":"","sources":["../../src/models/survey-form-element-types.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAIH;;;;GAIG;AAEH,eAAO,MAAM,sBAAsB
|
|
1
|
+
{"version":3,"file":"survey-form-element-types.d.ts","sourceRoot":"","sources":["../../src/models/survey-form-element-types.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAIH;;;;GAIG;AAEH,eAAO,MAAM,sBAAsB;;;;;;;;;;;;;;;CAezB,CAAC;AAEX,MAAM,MAAM,sBAAsB,GAAG,OAAO,sBAAsB,CAAC,MAAM,OAAO,sBAAsB,CAAC,CAAC"}
|
package/package.json
CHANGED
|
@@ -74,6 +74,12 @@ export interface SurveyFormElementInputModel {
|
|
|
74
74
|
* @memberof SurveyFormElementInputModel
|
|
75
75
|
*/
|
|
76
76
|
'placeholder'?: string | null;
|
|
77
|
+
/**
|
|
78
|
+
*
|
|
79
|
+
* @type {string}
|
|
80
|
+
* @memberof SurveyFormElementInputModel
|
|
81
|
+
*/
|
|
82
|
+
'description'?: string | null;
|
|
77
83
|
/**
|
|
78
84
|
*
|
|
79
85
|
* @type {boolean}
|
|
@@ -80,6 +80,12 @@ export interface SurveyFormElementModel {
|
|
|
80
80
|
* @memberof SurveyFormElementModel
|
|
81
81
|
*/
|
|
82
82
|
'placeholder'?: string | null;
|
|
83
|
+
/**
|
|
84
|
+
*
|
|
85
|
+
* @type {string}
|
|
86
|
+
* @memberof SurveyFormElementModel
|
|
87
|
+
*/
|
|
88
|
+
'description'?: string | null;
|
|
83
89
|
/**
|
|
84
90
|
*
|
|
85
91
|
* @type {Array<SurveyFormElementOptionModel>}
|
|
@@ -32,7 +32,9 @@ export const SurveyFormElementTypes = {
|
|
|
32
32
|
Select: 'Select',
|
|
33
33
|
Checkbox: 'Checkbox',
|
|
34
34
|
Radio: 'Radio',
|
|
35
|
-
File: 'File'
|
|
35
|
+
File: 'File',
|
|
36
|
+
Countries: 'Countries',
|
|
37
|
+
Phone: 'Phone'
|
|
36
38
|
} as const;
|
|
37
39
|
|
|
38
40
|
export type SurveyFormElementTypes = typeof SurveyFormElementTypes[keyof typeof SurveyFormElementTypes];
|