@itentialopensource/adapter-jira 2.0.1 → 2.2.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (46) hide show
  1. package/AUTH.md +2 -8
  2. package/CALLS.md +1707 -2367
  3. package/CHANGELOG.md +16 -0
  4. package/CONTRIBUTING.md +1 -160
  5. package/ENHANCE.md +2 -2
  6. package/README.md +32 -23
  7. package/SYSTEMINFO.md +19 -4
  8. package/adapter.js +158 -329
  9. package/adapterBase.js +541 -877
  10. package/changelogs/changelog.md +122 -0
  11. package/metadata.json +94 -0
  12. package/package.json +26 -27
  13. package/pronghorn.json +505 -233
  14. package/propertiesSchema.json +431 -31
  15. package/refs?service=git-upload-pack +0 -0
  16. package/report/adapter-openapi.json +65406 -0
  17. package/report/adapter-openapi.yaml +66802 -0
  18. package/report/adapterInfo.json +8 -8
  19. package/report/updateReport1691511376916.json +120 -0
  20. package/report/updateReport1692202881338.json +120 -0
  21. package/report/updateReport1694464722118.json +120 -0
  22. package/report/updateReport1698421747424.json +120 -0
  23. package/sampleProperties.json +63 -2
  24. package/test/integration/adapterTestBasicGet.js +2 -4
  25. package/test/integration/adapterTestConnectivity.js +91 -42
  26. package/test/integration/adapterTestIntegration.js +131 -3
  27. package/test/unit/adapterBaseTestUnit.js +388 -313
  28. package/test/unit/adapterTestUnit.js +303 -112
  29. package/utils/adapterInfo.js +1 -1
  30. package/utils/addAuth.js +1 -1
  31. package/utils/artifactize.js +1 -1
  32. package/utils/checkMigrate.js +1 -1
  33. package/utils/entitiesToDB.js +2 -2
  34. package/utils/findPath.js +1 -1
  35. package/utils/methodDocumentor.js +71 -23
  36. package/utils/modify.js +13 -15
  37. package/utils/packModificationScript.js +1 -1
  38. package/utils/pre-commit.sh +1 -1
  39. package/utils/taskMover.js +309 -0
  40. package/utils/tbScript.js +89 -34
  41. package/utils/tbUtils.js +41 -21
  42. package/utils/testRunner.js +1 -1
  43. package/utils/troubleshootingAdapter.js +9 -6
  44. package/workflows/Jira Adapter Issue Workflow.json +0 -1
  45. package/workflows/Jira Adapter Project Workflow.json +0 -1
  46. package/workflows/README.md +0 -3
package/pronghorn.json CHANGED
@@ -62,47 +62,22 @@
62
62
  "title": "action",
63
63
  "type": "string"
64
64
  }
65
- }
66
- ],
67
- "output": {
68
- "name": "result",
69
- "type": "object",
70
- "description": "A JSON Object containing status, code and the result",
71
- "schema": {
72
- "title": "result",
73
- "type": "object"
74
- }
75
- },
76
- "roles": [
77
- "admin"
78
- ],
79
- "route": {
80
- "verb": "POST",
81
- "path": "/iapUpdateAdapterConfiguration"
82
- },
83
- "task": true
84
- },
85
- {
86
- "name": "iapFindAdapterPath",
87
- "summary": "Provides the ability to see if a particular API path is supported by the adapter",
88
- "description": "Provides the ability to see if a particular API path is supported by the adapter",
89
- "input": [
65
+ },
90
66
  {
91
- "name": "apiPath",
92
- "type": "string",
93
- "info": "The API Path you want to check - make sure to not include base path and version",
94
- "description": "The API Path you want to check - make sure to not include base path and version",
67
+ "name": "replace",
68
+ "type": "boolean",
69
+ "info": "True to replace entire mock data, false to merge/append",
70
+ "required": false,
95
71
  "schema": {
96
- "title": "apiPath",
97
- "type": "string"
98
- },
99
- "required": true
72
+ "title": "replace",
73
+ "type": "boolean"
74
+ }
100
75
  }
101
76
  ],
102
77
  "output": {
103
78
  "name": "result",
104
79
  "type": "object",
105
- "description": "A JSON Object containing the result",
80
+ "description": "A JSON Object containing status, code and the result",
106
81
  "schema": {
107
82
  "title": "result",
108
83
  "type": "object"
@@ -113,7 +88,7 @@
113
88
  ],
114
89
  "route": {
115
90
  "verb": "POST",
116
- "path": "/iapFindAdapterPath"
91
+ "path": "/iapUpdateAdapterConfiguration"
117
92
  },
118
93
  "task": true
119
94
  },
