@itentialopensource/adapter-adtran_mosaic_devicemanager 0.1.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (69) hide show
  1. package/.eslintignore +5 -0
  2. package/.eslintrc.js +18 -0
  3. package/.jshintrc +3 -0
  4. package/CHANGELOG.md +9 -0
  5. package/CODE_OF_CONDUCT.md +48 -0
  6. package/CONTRIBUTING.md +158 -0
  7. package/ENHANCE.md +69 -0
  8. package/LICENSE +201 -0
  9. package/PROPERTIES.md +247 -0
  10. package/README.md +257 -0
  11. package/SUMMARY.md +9 -0
  12. package/TROUBLESHOOT.md +46 -0
  13. package/adapter.js +9118 -0
  14. package/adapterBase.js +1299 -0
  15. package/entities/.generic/action.json +109 -0
  16. package/entities/.generic/schema.json +23 -0
  17. package/entities/.system/action.json +50 -0
  18. package/entities/.system/mockdatafiles/getToken-default.json +3 -0
  19. package/entities/.system/mockdatafiles/healthcheck-default.json +3 -0
  20. package/entities/.system/schema.json +19 -0
  21. package/entities/.system/schemaTokenReq.json +53 -0
  22. package/entities/.system/schemaTokenResp.json +53 -0
  23. package/entities/DeviceAPI/action.json +1030 -0
  24. package/entities/DeviceAPI/mockdatafiles/configureDeviceLoggingLevel-default.json +3 -0
  25. package/entities/DeviceAPI/mockdatafiles/createDeviceAttributes-default.json +3 -0
  26. package/entities/DeviceAPI/mockdatafiles/createDevicePOST-default.json +4 -0
  27. package/entities/DeviceAPI/mockdatafiles/deviceTraceLevel-default.json +3 -0
  28. package/entities/DeviceAPI/mockdatafiles/modifyDeviceAttributes-default.json +3 -0
  29. package/entities/DeviceAPI/mockdatafiles/requestDeviceAttributeRefresh-default.json +4 -0
  30. package/entities/DeviceAPI/schema.json +68 -0
  31. package/entities/SubscriberAPI/action.json +901 -0
  32. package/entities/SubscriberAPI/mockdatafiles/deleteSubscriberAttributes-default.json +6 -0
  33. package/entities/SubscriberAPI/mockdatafiles/getUserRoles-default.json +4 -0
  34. package/entities/SubscriberAPI/mockdatafiles/modifySubscriber-default.json +4 -0
  35. package/entities/SubscriberAPI/mockdatafiles/statisticsForSpecificSubscriber-default.json +5 -0
  36. package/entities/SubscriberAPI/mockdatafiles/statisticsForSubscribers-default.json +3 -0
  37. package/entities/SubscriberAPI/schema.json +73 -0
  38. package/error.json +190 -0
  39. package/package.json +87 -0
  40. package/pronghorn.json +4935 -0
  41. package/propertiesDecorators.json +14 -0
  42. package/propertiesSchema.json +1204 -0
  43. package/refs?service=git-upload-pack +0 -0
  44. package/report/creationReport.json +599 -0
  45. package/report/openapi.json +7211 -0
  46. package/report/updateReport1651531040781.json +114 -0
  47. package/sampleProperties.json +106 -0
  48. package/test/integration/adapterTestBasicGet.js +85 -0
  49. package/test/integration/adapterTestConnectivity.js +93 -0
  50. package/test/integration/adapterTestIntegration.js +3582 -0
  51. package/test/unit/adapterBaseTestUnit.js +942 -0
  52. package/test/unit/adapterTestUnit.js +5053 -0
  53. package/utils/addAuth.js +94 -0
  54. package/utils/artifactize.js +146 -0
  55. package/utils/basicGet.js +50 -0
  56. package/utils/checkMigrate.js +63 -0
  57. package/utils/entitiesToDB.js +224 -0
  58. package/utils/findPath.js +74 -0
  59. package/utils/modify.js +154 -0
  60. package/utils/packModificationScript.js +35 -0
  61. package/utils/patches2bundledDeps.js +90 -0
  62. package/utils/pre-commit.sh +27 -0
  63. package/utils/removeHooks.js +20 -0
  64. package/utils/setup.js +33 -0
  65. package/utils/tbScript.js +169 -0
  66. package/utils/tbUtils.js +464 -0
  67. package/utils/testRunner.js +298 -0
  68. package/utils/troubleshootingAdapter.js +190 -0
  69. package/workflows/README.md +3 -0
