@redhat-cloud-services/notifications-client 0.0.40 → 1.0.0

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 (194) hide show
  1. package/README.md +8 -8
  2. package/dist/EventResourceV1GetEvents/index.d.ts +111 -0
  3. package/dist/EventResourceV1GetEvents/index.js +143 -0
  4. package/dist/NotificationResourceV1AppendBehaviorGroupToEventType/index.d.ts +26 -0
  5. package/dist/NotificationResourceV1AppendBehaviorGroupToEventType/index.js +93 -0
  6. package/dist/NotificationResourceV1CreateBehaviorGroup/index.d.ts +21 -0
  7. package/dist/NotificationResourceV1CreateBehaviorGroup/index.js +93 -0
  8. package/dist/NotificationResourceV1DeleteBehaviorGroup/index.d.ts +20 -0
  9. package/dist/NotificationResourceV1DeleteBehaviorGroup/index.js +92 -0
  10. package/dist/NotificationResourceV1DeleteBehaviorGroupFromEventType/index.d.ts +26 -0
  11. package/dist/NotificationResourceV1DeleteBehaviorGroupFromEventType/index.js +93 -0
  12. package/dist/NotificationResourceV1FindBehaviorGroupsByBundleId/index.d.ts +20 -0
  13. package/dist/NotificationResourceV1FindBehaviorGroupsByBundleId/index.js +92 -0
  14. package/dist/NotificationResourceV1GetApplicationByNameAndBundleName/index.d.ts +26 -0
  15. package/dist/NotificationResourceV1GetApplicationByNameAndBundleName/index.js +93 -0
  16. package/dist/NotificationResourceV1GetApplicationsFacets/index.d.ts +20 -0
  17. package/dist/NotificationResourceV1GetApplicationsFacets/index.js +94 -0
  18. package/dist/NotificationResourceV1GetBehaviorGroupsAffectedByRemovalOfEndpoint/index.d.ts +20 -0
  19. package/dist/NotificationResourceV1GetBehaviorGroupsAffectedByRemovalOfEndpoint/index.js +92 -0
  20. package/dist/NotificationResourceV1GetBundleByName/index.d.ts +20 -0
  21. package/dist/NotificationResourceV1GetBundleByName/index.js +92 -0
  22. package/dist/NotificationResourceV1GetBundleFacets/index.d.ts +20 -0
  23. package/dist/NotificationResourceV1GetBundleFacets/index.js +94 -0
  24. package/dist/NotificationResourceV1GetEventTypes/index.d.ts +62 -0
  25. package/dist/NotificationResourceV1GetEventTypes/index.js +115 -0
  26. package/dist/NotificationResourceV1GetEventTypesAffectedByRemovalOfBehaviorGroup/index.d.ts +20 -0
  27. package/dist/NotificationResourceV1GetEventTypesAffectedByRemovalOfBehaviorGroup/index.js +92 -0
  28. package/dist/NotificationResourceV1GetEventTypesByNameAndBundleAndApplicationName/index.d.ts +32 -0
  29. package/dist/NotificationResourceV1GetEventTypesByNameAndBundleAndApplicationName/index.js +94 -0
  30. package/dist/NotificationResourceV1GetLinkedBehaviorGroups/index.d.ts +50 -0
  31. package/dist/NotificationResourceV1GetLinkedBehaviorGroups/index.js +116 -0
  32. package/dist/NotificationResourceV1UpdateBehaviorGroup/index.d.ts +27 -0
  33. package/dist/NotificationResourceV1UpdateBehaviorGroup/index.js +94 -0
  34. package/dist/NotificationResourceV1UpdateBehaviorGroupActions/index.d.ts +26 -0
  35. package/dist/NotificationResourceV1UpdateBehaviorGroupActions/index.js +94 -0
  36. package/dist/NotificationResourceV1UpdateEventTypeBehaviors/index.d.ts +26 -0
  37. package/dist/NotificationResourceV1UpdateEventTypeBehaviors/index.js +94 -0
  38. package/dist/OrgConfigResourceV1GetDailyDigestTimePreference/index.d.ts +13 -0
  39. package/dist/OrgConfigResourceV1GetDailyDigestTimePreference/index.js +90 -0
  40. package/dist/OrgConfigResourceV1SaveDailyDigestTimePreference/index.d.ts +20 -0
  41. package/dist/OrgConfigResourceV1SaveDailyDigestTimePreference/index.js +93 -0
  42. package/dist/UserConfigResourceV1GetPreferences/index.d.ts +25 -0
  43. package/dist/UserConfigResourceV1GetPreferences/index.js +92 -0
  44. package/dist/UserConfigResourceV1GetSettingsSchema/index.d.ts +19 -0
  45. package/dist/UserConfigResourceV1GetSettingsSchema/index.js +93 -0
  46. package/dist/UserConfigResourceV1SaveSettings/index.d.ts +20 -0
  47. package/dist/UserConfigResourceV1SaveSettings/index.js +92 -0
  48. package/dist/api.d.ts +2536 -759
  49. package/dist/api.js +2833 -778
  50. package/dist/base.d.ts +54 -0
  51. package/dist/base.js +80 -0
  52. package/dist/common.d.ts +65 -0
  53. package/dist/common.js +252 -0
  54. package/dist/configuration.d.ts +24 -15
  55. package/dist/configuration.js +19 -12
  56. package/dist/index.d.ts +27 -13
  57. package/dist/index.js +89 -17
  58. package/dist/types/index.d.ts +1657 -0
  59. package/dist/types/index.js +90 -0
  60. package/dist/utils/base.d.ts +84 -0
  61. package/dist/utils/base.js +251 -0
  62. package/dist/utils/common.d.ts +54 -0
  63. package/dist/utils/common.js +241 -0
  64. package/dist/utils/configuration.d.ts +72 -0
  65. package/dist/utils/configuration.js +33 -0
  66. package/dist/utils/index.d.ts +3 -0
  67. package/dist/utils/index.js +19 -0
  68. package/doc/.nojekyll +1 -0
  69. package/doc/README.md +11 -420
  70. package/doc/classes/BaseAPI.md +125 -0
  71. package/doc/classes/Configuration.md +194 -0
  72. package/doc/classes/RequiredError.md +179 -0
  73. package/doc/enums/EmailSubscriptionType.md +21 -0
  74. package/doc/enums/EndpointStatus.md +76 -0
  75. package/doc/enums/EndpointType.md +65 -0
  76. package/doc/enums/Environment.md +54 -0
  77. package/doc/enums/EventLogEntryActionStatus.md +65 -0
  78. package/doc/enums/HttpType.md +43 -0
  79. package/doc/enums/NotificationStatus.md +65 -0
  80. package/doc/enums/Status.md +32 -0
  81. package/doc/interfaces/AddAccessRequest.md +44 -0
  82. package/doc/interfaces/AddApplicationRequest.md +74 -0
  83. package/doc/interfaces/AggregationEmailTemplate.md +164 -0
  84. package/doc/interfaces/ApiConfig.md +30 -0
  85. package/doc/interfaces/Application.md +104 -0
  86. package/doc/interfaces/Application1.md +44 -0
  87. package/doc/interfaces/ApplicationSettingsValue.md +33 -0
  88. package/doc/interfaces/ApplicationSettingsValue1.md +48 -0
  89. package/doc/interfaces/BasicAuthentication.md +44 -0
  90. package/doc/interfaces/BehaviorGroup.md +149 -0
  91. package/doc/interfaces/BehaviorGroupAction.md +59 -0
  92. package/doc/interfaces/BehaviorGroupActionId.md +44 -0
  93. package/doc/interfaces/Bundle.md +89 -0
  94. package/doc/interfaces/BundleSettingsValue.md +33 -0
  95. package/doc/interfaces/BundleSettingsValue1.md +33 -0
  96. package/doc/interfaces/CamelProperties.md +93 -0
  97. package/doc/interfaces/ConfigurationParameters.md +89 -0
  98. package/doc/interfaces/CreateBehaviorGroupRequest.md +104 -0
  99. package/doc/interfaces/CreateBehaviorGroupResponse.md +104 -0
  100. package/doc/interfaces/CurrentStatus.md +59 -0
  101. package/doc/interfaces/DuplicateNameMigrationReport.md +44 -0
  102. package/doc/interfaces/Endpoint.md +179 -0
  103. package/doc/interfaces/EndpointPage.md +63 -0
  104. package/doc/interfaces/EndpointTestRequest.md +29 -0
  105. package/doc/interfaces/EventLogEntry.md +119 -0
  106. package/doc/interfaces/EventLogEntryAction.md +125 -0
  107. package/doc/interfaces/EventType.md +119 -0
  108. package/doc/interfaces/EventTypeBehavior.md +59 -0
  109. package/doc/interfaces/EventTypeBehaviorId.md +44 -0
  110. package/doc/interfaces/EventTypeSettingsValue.md +48 -0
  111. package/doc/interfaces/Facet.md +74 -0
  112. package/doc/interfaces/InstantEmailTemplate.md +149 -0
  113. package/doc/interfaces/InternalApplicationUserPermission.md +59 -0
  114. package/doc/interfaces/InternalRoleAccess.md +59 -0
  115. package/doc/interfaces/InternalUserPermissions.md +59 -0
  116. package/doc/interfaces/MessageValidationResponse.md +33 -0
  117. package/doc/interfaces/Meta.md +29 -0
  118. package/doc/interfaces/NotificationHistory.md +155 -0
  119. package/doc/interfaces/PageBehaviorGroup.md +63 -0
  120. package/doc/interfaces/PageEventLogEntry.md +63 -0
  121. package/doc/interfaces/PageEventType.md +63 -0
  122. package/doc/interfaces/PageNotificationHistory.md +63 -0
  123. package/doc/interfaces/RenderEmailTemplateRequest.md +44 -0
  124. package/doc/interfaces/RequestArgs.md +58 -0
  125. package/doc/interfaces/RequestDefaultBehaviorGroupPropertyList.md +44 -0
  126. package/doc/interfaces/RequestSystemSubscriptionProperties.md +44 -0
  127. package/doc/interfaces/ServerInfo.md +29 -0
  128. package/doc/interfaces/SettingsValues.md +33 -0
  129. package/doc/interfaces/SettingsValuesByEventType.md +33 -0
  130. package/doc/interfaces/SystemSubscriptionProperties.md +59 -0
  131. package/doc/interfaces/Template.md +104 -0
  132. package/doc/interfaces/TriggerDailyDigestRequest.md +89 -0
  133. package/doc/interfaces/UpdateBehaviorGroupRequest.md +74 -0
  134. package/doc/interfaces/UserConfigPreferences.md +44 -0
  135. package/doc/interfaces/WebhookProperties.md +89 -0
  136. package/doc/modules.md +1080 -0
  137. package/git_push.sh +57 -0
  138. package/openapitools.json +7 -0
  139. package/package.json +26 -31
  140. package/postProcess.sh +3 -11
  141. package/tsconfig-cjs.json +19 -0
  142. package/tsconfig-esm.json +21 -0
  143. package/tsconfig.json +18 -0
  144. package/doc/classes/appregistrationapi.md +0 -123
  145. package/doc/classes/appsapi.md +0 -149
  146. package/doc/classes/baseapi.md +0 -86
  147. package/doc/classes/configuration.md +0 -140
  148. package/doc/classes/endpointsapi.md +0 -255
  149. package/doc/classes/filtersapi.md +0 -124
  150. package/doc/classes/requirederror.md +0 -109
  151. package/doc/enums/app.typeenum.md +0 -28
  152. package/doc/enums/endpoint.typeenum.md +0 -28
  153. package/doc/enums/endpointattributes.lastdeliverystatusenum.md +0 -38
  154. package/doc/enums/eventtype.typeenum.md +0 -28
  155. package/doc/enums/inlineresponse2004data.typeenum.md +0 -28
  156. package/doc/enums/level.typeenum.md +0 -28
  157. package/doc/interfaces/appattributes.md +0 -54
  158. package/doc/interfaces/apprelationships.md +0 -36
  159. package/doc/interfaces/appsregisterapplication.md +0 -50
  160. package/doc/interfaces/appsregistereventtypes.md +0 -64
  161. package/doc/interfaces/appsregistereventtypeslevels.md +0 -50
  162. package/doc/interfaces/configurationparameters.md +0 -84
  163. package/doc/interfaces/endpointsendpoint.md +0 -78
  164. package/doc/interfaces/endpointsendpointfilter.md +0 -64
  165. package/doc/interfaces/endpointsidendpoint.md +0 -78
  166. package/doc/interfaces/endpointsidendpointfilter.md +0 -78
  167. package/doc/interfaces/errors.md +0 -36
  168. package/doc/interfaces/errorserrors.md +0 -120
  169. package/doc/interfaces/errorssource.md +0 -50
  170. package/doc/interfaces/eventtypeattributes.md +0 -54
  171. package/doc/interfaces/eventtyperelationships.md +0 -36
  172. package/doc/interfaces/inlineobject.md +0 -50
  173. package/doc/interfaces/inlineobject1.md +0 -36
  174. package/doc/interfaces/inlineobject2.md +0 -36
  175. package/doc/interfaces/inlineresponse200.md +0 -50
  176. package/doc/interfaces/inlineresponse2001.md +0 -36
  177. package/doc/interfaces/inlineresponse2002.md +0 -50
  178. package/doc/interfaces/inlineresponse2003.md +0 -64
  179. package/doc/interfaces/inlineresponse2004.md +0 -36
  180. package/doc/interfaces/inlineresponse2004dataattributes.md +0 -36
  181. package/doc/interfaces/inlineresponse2004datarelationships.md +0 -78
  182. package/doc/interfaces/inlineresponse201.md +0 -36
  183. package/doc/interfaces/levelattributes.md +0 -38
  184. package/doc/interfaces/links.md +0 -86
  185. package/doc/interfaces/metadata.md +0 -70
  186. package/doc/interfaces/relationship.md +0 -50
  187. package/doc/interfaces/relationships.md +0 -36
  188. package/doc/interfaces/requestargs.md +0 -42
  189. package/doc/modules/app.md +0 -82
  190. package/doc/modules/endpoint.md +0 -68
  191. package/doc/modules/endpointattributes.md +0 -118
  192. package/doc/modules/eventtype.md +0 -82
  193. package/doc/modules/inlineresponse2004data.md +0 -78
  194. package/doc/modules/level.md +0 -68