@@ -202,6 +177,41 @@
202
177
  },
203
178
  "task": true
204
179
  },
180
+ {
181
+ "name": "iapFindAdapterPath",
182
+ "summary": "Provides the ability to see if a particular API path is supported by the adapter",
183
+ "description": "Provides the ability to see if a particular API path is supported by the adapter",
184
+ "input": [
185
+ {
186
+ "name": "apiPath",
187
+ "type": "string",
188
+ "info": "The API Path you want to check - make sure to not include base path and version",
189
+ "description": "The API Path you want to check - make sure to not include base path and version",
190
+ "schema": {
191
+ "title": "apiPath",
192
+ "type": "string"
193
+ },
194
+ "required": true
195
+ }
196
+ ],
197
+ "output": {
198
+ "name": "result",
199
+ "type": "object",
200
+ "description": "A JSON Object containing the result",
201
+ "schema": {
202
+ "title": "result",
203
+ "type": "object"
204
+ }
205
+ },
206
+ "roles": [
207
+ "admin"
208
+ ],
209
+ "route": {
210
+ "verb": "POST",
211
+ "path": "/iapFindAdapterPath"
212
+ },
213
+ "task": true
214
+ },
205
215
  {
206
216
  "name": "iapTroubleshootAdapter",
207
217
  "summary": "Runs troubleshoot script for adapter",
@@ -221,7 +231,11 @@
221
231
  "name": "persistFlag",
222
232
  "type": "boolean",
223
233
  "info": "Whether the input properties should be saved",
224
- "required": true
234
+ "required": true,
235
+ "schema": {
236
+ "title": "persistFlag",
237
+ "type": "boolean"
238
+ }
225
239
  }
226
240
  ],
227
241
  "output": {
@@ -250,7 +264,11 @@
250
264
  "output": {
251
265
  "name": "result",
252
266
  "type": "boolean",
253
- "description": "Whether healthcheck passed or failed"
267
+ "description": "Whether healthcheck passed or failed",
268
+ "schema": {
269
+ "title": "result",
270
+ "type": "boolean"
271
+ }
254
272
  },
255
273
  "roles": [
256
274
  "admin"
@@ -331,64 +349,85 @@
331
349
  "task": true
332
350
  },
333
351
  {
334
- "name": "genericAdapterRequest",
335
- "summary": "Makes the requested generic call",
336
- "description": "Makes the requested generic call",
352
+ "name": "iapDeactivateTasks",
353
+ "summary": "Deactivate the inputted tasks",
354
+ "description": "Deactivate the inputted tasks",
337
355
  "input": [
338
356
  {
339
- "name": "uriPath",
340
- "type": "string",
341
- "info": "the path of the api call - do not include the host, port, base path or version",
342
- "description": "the path of the api call",
343
- "schema": {
344
- "title": "uriPath",
345
- "type": "string"
346
- },
347
- "required": true
348
- },
349
- {
350
- "name": "restMethod",
351
- "type": "string",
352
- "info": "the rest method (GET, POST, PUT, PATCH, DELETE)",
353
- "description": "the rest method (GET, POST, PUT, PATCH, DELETE)",
354
- "schema": {
355
- "title": "restMethod",
356
- "type": "string"
357
- },
358
- "required": true
359
- },
360
- {
361
- "name": "queryData",
362
- "type": "object",
363
- "info": "the query parameters to be put on the url (optional)",
364
- "description": "the query parameters to be put on the url (optional)",
357
+ "name": "tasks",
358
+ "type": "array",
359
+ "description": "Tasks to deactivate",
365
360
  "schema": {
366
- "title": "queryData",
367
- "type": "object"
368
- },
369
- "required": false
370
- },
361
+ "title": "tasks",
362
+ "type": "array"
363
+ }
364
+ }
365
+ ],
366
+ "output": {
367
+ "name": "result",
368
+ "type": "object",
369
+ "description": "A JSON Object containing success status",
370
+ "schema": {
371
+ "title": "result",
372
+ "type": "object"
373
+ }
374
+ },
375
+ "roles": [
376
+ "admin"
377
+ ],
378
+ "route": {
379
+ "verb": "POST",
380
+ "path": "/iapDeactivateTasks"
381
+ },
382
+ "task": true
383
+ },
384
+ {
385
+ "name": "iapActivateTasks",
386
+ "summary": "Activate the inputted tasks",
387
+ "description": "activate the inputted tasks",
388
+ "input": [
371
389
  {
372
- "name": "requestBody",
373
- "type": "object",
374
- "info": "the payload to be sent with the request (optional)",
375
- "description": "the payload to be sent with the request (optional)",
390
+ "name": "tasks",
391
+ "type": "array",
392
+ "description": "Tasks to activate",
376
393
  "schema": {
377
- "title": "requestBody",
378
- "type": "object"
379
- },
380
- "required": false
381
- },
394
+ "title": "tasks",
395
+ "type": "array"
396
+ }
397
+ }
398
+ ],
399
+ "output": {
400
+ "name": "result",
401
+ "type": "object",
402
+ "description": "A JSON Object containing success status",
403
+ "schema": {
404
+ "title": "result",
405
+ "type": "object"
406
+ }
407
+ },
408
+ "roles": [
409
+ "admin"
410
+ ],
411
+ "route": {
412
+ "verb": "POST",
413
+ "path": "/iapActivateTasks"
414
+ },
415
+ "task": true
416
+ },
417
+ {
418
+ "name": "iapPopulateEntityCache",
419
+ "summary": "Populate the cache for the given entities",
420
+ "description": "Populate the cache for the given entities",
421
+ "input": [
382
422
  {
383
- "name": "addlHeaders",
384
- "type": "object",
385
- "info": "additional headers to be put on the call (optional)",
386
- "description": "additional headers to be put on the call (optional)",
423
+ "name": "entityTypes",
424
+ "type": "array",
425
+ "info": "the entity type(s) to populate",
426
+ "required": true,
387
427
  "schema": {
388
- "title": "addlHeaders",
389
- "type": "object"
390
- },
391
- "required": false
428
+ "title": "entityTypes",
429
+ "type": "array"
430
+ }
392
431
  }
393
432
  ],
