@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/dist/api.d.ts CHANGED
@@ -13,166 +13,6 @@ import type { Configuration } from './configuration';
13
13
  import type { AxiosPromise, AxiosInstance, AxiosRequestConfig } from 'axios';
14
14
  import type { RequestArgs } from './base';
15
15
  import { BaseAPI } from './base';
16
- /**
17
- *
18
- * @export
19
- * @interface AddAccessRequest
20
- */
21
- export interface AddAccessRequest {
22
- /**
23
- *
24
- * @type {string}
25
- * @memberof AddAccessRequest
26
- */
27
- 'role'?: string;
28
- /**
29
- *
30
- * @type {string}
31
- * @memberof AddAccessRequest
32
- */
33
- 'application_id'?: string;
34
- }
35
- /**
36
- *
37
- * @export
38
- * @interface AddApplicationRequest
39
- */
40
- export interface AddApplicationRequest {
41
- /**
42
- *
43
- * @type {string}
44
- * @memberof AddApplicationRequest
45
- */
46
- 'name': string;
47
- /**
48
- *
49
- * @type {string}
50
- * @memberof AddApplicationRequest
51
- */
52
- 'display_name': string;
53
- /**
54
- *
55
- * @type {string}
56
- * @memberof AddApplicationRequest
57
- */
58
- 'bundle_id': string;
59
- /**
60
- *
61
- * @type {string}
62
- * @memberof AddApplicationRequest
63
- */
64
- 'owner_role'?: string;
65
- }
66
- /**
67
- *
68
- * @export
69
- * @interface AggregationEmailTemplate
70
- */
71
- export interface AggregationEmailTemplate {
72
- /**
73
- *
74
- * @type {string}
75
- * @memberof AggregationEmailTemplate
76
- */
77
- 'created'?: string;
78
- /**
79
- *
80
- * @type {string}
81
- * @memberof AggregationEmailTemplate
82
- */
83
- 'updated'?: string;
84
- /**
85
- *
86
- * @type {string}
87
- * @memberof AggregationEmailTemplate
88
- */
89
- 'id'?: string;
90
- /**
91
- *
92
- * @type {Application}
93
- * @memberof AggregationEmailTemplate
94
- */
95
- 'application'?: Application;
96
- /**
97
- *
98
- * @type {string}
99
- * @memberof AggregationEmailTemplate
100
- */
101
- 'application_id'?: string;
102
- /**
103
- *
104
- * @type {SubscriptionType}
105
- * @memberof AggregationEmailTemplate
106
- */
107
- 'subscription_type': SubscriptionType;
108
- /**
109
- *
110
- * @type {AggregationEmailTemplateSubjectTemplate}
111
- * @memberof AggregationEmailTemplate
112
- */
113
- 'subject_template'?: AggregationEmailTemplateSubjectTemplate;
114
- /**
115
- *
116
- * @type {string}
117
- * @memberof AggregationEmailTemplate
118
- */
119
- 'subject_template_id': string;
120
- /**
121
- *
122
- * @type {AggregationEmailTemplateSubjectTemplate}
123
- * @memberof AggregationEmailTemplate
124
- */
125
- 'body_template'?: AggregationEmailTemplateSubjectTemplate;
126
- /**
127
- *
128
- * @type {string}
129
- * @memberof AggregationEmailTemplate
130
- */
131
- 'body_template_id': string;
132
- }
133
- /**
134
- *
135
- * @export
136
- * @interface AggregationEmailTemplateSubjectTemplate
137
- */
138
- export interface AggregationEmailTemplateSubjectTemplate {
139
- /**
140
- *
141
- * @type {string}
142
- * @memberof AggregationEmailTemplateSubjectTemplate
143
- */
144
- 'created'?: string;
145
- /**
146
- *
147
- * @type {string}
148
- * @memberof AggregationEmailTemplateSubjectTemplate
149
- */
150
- 'updated'?: string;
151
- /**
152
- *
153
- * @type {string}
154
- * @memberof AggregationEmailTemplateSubjectTemplate
155
- */
156
- 'id'?: string;
157
- /**
158
- *
159
- * @type {string}
160
- * @memberof AggregationEmailTemplateSubjectTemplate
161
- */
162
- 'name': string;
163
- /**
164
- *
165
- * @type {string}
166
- * @memberof AggregationEmailTemplateSubjectTemplate
167
- */
168
- 'description': string;
169
- /**
170
- *
171
- * @type {string}
172
- * @memberof AggregationEmailTemplateSubjectTemplate
173
- */
174
- 'data': string;
175
- }
176
16
  /**
177
17
  *
178
18
  * @export
@@ -216,102 +56,6 @@ export interface Application {
216
56
  */
217
57
  'bundle_id': string;
218
58
  }
219
- /**
220
- *
221
- * @export
222
- * @interface Application1
223
- */
224
- export interface Application1 {
225
- /**
226
- *
227
- * @type {string}
228
- * @memberof Application1
229
- */
230
- 'id': string;
231
- /**
232
- *
233
- * @type {string}
234
- * @memberof Application1
235
- */
236
- 'display_name': string;
237
- }
238
- /**
239
- *
240
- * @export
241
- * @interface ApplicationDTO
242
- */
243
- export interface ApplicationDTO {
244
- /**
245
- *
246
- * @type {string}
247
- * @memberof ApplicationDTO
248
- */
249
- 'id'?: string;
250
- /**
251
- *
252
- * @type {string}
253
- * @memberof ApplicationDTO
254
- */
255
- 'name': string;
256
- /**
257
- *
258
- * @type {string}
259
- * @memberof ApplicationDTO
260
- */
261
- 'display_name': string;
262
- /**
263
- *
264
- * @type {string}
265
- * @memberof ApplicationDTO
266
- */
267
- 'bundle_id': string;
268
- /**
269
- *
270
- * @type {string}
271
- * @memberof ApplicationDTO
272
- */
273
- 'owner_role'?: string;
274
- /**
275
- *
276
- * @type {string}
277
- * @memberof ApplicationDTO
278
- */
279
- 'created'?: string;
280
- }
281
- /**
282
- *
283
- * @export
284
- * @interface ApplicationSettingsValue
285
- */
286
- export interface ApplicationSettingsValue {
287
- /**
288
- *
289
- * @type {{ [key: string]: EventTypeSettingsValue; }}
290
- * @memberof ApplicationSettingsValue
291
- */
292
- 'eventTypes'?: {
293
- [key: string]: EventTypeSettingsValue;
294
- };
295
- }
296
- /**
297
- *
298
- * @export
299
- * @interface BasicAuthenticationDTO
300
- */
301
- export interface BasicAuthenticationDTO {
302
- /**
303
- *
304
- * @type {string}
305
- * @memberof BasicAuthenticationDTO
306
- */
307
- 'username'?: string;
308
- /**
309
- *
310
- * @type {string}
311
- * @memberof BasicAuthenticationDTO
312
- */
313
- 'password'?: string;
314
- }
315
59
  /**
316
60
  *
317
61
  * @export
@@ -454,60 +198,6 @@ export interface Bundle {
454
198
  */