@@ -0,0 +1,901 @@
1
+ {
2
+ "actions": [
3
+ {
4
+ "name": "aCSSubscriberList",
5
+ "protocol": "REST",
6
+ "method": "GET",
7
+ "entitypath": "{base_path}/{version}/prime-home/portal/subscribers?{query}",
8
+ "requestSchema": "schema.json",
9
+ "responseSchema": "schema.json",
10
+ "timeout": 0,
11
+ "sendEmpty": false,
12
+ "sendGetBody": false,
13
+ "requestDatatype": "JSON",
14
+ "responseDatatype": "JSON",
15
+ "headers": {},
16
+ "responseObjects": [
17
+ {
18
+ "type": "default",
19
+ "key": "",
20
+ "mockFile": ""
21
+ }
22
+ ]
23
+ },
24
+ {
25
+ "name": "createNewACSSubscriberPOST",
26
+ "protocol": "REST",
27
+ "method": "POST",
28
+ "entitypath": "{base_path}/{version}/prime-home/api/v2/subscribers?{query}",
29
+ "requestSchema": "schema.json",
30
+ "responseSchema": "schema.json",
31
+ "timeout": 0,
32
+ "sendEmpty": false,
33
+ "requestDatatype": "JSON",
34
+ "responseDatatype": "JSON",
35
+ "headers": {},
36
+ "responseObjects": [
37
+ {
38
+ "type": "default",
39
+ "key": "",
40
+ "mockFile": ""
41
+ }
42
+ ]
43
+ },
44
+ {
45
+ "name": "requestPasswordChange",
46
+ "protocol": "REST",
47
+ "method": "PUT",
48
+ "entitypath": "{base_path}/{version}/prime-home/portal/subscribers/resetPassword?{query}",
49
+ "requestSchema": "schema.json",
50
+ "responseSchema": "schema.json",
51
+ "timeout": 0,
52
+ "sendEmpty": false,
53
+ "requestDatatype": "JSON",
54
+ "responseDatatype": "JSON",
55
+ "headers": {},
56
+ "responseObjects": [
57
+ {
58
+ "type": "default",
59
+ "key": "",
60
+ "mockFile": ""
61
+ }
62
+ ]
63
+ },
64
+ {
65
+ "name": "statisticsForSubscribers",
66
+ "protocol": "REST",
67
+ "method": "GET",
68
+ "entitypath": "{base_path}/{version}/prime-home/portal/subscribers/summary?{query}",
69
+ "requestSchema": "schema.json",
70
+ "responseSchema": "schema.json",
71
+ "timeout": 0,
72
+ "sendEmpty": false,
73
+ "sendGetBody": false,
74
+ "requestDatatype": "JSON",
75
+ "responseDatatype": "JSON",
76
+ "headers": {},
77
+ "responseObjects": [
78
+ {
79
+ "type": "default",
80
+ "key": "",
81
+ "mockFile": "mockdatafiles/statisticsForSubscribers-default.json"
82
+ }
83
+ ]
84
+ },
85
+ {
86
+ "name": "statisticsForSpecificSubscriber",
87
+ "protocol": "REST",
88
+ "method": "GET",
89
+ "entitypath": "{base_path}/{version}/prime-home/portal/subscribers/{pathv1}?{query}",
90
+ "requestSchema": "schema.json",
91
+ "responseSchema": "schema.json",
92
+ "timeout": 0,
93
+ "sendEmpty": false,
94
+ "sendGetBody": false,
95
+ "requestDatatype": "JSON",
96
+ "responseDatatype": "JSON",
97
+ "headers": {},
98
+ "responseObjects": [
99
+ {
100
+ "type": "default",
101
+ "key": "",
102
+ "mockFile": "mockdatafiles/statisticsForSpecificSubscriber-default.json"
103
+ }
104
+ ]
105
+ },
106
+ {
107
+ "name": "modifySubscriber",
108
+ "protocol": "REST",
109
+ "method": "POST",
110
+ "entitypath": "{base_path}/{version}/prime-home/portal/subscribers/{pathv1}?{query}",
111
+ "requestSchema": "schema.json",
112
+ "responseSchema": "schema.json",
113
+ "timeout": 0,
114
+ "sendEmpty": false,
115
+ "requestDatatype": "JSON",
116
+ "responseDatatype": "JSON",
117
+ "headers": {},
118
+ "responseObjects": [
119
+ {
120
+ "type": "default",
121
+ "key": "",
122
+ "mockFile": "mockdatafiles/modifySubscriber-default.json"
123
+ }
124
+ ]
125
+ },
126
+ {
127
+ "name": "deleteSubscriber",
128
+ "protocol": "REST",
129
+ "method": "DELETE",
130
+ "entitypath": "{base_path}/{version}/prime-home/portal/subscribers/{pathv1}?{query}",
131
+ "requestSchema": "schema.json",
132
+ "responseSchema": "schema.json",
133
+ "timeout": 0,
134
+ "sendEmpty": false,
135
+ "requestDatatype": "JSON",
136
+ "responseDatatype": "JSON",
137
+ "headers": {},
138
+ "responseObjects": [
139
+ {
140
+ "type": "default",
141
+ "key": "",
142
+ "mockFile": ""
143
+ }
144
+ ]
145
+ },
146
+ {
147
+ "name": "subscriberLabelSet",
148
+ "protocol": "REST",
149
+ "method": "GET",
150
+ "entitypath": "{base_path}/{version}/prime-home/portal/subscribers/{pathv1}/labels?{query}",
151
+ "requestSchema": "schema.json",
152
+ "responseSchema": "schema.json",
153
+ "timeout": 0,
154
+ "sendEmpty": false,
155
+ "sendGetBody": false,
156
+ "requestDatatype": "JSON",
157
+ "responseDatatype": "JSON",
158
+ "headers": {},
159
+ "responseObjects": [
160
+ {
161
+ "type": "default",
162
+ "key": "",
163
+ "mockFile": ""
164
+ }
165
+ ]
166
+ },
167
+ {
168
+ "name": "defineLabelsForSubscriber",
169
+ "protocol": "REST",
170
+ "method": "POST",
171
+ "entitypath": "{base_path}/{version}/prime-home/portal/subscribers/{pathv1}/labels?{query}",
172
+ "requestSchema": "schema.json",
173
+ "responseSchema": "schema.json",
174
+ "timeout": 0,
175
+ "sendEmpty": false,
176
+ "requestDatatype": "JSON",
177
+ "responseDatatype": "JSON",
178
+ "headers": {},
179
+ "responseObjects": [
180
+ {
181
+ "type": "default",
182
+ "key": "",
183
+ "mockFile": ""
184
+ }
185
+ ]
186
+ },
187
+ {
188
+ "name": "createSubscriberLabels",
189
+ "protocol": "REST",
190
+ "method": "PUT",
191
+ "entitypath": "{base_path}/{version}/prime-home/portal/subscribers/{pathv1}/labels?{query}",
192
+ "requestSchema": "schema.json",
193
+ "responseSchema": "schema.json",
194
+ "timeout": 0,
195
+ "sendEmpty": false,
196
+ "requestDatatype": "JSON",
197
+ "responseDatatype": "JSON",
198
+ "headers": {},
199
+ "responseObjects": [
200
+ {
201
+ "type": "default",
202
+ "key": "",
203
+ "mockFile": ""
204
+ }
205
+ ]
206
+ },
207
+ {
208
+ "name": "subscriberManagementGroups",
209
+ "protocol": "REST",
210
+ "method": "GET",
211
+ "entitypath": "{base_path}/{version}/prime-home/portal/subscribers/{pathv1}/labels/managementGroups?{query}",
212
+ "requestSchema": "schema.json",
213
+ "responseSchema": "schema.json",
214
+ "timeout": 0,
215
+ "sendEmpty": false,
216
+ "sendGetBody": false,
217
+ "requestDatatype": "JSON",
218
+ "responseDatatype": "JSON",
219
+ "headers": {},
220
+ "responseObjects": [
221
+ {
222
+ "type": "default",
223
+ "key": "",
224
+ "mockFile": ""
225
+ }
226
+ ]
227
+ },
228
+ {
229
+ "name": "createSubscriberManagementGroup",
230
+ "protocol": "REST",
231
+ "method": "PUT",
232
+ "entitypath": "{base_path}/{version}/prime-home/portal/subscribers/{pathv1}/labels/managementGroups?{query}",
233
+ "requestSchema": "schema.json",
234
+ "responseSchema": "schema.json",
235
+ "timeout": 0,
236
+ "sendEmpty": false,
237
+ "requestDatatype": "JSON",
238
+ "responseDatatype": "JSON",
239
+ "headers": {},
240
+ "responseObjects": [
241
+ {
242
+ "type": "default",
243
+ "key": "",
244
+ "mockFile": ""
245
+ }
246
+ ]
247
+ },
248
+ {
249
+ "name": "subscriberManagementGroupDetails",
250
+ "protocol": "REST",
251
+ "method": "GET",
252
+ "entitypath": "{base_path}/{version}/prime-home/portal/subscribers/{pathv1}/labels/managementGroups/{pathv2}?{query}",
253
+ "requestSchema": "schema.json",
254
+ "responseSchema": "schema.json",
255
+ "timeout": 0,
256
+ "sendEmpty": false,
257
+ "sendGetBody": false,
258
+ "requestDatatype": "JSON",
259
+ "responseDatatype": "JSON",
260
+ "headers": {},
261
+ "responseObjects": [
262
+ {
263
+ "type": "default",
264
+ "key": "",
265
+ "mockFile": ""
266
+ }
267
+ ]
268
+ },
269
+ {
270
+ "name": "modifySubscriberManagementGroup",
271
+ "protocol": "REST",
272
+ "method": "POST",
273
+ "entitypath": "{base_path}/{version}/prime-home/portal/subscribers/{pathv1}/labels/managementGroups/{pathv2}?{query}",
274
+ "requestSchema": "schema.json",
275
+ "responseSchema": "schema.json",
276
+ "timeout": 0,
277
+ "sendEmpty": false,
278
+ "requestDatatype": "JSON",
279
+ "responseDatatype": "JSON",
280
+ "headers": {},
281
+ "responseObjects": [
282
+ {
283
+ "type": "default",
284
+ "key": "",
285
+ "mockFile": ""
286
+ }
287
+ ]
288
+ },
289
+ {
290
+ "name": "subscriberManagementGroup",
291
+ "protocol": "REST",
292
+ "method": "DELETE",
293
+ "entitypath": "{base_path}/{version}/prime-home/portal/subscribers/{pathv1}/labels/managementGroups/{pathv2}?{query}",
294
+ "requestSchema": "schema.json",
295
+ "responseSchema": "schema.json",
296
+ "timeout": 0,
297
+ "sendEmpty": false,
298
+ "requestDatatype": "JSON",
299
+ "responseDatatype": "JSON",
300
+ "headers": {},
301
+ "responseObjects": [
302
+ {
303
+ "type": "default",
304
+ "key": "",
305
+ "mockFile": ""
306
+ }
307
+ ]
308
+ },
309
+ {
310
+ "name": "subscriptionsForManagementGroup",
311
+ "protocol": "REST",
312
+ "method": "GET",
313
+ "entitypath": "{base_path}/{version}/prime-home/portal/subscribers/{pathv1}/labels/managementGroups/{pathv2}/subscriptions?{query}",
314
+ "requestSchema": "schema.json",
315
+ "responseSchema": "schema.json",
316
+ "timeout": 0,
317
+ "sendEmpty": false,
318
+ "sendGetBody": false,
319
+ "requestDatatype": "JSON",
320
+ "responseDatatype": "JSON",
321
+ "headers": {},
322
+ "responseObjects": [
323
+ {
324
+ "type": "default",
325
+ "key": "",
326
+ "mockFile": ""
327
+ }
328
+ ]
329
+ },
330
+ {
331
+ "name": "addSubscriptionToManagementGroup",
332
+ "protocol": "REST",
333
+ "method": "PUT",
334
+ "entitypath": "{base_path}/{version}/prime-home/portal/subscribers/{pathv1}/labels/managementGroups/{pathv2}/subscriptions?{query}",
335
+ "requestSchema": "schema.json",
336
+ "responseSchema": "schema.json",
337
+ "timeout": 0,
338
+ "sendEmpty": false,
339
+ "requestDatatype": "JSON",
340
+ "responseDatatype": "JSON",
341
+ "headers": {},
342
+ "responseObjects": [
343
+ {
344
+ "type": "default",
345
+ "key": "",
346
+ "mockFile": ""
347
+ }
348
+ ]
349
+ },
350
+ {
351
+ "name": "serviceSubscriptionDetails",
352
+ "protocol": "REST",
353
+ "method": "GET",
354
+ "entitypath": "{base_path}/{version}/prime-home/portal/subscribers/{pathv1}/labels/managementGroups/{pathv2}/subscription/{pathv3}?{query}",
355
+ "requestSchema": "schema.json",
356
+ "responseSchema": "schema.json",
357
+ "timeout": 0,
358
+ "sendEmpty": false,
359
+ "sendGetBody": false,
360
+ "requestDatatype": "JSON",
361
+ "responseDatatype": "JSON",
362
+ "headers": {},
363
+ "responseObjects": [
364
+ {
365
+ "type": "default",
366
+ "key": "",
367
+ "mockFile": ""
368
+ }
369
+ ]
370
+ },
371
+ {
372
+ "name": "subscriptionPackageStatus",
373
+ "protocol": "REST",
374
+ "method": "POST",
375
+ "entitypath": "{base_path}/{version}/prime-home/portal/subscribers/{pathv1}/labels/managementGroups/{pathv2}/subscription/{pathv3}?{query}",
376
+ "requestSchema": "schema.json",
377
+ "responseSchema": "schema.json",
378
+ "timeout": 0,
379
+ "sendEmpty": false,
380
+ "requestDatatype": "JSON",
381
+ "responseDatatype": "JSON",
382
+ "headers": {},
383
+ "responseObjects": [
384
+ {
385
+ "type": "default",
386
+ "key": "",
387
+ "mockFile": ""
388
+ }
389
+ ]
390
+ },
391
+ {
392
+ "name": "subscriptionPackage",
393
+ "protocol": "REST",
394
+ "method": "DELETE",
395
+ "entitypath": "{base_path}/{version}/prime-home/portal/subscribers/{pathv1}/labels/managementGroups/{pathv2}/subscription/{pathv3}?{query}",
396
+ "requestSchema": "schema.json",
397
+ "responseSchema": "schema.json",
398
+ "timeout": 0,
399
+ "sendEmpty": false,
400
+ "requestDatatype": "JSON",
401
+ "responseDatatype": "JSON",
402
+ "headers": {},
403
+ "responseObjects": [
404
+ {
405
+ "type": "default",
406
+ "key": "",
407
+ "mockFile": ""
408
+ }
409
+ ]
410
+ },
411
+ {
412
+ "name": "managementGroupDeviceSignature",
413
+ "protocol": "REST",
414
+ "method": "GET",
415
+ "entitypath": "{base_path}/{version}/prime-home/portal/subscribers/{pathv1}/labels/managementGroups/{pathv2}/deviceSignature?{query}",
416
+ "requestSchema": "schema.json",
417
+ "responseSchema": "schema.json",
418
+ "timeout": 0,
419
+ "sendEmpty": false,
420
+ "sendGetBody": false,
421
+ "requestDatatype": "JSON",
422
+ "responseDatatype": "JSON",
423
+ "headers": {},
424
+ "responseObjects": [
425
+ {
426
+ "type": "default",
427
+ "key": "",
428
+ "mockFile": ""
429
+ }
430
+ ]
431
+ },
432
+ {
433
+ "name": "managementGroup",
434
+ "protocol": "REST",
435
+ "method": "POST",
436
+ "entitypath": "{base_path}/{version}/prime-home/portal/subscribers/{pathv1}/labels/managementGroups/{pathv2}/deviceSignature?{query}",
437
+ "requestSchema": "schema.json",
438
+ "responseSchema": "schema.json",
439
+ "timeout": 0,
440
+ "sendEmpty": false,
441
+ "requestDatatype": "JSON",
442
+ "responseDatatype": "JSON",
443
+ "headers": {},
444
+ "responseObjects": [
445
+ {
446
+ "type": "default",
447
+ "key": "",
448
+ "mockFile": ""
449
+ }
450
+ ]
451
+ },
452
+ {
453
+ "name": "subscriberAttributeTree",
454
+ "protocol": "REST",
455
+ "method": "GET",
456
+ "entitypath": "{base_path}/{version}/prime-home/portal/subscribers/{pathv1}/attributes?{query}",
457
+ "requestSchema": "schema.json",
458
+ "responseSchema": "schema.json",
459
+ "timeout": 0,
460
+ "sendEmpty": false,
461
+ "sendGetBody": false,
462
+ "requestDatatype": "JSON",
463
+ "responseDatatype": "JSON",
464
+ "headers": {},
465
+ "responseObjects": [
466
+ {
467
+ "type": "default",
468
+ "key": "",
469
+ "mockFile": ""
470
+ }
471
+ ]
472
+ },
473
+ {
474
+ "name": "subscriberAttribute",
475
+ "protocol": "REST",
476
+ "method": "PUT",
477
+ "entitypath": "{base_path}/{version}/prime-home/portal/subscribers/{pathv1}/attributes?{query}",
478
+ "requestSchema": "schema.json",
479
+ "responseSchema": "schema.json",
480
+ "timeout": 0,
481
+ "sendEmpty": false,
482
+ "requestDatatype": "JSON",
483
+ "responseDatatype": "JSON",
484
+ "headers": {},
485
+ "responseObjects": [
486
+ {
487
+ "type": "default",
488
+ "key": "",
489
+ "mockFile": ""
490
+ }
491
+ ]
492
+ },
493
+ {
494
+ "name": "subscriberAttributes",
495
+ "protocol": "REST",
496
+ "method": "POST",
497
+ "entitypath": "{base_path}/{version}/prime-home/portal/subscribers/{pathv1}/attributes?{query}",
498
+ "requestSchema": "schema.json",
499
+ "responseSchema": "schema.json",
500
+ "timeout": 0,
501
+ "sendEmpty": false,
502
+ "requestDatatype": "JSON",
503
+ "responseDatatype": "JSON",
504
+ "headers": {},
505
+ "responseObjects": [
506
+ {
507
+ "type": "default",
508
+ "key": "",
509
+ "mockFile": ""
510
+ }
511
+ ]
512
+ },
513
+ {
514
+ "name": "deleteSubscriberAttributes",
515
+ "protocol": "REST",
516
+ "method": "DELETE",
517
+ "entitypath": "{base_path}/{version}/prime-home/portal/subscribers/{pathv1}/attributes?{query}",
518
+ "requestSchema": "schema.json",
519
+ "responseSchema": "schema.json",
520
+ "timeout": 0,
521
+ "sendEmpty": false,
522
+ "requestDatatype": "JSON",
523
+ "responseDatatype": "JSON",
524
+ "headers": {},
525
+ "responseObjects": [
526
+ {
527
+ "type": "default",
528
+ "key": "",
529
+ "mockFile": "mockdatafiles/deleteSubscriberAttributes-default.json"
530
+ }
531
+ ]
532
+ },
533
+ {
534
+ "name": "changePassword",
535
+ "protocol": "REST",
536
+ "method": "POST",
537
+ "entitypath": "{base_path}/{version}/prime-home/portal/subscribers/{pathv1}/changePassword?{query}",
538
+ "requestSchema": "schema.json",
539
+ "responseSchema": "schema.json",
540
+ "timeout": 0,
541
+ "sendEmpty": false,
542
+ "requestDatatype": "JSON",
543
+ "responseDatatype": "JSON",
544
+ "headers": {},
545
+ "responseObjects": [
546
+ {
547
+ "type": "default",
548
+ "key": "",
549
+ "mockFile": ""
550
+ }
551
+ ]
552
+ },
553
+ {
554
+ "name": "createSubscriberLoginSessions",
555
+ "protocol": "REST",
556
+ "method": "POST",
557
+ "entitypath": "{base_path}/{version}/prime-home/portal/control-panel/session?{query}",
558
+ "requestSchema": "schema.json",
559
+ "responseSchema": "schema.json",
560
+ "timeout": 0,
561
+ "sendEmpty": false,
562
+ "requestDatatype": "JSON",
563
+ "responseDatatype": "JSON",
564
+ "headers": {},
565
+ "responseObjects": [
566
+ {
567
+ "type": "default",
568
+ "key": "",
569
+ "mockFile": ""
570
+ }
571
+ ]
572
+ },
573
+ {
574
+ "name": "subscriberLoginSession",
575
+ "protocol": "REST",
576
+ "method": "POST",
577
+ "entitypath": "{base_path}/{version}/prime-home/portal/control-panel/session/{pathv1}?{query}",
578
+ "requestSchema": "schema.json",
579
+ "responseSchema": "schema.json",
580
+ "timeout": 0,
581
+ "sendEmpty": false,
582
+ "requestDatatype": "JSON",
583
+ "responseDatatype": "JSON",
584
+ "headers": {},
585
+ "responseObjects": [
586
+ {
587
+ "type": "default",
588
+ "key": "",
589
+ "mockFile": ""
590
+ }
591
+ ]
592
+ },
593
+ {
594
+ "name": "deleteSubscriberLoginSession",
595
+ "protocol": "REST",
596
+ "method": "DELETE",
597
+ "entitypath": "{base_path}/{version}/prime-home/portal/control-panel/session/{pathv1}?{query}",
598
+ "requestSchema": "schema.json",
599
+ "responseSchema": "schema.json",
600
+ "timeout": 0,
601
+ "sendEmpty": false,
602
+ "requestDatatype": "JSON",
603
+ "responseDatatype": "JSON",
604
+ "headers": {},
605
+ "responseObjects": [
606
+ {
607
+ "type": "default",
608
+ "key": "",
609
+ "mockFile": ""
610
+ }
611
+ ]
612
+ },
613
+ {
614
+ "name": "sessionExpirationStatus",
615
+ "protocol": "REST",
616
+ "method": "GET",
617
+ "entitypath": "{base_path}/{version}/prime-home/portal/control-panel/session/?{query}",
618
+ "requestSchema": "schema.json",
619
+ "responseSchema": "schema.json",
620
+ "timeout": 0,
621
+ "sendEmpty": false,
622
+ "sendGetBody": false,
623
+ "requestDatatype": "JSON",
624
+ "responseDatatype": "JSON",
625
+ "headers": {},
626
+ "responseObjects": [
627
+ {
628
+ "type": "default",
629
+ "key": "",
630
+ "mockFile": ""
631
+ }
632
+ ]
633
+ },
634
+ {
635
+ "name": "aCSUserListGET",
636
+ "protocol": "REST",
637
+ "method": "GET",
638
+ "entitypath": "{base_path}/{version}/prime-home/portal/users?{query}",
639
+ "requestSchema": "schema.json",
640
+ "responseSchema": "schema.json",
641
+ "timeout": 0,
642
+ "sendEmpty": false,
643
+ "sendGetBody": false,
644
+ "requestDatatype": "JSON",
645
+ "responseDatatype": "JSON",
646
+ "headers": {},
647
+ "responseObjects": [
648
+ {
649
+ "type": "default",
650
+ "key": "",
651
+ "mockFile": ""
652
+ }
653
+ ]
654
+ },
655
+ {
656
+ "name": "modifyACSUserList",
657
+ "protocol": "REST",
658
+ "method": "PUT",
659
+ "entitypath": "{base_path}/{version}/prime-home/portal/users?{query}",
660
+ "requestSchema": "schema.json",
661
+ "responseSchema": "schema.json",
662
+ "timeout": 0,
663
+ "sendEmpty": false,
664
+ "requestDatatype": "JSON",
665
+ "responseDatatype": "JSON",
666
+ "headers": {},
667
+ "responseObjects": [
668
+ {
669
+ "type": "default",
670
+ "key": "",
671
+ "mockFile": ""
672
+ }
673
+ ]
674
+ },
675
+ {
676
+ "name": "userDetails",
677
+ "protocol": "REST",
678
+ "method": "GET",
679
+ "entitypath": "{base_path}/{version}/prime-home/portal/users/{pathv1}?{query}",
680
+ "requestSchema": "schema.json",
681
+ "responseSchema": "schema.json",
682
+ "timeout": 0,
683
+ "sendEmpty": false,
684
+ "sendGetBody": false,
685
+ "requestDatatype": "JSON",
686
+ "responseDatatype": "JSON",
687
+ "headers": {},
688
+ "responseObjects": [
689
+ {
690
+ "type": "default",
691
+ "key": "",
692
+ "mockFile": ""
693
+ }
694
+ ]
695
+ },
696
+ {
697
+ "name": "modifyUserDetails",
698
+ "protocol": "REST",
699
+ "method": "POST",
700
+ "entitypath": "{base_path}/{version}/prime-home/portal/users/{pathv1}?{query}",
701
+ "requestSchema": "schema.json",
702
+ "responseSchema": "schema.json",
703
+ "timeout": 0,
704
+ "sendEmpty": false,
705
+ "requestDatatype": "JSON",
706
+ "responseDatatype": "JSON",
707
+ "headers": {},
708
+ "responseObjects": [
709
+ {
710
+ "type": "default",
711
+ "key": "",
712
+ "mockFile": ""
713
+ }
714
+ ]
715
+ },
716
+ {
717
+ "name": "deleteUser",
718
+ "protocol": "REST",
719
+ "method": "DELETE",
720
+ "entitypath": "{base_path}/{version}/prime-home/portal/users/{pathv1}?{query}",
721
+ "requestSchema": "schema.json",
722
+ "responseSchema": "schema.json",
723
+ "timeout": 0,
724
+ "sendEmpty": false,
725
+ "requestDatatype": "JSON",
726
+ "responseDatatype": "JSON",
727
+ "headers": {},
728
+ "responseObjects": [
729
+ {
730
+ "type": "default",
731
+ "key": "",
732
+ "mockFile": ""
733
+ }
734
+ ]
735
+ },
736
+ {
737
+ "name": "userNotificationsForPast10Minutes",
738
+ "protocol": "REST",
739
+ "method": "GET",
740
+ "entitypath": "{base_path}/{version}/prime-home/portal/users/{pathv1}/notifications?{query}",
741
+ "requestSchema": "schema.json",
742
+ "responseSchema": "schema.json",
743
+ "timeout": 0,
744
+ "sendEmpty": false,
745
+ "sendGetBody": false,
746
+ "requestDatatype": "JSON",
747
+ "responseDatatype": "JSON",
748
+ "headers": {},
749
+ "responseObjects": [
750
+ {
751
+ "type": "default",
752
+ "key": "",
753
+ "mockFile": ""
754
+ }
755
+ ]
756
+ },
757
+ {
758
+ "name": "createUserNotification",
759
+ "protocol": "REST",
760
+ "method": "PUT",
761
+ "entitypath": "{base_path}/{version}/prime-home/portal/users/{pathv1}/notifications?{query}",
762
+ "requestSchema": "schema.json",
763
+ "responseSchema": "schema.json",
764
+ "timeout": 0,
765
+ "sendEmpty": false,
766
+ "requestDatatype": "JSON",
767
+ "responseDatatype": "JSON",
768
+ "headers": {},
769
+ "responseObjects": [
770
+ {
771
+ "type": "default",
772
+ "key": "",
773
+ "mockFile": ""
774
+ }
775
+ ]
776
+ },
777
+ {
778
+ "name": "modifyUserPreferences",
779
+ "protocol": "REST",
780
+ "method": "POST",
781
+ "entitypath": "{base_path}/{version}/prime-home/portal/users/{pathv1}/preferences?{query}",
782
+ "requestSchema": "schema.json",
783
+ "responseSchema": "schema.json",
784
+ "timeout": 0,
785
+ "sendEmpty": false,
786
+ "requestDatatype": "JSON",
787
+ "responseDatatype": "JSON",
788
+ "headers": {},
789
+ "responseObjects": [
790
+ {
791
+ "type": "default",
792
+ "key": "",
793
+ "mockFile": ""
794
+ }
795
+ ]
796
+ },
797
+ {
798
+ "name": "getUserRoles",
799
+ "protocol": "REST",
800
+ "method": "GET",
801
+ "entitypath": "{base_path}/{version}/prime-home/portal/users/{pathv1}/roles?{query}",
802
+ "requestSchema": "schema.json",
803
+ "responseSchema": "schema.json",
804
+ "timeout": 0,
805
+ "sendEmpty": false,
806
+ "sendGetBody": false,
807
+ "requestDatatype": "JSON",
808
+ "responseDatatype": "JSON",
809
+ "headers": {},
810
+ "responseObjects": [
811
+ {
812
+ "type": "default",
813
+ "key": "",
814
+ "mockFile": "mockdatafiles/getUserRoles-default.json"
815
+ }
816
+ ]
817
+ },
818
+ {
819
+ "name": "createUserRoles",
820
+ "protocol": "REST",
821
+ "method": "POST",
822
+ "entitypath": "{base_path}/{version}/prime-home/portal/users/{pathv1}/roles?{query}",
823
+ "requestSchema": "schema.json",
824
+ "responseSchema": "schema.json",
825
+ "timeout": 0,
826
+ "sendEmpty": false,
827
+ "requestDatatype": "JSON",
828
+ "responseDatatype": "JSON",
829
+ "headers": {},
830
+ "responseObjects": [
831
+ {
832
+ "type": "default",
833
+ "key": "",
834
+ "mockFile": ""
835
+ }
836
+ ]
837
+ },
838
+ {
839
+ "name": "getUserLabels",
840
+ "protocol": "REST",
841
+ "method": "GET",
842
+ "entitypath": "{base_path}/{version}/prime-home/portal/users/{pathv1}/labels?{query}",
843
+ "requestSchema": "schema.json",
844
+ "responseSchema": "schema.json",
845
+ "timeout": 0,
846
+ "sendEmpty": false,
847
+ "sendGetBody": false,
848
+ "requestDatatype": "JSON",
849
+ "responseDatatype": "JSON",
850
+ "headers": {},
851
+ "responseObjects": [
852
+ {
853
+ "type": "default",
854
+ "key": "",
855
+ "mockFile": ""
856
+ }
857
+ ]
858
+ },
859
+ {
860
+ "name": "createUserLabels",
861
+ "protocol": "REST",
862
+ "method": "POST",
863
+ "entitypath": "{base_path}/{version}/prime-home/portal/users/{pathv1}/labels?{query}",
864
+ "requestSchema": "schema.json",
865
+ "responseSchema": "schema.json",
866
+ "timeout": 0,
867
+ "sendEmpty": false,
868
+ "requestDatatype": "JSON",
869
+ "responseDatatype": "JSON",
870
+ "headers": {},
871
+ "responseObjects": [
872
+ {
873
+ "type": "default",
874
+ "key": "",
875
+ "mockFile": ""
876
+ }
877
+ ]
878
+ },
879
+ {
880
+ "name": "getMetaDataForSubscribers",
881
+ "protocol": "REST",
882
+ "method": "GET",
883
+ "entitypath": "{base_path}/{version}/prime-home/portal/schema/device/subscriber?{query}",
884
+ "requestSchema": "schema.json",
885
+ "responseSchema": "schema.json",
886
+ "timeout": 0,
887
+ "sendEmpty": false,
888
+ "sendGetBody": false,
889
+ "requestDatatype": "JSON",
890
+ "responseDatatype": "JSON",
891
+ "headers": {},
892
+ "responseObjects": [
893
+ {
894
+ "type": "default",
895
+ "key": "",
896
+ "mockFile": ""
897
+ }
898
+ ]
899
+ }
900
+ ]
901
+ }