394
433
  "output": {
@@ -405,69 +444,34 @@
405
444
  ],
406
445
  "route": {
407
446
  "verb": "POST",
408
- "path": "/genericAdapterRequest"
447
+ "path": "/iapPopulateEntityCache"
409
448
  },
410
449
  "task": true
411
450
  },
412
451
  {
413
- "name": "genericAdapterRequestNoBasePath",
414
- "summary": "Makes the requested generic call with no base path or version",
415
- "description": "Makes the requested generic call with no base path or version",
452
+ "name": "iapRetrieveEntitiesCache",
453
+ "summary": "Retrieves data from cache for specified entity type",
454
+ "description": "Retrieves data from cache for specified entity type",
416
455
  "input": [
417
456
  {
418
- "name": "uriPath",
419
- "type": "string",
420
- "info": "the path of the api call - do not include the host, port, base path or version",
421
- "description": "the path of the api call",
422
- "schema": {
423
- "title": "uriPath",
424
- "type": "string"
425
- },
426
- "required": true
427
- },
428
- {
429
- "name": "restMethod",
457
+ "name": "entityType",
430
458
  "type": "string",
431
- "info": "the rest method (GET, POST, PUT, PATCH, DELETE)",
432
- "description": "the rest method (GET, POST, PUT, PATCH, DELETE)",
459
+ "info": "entity of which to retrieve",
460
+ "required": true,
433
461
  "schema": {
434
- "title": "restMethod",
462
+ "title": "entityType",
435
463
  "type": "string"
436
- },
437
- "required": true
438
- },
439
- {
440
- "name": "queryData",
441
- "type": "object",
442
- "info": "the query parameters to be put on the url (optional)",
443
- "description": "the query parameters to be put on the url (optional)",
444
- "schema": {
445
- "title": "queryData",
446
- "type": "object"
447
- },
448
- "required": false
449
- },
450
- {
451
- "name": "requestBody",
452
- "type": "object",
453
- "info": "the payload to be sent with the request (optional)",
454
- "description": "the payload to be sent with the request (optional)",
455
- "schema": {
456
- "title": "requestBody",
457
- "type": "object"
458
- },
459
- "required": false
464
+ }
460
465
  },
461
466
  {
462
- "name": "addlHeaders",
467
+ "name": "options",
463
468
  "type": "object",
464
- "info": "additional headers to be put on the call (optional)",
465
- "description": "additional headers to be put on the call (optional)",
469
+ "info": "settings of which data to return and how to return it",
470
+ "required": false,
466
471
  "schema": {
467
- "title": "addlHeaders",
472
+ "title": "options",
468
473
  "type": "object"
469
- },
470
- "required": false
474
+ }
471
475
  }
472
476
  ],