455
199
  'display_name': string;
456
200
  }
457
- /**
458
- *
459
- * @export
460
- * @interface BundleSettingsValue
461
- */
462
- export interface BundleSettingsValue {
463
- /**
464
- *
465
- * @type {{ [key: string]: ApplicationSettingsValue; }}
466
- * @memberof BundleSettingsValue
467
- */
468
- 'applications'?: {
469
- [key: string]: ApplicationSettingsValue;
470
- };
471
- }
472
- /**
473
- *
474
- * @export
475
- * @interface CamelPropertiesDTO
476
- */
477
- export interface CamelPropertiesDTO {
478
- /**
479
- *
480
- * @type {boolean}
481
- * @memberof CamelPropertiesDTO
482
- */
483
- 'disableSslVerification': boolean;
484
- /**
485
- *
486
- * @type {{ [key: string]: string; }}
487
- * @memberof CamelPropertiesDTO
488
- */
489
- 'extras'?: {
490
- [key: string]: string;
491
- };
492
- /**
493
- *
494
- * @type {string}
495
- * @memberof CamelPropertiesDTO
496
- */
497
- 'url': string;
498
- /**
499
- *
500
- * @type {BasicAuthenticationDTO}
501
- * @memberof CamelPropertiesDTO
502
- */
503
- 'basicAuthentication'?: BasicAuthenticationDTO;
504
- /**
505
- *
506
- * @type {string}
507
- * @memberof CamelPropertiesDTO
508
- */
509
- 'secretToken'?: string;
510
- }
511
201
  /**
512
202
  *
513
203
  * @export
@@ -594,31 +284,6 @@ export interface CreateBehaviorGroupResponse {
594
284
  */
595
285
  'created': string;
596
286
  }
597
- /**
598
- *
599
- * @export
600
- * @interface CurrentStatus
601
- */
602
- export interface CurrentStatus {
603
- /**
604
- *
605
- * @type {Status}
606
- * @memberof CurrentStatus
607
- */
608
- 'status': Status;
609
- /**
610
- *
611
- * @type {string}
612
- * @memberof CurrentStatus
613
- */
614
- 'start_time'?: string;
615
- /**
616
- *
617
- * @type {string}
618
- * @memberof CurrentStatus
619
- */
620
- 'end_time'?: string;
621
- }
622
287
  /**
623
288
  *
624
289
  * @export
@@ -744,107 +409,7 @@ export interface Endpoint {
744
409
  /**
745
410
  *
746
411
  * @export
747
- * @interface EndpointDTO
748
- */
749
- export interface EndpointDTO {
750
- /**
751
- *
752
- * @type {string}
753
- * @memberof EndpointDTO
754
- */
755
- 'id'?: string;
756
- /**
757
- *
758
- * @type {string}
759
- * @memberof EndpointDTO
760
- */
761
- 'name': string;
762
- /**
763
- *
764
- * @type {string}
765
- * @memberof EndpointDTO
766
- */
767
- 'description': string;
768
- /**
769
- *
770
- * @type {boolean}
771
- * @memberof EndpointDTO
772
- */
773
- 'enabled'?: boolean;
774
- /**
775
- *
776
- * @type {EndpointStatusDTO}
777
- * @memberof EndpointDTO
778
- */
779
- 'status'?: EndpointStatusDTO;
780
- /**
781
- *
782
- * @type {number}
783
- * @memberof EndpointDTO
784
- */
785
- 'server_errors'?: number;
786
- /**
787
- *
788
- * @type {EndpointTypeDTO}
789
- * @memberof EndpointDTO
790
- */
791
- 'type': EndpointTypeDTO;
792
- /**
793
- *
794
- * @type {string}
795
- * @memberof EndpointDTO
796
- */
797
- 'sub_type'?: string;
798
- /**
799
- *
800
- * @type {string}
801
- * @memberof EndpointDTO
802
- */
803
- 'created'?: string;
804
- /**
805
- *
806
- * @type {string}
807
- * @memberof EndpointDTO
808
- */
809
- 'updated'?: string;
810
- /**
811
- *
812
- * @type {object}
813
- * @memberof EndpointDTO
814
- */
815
- 'properties'?: object;
816
- }
817
- /**
818
- *
819
- * @export
820
- * @interface EndpointPage
821
- */
822
- export interface EndpointPage {
823
- /**
824
- *
825
- * @type {Array<EndpointDTO>}
826
- * @memberof EndpointPage
827
- */
828
- 'data': Array<EndpointDTO>;
829
- /**
830
- *
831
- * @type {{ [key: string]: string; }}
832
- * @memberof EndpointPage
833
- */
834
- 'links': {
835
- [key: string]: string;
836
- };
837
- /**
838
- *
839
- * @type {Meta}
840
- * @memberof EndpointPage
841
- */
842
- 'meta': Meta;
843
- }
844
- /**
845
- *
846
- * @export
847
- * @enum {string}
412
+ * @enum {string}
848
413
  */
