@redhat-cloud-services/notifications-client 4.0.6 → 5.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.
- package/dist/esm/index.js +0 -1
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/tests/integration/notifications.v1.integration.test.js.map +1 -1
- package/dist/esm/types/index.d.ts +8 -8
- package/dist/esm/types/index.d.ts.map +1 -1
- package/dist/esm/v2/NotificationResourceV2V2GetLinkedBehaviorGroups/index.d.ts +53 -0
- package/dist/esm/v2/NotificationResourceV2V2GetLinkedBehaviorGroups/index.d.ts.map +1 -0
- package/dist/esm/v2/NotificationResourceV2V2GetLinkedBehaviorGroups/index.js +51 -0
- package/dist/esm/v2/NotificationResourceV2V2GetLinkedBehaviorGroups/index.js.map +1 -0
- package/dist/esm/v2/api.d.ts +2 -46
- package/dist/esm/v2/api.d.ts.map +1 -1
- package/dist/esm/v2/api.js +2 -24
- package/dist/esm/v2/api.js.map +1 -1
- package/dist/esm/v2/index.d.ts +1 -23
- package/dist/esm/v2/index.d.ts.map +1 -1
- package/dist/esm/v2/index.js +1 -23
- package/dist/esm/v2/index.js.map +1 -1
- package/dist/esm/v2/tests/integration/notifications.v2.integration.test.js +1 -122
- package/dist/esm/v2/tests/integration/notifications.v2.integration.test.js.map +1 -1
- package/dist/esm/v2/types/index.d.ts +13 -397
- package/dist/esm/v2/types/index.d.ts.map +1 -1
- package/dist/index.js +0 -1
- package/dist/index.js.map +1 -1
- package/dist/package.json +2 -2
- package/dist/tests/integration/notifications.v1.integration.test.js.map +1 -1
- package/dist/types/index.d.ts +8 -8
- package/dist/types/index.d.ts.map +1 -1
- package/dist/v2/NotificationResourceV2V2GetLinkedBehaviorGroups/index.d.ts +53 -0
- package/dist/v2/NotificationResourceV2V2GetLinkedBehaviorGroups/index.d.ts.map +1 -0
- package/dist/v2/NotificationResourceV2V2GetLinkedBehaviorGroups/index.js +67 -0
- package/dist/v2/NotificationResourceV2V2GetLinkedBehaviorGroups/index.js.map +1 -0
- package/dist/v2/api.d.ts +2 -46
- package/dist/v2/api.d.ts.map +1 -1
- package/dist/v2/api.js +1 -23
- package/dist/v2/api.js.map +1 -1
- package/dist/v2/index.d.ts +1 -23
- package/dist/v2/index.d.ts.map +1 -1
- package/dist/v2/index.js +3 -47
- package/dist/v2/index.js.map +1 -1
- package/dist/v2/tests/integration/notifications.v2.integration.test.js +1 -275
- package/dist/v2/tests/integration/notifications.v2.integration.test.js.map +1 -1
- package/dist/v2/types/index.d.ts +13 -397
- package/dist/v2/types/index.d.ts.map +1 -1
- package/package.json +2 -2
- package/project.json +2 -16
package/dist/v2/types/index.d.ts
CHANGED
|
@@ -33,13 +33,13 @@ export interface Application {
|
|
|
33
33
|
* @type {any}
|
|
34
34
|
* @memberof Application
|
|
35
35
|
*/
|
|
36
|
-
'
|
|
36
|
+
'displayName': any;
|
|
37
37
|
/**
|
|
38
38
|
*
|
|
39
39
|
* @type {any}
|
|
40
40
|
* @memberof Application
|
|
41
41
|
*/
|
|
42
|
-
'
|
|
42
|
+
'bundleId': any;
|
|
43
43
|
}
|
|
44
44
|
/**
|
|
45
45
|
*
|
|
@@ -70,13 +70,13 @@ export interface BehaviorGroup {
|
|
|
70
70
|
* @type {any}
|
|
71
71
|
* @memberof BehaviorGroup
|
|
72
72
|
*/
|
|
73
|
-
'
|
|
73
|
+
'displayName': any;
|
|
74
74
|
/**
|
|
75
75
|
*
|
|
76
76
|
* @type {any}
|
|
77
77
|
* @memberof BehaviorGroup
|
|
78
78
|
*/
|
|
79
|
-
'
|
|
79
|
+
'bundleId': any;
|
|
80
80
|
/**
|
|
81
81
|
*
|
|
82
82
|
* @type {Bundle}
|
|
@@ -181,142 +181,7 @@ export interface Bundle {
|
|
|
181
181
|
* @type {any}
|
|
182
182
|
* @memberof Bundle
|
|
183
183
|
*/
|
|
184
|
-
'
|
|
185
|
-
}
|
|
186
|
-
/**
|
|
187
|
-
*
|
|
188
|
-
* @export
|
|
189
|
-
* @interface CreateBehaviorGroupRequest
|
|
190
|
-
*/
|
|
191
|
-
export interface CreateBehaviorGroupRequest {
|
|
192
|
-
/**
|
|
193
|
-
*
|
|
194
|
-
* @type {any}
|
|
195
|
-
* @memberof CreateBehaviorGroupRequest
|
|
196
|
-
*/
|
|
197
|
-
'bundle_id'?: any;
|
|
198
|
-
/**
|
|
199
|
-
*
|
|
200
|
-
* @type {any}
|
|
201
|
-
* @memberof CreateBehaviorGroupRequest
|
|
202
|
-
*/
|
|
203
|
-
'bundle_name'?: any;
|
|
204
|
-
/**
|
|
205
|
-
*
|
|
206
|
-
* @type {any}
|
|
207
|
-
* @memberof CreateBehaviorGroupRequest
|
|
208
|
-
*/
|
|
209
|
-
'display_name': any;
|
|
210
|
-
/**
|
|
211
|
-
*
|
|
212
|
-
* @type {any}
|
|
213
|
-
* @memberof CreateBehaviorGroupRequest
|
|
214
|
-
*/
|
|
215
|
-
'endpoint_ids'?: any;
|
|
216
|
-
/**
|
|
217
|
-
*
|
|
218
|
-
* @type {any}
|
|
219
|
-
* @memberof CreateBehaviorGroupRequest
|
|
220
|
-
*/
|
|
221
|
-
'event_type_ids'?: any;
|
|
222
|
-
/**
|
|
223
|
-
*
|
|
224
|
-
* @type {any}
|
|
225
|
-
* @memberof CreateBehaviorGroupRequest
|
|
226
|
-
*/
|
|
227
|
-
'bundle_uuid_or_bundle_name_valid'?: any;
|
|
228
|
-
}
|
|
229
|
-
/**
|
|
230
|
-
*
|
|
231
|
-
* @export
|
|
232
|
-
* @interface CreateBehaviorGroupResponse
|
|
233
|
-
*/
|
|
234
|
-
export interface CreateBehaviorGroupResponse {
|
|
235
|
-
/**
|
|
236
|
-
*
|
|
237
|
-
* @type {any}
|
|
238
|
-
* @memberof CreateBehaviorGroupResponse
|
|
239
|
-
*/
|
|
240
|
-
'id': any;
|
|
241
|
-
/**
|
|
242
|
-
*
|
|
243
|
-
* @type {any}
|
|
244
|
-
* @memberof CreateBehaviorGroupResponse
|
|
245
|
-
*/
|
|
246
|
-
'bundle_id': any;
|
|
247
|
-
/**
|
|
248
|
-
*
|
|
249
|
-
* @type {any}
|
|
250
|
-
* @memberof CreateBehaviorGroupResponse
|
|
251
|
-
*/
|
|
252
|
-
'display_name': any;
|
|
253
|
-
/**
|
|
254
|
-
*
|
|
255
|
-
* @type {any}
|
|
256
|
-
* @memberof CreateBehaviorGroupResponse
|
|
257
|
-
*/
|
|
258
|
-
'endpoints': any;
|
|
259
|
-
/**
|
|
260
|
-
*
|
|
261
|
-
* @type {any}
|
|
262
|
-
* @memberof CreateBehaviorGroupResponse
|
|
263
|
-
*/
|
|
264
|
-
'event_types': any;
|
|
265
|
-
/**
|
|
266
|
-
*
|
|
267
|
-
* @type {any}
|
|
268
|
-
* @memberof CreateBehaviorGroupResponse
|
|
269
|
-
*/
|
|
270
|
-
'created': any;
|
|
271
|
-
}
|
|
272
|
-
/**
|
|
273
|
-
*
|
|
274
|
-
* @export
|
|
275
|
-
* @interface DrawerEntryPayload
|
|
276
|
-
*/
|
|
277
|
-
export interface DrawerEntryPayload {
|
|
278
|
-
/**
|
|
279
|
-
*
|
|
280
|
-
* @type {any}
|
|
281
|
-
* @memberof DrawerEntryPayload
|
|
282
|
-
*/
|
|
283
|
-
'id'?: any;
|
|
284
|
-
/**
|
|
285
|
-
*
|
|
286
|
-
* @type {any}
|
|
287
|
-
* @memberof DrawerEntryPayload
|
|
288
|
-
*/
|
|
289
|
-
'description'?: any;
|
|
290
|
-
/**
|
|
291
|
-
*
|
|
292
|
-
* @type {any}
|
|
293
|
-
* @memberof DrawerEntryPayload
|
|
294
|
-
*/
|
|
295
|
-
'title'?: any;
|
|
296
|
-
/**
|
|
297
|
-
*
|
|
298
|
-
* @type {any}
|
|
299
|
-
* @memberof DrawerEntryPayload
|
|
300
|
-
*/
|
|
301
|
-
'created'?: any;
|
|
302
|
-
/**
|
|
303
|
-
*
|
|
304
|
-
* @type {any}
|
|
305
|
-
* @memberof DrawerEntryPayload
|
|
306
|
-
*/
|
|
307
|
-
'read': any;
|
|
308
|
-
/**
|
|
309
|
-
*
|
|
310
|
-
* @type {any}
|
|
311
|
-
* @memberof DrawerEntryPayload
|
|
312
|
-
*/
|
|
313
|
-
'source'?: any;
|
|
314
|
-
/**
|
|
315
|
-
*
|
|
316
|
-
* @type {any}
|
|
317
|
-
* @memberof DrawerEntryPayload
|
|
318
|
-
*/
|
|
319
|
-
'bundle'?: any;
|
|
184
|
+
'displayName': any;
|
|
320
185
|
}
|
|
321
186
|
/**
|
|
322
187
|
*
|
|
@@ -371,7 +236,7 @@ export interface Endpoint {
|
|
|
371
236
|
* @type {any}
|
|
372
237
|
* @memberof Endpoint
|
|
373
238
|
*/
|
|
374
|
-
'
|
|
239
|
+
'serverErrors'?: any;
|
|
375
240
|
/**
|
|
376
241
|
*
|
|
377
242
|
* @type {any}
|
|
@@ -389,7 +254,7 @@ export interface Endpoint {
|
|
|
389
254
|
* @type {any}
|
|
390
255
|
* @memberof Endpoint
|
|
391
256
|
*/
|
|
392
|
-
'
|
|
257
|
+
'subType'?: any;
|
|
393
258
|
}
|
|
394
259
|
/**
|
|
395
260
|
*
|
|
@@ -405,120 +270,6 @@ export interface EndpointStatus {
|
|
|
405
270
|
*/
|
|
406
271
|
export interface EndpointType {
|
|
407
272
|
}
|
|
408
|
-
/**
|
|
409
|
-
*
|
|
410
|
-
* @export
|
|
411
|
-
* @interface EventLogEntry
|
|
412
|
-
*/
|
|
413
|
-
export interface EventLogEntry {
|
|
414
|
-
/**
|
|
415
|
-
*
|
|
416
|
-
* @type {any}
|
|
417
|
-
* @memberof EventLogEntry
|
|
418
|
-
*/
|
|
419
|
-
'id': any;
|
|
420
|
-
/**
|
|
421
|
-
*
|
|
422
|
-
* @type {any}
|
|
423
|
-
* @memberof EventLogEntry
|
|
424
|
-
*/
|
|
425
|
-
'created': any;
|
|
426
|
-
/**
|
|
427
|
-
*
|
|
428
|
-
* @type {any}
|
|
429
|
-
* @memberof EventLogEntry
|
|
430
|
-
*/
|
|
431
|
-
'bundle': any;
|
|
432
|
-
/**
|
|
433
|
-
*
|
|
434
|
-
* @type {any}
|
|
435
|
-
* @memberof EventLogEntry
|
|
436
|
-
*/
|
|
437
|
-
'application': any;
|
|
438
|
-
/**
|
|
439
|
-
*
|
|
440
|
-
* @type {any}
|
|
441
|
-
* @memberof EventLogEntry
|
|
442
|
-
*/
|
|
443
|
-
'event_type': any;
|
|
444
|
-
/**
|
|
445
|
-
*
|
|
446
|
-
* @type {any}
|
|
447
|
-
* @memberof EventLogEntry
|
|
448
|
-
*/
|
|
449
|
-
'payload'?: any;
|
|
450
|
-
/**
|
|
451
|
-
*
|
|
452
|
-
* @type {any}
|
|
453
|
-
* @memberof EventLogEntry
|
|
454
|
-
*/
|
|
455
|
-
'actions': any;
|
|
456
|
-
}
|
|
457
|
-
/**
|
|
458
|
-
*
|
|
459
|
-
* @export
|
|
460
|
-
* @interface EventLogEntryAction
|
|
461
|
-
*/
|
|
462
|
-
export interface EventLogEntryAction {
|
|
463
|
-
/**
|
|
464
|
-
*
|
|
465
|
-
* @type {any}
|
|
466
|
-
* @memberof EventLogEntryAction
|
|
467
|
-
*/
|
|
468
|
-
'id': any;
|
|
469
|
-
/**
|
|
470
|
-
*
|
|
471
|
-
* @type {EndpointType}
|
|
472
|
-
* @memberof EventLogEntryAction
|
|
473
|
-
*/
|
|
474
|
-
'endpoint_type': EndpointType;
|
|
475
|
-
/**
|
|
476
|
-
*
|
|
477
|
-
* @type {any}
|
|
478
|
-
* @memberof EventLogEntryAction
|
|
479
|
-
*/
|
|
480
|
-
'endpoint_sub_type'?: any;
|
|
481
|
-
/**
|
|
482
|
-
*
|
|
483
|
-
* @type {any}
|
|
484
|
-
* @memberof EventLogEntryAction
|
|
485
|
-
* @deprecated
|
|
486
|
-
*/
|
|
487
|
-
'invocation_result': any;
|
|
488
|
-
/**
|
|
489
|
-
*
|
|
490
|
-
* @type {EventLogEntryActionStatus}
|
|
491
|
-
* @memberof EventLogEntryAction
|
|
492
|
-
*/
|
|
493
|
-
'status': EventLogEntryActionStatus;
|
|
494
|
-
/**
|
|
495
|
-
*
|
|
496
|
-
* @type {any}
|
|
497
|
-
* @memberof EventLogEntryAction
|
|
498
|
-
*/
|
|
499
|
-
'endpoint_id'?: any;
|
|
500
|
-
/**
|
|
501
|
-
*
|
|
502
|
-
* @type {{ [key: string]: any; }}
|
|
503
|
-
* @memberof EventLogEntryAction
|
|
504
|
-
*/
|
|
505
|
-
'details'?: {
|
|
506
|
-
[key: string]: any;
|
|
507
|
-
};
|
|
508
|
-
/**
|
|
509
|
-
*
|
|
510
|
-
* @type {any}
|
|
511
|
-
* @memberof EventLogEntryAction
|
|
512
|
-
*/
|
|
513
|
-
'recipients_count'?: any;
|
|
514
|
-
}
|
|
515
|
-
/**
|
|
516
|
-
*
|
|
517
|
-
* @export
|
|
518
|
-
* @interface EventLogEntryActionStatus
|
|
519
|
-
*/
|
|
520
|
-
export interface EventLogEntryActionStatus {
|
|
521
|
-
}
|
|
522
273
|
/**
|
|
523
274
|
*
|
|
524
275
|
* @export
|
|
@@ -621,7 +372,7 @@ export interface EventTypeBehavior {
|
|
|
621
372
|
* @type {EventType}
|
|
622
373
|
* @memberof EventTypeBehavior
|
|
623
374
|
*/
|
|
624
|
-
'
|
|
375
|
+
'eventType'?: EventType;
|
|
625
376
|
}
|
|
626
377
|
/**
|
|
627
378
|
*
|
|
@@ -642,37 +393,6 @@ export interface EventTypeBehaviorId {
|
|
|
642
393
|
*/
|
|
643
394
|
'behaviorGroupId': any;
|
|
644
395
|
}
|
|
645
|
-
/**
|
|
646
|
-
*
|
|
647
|
-
* @export
|
|
648
|
-
* @interface Facet
|
|
649
|
-
*/
|
|
650
|
-
export interface Facet {
|
|
651
|
-
/**
|
|
652
|
-
*
|
|
653
|
-
* @type {any}
|
|
654
|
-
* @memberof Facet
|
|
655
|
-
*/
|
|
656
|
-
'id': any;
|
|
657
|
-
/**
|
|
658
|
-
*
|
|
659
|
-
* @type {any}
|
|
660
|
-
* @memberof Facet
|
|
661
|
-
*/
|
|
662
|
-
'name': any;
|
|
663
|
-
/**
|
|
664
|
-
*
|
|
665
|
-
* @type {any}
|
|
666
|
-
* @memberof Facet
|
|
667
|
-
*/
|
|
668
|
-
'displayName': any;
|
|
669
|
-
/**
|
|
670
|
-
*
|
|
671
|
-
* @type {any}
|
|
672
|
-
* @memberof Facet
|
|
673
|
-
*/
|
|
674
|
-
'children'?: any;
|
|
675
|
-
}
|
|
676
396
|
/**
|
|
677
397
|
*
|
|
678
398
|
* @export
|
|
@@ -689,19 +409,19 @@ export interface Meta {
|
|
|
689
409
|
/**
|
|
690
410
|
*
|
|
691
411
|
* @export
|
|
692
|
-
* @interface
|
|
412
|
+
* @interface PageBehaviorGroup
|
|
693
413
|
*/
|
|
694
|
-
export interface
|
|
414
|
+
export interface PageBehaviorGroup {
|
|
695
415
|
/**
|
|
696
416
|
*
|
|
697
417
|
* @type {any}
|
|
698
|
-
* @memberof
|
|
418
|
+
* @memberof PageBehaviorGroup
|
|
699
419
|
*/
|
|
700
420
|
'data': any;
|
|
701
421
|
/**
|
|
702
422
|
*
|
|
703
423
|
* @type {{ [key: string]: any; }}
|
|
704
|
-
* @memberof
|
|
424
|
+
* @memberof PageBehaviorGroup
|
|
705
425
|
*/
|
|
706
426
|
'links': {
|
|
707
427
|
[key: string]: any;
|
|
@@ -709,112 +429,8 @@ export interface PageDrawerEntryPayload {
|
|
|
709
429
|
/**
|
|
710
430
|
*
|
|
711
431
|
* @type {Meta}
|
|
712
|
-
* @memberof
|
|
432
|
+
* @memberof PageBehaviorGroup
|
|
713
433
|
*/
|
|
714
434
|
'meta': Meta;
|
|
715
435
|
}
|
|
716
|
-
/**
|
|
717
|
-
*
|
|
718
|
-
* @export
|
|
719
|
-
* @interface PageEventLogEntry
|
|
720
|
-
*/
|
|
721
|
-
export interface PageEventLogEntry {
|
|
722
|
-
/**
|
|
723
|
-
*
|
|
724
|
-
* @type {any}
|
|
725
|
-
* @memberof PageEventLogEntry
|
|
726
|
-
*/
|
|
727
|
-
'data': any;
|
|
728
|
-
/**
|
|
729
|
-
*
|
|
730
|
-
* @type {{ [key: string]: any; }}
|
|
731
|
-
* @memberof PageEventLogEntry
|
|
732
|
-
*/
|
|
733
|
-
'links': {
|
|
734
|
-
[key: string]: any;
|
|
735
|
-
};
|
|
736
|
-
/**
|
|
737
|
-
*
|
|
738
|
-
* @type {Meta}
|
|
739
|
-
* @memberof PageEventLogEntry
|
|
740
|
-
*/
|
|
741
|
-
'meta': Meta;
|
|
742
|
-
}
|
|
743
|
-
/**
|
|
744
|
-
*
|
|
745
|
-
* @export
|
|
746
|
-
* @interface PageEventType
|
|
747
|
-
*/
|
|
748
|
-
export interface PageEventType {
|
|
749
|
-
/**
|
|
750
|
-
*
|
|
751
|
-
* @type {any}
|
|
752
|
-
* @memberof PageEventType
|
|
753
|
-
*/
|
|
754
|
-
'data': any;
|
|
755
|
-
/**
|
|
756
|
-
*
|
|
757
|
-
* @type {{ [key: string]: any; }}
|
|
758
|
-
* @memberof PageEventType
|
|
759
|
-
*/
|
|
760
|
-
'links': {
|
|
761
|
-
[key: string]: any;
|
|
762
|
-
};
|
|
763
|
-
/**
|
|
764
|
-
*
|
|
765
|
-
* @type {Meta}
|
|
766
|
-
* @memberof PageEventType
|
|
767
|
-
*/
|
|
768
|
-
'meta': Meta;
|
|
769
|
-
}
|
|
770
|
-
/**
|
|
771
|
-
*
|
|
772
|
-
* @export
|
|
773
|
-
* @interface UpdateBehaviorGroupRequest
|
|
774
|
-
*/
|
|
775
|
-
export interface UpdateBehaviorGroupRequest {
|
|
776
|
-
/**
|
|
777
|
-
*
|
|
778
|
-
* @type {any}
|
|
779
|
-
* @memberof UpdateBehaviorGroupRequest
|
|
780
|
-
*/
|
|
781
|
-
'display_name'?: any;
|
|
782
|
-
/**
|
|
783
|
-
*
|
|
784
|
-
* @type {any}
|
|
785
|
-
* @memberof UpdateBehaviorGroupRequest
|
|
786
|
-
*/
|
|
787
|
-
'endpoint_ids'?: any;
|
|
788
|
-
/**
|
|
789
|
-
*
|
|
790
|
-
* @type {any}
|
|
791
|
-
* @memberof UpdateBehaviorGroupRequest
|
|
792
|
-
*/
|
|
793
|
-
'event_type_ids'?: any;
|
|
794
|
-
/**
|
|
795
|
-
*
|
|
796
|
-
* @type {any}
|
|
797
|
-
* @memberof UpdateBehaviorGroupRequest
|
|
798
|
-
*/
|
|
799
|
-
'display_name_not_null_and_blank'?: any;
|
|
800
|
-
}
|
|
801
|
-
/**
|
|
802
|
-
*
|
|
803
|
-
* @export
|
|
804
|
-
* @interface UpdateNotificationDrawerStatus
|
|
805
|
-
*/
|
|
806
|
-
export interface UpdateNotificationDrawerStatus {
|
|
807
|
-
/**
|
|
808
|
-
*
|
|
809
|
-
* @type {any}
|
|
810
|
-
* @memberof UpdateNotificationDrawerStatus
|
|
811
|
-
*/
|
|
812
|
-
'notification_ids': any;
|
|
813
|
-
/**
|
|
814
|
-
*
|
|
815
|
-
* @type {any}
|
|
816
|
-
* @memberof UpdateNotificationDrawerStatus
|
|
817
|
-
*/
|
|
818
|
-
'read_status': any;
|
|
819
|
-
}
|
|
820
436
|
//# sourceMappingURL=index.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../v2/types/index.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AACH,MAAM,WAAW,WAAW;IACxB;;;;OAIG;IACH,SAAS,CAAC,EAAE,GAAG,CAAC;IAChB;;;;OAIG;IACH,SAAS,CAAC,EAAE,GAAG,CAAC;IAChB;;;;OAIG;IACH,IAAI,CAAC,EAAE,GAAG,CAAC;IACX;;;;OAIG;IACH,MAAM,EAAE,GAAG,CAAC;IACZ;;;;OAIG;IACH,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../v2/types/index.ts"],"names":[],"mappings":"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"}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@redhat-cloud-services/notifications-client",
|
|
3
|
-
"version": "
|
|
4
|
-
"description": "",
|
|
3
|
+
"version": "5.0.0",
|
|
4
|
+
"description": "JavaScript client for Red Hat Insights Notifications service",
|
|
5
5
|
"main": "./dist/index.js",
|
|
6
6
|
"typings": "./dist/index.d.ts",
|
|
7
7
|
"exports": {
|
package/project.json
CHANGED
|
@@ -10,7 +10,8 @@
|
|
|
10
10
|
"specs": {
|
|
11
11
|
"default": "https://console.redhat.com/api/notifications/v1.0/openapi.json",
|
|
12
12
|
"v2": "https://console.redhat.com/api/notifications/v2/openapi.json"
|
|
13
|
-
}
|
|
13
|
+
},
|
|
14
|
+
"clientName": "NotificationsClient"
|
|
14
15
|
}
|
|
15
16
|
},
|
|
16
17
|
"build": {
|
|
@@ -40,14 +41,6 @@
|
|
|
40
41
|
"jestConfig": "packages/notifications/jest.config.ts"
|
|
41
42
|
}
|
|
42
43
|
},
|
|
43
|
-
"version": {
|
|
44
|
-
"executor": "@jscutlery/semver:version",
|
|
45
|
-
"options": {
|
|
46
|
-
"push": true,
|
|
47
|
-
"preset": "conventionalcommits",
|
|
48
|
-
"commitMessageFormat": "release: bump {projectName} to {version} [skip ci]"
|
|
49
|
-
}
|
|
50
|
-
},
|
|
51
44
|
"integration-v1": {
|
|
52
45
|
"command": "start-server-and-test 'bin/serve.sh https://console.redhat.com/api/notifications/v1.0/openapi.json 3001' http://localhost:3001/api/notifications/v1.0/notifications/bundles/bob 'nx run --verbose @redhat-cloud-services/notifications-client:jest-v1'"
|
|
53
46
|
},
|
|
@@ -66,13 +59,6 @@
|
|
|
66
59
|
"jestConfig": "packages/notifications/jest.integration.v1.config.ts"
|
|
67
60
|
}
|
|
68
61
|
},
|
|
69
|
-
"github": {
|
|
70
|
-
"executor": "@jscutlery/semver:github",
|
|
71
|
-
"options": {
|
|
72
|
-
"tag": "{tag}",
|
|
73
|
-
"notes": "{notes}"
|
|
74
|
-
}
|
|
75
|
-
},
|
|
76
62
|
"npm": {
|
|
77
63
|
"executor": "ngx-deploy-npm:deploy",
|
|
78
64
|
"options": {
|