473
477
  "output": {
@@ -484,7 +488,7 @@
484
488
  ],
485
489
  "route": {
486
490
  "verb": "POST",
487
- "path": "/genericAdapterRequestNoBasePath"
491
+ "path": "/iapRetrieveEntitiesCache"
488
492
  },
489
493
  "task": true
490
494
  },
@@ -657,6 +661,334 @@
657
661
  },
658
662
  "task": false
659
663
  },
664
+ {
665
+ "name": "iapExpandedGenericAdapterRequest",
666
+ "summary": "Makes the requested generic call with additional options",
667
+ "description": "Makes the requested generic call with additional options via metadata",
668
+ "input": [
669
+ {
670
+ "name": "metadata",
671
+ "type": "object",
672
+ "info": "metadata for the call (optional)",
673
+ "description": "metadata for the call - allows for many enhancements (optional)",
674
+ "schema": {
675
+ "title": "metadata",
676
+ "type": "object"
677
+ },
678
+ "required": false
679
+ },
680
+ {
681
+ "name": "uriPath",
682
+ "type": "string",
683
+ "info": "the path of the api call - do not include the host, port, base path or version",
684
+ "description": "the path of the api call",
685
+ "schema": {
686
+ "title": "uriPath",
687
+ "type": "string"
688
+ },
689
+ "required": false
690
+ },
691
+ {
692
+ "name": "restMethod",
693
+ "type": "string",
694
+ "info": "the rest method (GET, POST, PUT, PATCH, DELETE)",
695
+ "description": "the rest method (GET, POST, PUT, PATCH, DELETE)",
696
+ "schema": {
697
+ "title": "restMethod",
698
+ "type": "string"
699
+ },
700
+ "required": false
701
+ },
702
+ {
703
+ "name": "pathVars",
704
+ "type": "object",
705
+ "info": "the parameters to be put within the url path (optional)",
706
+ "description": "the parameters to be put within the url path (optional)",
707
+ "schema": {
708
+ "title": "pathVars",
709
+ "type": "object"
710
+ },
711
+ "required": false
712
+ },
713
+ {
714
+ "name": "queryData",
715
+ "type": "object",
716
+ "info": "the query parameters to be put on the url (optional)",
717
+ "description": "the query parameters to be put on the url (optional)",
718
+ "schema": {
719
+ "title": "queryData",
720
+ "type": "object"
721
+ },
722
+ "required": false
723
+ },
724
+ {
725
+ "name": "requestBody",
726
+ "type": "object",
727
+ "info": "the payload to be sent with the request (optional)",
728
+ "description": "the payload to be sent with the request (optional)",
729
+ "schema": {
730
+ "title": "requestBody",
731
+ "type": "object"
732
+ },
733
+ "required": false
734
+ },
735
+ {
736
+ "name": "addlHeaders",
737
+ "type": "object",
738
+ "info": "additional headers to be put on the call (optional)",
739
+ "description": "additional headers to be put on the call (optional)",
740
+ "schema": {
741
+ "title": "addlHeaders",
742
+ "type": "object"
743
+ },
744
+ "required": false
745
+ }
746
+ ],
747
+ "output": {
748
+ "name": "result",
749
+ "type": "object",
750
+ "description": "A JSON Object containing status, code and the result",
751
+ "schema": {
752
+ "title": "result",
753
+ "type": "object"
754
+ }
755
+ },
756
+ "roles": [
757
+ "admin"
758
+ ],
759
+ "route": {
760
+ "verb": "POST",
761
+ "path": "/iapExpandedGenericAdapterRequest"
762
+ },
763
+ "task": true
764
+ },
765
+ {
766
+ "name": "genericAdapterRequest",
767
+ "summary": "Makes the requested generic call",
768
+ "description": "Makes the requested generic call",
769
+ "input": [
770
+ {
771
+ "name": "uriPath",
772
+ "type": "string",
773
+ "info": "the path of the api call - do not include the host, port, base path or version",
774
+ "description": "the path of the api call",
775
+ "schema": {
776
+ "title": "uriPath",
777
+ "type": "string"
778
+ },
779
+ "required": true
780
+ },
781
+ {
782
+ "name": "restMethod",
783
+ "type": "string",
784
+ "info": "the rest method (GET, POST, PUT, PATCH, DELETE)",
785
+ "description": "the rest method (GET, POST, PUT, PATCH, DELETE)",
786
+ "schema": {
787
+ "title": "restMethod",
788
+ "type": "string"
789
+ },
790
+ "required": true
791
+ },
792
+ {
793
+ "name": "queryData",
794
+ "type": "object",
795
+ "info": "the query parameters to be put on the url (optional)",
796
+ "description": "the query parameters to be put on the url (optional)",
797
+ "schema": {
798
+ "title": "queryData",
799
+ "type": "object"
800
+ },
801
+ "required": false
802
+ },
803
+ {
804
+ "name": "requestBody",
805
+ "type": "object",
806
+ "info": "the payload to be sent with the request (optional)",
807
+ "description": "the payload to be sent with the request (optional)",
808
+ "schema": {
809
+ "title": "requestBody",
810
+ "type": "object"
811
+ },
812
+ "required": false
813
+ },
814
+ {
815
+ "name": "addlHeaders",
816
+ "type": "object",
817
+ "info": "additional headers to be put on the call (optional)",
818
+ "description": "additional headers to be put on the call (optional)",
819
+ "schema": {
820
+ "title": "addlHeaders",
821
+ "type": "object"
822
+ },
823
+ "required": false
824
+ }
825
+ ],
826
+ "output": {
827
+ "name": "result",
828
+ "type": "object",
829
+ "description": "A JSON Object containing status, code and the result",
830
+ "schema": {
831
+ "title": "result",
832
+ "type": "object"
833
+ }
834
+ },
835
+ "roles": [
836
+ "admin"
837
+ ],
838
+ "route": {
839
+ "verb": "POST",
840
+ "path": "/genericAdapterRequest"
841
+ },
842
+ "task": true
843
+ },
844
+ {
845
+ "name": "genericAdapterRequestNoBasePath",
846
+ "summary": "Makes the requested generic call",
847
+ "description": "Makes the requested generic call",
848
+ "input": [
849
+ {
850
+ "name": "uriPath",
851
+ "type": "string",
852
+ "info": "the path of the api call - do not include the host, port, base path or version",
853
+ "description": "the path of the api call",
854
+ "schema": {
855
+ "title": "uriPath",
856
+ "type": "string"
857
+ },
858
+ "required": true
859
+ },
860
+ {
861
+ "name": "restMethod",
862
+ "type": "string",
863
+ "info": "the rest method (GET, POST, PUT, PATCH, DELETE)",
864
+ "description": "the rest method (GET, POST, PUT, PATCH, DELETE)",
865
+ "schema": {
866
+ "title": "restMethod",
867
+ "type": "string"
868
+ },
869
+ "required": true
870
+ },
871
+ {
872
+ "name": "queryData",
873
+ "type": "object",
874
+ "info": "the query parameters to be put on the url (optional)",
875
+ "description": "the query parameters to be put on the url (optional)",
876
+ "schema": {
877
+ "title": "queryData",
878
+ "type": "object"
879
+ },
880
+ "required": false
881
+ },
882
+ {
883
+ "name": "requestBody",
884
+ "type": "object",
885
+ "info": "the payload to be sent with the request (optional)",
886
+ "description": "the payload to be sent with the request (optional)",
887
+ "schema": {
888
+ "title": "requestBody",
889
+ "type": "object"
890
+ },
891
+ "required": false
892
+ },
893
+ {
894
+ "name": "addlHeaders",
895
+ "type": "object",
896
+ "info": "additional headers to be put on the call (optional)",
897
+ "description": "additional headers to be put on the call (optional)",
898
+ "schema": {
899
+ "title": "addlHeaders",
900
+ "type": "object"
901
+ },
902
+ "required": false
903
+ }
904
+ ],
905
+ "output": {
906
+ "name": "result",
907
+ "type": "object",
908
+ "description": "A JSON Object containing status, code and the result",
909
+ "schema": {
910
+ "title": "result",
911
+ "type": "object"
912
+ }
913
+ },
914
+ "roles": [
915
+ "admin"
916
+ ],
917
+ "route": {
918
+ "verb": "POST",
919
+ "path": "/genericAdapterRequestNoBasePath"
920
+ },
921
+ "task": true
922
+ },
923
+ {
924
+ "name": "iapRunAdapterLint",
925
+ "summary": "Run the adapter lint script to return the results",
926
+ "description": "Run the adapter lint script to return the results",
927
+ "input": [],
928
+ "output": {
929
+ "name": "result",
930
+ "type": "string",
931
+ "description": "A string containing the run results",
932
+ "schema": {
933
+ "title": "result",
934
+ "type": "string"
935
+ }
936
+ },
937
+ "roles": [
938
+ "admin"
939
+ ],
940
+ "route": {
941
+ "verb": "GET",
942
+ "path": "/iapRunAdapterLint"
943
+ },
944
+ "task": true
945
+ },
946
+ {
947
+ "name": "iapRunAdapterTests",
948
+ "summary": "Run the adapter test scripts (baseunit and unit) to return the results",
949
+ "description": "Run the adapter test scripts (baseunit and unit) to return the results",
950
+ "input": [],
951
+ "output": {
952
+ "name": "result",
953
+ "type": "object",
954
+ "description": "A JSON Object containing status, code and the result",
955
+ "schema": {
956
+ "title": "result",
957
+ "type": "object"
958
+ }
959
+ },
960
+ "roles": [
961
+ "admin"
962
+ ],
963
+ "route": {
964
+ "verb": "GET",
965
+ "path": "/iapRunAdapterTests"
966
+ },
967
+ "task": true
968
+ },
969
+ {
970
+ "name": "iapGetAdapterInventory",
971
+ "summary": "Provide inventory information abbout the adapter",
972
+ "description": "Provide inventory information abbout the adapter",
973
+ "input": [],
974
+ "output": {
975
+ "name": "result",
976
+ "type": "object",
977
+ "description": "A JSON Object containing status, code and the result",
978
+ "schema": {
979
+ "title": "result",
980
+ "type": "object"
981
+ }
982
+ },
983
+ "roles": [
984
+ "admin"
985
+ ],
986
+ "route": {
987
+ "verb": "GET",
988
+ "path": "/iapGetAdapterInventory"
989
+ },
990
+ "task": true
991
+ },
660
992
  {
661
993
  "name": "getRestapi2applicationrole",
662
994
  "summary": "Get all application roles",
@@ -42384,9 +42716,7 @@
42384
42716
  },