849
414
  export declare const EndpointStatus: {
850
415
  readonly Ready: "READY";
@@ -855,33 +420,6 @@ export declare const EndpointStatus: {
855
420
  readonly Failed: "FAILED";
856
421
  };
857
422
  export type EndpointStatus = typeof EndpointStatus[keyof typeof EndpointStatus];
858
- /**
859
- *
860
- * @export
861
- * @enum {string}
862
- */
863
- export declare const EndpointStatusDTO: {
864
- readonly Deleting: "DELETING";
865
- readonly Failed: "FAILED";
866
- readonly New: "NEW";
867
- readonly Provisioning: "PROVISIONING";
868
- readonly Ready: "READY";
869
- readonly Unknown: "UNKNOWN";
870
- };
871
- export type EndpointStatusDTO = typeof EndpointStatusDTO[keyof typeof EndpointStatusDTO];
872
- /**
873
- *
874
- * @export
875
- * @interface EndpointTestRequest
876
- */
877
- export interface EndpointTestRequest {
878
- /**
879
- *
880
- * @type {string}
881
- * @memberof EndpointTestRequest
882
- */
883
- 'message': string;
884
- }
885
423
  /**
886
424
  *
887
425
  * @export
@@ -896,31 +434,6 @@ export declare const EndpointType: {
896
434
  readonly Pagerduty: "pagerduty";
897
435
  };
898
436
  export type EndpointType = typeof EndpointType[keyof typeof EndpointType];
899
- /**
900
- *
901
- * @export
902
- * @enum {string}
903
- */
904
- export declare const EndpointTypeDTO: {
905
- readonly Ansible: "ansible";
906
- readonly Camel: "camel";
907
- readonly Drawer: "drawer";
908
- readonly EmailSubscription: "email_subscription";
909
- readonly Webhook: "webhook";
910
- };
911
- export type EndpointTypeDTO = typeof EndpointTypeDTO[keyof typeof EndpointTypeDTO];
912
- /**
913
- *
914
- * @export
915
- * @enum {string}
916
- */
917
- export declare const Environment: {
918
- readonly Prod: "PROD";
919
- readonly Stage: "STAGE";
920
- readonly Ephemeral: "EPHEMERAL";
921
- readonly LocalServer: "LOCAL_SERVER";
922
- };
923
- export type Environment = typeof Environment[keyof typeof Environment];
924
437
  /**
925
438
  *
926
439
  * @export
@@ -1062,832 +575,220 @@ export interface EventType {
1062
575
  /**
1063
576
  *
1064
577
  * @type {string}
1065
- * @memberof EventType
1066
- */
1067
- 'description'?: string;
1068
- /**
1069
- *
1070
- * @type {string}
1071
- * @memberof EventType
1072
- */
1073
- 'fully_qualified_name'?: string;
1074
- /**
1075
- *
1076
- * @type {string}
1077
- * @memberof EventType
1078
- */
1079
- 'application_id': string;
1080
- /**
1081
- *
1082
- * @type {Application}
1083
- * @memberof EventType
1084
- */
1085
- 'application'?: Application;
1086
- /**
1087
- *
1088
- * @type {boolean}
1089
- * @memberof EventType
1090
- */
1091
- 'visible'?: boolean;
1092
- /**
1093
- *
1094
- * @type {boolean}
1095
- * @memberof EventType
1096
- */
1097
- 'subscribed_by_default'?: boolean;
1098
- /**
1099
- *
1100
- * @type {boolean}
1101
- * @memberof EventType
1102
- */
1103
- 'subscription_locked'?: boolean;
1104
- /**
1105
- *
1106
- * @type {boolean}
1107
- * @memberof EventType
1108
- */
1109
- 'not_subscription_locked_or_subscribed_by_default'?: boolean;
1110
- }
1111
- /**
1112
- *
1113
- * @export
1114
- * @interface EventTypeBehavior
1115
- */
1116
- export interface EventTypeBehavior {
1117
- /**
1118
- *
1119
- * @type {string}
1120
- * @memberof EventTypeBehavior
1121
- */
1122
- 'created'?: string;
1123
- /**
1124
- *
1125
- * @type {EventTypeBehaviorId}
1126
- * @memberof EventTypeBehavior
1127
- */
1128
- 'id'?: EventTypeBehaviorId;
1129
- /**
1130
- *
1131
- * @type {EventType}
1132
- * @memberof EventTypeBehavior
1133
- */
1134
- 'event_type'?: EventType;
1135
- }
1136
- /**
1137
- *
1138
- * @export
1139
- * @interface EventTypeBehaviorId
1140
- */
1141
- export interface EventTypeBehaviorId {
1142
- /**
1143
- *
1144
- * @type {string}
1145
- * @memberof EventTypeBehaviorId
1146
- */
1147
- 'eventTypeId': string;
1148
- /**
1149
- *
1150
- * @type {string}
1151
- * @memberof EventTypeBehaviorId
1152
- */
1153
- 'behaviorGroupId': string;
1154
- }
1155
- /**
1156
- *
1157
- * @export
1158
- * @interface EventTypeSettingsValue
1159
- */
1160
- export interface EventTypeSettingsValue {
1161
- /**
1162
- *
1163
- * @type {{ [key: string]: boolean; }}
1164
- * @memberof EventTypeSettingsValue
1165
- */
1166
- 'emailSubscriptionTypes'?: {
1167
- [key: string]: boolean;
1168
- };
1169
- /**
1170
- *
1171
- * @type {boolean}
1172
- * @memberof EventTypeSettingsValue
1173
- */
1174
- 'hasForcedEmail'?: boolean;
1175
- /**
1176
- *
1177
- * @type {boolean}
1178
- * @memberof EventTypeSettingsValue
1179
- */
1180
- 'subscriptionLocked'?: boolean;
1181
- }
1182
- /**
1183
- *
1184
- * @export
1185
- * @interface EventsReplayRequest
1186
- */
1187
- export interface EventsReplayRequest {
1188
- /**
1189
- *
1190
- * @type {string}
1191
- * @memberof EventsReplayRequest
1192
- */
1193
- 'start_date': string;
1194
- /**
1195
- *
1196
- * @type {string}
1197
- * @memberof EventsReplayRequest
1198
- */
1199
- 'end_date': string;
1200
- /**
1201
- *
1202
- * @type {string}
1203
- * @memberof EventsReplayRequest
1204
- */
1205
- 'org_id'?: string;
1206
- }
1207
- /**
1208
- *
1209
- * @export
1210
- * @interface Facet
1211
- */
1212
- export interface Facet {
1213
- /**
1214
- *
1215
- * @type {string}
1216
- * @memberof Facet
1217
- */
1218
- 'id': string;
1219
- /**
1220
- *
1221
- * @type {string}
1222
- * @memberof Facet
1223
- */
1224
- 'name': string;
1225
- /**
1226
- *
1227
- * @type {string}
1228
- * @memberof Facet
1229
- */
1230
- 'displayName': string;
1231
- /**
1232
- *
1233
- * @type {Array<Facet>}
1234
- * @memberof Facet
1235
- */
1236
- 'children'?: Array<Facet>;
1237
- }
1238
- /**
1239
- *
1240
- * @export
1241
- * @enum {string}
1242
- */
1243
- export declare const HttpType: {
1244
- readonly Get: "GET";
1245
- readonly Post: "POST";
1246
- readonly Put: "PUT";
1247
- };
1248
- export type HttpType = typeof HttpType[keyof typeof HttpType];
1249
- /**
1250
- *
1251
- * @export
1252
- * @interface InstantEmailTemplate
1253
- */
1254
- export interface InstantEmailTemplate {
1255
- /**
1256
- *
1257
- * @type {string}
1258
- * @memberof InstantEmailTemplate
1259
- */
1260
- 'created'?: string;
1261
- /**
1262
- *
1263
- * @type {string}
1264
- * @memberof InstantEmailTemplate
1265
- */
1266
- 'updated'?: string;
1267
- /**
1268
- *
1269
- * @type {string}
1270
- * @memberof InstantEmailTemplate
1271
- */
1272
- 'id'?: string;
1273
- /**
1274
- *
1275
- * @type {EventType}
1276
- * @memberof InstantEmailTemplate
1277
- */
1278
- 'event_type'?: EventType;
1279
- /**
1280
- *
1281
- * @type {string}
1282
- * @memberof InstantEmailTemplate
1283
- */
1284
- 'event_type_id'?: string;
1285
- /**
1286
- *
1287
- * @type {AggregationEmailTemplateSubjectTemplate}
1288
- * @memberof InstantEmailTemplate
1289
- */
1290
- 'subject_template'?: AggregationEmailTemplateSubjectTemplate;
1291
- /**
1292
- *
1293
- * @type {string}
1294
- * @memberof InstantEmailTemplate
1295
- */
1296
- 'subject_template_id': string;
1297
- /**
1298
- *
1299
- * @type {AggregationEmailTemplateSubjectTemplate}
1300
- * @memberof InstantEmailTemplate
1301
- */
1302
- 'body_template'?: AggregationEmailTemplateSubjectTemplate;
1303
- /**
1304
- *
1305
- * @type {string}
1306
- * @memberof InstantEmailTemplate
1307
- */
1308
- 'body_template_id': string;
1309
- }
1310
- /**
1311
- *
1312
- * @export
1313
- * @interface InternalApplicationUserPermission
1314
- */
1315
- export interface InternalApplicationUserPermission {
1316
- /**
1317
- *
1318
- * @type {string}
1319
- * @memberof InternalApplicationUserPermission
1320
- */
1321
- 'application_id': string;
1322
- /**
1323
- *
1324
- * @type {string}
1325
- * @memberof InternalApplicationUserPermission
1326
- */
1327
- 'application_display_name': string;
1328
- /**
1329
- *
1330
- * @type {string}
1331
- * @memberof InternalApplicationUserPermission
1332
- */
1333
- 'role': string;
1334
- }
1335
- /**
1336
- *
1337
- * @export
1338
- * @interface InternalRoleAccess
1339
- */
1340
- export interface InternalRoleAccess {
1341
- /**
1342
- *
1343
- * @type {string}
1344
- * @memberof InternalRoleAccess
1345
- */
1346
- 'id'?: string;
1347
- /**
1348
- *
1349
- * @type {string}
1350
- * @memberof InternalRoleAccess
1351
- */
1352
- 'role': string;
1353
- /**
1354
- *
1355
- * @type {string}
1356
- * @memberof InternalRoleAccess
1357
- */
1358
- 'application_id': string;
1359
- }
1360
- /**
1361
- *
1362
- * @export
1363
- * @interface InternalUserPermissions
1364
- */
1365
- export interface InternalUserPermissions {
1366
- /**
1367
- *
1368
- * @type {boolean}
1369
- * @memberof InternalUserPermissions
1370
- */
1371
- 'is_admin': boolean;
1372
- /**
1373
- *
1374
- * @type {Array<Application1>}
1375
- * @memberof InternalUserPermissions
1376
- */
1377
- 'applications': Array<Application1>;
1378
- /**
1379
- *
1380
- * @type {Array<string>}
1381
- * @memberof InternalUserPermissions
1382
- */
1383
- 'roles': Array<string>;
1384
- }
1385
- /**
1386
- *
1387
- * @export
1388
- * @interface MessageValidationResponse
1389
- */
1390
- export interface MessageValidationResponse {
1391
- /**
1392
- *
1393
- * @type {{ [key: string]: Array<string>; }}
1394
- * @memberof MessageValidationResponse
1395
- */
1396
- 'errors': {
1397
- [key: string]: Array<string>;
1398
- };
1399
- }
1400
- /**
1401
- *
1402
- * @export
1403
- * @interface Meta
1404
- */
1405
- export interface Meta {
1406
- /**
1407
- *
1408
- * @type {number}
1409
- * @memberof Meta
1410
- */
1411
- 'count': number;
1412
- }
1413
- /**
1414
- *
1415
- * @export
1416
- * @interface NotificationHistory
1417
- */
1418
- export interface NotificationHistory {
1419
- /**
1420
- *
1421
- * @type {string}
1422
- * @memberof NotificationHistory
1423
- */
1424
- 'created'?: string;
1425
- /**
1426
- *
1427
- * @type {string}
1428
- * @memberof NotificationHistory
1429
- */
1430
- 'id'?: string;
1431
- /**
1432
- *
1433
- * @type {number}
1434
- * @memberof NotificationHistory
1435
- */
1436
- 'invocationTime': number;
1437
- /**
1438
- *
1439
- * @type {boolean}
1440
- * @memberof NotificationHistory
1441
- * @deprecated
1442
- */
1443
- 'invocationResult': boolean;
1444
- /**
1445
- *
1446
- * @type {NotificationStatus}
1447
- * @memberof NotificationHistory
1448
- */
1449
- 'status': NotificationStatus;
1450
- /**
1451
- *
1452
- * @type {string}
1453
- * @memberof NotificationHistory
1454
- */
1455
- 'endpointId'?: string;
1456
- /**
1457
- *
1458
- * @type {{ [key: string]: any; }}
1459
- * @memberof NotificationHistory
1460
- */
1461
- 'details'?: {
1462
- [key: string]: any;
1463
- };
1464
- /**
1465
- *
1466
- * @type {EndpointType}
1467
- * @memberof NotificationHistory
1468
- */
1469
- 'endpointType'?: EndpointType;
1470
- /**
1471
- *
1472
- * @type {string}
1473
- * @memberof NotificationHistory
1474
- */
1475
- 'endpointSubType'?: string;
1476
- }
1477
- /**
1478
- *
1479
- * @export
1480
- * @enum {string}
1481
- */
1482
- export declare const NotificationStatus: {
1483
- readonly FailedInternal: "FAILED_INTERNAL";
1484
- readonly FailedExternal: "FAILED_EXTERNAL";
1485
- readonly Processing: "PROCESSING";
1486
- readonly Sent: "SENT";
1487
- readonly Success: "SUCCESS";
1488
- };
1489
- export type NotificationStatus = typeof NotificationStatus[keyof typeof NotificationStatus];
1490
- /**
1491
- *
1492
- * @export
1493
- * @interface PageBehaviorGroup
1494
- */
1495
- export interface PageBehaviorGroup {
1496
- /**
1497
- *
1498
- * @type {Array<BehaviorGroup>}
1499
- * @memberof PageBehaviorGroup
1500
- */
1501
- 'data': Array<BehaviorGroup>;
1502
- /**
1503
- *
1504
- * @type {{ [key: string]: string; }}
1505
- * @memberof PageBehaviorGroup
1506
- */
1507
- 'links': {
1508
- [key: string]: string;
1509
- };
1510
- /**
1511
- *
1512
- * @type {Meta}
1513
- * @memberof PageBehaviorGroup
1514
- */
1515
- 'meta': Meta;
1516
- }
1517
- /**
1518
- *
1519
- * @export
1520
- * @interface PageDrawerEntryPayload
1521
- */
1522
- export interface PageDrawerEntryPayload {
1523
- /**
1524
- *
1525
- * @type {Array<DrawerEntryPayload>}
1526
- * @memberof PageDrawerEntryPayload
1527
- */
1528
- 'data': Array<DrawerEntryPayload>;
1529
- /**
1530
- *
1531
- * @type {{ [key: string]: string; }}
1532
- * @memberof PageDrawerEntryPayload
1533
- */
1534
- 'links': {
1535
- [key: string]: string;
1536
- };
1537
- /**
1538
- *
1539
- * @type {Meta}
1540
- * @memberof PageDrawerEntryPayload
1541
- */
1542
- 'meta': Meta;
1543
- }
1544
- /**
1545
- *
1546
- * @export
1547
- * @interface PageEventLogEntry
1548
- */
1549
- export interface PageEventLogEntry {
1550
- /**
1551
- *
1552
- * @type {Array<EventLogEntry>}
1553
- * @memberof PageEventLogEntry
1554
- */
1555
- 'data': Array<EventLogEntry>;
1556
- /**
1557
- *
1558
- * @type {{ [key: string]: string; }}
1559
- * @memberof PageEventLogEntry
1560
- */
1561
- 'links': {
1562
- [key: string]: string;
1563
- };
1564
- /**
1565
- *
1566
- * @type {Meta}
1567
- * @memberof PageEventLogEntry
1568
- */
1569
- 'meta': Meta;
1570
- }
1571
- /**
1572
- *
1573
- * @export
1574
- * @interface PageEventType
1575
- */
1576
- export interface PageEventType {
1577
- /**
1578
- *
1579
- * @type {Array<EventType>}
1580
- * @memberof PageEventType
1581
- */
1582
- 'data': Array<EventType>;
1583
- /**
1584
- *
1585
- * @type {{ [key: string]: string; }}
1586
- * @memberof PageEventType
1587
- */
1588
- 'links': {
1589
- [key: string]: string;
1590
- };
1591
- /**
1592
- *
1593
- * @type {Meta}
1594
- * @memberof PageEventType
1595
- */
1596
- 'meta': Meta;
1597
- }
1598
- /**
1599
- *
1600
- * @export
1601
- * @interface PageNotificationHistory
1602
- */
1603
- export interface PageNotificationHistory {
1604
- /**
1605
- *
1606
- * @type {Array<NotificationHistory>}
1607
- * @memberof PageNotificationHistory
1608
- */
1609
- 'data': Array<NotificationHistory>;
1610
- /**
1611
- *
1612
- * @type {{ [key: string]: string; }}
1613
- * @memberof PageNotificationHistory
1614
- */
1615
- 'links': {
1616
- [key: string]: string;
1617
- };
1618
- /**
1619
- *
1620
- * @type {Meta}
1621
- * @memberof PageNotificationHistory
1622
- */
1623
- 'meta': Meta;
1624
- }
1625
- /**
1626
- *
1627
- * @export
1628
- * @interface PagerDutyPropertiesDTO
1629
- */
1630
- export interface PagerDutyPropertiesDTO {
1631
- /**
1632
- *
1633
- * @type {PagerDutySeverity}
1634
- * @memberof PagerDutyPropertiesDTO
1635
- */
1636
- 'severity': PagerDutySeverity;
1637
- /**
1638
- *
1639
- * @type {string}
1640
- * @memberof PagerDutyPropertiesDTO
1641
- */
1642
- 'secretToken': string;
1643
- }
1644
- /**
1645
- *
1646
- * @export
1647
- * @enum {string}
1648
- */
1649
- export declare const PagerDutySeverity: {
1650
- readonly Critical: "critical";
1651
- readonly Error: "error";
1652
- readonly Warning: "warning";
1653
- readonly Info: "info";
1654
- };
1655
- export type PagerDutySeverity = typeof PagerDutySeverity[keyof typeof PagerDutySeverity];
1656
- /**
1657
- *
1658
- * @export
1659
- * @interface RenderEmailTemplateRequest
1660
- */
1661
- export interface RenderEmailTemplateRequest {
1662
- /**
1663
- *
1664
- * @type {Array<string>}
1665
- * @memberof RenderEmailTemplateRequest
578
+ * @memberof EventType
1666
579
  */
1667
- 'template': Array<string>;
580
+ 'description'?: string;
1668
581
  /**
1669
582
  *
1670
583
  * @type {string}
1671
- * @memberof RenderEmailTemplateRequest
584
+ * @memberof EventType
1672
585
  */
1673
- 'payload': string;
1674
- }
1675
- /**
1676
- *
1677
- * @export
1678
- * @interface RequestDefaultBehaviorGroupPropertyList
1679
- */
1680
- export interface RequestDefaultBehaviorGroupPropertyList {
586
+ 'fully_qualified_name'?: string;
1681
587
  /**
1682
588
  *
1683
- * @type {boolean}
1684
- * @memberof RequestDefaultBehaviorGroupPropertyList
589
+ * @type {string}
590
+ * @memberof EventType
1685
591
  */
1686
- 'only_admins': boolean;
592
+ 'application_id': string;
1687
593
  /**
1688
594
  *
1689
- * @type {boolean}
1690
- * @memberof RequestDefaultBehaviorGroupPropertyList
595
+ * @type {Application}
596
+ * @memberof EventType
1691
597
  */
1692
- 'ignore_preferences': boolean;
1693
- }
1694
- /**
1695
- *
1696
- * @export
1697
- * @interface RequestSystemSubscriptionProperties
1698
- */
1699
- export interface RequestSystemSubscriptionProperties {
598
+ 'application'?: Application;
1700
599
  /**
1701
600
  *
1702
601
  * @type {boolean}
1703
- * @memberof RequestSystemSubscriptionProperties
602
+ * @memberof EventType
1704
603
  */
1705
- 'only_admins': boolean;
604
+ 'visible'?: boolean;
1706
605
  /**
1707
606
  *
1708
- * @type {string}
1709
- * @memberof RequestSystemSubscriptionProperties
607
+ * @type {boolean}
608
+ * @memberof EventType
1710
609
  */
1711
- 'group_id'?: string;
1712
- }
1713
- /**
1714
- *
1715
- * @export
1716
- * @interface ServerInfo
1717
- */
1718
- export interface ServerInfo {
610
+ 'subscribed_by_default'?: boolean;
1719
611
  /**
1720
612
  *
1721
- * @type {Environment}
1722
- * @memberof ServerInfo
613
+ * @type {boolean}
614
+ * @memberof EventType
1723
615
  */
1724
- 'environment'?: Environment;
1725
- }
1726
- /**
1727
- *
1728
- * @export
1729
- * @interface SettingsValuesByEventType
1730
- */
1731
- export interface SettingsValuesByEventType {
616
+ 'subscription_locked'?: boolean;
1732
617
  /**
1733
618
  *
1734
- * @type {{ [key: string]: BundleSettingsValue; }}
1735
- * @memberof SettingsValuesByEventType
619
+ * @type {boolean}
620
+ * @memberof EventType
1736
621
  */
1737
- 'bundles'?: {
1738
- [key: string]: BundleSettingsValue;
1739
- };
622
+ 'not_subscription_locked_or_subscribed_by_default'?: boolean;
1740
623
  }
