jamespot-front-business 1.3.7 → 1.3.8

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.
Files changed (212) hide show
  1. package/dist/src/index.d.ts +2 -0
  2. package/dist/src/store/admin/logs/logs.d.ts +97 -0
  3. package/dist/src/store/admin/logs/logs.mock.d.ts +64 -0
  4. package/dist/src/store/admin/logs/logsNavigation.d.ts +23 -0
  5. package/dist/src/store/admin/logs/logsObjects.d.ts +23 -0
  6. package/dist/src/store/admin/logs/logsSearch.d.ts +23 -0
  7. package/dist/src/store/admin/logs/types.d.ts +12 -0
  8. package/dist/src/store/animations/animationStats.d.ts +19 -0
  9. package/dist/src/store/animations/animationStatsCurrent.d.ts +17 -0
  10. package/dist/src/store/animations/animations.d.ts +150 -0
  11. package/dist/src/store/animations/animations.mock.d.ts +9 -0
  12. package/dist/src/store/animations/animationsList.d.ts +75 -0
  13. package/dist/src/store/animations/animationsRTHandlers.d.ts +3 -0
  14. package/dist/src/store/animations/animationsRTHandlers.mock.d.ts +4 -0
  15. package/dist/src/store/animations/types.d.ts +22 -0
  16. package/dist/src/store/application/application.d.ts +48 -0
  17. package/dist/src/store/application/application.mock.d.ts +4 -0
  18. package/dist/src/store/application/application.types.d.ts +5 -0
  19. package/dist/src/store/article/article.d.ts +3 -0
  20. package/dist/src/store/article/articleRTHandlers.d.ts +2 -0
  21. package/dist/src/store/article/articleRTHandlers.mock.d.ts +4 -0
  22. package/dist/src/store/assetReservation/assetReservation.d.ts +74 -0
  23. package/dist/src/store/assetReservation/assetReservation.types.d.ts +31 -0
  24. package/dist/src/store/assetReservation/bookableAsset.d.ts +15 -0
  25. package/dist/src/store/assetReservation/bookableAsset.mock.d.ts +2 -0
  26. package/dist/src/store/assetReservation/configuration.d.ts +25 -0
  27. package/dist/src/store/assetReservation/configuration.mock.d.ts +17 -0
  28. package/dist/src/store/assetReservation/reservation.d.ts +20 -0
  29. package/dist/src/store/assetReservation/reservation.mock.d.ts +2 -0
  30. package/dist/src/store/bookmark/bookmark.d.ts +472 -0
  31. package/dist/src/store/bookmark/bookmark.types.d.ts +31 -0
  32. package/dist/src/store/bookmark/bookmarkList.d.ts +226 -0
  33. package/dist/src/store/bookmark/bookmarkList.mock.d.ts +201 -0
  34. package/dist/src/store/bookmark/bookmarkRTHandlers.d.ts +5 -0
  35. package/dist/src/store/bookmark/bookmarkRTHandlers.mock.d.ts +94 -0
  36. package/dist/src/store/bookmark/editBookmarkForm.d.ts +52 -0
  37. package/dist/src/store/bookmark/editBookmarkForm.mock.d.ts +4 -0
  38. package/dist/src/store/calendar/calendar.d.ts +347 -0
  39. package/dist/src/store/calendar/calendar.types.d.ts +22 -0
  40. package/dist/src/store/calendar/calendarEvents.d.ts +164 -0
  41. package/dist/src/store/calendar/calendarEvents.mock.d.ts +6 -0
  42. package/dist/src/store/calendar/calendarRTHandlers.d.ts +5 -0
  43. package/dist/src/store/calendar/calendarRTHandlers.mock.d.ts +16 -0
  44. package/dist/src/store/comment/comment.d.ts +66 -0
  45. package/dist/src/store/comment/comment.types.d.ts +18 -0
  46. package/dist/src/store/comment/commentList.d.ts +52 -0
  47. package/dist/src/store/comment/commentList.mock.d.ts +2 -0
  48. package/dist/src/store/comment/commentRTHandlers.d.ts +3 -0
  49. package/dist/src/store/comment/commentRTHandlers.mock.d.ts +102 -0
  50. package/dist/src/store/comment/commentsLikeRTHandlers.d.ts +3 -0
  51. package/dist/src/store/comment/commentsLikeRTHandlers.mock.d.ts +96 -0
  52. package/dist/src/store/contentReport/contentReport.d.ts +89 -0
  53. package/dist/src/store/contentReport/contentReport.mock.d.ts +3 -0
  54. package/dist/src/store/contentReport/contentReport.types.d.ts +17 -0
  55. package/dist/src/store/extraBot/extraBot.const.d.ts +7 -0
  56. package/dist/src/store/extraBot/extraBot.d.ts +167 -0
  57. package/dist/src/store/extraBot/extraBot.mock.d.ts +8 -0
  58. package/dist/src/store/extraBot/extraBot.types.d.ts +21 -0
  59. package/dist/src/store/faq/faq.d.ts +67 -0
  60. package/dist/src/store/faq/faq.types.d.ts +14 -0
  61. package/dist/src/store/faq/faqCategories.d.ts +20 -0
  62. package/dist/src/store/faq/faqCategories.mock.d.ts +2 -0
  63. package/dist/src/store/faq/faqConfig.d.ts +26 -0
  64. package/dist/src/store/faq/faqConfig.mock.d.ts +3 -0
  65. package/dist/src/store/fileIntegrity/fileIntegrity.const.d.ts +7 -0
  66. package/dist/src/store/fileIntegrity/fileIntegrity.d.ts +116 -0
  67. package/dist/src/store/fileIntegrity/fileIntegrity.mock.d.ts +4 -0
  68. package/dist/src/store/fileIntegrity/fileIntegrity.types.d.ts +12 -0
  69. package/dist/src/store/hook/hook.d.ts +505 -0
  70. package/dist/src/store/hook/hook.mock.d.ts +2 -0
  71. package/dist/src/store/hook/hook.types.d.ts +4 -0
  72. package/dist/src/store/hook/utils/driveHook.utils.d.ts +2 -0
  73. package/dist/src/store/index.d.ts +30 -0
  74. package/dist/src/store/jland/jland.d.ts +130 -0
  75. package/dist/src/store/jland/jland.types.d.ts +39 -0
  76. package/dist/src/store/jland/mapCreate.d.ts +21 -0
  77. package/dist/src/store/jland/mapCreate.mock.d.ts +82 -0
  78. package/dist/src/store/jland/mapList.d.ts +93 -0
  79. package/dist/src/store/jland/mapList.mock.d.ts +105 -0
  80. package/dist/src/store/jland/utils.d.ts +3 -0
  81. package/dist/src/store/magicPad/magicPad.d.ts +59 -0
  82. package/dist/src/store/magicPad/magicPad.mock.d.ts +2 -0
  83. package/dist/src/store/magicPad/magicPad.types.d.ts +15 -0
  84. package/dist/src/store/mediaLibrary/mediaLibrary.const.d.ts +7 -0
  85. package/dist/src/store/mediaLibrary/mediaLibrary.d.ts +454 -0
  86. package/dist/src/store/mediaLibrary/mediaLibrary.types.d.ts +24 -0
  87. package/dist/src/store/mediaLibrary/medialibrary.mock.d.ts +72 -0
  88. package/dist/src/store/model/model.d.ts +51 -0
  89. package/dist/src/store/model/model.mock.d.ts +144 -0
  90. package/dist/src/store/model/model.types.d.ts +5 -0
  91. package/dist/src/store/network/network.d.ts +29 -0
  92. package/dist/src/store/network/network.types.d.ts +10 -0
  93. package/dist/src/store/network/networkStatics.d.ts +5 -0
  94. package/dist/src/store/platform/platform.d.ts +20 -0
  95. package/dist/src/store/platform/platform.types.d.ts +11 -0
  96. package/dist/src/store/platform/platformConfig.d.ts +5 -0
  97. package/dist/src/store/share/share.actions.d.ts +16 -0
  98. package/dist/src/store/share/share.d.ts +29 -0
  99. package/dist/src/store/share/share.mock.d.ts +2 -0
  100. package/dist/src/store/share/share.slice.d.ts +5 -0
  101. package/dist/src/store/share/share.types.d.ts +9 -0
  102. package/dist/src/store/socialActions/socialActions.d.ts +49 -0
  103. package/dist/src/store/socialActions/socialActions.mock.d.ts +2 -0
  104. package/dist/src/store/studio/StudioAppsList.d.ts +108 -0
  105. package/dist/src/store/studio/appListMocks/appInWorkNoValue.d.ts +4 -0
  106. package/dist/src/store/studio/appListMocks/studioSuspendedTransformed.d.ts +2624 -0
  107. package/dist/src/store/studio/currentStudioApp.d.ts +54 -0
  108. package/dist/src/store/studio/mocks/erikBug/erikList.mock.d.ts +587 -0
  109. package/dist/src/store/studio/mocks/erikBug/getActiviteCE.mock.d.ts +1028 -0
  110. package/dist/src/store/studio/mocks/erikBug/getConge.mock.d.ts +3 -0
  111. package/dist/src/store/studio/mocks/erikBug/getCongeSaved.mock.d.ts +11 -0
  112. package/dist/src/store/studio/mocks/erikBug/getEmploi.mock.d.ts +1022 -0
  113. package/dist/src/store/studio/mocks/erikBug/getEmploiSaved.mock.d.ts +11 -0
  114. package/dist/src/store/studio/mocks/erikBug/getEquipment.mock.d.ts +1020 -0
  115. package/dist/src/store/studio/mocks/erikBug/getEquipmentSaved.mock.d.ts +11 -0
  116. package/dist/src/store/studio/mocks/erikBug/getIncident.mock.d.ts +3 -0
  117. package/dist/src/store/studio/mocks/erikBug/getIncidentSaved.mock.d.ts +11 -0
  118. package/dist/src/store/studio/mocks/erikBug/getTelephoneSaved.mock.d.ts +11 -0
  119. package/dist/src/store/studio/mocks/erikBug/getTrad.mock.d.ts +996 -0
  120. package/dist/src/store/studio/mocks/erikBug/taxoList.mock.d.ts +16 -0
  121. package/dist/src/store/studio/mocks/publishtoAndHtmlIssues/StudioList.d.ts +47 -0
  122. package/dist/src/store/studio/mocks/publishtoAndHtmlIssues/app1.d.ts +1016 -0
  123. package/dist/src/store/studio/studio.d.ts +172 -0
  124. package/dist/src/store/studio/studio.types.d.ts +572 -0
  125. package/dist/src/store/studio/studioAppsList.mock.d.ts +896 -0
  126. package/dist/src/store/studio/utils/appToXml.d.ts +6 -0
  127. package/dist/src/store/studio/utils/cloneStudioAppFromExistingApp.d.ts +2 -0
  128. package/dist/src/store/studio/utils/createNewStudioApp.d.ts +11 -0
  129. package/dist/src/store/studio/utils/generateNewFormField.d.ts +2 -0
  130. package/dist/src/store/studio/utils/installedToV2/fieldBuilders.d.ts +219 -0
  131. package/dist/src/store/studio/utils/installedToV2/installedToV2.d.ts +13 -0
  132. package/dist/src/store/studio/utils/installedToV2/mocks/allFieldsInstalled.mock.d.ts +1300 -0
  133. package/dist/src/store/studio/utils/installedToV2/mocks/allFieldsInstalled2.mock.d.ts +1274 -0
  134. package/dist/src/store/studio/utils/installedToV2/mocks/allFieldsV2-2.mock.d.ts +2 -0
  135. package/dist/src/store/studio/utils/installedToV2/mocks/allFieldsV2.mock.d.ts +2 -0
  136. package/dist/src/store/studio/utils/installedToV2/mocks/baseAppAudienceInstalled.mock.d.ts +860 -0
  137. package/dist/src/store/studio/utils/installedToV2/mocks/baseAppAudienceV2.mock.d.ts +2 -0
  138. package/dist/src/store/studio/utils/installedToV2/mocks/baseAppFluxInstalled.mock.d.ts +774 -0
  139. package/dist/src/store/studio/utils/installedToV2/mocks/baseAppFluxV2.mock.d.ts +2 -0
  140. package/dist/src/store/studio/utils/installedToV2/mocks/baseAppInstalled.mock.d.ts +782 -0
  141. package/dist/src/store/studio/utils/installedToV2/mocks/baseAppV2.mock.d.ts +2 -0
  142. package/dist/src/store/studio/utils/installedToV2/mocks/selectCommentModif.mock.d.ts +2 -0
  143. package/dist/src/store/studio/utils/installedToV2/mocks/selectCommentModifInstalled.mock.d.ts +787 -0
  144. package/dist/src/store/studio/utils/installedToV2/mocks/simpleFieldsInstalled.mock.d.ts +852 -0
  145. package/dist/src/store/studio/utils/installedToV2/mocks/simpleFieldsV2.mock.d.ts +2 -0
  146. package/dist/src/store/studio/utils/installedToV2/mocks/specialApp.mock.d.ts +834 -0
  147. package/dist/src/store/studio/utils/installedToV2/mocks/wrongFixedAndHtmlData.d.ts +1308 -0
  148. package/dist/src/store/studio/utils/migrateJson.d.ts +3 -0
  149. package/dist/src/store/studio/utils/serverAppsToStudioApps.d.ts +3 -0
  150. package/dist/src/store/studio/utils/studioApplication.mock.d.ts +32 -0
  151. package/dist/src/store/teamWork/teamWork.d.ts +46 -0
  152. package/dist/src/store/teamWork/teamWorkRTHandlers.d.ts +3 -0
  153. package/dist/src/store/teamWork/teamWorkRTHandlers.mock.d.ts +2 -0
  154. package/dist/src/store/teamWork/teamWorkToDo.d.ts +20 -0
  155. package/dist/src/store/teamWork/teamWorkToDo.mock.d.ts +2 -0
  156. package/dist/src/store/teamWork/types.d.ts +10 -0
  157. package/dist/src/store/tinymce/tinyMCEOptions.d.ts +5 -0
  158. package/dist/src/store/tinymce/tinymce.d.ts +52 -0
  159. package/dist/src/store/tinymce/tinymce.types.d.ts +10 -0
  160. package/dist/src/store/toast/toast.d.ts +35 -0
  161. package/dist/src/store/toast/toast.types.d.ts +19 -0
  162. package/dist/src/store/tvDisplay/channelsList.d.ts +36 -0
  163. package/dist/src/store/tvDisplay/channelsList.mock.d.ts +3 -0
  164. package/dist/src/store/tvDisplay/tvDisplay.d.ts +54 -0
  165. package/dist/src/store/tvDisplay/tvDisplay.types.d.ts +12 -0
  166. package/dist/src/store/tvDisplay/utils.d.ts +2 -0
  167. package/dist/src/store/tvDisplay/utils.mock.d.ts +5 -0
  168. package/dist/src/store/user/user.types.d.ts +4 -0
  169. package/dist/src/store/user/userCurrent.d.ts +21 -0
  170. package/dist/src/store/user/userCurrent.mock.d.ts +36 -0
  171. package/dist/src/store/wedoc/wedoc.actions.d.ts +85 -0
  172. package/dist/src/store/wedoc/wedoc.d.ts +165 -0
  173. package/dist/src/store/wedoc/wedoc.mock.d.ts +3 -0
  174. package/dist/src/store/wedoc/wedoc.slice.d.ts +8 -0
  175. package/dist/src/store/wedoc/wedoc.types.d.ts +22 -0
  176. package/dist/src/store/widget/definitions/widget-article-attachment.d.ts +3 -0
  177. package/dist/src/store/widget/definitions/widget-article-button.d.ts +16 -0
  178. package/dist/src/store/widget/definitions/widget-article-gallery.d.ts +3 -0
  179. package/dist/src/store/widget/definitions/widget-article-image.d.ts +3 -0
  180. package/dist/src/store/widget/definitions/widget-article-slider.d.ts +3 -0
  181. package/dist/src/store/widget/definitions/widget-article-text.d.ts +3 -0
  182. package/dist/src/store/widget/definitions/widget-article-title.d.ts +3 -0
  183. package/dist/src/store/widget/definitions/widget-calendar-calDav.d.ts +3 -0
  184. package/dist/src/store/widget/definitions/widget-check-list.d.ts +3 -0
  185. package/dist/src/store/widget/definitions/widget-color.d.ts +3 -0
  186. package/dist/src/store/widget/definitions/widget-contact-cardDav.d.ts +3 -0
  187. package/dist/src/store/widget/definitions/widget-datasource-table.d.ts +3 -0
  188. package/dist/src/store/widget/definitions/widget-emails-imap.d.ts +3 -0
  189. package/dist/src/store/widget/definitions/widget-excel-datasource-table.d.ts +3 -0
  190. package/dist/src/store/widget/definitions/widget-extension.d.ts +3 -0
  191. package/dist/src/store/widget/definitions/widget-lucca-absence.d.ts +3 -0
  192. package/dist/src/store/widget/definitions/widget-presence.d.ts +3 -0
  193. package/dist/src/store/widget/definitions/widget-quick-survey.d.ts +3 -0
  194. package/dist/src/store/widget/definitions/widget-user-profile.d.ts +3 -0
  195. package/dist/src/store/widget/definitions/widget-welcome.d.ts +3 -0
  196. package/dist/src/store/widget/utils.d.ts +1 -0
  197. package/dist/src/store/widget/widget.const.d.ts +4 -0
  198. package/dist/src/store/widget/widget.d.ts +135 -0
  199. package/dist/src/store/widget/widget.def.d.ts +2 -0
  200. package/dist/src/store/widget/widget.factory.d.ts +4 -0
  201. package/dist/src/store/widget/widget.slice.d.ts +98 -0
  202. package/dist/src/store/widget/widgetRTHandlers.d.ts +3 -0
  203. package/dist/src/store/widgetEditor/widgetEditor.d.ts +31 -0
  204. package/dist/src/store/widgetEditor/widgetEditor.types.d.ts +16 -0
  205. package/dist/src/tests-utils/mockStore.d.ts +172 -0
  206. package/dist/src/tests-utils/testsUtils.d.ts +38 -0
  207. package/dist/src/types/index.d.ts +15 -0
  208. package/dist/src/types/oldStudio.d.ts +165 -0
  209. package/dist/src/types/store.d.ts +48 -0
  210. package/dist/src/types/utils.d.ts +18 -0
  211. package/dist/src/utils/errors.utils.d.ts +2 -0
  212. package/package.json +2 -2