42385
42717
  "additionalProperties": false,
42386
42718
  "description": "Configuration of the announcement banner.",
42387
- "writeOnly": true,
42388
- "definitions": {}
42389
- }
42719
+ "writeOnly": true }
42390
42720
  }
42391
42721
  ],
42392
42722
  "output": {
@@ -42560,9 +42890,7 @@
42560
42890
  }
42561
42891
  },
42562
42892
  "additionalProperties": false,
42563
- "description": "Details of the settings for a dashboard gadget.",
42564
- "definitions": {}
42565
- }
42893
+ "description": "Details of the settings for a dashboard gadget." }
42566
42894
  }
42567
42895
  ],
42568
42896
  "output": {
@@ -42648,9 +42976,7 @@
42648
42976
  }
42649
42977
  },
42650
42978
  "additionalProperties": false,
42651
- "description": "The details of the gadget to update.",
42652
- "definitions": {}
42653
- }
42979
+ "description": "The details of the gadget to update." }
42654
42980
  }
42655
42981
  ],
42656
42982
  "output": {
@@ -42831,9 +43157,7 @@
42831
43157
  },
42832
43158
  "additionalProperties": false,
42833
43159
  "description": "The account ID of the new owner.",
42834
- "writeOnly": true,
42835
- "definitions": {}
42836
- }
43160
+ "writeOnly": true }
42837
43161
  }