@@ -0,0 +1,1657 @@
1
+ /**
2
+ *
3
+ * @export
4
+ * @interface AddAccessRequest
5
+ */
6
+ export interface AddAccessRequest {
7
+ /**
8
+ *
9
+ * @type {string}
10
+ * @memberof AddAccessRequest
11
+ */
12
+ 'role'?: string;
13
+ /**
14
+ *
15
+ * @type {string}
16
+ * @memberof AddAccessRequest
17
+ */
18
+ 'application_id'?: string;
19
+ }
20
+ /**
21
+ *
22
+ * @export
23
+ * @interface AddApplicationRequest
24
+ */
25
+ export interface AddApplicationRequest {
26
+ /**
27
+ *
28
+ * @type {string}
29
+ * @memberof AddApplicationRequest
30
+ */
31
+ 'name': string;
32
+ /**
33
+ *
34
+ * @type {string}
35
+ * @memberof AddApplicationRequest
36
+ */
37
+ 'display_name': string;
38
+ /**
39
+ *
40
+ * @type {string}
41
+ * @memberof AddApplicationRequest
42
+ */
43
+ 'bundle_id': string;
44
+ /**
45
+ *
46
+ * @type {string}
47
+ * @memberof AddApplicationRequest
48
+ */
49
+ 'owner_role'?: string;
50
+ }
51
+ /**
52
+ *
53
+ * @export
54
+ * @interface AggregationEmailTemplate
55
+ */
56
+ export interface AggregationEmailTemplate {
57
+ /**
58
+ *
59
+ * @type {string}
60
+ * @memberof AggregationEmailTemplate
61
+ */
62
+ 'created'?: string;
63
+ /**
64
+ *
65
+ * @type {string}
66
+ * @memberof AggregationEmailTemplate
67
+ */
68
+ 'updated'?: string;
69
+ /**
70
+ *
71
+ * @type {string}
72
+ * @memberof AggregationEmailTemplate
73
+ */
74
+ 'id'?: string;
75
+ /**
76
+ *
77
+ * @type {Application}
78
+ * @memberof AggregationEmailTemplate
79
+ */
80
+ 'application'?: Application;
81
+ /**
82
+ *
83
+ * @type {string}
84
+ * @memberof AggregationEmailTemplate
85
+ */
86
+ 'application_id'?: string;
87
+ /**
88
+ *
89
+ * @type {EmailSubscriptionType}
90
+ * @memberof AggregationEmailTemplate
91
+ */
92
+ 'subscription_type': EmailSubscriptionType;
93
+ /**
94
+ *
95
+ * @type {Template}
96
+ * @memberof AggregationEmailTemplate
97
+ */
98
+ 'subject_template'?: Template;
99
+ /**
100
+ *
101
+ * @type {string}
102
+ * @memberof AggregationEmailTemplate
103
+ */
104
+ 'subject_template_id': string;
105
+ /**
106
+ *
107
+ * @type {Template}
108
+ * @memberof AggregationEmailTemplate
109
+ */
110
+ 'body_template'?: Template;
111
+ /**
112
+ *
113
+ * @type {string}
114
+ * @memberof AggregationEmailTemplate
115
+ */
116
+ 'body_template_id': string;
117
+ }
118
+ /**
119
+ *
120
+ * @export
121
+ * @interface Application
122
+ */
123
+ export interface Application {
124
+ /**
125
+ *
126
+ * @type {string}
127
+ * @memberof Application
128
+ */
129
+ 'created'?: string;
130
+ /**
131
+ *
132
+ * @type {string}
133
+ * @memberof Application
134
+ */
135
+ 'updated'?: string;
136
+ /**
137
+ *
138
+ * @type {string}
139
+ * @memberof Application
140
+ */
141
+ 'id'?: string;
142
+ /**
143
+ *
144
+ * @type {string}
145
+ * @memberof Application
146
+ */
147
+ 'name': string;
148
+ /**
149
+ *
150
+ * @type {string}
151
+ * @memberof Application
152
+ */
153
+ 'display_name': string;
154
+ /**
155
+ *
156
+ * @type {string}
157
+ * @memberof Application
158
+ */
159
+ 'bundle_id': string;
160
+ }
161
+ /**
162
+ *
163
+ * @export
164
+ * @interface Application1
165
+ */
166
+ export interface Application1 {
167
+ /**
168
+ *
169
+ * @type {string}
170
+ * @memberof Application1
171
+ */
172
+ 'id': string;
173
+ /**
174
+ *
175
+ * @type {string}
176
+ * @memberof Application1
177
+ */
178
+ 'display_name': string;
179
+ }
180
+ /**
181
+ *
182
+ * @export
183
+ * @interface ApplicationSettingsValue
184
+ */
185
+ export interface ApplicationSettingsValue {
186
+ /**
187
+ *
188
+ * @type {{ [key: string]: EventTypeSettingsValue; }}
189
+ * @memberof ApplicationSettingsValue
190
+ */
191
+ 'eventTypes'?: {
192
+ [key: string]: EventTypeSettingsValue;
193
+ };
194
+ }
195
+ /**
196
+ *
197
+ * @export
198
+ * @interface ApplicationSettingsValue1
199
+ */
200
+ export interface ApplicationSettingsValue1 {
201
+ /**
202
+ *
203
+ * @type {{ [key: string]: boolean; }}
204
+ * @memberof ApplicationSettingsValue1
205
+ */
206
+ 'notifications'?: {
207
+ [key: string]: boolean;
208
+ };
209
+ /**
210
+ *
211
+ * @type {boolean}
212
+ * @memberof ApplicationSettingsValue1
213
+ */
214
+ 'hasForcedEmail'?: boolean;
215
+ }
216
+ /**
217
+ *
218
+ * @export
219
+ * @interface BasicAuthentication
220
+ */
221
+ export interface BasicAuthentication {
222
+ /**
223
+ *
224
+ * @type {string}
225
+ * @memberof BasicAuthentication
226
+ */
227
+ 'username'?: string;
228
+ /**
229
+ *
230
+ * @type {string}
231
+ * @memberof BasicAuthentication
232
+ */
233
+ 'password'?: string;
234
+ }
235
+ /**
236
+ *
237
+ * @export
238
+ * @interface BehaviorGroup
239
+ */
240
+ export interface BehaviorGroup {
241
+ /**
242
+ *
243
+ * @type {string}
244
+ * @memberof BehaviorGroup
245
+ */
246
+ 'created'?: string;
247
+ /**
248
+ *
249
+ * @type {string}
250
+ * @memberof BehaviorGroup
251
+ */
252
+ 'updated'?: string;
253
+ /**
254
+ *
255
+ * @type {string}
256
+ * @memberof BehaviorGroup
257
+ */
258
+ 'id'?: string;
259
+ /**
260
+ *
261
+ * @type {string}
262
+ * @memberof BehaviorGroup
263
+ */
264
+ 'display_name': string;
265
+ /**
266
+ *
267
+ * @type {string}
268
+ * @memberof BehaviorGroup
269
+ */
270
+ 'bundle_id': string;
271
+ /**
272
+ *
273
+ * @type {Bundle}
274
+ * @memberof BehaviorGroup
275
+ */
276
+ 'bundle'?: Bundle;
277
+ /**
278
+ *
279
+ * @type {Array<BehaviorGroupAction>}
280
+ * @memberof BehaviorGroup
281
+ */
282
+ 'actions'?: Array<BehaviorGroupAction>;
283
+ /**
284
+ *
285
+ * @type {Set<EventTypeBehavior>}
286
+ * @memberof BehaviorGroup
287
+ */
288
+ 'behaviors'?: Set<EventTypeBehavior>;
289
+ /**
290
+ *
291
+ * @type {boolean}
292
+ * @memberof BehaviorGroup
293
+ */
294
+ 'default_behavior'?: boolean;
295
+ }
296
+ /**
297
+ *
298
+ * @export
299
+ * @interface BehaviorGroupAction
300
+ */
301
+ export interface BehaviorGroupAction {
302
+ /**
303
+ *
304
+ * @type {string}
305
+ * @memberof BehaviorGroupAction
306
+ */
307
+ 'created'?: string;
308
+ /**
309
+ *
310
+ * @type {BehaviorGroupActionId}
311
+ * @memberof BehaviorGroupAction
312
+ */
313
+ 'id'?: BehaviorGroupActionId;
314
+ /**
315
+ *
316
+ * @type {Endpoint}
317
+ * @memberof BehaviorGroupAction
318
+ */
319
+ 'endpoint'?: Endpoint;
320
+ }
321
+ /**
322
+ *
323
+ * @export
324
+ * @interface BehaviorGroupActionId
325
+ */
326
+ export interface BehaviorGroupActionId {
327
+ /**
328
+ *
329
+ * @type {string}
330
+ * @memberof BehaviorGroupActionId
331
+ */
332
+ 'behaviorGroupId': string;
333
+ /**
334
+ *
335
+ * @type {string}
336
+ * @memberof BehaviorGroupActionId
337
+ */
338
+ 'endpointId': string;
339
+ }
340
+ /**
341
+ *
342
+ * @export
343
+ * @interface Bundle
344
+ */
345
+ export interface Bundle {
346
+ /**
347
+ *
348
+ * @type {string}
349
+ * @memberof Bundle
350
+ */
351
+ 'created'?: string;
352
+ /**
353
+ *
354
+ * @type {string}
355
+ * @memberof Bundle
356
+ */
357
+ 'updated'?: string;
358
+ /**
359
+ *
360
+ * @type {string}
361
+ * @memberof Bundle
362
+ */
363
+ 'id'?: string;
364
+ /**
365
+ *
366
+ * @type {string}
367
+ * @memberof Bundle
368
+ */
369
+ 'name': string;
370
+ /**
371
+ *
372
+ * @type {string}
373
+ * @memberof Bundle
374
+ */
375
+ 'display_name': string;
376
+ }
377
+ /**
378
+ *
379
+ * @export
380
+ * @interface BundleSettingsValue
381
+ */
382
+ export interface BundleSettingsValue {
383
+ /**
384
+ *
385
+ * @type {{ [key: string]: ApplicationSettingsValue; }}
386
+ * @memberof BundleSettingsValue
387
+ */
388
+ 'applications'?: {
389
+ [key: string]: ApplicationSettingsValue;
390
+ };
391
+ }
392
+ /**
393
+ *
394
+ * @export
395
+ * @interface BundleSettingsValue1
396
+ */
397
+ export interface BundleSettingsValue1 {
398
+ /**
399
+ *
400
+ * @type {{ [key: string]: ApplicationSettingsValue1; }}
401
+ * @memberof BundleSettingsValue1
402
+ */
403
+ 'applications'?: {
404
+ [key: string]: ApplicationSettingsValue1;
405
+ };
406
+ }
407
+ /**
408
+ *
409
+ * @export
410
+ * @interface CamelProperties
411
+ */
412
+ export interface CamelProperties {
413
+ /**
414
+ *
415
+ * @type {string}
416
+ * @memberof CamelProperties
417
+ */
418
+ 'url': string;
419
+ /**
420
+ *
421
+ * @type {boolean}
422
+ * @memberof CamelProperties
423
+ */
424
+ 'disable_ssl_verification': boolean;
425
+ /**
426
+ *
427
+ * @type {string}
428
+ * @memberof CamelProperties
429
+ */
430
+ 'secret_token'?: string;
431
+ /**
432
+ *
433
+ * @type {BasicAuthentication}
434
+ * @memberof CamelProperties
435
+ */
436
+ 'basic_authentication'?: BasicAuthentication;
437
+ /**
438
+ *
439
+ * @type {{ [key: string]: string; }}
440
+ * @memberof CamelProperties
441
+ */
442
+ 'extras'?: {
443
+ [key: string]: string;
444
+ };
445
+ }
446
+ /**
447
+ *
448
+ * @export
449
+ * @interface CreateBehaviorGroupRequest
450
+ */
451
+ export interface CreateBehaviorGroupRequest {
452
+ /**
453
+ *
454
+ * @type {string}
455
+ * @memberof CreateBehaviorGroupRequest
456
+ */
457
+ 'bundle_id'?: string;
458
+ /**
459
+ *
460
+ * @type {string}
461
+ * @memberof CreateBehaviorGroupRequest
462
+ */
463
+ 'bundle_name'?: string;
464
+ /**
465
+ *
466
+ * @type {string}
467
+ * @memberof CreateBehaviorGroupRequest
468
+ */
469
+ 'display_name': string;
470
+ /**
471
+ *
472
+ * @type {Array<string>}
473
+ * @memberof CreateBehaviorGroupRequest
474
+ */
475
+ 'endpoint_ids'?: Array<string>;
476
+ /**
477
+ *
478
+ * @type {Set<string>}
479
+ * @memberof CreateBehaviorGroupRequest
480
+ */
481
+ 'event_type_ids'?: Set<string>;
482
+ /**
483
+ *
484
+ * @type {boolean}
485
+ * @memberof CreateBehaviorGroupRequest
486
+ */
487
+ 'bundle_uuid_or_bundle_name_valid'?: boolean;
488
+ }
489
+ /**
490
+ *
491
+ * @export
492
+ * @interface CreateBehaviorGroupResponse
493
+ */
494
+ export interface CreateBehaviorGroupResponse {
495
+ /**
496
+ *
497
+ * @type {string}
498
+ * @memberof CreateBehaviorGroupResponse
499
+ */
500
+ 'id': string;
501
+ /**
502
+ *
503
+ * @type {string}
504
+ * @memberof CreateBehaviorGroupResponse
505
+ */
506
+ 'bundle_id': string;
507
+ /**
508
+ *
509
+ * @type {string}
510
+ * @memberof CreateBehaviorGroupResponse
511
+ */
512
+ 'display_name': string;
513
+ /**
514
+ *
515
+ * @type {Array<string>}
516
+ * @memberof CreateBehaviorGroupResponse
517
+ */
518
+ 'endpoints': Array<string>;
519
+ /**
520
+ *
521
+ * @type {Set<string>}
522
+ * @memberof CreateBehaviorGroupResponse
523
+ */
524
+ 'event_types': Set<string>;
525
+ /**
526
+ *
527
+ * @type {string}
528
+ * @memberof CreateBehaviorGroupResponse
529
+ */
530
+ 'created': string;
531
+ }
532
+ /**
533
+ *
534
+ * @export
535
+ * @interface CurrentStatus
536
+ */
537
+ export interface CurrentStatus {
538
+ /**
539
+ *
540
+ * @type {Status}
541
+ * @memberof CurrentStatus
542
+ */
543
+ 'status': Status;
544
+ /**
545
+ *
546
+ * @type {string}
547
+ * @memberof CurrentStatus
548
+ */
549
+ 'start_time'?: string;
550
+ /**
551
+ *
552
+ * @type {string}
553
+ * @memberof CurrentStatus
554
+ */
555
+ 'end_time'?: string;
556
+ }
557
+ /**
558
+ *
559
+ * @export
560
+ * @interface DuplicateNameMigrationReport
561
+ */
562
+ export interface DuplicateNameMigrationReport {
563
+ /**
564
+ *
565
+ * @type {number}
566
+ * @memberof DuplicateNameMigrationReport
567
+ */
568
+ 'updatedIntegrations'?: number;
569
+ /**
570
+ *
571
+ * @type {number}
572
+ * @memberof DuplicateNameMigrationReport
573
+ */
574
+ 'updatedBehaviorGroups'?: number;
575
+ }
576
+ /**
577
+ *
578
+ * @export
579
+ * @enum {string}
580
+ */
581
+ export declare const EmailSubscriptionType: {
582
+ readonly Daily: "DAILY";
583
+ };
584
+ export declare type EmailSubscriptionType = typeof EmailSubscriptionType[keyof typeof EmailSubscriptionType];
585
+ /**
586
+ *
587
+ * @export
588
+ * @interface Endpoint
589
+ */
590
+ export interface Endpoint {
591
+ /**
592
+ *
593
+ * @type {string}
594
+ * @memberof Endpoint
595
+ */
596
+ 'created'?: string;
597
+ /**
598
+ *
599
+ * @type {string}
600
+ * @memberof Endpoint
601
+ */
602
+ 'updated'?: string;
603
+ /**
604
+ *
605
+ * @type {string}
606
+ * @memberof Endpoint
607
+ */
608
+ 'id'?: string;
609
+ /**
610
+ *
611
+ * @type {string}
612
+ * @memberof Endpoint
613
+ */
614
+ 'name': string;
615
+ /**
616
+ *
617
+ * @type {string}
618
+ * @memberof Endpoint
619
+ */
620
+ 'description': string;
621
+ /**
622
+ *
623
+ * @type {boolean}
624
+ * @memberof Endpoint
625
+ */
626
+ 'enabled'?: boolean;
627
+ /**
628
+ *
629
+ * @type {EndpointStatus}
630
+ * @memberof Endpoint
631
+ */
632
+ 'status'?: EndpointStatus;
633
+ /**
634
+ *
635
+ * @type {number}
636
+ * @memberof Endpoint
637
+ */
638
+ 'server_errors'?: number;
639
+ /**
640
+ *
641
+ * @type {object}
642
+ * @memberof Endpoint
643
+ */
644
+ 'properties'?: object;
645
+ /**
646
+ *
647
+ * @type {EndpointType}
648
+ * @memberof Endpoint
649
+ */
650
+ 'type': EndpointType;
651
+ /**
652
+ *
653
+ * @type {string}
654
+ * @memberof Endpoint
655
+ */
656
+ 'sub_type'?: string;
657
+ }
658
+ /**
659
+ *
660
+ * @export
661
+ * @interface EndpointPage
662
+ */
663
+ export interface EndpointPage {
664
+ /**
665
+ *
666
+ * @type {Array<Endpoint>}
667
+ * @memberof EndpointPage
668
+ */
669
+ 'data': Array<Endpoint>;
670
+ /**
671
+ *
672
+ * @type {{ [key: string]: string; }}
673
+ * @memberof EndpointPage
674
+ */
675
+ 'links': {
676
+ [key: string]: string;
677
+ };
678
+ /**
679
+ *
680
+ * @type {Meta}
681
+ * @memberof EndpointPage
682
+ */
683
+ 'meta': Meta;
684
+ }
685
+ /**
686
+ *
687
+ * @export
688
+ * @enum {string}
689
+ */
690
+ export declare const EndpointStatus: {
691
+ readonly Ready: "READY";
692
+ readonly Unknown: "UNKNOWN";
693
+ readonly New: "NEW";
694
+ readonly Provisioning: "PROVISIONING";
695
+ readonly Deleting: "DELETING";
696
+ readonly Failed: "FAILED";
697
+ };
698
+ export declare type EndpointStatus = typeof EndpointStatus[keyof typeof EndpointStatus];
699
+ /**
700
+ *
701
+ * @export
702
+ * @interface EndpointTestRequest
703
+ */
704
+ export interface EndpointTestRequest {
705
+ /**
706
+ *
707
+ * @type {string}
708
+ * @memberof EndpointTestRequest
709
+ */
710
+ 'message': string;
711
+ }
712
+ /**
713
+ *
714
+ * @export
715
+ * @enum {string}
716
+ */
717
+ export declare const EndpointType: {
718
+ readonly Webhook: "webhook";
719
+ readonly EmailSubscription: "email_subscription";
720
+ readonly Camel: "camel";
721
+ readonly Ansible: "ansible";
722
+ readonly Drawer: "drawer";
723
+ };
724
+ export declare type EndpointType = typeof EndpointType[keyof typeof EndpointType];
725
+ /**
726
+ *
727
+ * @export
728
+ * @enum {string}
729
+ */
730
+ export declare const Environment: {
731
+ readonly Prod: "PROD";
732
+ readonly Stage: "STAGE";
733
+ readonly Ephemeral: "EPHEMERAL";
734
+ readonly LocalServer: "LOCAL_SERVER";
735
+ };
736
+ export declare type Environment = typeof Environment[keyof typeof Environment];
737
+ /**
738
+ *
739
+ * @export
740
+ * @interface EventLogEntry
741
+ */
742
+ export interface EventLogEntry {
743
+ /**
744
+ *
745
+ * @type {string}
746
+ * @memberof EventLogEntry
747
+ */
748
+ 'id': string;
749
+ /**
750
+ *
751
+ * @type {string}
752
+ * @memberof EventLogEntry
753
+ */
754
+ 'created': string;
755
+ /**
756
+ *
757
+ * @type {string}
758
+ * @memberof EventLogEntry
759
+ */
760
+ 'bundle': string;
761
+ /**
762
+ *
763
+ * @type {string}
764
+ * @memberof EventLogEntry
765
+ */
766
+ 'application': string;
767
+ /**
768
+ *
769
+ * @type {string}
770
+ * @memberof EventLogEntry
771
+ */
772
+ 'event_type': string;
773
+ /**
774
+ *
775
+ * @type {string}
776
+ * @memberof EventLogEntry
777
+ */
778
+ 'payload'?: string;
779
+ /**
780
+ *
781
+ * @type {Array<EventLogEntryAction>}
782
+ * @memberof EventLogEntry
783
+ */
784
+ 'actions': Array<EventLogEntryAction>;
785
+ }
786
+ /**
787
+ *
788
+ * @export
789
+ * @interface EventLogEntryAction
790
+ */
791
+ export interface EventLogEntryAction {
792
+ /**
793
+ *
794
+ * @type {string}
795
+ * @memberof EventLogEntryAction
796
+ */
797
+ 'id': string;
798
+ /**
799
+ *
800
+ * @type {EndpointType}
801
+ * @memberof EventLogEntryAction
802
+ */
803
+ 'endpoint_type': EndpointType;
804
+ /**
805
+ *
806
+ * @type {string}
807
+ * @memberof EventLogEntryAction
808
+ */
809
+ 'endpoint_sub_type'?: string;
810
+ /**
811
+ *
812
+ * @type {boolean}
813
+ * @memberof EventLogEntryAction
814
+ * @deprecated
815
+ */
816
+ 'invocation_result': boolean;
817
+ /**
818
+ *
819
+ * @type {EventLogEntryActionStatus}
820
+ * @memberof EventLogEntryAction
821
+ */
822
+ 'status': EventLogEntryActionStatus;
823
+ /**
824
+ *
825
+ * @type {string}
826
+ * @memberof EventLogEntryAction
827
+ */
828
+ 'endpoint_id'?: string;
829
+ /**
830
+ *
831
+ * @type {{ [key: string]: object; }}
832
+ * @memberof EventLogEntryAction
833
+ */
834
+ 'details'?: {
835
+ [key: string]: object;
836
+ };
837
+ }
838
+ /**
839
+ *
840
+ * @export
841
+ * @enum {string}
842
+ */
843
+ export declare const EventLogEntryActionStatus: {
844
+ readonly Sent: "SENT";
845
+ readonly Success: "SUCCESS";
846
+ readonly Processing: "PROCESSING";
847
+ readonly Failed: "FAILED";
848
+ readonly Unknown: "UNKNOWN";
849
+ };
850
+ export declare type EventLogEntryActionStatus = typeof EventLogEntryActionStatus[keyof typeof EventLogEntryActionStatus];
851
+ /**
852
+ *
853
+ * @export
854
+ * @interface EventType
855
+ */
856
+ export interface EventType {
857
+ /**
858
+ *
859
+ * @type {string}
860
+ * @memberof EventType
861
+ */
862
+ 'id'?: string;
863
+ /**
864
+ *
865
+ * @type {string}
866
+ * @memberof EventType
867
+ */
868
+ 'name': string;
869
+ /**
870
+ *
871
+ * @type {string}
872
+ * @memberof EventType
873
+ */
874
+ 'display_name': string;
875
+ /**
876
+ *
877
+ * @type {string}
878
+ * @memberof EventType
879
+ */
880
+ 'description'?: string;
881
+ /**
882
+ *
883
+ * @type {string}
884
+ * @memberof EventType
885
+ */
886
+ 'fully_qualified_name'?: string;
887
+ /**
888
+ *
889
+ * @type {string}
890
+ * @memberof EventType
891
+ */
892
+ 'application_id': string;
893
+ /**
894
+ *
895
+ * @type {Application}
896
+ * @memberof EventType
897
+ */
898
+ 'application'?: Application;
899
+ }
900
+ /**
901
+ *
902
+ * @export
903
+ * @interface EventTypeBehavior
904
+ */
905
+ export interface EventTypeBehavior {
906
+ /**
907
+ *
908
+ * @type {string}
909
+ * @memberof EventTypeBehavior
910
+ */
911
+ 'created'?: string;
912
+ /**
913
+ *
914
+ * @type {EventTypeBehaviorId}
915
+ * @memberof EventTypeBehavior
916
+ */
917
+ 'id'?: EventTypeBehaviorId;
918
+ /**
919
+ *
920
+ * @type {EventType}
921
+ * @memberof EventTypeBehavior
922
+ */
923
+ 'event_type'?: EventType;
924
+ }
925
+ /**
926
+ *
927
+ * @export
928
+ * @interface EventTypeBehaviorId
929
+ */
930
+ export interface EventTypeBehaviorId {
931
+ /**
932
+ *
933
+ * @type {string}
934
+ * @memberof EventTypeBehaviorId
935
+ */
936
+ 'eventTypeId': string;
937
+ /**
938
+ *
939
+ * @type {string}
940
+ * @memberof EventTypeBehaviorId
941
+ */
942
+ 'behaviorGroupId': string;
943
+ }
944
+ /**
945
+ *
946
+ * @export
947
+ * @interface EventTypeSettingsValue
948
+ */
949
+ export interface EventTypeSettingsValue {
950
+ /**
951
+ *
952
+ * @type {{ [key: string]: boolean; }}
953
+ * @memberof EventTypeSettingsValue
954
+ */
955
+ 'emailSubscriptionTypes'?: {
956
+ [key: string]: boolean;
957
+ };
958
+ /**
959
+ *
960
+ * @type {boolean}
961
+ * @memberof EventTypeSettingsValue
962
+ */
963
+ 'hasForcedEmail'?: boolean;
964
+ }
965
+ /**
966
+ *
967
+ * @export
968
+ * @interface Facet
969
+ */
970
+ export interface Facet {
971
+ /**
972
+ *
973
+ * @type {string}
974
+ * @memberof Facet
975
+ */
976
+ 'id': string;
977
+ /**
978
+ *
979
+ * @type {string}
980
+ * @memberof Facet
981
+ */
982
+ 'name': string;
983
+ /**
984
+ *
985
+ * @type {string}
986
+ * @memberof Facet
987
+ */
988
+ 'displayName': string;
989
+ /**
990
+ *
991
+ * @type {Array<Facet>}
992
+ * @memberof Facet
993
+ */
994
+ 'children'?: Array<Facet>;
995
+ }
996
+ /**
997
+ *
998
+ * @export
999
+ * @enum {string}
1000
+ */
1001
+ export declare const HttpType: {
1002
+ readonly Get: "GET";
1003
+ readonly Post: "POST";
1004
+ readonly Put: "PUT";
1005
+ };
1006
+ export declare type HttpType = typeof HttpType[keyof typeof HttpType];
1007
+ /**
1008
+ *
1009
+ * @export
1010
+ * @interface InstantEmailTemplate
1011
+ */
1012
+ export interface InstantEmailTemplate {
1013
+ /**
1014
+ *
1015
+ * @type {string}
1016
+ * @memberof InstantEmailTemplate
1017
+ */
1018
+ 'created'?: string;
1019
+ /**
1020
+ *
1021
+ * @type {string}
1022
+ * @memberof InstantEmailTemplate
1023
+ */
1024
+ 'updated'?: string;
1025
+ /**
1026
+ *
1027
+ * @type {string}
1028
+ * @memberof InstantEmailTemplate
1029
+ */
1030
+ 'id'?: string;
1031
+ /**
1032
+ *
1033
+ * @type {EventType}
1034
+ * @memberof InstantEmailTemplate
1035
+ */
1036
+ 'event_type'?: EventType;
1037
+ /**
1038
+ *
1039
+ * @type {string}
1040
+ * @memberof InstantEmailTemplate
1041
+ */
1042
+ 'event_type_id'?: string;
1043
+ /**
1044
+ *
1045
+ * @type {Template}
1046
+ * @memberof InstantEmailTemplate
1047
+ */
1048
+ 'subject_template'?: Template;
1049
+ /**
1050
+ *
1051
+ * @type {string}
1052
+ * @memberof InstantEmailTemplate
1053
+ */
1054
+ 'subject_template_id': string;
1055
+ /**
1056
+ *
1057
+ * @type {Template}
1058
+ * @memberof InstantEmailTemplate
1059
+ */
1060
+ 'body_template'?: Template;
1061
+ /**
1062
+ *
1063
+ * @type {string}
1064
+ * @memberof InstantEmailTemplate
1065
+ */
1066
+ 'body_template_id': string;
1067
+ }
1068
+ /**
1069
+ *
1070
+ * @export
1071
+ * @interface InternalApplicationUserPermission
1072
+ */
1073
+ export interface InternalApplicationUserPermission {
1074
+ /**
1075
+ *
1076
+ * @type {string}
1077
+ * @memberof InternalApplicationUserPermission
1078
+ */
1079
+ 'application_id': string;
1080
+ /**
1081
+ *
1082
+ * @type {string}
1083
+ * @memberof InternalApplicationUserPermission
1084
+ */
1085
+ 'application_display_name': string;
1086
+ /**
1087
+ *
1088
+ * @type {string}
1089
+ * @memberof InternalApplicationUserPermission
1090
+ */
1091
+ 'role': string;
1092
+ }
1093
+ /**
1094
+ *
1095
+ * @export
1096
+ * @interface InternalRoleAccess
1097
+ */
1098
+ export interface InternalRoleAccess {
1099
+ /**
1100
+ *
1101
+ * @type {string}
1102
+ * @memberof InternalRoleAccess
1103
+ */
1104
+ 'id'?: string;
1105
+ /**
1106
+ *
1107
+ * @type {string}
1108
+ * @memberof InternalRoleAccess
1109
+ */
1110
+ 'role': string;
1111
+ /**
1112
+ *
1113
+ * @type {string}
1114
+ * @memberof InternalRoleAccess
1115
+ */
1116
+ 'application_id': string;
1117
+ }
1118
+ /**
1119
+ *
1120
+ * @export
1121
+ * @interface InternalUserPermissions
1122
+ */
1123
+ export interface InternalUserPermissions {
1124
+ /**
1125
+ *
1126
+ * @type {boolean}
1127
+ * @memberof InternalUserPermissions
1128
+ */
1129
+ 'is_admin': boolean;
1130
+ /**
1131
+ *
1132
+ * @type {Array<Application1>}
1133
+ * @memberof InternalUserPermissions
1134
+ */
1135
+ 'applications': Array<Application1>;
1136
+ /**
1137
+ *
1138
+ * @type {Array<string>}
1139
+ * @memberof InternalUserPermissions
1140
+ */
1141
+ 'roles': Array<string>;
1142
+ }
1143
+ /**
1144
+ *
1145
+ * @export
1146
+ * @interface MessageValidationResponse
1147
+ */
1148
+ export interface MessageValidationResponse {
1149
+ /**
1150
+ *
1151
+ * @type {{ [key: string]: Array<string>; }}
1152
+ * @memberof MessageValidationResponse
1153
+ */
1154
+ 'errors': {
1155
+ [key: string]: Array<string>;
1156
+ };
1157
+ }
1158
+ /**
1159
+ *
1160
+ * @export
1161
+ * @interface Meta
1162
+ */
1163
+ export interface Meta {
1164
+ /**
1165
+ *
1166
+ * @type {number}
1167
+ * @memberof Meta
1168
+ */
1169
+ 'count': number;
1170
+ }
1171
+ /**
1172
+ *
1173
+ * @export
1174
+ * @interface NotificationHistory
1175
+ */
1176
+ export interface NotificationHistory {
1177
+ /**
1178
+ *
1179
+ * @type {string}
1180
+ * @memberof NotificationHistory
1181
+ */
1182
+ 'created'?: string;
1183
+ /**
1184
+ *
1185
+ * @type {string}
1186
+ * @memberof NotificationHistory
1187
+ */
1188
+ 'id'?: string;
1189
+ /**
1190
+ *
1191
+ * @type {number}
1192
+ * @memberof NotificationHistory
1193
+ */
1194
+ 'invocationTime': number;
1195
+ /**
1196
+ *
1197
+ * @type {boolean}
1198
+ * @memberof NotificationHistory
1199
+ * @deprecated
1200
+ */
1201
+ 'invocationResult': boolean;
1202
+ /**
1203
+ *
1204
+ * @type {NotificationStatus}
1205
+ * @memberof NotificationHistory
1206
+ */
1207
+ 'status': NotificationStatus;
1208
+ /**
1209
+ *
1210
+ * @type {string}
1211
+ * @memberof NotificationHistory
1212
+ */
1213
+ 'endpointId'?: string;
1214
+ /**
1215
+ *
1216
+ * @type {{ [key: string]: object; }}
1217
+ * @memberof NotificationHistory
1218
+ */
1219
+ 'details'?: {
1220
+ [key: string]: object;
1221
+ };
1222
+ /**
1223
+ *
1224
+ * @type {EndpointType}
1225
+ * @memberof NotificationHistory
1226
+ */
1227
+ 'endpointType'?: EndpointType;
1228
+ /**
1229
+ *
1230
+ * @type {string}
1231
+ * @memberof NotificationHistory
1232
+ */
1233
+ 'endpointSubType'?: string;
1234
+ }
1235
+ /**
1236
+ *
1237
+ * @export
1238
+ * @enum {string}
1239
+ */
1240
+ export declare const NotificationStatus: {
1241
+ readonly FailedInternal: "FAILED_INTERNAL";
1242
+ readonly FailedExternal: "FAILED_EXTERNAL";
1243
+ readonly Processing: "PROCESSING";
1244
+ readonly Sent: "SENT";
1245
+ readonly Success: "SUCCESS";
1246
+ };
1247
+ export declare type NotificationStatus = typeof NotificationStatus[keyof typeof NotificationStatus];
1248
+ /**
1249
+ *
1250
+ * @export
1251
+ * @interface PageBehaviorGroup
1252
+ */
1253
+ export interface PageBehaviorGroup {
1254
+ /**
1255
+ *
1256
+ * @type {Array<BehaviorGroup>}
1257
+ * @memberof PageBehaviorGroup
1258
+ */
1259
+ 'data': Array<BehaviorGroup>;
1260
+ /**
1261
+ *
1262
+ * @type {{ [key: string]: string; }}
1263
+ * @memberof PageBehaviorGroup
1264
+ */
1265
+ 'links': {
1266
+ [key: string]: string;
1267
+ };
1268
+ /**
1269
+ *
1270
+ * @type {Meta}
1271
+ * @memberof PageBehaviorGroup
1272
+ */
1273
+ 'meta': Meta;
1274
+ }
1275
+ /**
1276
+ *
1277
+ * @export
1278
+ * @interface PageEventLogEntry
1279
+ */
1280
+ export interface PageEventLogEntry {
1281
+ /**
1282
+ *
1283
+ * @type {Array<EventLogEntry>}
1284
+ * @memberof PageEventLogEntry
1285
+ */
1286
+ 'data': Array<EventLogEntry>;
1287
+ /**
1288
+ *
1289
+ * @type {{ [key: string]: string; }}
1290
+ * @memberof PageEventLogEntry
1291
+ */
1292
+ 'links': {
1293
+ [key: string]: string;
1294
+ };
1295
+ /**
1296
+ *
1297
+ * @type {Meta}
1298
+ * @memberof PageEventLogEntry
1299
+ */
1300
+ 'meta': Meta;
1301
+ }
1302
+ /**
1303
+ *
1304
+ * @export
1305
+ * @interface PageEventType
1306
+ */
1307
+ export interface PageEventType {
1308
+ /**
1309
+ *
1310
+ * @type {Array<EventType>}
1311
+ * @memberof PageEventType
1312
+ */
1313
+ 'data': Array<EventType>;
1314
+ /**
1315
+ *
1316
+ * @type {{ [key: string]: string; }}
1317
+ * @memberof PageEventType
1318
+ */
1319
+ 'links': {
1320
+ [key: string]: string;
1321
+ };
1322
+ /**
1323
+ *
1324
+ * @type {Meta}
1325
+ * @memberof PageEventType
1326
+ */
1327
+ 'meta': Meta;
1328
+ }
1329
+ /**
1330
+ *
1331
+ * @export
1332
+ * @interface PageNotificationHistory
1333
+ */
1334
+ export interface PageNotificationHistory {
1335
+ /**
1336
+ *
1337
+ * @type {Array<NotificationHistory>}
1338
+ * @memberof PageNotificationHistory
1339
+ */
1340
+ 'data': Array<NotificationHistory>;
1341
+ /**
1342
+ *
1343
+ * @type {{ [key: string]: string; }}
1344
+ * @memberof PageNotificationHistory
1345
+ */
1346
+ 'links': {
1347
+ [key: string]: string;
1348
+ };
1349
+ /**
1350
+ *
1351
+ * @type {Meta}
1352
+ * @memberof PageNotificationHistory
1353
+ */
1354
+ 'meta': Meta;
1355
+ }
1356
+ /**
1357
+ *
1358
+ * @export
1359
+ * @interface RenderEmailTemplateRequest
1360
+ */
1361
+ export interface RenderEmailTemplateRequest {
1362
+ /**
1363
+ *
1364
+ * @type {Array<string>}
1365
+ * @memberof RenderEmailTemplateRequest
1366
+ */
1367
+ 'template': Array<string>;
1368
+ /**
1369
+ *
1370
+ * @type {string}
1371
+ * @memberof RenderEmailTemplateRequest
1372
+ */
1373
+ 'payload': string;
1374
+ }
1375
+ /**
1376
+ *
1377
+ * @export
1378
+ * @interface RequestDefaultBehaviorGroupPropertyList
1379
+ */
1380
+ export interface RequestDefaultBehaviorGroupPropertyList {
1381
+ /**
1382
+ *
1383
+ * @type {boolean}
1384
+ * @memberof RequestDefaultBehaviorGroupPropertyList
1385
+ */
1386
+ 'only_admins': boolean;
1387
+ /**
1388
+ *
1389
+ * @type {boolean}
1390
+ * @memberof RequestDefaultBehaviorGroupPropertyList
1391
+ */
1392
+ 'ignore_preferences': boolean;
1393
+ }
1394
+ /**
1395
+ *
1396
+ * @export
1397
+ * @interface RequestSystemSubscriptionProperties
1398
+ */
1399
+ export interface RequestSystemSubscriptionProperties {
1400
+ /**
1401
+ *
1402
+ * @type {boolean}
1403
+ * @memberof RequestSystemSubscriptionProperties
1404
+ */
1405
+ 'only_admins': boolean;
1406
+ /**
1407
+ *
1408
+ * @type {string}
1409
+ * @memberof RequestSystemSubscriptionProperties
1410
+ */
1411
+ 'group_id'?: string;
1412
+ }
1413
+ /**
1414
+ *
1415
+ * @export
1416
+ * @interface ServerInfo
1417
+ */
1418
+ export interface ServerInfo {
1419
+ /**
1420
+ *
1421
+ * @type {Environment}
1422
+ * @memberof ServerInfo
1423
+ */
1424
+ 'environment'?: Environment;
1425
+ }
1426
+ /**
1427
+ *
1428
+ * @export
1429
+ * @interface SettingsValues
1430
+ */
1431
+ export interface SettingsValues {
1432
+ /**
1433
+ *
1434
+ * @type {{ [key: string]: BundleSettingsValue1; }}
1435
+ * @memberof SettingsValues
1436
+ */
1437
+ 'bundles'?: {
1438
+ [key: string]: BundleSettingsValue1;
1439
+ };
1440
+ }
1441
+ /**
1442
+ *
1443
+ * @export
1444
+ * @interface SettingsValuesByEventType
1445
+ */
1446
+ export interface SettingsValuesByEventType {
1447
+ /**
1448
+ *
1449
+ * @type {{ [key: string]: BundleSettingsValue; }}
1450
+ * @memberof SettingsValuesByEventType
1451
+ */
1452
+ 'bundles'?: {
1453
+ [key: string]: BundleSettingsValue;
1454
+ };
1455
+ }
1456
+ /**
1457
+ *
1458
+ * @export
1459
+ * @enum {string}
1460
+ */
1461
+ export declare const Status: {
1462
+ readonly Up: "UP";
1463
+ readonly Maintenance: "MAINTENANCE";
1464
+ };
1465
+ export declare type Status = typeof Status[keyof typeof Status];
1466
+ /**
1467
+ *
1468
+ * @export
1469
+ * @interface SystemSubscriptionProperties
1470
+ */
1471
+ export interface SystemSubscriptionProperties {
1472
+ /**
1473
+ *
1474
+ * @type {boolean}
1475
+ * @memberof SystemSubscriptionProperties
1476
+ */
1477
+ 'only_admins': boolean;
1478
+ /**
1479
+ *
1480
+ * @type {boolean}
1481
+ * @memberof SystemSubscriptionProperties
1482
+ */
1483
+ 'ignore_preferences': boolean;
1484
+ /**
1485
+ *
1486
+ * @type {string}
1487
+ * @memberof SystemSubscriptionProperties
1488
+ */
1489
+ 'group_id'?: string;
1490
+ }
1491
+ /**
1492
+ *
1493
+ * @export
1494
+ * @interface Template
1495
+ */
1496
+ export interface Template {
1497
+ /**
1498
+ *
1499
+ * @type {string}
1500
+ * @memberof Template
1501
+ */
1502
+ 'created'?: string;
1503
+ /**
1504
+ *
1505
+ * @type {string}
1506
+ * @memberof Template
1507
+ */
1508
+ 'updated'?: string;
1509
+ /**
1510
+ *
1511
+ * @type {string}
1512
+ * @memberof Template
1513
+ */
1514
+ 'id'?: string;
1515
+ /**
1516
+ *
1517
+ * @type {string}
1518
+ * @memberof Template
1519
+ */
1520
+ 'name': string;
1521
+ /**
1522
+ *
1523
+ * @type {string}
1524
+ * @memberof Template
1525
+ */
1526
+ 'description': string;
1527
+ /**
1528
+ *
1529
+ * @type {string}
1530
+ * @memberof Template
1531
+ */
1532
+ 'data': string;
1533
+ }
1534
+ /**
1535
+ *
1536
+ * @export
1537
+ * @interface TriggerDailyDigestRequest
1538
+ */
1539
+ export interface TriggerDailyDigestRequest {
1540
+ /**
1541
+ *
1542
+ * @type {string}
1543
+ * @memberof TriggerDailyDigestRequest
1544
+ */
1545
+ 'application_name': string;
1546
+ /**
1547
+ *
1548
+ * @type {string}
1549
+ * @memberof TriggerDailyDigestRequest
1550
+ */
1551
+ 'bundle_name': string;
1552
+ /**
1553
+ *
1554
+ * @type {string}
1555
+ * @memberof TriggerDailyDigestRequest
1556
+ */
1557
+ 'end'?: string;
1558
+ /**
1559
+ *
1560
+ * @type {string}
1561
+ * @memberof TriggerDailyDigestRequest
1562
+ */
1563
+ 'org_id': string;
1564
+ /**
1565
+ *
1566
+ * @type {string}
1567
+ * @memberof TriggerDailyDigestRequest
1568
+ */
1569
+ 'start'?: string;
1570
+ }
1571
+ /**
1572
+ *
1573
+ * @export
1574
+ * @interface UpdateBehaviorGroupRequest
1575
+ */
1576
+ export interface UpdateBehaviorGroupRequest {
1577
+ /**
1578
+ *
1579
+ * @type {string}
1580
+ * @memberof UpdateBehaviorGroupRequest
1581
+ */
1582
+ 'display_name'?: string;
1583
+ /**
1584
+ *
1585
+ * @type {Array<string>}
1586
+ * @memberof UpdateBehaviorGroupRequest
1587
+ */
1588
+ 'endpoint_ids'?: Array<string>;
1589
+ /**
1590
+ *
1591
+ * @type {Set<string>}
1592
+ * @memberof UpdateBehaviorGroupRequest
1593
+ */
1594
+ 'event_type_ids'?: Set<string>;
1595
+ /**
1596
+ *
1597
+ * @type {boolean}
1598
+ * @memberof UpdateBehaviorGroupRequest
1599
+ */
1600
+ 'display_name_not_null_and_blank'?: boolean;
1601
+ }
1602
+ /**
1603
+ *
1604
+ * @export
1605
+ * @interface UserConfigPreferences
1606
+ */
1607
+ export interface UserConfigPreferences {
1608
+ /**
1609
+ *
1610
+ * @type {boolean}
1611
+ * @memberof UserConfigPreferences
1612
+ */
1613
+ 'instant_email'?: boolean;
1614
+ /**
1615
+ *
1616
+ * @type {boolean}
1617
+ * @memberof UserConfigPreferences
1618
+ */
1619
+ 'daily_email'?: boolean;
1620
+ }
1621
+ /**
1622
+ *
1623
+ * @export
1624
+ * @interface WebhookProperties
1625
+ */
1626
+ export interface WebhookProperties {
1627
+ /**
1628
+ *
1629
+ * @type {string}
1630
+ * @memberof WebhookProperties
1631
+ */
1632
+ 'url': string;
1633
+ /**
1634
+ *
1635
+ * @type {HttpType}
1636
+ * @memberof WebhookProperties
1637
+ */
1638
+ 'method': HttpType;
1639
+ /**
1640
+ *
1641
+ * @type {boolean}
1642
+ * @memberof WebhookProperties
1643
+ */
1644
+ 'disable_ssl_verification': boolean;
1645
+ /**
1646
+ *
1647
+ * @type {string}
1648
+ * @memberof WebhookProperties
1649
+ */
1650
+ 'secret_token'?: string;
1651
+ /**
1652
+ *
1653
+ * @type {BasicAuthentication}
1654
+ * @memberof WebhookProperties
1655
+ */
1656
+ 'basic_authentication'?: BasicAuthentication;
1657
+ }