1741
624
  /**
1742
625
  *
1743
626
  * @export
1744
- * @enum {string}
1745
- */
1746
- export declare const Status: {
1747
- readonly Up: "UP";
1748
- readonly Maintenance: "MAINTENANCE";
1749
- };
1750
- export type Status = typeof Status[keyof typeof Status];
1751
- /**
1752
- *
1753
- * @export
1754
- * @enum {string}
1755
- */
1756
- export declare const SubscriptionType: {
1757
- readonly Instant: "INSTANT";
1758
- readonly Daily: "DAILY";
1759
- readonly Drawer: "DRAWER";
1760
- };
1761
- export type SubscriptionType = typeof SubscriptionType[keyof typeof SubscriptionType];
1762
- /**
1763
- *
1764
- * @export
1765
- * @interface SystemSubscriptionPropertiesDTO
627
+ * @interface EventTypeBehavior
1766
628
  */
1767
- export interface SystemSubscriptionPropertiesDTO {
629
+ export interface EventTypeBehavior {
1768
630
  /**
1769
631
  *
1770
632
  * @type {string}
1771
- * @memberof SystemSubscriptionPropertiesDTO
633
+ * @memberof EventTypeBehavior
1772
634
  */
1773
- 'groupId'?: string;
635
+ 'created'?: string;
1774
636
  /**
1775
637
  *
1776
- * @type {boolean}
1777
- * @memberof SystemSubscriptionPropertiesDTO
638
+ * @type {EventTypeBehaviorId}
639
+ * @memberof EventTypeBehavior
1778
640
  */
1779
- 'ignorePreferences'?: boolean;
641
+ 'id'?: EventTypeBehaviorId;
1780
642
  /**
1781
643
  *
1782
- * @type {boolean}
1783
- * @memberof SystemSubscriptionPropertiesDTO
644
+ * @type {EventType}
645
+ * @memberof EventTypeBehavior
1784
646
  */
1785
- 'onlyAdmins'?: boolean;
647
+ 'event_type'?: EventType;
1786
648
  }
1787
649
  /**
1788
650
  *
1789
651
  * @export
1790
- * @interface Template
652
+ * @interface EventTypeBehaviorId
1791
653
  */
1792
- export interface Template {
654
+ export interface EventTypeBehaviorId {
1793
655
  /**
1794
656
  *
1795
657
  * @type {string}
1796
- * @memberof Template
658
+ * @memberof EventTypeBehaviorId
1797
659
  */
1798
- 'created'?: string;
660
+ 'eventTypeId': string;
1799
661
  /**
1800
662
  *
1801
663
  * @type {string}
1802
- * @memberof Template
664
+ * @memberof EventTypeBehaviorId
1803
665
  */
1804
- 'updated'?: string;
666
+ 'behaviorGroupId': string;
667
+ }
668
+ /**
669
+ *
670
+ * @export
671
+ * @interface Facet
672
+ */
673
+ export interface Facet {
1805
674
  /**
1806
675
  *
1807
676
  * @type {string}
1808
- * @memberof Template
677
+ * @memberof Facet
1809
678
  */
1810
- 'id'?: string;
679
+ 'id': string;
1811
680
  /**
1812
681
  *
1813
682
  * @type {string}
1814
- * @memberof Template
683
+ * @memberof Facet
1815
684
  */
1816
685
  'name': string;
1817
686
  /**
1818
687
  *
1819
688
  * @type {string}
1820
- * @memberof Template
689
+ * @memberof Facet
1821
690
  */
1822
- 'description': string;
691
+ 'displayName': string;
1823
692
  /**
1824
693
  *
1825
- * @type {string}
1826
- * @memberof Template
694
+ * @type {Array<Facet>}
695
+ * @memberof Facet
1827
696
  */
1828
- 'data': string;
697
+ 'children'?: Array<Facet>;
1829
698
  }
1830
699
  /**
1831
700
  *
1832
701
  * @export
1833
- * @interface TriggerDailyDigestRequest
702
+ * @interface Meta
1834
703
  */
1835
- export interface TriggerDailyDigestRequest {
704
+ export interface Meta {
1836
705
  /**
1837
706
  *
1838
- * @type {string}
1839
- * @memberof TriggerDailyDigestRequest
707
+ * @type {number}
708
+ * @memberof Meta
1840
709
  */
1841
- 'application_name': string;
710
+ 'count': number;
711
+ }
712
+ /**
713
+ *
714
+ * @export
715
+ * @interface PageDrawerEntryPayload
716
+ */
717
+ export interface PageDrawerEntryPayload {
1842
718
  /**
1843
719
  *
1844
- * @type {string}
1845
- * @memberof TriggerDailyDigestRequest
720
+ * @type {Array<DrawerEntryPayload>}
721
+ * @memberof PageDrawerEntryPayload
1846
722
  */
1847
- 'bundle_name': string;
723
+ 'data': Array<DrawerEntryPayload>;
1848
724
  /**
1849
725
  *
1850
- * @type {string}
1851
- * @memberof TriggerDailyDigestRequest
726
+ * @type {{ [key: string]: string; }}
727
+ * @memberof PageDrawerEntryPayload
1852
728
  */
1853
- 'end'?: string;
729
+ 'links': {
730
+ [key: string]: string;
731
+ };
1854
732
  /**
1855
733
  *
1856
- * @type {string}
1857
- * @memberof TriggerDailyDigestRequest
734
+ * @type {Meta}
735
+ * @memberof PageDrawerEntryPayload
736
+ */
737
+ 'meta': Meta;
738
+ }
739
+ /**
740
+ *
741
+ * @export
742
+ * @interface PageEventLogEntry
743
+ */
744
+ export interface PageEventLogEntry {
745
+ /**
746
+ *
747
+ * @type {Array<EventLogEntry>}
748
+ * @memberof PageEventLogEntry
1858
749
  */
1859
- 'org_id': string;
750
+ 'data': Array<EventLogEntry>;
1860
751
  /**
1861
752
  *
1862
- * @type {string}
1863
- * @memberof TriggerDailyDigestRequest
753
+ * @type {{ [key: string]: string; }}
754
+ * @memberof PageEventLogEntry
755
+ */
756
+ 'links': {
757
+ [key: string]: string;
758
+ };
759
+ /**
760
+ *
761
+ * @type {Meta}
762
+ * @memberof PageEventLogEntry
1864
763
  */
1865
- 'start'?: string;
764
+ 'meta': Meta;
1866
765
  }
1867
766
  /**
1868
767
  *
1869
768
  * @export
1870
- * @interface UpdateApplicationRequest
769
+ * @interface PageEventType
1871
770
  */
1872
- export interface UpdateApplicationRequest {
771
+ export interface PageEventType {
1873
772
  /**
1874
773
  *
1875
- * @type {string}
1876
- * @memberof UpdateApplicationRequest
774
+ * @type {Array<EventType>}
775
+ * @memberof PageEventType
1877
776
  */
1878
- 'name'?: string;
777
+ 'data': Array<EventType>;
1879
778
  /**
1880
779
  *
1881
- * @type {string}
1882
- * @memberof UpdateApplicationRequest
780
+ * @type {{ [key: string]: string; }}
781
+ * @memberof PageEventType
1883
782
  */
1884
- 'display_name'?: string;
783
+ 'links': {
784
+ [key: string]: string;
785
+ };
1885
786
  /**
1886
787
  *
1887
- * @type {string}
1888
- * @memberof UpdateApplicationRequest
788
+ * @type {Meta}
789
+ * @memberof PageEventType
1889
790
  */
1890
- 'owner_role'?: string;
791
+ 'meta': Meta;
1891
792
  }
1892
793
  /**
1893
794
  *
@@ -1939,86 +840,6 @@ export interface UpdateNotificationDrawerStatus {
1939
840
  */
1940
841
  'read_status': boolean;
1941
842
  }
1942
- /**
1943
- *
1944
- * @export
1945
- * @interface WebhookPropertiesDTO
1946
- */
1947
- export interface WebhookPropertiesDTO {
1948
- /**
1949
- *
1950
- * @type {boolean}
1951
- * @memberof WebhookPropertiesDTO
1952
- */
1953
- 'disableSslVerification': boolean;
1954
- /**
1955
- *
1956
- * @type {HttpType}
1957
- * @memberof WebhookPropertiesDTO
1958
- */
1959
- 'method': HttpType;
1960
- /**
1961
- *
1962
- * @type {string}
1963
- * @memberof WebhookPropertiesDTO
1964
- */
1965
- 'url': string;
1966
- /**
1967
- *
1968
- * @type {BasicAuthenticationDTO}
1969
- * @memberof WebhookPropertiesDTO
1970
- */
1971
- 'basicAuthentication'?: BasicAuthenticationDTO;
1972
- /**
1973
- *
1974
- * @type {string}
1975
- * @memberof WebhookPropertiesDTO
1976
- */
1977
- 'bearerAuthentication'?: string;
1978
- /**
1979
- *
1980
- * @type {string}
1981
- * @memberof WebhookPropertiesDTO
1982
- */
1983
- 'secretToken'?: string;
1984
- }
1985
- /**
1986
- *
1987
- * @export
1988
- * @interface X509Certificate
1989
- */
1990
- export interface X509Certificate {
1991
- /**
1992
- *
1993
- * @type {string}
1994
- * @memberof X509Certificate
1995
- */
1996
- 'id'?: string;
1997
- /**
1998
- *
1999
- * @type {string}
2000
- * @memberof X509Certificate
2001
- */
2002
- 'subject_dn': string;
2003
- /**
2004
- *
2005
- * @type {string}
2006
- * @memberof X509Certificate
2007
- */
2008
- 'source_environment': string;
2009
- /**
2010
- *
2011
- * @type {string}
2012
- * @memberof X509Certificate
2013
- */
2014
- 'bundle': string;
2015
- /**
2016
- *
2017
- * @type {string}
2018
- * @memberof X509Certificate
2019
- */
2020
- 'application': string;
2021
- }
2022
843
  /**
2023
844
  * DrawerResourceV1GetDrawerEntriesApi - axios parameter creator
2024
845
  * @export
@@ -2483,8 +1304,8 @@ export declare class NotificationResourceV1DeleteBehaviorGroupApi extends BaseAP
2483
1304
  */
2484
1305
  export declare const NotificationResourceV1DeleteBehaviorGroupFromEventTypeApiAxiosParamCreator: (configuration?: Configuration) => {
2485
1306
  /**
2486
- * Adds a behavior group to the specified event type.
2487
- * @summary Add a behavior group to an event type
1307
+ * Delete a behavior group from the specified event type.
1308
+ * @summary Delete a behavior group from an event type
2488
1309
  * @param {string} behaviorGroupId
2489
1310
  * @param {string} eventTypeId
2490
1311
  * @param {*} [options] Override http request option.
@@ -2498,8 +1319,8 @@ export declare const NotificationResourceV1DeleteBehaviorGroupFromEventTypeApiAx
2498
1319
  */
2499
1320
  export declare const NotificationResourceV1DeleteBehaviorGroupFromEventTypeApiFp: (configuration?: Configuration) => {
2500
1321
  /**
2501
- * Adds a behavior group to the specified event type.
2502
- * @summary Add a behavior group to an event type
1322
+ * Delete a behavior group from the specified event type.
1323
+ * @summary Delete a behavior group from an event type
2503
1324
  * @param {string} behaviorGroupId
2504
1325
  * @param {string} eventTypeId
2505
1326
  * @param {*} [options] Override http request option.
@@ -2513,8 +1334,8 @@ export declare const NotificationResourceV1DeleteBehaviorGroupFromEventTypeApiFp
2513
1334
  */
2514
1335
  export declare const NotificationResourceV1DeleteBehaviorGroupFromEventTypeApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
2515
1336
  /**
2516
- * Adds a behavior group to the specified event type.
2517
- * @summary Add a behavior group to an event type
1337
+ * Delete a behavior group from the specified event type.
1338
+ * @summary Delete a behavior group from an event type
2518
1339
  * @param {string} behaviorGroupId
2519
1340
  * @param {string} eventTypeId
2520
1341
  * @param {*} [options] Override http request option.
@@ -2530,8 +1351,8 @@ export declare const NotificationResourceV1DeleteBehaviorGroupFromEventTypeApiFa
2530
1351
  */
2531
1352
  export declare class NotificationResourceV1DeleteBehaviorGroupFromEventTypeApi extends BaseAPI {
2532
1353
  /**
2533
- * Adds a behavior group to the specified event type.
2534
- * @summary Add a behavior group to an event type
1354
+ * Delete a behavior group from the specified event type.
1355
+ * @summary Delete a behavior group from an event type
2535
1356
  * @param {string} behaviorGroupId
2536
1357
  * @param {string} eventTypeId
2537
1358
  * @param {*} [options] Override http request option.
@@ -3383,6 +2204,69 @@ export declare class NotificationResourceV1UpdateEventTypeBehaviorsApi extends B
3383
2204
  */
3384
2205
  notificationResourceV1UpdateEventTypeBehaviors(eventTypeId: string, requestBody?: Set<string>, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<string, any>>;
3385
2206
  }
2207
+ /**
2208
+ * NotificationResourceV1UpdateEventTypeEndpointsApi - axios parameter creator
2209
+ * @export
2210
+ */
2211
+ export declare const NotificationResourceV1UpdateEventTypeEndpointsApiAxiosParamCreator: (configuration?: Configuration) => {
2212
+ /**
2213
+ * Updates the list of endpoints associated with an event type.
2214
+ * @summary Update the list of endpoints for an event type
2215
+ * @param {string} eventTypeId UUID of the eventType to associate with the endpoint(s)
2216
+ * @param {Set<string>} [requestBody]
2217
+ * @param {*} [options] Override http request option.
2218
+ * @throws {RequiredError}
2219
+ */
2220
+ notificationResourceV1UpdateEventTypeEndpoints: (eventTypeId: string, requestBody?: Set<string>, options?: AxiosRequestConfig) => Promise<RequestArgs>;
2221
+ };
2222
+ /**
2223
+ * NotificationResourceV1UpdateEventTypeEndpointsApi - functional programming interface
2224
+ * @export
2225
+ */
2226
+ export declare const NotificationResourceV1UpdateEventTypeEndpointsApiFp: (configuration?: Configuration) => {
2227
+ /**
2228
+ * Updates the list of endpoints associated with an event type.
2229
+ * @summary Update the list of endpoints for an event type
2230
+ * @param {string} eventTypeId UUID of the eventType to associate with the endpoint(s)
2231
+ * @param {Set<string>} [requestBody]
2232
+ * @param {*} [options] Override http request option.
2233
+ * @throws {RequiredError}
2234
+ */
2235
+ notificationResourceV1UpdateEventTypeEndpoints(eventTypeId: string, requestBody?: Set<string>, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<string>>;
2236
+ };
2237
+ /**
2238
+ * NotificationResourceV1UpdateEventTypeEndpointsApi - factory interface
2239
+ * @export
2240
+ */
2241
+ export declare const NotificationResourceV1UpdateEventTypeEndpointsApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
2242
+ /**
2243
+ * Updates the list of endpoints associated with an event type.
2244
+ * @summary Update the list of endpoints for an event type
2245
+ * @param {string} eventTypeId UUID of the eventType to associate with the endpoint(s)
2246
+ * @param {Set<string>} [requestBody]
2247
+ * @param {*} [options] Override http request option.
2248
+ * @throws {RequiredError}
2249
+ */
2250
+ notificationResourceV1UpdateEventTypeEndpoints(eventTypeId: string, requestBody?: Set<string>, options?: any): AxiosPromise<string>;
2251
+ };
2252
+ /**
2253
+ * NotificationResourceV1UpdateEventTypeEndpointsApi - object-oriented interface
2254
+ * @export
2255
+ * @class NotificationResourceV1UpdateEventTypeEndpointsApi
2256
+ * @extends {BaseAPI}
2257
+ */
2258
+ export declare class NotificationResourceV1UpdateEventTypeEndpointsApi extends BaseAPI {
2259
+ /**
2260
+ * Updates the list of endpoints associated with an event type.
2261
+ * @summary Update the list of endpoints for an event type
2262
+ * @param {string} eventTypeId UUID of the eventType to associate with the endpoint(s)
2263
+ * @param {Set<string>} [requestBody]
2264
+ * @param {*} [options] Override http request option.
2265
+ * @throws {RequiredError}
2266
+ * @memberof NotificationResourceV1UpdateEventTypeEndpointsApi
2267
+ */
2268
+ notificationResourceV1UpdateEventTypeEndpoints(eventTypeId: string, requestBody?: Set<string>, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<string, any>>;
2269
+ }
3386
2270
  /**
3387
2271
  * OrgConfigResourceV1GetDailyDigestTimePreferenceApi - axios parameter creator
3388
2272
  * @export