42838
43162
  ],
42839
43163
  "output": {
@@ -42932,9 +43256,7 @@
42932
43256
  }
42933
43257
  },
42934
43258
  "additionalProperties": true,
42935
- "description": "Issue security scheme and it's details",
42936
- "definitions": {}
42937
- }
43259
+ "description": "Issue security scheme and it's details" }
42938
43260
  }
42939
43261
  ],
42940
43262
  "output": {
@@ -43071,9 +43393,7 @@
43071
43393
  }
43072
43394
  },
43073
43395
  "additionalProperties": true,
43074
- "description": "Details of new default levels.",
43075
- "definitions": {}
43076
- }
43396
+ "description": "Details of new default levels." }
43077
43397
  }
43078
43398
  ],
43079
43399
  "output": {
@@ -43337,9 +43657,7 @@
43337
43657
  "description": "The name of the security scheme scheme. Must be unique."
43338
43658
  }
43339
43659
  },
43340
- "additionalProperties": false,
43341
- "definitions": {}
43342
- }
43660
+ "additionalProperties": false }
43343
43661
  }
43344
43662
  ],
43345
43663
  "output": {
@@ -43468,9 +43786,7 @@
43468
43786
  }
43469
43787
  }
43470
43788
  },
43471
- "additionalProperties": false,
43472
- "definitions": {}
43473
- }
43789
+ "additionalProperties": false }
43474
43790
  }
43475
43791
  ],
