@redhat-cloud-services/notifications-client 2.5.2 → 2.5.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +4 -0
- package/dist/NotificationResourceV1DeleteBehaviorGroupFromEventType/index.d.ts +2 -2
- package/dist/NotificationResourceV1DeleteBehaviorGroupFromEventType/index.js +2 -2
- package/dist/NotificationResourceV1UpdateEventTypeEndpoints/index.d.ts +27 -0
- package/dist/NotificationResourceV1UpdateEventTypeEndpoints/index.d.ts.map +1 -0
- package/dist/NotificationResourceV1UpdateEventTypeEndpoints/index.js +49 -0
- package/dist/NotificationResourceV1UpdateEventTypeEndpoints/index.js.map +1 -0
- package/dist/api.d.ts +184 -1300
- package/dist/api.d.ts.map +1 -1
- package/dist/api.js +135 -98
- package/dist/api.js.map +1 -1
- package/dist/index.d.ts +1 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +4 -1
- package/dist/index.js.map +1 -1
- package/dist/types/index.d.ts +64 -1243
- package/dist/types/index.d.ts.map +1 -1
- package/dist/types/index.js +1 -89
- package/dist/types/index.js.map +1 -1
- package/package.json +1 -1
package/dist/types/index.d.ts
CHANGED
|
@@ -1,163 +1,3 @@
|
|
|
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 {SubscriptionType}
|
|
90
|
-
* @memberof AggregationEmailTemplate
|
|
91
|
-
*/
|
|
92
|
-
'subscription_type': SubscriptionType;
|
|
93
|
-
/**
|
|
94
|
-
*
|
|
95
|
-
* @type {AggregationEmailTemplateSubjectTemplate}
|
|
96
|
-
* @memberof AggregationEmailTemplate
|
|
97
|
-
*/
|
|
98
|
-
'subject_template'?: AggregationEmailTemplateSubjectTemplate;
|
|
99
|
-
/**
|
|
100
|
-
*
|
|
101
|
-
* @type {string}
|
|
102
|
-
* @memberof AggregationEmailTemplate
|
|
103
|
-
*/
|
|
104
|
-
'subject_template_id': string;
|
|
105
|
-
/**
|
|
106
|
-
*
|
|
107
|
-
* @type {AggregationEmailTemplateSubjectTemplate}
|
|
108
|
-
* @memberof AggregationEmailTemplate
|
|
109
|
-
*/
|
|
110
|
-
'body_template'?: AggregationEmailTemplateSubjectTemplate;
|
|
111
|
-
/**
|
|
112
|
-
*
|
|
113
|
-
* @type {string}
|
|
114
|
-
* @memberof AggregationEmailTemplate
|
|
115
|
-
*/
|
|
116
|
-
'body_template_id': string;
|
|
117
|
-
}
|
|
118
|
-
/**
|
|
119
|
-
*
|
|
120
|
-
* @export
|
|
121
|
-
* @interface AggregationEmailTemplateSubjectTemplate
|
|
122
|
-
*/
|
|
123
|
-
export interface AggregationEmailTemplateSubjectTemplate {
|
|
124
|
-
/**
|
|
125
|
-
*
|
|
126
|
-
* @type {string}
|
|
127
|
-
* @memberof AggregationEmailTemplateSubjectTemplate
|
|
128
|
-
*/
|
|
129
|
-
'created'?: string;
|
|
130
|
-
/**
|
|
131
|
-
*
|
|
132
|
-
* @type {string}
|
|
133
|
-
* @memberof AggregationEmailTemplateSubjectTemplate
|
|
134
|
-
*/
|
|
135
|
-
'updated'?: string;
|
|
136
|
-
/**
|
|
137
|
-
*
|
|
138
|
-
* @type {string}
|
|
139
|
-
* @memberof AggregationEmailTemplateSubjectTemplate
|
|
140
|
-
*/
|
|
141
|
-
'id'?: string;
|
|
142
|
-
/**
|
|
143
|
-
*
|
|
144
|
-
* @type {string}
|
|
145
|
-
* @memberof AggregationEmailTemplateSubjectTemplate
|
|
146
|
-
*/
|
|
147
|
-
'name': string;
|
|
148
|
-
/**
|
|
149
|
-
*
|
|
150
|
-
* @type {string}
|
|
151
|
-
* @memberof AggregationEmailTemplateSubjectTemplate
|
|
152
|
-
*/
|
|
153
|
-
'description': string;
|
|
154
|
-
/**
|
|
155
|
-
*
|
|
156
|
-
* @type {string}
|
|
157
|
-
* @memberof AggregationEmailTemplateSubjectTemplate
|
|
158
|
-
*/
|
|
159
|
-
'data': string;
|
|
160
|
-
}
|
|
161
1
|
/**
|
|
162
2
|
*
|
|
163
3
|
* @export
|
|
@@ -201,102 +41,6 @@ export interface Application {
|
|
|
201
41
|
*/
|
|
202
42
|
'bundle_id': string;
|
|
203
43
|
}
|
|
204
|
-
/**
|
|
205
|
-
*
|
|
206
|
-
* @export
|
|
207
|
-
* @interface Application1
|
|
208
|
-
*/
|
|
209
|
-
export interface Application1 {
|
|
210
|
-
/**
|
|
211
|
-
*
|
|
212
|
-
* @type {string}
|
|
213
|
-
* @memberof Application1
|
|
214
|
-
*/
|
|
215
|
-
'id': string;
|
|
216
|
-
/**
|
|
217
|
-
*
|
|
218
|
-
* @type {string}
|
|
219
|
-
* @memberof Application1
|
|
220
|
-
*/
|
|
221
|
-
'display_name': string;
|
|
222
|
-
}
|
|
223
|
-
/**
|
|
224
|
-
*
|
|
225
|
-
* @export
|
|
226
|
-
* @interface ApplicationDTO
|
|
227
|
-
*/
|
|
228
|
-
export interface ApplicationDTO {
|
|
229
|
-
/**
|
|
230
|
-
*
|
|
231
|
-
* @type {string}
|
|
232
|
-
* @memberof ApplicationDTO
|
|
233
|
-
*/
|
|
234
|
-
'id'?: string;
|
|
235
|
-
/**
|
|
236
|
-
*
|
|
237
|
-
* @type {string}
|
|
238
|
-
* @memberof ApplicationDTO
|
|
239
|
-
*/
|
|
240
|
-
'name': string;
|
|
241
|
-
/**
|
|
242
|
-
*
|
|
243
|
-
* @type {string}
|
|
244
|
-
* @memberof ApplicationDTO
|
|
245
|
-
*/
|
|
246
|
-
'display_name': string;
|
|
247
|
-
/**
|
|
248
|
-
*
|
|
249
|
-
* @type {string}
|
|
250
|
-
* @memberof ApplicationDTO
|
|
251
|
-
*/
|
|
252
|
-
'bundle_id': string;
|
|
253
|
-
/**
|
|
254
|
-
*
|
|
255
|
-
* @type {string}
|
|
256
|
-
* @memberof ApplicationDTO
|
|
257
|
-
*/
|
|
258
|
-
'owner_role'?: string;
|
|
259
|
-
/**
|
|
260
|
-
*
|
|
261
|
-
* @type {string}
|
|
262
|
-
* @memberof ApplicationDTO
|
|
263
|
-
*/
|
|
264
|
-
'created'?: string;
|
|
265
|
-
}
|
|
266
|
-
/**
|
|
267
|
-
*
|
|
268
|
-
* @export
|
|
269
|
-
* @interface ApplicationSettingsValue
|
|
270
|
-
*/
|
|
271
|
-
export interface ApplicationSettingsValue {
|
|
272
|
-
/**
|
|
273
|
-
*
|
|
274
|
-
* @type {{ [key: string]: EventTypeSettingsValue; }}
|
|
275
|
-
* @memberof ApplicationSettingsValue
|
|
276
|
-
*/
|
|
277
|
-
'eventTypes'?: {
|
|
278
|
-
[key: string]: EventTypeSettingsValue;
|
|
279
|
-
};
|
|
280
|
-
}
|
|
281
|
-
/**
|
|
282
|
-
*
|
|
283
|
-
* @export
|
|
284
|
-
* @interface BasicAuthenticationDTO
|
|
285
|
-
*/
|
|
286
|
-
export interface BasicAuthenticationDTO {
|
|
287
|
-
/**
|
|
288
|
-
*
|
|
289
|
-
* @type {string}
|
|
290
|
-
* @memberof BasicAuthenticationDTO
|
|
291
|
-
*/
|
|
292
|
-
'username'?: string;
|
|
293
|
-
/**
|
|
294
|
-
*
|
|
295
|
-
* @type {string}
|
|
296
|
-
* @memberof BasicAuthenticationDTO
|
|
297
|
-
*/
|
|
298
|
-
'password'?: string;
|
|
299
|
-
}
|
|
300
44
|
/**
|
|
301
45
|
*
|
|
302
46
|
* @export
|
|
@@ -439,60 +183,6 @@ export interface Bundle {
|
|
|
439
183
|
*/
|
|
440
184
|
'display_name': string;
|
|
441
185
|
}
|
|
442
|
-
/**
|
|
443
|
-
*
|
|
444
|
-
* @export
|
|
445
|
-
* @interface BundleSettingsValue
|
|
446
|
-
*/
|
|
447
|
-
export interface BundleSettingsValue {
|
|
448
|
-
/**
|
|
449
|
-
*
|
|
450
|
-
* @type {{ [key: string]: ApplicationSettingsValue; }}
|
|
451
|
-
* @memberof BundleSettingsValue
|
|
452
|
-
*/
|
|
453
|
-
'applications'?: {
|
|
454
|
-
[key: string]: ApplicationSettingsValue;
|
|
455
|
-
};
|
|
456
|
-
}
|
|
457
|
-
/**
|
|
458
|
-
*
|
|
459
|
-
* @export
|
|
460
|
-
* @interface CamelPropertiesDTO
|
|
461
|
-
*/
|
|
462
|
-
export interface CamelPropertiesDTO {
|
|
463
|
-
/**
|
|
464
|
-
*
|
|
465
|
-
* @type {boolean}
|
|
466
|
-
* @memberof CamelPropertiesDTO
|
|
467
|
-
*/
|
|
468
|
-
'disableSslVerification': boolean;
|
|
469
|
-
/**
|
|
470
|
-
*
|
|
471
|
-
* @type {{ [key: string]: string; }}
|
|
472
|
-
* @memberof CamelPropertiesDTO
|
|
473
|
-
*/
|
|
474
|
-
'extras'?: {
|
|
475
|
-
[key: string]: string;
|
|
476
|
-
};
|
|
477
|
-
/**
|
|
478
|
-
*
|
|
479
|
-
* @type {string}
|
|
480
|
-
* @memberof CamelPropertiesDTO
|
|
481
|
-
*/
|
|
482
|
-
'url': string;
|
|
483
|
-
/**
|
|
484
|
-
*
|
|
485
|
-
* @type {BasicAuthenticationDTO}
|
|
486
|
-
* @memberof CamelPropertiesDTO
|
|
487
|
-
*/
|
|
488
|
-
'basicAuthentication'?: BasicAuthenticationDTO;
|
|
489
|
-
/**
|
|
490
|
-
*
|
|
491
|
-
* @type {string}
|
|
492
|
-
* @memberof CamelPropertiesDTO
|
|
493
|
-
*/
|
|
494
|
-
'secretToken'?: string;
|
|
495
|
-
}
|
|
496
186
|
/**
|
|
497
187
|
*
|
|
498
188
|
* @export
|
|
@@ -579,31 +269,6 @@ export interface CreateBehaviorGroupResponse {
|
|
|
579
269
|
*/
|
|
580
270
|
'created': string;
|
|
581
271
|
}
|
|
582
|
-
/**
|
|
583
|
-
*
|
|
584
|
-
* @export
|
|
585
|
-
* @interface CurrentStatus
|
|
586
|
-
*/
|
|
587
|
-
export interface CurrentStatus {
|
|
588
|
-
/**
|
|
589
|
-
*
|
|
590
|
-
* @type {Status}
|
|
591
|
-
* @memberof CurrentStatus
|
|
592
|
-
*/
|
|
593
|
-
'status': Status;
|
|
594
|
-
/**
|
|
595
|
-
*
|
|
596
|
-
* @type {string}
|
|
597
|
-
* @memberof CurrentStatus
|
|
598
|
-
*/
|
|
599
|
-
'start_time'?: string;
|
|
600
|
-
/**
|
|
601
|
-
*
|
|
602
|
-
* @type {string}
|
|
603
|
-
* @memberof CurrentStatus
|
|
604
|
-
*/
|
|
605
|
-
'end_time'?: string;
|
|
606
|
-
}
|
|
607
272
|
/**
|
|
608
273
|
*
|
|
609
274
|
* @export
|
|
@@ -729,107 +394,7 @@ export interface Endpoint {
|
|
|
729
394
|
/**
|
|
730
395
|
*
|
|
731
396
|
* @export
|
|
732
|
-
* @
|
|
733
|
-
*/
|
|
734
|
-
export interface EndpointDTO {
|
|
735
|
-
/**
|
|
736
|
-
*
|
|
737
|
-
* @type {string}
|
|
738
|
-
* @memberof EndpointDTO
|
|
739
|
-
*/
|
|
740
|
-
'id'?: string;
|
|
741
|
-
/**
|
|
742
|
-
*
|
|
743
|
-
* @type {string}
|
|
744
|
-
* @memberof EndpointDTO
|
|
745
|
-
*/
|
|
746
|
-
'name': string;
|
|
747
|
-
/**
|
|
748
|
-
*
|
|
749
|
-
* @type {string}
|
|
750
|
-
* @memberof EndpointDTO
|
|
751
|
-
*/
|
|
752
|
-
'description': string;
|
|
753
|
-
/**
|
|
754
|
-
*
|
|
755
|
-
* @type {boolean}
|
|
756
|
-
* @memberof EndpointDTO
|
|
757
|
-
*/
|
|
758
|
-
'enabled'?: boolean;
|
|
759
|
-
/**
|
|
760
|
-
*
|
|
761
|
-
* @type {EndpointStatusDTO}
|
|
762
|
-
* @memberof EndpointDTO
|
|
763
|
-
*/
|
|
764
|
-
'status'?: EndpointStatusDTO;
|
|
765
|
-
/**
|
|
766
|
-
*
|
|
767
|
-
* @type {number}
|
|
768
|
-
* @memberof EndpointDTO
|
|
769
|
-
*/
|
|
770
|
-
'server_errors'?: number;
|
|
771
|
-
/**
|
|
772
|
-
*
|
|
773
|
-
* @type {EndpointTypeDTO}
|
|
774
|
-
* @memberof EndpointDTO
|
|
775
|
-
*/
|
|
776
|
-
'type': EndpointTypeDTO;
|
|
777
|
-
/**
|
|
778
|
-
*
|
|
779
|
-
* @type {string}
|
|
780
|
-
* @memberof EndpointDTO
|
|
781
|
-
*/
|
|
782
|
-
'sub_type'?: string;
|
|
783
|
-
/**
|
|
784
|
-
*
|
|
785
|
-
* @type {string}
|
|
786
|
-
* @memberof EndpointDTO
|
|
787
|
-
*/
|
|
788
|
-
'created'?: string;
|
|
789
|
-
/**
|
|
790
|
-
*
|
|
791
|
-
* @type {string}
|
|
792
|
-
* @memberof EndpointDTO
|
|
793
|
-
*/
|
|
794
|
-
'updated'?: string;
|
|
795
|
-
/**
|
|
796
|
-
*
|
|
797
|
-
* @type {object}
|
|
798
|
-
* @memberof EndpointDTO
|
|
799
|
-
*/
|
|
800
|
-
'properties'?: object;
|
|
801
|
-
}
|
|
802
|
-
/**
|
|
803
|
-
*
|
|
804
|
-
* @export
|
|
805
|
-
* @interface EndpointPage
|
|
806
|
-
*/
|
|
807
|
-
export interface EndpointPage {
|
|
808
|
-
/**
|
|
809
|
-
*
|
|
810
|
-
* @type {Array<EndpointDTO>}
|
|
811
|
-
* @memberof EndpointPage
|
|
812
|
-
*/
|
|
813
|
-
'data': Array<EndpointDTO>;
|
|
814
|
-
/**
|
|
815
|
-
*
|
|
816
|
-
* @type {{ [key: string]: string; }}
|
|
817
|
-
* @memberof EndpointPage
|
|
818
|
-
*/
|
|
819
|
-
'links': {
|
|
820
|
-
[key: string]: string;
|
|
821
|
-
};
|
|
822
|
-
/**
|
|
823
|
-
*
|
|
824
|
-
* @type {Meta}
|
|
825
|
-
* @memberof EndpointPage
|
|
826
|
-
*/
|
|
827
|
-
'meta': Meta;
|
|
828
|
-
}
|
|
829
|
-
/**
|
|
830
|
-
*
|
|
831
|
-
* @export
|
|
832
|
-
* @enum {string}
|
|
397
|
+
* @enum {string}
|
|
833
398
|
*/
|
|
834
399
|
export declare const EndpointStatus: {
|
|
835
400
|
readonly Ready: "READY";
|
|
@@ -840,33 +405,6 @@ export declare const EndpointStatus: {
|
|
|
840
405
|
readonly Failed: "FAILED";
|
|
841
406
|
};
|
|
842
407
|
export type EndpointStatus = typeof EndpointStatus[keyof typeof EndpointStatus];
|
|
843
|
-
/**
|
|
844
|
-
*
|
|
845
|
-
* @export
|
|
846
|
-
* @enum {string}
|
|
847
|
-
*/
|
|
848
|
-
export declare const EndpointStatusDTO: {
|
|
849
|
-
readonly Deleting: "DELETING";
|
|
850
|
-
readonly Failed: "FAILED";
|
|
851
|
-
readonly New: "NEW";
|
|
852
|
-
readonly Provisioning: "PROVISIONING";
|
|
853
|
-
readonly Ready: "READY";
|
|
854
|
-
readonly Unknown: "UNKNOWN";
|
|
855
|
-
};
|
|
856
|
-
export type EndpointStatusDTO = typeof EndpointStatusDTO[keyof typeof EndpointStatusDTO];
|
|
857
|
-
/**
|
|
858
|
-
*
|
|
859
|
-
* @export
|
|
860
|
-
* @interface EndpointTestRequest
|
|
861
|
-
*/
|
|
862
|
-
export interface EndpointTestRequest {
|
|
863
|
-
/**
|
|
864
|
-
*
|
|
865
|
-
* @type {string}
|
|
866
|
-
* @memberof EndpointTestRequest
|
|
867
|
-
*/
|
|
868
|
-
'message': string;
|
|
869
|
-
}
|
|
870
408
|
/**
|
|
871
409
|
*
|
|
872
410
|
* @export
|
|
@@ -881,31 +419,6 @@ export declare const EndpointType: {
|
|
|
881
419
|
readonly Pagerduty: "pagerduty";
|
|
882
420
|
};
|
|
883
421
|
export type EndpointType = typeof EndpointType[keyof typeof EndpointType];
|
|
884
|
-
/**
|
|
885
|
-
*
|
|
886
|
-
* @export
|
|
887
|
-
* @enum {string}
|
|
888
|
-
*/
|
|
889
|
-
export declare const EndpointTypeDTO: {
|
|
890
|
-
readonly Ansible: "ansible";
|
|
891
|
-
readonly Camel: "camel";
|
|
892
|
-
readonly Drawer: "drawer";
|
|
893
|
-
readonly EmailSubscription: "email_subscription";
|
|
894
|
-
readonly Webhook: "webhook";
|
|
895
|
-
};
|
|
896
|
-
export type EndpointTypeDTO = typeof EndpointTypeDTO[keyof typeof EndpointTypeDTO];
|
|
897
|
-
/**
|
|
898
|
-
*
|
|
899
|
-
* @export
|
|
900
|
-
* @enum {string}
|
|
901
|
-
*/
|
|
902
|
-
export declare const Environment: {
|
|
903
|
-
readonly Prod: "PROD";
|
|
904
|
-
readonly Stage: "STAGE";
|
|
905
|
-
readonly Ephemeral: "EPHEMERAL";
|
|
906
|
-
readonly LocalServer: "LOCAL_SERVER";
|
|
907
|
-
};
|
|
908
|
-
export type Environment = typeof Environment[keyof typeof Environment];
|
|
909
422
|
/**
|
|
910
423
|
*
|
|
911
424
|
* @export
|
|
@@ -1137,58 +650,6 @@ export interface EventTypeBehaviorId {
|
|
|
1137
650
|
*/
|
|
1138
651
|
'behaviorGroupId': string;
|
|
1139
652
|
}
|
|
1140
|
-
/**
|
|
1141
|
-
*
|
|
1142
|
-
* @export
|
|
1143
|
-
* @interface EventTypeSettingsValue
|
|
1144
|
-
*/
|
|
1145
|
-
export interface EventTypeSettingsValue {
|
|
1146
|
-
/**
|
|
1147
|
-
*
|
|
1148
|
-
* @type {{ [key: string]: boolean; }}
|
|
1149
|
-
* @memberof EventTypeSettingsValue
|
|
1150
|
-
*/
|
|
1151
|
-
'emailSubscriptionTypes'?: {
|
|
1152
|
-
[key: string]: boolean;
|
|
1153
|
-
};
|
|
1154
|
-
/**
|
|
1155
|
-
*
|
|
1156
|
-
* @type {boolean}
|
|
1157
|
-
* @memberof EventTypeSettingsValue
|
|
1158
|
-
*/
|
|
1159
|
-
'hasForcedEmail'?: boolean;
|
|
1160
|
-
/**
|
|
1161
|
-
*
|
|
1162
|
-
* @type {boolean}
|
|
1163
|
-
* @memberof EventTypeSettingsValue
|
|
1164
|
-
*/
|
|
1165
|
-
'subscriptionLocked'?: boolean;
|
|
1166
|
-
}
|
|
1167
|
-
/**
|
|
1168
|
-
*
|
|
1169
|
-
* @export
|
|
1170
|
-
* @interface EventsReplayRequest
|
|
1171
|
-
*/
|
|
1172
|
-
export interface EventsReplayRequest {
|
|
1173
|
-
/**
|
|
1174
|
-
*
|
|
1175
|
-
* @type {string}
|
|
1176
|
-
* @memberof EventsReplayRequest
|
|
1177
|
-
*/
|
|
1178
|
-
'start_date': string;
|
|
1179
|
-
/**
|
|
1180
|
-
*
|
|
1181
|
-
* @type {string}
|
|
1182
|
-
* @memberof EventsReplayRequest
|
|
1183
|
-
*/
|
|
1184
|
-
'end_date': string;
|
|
1185
|
-
/**
|
|
1186
|
-
*
|
|
1187
|
-
* @type {string}
|
|
1188
|
-
* @memberof EventsReplayRequest
|
|
1189
|
-
*/
|
|
1190
|
-
'org_id'?: string;
|
|
1191
|
-
}
|
|
1192
653
|
/**
|
|
1193
654
|
*
|
|
1194
655
|
* @export
|
|
@@ -1223,694 +684,134 @@ export interface Facet {
|
|
|
1223
684
|
/**
|
|
1224
685
|
*
|
|
1225
686
|
* @export
|
|
1226
|
-
* @
|
|
687
|
+
* @interface Meta
|
|
1227
688
|
*/
|
|
1228
|
-
export
|
|
1229
|
-
|
|
1230
|
-
|
|
1231
|
-
|
|
1232
|
-
|
|
1233
|
-
|
|
689
|
+
export interface Meta {
|
|
690
|
+
/**
|
|
691
|
+
*
|
|
692
|
+
* @type {number}
|
|
693
|
+
* @memberof Meta
|
|
694
|
+
*/
|
|
695
|
+
'count': number;
|
|
696
|
+
}
|
|
1234
697
|
/**
|
|
1235
698
|
*
|
|
1236
699
|
* @export
|
|
1237
|
-
* @interface
|
|
700
|
+
* @interface PageDrawerEntryPayload
|
|
1238
701
|
*/
|
|
1239
|
-
export interface
|
|
1240
|
-
/**
|
|
1241
|
-
*
|
|
1242
|
-
* @type {string}
|
|
1243
|
-
* @memberof InstantEmailTemplate
|
|
1244
|
-
*/
|
|
1245
|
-
'created'?: string;
|
|
1246
|
-
/**
|
|
1247
|
-
*
|
|
1248
|
-
* @type {string}
|
|
1249
|
-
* @memberof InstantEmailTemplate
|
|
1250
|
-
*/
|
|
1251
|
-
'updated'?: string;
|
|
1252
|
-
/**
|
|
1253
|
-
*
|
|
1254
|
-
* @type {string}
|
|
1255
|
-
* @memberof InstantEmailTemplate
|
|
1256
|
-
*/
|
|
1257
|
-
'id'?: string;
|
|
1258
|
-
/**
|
|
1259
|
-
*
|
|
1260
|
-
* @type {EventType}
|
|
1261
|
-
* @memberof InstantEmailTemplate
|
|
1262
|
-
*/
|
|
1263
|
-
'event_type'?: EventType;
|
|
1264
|
-
/**
|
|
1265
|
-
*
|
|
1266
|
-
* @type {string}
|
|
1267
|
-
* @memberof InstantEmailTemplate
|
|
1268
|
-
*/
|
|
1269
|
-
'event_type_id'?: string;
|
|
1270
|
-
/**
|
|
1271
|
-
*
|
|
1272
|
-
* @type {AggregationEmailTemplateSubjectTemplate}
|
|
1273
|
-
* @memberof InstantEmailTemplate
|
|
1274
|
-
*/
|
|
1275
|
-
'subject_template'?: AggregationEmailTemplateSubjectTemplate;
|
|
702
|
+
export interface PageDrawerEntryPayload {
|
|
1276
703
|
/**
|
|
1277
704
|
*
|
|
1278
|
-
* @type {
|
|
1279
|
-
* @memberof
|
|
705
|
+
* @type {Array<DrawerEntryPayload>}
|
|
706
|
+
* @memberof PageDrawerEntryPayload
|
|
1280
707
|
*/
|
|
1281
|
-
'
|
|
708
|
+
'data': Array<DrawerEntryPayload>;
|
|
1282
709
|
/**
|
|
1283
710
|
*
|
|
1284
|
-
* @type {
|
|
1285
|
-
* @memberof
|
|
711
|
+
* @type {{ [key: string]: string; }}
|
|
712
|
+
* @memberof PageDrawerEntryPayload
|
|
1286
713
|
*/
|
|
1287
|
-
'
|
|
714
|
+
'links': {
|
|
715
|
+
[key: string]: string;
|
|
716
|
+
};
|
|
1288
717
|
/**
|
|
1289
718
|
*
|
|
1290
|
-
* @type {
|
|
1291
|
-
* @memberof
|
|
719
|
+
* @type {Meta}
|
|
720
|
+
* @memberof PageDrawerEntryPayload
|
|
1292
721
|
*/
|
|
1293
|
-
'
|
|
722
|
+
'meta': Meta;
|
|
1294
723
|
}
|
|
1295
724
|
/**
|
|
1296
725
|
*
|
|
1297
726
|
* @export
|
|
1298
|
-
* @interface
|
|
727
|
+
* @interface PageEventLogEntry
|
|
1299
728
|
*/
|
|
1300
|
-
export interface
|
|
729
|
+
export interface PageEventLogEntry {
|
|
1301
730
|
/**
|
|
1302
731
|
*
|
|
1303
|
-
* @type {
|
|
1304
|
-
* @memberof
|
|
732
|
+
* @type {Array<EventLogEntry>}
|
|
733
|
+
* @memberof PageEventLogEntry
|
|
1305
734
|
*/
|
|
1306
|
-
'
|
|
735
|
+
'data': Array<EventLogEntry>;
|
|
1307
736
|
/**
|
|
1308
737
|
*
|
|
1309
|
-
* @type {string}
|
|
1310
|
-
* @memberof
|
|
738
|
+
* @type {{ [key: string]: string; }}
|
|
739
|
+
* @memberof PageEventLogEntry
|
|
1311
740
|
*/
|
|
1312
|
-
'
|
|
741
|
+
'links': {
|
|
742
|
+
[key: string]: string;
|
|
743
|
+
};
|
|
1313
744
|
/**
|
|
1314
745
|
*
|
|
1315
|
-
* @type {
|
|
1316
|
-
* @memberof
|
|
746
|
+
* @type {Meta}
|
|
747
|
+
* @memberof PageEventLogEntry
|
|
1317
748
|
*/
|
|
1318
|
-
'
|
|
749
|
+
'meta': Meta;
|
|
1319
750
|
}
|
|
1320
751
|
/**
|
|
1321
752
|
*
|
|
1322
753
|
* @export
|
|
1323
|
-
* @interface
|
|
754
|
+
* @interface PageEventType
|
|
1324
755
|
*/
|
|
1325
|
-
export interface
|
|
756
|
+
export interface PageEventType {
|
|
1326
757
|
/**
|
|
1327
758
|
*
|
|
1328
|
-
* @type {
|
|
1329
|
-
* @memberof
|
|
759
|
+
* @type {Array<EventType>}
|
|
760
|
+
* @memberof PageEventType
|
|
1330
761
|
*/
|
|
1331
|
-
'
|
|
762
|
+
'data': Array<EventType>;
|
|
1332
763
|
/**
|
|
1333
764
|
*
|
|
1334
|
-
* @type {string}
|
|
1335
|
-
* @memberof
|
|
765
|
+
* @type {{ [key: string]: string; }}
|
|
766
|
+
* @memberof PageEventType
|
|
1336
767
|
*/
|
|
1337
|
-
'
|
|
768
|
+
'links': {
|
|
769
|
+
[key: string]: string;
|
|
770
|
+
};
|
|
1338
771
|
/**
|
|
1339
772
|
*
|
|
1340
|
-
* @type {
|
|
1341
|
-
* @memberof
|
|
773
|
+
* @type {Meta}
|
|
774
|
+
* @memberof PageEventType
|
|
1342
775
|
*/
|
|
1343
|
-
'
|
|
776
|
+
'meta': Meta;
|
|
1344
777
|
}
|
|
1345
778
|
/**
|
|
1346
779
|
*
|
|
1347
780
|
* @export
|
|
1348
|
-
* @interface
|
|
781
|
+
* @interface UpdateBehaviorGroupRequest
|
|
1349
782
|
*/
|
|
1350
|
-
export interface
|
|
1351
|
-
/**
|
|
1352
|
-
*
|
|
1353
|
-
* @type {boolean}
|
|
1354
|
-
* @memberof InternalUserPermissions
|
|
1355
|
-
*/
|
|
1356
|
-
'is_admin': boolean;
|
|
783
|
+
export interface UpdateBehaviorGroupRequest {
|
|
1357
784
|
/**
|
|
1358
785
|
*
|
|
1359
|
-
* @type {
|
|
1360
|
-
* @memberof
|
|
786
|
+
* @type {string}
|
|
787
|
+
* @memberof UpdateBehaviorGroupRequest
|
|
1361
788
|
*/
|
|
1362
|
-
'
|
|
789
|
+
'display_name'?: string;
|
|
1363
790
|
/**
|
|
1364
791
|
*
|
|
1365
792
|
* @type {Array<string>}
|
|
1366
|
-
* @memberof
|
|
793
|
+
* @memberof UpdateBehaviorGroupRequest
|
|
1367
794
|
*/
|
|
1368
|
-
'
|
|
1369
|
-
}
|
|
1370
|
-
/**
|
|
1371
|
-
*
|
|
1372
|
-
* @export
|
|
1373
|
-
* @interface MessageValidationResponse
|
|
1374
|
-
*/
|
|
1375
|
-
export interface MessageValidationResponse {
|
|
795
|
+
'endpoint_ids'?: Array<string>;
|
|
1376
796
|
/**
|
|
1377
797
|
*
|
|
1378
|
-
* @type {
|
|
1379
|
-
* @memberof
|
|
798
|
+
* @type {Set<string>}
|
|
799
|
+
* @memberof UpdateBehaviorGroupRequest
|
|
1380
800
|
*/
|
|
1381
|
-
'
|
|
1382
|
-
[key: string]: Array<string>;
|
|
1383
|
-
};
|
|
1384
|
-
}
|
|
1385
|
-
/**
|
|
1386
|
-
*
|
|
1387
|
-
* @export
|
|
1388
|
-
* @interface Meta
|
|
1389
|
-
*/
|
|
1390
|
-
export interface Meta {
|
|
801
|
+
'event_type_ids'?: Set<string>;
|
|
1391
802
|
/**
|
|
1392
803
|
*
|
|
1393
|
-
* @type {
|
|
1394
|
-
* @memberof
|
|
804
|
+
* @type {boolean}
|
|
805
|
+
* @memberof UpdateBehaviorGroupRequest
|
|
1395
806
|
*/
|
|
1396
|
-
'
|
|
807
|
+
'display_name_not_null_and_blank'?: boolean;
|
|
1397
808
|
}
|
|
1398
809
|
/**
|
|
1399
810
|
*
|
|
1400
811
|
* @export
|
|
1401
|
-
* @interface
|
|
812
|
+
* @interface UpdateNotificationDrawerStatus
|
|
1402
813
|
*/
|
|
1403
|
-
export interface
|
|
1404
|
-
/**
|
|
1405
|
-
*
|
|
1406
|
-
* @type {string}
|
|
1407
|
-
* @memberof NotificationHistory
|
|
1408
|
-
*/
|
|
1409
|
-
'created'?: string;
|
|
1410
|
-
/**
|
|
1411
|
-
*
|
|
1412
|
-
* @type {string}
|
|
1413
|
-
* @memberof NotificationHistory
|
|
1414
|
-
*/
|
|
1415
|
-
'id'?: string;
|
|
1416
|
-
/**
|
|
1417
|
-
*
|
|
1418
|
-
* @type {number}
|
|
1419
|
-
* @memberof NotificationHistory
|
|
1420
|
-
*/
|
|
1421
|
-
'invocationTime': number;
|
|
1422
|
-
/**
|
|
1423
|
-
*
|
|
1424
|
-
* @type {boolean}
|
|
1425
|
-
* @memberof NotificationHistory
|
|
1426
|
-
* @deprecated
|
|
1427
|
-
*/
|
|
1428
|
-
'invocationResult': boolean;
|
|
1429
|
-
/**
|
|
1430
|
-
*
|
|
1431
|
-
* @type {NotificationStatus}
|
|
1432
|
-
* @memberof NotificationHistory
|
|
1433
|
-
*/
|
|
1434
|
-
'status': NotificationStatus;
|
|
1435
|
-
/**
|
|
1436
|
-
*
|
|
1437
|
-
* @type {string}
|
|
1438
|
-
* @memberof NotificationHistory
|
|
1439
|
-
*/
|
|
1440
|
-
'endpointId'?: string;
|
|
1441
|
-
/**
|
|
1442
|
-
*
|
|
1443
|
-
* @type {{ [key: string]: any; }}
|
|
1444
|
-
* @memberof NotificationHistory
|
|
1445
|
-
*/
|
|
1446
|
-
'details'?: {
|
|
1447
|
-
[key: string]: any;
|
|
1448
|
-
};
|
|
1449
|
-
/**
|
|
1450
|
-
*
|
|
1451
|
-
* @type {EndpointType}
|
|
1452
|
-
* @memberof NotificationHistory
|
|
1453
|
-
*/
|
|
1454
|
-
'endpointType'?: EndpointType;
|
|
1455
|
-
/**
|
|
1456
|
-
*
|
|
1457
|
-
* @type {string}
|
|
1458
|
-
* @memberof NotificationHistory
|
|
1459
|
-
*/
|
|
1460
|
-
'endpointSubType'?: string;
|
|
1461
|
-
}
|
|
1462
|
-
/**
|
|
1463
|
-
*
|
|
1464
|
-
* @export
|
|
1465
|
-
* @enum {string}
|
|
1466
|
-
*/
|
|
1467
|
-
export declare const NotificationStatus: {
|
|
1468
|
-
readonly FailedInternal: "FAILED_INTERNAL";
|
|
1469
|
-
readonly FailedExternal: "FAILED_EXTERNAL";
|
|
1470
|
-
readonly Processing: "PROCESSING";
|
|
1471
|
-
readonly Sent: "SENT";
|
|
1472
|
-
readonly Success: "SUCCESS";
|
|
1473
|
-
};
|
|
1474
|
-
export type NotificationStatus = typeof NotificationStatus[keyof typeof NotificationStatus];
|
|
1475
|
-
/**
|
|
1476
|
-
*
|
|
1477
|
-
* @export
|
|
1478
|
-
* @interface PageBehaviorGroup
|
|
1479
|
-
*/
|
|
1480
|
-
export interface PageBehaviorGroup {
|
|
1481
|
-
/**
|
|
1482
|
-
*
|
|
1483
|
-
* @type {Array<BehaviorGroup>}
|
|
1484
|
-
* @memberof PageBehaviorGroup
|
|
1485
|
-
*/
|
|
1486
|
-
'data': Array<BehaviorGroup>;
|
|
1487
|
-
/**
|
|
1488
|
-
*
|
|
1489
|
-
* @type {{ [key: string]: string; }}
|
|
1490
|
-
* @memberof PageBehaviorGroup
|
|
1491
|
-
*/
|
|
1492
|
-
'links': {
|
|
1493
|
-
[key: string]: string;
|
|
1494
|
-
};
|
|
1495
|
-
/**
|
|
1496
|
-
*
|
|
1497
|
-
* @type {Meta}
|
|
1498
|
-
* @memberof PageBehaviorGroup
|
|
1499
|
-
*/
|
|
1500
|
-
'meta': Meta;
|
|
1501
|
-
}
|
|
1502
|
-
/**
|
|
1503
|
-
*
|
|
1504
|
-
* @export
|
|
1505
|
-
* @interface PageDrawerEntryPayload
|
|
1506
|
-
*/
|
|
1507
|
-
export interface PageDrawerEntryPayload {
|
|
1508
|
-
/**
|
|
1509
|
-
*
|
|
1510
|
-
* @type {Array<DrawerEntryPayload>}
|
|
1511
|
-
* @memberof PageDrawerEntryPayload
|
|
1512
|
-
*/
|
|
1513
|
-
'data': Array<DrawerEntryPayload>;
|
|
1514
|
-
/**
|
|
1515
|
-
*
|
|
1516
|
-
* @type {{ [key: string]: string; }}
|
|
1517
|
-
* @memberof PageDrawerEntryPayload
|
|
1518
|
-
*/
|
|
1519
|
-
'links': {
|
|
1520
|
-
[key: string]: string;
|
|
1521
|
-
};
|
|
1522
|
-
/**
|
|
1523
|
-
*
|
|
1524
|
-
* @type {Meta}
|
|
1525
|
-
* @memberof PageDrawerEntryPayload
|
|
1526
|
-
*/
|
|
1527
|
-
'meta': Meta;
|
|
1528
|
-
}
|
|
1529
|
-
/**
|
|
1530
|
-
*
|
|
1531
|
-
* @export
|
|
1532
|
-
* @interface PageEventLogEntry
|
|
1533
|
-
*/
|
|
1534
|
-
export interface PageEventLogEntry {
|
|
1535
|
-
/**
|
|
1536
|
-
*
|
|
1537
|
-
* @type {Array<EventLogEntry>}
|
|
1538
|
-
* @memberof PageEventLogEntry
|
|
1539
|
-
*/
|
|
1540
|
-
'data': Array<EventLogEntry>;
|
|
1541
|
-
/**
|
|
1542
|
-
*
|
|
1543
|
-
* @type {{ [key: string]: string; }}
|
|
1544
|
-
* @memberof PageEventLogEntry
|
|
1545
|
-
*/
|
|
1546
|
-
'links': {
|
|
1547
|
-
[key: string]: string;
|
|
1548
|
-
};
|
|
1549
|
-
/**
|
|
1550
|
-
*
|
|
1551
|
-
* @type {Meta}
|
|
1552
|
-
* @memberof PageEventLogEntry
|
|
1553
|
-
*/
|
|
1554
|
-
'meta': Meta;
|
|
1555
|
-
}
|
|
1556
|
-
/**
|
|
1557
|
-
*
|
|
1558
|
-
* @export
|
|
1559
|
-
* @interface PageEventType
|
|
1560
|
-
*/
|
|
1561
|
-
export interface PageEventType {
|
|
1562
|
-
/**
|
|
1563
|
-
*
|
|
1564
|
-
* @type {Array<EventType>}
|
|
1565
|
-
* @memberof PageEventType
|
|
1566
|
-
*/
|
|
1567
|
-
'data': Array<EventType>;
|
|
1568
|
-
/**
|
|
1569
|
-
*
|
|
1570
|
-
* @type {{ [key: string]: string; }}
|
|
1571
|
-
* @memberof PageEventType
|
|
1572
|
-
*/
|
|
1573
|
-
'links': {
|
|
1574
|
-
[key: string]: string;
|
|
1575
|
-
};
|
|
1576
|
-
/**
|
|
1577
|
-
*
|
|
1578
|
-
* @type {Meta}
|
|
1579
|
-
* @memberof PageEventType
|
|
1580
|
-
*/
|
|
1581
|
-
'meta': Meta;
|
|
1582
|
-
}
|
|
1583
|
-
/**
|
|
1584
|
-
*
|
|
1585
|
-
* @export
|
|
1586
|
-
* @interface PageNotificationHistory
|
|
1587
|
-
*/
|
|
1588
|
-
export interface PageNotificationHistory {
|
|
1589
|
-
/**
|
|
1590
|
-
*
|
|
1591
|
-
* @type {Array<NotificationHistory>}
|
|
1592
|
-
* @memberof PageNotificationHistory
|
|
1593
|
-
*/
|
|
1594
|
-
'data': Array<NotificationHistory>;
|
|
1595
|
-
/**
|
|
1596
|
-
*
|
|
1597
|
-
* @type {{ [key: string]: string; }}
|
|
1598
|
-
* @memberof PageNotificationHistory
|
|
1599
|
-
*/
|
|
1600
|
-
'links': {
|
|
1601
|
-
[key: string]: string;
|
|
1602
|
-
};
|
|
1603
|
-
/**
|
|
1604
|
-
*
|
|
1605
|
-
* @type {Meta}
|
|
1606
|
-
* @memberof PageNotificationHistory
|
|
1607
|
-
*/
|
|
1608
|
-
'meta': Meta;
|
|
1609
|
-
}
|
|
1610
|
-
/**
|
|
1611
|
-
*
|
|
1612
|
-
* @export
|
|
1613
|
-
* @interface PagerDutyPropertiesDTO
|
|
1614
|
-
*/
|
|
1615
|
-
export interface PagerDutyPropertiesDTO {
|
|
1616
|
-
/**
|
|
1617
|
-
*
|
|
1618
|
-
* @type {PagerDutySeverity}
|
|
1619
|
-
* @memberof PagerDutyPropertiesDTO
|
|
1620
|
-
*/
|
|
1621
|
-
'severity': PagerDutySeverity;
|
|
1622
|
-
/**
|
|
1623
|
-
*
|
|
1624
|
-
* @type {string}
|
|
1625
|
-
* @memberof PagerDutyPropertiesDTO
|
|
1626
|
-
*/
|
|
1627
|
-
'secretToken': string;
|
|
1628
|
-
}
|
|
1629
|
-
/**
|
|
1630
|
-
*
|
|
1631
|
-
* @export
|
|
1632
|
-
* @enum {string}
|
|
1633
|
-
*/
|
|
1634
|
-
export declare const PagerDutySeverity: {
|
|
1635
|
-
readonly Critical: "critical";
|
|
1636
|
-
readonly Error: "error";
|
|
1637
|
-
readonly Warning: "warning";
|
|
1638
|
-
readonly Info: "info";
|
|
1639
|
-
};
|
|
1640
|
-
export type PagerDutySeverity = typeof PagerDutySeverity[keyof typeof PagerDutySeverity];
|
|
1641
|
-
/**
|
|
1642
|
-
*
|
|
1643
|
-
* @export
|
|
1644
|
-
* @interface RenderEmailTemplateRequest
|
|
1645
|
-
*/
|
|
1646
|
-
export interface RenderEmailTemplateRequest {
|
|
1647
|
-
/**
|
|
1648
|
-
*
|
|
1649
|
-
* @type {Array<string>}
|
|
1650
|
-
* @memberof RenderEmailTemplateRequest
|
|
1651
|
-
*/
|
|
1652
|
-
'template': Array<string>;
|
|
1653
|
-
/**
|
|
1654
|
-
*
|
|
1655
|
-
* @type {string}
|
|
1656
|
-
* @memberof RenderEmailTemplateRequest
|
|
1657
|
-
*/
|
|
1658
|
-
'payload': string;
|
|
1659
|
-
}
|
|
1660
|
-
/**
|
|
1661
|
-
*
|
|
1662
|
-
* @export
|
|
1663
|
-
* @interface RequestDefaultBehaviorGroupPropertyList
|
|
1664
|
-
*/
|
|
1665
|
-
export interface RequestDefaultBehaviorGroupPropertyList {
|
|
1666
|
-
/**
|
|
1667
|
-
*
|
|
1668
|
-
* @type {boolean}
|
|
1669
|
-
* @memberof RequestDefaultBehaviorGroupPropertyList
|
|
1670
|
-
*/
|
|
1671
|
-
'only_admins': boolean;
|
|
1672
|
-
/**
|
|
1673
|
-
*
|
|
1674
|
-
* @type {boolean}
|
|
1675
|
-
* @memberof RequestDefaultBehaviorGroupPropertyList
|
|
1676
|
-
*/
|
|
1677
|
-
'ignore_preferences': boolean;
|
|
1678
|
-
}
|
|
1679
|
-
/**
|
|
1680
|
-
*
|
|
1681
|
-
* @export
|
|
1682
|
-
* @interface RequestSystemSubscriptionProperties
|
|
1683
|
-
*/
|
|
1684
|
-
export interface RequestSystemSubscriptionProperties {
|
|
1685
|
-
/**
|
|
1686
|
-
*
|
|
1687
|
-
* @type {boolean}
|
|
1688
|
-
* @memberof RequestSystemSubscriptionProperties
|
|
1689
|
-
*/
|
|
1690
|
-
'only_admins': boolean;
|
|
1691
|
-
/**
|
|
1692
|
-
*
|
|
1693
|
-
* @type {string}
|
|
1694
|
-
* @memberof RequestSystemSubscriptionProperties
|
|
1695
|
-
*/
|
|
1696
|
-
'group_id'?: string;
|
|
1697
|
-
}
|
|
1698
|
-
/**
|
|
1699
|
-
*
|
|
1700
|
-
* @export
|
|
1701
|
-
* @interface ServerInfo
|
|
1702
|
-
*/
|
|
1703
|
-
export interface ServerInfo {
|
|
1704
|
-
/**
|
|
1705
|
-
*
|
|
1706
|
-
* @type {Environment}
|
|
1707
|
-
* @memberof ServerInfo
|
|
1708
|
-
*/
|
|
1709
|
-
'environment'?: Environment;
|
|
1710
|
-
}
|
|
1711
|
-
/**
|
|
1712
|
-
*
|
|
1713
|
-
* @export
|
|
1714
|
-
* @interface SettingsValuesByEventType
|
|
1715
|
-
*/
|
|
1716
|
-
export interface SettingsValuesByEventType {
|
|
1717
|
-
/**
|
|
1718
|
-
*
|
|
1719
|
-
* @type {{ [key: string]: BundleSettingsValue; }}
|
|
1720
|
-
* @memberof SettingsValuesByEventType
|
|
1721
|
-
*/
|
|
1722
|
-
'bundles'?: {
|
|
1723
|
-
[key: string]: BundleSettingsValue;
|
|
1724
|
-
};
|
|
1725
|
-
}
|
|
1726
|
-
/**
|
|
1727
|
-
*
|
|
1728
|
-
* @export
|
|
1729
|
-
* @enum {string}
|
|
1730
|
-
*/
|
|
1731
|
-
export declare const Status: {
|
|
1732
|
-
readonly Up: "UP";
|
|
1733
|
-
readonly Maintenance: "MAINTENANCE";
|
|
1734
|
-
};
|
|
1735
|
-
export type Status = typeof Status[keyof typeof Status];
|
|
1736
|
-
/**
|
|
1737
|
-
*
|
|
1738
|
-
* @export
|
|
1739
|
-
* @enum {string}
|
|
1740
|
-
*/
|
|
1741
|
-
export declare const SubscriptionType: {
|
|
1742
|
-
readonly Instant: "INSTANT";
|
|
1743
|
-
readonly Daily: "DAILY";
|
|
1744
|
-
readonly Drawer: "DRAWER";
|
|
1745
|
-
};
|
|
1746
|
-
export type SubscriptionType = typeof SubscriptionType[keyof typeof SubscriptionType];
|
|
1747
|
-
/**
|
|
1748
|
-
*
|
|
1749
|
-
* @export
|
|
1750
|
-
* @interface SystemSubscriptionPropertiesDTO
|
|
1751
|
-
*/
|
|
1752
|
-
export interface SystemSubscriptionPropertiesDTO {
|
|
1753
|
-
/**
|
|
1754
|
-
*
|
|
1755
|
-
* @type {string}
|
|
1756
|
-
* @memberof SystemSubscriptionPropertiesDTO
|
|
1757
|
-
*/
|
|
1758
|
-
'groupId'?: string;
|
|
1759
|
-
/**
|
|
1760
|
-
*
|
|
1761
|
-
* @type {boolean}
|
|
1762
|
-
* @memberof SystemSubscriptionPropertiesDTO
|
|
1763
|
-
*/
|
|
1764
|
-
'ignorePreferences'?: boolean;
|
|
1765
|
-
/**
|
|
1766
|
-
*
|
|
1767
|
-
* @type {boolean}
|
|
1768
|
-
* @memberof SystemSubscriptionPropertiesDTO
|
|
1769
|
-
*/
|
|
1770
|
-
'onlyAdmins'?: boolean;
|
|
1771
|
-
}
|
|
1772
|
-
/**
|
|
1773
|
-
*
|
|
1774
|
-
* @export
|
|
1775
|
-
* @interface Template
|
|
1776
|
-
*/
|
|
1777
|
-
export interface Template {
|
|
1778
|
-
/**
|
|
1779
|
-
*
|
|
1780
|
-
* @type {string}
|
|
1781
|
-
* @memberof Template
|
|
1782
|
-
*/
|
|
1783
|
-
'created'?: string;
|
|
1784
|
-
/**
|
|
1785
|
-
*
|
|
1786
|
-
* @type {string}
|
|
1787
|
-
* @memberof Template
|
|
1788
|
-
*/
|
|
1789
|
-
'updated'?: string;
|
|
1790
|
-
/**
|
|
1791
|
-
*
|
|
1792
|
-
* @type {string}
|
|
1793
|
-
* @memberof Template
|
|
1794
|
-
*/
|
|
1795
|
-
'id'?: string;
|
|
1796
|
-
/**
|
|
1797
|
-
*
|
|
1798
|
-
* @type {string}
|
|
1799
|
-
* @memberof Template
|
|
1800
|
-
*/
|
|
1801
|
-
'name': string;
|
|
1802
|
-
/**
|
|
1803
|
-
*
|
|
1804
|
-
* @type {string}
|
|
1805
|
-
* @memberof Template
|
|
1806
|
-
*/
|
|
1807
|
-
'description': string;
|
|
1808
|
-
/**
|
|
1809
|
-
*
|
|
1810
|
-
* @type {string}
|
|
1811
|
-
* @memberof Template
|
|
1812
|
-
*/
|
|
1813
|
-
'data': string;
|
|
1814
|
-
}
|
|
1815
|
-
/**
|
|
1816
|
-
*
|
|
1817
|
-
* @export
|
|
1818
|
-
* @interface TriggerDailyDigestRequest
|
|
1819
|
-
*/
|
|
1820
|
-
export interface TriggerDailyDigestRequest {
|
|
1821
|
-
/**
|
|
1822
|
-
*
|
|
1823
|
-
* @type {string}
|
|
1824
|
-
* @memberof TriggerDailyDigestRequest
|
|
1825
|
-
*/
|
|
1826
|
-
'application_name': string;
|
|
1827
|
-
/**
|
|
1828
|
-
*
|
|
1829
|
-
* @type {string}
|
|
1830
|
-
* @memberof TriggerDailyDigestRequest
|
|
1831
|
-
*/
|
|
1832
|
-
'bundle_name': string;
|
|
1833
|
-
/**
|
|
1834
|
-
*
|
|
1835
|
-
* @type {string}
|
|
1836
|
-
* @memberof TriggerDailyDigestRequest
|
|
1837
|
-
*/
|
|
1838
|
-
'end'?: string;
|
|
1839
|
-
/**
|
|
1840
|
-
*
|
|
1841
|
-
* @type {string}
|
|
1842
|
-
* @memberof TriggerDailyDigestRequest
|
|
1843
|
-
*/
|
|
1844
|
-
'org_id': string;
|
|
1845
|
-
/**
|
|
1846
|
-
*
|
|
1847
|
-
* @type {string}
|
|
1848
|
-
* @memberof TriggerDailyDigestRequest
|
|
1849
|
-
*/
|
|
1850
|
-
'start'?: string;
|
|
1851
|
-
}
|
|
1852
|
-
/**
|
|
1853
|
-
*
|
|
1854
|
-
* @export
|
|
1855
|
-
* @interface UpdateApplicationRequest
|
|
1856
|
-
*/
|
|
1857
|
-
export interface UpdateApplicationRequest {
|
|
1858
|
-
/**
|
|
1859
|
-
*
|
|
1860
|
-
* @type {string}
|
|
1861
|
-
* @memberof UpdateApplicationRequest
|
|
1862
|
-
*/
|
|
1863
|
-
'name'?: string;
|
|
1864
|
-
/**
|
|
1865
|
-
*
|
|
1866
|
-
* @type {string}
|
|
1867
|
-
* @memberof UpdateApplicationRequest
|
|
1868
|
-
*/
|
|
1869
|
-
'display_name'?: string;
|
|
1870
|
-
/**
|
|
1871
|
-
*
|
|
1872
|
-
* @type {string}
|
|
1873
|
-
* @memberof UpdateApplicationRequest
|
|
1874
|
-
*/
|
|
1875
|
-
'owner_role'?: string;
|
|
1876
|
-
}
|
|
1877
|
-
/**
|
|
1878
|
-
*
|
|
1879
|
-
* @export
|
|
1880
|
-
* @interface UpdateBehaviorGroupRequest
|
|
1881
|
-
*/
|
|
1882
|
-
export interface UpdateBehaviorGroupRequest {
|
|
1883
|
-
/**
|
|
1884
|
-
*
|
|
1885
|
-
* @type {string}
|
|
1886
|
-
* @memberof UpdateBehaviorGroupRequest
|
|
1887
|
-
*/
|
|
1888
|
-
'display_name'?: string;
|
|
1889
|
-
/**
|
|
1890
|
-
*
|
|
1891
|
-
* @type {Array<string>}
|
|
1892
|
-
* @memberof UpdateBehaviorGroupRequest
|
|
1893
|
-
*/
|
|
1894
|
-
'endpoint_ids'?: Array<string>;
|
|
1895
|
-
/**
|
|
1896
|
-
*
|
|
1897
|
-
* @type {Set<string>}
|
|
1898
|
-
* @memberof UpdateBehaviorGroupRequest
|
|
1899
|
-
*/
|
|
1900
|
-
'event_type_ids'?: Set<string>;
|
|
1901
|
-
/**
|
|
1902
|
-
*
|
|
1903
|
-
* @type {boolean}
|
|
1904
|
-
* @memberof UpdateBehaviorGroupRequest
|
|
1905
|
-
*/
|
|
1906
|
-
'display_name_not_null_and_blank'?: boolean;
|
|
1907
|
-
}
|
|
1908
|
-
/**
|
|
1909
|
-
*
|
|
1910
|
-
* @export
|
|
1911
|
-
* @interface UpdateNotificationDrawerStatus
|
|
1912
|
-
*/
|
|
1913
|
-
export interface UpdateNotificationDrawerStatus {
|
|
814
|
+
export interface UpdateNotificationDrawerStatus {
|
|
1914
815
|
/**
|
|
1915
816
|
*
|
|
1916
817
|
* @type {Set<string>}
|
|
@@ -1924,84 +825,4 @@ export interface UpdateNotificationDrawerStatus {
|
|
|
1924
825
|
*/
|
|
1925
826
|
'read_status': boolean;
|
|
1926
827
|
}
|
|
1927
|
-
/**
|
|
1928
|
-
*
|
|
1929
|
-
* @export
|
|
1930
|
-
* @interface WebhookPropertiesDTO
|
|
1931
|
-
*/
|
|
1932
|
-
export interface WebhookPropertiesDTO {
|
|
1933
|
-
/**
|
|
1934
|
-
*
|
|
1935
|
-
* @type {boolean}
|
|
1936
|
-
* @memberof WebhookPropertiesDTO
|
|
1937
|
-
*/
|
|
1938
|
-
'disableSslVerification': boolean;
|
|
1939
|
-
/**
|
|
1940
|
-
*
|
|
1941
|
-
* @type {HttpType}
|
|
1942
|
-
* @memberof WebhookPropertiesDTO
|
|
1943
|
-
*/
|
|
1944
|
-
'method': HttpType;
|
|
1945
|
-
/**
|
|
1946
|
-
*
|
|
1947
|
-
* @type {string}
|
|
1948
|
-
* @memberof WebhookPropertiesDTO
|
|
1949
|
-
*/
|
|
1950
|
-
'url': string;
|
|
1951
|
-
/**
|
|
1952
|
-
*
|
|
1953
|
-
* @type {BasicAuthenticationDTO}
|
|
1954
|
-
* @memberof WebhookPropertiesDTO
|
|
1955
|
-
*/
|
|
1956
|
-
'basicAuthentication'?: BasicAuthenticationDTO;
|
|
1957
|
-
/**
|
|
1958
|
-
*
|
|
1959
|
-
* @type {string}
|
|
1960
|
-
* @memberof WebhookPropertiesDTO
|
|
1961
|
-
*/
|
|
1962
|
-
'bearerAuthentication'?: string;
|
|
1963
|
-
/**
|
|
1964
|
-
*
|
|
1965
|
-
* @type {string}
|
|
1966
|
-
* @memberof WebhookPropertiesDTO
|
|
1967
|
-
*/
|
|
1968
|
-
'secretToken'?: string;
|
|
1969
|
-
}
|
|
1970
|
-
/**
|
|
1971
|
-
*
|
|
1972
|
-
* @export
|
|
1973
|
-
* @interface X509Certificate
|
|
1974
|
-
*/
|
|
1975
|
-
export interface X509Certificate {
|
|
1976
|
-
/**
|
|
1977
|
-
*
|
|
1978
|
-
* @type {string}
|
|
1979
|
-
* @memberof X509Certificate
|
|
1980
|
-
*/
|
|
1981
|
-
'id'?: string;
|
|
1982
|
-
/**
|
|
1983
|
-
*
|
|
1984
|
-
* @type {string}
|
|
1985
|
-
* @memberof X509Certificate
|
|
1986
|
-
*/
|
|
1987
|
-
'subject_dn': string;
|
|
1988
|
-
/**
|
|
1989
|
-
*
|
|
1990
|
-
* @type {string}
|
|
1991
|
-
* @memberof X509Certificate
|
|
1992
|
-
*/
|
|
1993
|
-
'source_environment': string;
|
|
1994
|
-
/**
|
|
1995
|
-
*
|
|
1996
|
-
* @type {string}
|
|
1997
|
-
* @memberof X509Certificate
|
|
1998
|
-
*/
|
|
1999
|
-
'bundle': string;
|
|
2000
|
-
/**
|
|
2001
|
-
*
|
|
2002
|
-
* @type {string}
|
|
2003
|
-
* @memberof X509Certificate
|
|
2004
|
-
*/
|
|
2005
|
-
'application': string;
|
|
2006
|
-
}
|
|
2007
828
|
//# sourceMappingURL=index.d.ts.map
|