@@ -0,0 +1,2624 @@
1
+ export declare const suspendedTransformedApp: {
2
+ idApp: string;
3
+ status: string;
4
+ studioVersion: number;
5
+ manifest: {
6
+ appShortName: string;
7
+ appName: string;
8
+ description: string;
9
+ author: string;
10
+ cssColor: string;
11
+ cssClass: {
12
+ label: string;
13
+ value: string;
14
+ };
15
+ version: number;
16
+ dateCreation: string;
17
+ checkAccess: boolean;
18
+ accessRightList: string;
19
+ attrExposed: never[];
20
+ viewSolr: string;
21
+ typeLabel: string;
22
+ articlesCount: number;
23
+ displayContentLegacyTable: boolean;
24
+ };
25
+ fields: ({
26
+ id: string;
27
+ type: string;
28
+ properties: ({
29
+ propertyType: string;
30
+ isRequired: boolean;
31
+ value: string;
32
+ checkBoxOptions?: never;
33
+ } | {
34
+ propertyType: string;
35
+ value: string;
36
+ isRequired?: never;
37
+ checkBoxOptions?: never;
38
+ } | {
39
+ propertyType: string;
40
+ value: boolean;
41
+ checkBoxOptions: {
42
+ label: string;
43
+ value: boolean;
44
+ }[];
45
+ isRequired?: never;
46
+ })[];
47
+ mandatory: boolean;
48
+ views: {
49
+ create: boolean;
50
+ popup: boolean;
51
+ edit: boolean;
52
+ list: boolean;
53
+ filter: boolean;
54
+ view: boolean;
55
+ };
56
+ isActive: boolean;
57
+ isFixed: boolean;
58
+ isOptional: boolean;
59
+ value: null;
60
+ isLockedValue: boolean;
61
+ } | {
62
+ id: string;
63
+ type: string;
64
+ properties: ({
65
+ propertyType: string;
66
+ isRequired: boolean;
67
+ value: string;
68
+ isOptionsEditorEnhanced?: never;
69
+ } | {
70
+ propertyType: string;
71
+ value: string;
72
+ isRequired?: never;
73
+ isOptionsEditorEnhanced?: never;
74
+ } | {
75
+ propertyType: string;
76
+ value: {
77
+ propertyOptions: {
78
+ title: string;
79
+ value: string;
80
+ }[];
81
+ canSelectMultiple: boolean;
82
+ userCanModifiyByComment: boolean;
83
+ defaultSelectOption: boolean;
84
+ defaultSelectOptionValue: undefined;
85
+ };
86
+ isOptionsEditorEnhanced: boolean;
87
+ isRequired?: never;
88
+ })[];
89
+ mandatory: boolean;
90
+ views: {
91
+ create: boolean;
92
+ popup: boolean;
93
+ edit: boolean;
94
+ list: boolean;
95
+ filter: boolean;
96
+ view: boolean;
97
+ };
98
+ isActive: boolean;
99
+ isFixed: boolean;
100
+ isOptional: boolean;
101
+ value: null;
102
+ isLockedValue: boolean;
103
+ } | {
104
+ id: string;
105
+ type: string;
106
+ properties: ({
107
+ propertyType: string;
108
+ isRequired: boolean;
109
+ value: string;
110
+ } | {
111
+ propertyType: string;
112
+ value: string;
113
+ isRequired?: never;
114
+ } | {
115
+ propertyType: string;
116
+ value: {
117
+ propertyOptions: {
118
+ title: string;
119
+ value: string;
120
+ }[];
121
+ };
122
+ isRequired?: never;
123
+ })[];
124
+ mandatory: boolean;
125
+ views: {
126
+ create: boolean;
127
+ popup: boolean;
128
+ edit: boolean;
129
+ list: boolean;
130
+ filter: boolean;
131
+ view: boolean;
132
+ };
133
+ isActive: boolean;
134
+ isFixed: boolean;
135
+ isOptional: boolean;
136
+ value: null;
137
+ isLockedValue: boolean;
138
+ } | {
139
+ id: string;
140
+ type: string;
141
+ properties: ({
142
+ propertyType: string;
143
+ isRequired: boolean;
144
+ value: string;
145
+ } | {
146
+ propertyType: string;
147
+ value: string;
148
+ isRequired?: never;
149
+ } | {
150
+ propertyType: string;
151
+ value: {
152
+ type: string;
153
+ id: number;
154
+ title: string;
155
+ };
156
+ isRequired?: never;
157
+ })[];
158
+ mandatory: boolean;
159
+ views: {
160
+ create: boolean;
161
+ popup: boolean;
162
+ edit: boolean;
163
+ list: boolean;
164
+ filter: boolean;
165
+ view: boolean;
166
+ };
167
+ isActive: boolean;
168
+ isFixed: boolean;
169
+ isOptional: boolean;
170
+ value: null;
171
+ isLockedValue: boolean;
172
+ } | {
173
+ id: string;
174
+ type: string;
175
+ properties: ({
176
+ propertyType: string;
177
+ isRequired: boolean;
178
+ value: string;
179
+ } | {
180
+ propertyType: string;
181
+ value: string;
182
+ isRequired?: never;
183
+ } | {
184
+ propertyType: string;
185
+ value: {
186
+ type: string;
187
+ label: string;
188
+ };
189
+ isRequired?: never;
190
+ })[];
191
+ mandatory: boolean;
192
+ views: {
193
+ create: boolean;
194
+ popup: boolean;
195
+ edit: boolean;
196
+ list: boolean;
197
+ filter: boolean;
198
+ view: boolean;
199
+ };
200
+ isActive: boolean;
201
+ isFixed: boolean;
202
+ isOptional: boolean;
203
+ value: null;
204
+ isLockedValue: boolean;
205
+ })[];
206
+ views: {
207
+ create: {
208
+ title: {
209
+ type: string;
210
+ properties: never[];
211
+ isUsed: boolean;
212
+ isOptional: boolean;
213
+ isLockedValue: boolean;
214
+ isFixed: boolean;
215
+ value: string;
216
+ pos: number;
217
+ };
218
+ UUID_MOCK: {
219
+ type: string;
220
+ properties: never[];
221
+ isUsed: boolean;
222
+ isOptional: boolean;
223
+ isLockedValue: boolean;
224
+ isFixed: boolean;
225
+ value: null;
226
+ pos: number;
227
+ };
228
+ description: {
229
+ type: string;
230
+ properties: ({
231
+ propertyType: string;
232
+ isRequired: boolean;
233
+ value: string;
234
+ } | {
235
+ propertyType: string;
236
+ value: string;
237
+ isRequired?: never;
238
+ })[];
239
+ isUsed: boolean;
240
+ isOptional: boolean;
241
+ isLockedValue: boolean;
242
+ isFixed: boolean;
243
+ value: null;
244
+ pos: number;
245
+ };
246
+ bafccaibedfiebhfaeccicbdighdg: {
247
+ type: string;
248
+ properties: ({
249
+ propertyType: string;
250
+ isRequired: boolean;
251
+ value: string;
252
+ } | {
253
+ propertyType: string;
254
+ value: string;
255
+ isRequired?: never;
256
+ })[];
257
+ isUsed: boolean;
258
+ isOptional: boolean;
259
+ isLockedValue: boolean;
260
+ isFixed: boolean;
261
+ value: null;
262
+ pos: number;
263
+ };
264
+ hgdbdggbcaeddbcbaaigcfgdeebdffh: {
265
+ type: string;
266
+ properties: ({
267
+ propertyType: string;
268
+ isRequired: boolean;
269
+ value: string;
270
+ } | {
271
+ propertyType: string;
272
+ value: string;
273
+ isRequired?: never;
274
+ })[];
275
+ isUsed: boolean;
276
+ isOptional: boolean;
277
+ isLockedValue: boolean;
278
+ isFixed: boolean;
279
+ value: null;
280
+ pos: number;
281
+ };
282
+ diehaadfeidieighfdebfegbeca: {
283
+ type: string;
284
+ properties: ({
285
+ propertyType: string;
286
+ isRequired: boolean;
287
+ value: string;
288
+ } | {
289
+ propertyType: string;
290
+ value: string;
291
+ isRequired?: never;
292
+ })[];
293
+ isUsed: boolean;
294
+ isOptional: boolean;
295
+ isLockedValue: boolean;
296
+ isFixed: boolean;
297
+ value: null;
298
+ pos: number;
299
+ };
300
+ cafdfgcfefdedeeaiddcdhahbbgbcc: {
301
+ type: string;
302
+ properties: ({
303
+ propertyType: string;
304
+ isRequired: boolean;
305
+ value: string;
306
+ } | {
307
+ propertyType: string;
308
+ value: string;
309
+ isRequired?: never;
310
+ })[];
311
+ isUsed: boolean;
312
+ isOptional: boolean;
313
+ isLockedValue: boolean;
314
+ isFixed: boolean;
315
+ value: null;
316
+ pos: number;
317
+ };
318
+ ffehbicgbbdibficeiehfddbdfhd: {
319
+ type: string;
320
+ properties: ({
321
+ propertyType: string;
322
+ isRequired: boolean;
323
+ value: string;
324
+ } | {
325
+ propertyType: string;
326
+ value: string;
327
+ isRequired?: never;
328
+ })[];
329
+ isUsed: boolean;
330
+ isOptional: boolean;
331
+ isLockedValue: boolean;
332
+ isFixed: boolean;
333
+ value: null;
334
+ pos: number;
335
+ };
336
+ ffeabcgcagddigaebbabafffbehcei: {
337
+ type: string;
338
+ properties: ({
339
+ propertyType: string;
340
+ isRequired: boolean;
341
+ value: string;
342
+ checkBoxOptions?: never;
343
+ } | {
344
+ propertyType: string;
345
+ value: string;
346
+ isRequired?: never;
347
+ checkBoxOptions?: never;
348
+ } | {
349
+ propertyType: string;
350
+ value: boolean;
351
+ checkBoxOptions: {
352
+ label: string;
353
+ value: boolean;
354
+ }[];
355
+ isRequired?: never;
356
+ })[];
357
+ isUsed: boolean;
358
+ isOptional: boolean;
359
+ isLockedValue: boolean;
360
+ isFixed: boolean;
361
+ value: null;
362
+ pos: number;
363
+ };
364
+ ggddgdgagcdbcdhecggfigfedage: {
365
+ type: string;
366
+ properties: ({
367
+ propertyType: string;
368
+ isRequired: boolean;
369
+ value: string;
370
+ } | {
371
+ propertyType: string;
372
+ value: string;
373
+ isRequired?: never;
374
+ })[];
375
+ isUsed: boolean;
376
+ isOptional: boolean;
377
+ isLockedValue: boolean;
378
+ isFixed: boolean;
379
+ value: null;
380
+ pos: number;
381
+ };
382
+ hgabdhfebcbdfbgiafdabddibediai: {
383
+ type: string;
384
+ properties: ({
385
+ propertyType: string;
386
+ isRequired: boolean;
387
+ value: string;
388
+ } | {
389
+ propertyType: string;
390
+ value: string;
391
+ isRequired?: never;
392
+ })[];
393
+ isUsed: boolean;
394
+ isOptional: boolean;
395
+ isLockedValue: boolean;
396
+ isFixed: boolean;
397
+ value: null;
398
+ pos: number;
399
+ };
400
+ dchbadgedbddhbhadhaeciaiighcebb: {
401
+ type: string;
402
+ properties: ({
403
+ propertyType: string;
404
+ isRequired: boolean;
405
+ value: string;
406
+ isOptionsEditorEnhanced?: never;
407
+ } | {
408
+ propertyType: string;
409
+ value: string;
410
+ isRequired?: never;
411
+ isOptionsEditorEnhanced?: never;
412
+ } | {
413
+ propertyType: string;
414
+ value: {
415
+ propertyOptions: {
416
+ title: string;
417
+ value: string;
418
+ }[];
419
+ canSelectMultiple: boolean;
420
+ userCanModifiyByComment: boolean;
421
+ defaultSelectOption: boolean;
422
+ defaultSelectOptionValue: undefined;
423
+ };
424
+ isOptionsEditorEnhanced: boolean;
425
+ isRequired?: never;
426
+ })[];
427
+ isUsed: boolean;
428
+ isOptional: boolean;
429
+ isLockedValue: boolean;
430
+ isFixed: boolean;
431
+ value: {
432
+ title: string;
433
+ value: string;
434
+ }[];
435
+ pos: number;
436
+ };
437
+ bhdibabchacddgbbachbaaeeadacci: {
438
+ type: string;
439
+ properties: ({
440
+ propertyType: string;
441
+ isRequired: boolean;
442
+ value: string;
443
+ } | {
444
+ propertyType: string;
445
+ value: string;
446
+ isRequired?: never;
447
+ } | {
448
+ propertyType: string;
449
+ value: {
450
+ propertyOptions: {
451
+ title: string;
452
+ value: string;
453
+ }[];
454
+ };
455
+ isRequired?: never;
456
+ })[];
457
+ isUsed: boolean;
458
+ isOptional: boolean;
459
+ isLockedValue: boolean;
460
+ isFixed: boolean;
461
+ value: null;
462
+ pos: number;
463
+ };
464
+ ehceaabcabhdbdabfgaiceedhfdha: {
465
+ type: string;
466
+ properties: ({
467
+ propertyType: string;
468
+ isRequired: boolean;
469
+ value: string;
470
+ } | {
471
+ propertyType: string;
472
+ value: string;
473
+ isRequired?: never;
474
+ })[];
475
+ isUsed: boolean;
476
+ isOptional: boolean;
477
+ isLockedValue: boolean;
478
+ isFixed: boolean;
479
+ value: null;
480
+ pos: number;
481
+ };
482
+ gbahdibbfbbcdefdbaacfcfdeaceafa: {
483
+ type: string;
484
+ properties: ({
485
+ propertyType: string;
486
+ isRequired: boolean;
487
+ value: string;
488
+ } | {
489
+ propertyType: string;
490
+ value: string;
491
+ isRequired?: never;
492
+ } | {
493
+ propertyType: string;
494
+ value: {
495
+ propertyOptions: {
496
+ title: string;
497
+ value: string;
498
+ }[];
499
+ };
500
+ isRequired?: never;
501
+ })[];
502
+ isUsed: boolean;
503
+ isOptional: boolean;
504
+ isLockedValue: boolean;
505
+ isFixed: boolean;
506
+ value: null;
507
+ pos: number;
508
+ };
509
+ ghcebibbaaeidcfadcddadhffbcfad: {
510
+ type: string;
511
+ properties: ({
512
+ propertyType: string;
513
+ isRequired: boolean;
514
+ value: string;
515
+ } | {
516
+ propertyType: string;
517
+ value: string;
518
+ isRequired?: never;
519
+ } | {
520
+ propertyType: string;
521
+ value: {
522
+ type: string;
523
+ id: number;
524
+ title: string;
525
+ };
526
+ isRequired?: never;
527
+ })[];
528
+ isUsed: boolean;
529
+ isOptional: boolean;
530
+ isLockedValue: boolean;
531
+ isFixed: boolean;
532
+ value: null;
533
+ pos: number;
534
+ };
535
+ bffehacfgeggdbiagfahahibhffbhc: {
536
+ type: string;
537
+ properties: {
538
+ propertyType: string;
539
+ isRequired: boolean;
540
+ value: string;
541
+ }[];
542
+ isUsed: boolean;
543
+ isOptional: boolean;
544
+ isLockedValue: boolean;
545
+ isFixed: boolean;
546
+ value: null;
547
+ pos: number;
548
+ };
549
+ iaddahagbcgfdeacaacigcefdfhiafhg: {
550
+ type: string;
551
+ properties: ({
552
+ propertyType: string;
553
+ isRequired: boolean;
554
+ value: string;
555
+ } | {
556
+ propertyType: string;
557
+ value: string;
558
+ isRequired?: never;
559
+ })[];
560
+ isUsed: boolean;
561
+ isOptional: boolean;
562
+ isLockedValue: boolean;
563
+ isFixed: boolean;
564
+ value: null;
565
+ pos: number;
566
+ };
567
+ bbeeecdaiaadacdiicdbabeeefebg: {
568
+ type: string;
569
+ properties: ({
570
+ propertyType: string;
571
+ isRequired: boolean;
572
+ value: string;
573
+ } | {
574
+ propertyType: string;
575
+ value: string;
576
+ isRequired?: never;
577
+ } | {
578
+ propertyType: string;
579
+ value: {
580
+ type: string;
581
+ label: string;
582
+ };
583
+ isRequired?: never;
584
+ })[];
585
+ isUsed: boolean;
586
+ isOptional: boolean;
587
+ isLockedValue: boolean;
588
+ isFixed: boolean;
589
+ value: null;
590
+ pos: number;
591
+ };
592
+ '93bc69e4-024e-443a-bce2-14840033e1d5': {
593
+ type: string;
594
+ properties: {
595
+ propertyType: string;
596
+ value: string;
597
+ }[];
598
+ isUsed: boolean;
599
+ isOptional: boolean;
600
+ isLockedValue: boolean;
601
+ isFixed: boolean;
602
+ value: string;
603
+ pos: number;
604
+ };
605
+ publishTo: {
606
+ type: string;
607
+ properties: never[];
608
+ isUsed: boolean;
609
+ isOptional: boolean;
610
+ isLockedValue: boolean;
611
+ isFixed: boolean;
612
+ value: {
613
+ id: string;
614
+ uri: string;
615
+ shortUri: string;
616
+ title: string;
617
+ name: string;
618
+ mainType: string;
619
+ type: string;
620
+ label: string;
621
+ cssClass: string;
622
+ cssColor: string;
623
+ class: string;
624
+ Pseudo: string;
625
+ _url: string;
626
+ }[];
627
+ pos: number;
628
+ };
629
+ sendAlert: {
630
+ type: string;
631
+ properties: never[];
632
+ isUsed: boolean;
633
+ isOptional: boolean;
634
+ isLockedValue: boolean;
635
+ isFixed: boolean;
636
+ value: boolean;
637
+ pos: number;
638
+ };
639
+ alertAuthor: {
640
+ type: string;
641
+ properties: never[];
642
+ isUsed: boolean;
643
+ isOptional: boolean;
644
+ isLockedValue: boolean;
645
+ isFixed: boolean;
646
+ value: boolean;
647
+ pos: number;
648
+ };
649
+ };
650
+ popup: {
651
+ title: {
652
+ type: string;
653
+ properties: never[];
654
+ isUsed: boolean;
655
+ isOptional: boolean;
656
+ isLockedValue: boolean;
657
+ isFixed: boolean;
658
+ value: null;
659
+ pos: number;
660
+ };
661
+ UUID_MOCK: {
662
+ type: string;
663
+ properties: never[];
664
+ isUsed: boolean;
665
+ isOptional: boolean;
666
+ isLockedValue: boolean;
667
+ isFixed: boolean;
668
+ value: null;
669
+ pos: number;
670
+ };
671
+ description: {
672
+ type: string;
673
+ properties: ({
674
+ propertyType: string;
675
+ isRequired: boolean;
676
+ value: string;
677
+ } | {
678
+ propertyType: string;
679
+ value: string;
680
+ isRequired?: never;
681
+ })[];
682
+ isUsed: boolean;
683
+ isOptional: boolean;
684
+ isLockedValue: boolean;
685
+ isFixed: boolean;
686
+ value: null;
687
+ pos: number;
688
+ };
689
+ bafccaibedfiebhfaeccicbdighdg: {
690
+ type: string;
691
+ properties: ({
692
+ propertyType: string;
693
+ isRequired: boolean;
694
+ value: string;
695
+ } | {
696
+ propertyType: string;
697
+ value: string;
698
+ isRequired?: never;
699
+ })[];
700
+ isUsed: boolean;
701
+ isOptional: boolean;
702
+ isLockedValue: boolean;
703
+ isFixed: boolean;
704
+ value: null;
705
+ pos: number;
706
+ };
707
+ hgdbdggbcaeddbcbaaigcfgdeebdffh: {
708
+ type: string;
709
+ properties: ({
710
+ propertyType: string;
711
+ isRequired: boolean;
712
+ value: string;
713
+ } | {
714
+ propertyType: string;
715
+ value: string;
716
+ isRequired?: never;
717
+ })[];
718
+ isUsed: boolean;
719
+ isOptional: boolean;
720
+ isLockedValue: boolean;
721
+ isFixed: boolean;
722
+ value: null;
723
+ pos: number;
724
+ };
725
+ diehaadfeidieighfdebfegbeca: {
726
+ type: string;
727
+ properties: ({
728
+ propertyType: string;
729
+ isRequired: boolean;
730
+ value: string;
731
+ } | {
732
+ propertyType: string;
733
+ value: string;
734
+ isRequired?: never;
735
+ })[];
736
+ isUsed: boolean;
737
+ isOptional: boolean;
738
+ isLockedValue: boolean;
739
+ isFixed: boolean;
740
+ value: null;
741
+ pos: number;
742
+ };
743
+ cafdfgcfefdedeeaiddcdhahbbgbcc: {
744
+ type: string;
745
+ properties: ({
746
+ propertyType: string;
747
+ isRequired: boolean;
748
+ value: string;
749
+ } | {
750
+ propertyType: string;
751
+ value: string;
752
+ isRequired?: never;
753
+ })[];
754
+ isUsed: boolean;
755
+ isOptional: boolean;
756
+ isLockedValue: boolean;
757
+ isFixed: boolean;
758
+ value: null;
759
+ pos: number;
760
+ };
761
+ ffehbicgbbdibficeiehfddbdfhd: {
762
+ type: string;
763
+ properties: ({
764
+ propertyType: string;
765
+ isRequired: boolean;
766
+ value: string;
767
+ } | {
768
+ propertyType: string;
769
+ value: string;
770
+ isRequired?: never;
771
+ })[];
772
+ isUsed: boolean;
773
+ isOptional: boolean;
774
+ isLockedValue: boolean;
775
+ isFixed: boolean;
776
+ value: null;
777
+ pos: number;
778
+ };
779
+ ffeabcgcagddigaebbabafffbehcei: {
780
+ type: string;
781
+ properties: ({
782
+ propertyType: string;
783
+ isRequired: boolean;
784
+ value: string;
785
+ checkBoxOptions?: never;
786
+ } | {
787
+ propertyType: string;
788
+ value: string;
789
+ isRequired?: never;
790
+ checkBoxOptions?: never;
791
+ } | {
792
+ propertyType: string;
793
+ value: boolean;
794
+ checkBoxOptions: {
795
+ label: string;
796
+ value: boolean;
797
+ }[];
798
+ isRequired?: never;
799
+ })[];
800
+ isUsed: boolean;
801
+ isOptional: boolean;
802
+ isLockedValue: boolean;
803
+ isFixed: boolean;
804
+ value: null;
805
+ pos: number;
806
+ };
807
+ ggddgdgagcdbcdhecggfigfedage: {
808
+ type: string;
809
+ properties: ({
810
+ propertyType: string;
811
+ isRequired: boolean;
812
+ value: string;
813
+ } | {
814
+ propertyType: string;
815
+ value: string;
816
+ isRequired?: never;
817
+ })[];
818
+ isUsed: boolean;
819
+ isOptional: boolean;
820
+ isLockedValue: boolean;
821
+ isFixed: boolean;
822
+ value: null;
823
+ pos: number;
824
+ };
825
+ hgabdhfebcbdfbgiafdabddibediai: {
826
+ type: string;
827
+ properties: ({
828
+ propertyType: string;
829
+ isRequired: boolean;
830
+ value: string;
831
+ } | {
832
+ propertyType: string;
833
+ value: string;
834
+ isRequired?: never;
835
+ })[];
836
+ isUsed: boolean;
837
+ isOptional: boolean;
838
+ isLockedValue: boolean;
839
+ isFixed: boolean;
840
+ value: null;
841
+ pos: number;
842
+ };
843
+ dchbadgedbddhbhadhaeciaiighcebb: {
844
+ type: string;
845
+ properties: ({
846
+ propertyType: string;
847
+ isRequired: boolean;
848
+ value: string;
849
+ isOptionsEditorEnhanced?: never;
850
+ } | {
851
+ propertyType: string;
852
+ value: string;
853
+ isRequired?: never;
854
+ isOptionsEditorEnhanced?: never;
855
+ } | {
856
+ propertyType: string;
857
+ value: {
858
+ propertyOptions: {
859
+ title: string;
860
+ value: string;
861
+ }[];
862
+ canSelectMultiple: boolean;
863
+ userCanModifiyByComment: boolean;
864
+ defaultSelectOption: boolean;
865
+ defaultSelectOptionValue: undefined;
866
+ };
867
+ isOptionsEditorEnhanced: boolean;
868
+ isRequired?: never;
869
+ })[];
870
+ isUsed: boolean;
871
+ isOptional: boolean;
872
+ isLockedValue: boolean;
873
+ isFixed: boolean;
874
+ value: null;
875
+ pos: number;
876
+ };
877
+ bhdibabchacddgbbachbaaeeadacci: {
878
+ type: string;
879
+ properties: ({
880
+ propertyType: string;
881
+ isRequired: boolean;
882
+ value: string;
883
+ } | {
884
+ propertyType: string;
885
+ value: string;
886
+ isRequired?: never;
887
+ } | {
888
+ propertyType: string;
889
+ value: {
890
+ propertyOptions: {
891
+ title: string;
892
+ value: string;
893
+ }[];
894
+ };
895
+ isRequired?: never;
896
+ })[];
897
+ isUsed: boolean;
898
+ isOptional: boolean;
899
+ isLockedValue: boolean;
900
+ isFixed: boolean;
901
+ value: null;
902
+ pos: number;
903
+ };
904
+ ehceaabcabhdbdabfgaiceedhfdha: {
905
+ type: string;
906
+ properties: ({
907
+ propertyType: string;
908
+ isRequired: boolean;
909
+ value: string;
910
+ } | {
911
+ propertyType: string;
912
+ value: string;
913
+ isRequired?: never;
914
+ })[];
915
+ isUsed: boolean;
916
+ isOptional: boolean;
917
+ isLockedValue: boolean;
918
+ isFixed: boolean;
919
+ value: null;
920
+ pos: number;
921
+ };
922
+ gbahdibbfbbcdefdbaacfcfdeaceafa: {
923
+ type: string;
924
+ properties: ({
925
+ propertyType: string;
926
+ isRequired: boolean;
927
+ value: string;
928
+ } | {
929
+ propertyType: string;
930
+ value: string;
931
+ isRequired?: never;
932
+ } | {
933
+ propertyType: string;
934
+ value: {
935
+ propertyOptions: {
936
+ title: string;
937
+ value: string;
938
+ }[];
939
+ };
940
+ isRequired?: never;
941
+ })[];
942
+ isUsed: boolean;
943
+ isOptional: boolean;
944
+ isLockedValue: boolean;
945
+ isFixed: boolean;
946
+ value: null;
947
+ pos: number;
948
+ };
949
+ ghcebibbaaeidcfadcddadhffbcfad: {
950
+ type: string;
951
+ properties: ({
952
+ propertyType: string;
953
+ isRequired: boolean;
954
+ value: string;
955
+ } | {
956
+ propertyType: string;
957
+ value: string;
958
+ isRequired?: never;
959
+ } | {
960
+ propertyType: string;
961
+ value: {
962
+ type: string;
963
+ id: number;
964
+ title: string;
965
+ };
966
+ isRequired?: never;
967
+ })[];
968
+ isUsed: boolean;
969
+ isOptional: boolean;
970
+ isLockedValue: boolean;
971
+ isFixed: boolean;
972
+ value: null;
973
+ pos: number;
974
+ };
975
+ bffehacfgeggdbiagfahahibhffbhc: {
976
+ type: string;
977
+ properties: {
978
+ propertyType: string;
979
+ isRequired: boolean;
980
+ value: string;
981
+ }[];
982
+ isUsed: boolean;
983
+ isOptional: boolean;
984
+ isLockedValue: boolean;
985
+ isFixed: boolean;
986
+ value: null;
987
+ pos: number;
988
+ };
989
+ iaddahagbcgfdeacaacigcefdfhiafhg: {
990
+ type: string;
991
+ properties: ({
992
+ propertyType: string;
993
+ isRequired: boolean;
994
+ value: string;
995
+ } | {
996
+ propertyType: string;
997
+ value: string;
998
+ isRequired?: never;
999
+ })[];
1000
+ isUsed: boolean;
1001
+ isOptional: boolean;
1002
+ isLockedValue: boolean;
1003
+ isFixed: boolean;
1004
+ value: null;
1005
+ pos: number;
1006
+ };
1007
+ bbeeecdaiaadacdiicdbabeeefebg: {
1008
+ type: string;
1009
+ properties: ({
1010
+ propertyType: string;
1011
+ isRequired: boolean;
1012
+ value: string;
1013
+ } | {
1014
+ propertyType: string;
1015
+ value: string;
1016
+ isRequired?: never;
1017
+ } | {
1018
+ propertyType: string;
1019
+ value: {
1020
+ type: string;
1021
+ label: string;
1022
+ };
1023
+ isRequired?: never;
1024
+ })[];
1025
+ isUsed: boolean;
1026
+ isOptional: boolean;
1027
+ isLockedValue: boolean;
1028
+ isFixed: boolean;
1029
+ value: null;
1030
+ pos: number;
1031
+ };
1032
+ '93bc69e4-024e-443a-bce2-14840033e1d5': {
1033
+ type: string;
1034
+ properties: {
1035
+ propertyType: string;
1036
+ value: string;
1037
+ }[];
1038
+ isUsed: boolean;
1039
+ isOptional: boolean;
1040
+ isLockedValue: boolean;
1041
+ isFixed: boolean;
1042
+ value: string;
1043
+ pos: number;
1044
+ };
1045
+ publishTo: {
1046
+ type: string;
1047
+ properties: never[];
1048
+ isUsed: boolean;
1049
+ isOptional: boolean;
1050
+ isLockedValue: boolean;
1051
+ isFixed: boolean;
1052
+ value: never[];
1053
+ pos: number;
1054
+ };
1055
+ };
1056
+ edit: {
1057
+ title: {
1058
+ type: string;
1059
+ properties: never[];
1060
+ isUsed: boolean;
1061
+ isOptional: boolean;
1062
+ isLockedValue: boolean;
1063
+ isFixed: boolean;
1064
+ value: null;
1065
+ pos: number;
1066
+ };
1067
+ UUID_MOCK: {
1068
+ type: string;
1069
+ properties: never[];
1070
+ isUsed: boolean;
1071
+ isOptional: boolean;
1072
+ isLockedValue: boolean;
1073
+ isFixed: boolean;
1074
+ value: null;
1075
+ pos: number;
1076
+ };
1077
+ description: {
1078
+ type: string;
1079
+ properties: ({
1080
+ propertyType: string;
1081
+ isRequired: boolean;
1082
+ value: string;
1083
+ } | {
1084
+ propertyType: string;
1085
+ value: string;
1086
+ isRequired?: never;
1087
+ })[];
1088
+ isUsed: boolean;
1089
+ isOptional: boolean;
1090
+ isLockedValue: boolean;
1091
+ isFixed: boolean;
1092
+ value: null;
1093
+ pos: number;
1094
+ };
1095
+ bafccaibedfiebhfaeccicbdighdg: {
1096
+ type: string;
1097
+ properties: ({
1098
+ propertyType: string;
1099
+ isRequired: boolean;
1100
+ value: string;
1101
+ } | {
1102
+ propertyType: string;
1103
+ value: string;
1104
+ isRequired?: never;
1105
+ })[];
1106
+ isUsed: boolean;
1107
+ isOptional: boolean;
1108
+ isLockedValue: boolean;
1109
+ isFixed: boolean;
1110
+ value: null;
1111
+ pos: number;
1112
+ };
1113
+ hgdbdggbcaeddbcbaaigcfgdeebdffh: {
1114
+ type: string;
1115
+ properties: ({
1116
+ propertyType: string;
1117
+ isRequired: boolean;
1118
+ value: string;
1119
+ } | {
1120
+ propertyType: string;
1121
+ value: string;
1122
+ isRequired?: never;
1123
+ })[];
1124
+ isUsed: boolean;
1125
+ isOptional: boolean;
1126
+ isLockedValue: boolean;
1127
+ isFixed: boolean;
1128
+ value: null;
1129
+ pos: number;
1130
+ };
1131
+ diehaadfeidieighfdebfegbeca: {
1132
+ type: string;
1133
+ properties: ({
1134
+ propertyType: string;
1135
+ isRequired: boolean;
1136
+ value: string;
1137
+ } | {
1138
+ propertyType: string;
1139
+ value: string;
1140
+ isRequired?: never;
1141
+ })[];
1142
+ isUsed: boolean;
1143
+ isOptional: boolean;
1144
+ isLockedValue: boolean;
1145
+ isFixed: boolean;
1146
+ value: null;
1147
+ pos: number;
1148
+ };
1149
+ cafdfgcfefdedeeaiddcdhahbbgbcc: {
1150
+ type: string;
1151
+ properties: ({
1152
+ propertyType: string;
1153
+ isRequired: boolean;
1154
+ value: string;
1155
+ } | {
1156
+ propertyType: string;
1157
+ value: string;
1158
+ isRequired?: never;
1159
+ })[];
1160
+ isUsed: boolean;
1161
+ isOptional: boolean;
1162
+ isLockedValue: boolean;
1163
+ isFixed: boolean;
1164
+ value: null;
1165
+ pos: number;
1166
+ };
1167
+ ffehbicgbbdibficeiehfddbdfhd: {
1168
+ type: string;
1169
+ properties: ({
1170
+ propertyType: string;
1171
+ isRequired: boolean;
1172
+ value: string;
1173
+ } | {
1174
+ propertyType: string;
1175
+ value: string;
1176
+ isRequired?: never;
1177
+ })[];
1178
+ isUsed: boolean;
1179
+ isOptional: boolean;
1180
+ isLockedValue: boolean;
1181
+ isFixed: boolean;
1182
+ value: null;
1183
+ pos: number;
1184
+ };
1185
+ ffeabcgcagddigaebbabafffbehcei: {
1186
+ type: string;
1187
+ properties: ({
1188
+ propertyType: string;
1189
+ isRequired: boolean;
1190
+ value: string;
1191
+ checkBoxOptions?: never;
1192
+ } | {
1193
+ propertyType: string;
1194
+ value: string;
1195
+ isRequired?: never;
1196
+ checkBoxOptions?: never;
1197
+ } | {
1198
+ propertyType: string;
1199
+ value: boolean;
1200
+ checkBoxOptions: {
1201
+ label: string;
1202
+ value: boolean;
1203
+ }[];
1204
+ isRequired?: never;
1205
+ })[];
1206
+ isUsed: boolean;
1207
+ isOptional: boolean;
1208
+ isLockedValue: boolean;
1209
+ isFixed: boolean;
1210
+ value: null;
1211
+ pos: number;
1212
+ };
1213
+ ggddgdgagcdbcdhecggfigfedage: {
1214
+ type: string;
1215
+ properties: ({
1216
+ propertyType: string;
1217
+ isRequired: boolean;
1218
+ value: string;
1219
+ } | {
1220
+ propertyType: string;
1221
+ value: string;
1222
+ isRequired?: never;
1223
+ })[];
1224
+ isUsed: boolean;
1225
+ isOptional: boolean;
1226
+ isLockedValue: boolean;
1227
+ isFixed: boolean;
1228
+ value: null;
1229
+ pos: number;
1230
+ };
1231
+ hgabdhfebcbdfbgiafdabddibediai: {
1232
+ type: string;
1233
+ properties: ({
1234
+ propertyType: string;
1235
+ isRequired: boolean;
1236
+ value: string;
1237
+ } | {
1238
+ propertyType: string;
1239
+ value: string;
1240
+ isRequired?: never;
1241
+ })[];
1242
+ isUsed: boolean;
1243
+ isOptional: boolean;
1244
+ isLockedValue: boolean;
1245
+ isFixed: boolean;
1246
+ value: null;
1247
+ pos: number;
1248
+ };
1249
+ dchbadgedbddhbhadhaeciaiighcebb: {
1250
+ type: string;
1251
+ properties: ({
1252
+ propertyType: string;
1253
+ isRequired: boolean;
1254
+ value: string;
1255
+ isOptionsEditorEnhanced?: never;
1256
+ } | {
1257
+ propertyType: string;
1258
+ value: string;
1259
+ isRequired?: never;
1260
+ isOptionsEditorEnhanced?: never;
1261
+ } | {
1262
+ propertyType: string;
1263
+ value: {
1264
+ propertyOptions: {
1265
+ title: string;
1266
+ value: string;
1267
+ }[];
1268
+ canSelectMultiple: boolean;
1269
+ userCanModifiyByComment: boolean;
1270
+ defaultSelectOption: boolean;
1271
+ defaultSelectOptionValue: undefined;
1272
+ };
1273
+ isOptionsEditorEnhanced: boolean;
1274
+ isRequired?: never;
1275
+ })[];
1276
+ isUsed: boolean;
1277
+ isOptional: boolean;
1278
+ isLockedValue: boolean;
1279
+ isFixed: boolean;
1280
+ value: null;
1281
+ pos: number;
1282
+ };
1283
+ bhdibabchacddgbbachbaaeeadacci: {
1284
+ type: string;
1285
+ properties: ({
1286
+ propertyType: string;
1287
+ isRequired: boolean;
1288
+ value: string;
1289
+ } | {
1290
+ propertyType: string;
1291
+ value: string;
1292
+ isRequired?: never;
1293
+ } | {
1294
+ propertyType: string;
1295
+ value: {
1296
+ propertyOptions: {
1297
+ title: string;
1298
+ value: string;
1299
+ }[];
1300
+ };
1301
+ isRequired?: never;
1302
+ })[];
1303
+ isUsed: boolean;
1304
+ isOptional: boolean;
1305
+ isLockedValue: boolean;
1306
+ isFixed: boolean;
1307
+ value: null;
1308
+ pos: number;
1309
+ };
1310
+ ehceaabcabhdbdabfgaiceedhfdha: {
1311
+ type: string;
1312
+ properties: ({
1313
+ propertyType: string;
1314
+ isRequired: boolean;
1315
+ value: string;
1316
+ } | {
1317
+ propertyType: string;
1318
+ value: string;
1319
+ isRequired?: never;
1320
+ })[];
1321
+ isUsed: boolean;
1322
+ isOptional: boolean;
1323
+ isLockedValue: boolean;
1324
+ isFixed: boolean;
1325
+ value: null;
1326
+ pos: number;
1327
+ };
1328
+ gbahdibbfbbcdefdbaacfcfdeaceafa: {
1329
+ type: string;
1330
+ properties: ({
1331
+ propertyType: string;
1332
+ isRequired: boolean;
1333
+ value: string;
1334
+ } | {
1335
+ propertyType: string;
1336
+ value: string;
1337
+ isRequired?: never;
1338
+ } | {
1339
+ propertyType: string;
1340
+ value: {
1341
+ propertyOptions: {
1342
+ title: string;
1343
+ value: string;
1344
+ }[];
1345
+ };
1346
+ isRequired?: never;
1347
+ })[];
1348
+ isUsed: boolean;
1349
+ isOptional: boolean;
1350
+ isLockedValue: boolean;
1351
+ isFixed: boolean;
1352
+ value: null;
1353
+ pos: number;
1354
+ };
1355
+ ghcebibbaaeidcfadcddadhffbcfad: {
1356
+ type: string;
1357
+ properties: ({
1358
+ propertyType: string;
1359
+ isRequired: boolean;
1360
+ value: string;
1361
+ } | {
1362
+ propertyType: string;
1363
+ value: string;
1364
+ isRequired?: never;
1365
+ } | {
1366
+ propertyType: string;
1367
+ value: {
1368
+ type: string;
1369
+ id: number;
1370
+ title: string;
1371
+ };
1372
+ isRequired?: never;
1373
+ })[];
1374
+ isUsed: boolean;
1375
+ isOptional: boolean;
1376
+ isLockedValue: boolean;
1377
+ isFixed: boolean;
1378
+ value: null;
1379
+ pos: number;
1380
+ };
1381
+ bffehacfgeggdbiagfahahibhffbhc: {
1382
+ type: string;
1383
+ properties: {
1384
+ propertyType: string;
1385
+ isRequired: boolean;
1386
+ value: string;
1387
+ }[];
1388
+ isUsed: boolean;
1389
+ isOptional: boolean;
1390
+ isLockedValue: boolean;
1391
+ isFixed: boolean;
1392
+ value: null;
1393
+ pos: number;
1394
+ };
1395
+ iaddahagbcgfdeacaacigcefdfhiafhg: {
1396
+ type: string;
1397
+ properties: ({
1398
+ propertyType: string;
1399
+ isRequired: boolean;
1400
+ value: string;
1401
+ } | {
1402
+ propertyType: string;
1403
+ value: string;
1404
+ isRequired?: never;
1405
+ })[];
1406
+ isUsed: boolean;
1407
+ isOptional: boolean;
1408
+ isLockedValue: boolean;
1409
+ isFixed: boolean;
1410
+ value: null;
1411
+ pos: number;
1412
+ };
1413
+ bbeeecdaiaadacdiicdbabeeefebg: {
1414
+ type: string;
1415
+ properties: ({
1416
+ propertyType: string;
1417
+ isRequired: boolean;
1418
+ value: string;
1419
+ } | {
1420
+ propertyType: string;
1421
+ value: string;
1422
+ isRequired?: never;
1423
+ } | {
1424
+ propertyType: string;
1425
+ value: {
1426
+ type: string;
1427
+ label: string;
1428
+ };
1429
+ isRequired?: never;
1430
+ })[];
1431
+ isUsed: boolean;
1432
+ isOptional: boolean;
1433
+ isLockedValue: boolean;
1434
+ isFixed: boolean;
1435
+ value: null;
1436
+ pos: number;
1437
+ };
1438
+ '93bc69e4-024e-443a-bce2-14840033e1d5': {
1439
+ type: string;
1440
+ properties: {
1441
+ propertyType: string;
1442
+ value: string;
1443
+ }[];
1444
+ isUsed: boolean;
1445
+ isOptional: boolean;
1446
+ isLockedValue: boolean;
1447
+ isFixed: boolean;
1448
+ value: string;
1449
+ pos: number;
1450
+ };
1451
+ publishTo: {
1452
+ type: string;
1453
+ properties: never[];
1454
+ isUsed: boolean;
1455
+ isOptional: boolean;
1456
+ isLockedValue: boolean;
1457
+ isFixed: boolean;
1458
+ value: never[];
1459
+ pos: number;
1460
+ };
1461
+ };
1462
+ filter: {
1463
+ title: {
1464
+ type: string;
1465
+ properties: never[];
1466
+ isUsed: boolean;
1467
+ isOptional: boolean;
1468
+ isLockedValue: boolean;
1469
+ isFixed: boolean;
1470
+ value: null;
1471
+ pos: number;
1472
+ };
1473
+ user: {
1474
+ type: string;
1475
+ properties: never[];
1476
+ isUsed: boolean;
1477
+ isOptional: boolean;
1478
+ isLockedValue: boolean;
1479
+ isFixed: boolean;
1480
+ value: null;
1481
+ pos: number;
1482
+ };
1483
+ dateCreation: {
1484
+ type: string;
1485
+ properties: never[];
1486
+ isUsed: boolean;
1487
+ isOptional: boolean;
1488
+ isLockedValue: boolean;
1489
+ isFixed: boolean;
1490
+ value: null;
1491
+ pos: number;
1492
+ };
1493
+ description: {
1494
+ type: string;
1495
+ properties: ({
1496
+ propertyType: string;
1497
+ isRequired: boolean;
1498
+ value: string;
1499
+ } | {
1500
+ propertyType: string;
1501
+ value: string;
1502
+ isRequired?: never;
1503
+ })[];
1504
+ isUsed: boolean;
1505
+ isOptional: boolean;
1506
+ isLockedValue: boolean;
1507
+ isFixed: boolean;
1508
+ value: null;
1509
+ pos: number;
1510
+ };
1511
+ bafccaibedfiebhfaeccicbdighdg: {
1512
+ type: string;
1513
+ properties: ({
1514
+ propertyType: string;
1515
+ isRequired: boolean;
1516
+ value: string;
1517
+ } | {
1518
+ propertyType: string;
1519
+ value: string;
1520
+ isRequired?: never;
1521
+ })[];
1522
+ isUsed: boolean;
1523
+ isOptional: boolean;
1524
+ isLockedValue: boolean;
1525
+ isFixed: boolean;
1526
+ value: null;
1527
+ pos: number;
1528
+ };
1529
+ hgdbdggbcaeddbcbaaigcfgdeebdffh: {
1530
+ type: string;
1531
+ properties: ({
1532
+ propertyType: string;
1533
+ isRequired: boolean;
1534
+ value: string;
1535
+ } | {
1536
+ propertyType: string;
1537
+ value: string;
1538
+ isRequired?: never;
1539
+ })[];
1540
+ isUsed: boolean;
1541
+ isOptional: boolean;
1542
+ isLockedValue: boolean;
1543
+ isFixed: boolean;
1544
+ value: null;
1545
+ pos: number;
1546
+ };
1547
+ diehaadfeidieighfdebfegbeca: {
1548
+ type: string;
1549
+ properties: ({
1550
+ propertyType: string;
1551
+ isRequired: boolean;
1552
+ value: string;
1553
+ } | {
1554
+ propertyType: string;
1555
+ value: string;
1556
+ isRequired?: never;
1557
+ })[];
1558
+ isUsed: boolean;
1559
+ isOptional: boolean;
1560
+ isLockedValue: boolean;
1561
+ isFixed: boolean;
1562
+ value: null;
1563
+ pos: number;
1564
+ };
1565
+ cafdfgcfefdedeeaiddcdhahbbgbcc: {
1566
+ type: string;
1567
+ properties: ({
1568
+ propertyType: string;
1569
+ isRequired: boolean;
1570
+ value: string;
1571
+ } | {
1572
+ propertyType: string;
1573
+ value: string;
1574
+ isRequired?: never;
1575
+ })[];
1576
+ isUsed: boolean;
1577
+ isOptional: boolean;
1578
+ isLockedValue: boolean;
1579
+ isFixed: boolean;
1580
+ value: null;
1581
+ pos: number;
1582
+ };
1583
+ ffehbicgbbdibficeiehfddbdfhd: {
1584
+ type: string;
1585
+ properties: ({
1586
+ propertyType: string;
1587
+ isRequired: boolean;
1588
+ value: string;
1589
+ } | {
1590
+ propertyType: string;
1591
+ value: string;
1592
+ isRequired?: never;
1593
+ })[];
1594
+ isUsed: boolean;
1595
+ isOptional: boolean;
1596
+ isLockedValue: boolean;
1597
+ isFixed: boolean;
1598
+ value: null;
1599
+ pos: number;
1600
+ };
1601
+ ffeabcgcagddigaebbabafffbehcei: {
1602
+ type: string;
1603
+ properties: ({
1604
+ propertyType: string;
1605
+ isRequired: boolean;
1606
+ value: string;
1607
+ checkBoxOptions?: never;
1608
+ } | {
1609
+ propertyType: string;
1610
+ value: string;
1611
+ isRequired?: never;
1612
+ checkBoxOptions?: never;
1613
+ } | {
1614
+ propertyType: string;
1615
+ value: boolean;
1616
+ checkBoxOptions: {
1617
+ label: string;
1618
+ value: boolean;
1619
+ }[];
1620
+ isRequired?: never;
1621
+ })[];
1622
+ isUsed: boolean;
1623
+ isOptional: boolean;
1624
+ isLockedValue: boolean;
1625
+ isFixed: boolean;
1626
+ value: null;
1627
+ pos: number;
1628
+ };
1629
+ ggddgdgagcdbcdhecggfigfedage: {
1630
+ type: string;
1631
+ properties: ({
1632
+ propertyType: string;
1633
+ isRequired: boolean;
1634
+ value: string;
1635
+ } | {
1636
+ propertyType: string;
1637
+ value: string;
1638
+ isRequired?: never;
1639
+ })[];
1640
+ isUsed: boolean;
1641
+ isOptional: boolean;
1642
+ isLockedValue: boolean;
1643
+ isFixed: boolean;
1644
+ value: null;
1645
+ pos: number;
1646
+ };
1647
+ hgabdhfebcbdfbgiafdabddibediai: {
1648
+ type: string;
1649
+ properties: ({
1650
+ propertyType: string;
1651
+ isRequired: boolean;
1652
+ value: string;
1653
+ } | {
1654
+ propertyType: string;
1655
+ value: string;
1656
+ isRequired?: never;
1657
+ })[];
1658
+ isUsed: boolean;
1659
+ isOptional: boolean;
1660
+ isLockedValue: boolean;
1661
+ isFixed: boolean;
1662
+ value: null;
1663
+ pos: number;
1664
+ };
1665
+ dchbadgedbddhbhadhaeciaiighcebb: {
1666
+ type: string;
1667
+ properties: ({
1668
+ propertyType: string;
1669
+ isRequired: boolean;
1670
+ value: string;
1671
+ isOptionsEditorEnhanced?: never;
1672
+ } | {
1673
+ propertyType: string;
1674
+ value: string;
1675
+ isRequired?: never;
1676
+ isOptionsEditorEnhanced?: never;
1677
+ } | {
1678
+ propertyType: string;
1679
+ value: {
1680
+ propertyOptions: {
1681
+ title: string;
1682
+ value: string;
1683
+ }[];
1684
+ canSelectMultiple: boolean;
1685
+ userCanModifiyByComment: boolean;
1686
+ defaultSelectOption: boolean;
1687
+ defaultSelectOptionValue: undefined;
1688
+ };
1689
+ isOptionsEditorEnhanced: boolean;
1690
+ isRequired?: never;
1691
+ })[];
1692
+ isUsed: boolean;
1693
+ isOptional: boolean;
1694
+ isLockedValue: boolean;
1695
+ isFixed: boolean;
1696
+ value: null;
1697
+ pos: number;
1698
+ };
1699
+ bhdibabchacddgbbachbaaeeadacci: {
1700
+ type: string;
1701
+ properties: ({
1702
+ propertyType: string;
1703
+ isRequired: boolean;
1704
+ value: string;
1705
+ } | {
1706
+ propertyType: string;
1707
+ value: string;
1708
+ isRequired?: never;
1709
+ } | {
1710
+ propertyType: string;
1711
+ value: {
1712
+ propertyOptions: {
1713
+ title: string;
1714
+ value: string;
1715
+ }[];
1716
+ };
1717
+ isRequired?: never;
1718
+ })[];
1719
+ isUsed: boolean;
1720
+ isOptional: boolean;
1721
+ isLockedValue: boolean;
1722
+ isFixed: boolean;
1723
+ value: null;
1724
+ pos: number;
1725
+ };
1726
+ ehceaabcabhdbdabfgaiceedhfdha: {
1727
+ type: string;
1728
+ properties: ({
1729
+ propertyType: string;
1730
+ isRequired: boolean;
1731
+ value: string;
1732
+ } | {
1733
+ propertyType: string;
1734
+ value: string;
1735
+ isRequired?: never;
1736
+ })[];
1737
+ isUsed: boolean;
1738
+ isOptional: boolean;
1739
+ isLockedValue: boolean;
1740
+ isFixed: boolean;
1741
+ value: null;
1742
+ pos: number;
1743
+ };
1744
+ gbahdibbfbbcdefdbaacfcfdeaceafa: {
1745
+ type: string;
1746
+ properties: ({
1747
+ propertyType: string;
1748
+ isRequired: boolean;
1749
+ value: string;
1750
+ } | {
1751
+ propertyType: string;
1752
+ value: string;
1753
+ isRequired?: never;
1754
+ } | {
1755
+ propertyType: string;
1756
+ value: {
1757
+ propertyOptions: {
1758
+ title: string;
1759
+ value: string;
1760
+ }[];
1761
+ };
1762
+ isRequired?: never;
1763
+ })[];
1764
+ isUsed: boolean;
1765
+ isOptional: boolean;
1766
+ isLockedValue: boolean;
1767
+ isFixed: boolean;
1768
+ value: null;
1769
+ pos: number;
1770
+ };
1771
+ ghcebibbaaeidcfadcddadhffbcfad: {
1772
+ type: string;
1773
+ properties: ({
1774
+ propertyType: string;
1775
+ isRequired: boolean;
1776
+ value: string;
1777
+ } | {
1778
+ propertyType: string;
1779
+ value: string;
1780
+ isRequired?: never;
1781
+ } | {
1782
+ propertyType: string;
1783
+ value: {
1784
+ type: string;
1785
+ id: number;
1786
+ title: string;
1787
+ };
1788
+ isRequired?: never;
1789
+ })[];
1790
+ isUsed: boolean;
1791
+ isOptional: boolean;
1792
+ isLockedValue: boolean;
1793
+ isFixed: boolean;
1794
+ value: null;
1795
+ pos: number;
1796
+ };
1797
+ bffehacfgeggdbiagfahahibhffbhc: {
1798
+ type: string;
1799
+ properties: {
1800
+ propertyType: string;
1801
+ isRequired: boolean;
1802
+ value: string;
1803
+ }[];
1804
+ isUsed: boolean;
1805
+ isOptional: boolean;
1806
+ isLockedValue: boolean;
1807
+ isFixed: boolean;
1808
+ value: null;
1809
+ pos: number;
1810
+ };
1811
+ iaddahagbcgfdeacaacigcefdfhiafhg: {
1812
+ type: string;
1813
+ properties: ({
1814
+ propertyType: string;
1815
+ isRequired: boolean;
1816
+ value: string;
1817
+ } | {
1818
+ propertyType: string;
1819
+ value: string;
1820
+ isRequired?: never;
1821
+ })[];
1822
+ isUsed: boolean;
1823
+ isOptional: boolean;
1824
+ isLockedValue: boolean;
1825
+ isFixed: boolean;
1826
+ value: null;
1827
+ pos: number;
1828
+ };
1829
+ bbeeecdaiaadacdiicdbabeeefebg: {
1830
+ type: string;
1831
+ properties: ({
1832
+ propertyType: string;
1833
+ isRequired: boolean;
1834
+ value: string;
1835
+ } | {
1836
+ propertyType: string;
1837
+ value: string;
1838
+ isRequired?: never;
1839
+ } | {
1840
+ propertyType: string;
1841
+ value: {
1842
+ type: string;
1843
+ label: string;
1844
+ };
1845
+ isRequired?: never;
1846
+ })[];
1847
+ isUsed: boolean;
1848
+ isOptional: boolean;
1849
+ isLockedValue: boolean;
1850
+ isFixed: boolean;
1851
+ value: null;
1852
+ pos: number;
1853
+ };
1854
+ };
1855
+ list: {
1856
+ title: {
1857
+ type: string;
1858
+ properties: never[];
1859
+ isUsed: boolean;
1860
+ isOptional: boolean;
1861
+ isLockedValue: boolean;
1862
+ isFixed: boolean;
1863
+ value: null;
1864
+ pos: number;
1865
+ };
1866
+ user: {
1867
+ type: string;
1868
+ properties: never[];
1869
+ isUsed: boolean;
1870
+ isOptional: boolean;
1871
+ isLockedValue: boolean;
1872
+ isFixed: boolean;
1873
+ value: null;
1874
+ pos: number;
1875
+ };
1876
+ dateCreation: {
1877
+ type: string;
1878
+ properties: never[];
1879
+ isUsed: boolean;
1880
+ isOptional: boolean;
1881
+ isLockedValue: boolean;
1882
+ isFixed: boolean;
1883
+ value: null;
1884
+ pos: number;
1885
+ };
1886
+ description: {
1887
+ type: string;
1888
+ properties: ({
1889
+ propertyType: string;
1890
+ isRequired: boolean;
1891
+ value: string;
1892
+ } | {
1893
+ propertyType: string;
1894
+ value: string;
1895
+ isRequired?: never;
1896
+ })[];
1897
+ isUsed: boolean;
1898
+ isOptional: boolean;
1899
+ isLockedValue: boolean;
1900
+ isFixed: boolean;
1901
+ value: null;
1902
+ pos: number;
1903
+ };
1904
+ bafccaibedfiebhfaeccicbdighdg: {
1905
+ type: string;
1906
+ properties: ({
1907
+ propertyType: string;
1908
+ isRequired: boolean;
1909
+ value: string;
1910
+ } | {
1911
+ propertyType: string;
1912
+ value: string;
1913
+ isRequired?: never;
1914
+ })[];
1915
+ isUsed: boolean;
1916
+ isOptional: boolean;
1917
+ isLockedValue: boolean;
1918
+ isFixed: boolean;
1919
+ value: null;
1920
+ pos: number;
1921
+ };
1922
+ hgdbdggbcaeddbcbaaigcfgdeebdffh: {
1923
+ type: string;
1924
+ properties: ({
1925
+ propertyType: string;
1926
+ isRequired: boolean;
1927
+ value: string;
1928
+ } | {
1929
+ propertyType: string;
1930
+ value: string;
1931
+ isRequired?: never;
1932
+ })[];
1933
+ isUsed: boolean;
1934
+ isOptional: boolean;
1935
+ isLockedValue: boolean;
1936
+ isFixed: boolean;
1937
+ value: null;
1938
+ pos: number;
1939
+ };
1940
+ diehaadfeidieighfdebfegbeca: {
1941
+ type: string;
1942
+ properties: ({
1943
+ propertyType: string;
1944
+ isRequired: boolean;
1945
+ value: string;
1946
+ } | {
1947
+ propertyType: string;
1948
+ value: string;
1949
+ isRequired?: never;
1950
+ })[];
1951
+ isUsed: boolean;
1952
+ isOptional: boolean;
1953
+ isLockedValue: boolean;
1954
+ isFixed: boolean;
1955
+ value: null;
1956
+ pos: number;
1957
+ };
1958
+ cafdfgcfefdedeeaiddcdhahbbgbcc: {
1959
+ type: string;
1960
+ properties: ({
1961
+ propertyType: string;
1962
+ isRequired: boolean;
1963
+ value: string;
1964
+ } | {
1965
+ propertyType: string;
1966
+ value: string;
1967
+ isRequired?: never;
1968
+ })[];
1969
+ isUsed: boolean;
1970
+ isOptional: boolean;
1971
+ isLockedValue: boolean;
1972
+ isFixed: boolean;
1973
+ value: null;
1974
+ pos: number;
1975
+ };
1976
+ ffehbicgbbdibficeiehfddbdfhd: {
1977
+ type: string;
1978
+ properties: ({
1979
+ propertyType: string;
1980
+ isRequired: boolean;
1981
+ value: string;
1982
+ } | {
1983
+ propertyType: string;
1984
+ value: string;
1985
+ isRequired?: never;
1986
+ })[];
1987
+ isUsed: boolean;
1988
+ isOptional: boolean;
1989
+ isLockedValue: boolean;
1990
+ isFixed: boolean;
1991
+ value: null;
1992
+ pos: number;
1993
+ };
1994
+ ffeabcgcagddigaebbabafffbehcei: {
1995
+ type: string;
1996
+ properties: ({
1997
+ propertyType: string;
1998
+ isRequired: boolean;
1999
+ value: string;
2000
+ checkBoxOptions?: never;
2001
+ } | {
2002
+ propertyType: string;
2003
+ value: string;
2004
+ isRequired?: never;
2005
+ checkBoxOptions?: never;
2006
+ } | {
2007
+ propertyType: string;
2008
+ value: boolean;
2009
+ checkBoxOptions: {
2010
+ label: string;
2011
+ value: boolean;
2012
+ }[];
2013
+ isRequired?: never;
2014
+ })[];
2015
+ isUsed: boolean;
2016
+ isOptional: boolean;
2017
+ isLockedValue: boolean;
2018
+ isFixed: boolean;
2019
+ value: null;
2020
+ pos: number;
2021
+ };
2022
+ ggddgdgagcdbcdhecggfigfedage: {
2023
+ type: string;
2024
+ properties: ({
2025
+ propertyType: string;
2026
+ isRequired: boolean;
2027
+ value: string;
2028
+ } | {
2029
+ propertyType: string;
2030
+ value: string;
2031
+ isRequired?: never;
2032
+ })[];
2033
+ isUsed: boolean;
2034
+ isOptional: boolean;
2035
+ isLockedValue: boolean;
2036
+ isFixed: boolean;
2037
+ value: null;
2038
+ pos: number;
2039
+ };
2040
+ hgabdhfebcbdfbgiafdabddibediai: {
2041
+ type: string;
2042
+ properties: ({
2043
+ propertyType: string;
2044
+ isRequired: boolean;
2045
+ value: string;
2046
+ } | {
2047
+ propertyType: string;
2048
+ value: string;
2049
+ isRequired?: never;
2050
+ })[];
2051
+ isUsed: boolean;
2052
+ isOptional: boolean;
2053
+ isLockedValue: boolean;
2054
+ isFixed: boolean;
2055
+ value: null;
2056
+ pos: number;
2057
+ };
2058
+ dchbadgedbddhbhadhaeciaiighcebb: {
2059
+ type: string;
2060
+ properties: ({
2061
+ propertyType: string;
2062
+ isRequired: boolean;
2063
+ value: string;
2064
+ isOptionsEditorEnhanced?: never;
2065
+ } | {
2066
+ propertyType: string;
2067
+ value: string;
2068
+ isRequired?: never;
2069
+ isOptionsEditorEnhanced?: never;
2070
+ } | {
2071
+ propertyType: string;
2072
+ value: {
2073
+ propertyOptions: {
2074
+ title: string;
2075
+ value: string;
2076
+ }[];
2077
+ canSelectMultiple: boolean;
2078
+ userCanModifiyByComment: boolean;
2079
+ defaultSelectOption: boolean;
2080
+ defaultSelectOptionValue: undefined;
2081
+ };
2082
+ isOptionsEditorEnhanced: boolean;
2083
+ isRequired?: never;
2084
+ })[];
2085
+ isUsed: boolean;
2086
+ isOptional: boolean;
2087
+ isLockedValue: boolean;
2088
+ isFixed: boolean;
2089
+ value: null;
2090
+ pos: number;
2091
+ };
2092
+ bhdibabchacddgbbachbaaeeadacci: {
2093
+ type: string;
2094
+ properties: ({
2095
+ propertyType: string;
2096
+ isRequired: boolean;
2097
+ value: string;
2098
+ } | {
2099
+ propertyType: string;
2100
+ value: string;
2101
+ isRequired?: never;
2102
+ } | {
2103
+ propertyType: string;
2104
+ value: {
2105
+ propertyOptions: {
2106
+ title: string;
2107
+ value: string;
2108
+ }[];
2109
+ };
2110
+ isRequired?: never;
2111
+ })[];
2112
+ isUsed: boolean;
2113
+ isOptional: boolean;
2114
+ isLockedValue: boolean;
2115
+ isFixed: boolean;
2116
+ value: null;
2117
+ pos: number;
2118
+ };
2119
+ ehceaabcabhdbdabfgaiceedhfdha: {
2120
+ type: string;
2121
+ properties: ({
2122
+ propertyType: string;
2123
+ isRequired: boolean;
2124
+ value: string;
2125
+ } | {
2126
+ propertyType: string;
2127
+ value: string;
2128
+ isRequired?: never;
2129
+ })[];
2130
+ isUsed: boolean;
2131
+ isOptional: boolean;
2132
+ isLockedValue: boolean;
2133
+ isFixed: boolean;
2134
+ value: null;
2135
+ pos: number;
2136
+ };
2137
+ gbahdibbfbbcdefdbaacfcfdeaceafa: {
2138
+ type: string;
2139
+ properties: ({
2140
+ propertyType: string;
2141
+ isRequired: boolean;
2142
+ value: string;
2143
+ } | {
2144
+ propertyType: string;
2145
+ value: string;
2146
+ isRequired?: never;
2147
+ } | {
2148
+ propertyType: string;
2149
+ value: {
2150
+ propertyOptions: {
2151
+ title: string;
2152
+ value: string;
2153
+ }[];
2154
+ };
2155
+ isRequired?: never;
2156
+ })[];
2157
+ isUsed: boolean;
2158
+ isOptional: boolean;
2159
+ isLockedValue: boolean;
2160
+ isFixed: boolean;
2161
+ value: null;
2162
+ pos: number;
2163
+ };
2164
+ ghcebibbaaeidcfadcddadhffbcfad: {
2165
+ type: string;
2166
+ properties: ({
2167
+ propertyType: string;
2168
+ isRequired: boolean;
2169
+ value: string;
2170
+ } | {
2171
+ propertyType: string;
2172
+ value: string;
2173
+ isRequired?: never;
2174
+ } | {
2175
+ propertyType: string;
2176
+ value: {
2177
+ type: string;
2178
+ id: number;
2179
+ title: string;
2180
+ };
2181
+ isRequired?: never;
2182
+ })[];
2183
+ isUsed: boolean;
2184
+ isOptional: boolean;
2185
+ isLockedValue: boolean;
2186
+ isFixed: boolean;
2187
+ value: null;
2188
+ pos: number;
2189
+ };
2190
+ bffehacfgeggdbiagfahahibhffbhc: {
2191
+ type: string;
2192
+ properties: {
2193
+ propertyType: string;
2194
+ isRequired: boolean;
2195
+ value: string;
2196
+ }[];
2197
+ isUsed: boolean;
2198
+ isOptional: boolean;
2199
+ isLockedValue: boolean;
2200
+ isFixed: boolean;
2201
+ value: null;
2202
+ pos: number;
2203
+ };
2204
+ iaddahagbcgfdeacaacigcefdfhiafhg: {
2205
+ type: string;
2206
+ properties: ({
2207
+ propertyType: string;
2208
+ isRequired: boolean;
2209
+ value: string;
2210
+ } | {
2211
+ propertyType: string;
2212
+ value: string;
2213
+ isRequired?: never;
2214
+ })[];
2215
+ isUsed: boolean;
2216
+ isOptional: boolean;
2217
+ isLockedValue: boolean;
2218
+ isFixed: boolean;
2219
+ value: null;
2220
+ pos: number;
2221
+ };
2222
+ bbeeecdaiaadacdiicdbabeeefebg: {
2223
+ type: string;
2224
+ properties: ({
2225
+ propertyType: string;
2226
+ isRequired: boolean;
2227
+ value: string;
2228
+ } | {
2229
+ propertyType: string;
2230
+ value: string;
2231
+ isRequired?: never;
2232
+ } | {
2233
+ propertyType: string;
2234
+ value: {
2235
+ type: string;
2236
+ label: string;
2237
+ };
2238
+ isRequired?: never;
2239
+ })[];
2240
+ isUsed: boolean;
2241
+ isOptional: boolean;
2242
+ isLockedValue: boolean;
2243
+ isFixed: boolean;
2244
+ value: null;
2245
+ pos: number;
2246
+ };
2247
+ };
2248
+ view: {
2249
+ title: {
2250
+ type: string;
2251
+ properties: never[];
2252
+ isUsed: boolean;
2253
+ isOptional: boolean;
2254
+ isLockedValue: boolean;
2255
+ isFixed: boolean;
2256
+ value: null;
2257
+ pos: number;
2258
+ };
2259
+ description: {
2260
+ type: string;
2261
+ properties: ({
2262
+ propertyType: string;
2263
+ isRequired: boolean;
2264
+ value: string;
2265
+ } | {
2266
+ propertyType: string;
2267
+ value: string;
2268
+ isRequired?: never;
2269
+ })[];
2270
+ isUsed: boolean;
2271
+ isOptional: boolean;
2272
+ isLockedValue: boolean;
2273
+ isFixed: boolean;
2274
+ value: null;
2275
+ pos: number;
2276
+ };
2277
+ bafccaibedfiebhfaeccicbdighdg: {
2278
+ type: string;
2279
+ properties: ({
2280
+ propertyType: string;
2281
+ isRequired: boolean;
2282
+ value: string;
2283
+ } | {
2284
+ propertyType: string;
2285
+ value: string;
2286
+ isRequired?: never;
2287
+ })[];
2288
+ isUsed: boolean;
2289
+ isOptional: boolean;
2290
+ isLockedValue: boolean;
2291
+ isFixed: boolean;
2292
+ value: null;
2293
+ pos: number;
2294
+ };
2295
+ hgdbdggbcaeddbcbaaigcfgdeebdffh: {
2296
+ type: string;
2297
+ properties: ({
2298
+ propertyType: string;
2299
+ isRequired: boolean;
2300
+ value: string;
2301
+ } | {
2302
+ propertyType: string;
2303
+ value: string;
2304
+ isRequired?: never;
2305
+ })[];
2306
+ isUsed: boolean;
2307
+ isOptional: boolean;
2308
+ isLockedValue: boolean;
2309
+ isFixed: boolean;
2310
+ value: null;
2311
+ pos: number;
2312
+ };
2313
+ diehaadfeidieighfdebfegbeca: {
2314
+ type: string;
2315
+ properties: ({
2316
+ propertyType: string;
2317
+ isRequired: boolean;
2318
+ value: string;
2319
+ } | {
2320
+ propertyType: string;
2321
+ value: string;
2322
+ isRequired?: never;
2323
+ })[];
2324
+ isUsed: boolean;
2325
+ isOptional: boolean;
2326
+ isLockedValue: boolean;
2327
+ isFixed: boolean;
2328
+ value: null;
2329
+ pos: number;
2330
+ };
2331
+ cafdfgcfefdedeeaiddcdhahbbgbcc: {
2332
+ type: string;
2333
+ properties: ({
2334
+ propertyType: string;
2335
+ isRequired: boolean;
2336
+ value: string;
2337
+ } | {
2338
+ propertyType: string;
2339
+ value: string;
2340
+ isRequired?: never;
2341
+ })[];
2342
+ isUsed: boolean;
2343
+ isOptional: boolean;
2344
+ isLockedValue: boolean;
2345
+ isFixed: boolean;
2346
+ value: null;
2347
+ pos: number;
2348
+ };
2349
+ ffehbicgbbdibficeiehfddbdfhd: {
2350
+ type: string;
2351
+ properties: ({
2352
+ propertyType: string;
2353
+ isRequired: boolean;
2354
+ value: string;
2355
+ } | {
2356
+ propertyType: string;
2357
+ value: string;
2358
+ isRequired?: never;
2359
+ })[];
2360
+ isUsed: boolean;
2361
+ isOptional: boolean;
2362
+ isLockedValue: boolean;
2363
+ isFixed: boolean;
2364
+ value: null;
2365
+ pos: number;
2366
+ };
2367
+ ffeabcgcagddigaebbabafffbehcei: {
2368
+ type: string;
2369
+ properties: ({
2370
+ propertyType: string;
2371
+ isRequired: boolean;
2372
+ value: string;
2373
+ checkBoxOptions?: never;
2374
+ } | {
2375
+ propertyType: string;
2376
+ value: string;
2377
+ isRequired?: never;
2378
+ checkBoxOptions?: never;
2379
+ } | {
2380
+ propertyType: string;
2381
+ value: boolean;
2382
+ checkBoxOptions: {
2383
+ label: string;
2384
+ value: boolean;
2385
+ }[];
2386
+ isRequired?: never;
2387
+ })[];
2388
+ isUsed: boolean;
2389
+ isOptional: boolean;
2390
+ isLockedValue: boolean;
2391
+ isFixed: boolean;
2392
+ value: null;
2393
+ pos: number;
2394
+ };
2395
+ ggddgdgagcdbcdhecggfigfedage: {
2396
+ type: string;
2397
+ properties: ({
2398
+ propertyType: string;
2399
+ isRequired: boolean;
2400
+ value: string;
2401
+ } | {
2402
+ propertyType: string;
2403
+ value: string;
2404
+ isRequired?: never;
2405
+ })[];
2406
+ isUsed: boolean;
2407
+ isOptional: boolean;
2408
+ isLockedValue: boolean;
2409
+ isFixed: boolean;
2410
+ value: null;
2411
+ pos: number;
2412
+ };
2413
+ hgabdhfebcbdfbgiafdabddibediai: {
2414
+ type: string;
2415
+ properties: ({
2416
+ propertyType: string;
2417
+ isRequired: boolean;
2418
+ value: string;
2419
+ } | {
2420
+ propertyType: string;
2421
+ value: string;
2422
+ isRequired?: never;
2423
+ })[];
2424
+ isUsed: boolean;
2425
+ isOptional: boolean;
2426
+ isLockedValue: boolean;
2427
+ isFixed: boolean;
2428
+ value: null;
2429
+ pos: number;
2430
+ };
2431
+ dchbadgedbddhbhadhaeciaiighcebb: {
2432
+ type: string;
2433
+ properties: ({
2434
+ propertyType: string;
2435
+ isRequired: boolean;
2436
+ value: string;
2437
+ isOptionsEditorEnhanced?: never;
2438
+ } | {
2439
+ propertyType: string;
2440
+ value: string;
2441
+ isRequired?: never;
2442
+ isOptionsEditorEnhanced?: never;
2443
+ } | {
2444
+ propertyType: string;
2445
+ value: {
2446
+ propertyOptions: {
2447
+ title: string;
2448
+ value: string;
2449
+ }[];
2450
+ canSelectMultiple: boolean;
2451
+ userCanModifiyByComment: boolean;
2452
+ defaultSelectOption: boolean;
2453
+ defaultSelectOptionValue: undefined;
2454
+ };
2455
+ isOptionsEditorEnhanced: boolean;
2456
+ isRequired?: never;
2457
+ })[];
2458
+ isUsed: boolean;
2459
+ isOptional: boolean;
2460
+ isLockedValue: boolean;
2461
+ isFixed: boolean;
2462
+ value: null;
2463
+ pos: number;
2464
+ };
2465
+ bhdibabchacddgbbachbaaeeadacci: {
2466
+ type: string;
2467
+ properties: ({
2468
+ propertyType: string;
2469
+ isRequired: boolean;
2470
+ value: string;
2471
+ } | {
2472
+ propertyType: string;
2473
+ value: string;
2474
+ isRequired?: never;
2475
+ } | {
2476
+ propertyType: string;
2477
+ value: {
2478
+ propertyOptions: {
2479
+ title: string;
2480
+ value: string;
2481
+ }[];
2482
+ };
2483
+ isRequired?: never;
2484
+ })[];
2485
+ isUsed: boolean;
2486
+ isOptional: boolean;
2487
+ isLockedValue: boolean;
2488
+ isFixed: boolean;
2489
+ value: null;
2490
+ pos: number;
2491
+ };
2492
+ ehceaabcabhdbdabfgaiceedhfdha: {
2493
+ type: string;
2494
+ properties: ({
2495
+ propertyType: string;
2496
+ isRequired: boolean;
2497
+ value: string;
2498
+ } | {
2499
+ propertyType: string;
2500
+ value: string;
2501
+ isRequired?: never;
2502
+ })[];
2503
+ isUsed: boolean;
2504
+ isOptional: boolean;
2505
+ isLockedValue: boolean;
2506
+ isFixed: boolean;
2507
+ value: null;
2508
+ pos: number;
2509
+ };
2510
+ gbahdibbfbbcdefdbaacfcfdeaceafa: {
2511
+ type: string;
2512
+ properties: ({
2513
+ propertyType: string;
2514
+ isRequired: boolean;
2515
+ value: string;
2516
+ } | {
2517
+ propertyType: string;
2518
+ value: string;
2519
+ isRequired?: never;
2520
+ } | {
2521
+ propertyType: string;
2522
+ value: {
2523
+ propertyOptions: {
2524
+ title: string;
2525
+ value: string;
2526
+ }[];
2527
+ };
2528
+ isRequired?: never;
2529
+ })[];
2530
+ isUsed: boolean;
2531
+ isOptional: boolean;
2532
+ isLockedValue: boolean;
2533
+ isFixed: boolean;
2534
+ value: null;
2535
+ pos: number;
2536
+ };
2537
+ ghcebibbaaeidcfadcddadhffbcfad: {
2538
+ type: string;
2539
+ properties: ({
2540
+ propertyType: string;
2541
+ isRequired: boolean;
2542
+ value: string;
2543
+ } | {
2544
+ propertyType: string;
2545
+ value: string;
2546
+ isRequired?: never;
2547
+ } | {
2548
+ propertyType: string;
2549
+ value: {
2550
+ type: string;
2551
+ id: number;
2552
+ title: string;
2553
+ };
2554
+ isRequired?: never;
2555
+ })[];
2556
+ isUsed: boolean;
2557
+ isOptional: boolean;
2558
+ isLockedValue: boolean;
2559
+ isFixed: boolean;
2560
+ value: null;
2561
+ pos: number;
2562
+ };
2563
+ bffehacfgeggdbiagfahahibhffbhc: {
2564
+ type: string;
2565
+ properties: {
2566
+ propertyType: string;
2567
+ isRequired: boolean;
2568
+ value: string;
2569
+ }[];
2570
+ isUsed: boolean;
2571
+ isOptional: boolean;
2572
+ isLockedValue: boolean;
2573
+ isFixed: boolean;
2574
+ value: null;
2575
+ pos: number;
2576
+ };
2577
+ iaddahagbcgfdeacaacigcefdfhiafhg: {
2578
+ type: string;
2579
+ properties: ({
2580
+ propertyType: string;
2581
+ isRequired: boolean;
2582
+ value: string;
2583
+ } | {
2584
+ propertyType: string;
2585
+ value: string;
2586
+ isRequired?: never;
2587
+ })[];
2588
+ isUsed: boolean;
2589
+ isOptional: boolean;
2590
+ isLockedValue: boolean;
2591
+ isFixed: boolean;
2592
+ value: null;
2593
+ pos: number;
2594
+ };
2595
+ bbeeecdaiaadacdiicdbabeeefebg: {
2596
+ type: string;
2597
+ properties: ({
2598
+ propertyType: string;
2599
+ isRequired: boolean;
2600
+ value: string;
2601
+ } | {
2602
+ propertyType: string;
2603
+ value: string;
2604
+ isRequired?: never;
2605
+ } | {
2606
+ propertyType: string;
2607
+ value: {
2608
+ type: string;
2609
+ label: string;
2610
+ };
2611
+ isRequired?: never;
2612
+ })[];
2613
+ isUsed: boolean;
2614
+ isOptional: boolean;
2615
+ isLockedValue: boolean;
2616
+ isFixed: boolean;
2617
+ value: null;
2618
+ pos: number;
2619
+ };
2620
+ };
2621
+ };
2622
+ installFor: never[];
2623
+ audience: string;
2624
+ }[];