43476
43792
  "output": {
@@ -43536,9 +43852,7 @@
43536
43852
  }
43537
43853
  },
43538
43854
  "additionalProperties": true,
43539
- "description": "Details of issue security scheme level.",
43540
- "definitions": {}
43541
- }
43855
+ "description": "Details of issue security scheme level." }
43542
43856
  }
43543
43857
  ],
43544
43858
  "output": {
@@ -43673,9 +43987,7 @@
43673
43987
  }
43674
43988
  },
43675
43989
  "additionalProperties": false,
43676
- "description": "Details of issue security scheme level new members.",
43677
- "definitions": {}
43678
- }
43990
+ "description": "Details of issue security scheme level new members." }
43679
43991
  }
43680
43992
  ],
43681
43993
  "output": {
@@ -43794,9 +44106,7 @@
43794
44106
  },
43795
44107
  "additionalProperties": false,
43796
44108
  "description": "The list of JQL queries to sanitize for the given account IDs.",
43797
- "writeOnly": true,
43798
- "definitions": {}
43799
- }
44109
+ "writeOnly": true }
43800
44110
  }
43801
44111
  ],
43802
44112
  "output": {
@@ -43926,9 +44236,7 @@
43926
44236
  },
43927
44237
  "additionalProperties": false,
43928
44238
  "description": "List of pairs (id and value) for precomputation updates.",
43929
- "writeOnly": true,
43930
- "definitions": {}
43931
- }
44239
+ "writeOnly": true }
43932
44240
  }
43933
44241
  ],
43934
44242
  "output": {
@@ -44095,9 +44403,7 @@
44095
44403
  }
44096
44404
  },
44097
44405
  "additionalProperties": true,
44098
- "description": "Details of an notification scheme.",
44099
- "definitions": {}
44100
- }
44406
+ "description": "Details of an notification scheme." }
44101
44407
  }
44102
44408
  ],
44103
44409
  "output": {
@@ -44215,9 +44521,7 @@
44215
44521
  }
44216
44522
  },
44217
44523
  "additionalProperties": true,
44218
- "description": "Details of a notification scheme.",
44219
- "definitions": {}
44220
- }
44524
+ "description": "Details of a notification scheme." }
44221
44525
  }
44222
44526
  ],
44223
44527
  "output": {
@@ -44327,9 +44631,7 @@
44327
44631
  }
44328
44632
  },
44329
44633
  "additionalProperties": true,
44330
- "description": "Details of notifications which should be added to the notification scheme.",
44331
- "definitions": {}
44332
- }
44634
+ "description": "Details of notifications which should be added to the notification scheme." }
44333
44635
  }
44334
44636
  ],
44335
44637
  "output": {
@@ -44478,9 +44780,7 @@
44478
44780
  }
44479
44781
  },
44480
44782
  "additionalProperties": true,
44481
- "description": "Details of an issue priority.",
44482
- "definitions": {}
44483
- }
44783
+ "description": "Details of an issue priority." }
44484
44784
  }
44485
44785
  ],
44486
44786
  "output": {
@@ -44522,9 +44822,7 @@
44522
44822
  }
44523
44823
  },
44524
44824
  "additionalProperties": false,
44525
- "description": "The new default issue priority.",
44526
- "definitions": {}
44527
- }
44825
+ "description": "The new default issue priority." }
44528
44826
  }
44529
44827
  ],
44530
44828
  "output": {
@@ -44579,9 +44877,7 @@
44579
44877
  }
44580
44878
  },
44581
44879
  "additionalProperties": false,
44582
- "description": "Change the order of issue priorities.",
44583
- "definitions": {}
44584
- }
44880
+ "description": "Change the order of issue priorities." }
44585
44881
  }
44586
44882
  ],
44587
44883
  "output": {
@@ -44721,9 +45017,7 @@
44721
45017
  }
44722
45018
  },
44723
45019
  "additionalProperties": true,
44724
- "description": "Details of an issue priority.",
44725
- "definitions": {}
44726
- }
45020
+ "description": "Details of an issue priority." }
44727
45021
  }
44728
45022
  ],
44729
45023
  "output": {
@@ -44816,9 +45110,7 @@
44816
45110
  }
44817
45111
  },
44818
45112
  "additionalProperties": true,
44819
- "description": "Details of an issue resolution.",
44820
- "definitions": {}
44821
- }
45113
+ "description": "Details of an issue resolution." }
44822
45114
  }
44823
45115
  ],
44824
45116
  "output": {
@@ -44860,9 +45152,7 @@
44860
45152
  }
44861
45153
  },
44862
45154
  "additionalProperties": false,
44863
- "description": "The new default issue resolution.",
44864
- "definitions": {}
44865
- }
45155
+ "description": "The new default issue resolution." }
44866
45156
  }
44867
45157
  ],
44868
45158
  "output": {
@@ -44917,9 +45207,7 @@
44917
45207
  }
44918
45208
  },
44919
45209
  "additionalProperties": false,
44920
- "description": "Change the order of issue resolutions.",
44921
- "definitions": {}
44922
- }
45210
+ "description": "Change the order of issue resolutions." }
44923
45211
  }
44924
45212
  ],
44925
45213
  "output": {
@@ -45041,9 +45329,7 @@
45041
45329
  }
45042
45330
  },
45043
45331
  "additionalProperties": true,
45044
- "description": "Details of an issue resolution.",
45045
- "definitions": {}
45046
- }
45332
+ "description": "Details of an issue resolution." }
45047
45333
  }
45048
45334
  ],
45049
45335
  "output": {
@@ -45302,9 +45588,7 @@
45302
45588
  }
45303
45589
  },
45304
45590
  "additionalProperties": false,
45305
- "description": "The list of statuses that will be updated.",
45306
- "definitions": {}
45307
- }
45591
+ "description": "The list of statuses that will be updated." }
45308
45592
  }
45309
45593
  ],
45310
45594
  "output": {
@@ -45410,9 +45694,7 @@
45410
45694
  }
45411
45695
  },
45412
45696
  "additionalProperties": false,
45413
- "description": "Details of the statuses being created and their scope.",
45414
- "definitions": {}
45415
- }
45697
+ "description": "Details of the statuses being created and their scope." }
45416
45698
  }
45417
45699
  ],
45418
45700
  "output": {
@@ -45770,9 +46052,7 @@
45770
46052
  }
45771
46053
  },
45772
46054
  "additionalProperties": false,
45773
- "description": "The details of a UI modification.",
45774
- "definitions": {}
45775
- }
46055
+ "description": "The details of a UI modification." }
45776
46056
  }
45777
46057
  ],
45778
46058
  "output": {
@@ -45868,9 +46148,7 @@
45868
46148
  }
45869
46149
  },
45870
46150
  "additionalProperties": false,
45871
- "description": "The details of a UI modification.",
45872
- "definitions": {}
45873
- }
46151
+ "description": "The details of a UI modification." }
45874
46152
  }
45875
46153
  ],
45876
46154
  "output": {
@@ -46032,7 +46310,8 @@
46032
46310
  "info": ": object",
46033
46311
  "required": true,
46034
46312
  "schema": {
46035
- "definitions": {}
46313
+ "title": "body",
46314
+ "type": "object"
46036
46315
  }
46037
46316
  }
46038
46317
  ],
@@ -46118,7 +46397,8 @@
46118
46397
  "info": ": object",
46119
46398
  "required": true,
46120
46399
  "schema": {
46121
- "definitions": {}
46400
+ "title": "body",
46401
+ "type": "object"
46122
46402
  }
46123
46403
  }
46124
46404
  ],
@@ -46279,9 +46559,7 @@
46279
46559
  "key": "dynamic-select-field"
46280
46560
  }
46281
46561
  ]
46282
- },
46283
- "definitions": {}
46284
- }
46562
+ } }
46285
46563
  }
46286
46564
  ],
46287
46565
  "output": {
@@ -46408,9 +46686,7 @@
46408
46686
  },
46409
46687
  "additionalProperties": false,
46410
46688
  "description": "Details of updates for a custom field.",
46411
- "writeOnly": true,
46412
- "definitions": {}
46413
- }
46689
+ "writeOnly": true }
46414
46690
  }
46415
46691
  ],
46416
46692
  "output": {
@@ -46457,9 +46733,7 @@
46457
46733
  "type": "array",
46458
46734
  "items": {
46459
46735
  "type": "object"
46460
- },
46461
- "definitions": {}
46462
- }
46736
+ } }
46463
46737
  }
46464
46738
  ],
46465
46739
  "output": {
@@ -46519,9 +46793,7 @@
46519
46793
  "example": "a498d711-685d-428d-8c3e-bc03bb450ea7"
46520
46794
  }
46521
46795
  },
46522
- "description": "Details of the workflow and its transition rules.",
46523
- "definitions": {}
46524
- }
46796
+ "description": "Details of the workflow and its transition rules." }
46525
46797
  }
46526
46798
  ],
46527
46799
  "output": {