@resolution/jira-api-client 0.1.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 (785) hide show
  1. package/.eslintrc.js +3 -0
  2. package/CHANGELOG.md +11 -0
  3. package/LICENSE.md +19 -0
  4. package/README.md +12 -0
  5. package/config/api-typescript-generator.config.ts +91 -0
  6. package/config/compare-schemas.ts +307 -0
  7. package/lib/index.d.ts +15 -0
  8. package/lib/index.js +25 -0
  9. package/lib/index.js.map +1 -0
  10. package/lib/openapi/platform/base-jira-platform-api-client.d.ts +868 -0
  11. package/lib/openapi/platform/base-jira-platform-api-client.js +808 -0
  12. package/lib/openapi/platform/base-jira-platform-api-client.js.map +1 -0
  13. package/lib/openapi/platform/core/common-http-client.d.ts +196 -0
  14. package/lib/openapi/platform/core/common-http-client.js +390 -0
  15. package/lib/openapi/platform/core/common-http-client.js.map +1 -0
  16. package/lib/openapi/platform/core/common-http-service.d.ts +7 -0
  17. package/lib/openapi/platform/core/common-http-service.js +20 -0
  18. package/lib/openapi/platform/core/common-http-service.js.map +1 -0
  19. package/lib/openapi/platform/core/common-validation-schema-storage.d.ts +35 -0
  20. package/lib/openapi/platform/core/common-validation-schema-storage.js +65 -0
  21. package/lib/openapi/platform/core/common-validation-schema-storage.js.map +1 -0
  22. package/lib/openapi/platform/models/announcement-banner.d.ts +27 -0
  23. package/lib/openapi/platform/models/announcement-banner.js +30 -0
  24. package/lib/openapi/platform/models/announcement-banner.js.map +1 -0
  25. package/lib/openapi/platform/models/app-data-policies.d.ts +31 -0
  26. package/lib/openapi/platform/models/app-data-policies.js +40 -0
  27. package/lib/openapi/platform/models/app-data-policies.js.map +1 -0
  28. package/lib/openapi/platform/models/app-migration.d.ts +86 -0
  29. package/lib/openapi/platform/models/app-migration.js +67 -0
  30. package/lib/openapi/platform/models/app-migration.js.map +1 -0
  31. package/lib/openapi/platform/models/app-properties.d.ts +15 -0
  32. package/lib/openapi/platform/models/app-properties.js +18 -0
  33. package/lib/openapi/platform/models/app-properties.js.map +1 -0
  34. package/lib/openapi/platform/models/audit-records.d.ts +70 -0
  35. package/lib/openapi/platform/models/audit-records.js +62 -0
  36. package/lib/openapi/platform/models/audit-records.js.map +1 -0
  37. package/lib/openapi/platform/models/avatars.d.ts +18 -0
  38. package/lib/openapi/platform/models/avatars.js +27 -0
  39. package/lib/openapi/platform/models/avatars.js.map +1 -0
  40. package/lib/openapi/platform/models/classification-levels.d.ts +25 -0
  41. package/lib/openapi/platform/models/classification-levels.js +31 -0
  42. package/lib/openapi/platform/models/classification-levels.js.map +1 -0
  43. package/lib/openapi/platform/models/common.d.ts +1490 -0
  44. package/lib/openapi/platform/models/common.js +937 -0
  45. package/lib/openapi/platform/models/common.js.map +1 -0
  46. package/lib/openapi/platform/models/dashboards.d.ts +414 -0
  47. package/lib/openapi/platform/models/dashboards.js +325 -0
  48. package/lib/openapi/platform/models/dashboards.js.map +1 -0
  49. package/lib/openapi/platform/models/dynamic-modules.d.ts +92 -0
  50. package/lib/openapi/platform/models/dynamic-modules.js +24 -0
  51. package/lib/openapi/platform/models/dynamic-modules.js.map +1 -0
  52. package/lib/openapi/platform/models/filter-sharing.d.ts +59 -0
  53. package/lib/openapi/platform/models/filter-sharing.js +36 -0
  54. package/lib/openapi/platform/models/filter-sharing.js.map +1 -0
  55. package/lib/openapi/platform/models/filters.d.ts +183 -0
  56. package/lib/openapi/platform/models/filters.js +115 -0
  57. package/lib/openapi/platform/models/filters.js.map +1 -0
  58. package/lib/openapi/platform/models/group-and-user-picker.d.ts +49 -0
  59. package/lib/openapi/platform/models/group-and-user-picker.js +31 -0
  60. package/lib/openapi/platform/models/group-and-user-picker.js.map +1 -0
  61. package/lib/openapi/platform/models/groups.d.ts +127 -0
  62. package/lib/openapi/platform/models/groups.js +98 -0
  63. package/lib/openapi/platform/models/groups.js.map +1 -0
  64. package/lib/openapi/platform/models/issue-attachments.d.ts +124 -0
  65. package/lib/openapi/platform/models/issue-attachments.js +129 -0
  66. package/lib/openapi/platform/models/issue-attachments.js.map +1 -0
  67. package/lib/openapi/platform/models/issue-comment-properties.d.ts +10 -0
  68. package/lib/openapi/platform/models/issue-comment-properties.js +18 -0
  69. package/lib/openapi/platform/models/issue-comment-properties.js.map +1 -0
  70. package/lib/openapi/platform/models/issue-comments.d.ts +36 -0
  71. package/lib/openapi/platform/models/issue-comments.js +49 -0
  72. package/lib/openapi/platform/models/issue-comments.js.map +1 -0
  73. package/lib/openapi/platform/models/issue-custom-field-configuration-apps.d.ts +36 -0
  74. package/lib/openapi/platform/models/issue-custom-field-configuration-apps.js +53 -0
  75. package/lib/openapi/platform/models/issue-custom-field-configuration-apps.js.map +1 -0
  76. package/lib/openapi/platform/models/issue-custom-field-contexts.d.ts +417 -0
  77. package/lib/openapi/platform/models/issue-custom-field-contexts.js +458 -0
  78. package/lib/openapi/platform/models/issue-custom-field-contexts.js.map +1 -0
  79. package/lib/openapi/platform/models/issue-custom-field-options-apps.d.ts +119 -0
  80. package/lib/openapi/platform/models/issue-custom-field-options-apps.js +133 -0
  81. package/lib/openapi/platform/models/issue-custom-field-options-apps.js.map +1 -0
  82. package/lib/openapi/platform/models/issue-custom-field-options.d.ts +136 -0
  83. package/lib/openapi/platform/models/issue-custom-field-options.js +115 -0
  84. package/lib/openapi/platform/models/issue-custom-field-options.js.map +1 -0
  85. package/lib/openapi/platform/models/issue-custom-field-values-apps.d.ts +66 -0
  86. package/lib/openapi/platform/models/issue-custom-field-values-apps.js +42 -0
  87. package/lib/openapi/platform/models/issue-custom-field-values-apps.js.map +1 -0
  88. package/lib/openapi/platform/models/issue-field-configurations.d.ts +194 -0
  89. package/lib/openapi/platform/models/issue-field-configurations.js +182 -0
  90. package/lib/openapi/platform/models/issue-field-configurations.js.map +1 -0
  91. package/lib/openapi/platform/models/issue-fields.d.ts +227 -0
  92. package/lib/openapi/platform/models/issue-fields.js +119 -0
  93. package/lib/openapi/platform/models/issue-fields.js.map +1 -0
  94. package/lib/openapi/platform/models/issue-link-types.d.ts +9 -0
  95. package/lib/openapi/platform/models/issue-link-types.js +21 -0
  96. package/lib/openapi/platform/models/issue-link-types.js.map +1 -0
  97. package/lib/openapi/platform/models/issue-links.d.ts +90 -0
  98. package/lib/openapi/platform/models/issue-links.js +74 -0
  99. package/lib/openapi/platform/models/issue-links.js.map +1 -0
  100. package/lib/openapi/platform/models/issue-notification-schemes.d.ts +158 -0
  101. package/lib/openapi/platform/models/issue-notification-schemes.js +147 -0
  102. package/lib/openapi/platform/models/issue-notification-schemes.js.map +1 -0
  103. package/lib/openapi/platform/models/issue-priorities.d.ts +74 -0
  104. package/lib/openapi/platform/models/issue-priorities.js +89 -0
  105. package/lib/openapi/platform/models/issue-priorities.js.map +1 -0
  106. package/lib/openapi/platform/models/issue-properties.d.ts +80 -0
  107. package/lib/openapi/platform/models/issue-properties.js +158 -0
  108. package/lib/openapi/platform/models/issue-properties.js.map +1 -0
  109. package/lib/openapi/platform/models/issue-remote-links.d.ts +120 -0
  110. package/lib/openapi/platform/models/issue-remote-links.js +70 -0
  111. package/lib/openapi/platform/models/issue-remote-links.js.map +1 -0
  112. package/lib/openapi/platform/models/issue-resolutions.d.ts +81 -0
  113. package/lib/openapi/platform/models/issue-resolutions.js +79 -0
  114. package/lib/openapi/platform/models/issue-resolutions.js.map +1 -0
  115. package/lib/openapi/platform/models/issue-search.d.ts +196 -0
  116. package/lib/openapi/platform/models/issue-search.js +136 -0
  117. package/lib/openapi/platform/models/issue-search.js.map +1 -0
  118. package/lib/openapi/platform/models/issue-security-level.d.ts +36 -0
  119. package/lib/openapi/platform/models/issue-security-level.js +36 -0
  120. package/lib/openapi/platform/models/issue-security-level.js.map +1 -0
  121. package/lib/openapi/platform/models/issue-security-schemes.d.ts +214 -0
  122. package/lib/openapi/platform/models/issue-security-schemes.js +211 -0
  123. package/lib/openapi/platform/models/issue-security-schemes.js.map +1 -0
  124. package/lib/openapi/platform/models/issue-type-schemes.d.ts +146 -0
  125. package/lib/openapi/platform/models/issue-type-schemes.js +115 -0
  126. package/lib/openapi/platform/models/issue-type-schemes.js.map +1 -0
  127. package/lib/openapi/platform/models/issue-type-screen-schemes.d.ts +139 -0
  128. package/lib/openapi/platform/models/issue-type-screen-schemes.js +109 -0
  129. package/lib/openapi/platform/models/issue-type-screen-schemes.js.map +1 -0
  130. package/lib/openapi/platform/models/issue-types.d.ts +36 -0
  131. package/lib/openapi/platform/models/issue-types.js +28 -0
  132. package/lib/openapi/platform/models/issue-types.js.map +1 -0
  133. package/lib/openapi/platform/models/issue-votes.d.ts +18 -0
  134. package/lib/openapi/platform/models/issue-votes.js +22 -0
  135. package/lib/openapi/platform/models/issue-votes.js.map +1 -0
  136. package/lib/openapi/platform/models/issue-watchers.d.ts +27 -0
  137. package/lib/openapi/platform/models/issue-watchers.js +36 -0
  138. package/lib/openapi/platform/models/issue-watchers.js.map +1 -0
  139. package/lib/openapi/platform/models/issue-worklogs.d.ts +93 -0
  140. package/lib/openapi/platform/models/issue-worklogs.js +80 -0
  141. package/lib/openapi/platform/models/issue-worklogs.js.map +1 -0
  142. package/lib/openapi/platform/models/issues.d.ts +583 -0
  143. package/lib/openapi/platform/models/issues.js +545 -0
  144. package/lib/openapi/platform/models/issues.js.map +1 -0
  145. package/lib/openapi/platform/models/jira-expressions.d.ts +329 -0
  146. package/lib/openapi/platform/models/jira-expressions.js +180 -0
  147. package/lib/openapi/platform/models/jira-expressions.js.map +1 -0
  148. package/lib/openapi/platform/models/jira-settings.d.ts +62 -0
  149. package/lib/openapi/platform/models/jira-settings.js +49 -0
  150. package/lib/openapi/platform/models/jira-settings.js.map +1 -0
  151. package/lib/openapi/platform/models/jql-functions-apps.d.ts +61 -0
  152. package/lib/openapi/platform/models/jql-functions-apps.js +57 -0
  153. package/lib/openapi/platform/models/jql-functions-apps.js.map +1 -0
  154. package/lib/openapi/platform/models/jql.d.ts +348 -0
  155. package/lib/openapi/platform/models/jql.js +309 -0
  156. package/lib/openapi/platform/models/jql.js.map +1 -0
  157. package/lib/openapi/platform/models/labels.d.ts +20 -0
  158. package/lib/openapi/platform/models/labels.js +23 -0
  159. package/lib/openapi/platform/models/labels.js.map +1 -0
  160. package/lib/openapi/platform/models/license-metrics.d.ts +27 -0
  161. package/lib/openapi/platform/models/license-metrics.js +32 -0
  162. package/lib/openapi/platform/models/license-metrics.js.map +1 -0
  163. package/lib/openapi/platform/models/myself.d.ts +13 -0
  164. package/lib/openapi/platform/models/myself.js +17 -0
  165. package/lib/openapi/platform/models/myself.js.map +1 -0
  166. package/lib/openapi/platform/models/permission-schemes.d.ts +42 -0
  167. package/lib/openapi/platform/models/permission-schemes.js +39 -0
  168. package/lib/openapi/platform/models/permission-schemes.js.map +1 -0
  169. package/lib/openapi/platform/models/permissions.d.ts +97 -0
  170. package/lib/openapi/platform/models/permissions.js +176 -0
  171. package/lib/openapi/platform/models/permissions.js.map +1 -0
  172. package/lib/openapi/platform/models/priority-schemes.d.ts +233 -0
  173. package/lib/openapi/platform/models/priority-schemes.js +227 -0
  174. package/lib/openapi/platform/models/priority-schemes.js.map +1 -0
  175. package/lib/openapi/platform/models/project-avatars.d.ts +11 -0
  176. package/lib/openapi/platform/models/project-avatars.js +20 -0
  177. package/lib/openapi/platform/models/project-avatars.js.map +1 -0
  178. package/lib/openapi/platform/models/project-classification-levels.d.ts +8 -0
  179. package/lib/openapi/platform/models/project-classification-levels.js +17 -0
  180. package/lib/openapi/platform/models/project-classification-levels.js.map +1 -0
  181. package/lib/openapi/platform/models/project-components.d.ts +122 -0
  182. package/lib/openapi/platform/models/project-components.js +91 -0
  183. package/lib/openapi/platform/models/project-components.js.map +1 -0
  184. package/lib/openapi/platform/models/project-email.d.ts +10 -0
  185. package/lib/openapi/platform/models/project-email.js +18 -0
  186. package/lib/openapi/platform/models/project-email.js.map +1 -0
  187. package/lib/openapi/platform/models/project-features.d.ts +35 -0
  188. package/lib/openapi/platform/models/project-features.js +38 -0
  189. package/lib/openapi/platform/models/project-features.js.map +1 -0
  190. package/lib/openapi/platform/models/project-permission-schemes.d.ts +17 -0
  191. package/lib/openapi/platform/models/project-permission-schemes.js +25 -0
  192. package/lib/openapi/platform/models/project-permission-schemes.js.map +1 -0
  193. package/lib/openapi/platform/models/project-role-actors.d.ts +65 -0
  194. package/lib/openapi/platform/models/project-role-actors.js +37 -0
  195. package/lib/openapi/platform/models/project-role-actors.js.map +1 -0
  196. package/lib/openapi/platform/models/project-roles.d.ts +41 -0
  197. package/lib/openapi/platform/models/project-roles.js +34 -0
  198. package/lib/openapi/platform/models/project-roles.js.map +1 -0
  199. package/lib/openapi/platform/models/project-types.d.ts +16 -0
  200. package/lib/openapi/platform/models/project-types.js +21 -0
  201. package/lib/openapi/platform/models/project-types.js.map +1 -0
  202. package/lib/openapi/platform/models/project-versions.d.ts +110 -0
  203. package/lib/openapi/platform/models/project-versions.js +87 -0
  204. package/lib/openapi/platform/models/project-versions.js.map +1 -0
  205. package/lib/openapi/platform/models/projects.d.ts +216 -0
  206. package/lib/openapi/platform/models/projects.js +149 -0
  207. package/lib/openapi/platform/models/projects.js.map +1 -0
  208. package/lib/openapi/platform/models/screen-schemes.d.ts +94 -0
  209. package/lib/openapi/platform/models/screen-schemes.js +79 -0
  210. package/lib/openapi/platform/models/screen-schemes.js.map +1 -0
  211. package/lib/openapi/platform/models/screen-tab-fields.d.ts +19 -0
  212. package/lib/openapi/platform/models/screen-tab-fields.js +24 -0
  213. package/lib/openapi/platform/models/screen-tab-fields.js.map +1 -0
  214. package/lib/openapi/platform/models/screens.d.ts +82 -0
  215. package/lib/openapi/platform/models/screens.js +72 -0
  216. package/lib/openapi/platform/models/screens.js.map +1 -0
  217. package/lib/openapi/platform/models/server-info.d.ts +51 -0
  218. package/lib/openapi/platform/models/server-info.js +47 -0
  219. package/lib/openapi/platform/models/server-info.js.map +1 -0
  220. package/lib/openapi/platform/models/service-registry.d.ts +32 -0
  221. package/lib/openapi/platform/models/service-registry.js +34 -0
  222. package/lib/openapi/platform/models/service-registry.js.map +1 -0
  223. package/lib/openapi/platform/models/status.d.ts +95 -0
  224. package/lib/openapi/platform/models/status.js +107 -0
  225. package/lib/openapi/platform/models/status.js.map +1 -0
  226. package/lib/openapi/platform/models/time-tracking.d.ts +20 -0
  227. package/lib/openapi/platform/models/time-tracking.js +19 -0
  228. package/lib/openapi/platform/models/time-tracking.js.map +1 -0
  229. package/lib/openapi/platform/models/ui-modifications-apps.d.ts +127 -0
  230. package/lib/openapi/platform/models/ui-modifications-apps.js +85 -0
  231. package/lib/openapi/platform/models/ui-modifications-apps.js.map +1 -0
  232. package/lib/openapi/platform/models/user-search.d.ts +37 -0
  233. package/lib/openapi/platform/models/user-search.js +30 -0
  234. package/lib/openapi/platform/models/user-search.js.map +1 -0
  235. package/lib/openapi/platform/models/users.d.ts +60 -0
  236. package/lib/openapi/platform/models/users.js +53 -0
  237. package/lib/openapi/platform/models/users.js.map +1 -0
  238. package/lib/openapi/platform/models/webhooks.d.ts +147 -0
  239. package/lib/openapi/platform/models/webhooks.js +112 -0
  240. package/lib/openapi/platform/models/webhooks.js.map +1 -0
  241. package/lib/openapi/platform/models/workflow-scheme-drafts.d.ts +17 -0
  242. package/lib/openapi/platform/models/workflow-scheme-drafts.js +37 -0
  243. package/lib/openapi/platform/models/workflow-scheme-drafts.js.map +1 -0
  244. package/lib/openapi/platform/models/workflow-scheme-project-associations.d.ts +29 -0
  245. package/lib/openapi/platform/models/workflow-scheme-project-associations.js +33 -0
  246. package/lib/openapi/platform/models/workflow-scheme-project-associations.js.map +1 -0
  247. package/lib/openapi/platform/models/workflow-schemes.d.ts +217 -0
  248. package/lib/openapi/platform/models/workflow-schemes.js +261 -0
  249. package/lib/openapi/platform/models/workflow-schemes.js.map +1 -0
  250. package/lib/openapi/platform/models/workflow-transition-properties.d.ts +15 -0
  251. package/lib/openapi/platform/models/workflow-transition-properties.js +19 -0
  252. package/lib/openapi/platform/models/workflow-transition-properties.js.map +1 -0
  253. package/lib/openapi/platform/models/workflow-transition-rules.d.ts +106 -0
  254. package/lib/openapi/platform/models/workflow-transition-rules.js +117 -0
  255. package/lib/openapi/platform/models/workflow-transition-rules.js.map +1 -0
  256. package/lib/openapi/platform/models/workflows.d.ts +848 -0
  257. package/lib/openapi/platform/models/workflows.js +824 -0
  258. package/lib/openapi/platform/models/workflows.js.map +1 -0
  259. package/lib/openapi/platform/services/announcement-banner-service.d.ts +49 -0
  260. package/lib/openapi/platform/services/announcement-banner-service.js +99 -0
  261. package/lib/openapi/platform/services/announcement-banner-service.js.map +1 -0
  262. package/lib/openapi/platform/services/app-data-policies-service.d.ts +44 -0
  263. package/lib/openapi/platform/services/app-data-policies-service.js +101 -0
  264. package/lib/openapi/platform/services/app-data-policies-service.js.map +1 -0
  265. package/lib/openapi/platform/services/app-migration-service.d.ts +152 -0
  266. package/lib/openapi/platform/services/app-migration-service.js +178 -0
  267. package/lib/openapi/platform/services/app-migration-service.js.map +1 -0
  268. package/lib/openapi/platform/services/app-properties-service.d.ts +184 -0
  269. package/lib/openapi/platform/services/app-properties-service.js +325 -0
  270. package/lib/openapi/platform/services/app-properties-service.js.map +1 -0
  271. package/lib/openapi/platform/services/application-roles-service.d.ts +158 -0
  272. package/lib/openapi/platform/services/application-roles-service.js +209 -0
  273. package/lib/openapi/platform/services/application-roles-service.js.map +1 -0
  274. package/lib/openapi/platform/services/audit-records-service.d.ts +101 -0
  275. package/lib/openapi/platform/services/audit-records-service.js +125 -0
  276. package/lib/openapi/platform/services/audit-records-service.js.map +1 -0
  277. package/lib/openapi/platform/services/avatars-service.d.ts +363 -0
  278. package/lib/openapi/platform/services/avatars-service.js +523 -0
  279. package/lib/openapi/platform/services/avatars-service.js.map +1 -0
  280. package/lib/openapi/platform/services/classification-levels-service.d.ts +72 -0
  281. package/lib/openapi/platform/services/classification-levels-service.js +104 -0
  282. package/lib/openapi/platform/services/classification-levels-service.js.map +1 -0
  283. package/lib/openapi/platform/services/dashboards-service.d.ts +918 -0
  284. package/lib/openapi/platform/services/dashboards-service.js +1109 -0
  285. package/lib/openapi/platform/services/dashboards-service.js.map +1 -0
  286. package/lib/openapi/platform/services/dynamic-modules-service.d.ts +50 -0
  287. package/lib/openapi/platform/services/dynamic-modules-service.js +96 -0
  288. package/lib/openapi/platform/services/dynamic-modules-service.js.map +1 -0
  289. package/lib/openapi/platform/services/filter-sharing-service.d.ts +446 -0
  290. package/lib/openapi/platform/services/filter-sharing-service.js +565 -0
  291. package/lib/openapi/platform/services/filter-sharing-service.js.map +1 -0
  292. package/lib/openapi/platform/services/filters-service.d.ts +1320 -0
  293. package/lib/openapi/platform/services/filters-service.js +1351 -0
  294. package/lib/openapi/platform/services/filters-service.js.map +1 -0
  295. package/lib/openapi/platform/services/group-and-user-picker-service.d.ts +132 -0
  296. package/lib/openapi/platform/services/group-and-user-picker-service.js +140 -0
  297. package/lib/openapi/platform/services/group-and-user-picker-service.js.map +1 -0
  298. package/lib/openapi/platform/services/groups-service.d.ts +411 -0
  299. package/lib/openapi/platform/services/groups-service.js +448 -0
  300. package/lib/openapi/platform/services/groups-service.js.map +1 -0
  301. package/lib/openapi/platform/services/issue-attachments-service.d.ts +549 -0
  302. package/lib/openapi/platform/services/issue-attachments-service.js +724 -0
  303. package/lib/openapi/platform/services/issue-attachments-service.js.map +1 -0
  304. package/lib/openapi/platform/services/issue-comment-properties-service.d.ts +149 -0
  305. package/lib/openapi/platform/services/issue-comment-properties-service.js +239 -0
  306. package/lib/openapi/platform/services/issue-comment-properties-service.js.map +1 -0
  307. package/lib/openapi/platform/services/issue-comments-service.d.ts +528 -0
  308. package/lib/openapi/platform/services/issue-comments-service.js +563 -0
  309. package/lib/openapi/platform/services/issue-comments-service.js.map +1 -0
  310. package/lib/openapi/platform/services/issue-custom-field-configuration-apps-service.d.ts +155 -0
  311. package/lib/openapi/platform/services/issue-custom-field-configuration-apps-service.js +163 -0
  312. package/lib/openapi/platform/services/issue-custom-field-configuration-apps-service.js.map +1 -0
  313. package/lib/openapi/platform/services/issue-custom-field-contexts-service.d.ts +659 -0
  314. package/lib/openapi/platform/services/issue-custom-field-contexts-service.js +854 -0
  315. package/lib/openapi/platform/services/issue-custom-field-contexts-service.js.map +1 -0
  316. package/lib/openapi/platform/services/issue-custom-field-options-apps-service.d.ts +615 -0
  317. package/lib/openapi/platform/services/issue-custom-field-options-apps-service.js +605 -0
  318. package/lib/openapi/platform/services/issue-custom-field-options-apps-service.js.map +1 -0
  319. package/lib/openapi/platform/services/issue-custom-field-options-service.d.ts +339 -0
  320. package/lib/openapi/platform/services/issue-custom-field-options-service.js +420 -0
  321. package/lib/openapi/platform/services/issue-custom-field-options-service.js.map +1 -0
  322. package/lib/openapi/platform/services/issue-custom-field-values-apps-service.d.ts +90 -0
  323. package/lib/openapi/platform/services/issue-custom-field-values-apps-service.js +117 -0
  324. package/lib/openapi/platform/services/issue-custom-field-values-apps-service.js.map +1 -0
  325. package/lib/openapi/platform/services/issue-field-configurations-service.d.ts +561 -0
  326. package/lib/openapi/platform/services/issue-field-configurations-service.js +801 -0
  327. package/lib/openapi/platform/services/issue-field-configurations-service.js.map +1 -0
  328. package/lib/openapi/platform/services/issue-fields-service.d.ts +420 -0
  329. package/lib/openapi/platform/services/issue-fields-service.js +555 -0
  330. package/lib/openapi/platform/services/issue-fields-service.js.map +1 -0
  331. package/lib/openapi/platform/services/issue-link-types-service.d.ts +165 -0
  332. package/lib/openapi/platform/services/issue-link-types-service.js +263 -0
  333. package/lib/openapi/platform/services/issue-link-types-service.js.map +1 -0
  334. package/lib/openapi/platform/services/issue-links-service.d.ts +237 -0
  335. package/lib/openapi/platform/services/issue-links-service.js +264 -0
  336. package/lib/openapi/platform/services/issue-links-service.js.map +1 -0
  337. package/lib/openapi/platform/services/issue-navigator-settings-service.d.ts +55 -0
  338. package/lib/openapi/platform/services/issue-navigator-settings-service.js +97 -0
  339. package/lib/openapi/platform/services/issue-navigator-settings-service.js.map +1 -0
  340. package/lib/openapi/platform/services/issue-notification-schemes-service.d.ts +809 -0
  341. package/lib/openapi/platform/services/issue-notification-schemes-service.js +917 -0
  342. package/lib/openapi/platform/services/issue-notification-schemes-service.js.map +1 -0
  343. package/lib/openapi/platform/services/issue-priorities-service.d.ts +238 -0
  344. package/lib/openapi/platform/services/issue-priorities-service.js +372 -0
  345. package/lib/openapi/platform/services/issue-priorities-service.js.map +1 -0
  346. package/lib/openapi/platform/services/issue-properties-service.d.ts +368 -0
  347. package/lib/openapi/platform/services/issue-properties-service.js +439 -0
  348. package/lib/openapi/platform/services/issue-properties-service.js.map +1 -0
  349. package/lib/openapi/platform/services/issue-remote-links-service.d.ts +351 -0
  350. package/lib/openapi/platform/services/issue-remote-links-service.js +429 -0
  351. package/lib/openapi/platform/services/issue-remote-links-service.js.map +1 -0
  352. package/lib/openapi/platform/services/issue-resolutions-service.d.ts +202 -0
  353. package/lib/openapi/platform/services/issue-resolutions-service.js +346 -0
  354. package/lib/openapi/platform/services/issue-resolutions-service.js.map +1 -0
  355. package/lib/openapi/platform/services/issue-search-service.d.ts +887 -0
  356. package/lib/openapi/platform/services/issue-search-service.js +878 -0
  357. package/lib/openapi/platform/services/issue-search-service.js.map +1 -0
  358. package/lib/openapi/platform/services/issue-security-level-service.d.ts +136 -0
  359. package/lib/openapi/platform/services/issue-security-level-service.js +174 -0
  360. package/lib/openapi/platform/services/issue-security-level-service.js.map +1 -0
  361. package/lib/openapi/platform/services/issue-security-schemes-service.d.ts +530 -0
  362. package/lib/openapi/platform/services/issue-security-schemes-service.js +721 -0
  363. package/lib/openapi/platform/services/issue-security-schemes-service.js.map +1 -0
  364. package/lib/openapi/platform/services/issue-type-properties-service.d.ts +150 -0
  365. package/lib/openapi/platform/services/issue-type-properties-service.js +227 -0
  366. package/lib/openapi/platform/services/issue-type-properties-service.js.map +1 -0
  367. package/lib/openapi/platform/services/issue-type-schemes-service.d.ts +460 -0
  368. package/lib/openapi/platform/services/issue-type-schemes-service.js +615 -0
  369. package/lib/openapi/platform/services/issue-type-schemes-service.js.map +1 -0
  370. package/lib/openapi/platform/services/issue-type-screen-schemes-service.d.ts +442 -0
  371. package/lib/openapi/platform/services/issue-type-screen-schemes-service.js +606 -0
  372. package/lib/openapi/platform/services/issue-type-screen-schemes-service.js.map +1 -0
  373. package/lib/openapi/platform/services/issue-types-service.d.ts +343 -0
  374. package/lib/openapi/platform/services/issue-types-service.js +495 -0
  375. package/lib/openapi/platform/services/issue-types-service.js.map +1 -0
  376. package/lib/openapi/platform/services/issue-votes-service.d.ts +117 -0
  377. package/lib/openapi/platform/services/issue-votes-service.js +179 -0
  378. package/lib/openapi/platform/services/issue-votes-service.js.map +1 -0
  379. package/lib/openapi/platform/services/issue-watchers-service.d.ts +168 -0
  380. package/lib/openapi/platform/services/issue-watchers-service.js +236 -0
  381. package/lib/openapi/platform/services/issue-watchers-service.js.map +1 -0
  382. package/lib/openapi/platform/services/issue-worklog-properties-service.d.ts +165 -0
  383. package/lib/openapi/platform/services/issue-worklog-properties-service.js +251 -0
  384. package/lib/openapi/platform/services/issue-worklog-properties-service.js.map +1 -0
  385. package/lib/openapi/platform/services/issue-worklogs-service.d.ts +694 -0
  386. package/lib/openapi/platform/services/issue-worklogs-service.js +701 -0
  387. package/lib/openapi/platform/services/issue-worklogs-service.js.map +1 -0
  388. package/lib/openapi/platform/services/issues-service.d.ts +2356 -0
  389. package/lib/openapi/platform/services/issues-service.js +2022 -0
  390. package/lib/openapi/platform/services/issues-service.js.map +1 -0
  391. package/lib/openapi/platform/services/jira-expressions-service.d.ts +298 -0
  392. package/lib/openapi/platform/services/jira-expressions-service.js +272 -0
  393. package/lib/openapi/platform/services/jira-expressions-service.js.map +1 -0
  394. package/lib/openapi/platform/services/jira-settings-service.d.ts +236 -0
  395. package/lib/openapi/platform/services/jira-settings-service.js +325 -0
  396. package/lib/openapi/platform/services/jira-settings-service.js.map +1 -0
  397. package/lib/openapi/platform/services/jql-functions-apps-service.d.ts +113 -0
  398. package/lib/openapi/platform/services/jql-functions-apps-service.js +142 -0
  399. package/lib/openapi/platform/services/jql-functions-apps-service.js.map +1 -0
  400. package/lib/openapi/platform/services/jql-service.d.ts +623 -0
  401. package/lib/openapi/platform/services/jql-service.js +697 -0
  402. package/lib/openapi/platform/services/jql-service.js.map +1 -0
  403. package/lib/openapi/platform/services/labels-service.d.ts +34 -0
  404. package/lib/openapi/platform/services/labels-service.js +67 -0
  405. package/lib/openapi/platform/services/labels-service.js.map +1 -0
  406. package/lib/openapi/platform/services/license-metrics-service.d.ts +82 -0
  407. package/lib/openapi/platform/services/license-metrics-service.js +160 -0
  408. package/lib/openapi/platform/services/license-metrics-service.js.map +1 -0
  409. package/lib/openapi/platform/services/myself-service.d.ts +254 -0
  410. package/lib/openapi/platform/services/myself-service.js +382 -0
  411. package/lib/openapi/platform/services/myself-service.js.map +1 -0
  412. package/lib/openapi/platform/services/permission-schemes-service.d.ts +554 -0
  413. package/lib/openapi/platform/services/permission-schemes-service.js +613 -0
  414. package/lib/openapi/platform/services/permission-schemes-service.js.map +1 -0
  415. package/lib/openapi/platform/services/permissions-service.d.ts +214 -0
  416. package/lib/openapi/platform/services/permissions-service.js +281 -0
  417. package/lib/openapi/platform/services/permissions-service.js.map +1 -0
  418. package/lib/openapi/platform/services/priority-schemes-service.d.ts +578 -0
  419. package/lib/openapi/platform/services/priority-schemes-service.js +655 -0
  420. package/lib/openapi/platform/services/priority-schemes-service.js.map +1 -0
  421. package/lib/openapi/platform/services/project-avatars-service.d.ts +170 -0
  422. package/lib/openapi/platform/services/project-avatars-service.js +254 -0
  423. package/lib/openapi/platform/services/project-avatars-service.js.map +1 -0
  424. package/lib/openapi/platform/services/project-categories-service.d.ts +128 -0
  425. package/lib/openapi/platform/services/project-categories-service.js +226 -0
  426. package/lib/openapi/platform/services/project-categories-service.js.map +1 -0
  427. package/lib/openapi/platform/services/project-classification-levels-service.d.ts +90 -0
  428. package/lib/openapi/platform/services/project-classification-levels-service.js +161 -0
  429. package/lib/openapi/platform/services/project-classification-levels-service.js.map +1 -0
  430. package/lib/openapi/platform/services/project-components-service.d.ts +955 -0
  431. package/lib/openapi/platform/services/project-components-service.js +1075 -0
  432. package/lib/openapi/platform/services/project-components-service.js.map +1 -0
  433. package/lib/openapi/platform/services/project-email-service.d.ts +60 -0
  434. package/lib/openapi/platform/services/project-email-service.js +113 -0
  435. package/lib/openapi/platform/services/project-email-service.js.map +1 -0
  436. package/lib/openapi/platform/services/project-features-service.d.ts +103 -0
  437. package/lib/openapi/platform/services/project-features-service.js +155 -0
  438. package/lib/openapi/platform/services/project-features-service.js.map +1 -0
  439. package/lib/openapi/platform/services/project-key-and-name-validation-service.d.ts +59 -0
  440. package/lib/openapi/platform/services/project-key-and-name-validation-service.js +135 -0
  441. package/lib/openapi/platform/services/project-key-and-name-validation-service.js.map +1 -0
  442. package/lib/openapi/platform/services/project-permission-schemes-service.d.ts +179 -0
  443. package/lib/openapi/platform/services/project-permission-schemes-service.js +255 -0
  444. package/lib/openapi/platform/services/project-permission-schemes-service.js.map +1 -0
  445. package/lib/openapi/platform/services/project-properties-service.d.ts +147 -0
  446. package/lib/openapi/platform/services/project-properties-service.js +224 -0
  447. package/lib/openapi/platform/services/project-properties-service.js.map +1 -0
  448. package/lib/openapi/platform/services/project-role-actors-service.d.ts +351 -0
  449. package/lib/openapi/platform/services/project-role-actors-service.js +413 -0
  450. package/lib/openapi/platform/services/project-role-actors-service.js.map +1 -0
  451. package/lib/openapi/platform/services/project-roles-service.d.ts +484 -0
  452. package/lib/openapi/platform/services/project-roles-service.js +647 -0
  453. package/lib/openapi/platform/services/project-roles-service.js.map +1 -0
  454. package/lib/openapi/platform/services/project-types-service.d.ts +121 -0
  455. package/lib/openapi/platform/services/project-types-service.js +220 -0
  456. package/lib/openapi/platform/services/project-types-service.js.map +1 -0
  457. package/lib/openapi/platform/services/project-versions-service.d.ts +632 -0
  458. package/lib/openapi/platform/services/project-versions-service.js +852 -0
  459. package/lib/openapi/platform/services/project-versions-service.js.map +1 -0
  460. package/lib/openapi/platform/services/projects-service.d.ts +1622 -0
  461. package/lib/openapi/platform/services/projects-service.js +1686 -0
  462. package/lib/openapi/platform/services/projects-service.js.map +1 -0
  463. package/lib/openapi/platform/services/screen-schemes-service.d.ts +166 -0
  464. package/lib/openapi/platform/services/screen-schemes-service.js +216 -0
  465. package/lib/openapi/platform/services/screen-schemes-service.js.map +1 -0
  466. package/lib/openapi/platform/services/screen-tab-fields-service.d.ts +103 -0
  467. package/lib/openapi/platform/services/screen-tab-fields-service.js +181 -0
  468. package/lib/openapi/platform/services/screen-tab-fields-service.js.map +1 -0
  469. package/lib/openapi/platform/services/screen-tabs-service.d.ts +164 -0
  470. package/lib/openapi/platform/services/screen-tabs-service.js +278 -0
  471. package/lib/openapi/platform/services/screen-tabs-service.js.map +1 -0
  472. package/lib/openapi/platform/services/screens-service.d.ts +226 -0
  473. package/lib/openapi/platform/services/screens-service.js +346 -0
  474. package/lib/openapi/platform/services/screens-service.js.map +1 -0
  475. package/lib/openapi/platform/services/server-info-service.d.ts +40 -0
  476. package/lib/openapi/platform/services/server-info-service.js +74 -0
  477. package/lib/openapi/platform/services/server-info-service.js.map +1 -0
  478. package/lib/openapi/platform/services/service-registry-service.d.ts +32 -0
  479. package/lib/openapi/platform/services/service-registry-service.js +60 -0
  480. package/lib/openapi/platform/services/service-registry-service.js.map +1 -0
  481. package/lib/openapi/platform/services/status-service.d.ts +268 -0
  482. package/lib/openapi/platform/services/status-service.js +321 -0
  483. package/lib/openapi/platform/services/status-service.js.map +1 -0
  484. package/lib/openapi/platform/services/tasks-service.d.ts +71 -0
  485. package/lib/openapi/platform/services/tasks-service.js +126 -0
  486. package/lib/openapi/platform/services/tasks-service.js.map +1 -0
  487. package/lib/openapi/platform/services/time-tracking-service.d.ts +140 -0
  488. package/lib/openapi/platform/services/time-tracking-service.js +260 -0
  489. package/lib/openapi/platform/services/time-tracking-service.js.map +1 -0
  490. package/lib/openapi/platform/services/ui-modifications-apps-service.d.ts +212 -0
  491. package/lib/openapi/platform/services/ui-modifications-apps-service.js +262 -0
  492. package/lib/openapi/platform/services/ui-modifications-apps-service.js.map +1 -0
  493. package/lib/openapi/platform/services/user-properties-service.d.ts +218 -0
  494. package/lib/openapi/platform/services/user-properties-service.js +254 -0
  495. package/lib/openapi/platform/services/user-properties-service.js.map +1 -0
  496. package/lib/openapi/platform/services/user-search-service.d.ts +782 -0
  497. package/lib/openapi/platform/services/user-search-service.js +784 -0
  498. package/lib/openapi/platform/services/user-search-service.js.map +1 -0
  499. package/lib/openapi/platform/services/users-service.d.ts +579 -0
  500. package/lib/openapi/platform/services/users-service.js +729 -0
  501. package/lib/openapi/platform/services/users-service.js.map +1 -0
  502. package/lib/openapi/platform/services/webhooks-service.d.ts +258 -0
  503. package/lib/openapi/platform/services/webhooks-service.js +307 -0
  504. package/lib/openapi/platform/services/webhooks-service.js.map +1 -0
  505. package/lib/openapi/platform/services/workflow-scheme-drafts-service.d.ts +744 -0
  506. package/lib/openapi/platform/services/workflow-scheme-drafts-service.js +956 -0
  507. package/lib/openapi/platform/services/workflow-scheme-drafts-service.js.map +1 -0
  508. package/lib/openapi/platform/services/workflow-scheme-project-associations-service.d.ts +85 -0
  509. package/lib/openapi/platform/services/workflow-scheme-project-associations-service.js +134 -0
  510. package/lib/openapi/platform/services/workflow-scheme-project-associations-service.js.map +1 -0
  511. package/lib/openapi/platform/services/workflow-schemes-service.d.ts +843 -0
  512. package/lib/openapi/platform/services/workflow-schemes-service.js +1030 -0
  513. package/lib/openapi/platform/services/workflow-schemes-service.js.map +1 -0
  514. package/lib/openapi/platform/services/workflow-status-categories-service.d.ts +60 -0
  515. package/lib/openapi/platform/services/workflow-status-categories-service.js +115 -0
  516. package/lib/openapi/platform/services/workflow-status-categories-service.js.map +1 -0
  517. package/lib/openapi/platform/services/workflow-statuses-service.d.ts +87 -0
  518. package/lib/openapi/platform/services/workflow-statuses-service.js +142 -0
  519. package/lib/openapi/platform/services/workflow-statuses-service.js.map +1 -0
  520. package/lib/openapi/platform/services/workflow-transition-properties-service.d.ts +189 -0
  521. package/lib/openapi/platform/services/workflow-transition-properties-service.js +224 -0
  522. package/lib/openapi/platform/services/workflow-transition-properties-service.js.map +1 -0
  523. package/lib/openapi/platform/services/workflow-transition-rules-service.d.ts +319 -0
  524. package/lib/openapi/platform/services/workflow-transition-rules-service.js +326 -0
  525. package/lib/openapi/platform/services/workflow-transition-rules-service.js.map +1 -0
  526. package/lib/openapi/platform/services/workflows-service.d.ts +3032 -0
  527. package/lib/openapi/platform/services/workflows-service.js +2529 -0
  528. package/lib/openapi/platform/services/workflows-service.js.map +1 -0
  529. package/lib/openapi/platform/validation-schema-storage.d.ts +3 -0
  530. package/lib/openapi/platform/validation-schema-storage.js +144 -0
  531. package/lib/openapi/platform/validation-schema-storage.js.map +1 -0
  532. package/lib/openapi/software/base-jira-software-api-client.d.ts +426 -0
  533. package/lib/openapi/software/base-jira-software-api-client.js +444 -0
  534. package/lib/openapi/software/base-jira-software-api-client.js.map +1 -0
  535. package/lib/openapi/software/core/common-http-client.d.ts +196 -0
  536. package/lib/openapi/software/core/common-http-client.js +390 -0
  537. package/lib/openapi/software/core/common-http-client.js.map +1 -0
  538. package/lib/openapi/software/core/common-http-service.d.ts +7 -0
  539. package/lib/openapi/software/core/common-http-service.js +20 -0
  540. package/lib/openapi/software/core/common-http-service.js.map +1 -0
  541. package/lib/openapi/software/core/common-validation-schema-storage.d.ts +35 -0
  542. package/lib/openapi/software/core/common-validation-schema-storage.js +65 -0
  543. package/lib/openapi/software/core/common-validation-schema-storage.js.map +1 -0
  544. package/lib/openapi/software/models/board.d.ts +505 -0
  545. package/lib/openapi/software/models/board.js +389 -0
  546. package/lib/openapi/software/models/board.js.map +1 -0
  547. package/lib/openapi/software/services/backlog-service.d.ts +81 -0
  548. package/lib/openapi/software/services/backlog-service.js +113 -0
  549. package/lib/openapi/software/services/backlog-service.js.map +1 -0
  550. package/lib/openapi/software/services/board-service.d.ts +2254 -0
  551. package/lib/openapi/software/services/board-service.js +2653 -0
  552. package/lib/openapi/software/services/board-service.js.map +1 -0
  553. package/lib/openapi/software/services/builds-service.d.ts +368 -0
  554. package/lib/openapi/software/services/builds-service.js +230 -0
  555. package/lib/openapi/software/services/builds-service.js.map +1 -0
  556. package/lib/openapi/software/services/deployments-service.d.ts +217 -0
  557. package/lib/openapi/software/services/deployments-service.js +232 -0
  558. package/lib/openapi/software/services/deployments-service.js.map +1 -0
  559. package/lib/openapi/software/services/dev-ops-components-service.d.ts +246 -0
  560. package/lib/openapi/software/services/dev-ops-components-service.js +280 -0
  561. package/lib/openapi/software/services/dev-ops-components-service.js.map +1 -0
  562. package/lib/openapi/software/services/development-information-service.d.ts +1641 -0
  563. package/lib/openapi/software/services/development-information-service.js +474 -0
  564. package/lib/openapi/software/services/development-information-service.js.map +1 -0
  565. package/lib/openapi/software/services/epic-service.d.ts +596 -0
  566. package/lib/openapi/software/services/epic-service.js +633 -0
  567. package/lib/openapi/software/services/epic-service.js.map +1 -0
  568. package/lib/openapi/software/services/feature-flags-service.d.ts +170 -0
  569. package/lib/openapi/software/services/feature-flags-service.js +182 -0
  570. package/lib/openapi/software/services/feature-flags-service.js.map +1 -0
  571. package/lib/openapi/software/services/issue-service.d.ts +329 -0
  572. package/lib/openapi/software/services/issue-service.js +410 -0
  573. package/lib/openapi/software/services/issue-service.js.map +1 -0
  574. package/lib/openapi/software/services/operations-service.d.ts +456 -0
  575. package/lib/openapi/software/services/operations-service.js +444 -0
  576. package/lib/openapi/software/services/operations-service.js.map +1 -0
  577. package/lib/openapi/software/services/remote-links-service.d.ts +445 -0
  578. package/lib/openapi/software/services/remote-links-service.js +327 -0
  579. package/lib/openapi/software/services/remote-links-service.js.map +1 -0
  580. package/lib/openapi/software/services/security-information-service.d.ts +257 -0
  581. package/lib/openapi/software/services/security-information-service.js +310 -0
  582. package/lib/openapi/software/services/security-information-service.js.map +1 -0
  583. package/lib/openapi/software/services/sprint-service.d.ts +531 -0
  584. package/lib/openapi/software/services/sprint-service.js +665 -0
  585. package/lib/openapi/software/services/sprint-service.js.map +1 -0
  586. package/lib/openapi/software/validation-schema-storage.d.ts +3 -0
  587. package/lib/openapi/software/validation-schema-storage.js +144 -0
  588. package/lib/openapi/software/validation-schema-storage.js.map +1 -0
  589. package/package.json +37 -0
  590. package/src/index.ts +47 -0
  591. package/src/openapi/platform/base-jira-platform-api-client.ts +2298 -0
  592. package/src/openapi/platform/core/common-http-client.ts +723 -0
  593. package/src/openapi/platform/core/common-http-service.ts +22 -0
  594. package/src/openapi/platform/core/common-validation-schema-storage.ts +105 -0
  595. package/src/openapi/platform/models/announcement-banner.ts +59 -0
  596. package/src/openapi/platform/models/app-data-policies.ts +79 -0
  597. package/src/openapi/platform/models/app-migration.ts +172 -0
  598. package/src/openapi/platform/models/app-properties.ts +32 -0
  599. package/src/openapi/platform/models/audit-records.ts +140 -0
  600. package/src/openapi/platform/models/avatars.ts +48 -0
  601. package/src/openapi/platform/models/classification-levels.ts +58 -0
  602. package/src/openapi/platform/models/common.ts +2669 -0
  603. package/src/openapi/platform/models/dashboards.ts +849 -0
  604. package/src/openapi/platform/models/dynamic-modules.ts +121 -0
  605. package/src/openapi/platform/models/filter-sharing.ts +103 -0
  606. package/src/openapi/platform/models/filters.ts +319 -0
  607. package/src/openapi/platform/models/group-and-user-picker.ts +85 -0
  608. package/src/openapi/platform/models/groups.ts +247 -0
  609. package/src/openapi/platform/models/issue-attachments.ts +290 -0
  610. package/src/openapi/platform/models/issue-comment-properties.ts +27 -0
  611. package/src/openapi/platform/models/issue-comments.ts +91 -0
  612. package/src/openapi/platform/models/issue-custom-field-configuration-apps.ts +96 -0
  613. package/src/openapi/platform/models/issue-custom-field-contexts.ts +1072 -0
  614. package/src/openapi/platform/models/issue-custom-field-options-apps.ts +273 -0
  615. package/src/openapi/platform/models/issue-custom-field-options.ts +283 -0
  616. package/src/openapi/platform/models/issue-custom-field-values-apps.ts +118 -0
  617. package/src/openapi/platform/models/issue-field-configurations.ts +435 -0
  618. package/src/openapi/platform/models/issue-fields.ts +392 -0
  619. package/src/openapi/platform/models/issue-link-types.ts +28 -0
  620. package/src/openapi/platform/models/issue-links.ts +185 -0
  621. package/src/openapi/platform/models/issue-notification-schemes.ts +370 -0
  622. package/src/openapi/platform/models/issue-priorities.ts +196 -0
  623. package/src/openapi/platform/models/issue-properties.ts +259 -0
  624. package/src/openapi/platform/models/issue-remote-links.ts +207 -0
  625. package/src/openapi/platform/models/issue-resolutions.ts +180 -0
  626. package/src/openapi/platform/models/issue-search.ts +367 -0
  627. package/src/openapi/platform/models/issue-security-level.ts +76 -0
  628. package/src/openapi/platform/models/issue-security-schemes.ts +496 -0
  629. package/src/openapi/platform/models/issue-type-schemes.ts +290 -0
  630. package/src/openapi/platform/models/issue-type-screen-schemes.ts +286 -0
  631. package/src/openapi/platform/models/issue-types.ts +66 -0
  632. package/src/openapi/platform/models/issue-votes.ts +38 -0
  633. package/src/openapi/platform/models/issue-watchers.ts +67 -0
  634. package/src/openapi/platform/models/issue-worklogs.ts +190 -0
  635. package/src/openapi/platform/models/issues.ts +1268 -0
  636. package/src/openapi/platform/models/jira-expressions.ts +578 -0
  637. package/src/openapi/platform/models/jira-settings.ts +118 -0
  638. package/src/openapi/platform/models/jql-functions-apps.ts +128 -0
  639. package/src/openapi/platform/models/jql.ts +783 -0
  640. package/src/openapi/platform/models/labels.ts +42 -0
  641. package/src/openapi/platform/models/license-metrics.ts +68 -0
  642. package/src/openapi/platform/models/myself.ts +29 -0
  643. package/src/openapi/platform/models/permission-schemes.ts +89 -0
  644. package/src/openapi/platform/models/permissions.ts +308 -0
  645. package/src/openapi/platform/models/priority-schemes.ts +527 -0
  646. package/src/openapi/platform/models/project-avatars.ts +29 -0
  647. package/src/openapi/platform/models/project-classification-levels.ts +24 -0
  648. package/src/openapi/platform/models/project-components.ts +231 -0
  649. package/src/openapi/platform/models/project-email.ts +27 -0
  650. package/src/openapi/platform/models/project-features.ts +78 -0
  651. package/src/openapi/platform/models/project-permission-schemes.ts +43 -0
  652. package/src/openapi/platform/models/project-role-actors.ts +107 -0
  653. package/src/openapi/platform/models/project-roles.ts +76 -0
  654. package/src/openapi/platform/models/project-types.ts +36 -0
  655. package/src/openapi/platform/models/project-versions.ts +216 -0
  656. package/src/openapi/platform/models/projects.ts +429 -0
  657. package/src/openapi/platform/models/screen-schemes.ts +192 -0
  658. package/src/openapi/platform/models/screen-tab-fields.ts +45 -0
  659. package/src/openapi/platform/models/screens.ts +171 -0
  660. package/src/openapi/platform/models/server-info.ts +100 -0
  661. package/src/openapi/platform/models/service-registry.ts +68 -0
  662. package/src/openapi/platform/models/status.ts +229 -0
  663. package/src/openapi/platform/models/time-tracking.ts +38 -0
  664. package/src/openapi/platform/models/ui-modifications-apps.ts +229 -0
  665. package/src/openapi/platform/models/user-search.ts +69 -0
  666. package/src/openapi/platform/models/users.ts +121 -0
  667. package/src/openapi/platform/models/webhooks.ts +307 -0
  668. package/src/openapi/platform/models/workflow-scheme-drafts.ts +58 -0
  669. package/src/openapi/platform/models/workflow-scheme-project-associations.ts +68 -0
  670. package/src/openapi/platform/models/workflow-schemes.ts +545 -0
  671. package/src/openapi/platform/models/workflow-transition-properties.ts +33 -0
  672. package/src/openapi/platform/models/workflow-transition-rules.ts +261 -0
  673. package/src/openapi/platform/models/workflows.ts +1943 -0
  674. package/src/openapi/platform/services/announcement-banner-service.ts +142 -0
  675. package/src/openapi/platform/services/app-data-policies-service.ts +136 -0
  676. package/src/openapi/platform/services/app-migration-service.ts +289 -0
  677. package/src/openapi/platform/services/app-properties-service.ts +441 -0
  678. package/src/openapi/platform/services/application-roles-service.ts +247 -0
  679. package/src/openapi/platform/services/audit-records-service.ts +164 -0
  680. package/src/openapi/platform/services/avatars-service.ts +769 -0
  681. package/src/openapi/platform/services/classification-levels-service.ts +131 -0
  682. package/src/openapi/platform/services/dashboards-service.ts +1721 -0
  683. package/src/openapi/platform/services/dynamic-modules-service.ts +127 -0
  684. package/src/openapi/platform/services/filter-sharing-service.ts +687 -0
  685. package/src/openapi/platform/services/filters-service.ts +1901 -0
  686. package/src/openapi/platform/services/group-and-user-picker-service.ts +224 -0
  687. package/src/openapi/platform/services/groups-service.ts +751 -0
  688. package/src/openapi/platform/services/issue-attachments-service.ts +900 -0
  689. package/src/openapi/platform/services/issue-comment-properties-service.ts +324 -0
  690. package/src/openapi/platform/services/issue-comments-service.ts +812 -0
  691. package/src/openapi/platform/services/issue-custom-field-configuration-apps-service.ts +277 -0
  692. package/src/openapi/platform/services/issue-custom-field-contexts-service.ts +1339 -0
  693. package/src/openapi/platform/services/issue-custom-field-options-apps-service.ts +994 -0
  694. package/src/openapi/platform/services/issue-custom-field-options-service.ts +651 -0
  695. package/src/openapi/platform/services/issue-custom-field-values-apps-service.ts +201 -0
  696. package/src/openapi/platform/services/issue-field-configurations-service.ts +1294 -0
  697. package/src/openapi/platform/services/issue-fields-service.ts +837 -0
  698. package/src/openapi/platform/services/issue-link-types-service.ts +360 -0
  699. package/src/openapi/platform/services/issue-links-service.ts +345 -0
  700. package/src/openapi/platform/services/issue-navigator-settings-service.ts +119 -0
  701. package/src/openapi/platform/services/issue-notification-schemes-service.ts +1209 -0
  702. package/src/openapi/platform/services/issue-priorities-service.ts +575 -0
  703. package/src/openapi/platform/services/issue-properties-service.ts +606 -0
  704. package/src/openapi/platform/services/issue-remote-links-service.ts +597 -0
  705. package/src/openapi/platform/services/issue-resolutions-service.ts +534 -0
  706. package/src/openapi/platform/services/issue-search-service.ts +1139 -0
  707. package/src/openapi/platform/services/issue-security-level-service.ts +250 -0
  708. package/src/openapi/platform/services/issue-security-schemes-service.ts +1240 -0
  709. package/src/openapi/platform/services/issue-type-properties-service.ts +325 -0
  710. package/src/openapi/platform/services/issue-type-schemes-service.ts +940 -0
  711. package/src/openapi/platform/services/issue-type-screen-schemes-service.ts +994 -0
  712. package/src/openapi/platform/services/issue-types-service.ts +679 -0
  713. package/src/openapi/platform/services/issue-votes-service.ts +221 -0
  714. package/src/openapi/platform/services/issue-watchers-service.ts +331 -0
  715. package/src/openapi/platform/services/issue-worklog-properties-service.ts +348 -0
  716. package/src/openapi/platform/services/issue-worklogs-service.ts +1089 -0
  717. package/src/openapi/platform/services/issues-service.ts +3346 -0
  718. package/src/openapi/platform/services/jira-expressions-service.ts +407 -0
  719. package/src/openapi/platform/services/jira-settings-service.ts +415 -0
  720. package/src/openapi/platform/services/jql-functions-apps-service.ts +219 -0
  721. package/src/openapi/platform/services/jql-service.ts +896 -0
  722. package/src/openapi/platform/services/labels-service.ts +89 -0
  723. package/src/openapi/platform/services/license-metrics-service.ts +216 -0
  724. package/src/openapi/platform/services/myself-service.ts +520 -0
  725. package/src/openapi/platform/services/permission-schemes-service.ts +926 -0
  726. package/src/openapi/platform/services/permissions-service.ts +407 -0
  727. package/src/openapi/platform/services/priority-schemes-service.ts +1001 -0
  728. package/src/openapi/platform/services/project-avatars-service.ts +341 -0
  729. package/src/openapi/platform/services/project-categories-service.ts +318 -0
  730. package/src/openapi/platform/services/project-classification-levels-service.ts +232 -0
  731. package/src/openapi/platform/services/project-components-service.ts +1332 -0
  732. package/src/openapi/platform/services/project-email-service.ts +161 -0
  733. package/src/openapi/platform/services/project-features-service.ts +207 -0
  734. package/src/openapi/platform/services/project-key-and-name-validation-service.ts +200 -0
  735. package/src/openapi/platform/services/project-permission-schemes-service.ts +384 -0
  736. package/src/openapi/platform/services/project-properties-service.ts +320 -0
  737. package/src/openapi/platform/services/project-role-actors-service.ts +627 -0
  738. package/src/openapi/platform/services/project-roles-service.ts +867 -0
  739. package/src/openapi/platform/services/project-types-service.ts +297 -0
  740. package/src/openapi/platform/services/project-versions-service.ts +1287 -0
  741. package/src/openapi/platform/services/projects-service.ts +2196 -0
  742. package/src/openapi/platform/services/screen-schemes-service.ts +334 -0
  743. package/src/openapi/platform/services/screen-tab-fields-service.ts +276 -0
  744. package/src/openapi/platform/services/screen-tabs-service.ts +421 -0
  745. package/src/openapi/platform/services/screens-service.ts +528 -0
  746. package/src/openapi/platform/services/server-info-service.ts +88 -0
  747. package/src/openapi/platform/services/service-registry-service.ts +89 -0
  748. package/src/openapi/platform/services/status-service.ts +498 -0
  749. package/src/openapi/platform/services/tasks-service.ts +159 -0
  750. package/src/openapi/platform/services/time-tracking-service.ts +386 -0
  751. package/src/openapi/platform/services/ui-modifications-apps-service.ts +403 -0
  752. package/src/openapi/platform/services/user-properties-service.ts +413 -0
  753. package/src/openapi/platform/services/user-search-service.ts +1214 -0
  754. package/src/openapi/platform/services/users-service.ts +1108 -0
  755. package/src/openapi/platform/services/webhooks-service.ts +458 -0
  756. package/src/openapi/platform/services/workflow-scheme-drafts-service.ts +1313 -0
  757. package/src/openapi/platform/services/workflow-scheme-project-associations-service.ts +189 -0
  758. package/src/openapi/platform/services/workflow-schemes-service.ts +1617 -0
  759. package/src/openapi/platform/services/workflow-status-categories-service.ts +151 -0
  760. package/src/openapi/platform/services/workflow-statuses-service.ts +176 -0
  761. package/src/openapi/platform/services/workflow-transition-properties-service.ts +388 -0
  762. package/src/openapi/platform/services/workflow-transition-rules-service.ts +485 -0
  763. package/src/openapi/platform/services/workflows-service.ts +3477 -0
  764. package/src/openapi/platform/validation-schema-storage.ts +186 -0
  765. package/src/openapi/software/base-jira-software-api-client.ts +447 -0
  766. package/src/openapi/software/core/common-http-client.ts +723 -0
  767. package/src/openapi/software/core/common-http-service.ts +22 -0
  768. package/src/openapi/software/core/common-validation-schema-storage.ts +105 -0
  769. package/src/openapi/software/models/board.ts +918 -0
  770. package/src/openapi/software/services/backlog-service.ts +160 -0
  771. package/src/openapi/software/services/board-service.ts +4189 -0
  772. package/src/openapi/software/services/builds-service.ts +571 -0
  773. package/src/openapi/software/services/deployments-service.ts +403 -0
  774. package/src/openapi/software/services/dev-ops-components-service.ts +371 -0
  775. package/src/openapi/software/services/development-information-service.ts +2357 -0
  776. package/src/openapi/software/services/epic-service.ts +854 -0
  777. package/src/openapi/software/services/feature-flags-service.ts +303 -0
  778. package/src/openapi/software/services/issue-service.ts +529 -0
  779. package/src/openapi/software/services/operations-service.ts +741 -0
  780. package/src/openapi/software/services/remote-links-service.ts +653 -0
  781. package/src/openapi/software/services/security-information-service.ts +495 -0
  782. package/src/openapi/software/services/sprint-service.ts +969 -0
  783. package/src/openapi/software/validation-schema-storage.ts +186 -0
  784. package/tsconfig.build.json +7 -0
  785. package/tsconfig.json +4 -0
@@ -0,0 +1,2298 @@
1
+ // DO NOT EDIT!
2
+ // This file is generated by "api-typescript-generator".
3
+ // To update this file run "yarn build:openapi".
4
+ import * as commonHttpClient from "./core/common-http-client";
5
+ import { CommonHttpService } from "./core/common-http-service";
6
+ import type {
7
+ AnnouncementBannerConfiguration,
8
+ AnnouncementBannerConfigurationUpdate,
9
+ } from "./models/announcement-banner";
10
+ import type {
11
+ ProjectDataPolicies,
12
+ ProjectDataPolicy,
13
+ ProjectWithDataPolicy,
14
+ WorkspaceDataPolicy,
15
+ } from "./models/app-data-policies";
16
+ import type {
17
+ ConnectCustomFieldValue,
18
+ ConnectCustomFieldValues,
19
+ EntityPropertyDetails,
20
+ WorkflowRulesSearch,
21
+ WorkflowRulesSearchDetails,
22
+ } from "./models/app-migration";
23
+ import type { OperationMessage } from "./models/app-properties";
24
+ import type {
25
+ AssociatedItemBean,
26
+ AuditRecordBean,
27
+ AuditRecords,
28
+ ChangedValueBean,
29
+ } from "./models/audit-records";
30
+ import type {
31
+ Avatars,
32
+ StreamingResponseBody,
33
+ SystemAvatars,
34
+ } from "./models/avatars";
35
+ import type {
36
+ DataClassificationLevelsBean,
37
+ DataClassificationTagBean,
38
+ } from "./models/classification-levels";
39
+ import type {
40
+ ApplicationRole,
41
+ Avatar,
42
+ AvatarUrlsBean,
43
+ ColumnItem,
44
+ ColumnRequestBody,
45
+ Comment,
46
+ DefaultWorkflow,
47
+ DocumentVersion,
48
+ EntityProperty,
49
+ ErrorCollection,
50
+ FieldDetails,
51
+ FoundGroups,
52
+ FoundUsers,
53
+ GroupName,
54
+ IssueBean,
55
+ IssueLinkType,
56
+ IssueTypeDetails,
57
+ IssueTypeIds,
58
+ IssueTypesWorkflowMapping,
59
+ IssueTypeWorkflowMapping,
60
+ JsonNode,
61
+ JsonTypeBean,
62
+ NotificationScheme,
63
+ PageBeanIssueTypeScreenScheme,
64
+ PageBeanProject,
65
+ PageBeanProjectDetails,
66
+ PageBeanUser,
67
+ PermissionHolder,
68
+ PermissionScheme,
69
+ Priority,
70
+ Project,
71
+ ProjectCategory,
72
+ ProjectComponent,
73
+ ProjectDetails,
74
+ ProjectId,
75
+ ProjectIssueTypes,
76
+ ProjectRole,
77
+ PropertyKeys,
78
+ Scope,
79
+ ScreenableField,
80
+ ScreenableTab,
81
+ SecurityLevel,
82
+ SecurityScheme,
83
+ SharePermission,
84
+ SimpleLink,
85
+ StatusCategory,
86
+ StatusDetails,
87
+ TaskProgressBeanObject,
88
+ TaskProgressBeanRemoveOptionFromIssuesResult,
89
+ TimeTrackingConfiguration,
90
+ UpdatedProjectCategory,
91
+ User,
92
+ UserDetails,
93
+ Version,
94
+ Visibility,
95
+ WorkflowScheme,
96
+ WorkflowScope,
97
+ WorkflowTransitionRules,
98
+ } from "./models/common";
99
+ import type {
100
+ AvailableDashboardGadget,
101
+ AvailableDashboardGadgetsResponse,
102
+ BulkChangeOwnerDetails,
103
+ BulkEditActionError,
104
+ BulkEditShareableEntityRequest,
105
+ BulkEditShareableEntityResponse,
106
+ Dashboard,
107
+ DashboardDetails,
108
+ DashboardGadget,
109
+ DashboardGadgetPosition,
110
+ DashboardGadgetResponse,
111
+ DashboardGadgetSettings,
112
+ DashboardGadgetUpdateRequest,
113
+ Hierarchy,
114
+ PageBeanDashboard,
115
+ PageOfDashboards,
116
+ PermissionDetails,
117
+ ProjectInsight,
118
+ ProjectLandingPageInfo,
119
+ ProjectPermissions,
120
+ ProjectRoleGroup,
121
+ ProjectRoleUser,
122
+ RoleActor,
123
+ SimplifiedHierarchyLevel,
124
+ UserBean,
125
+ UserBeanAvatarUrls,
126
+ VersionApprover,
127
+ VersionIssuesStatus,
128
+ } from "./models/dashboards";
129
+ import type {
130
+ ConnectModule,
131
+ ConnectModules,
132
+ ErrorMessage,
133
+ } from "./models/dynamic-modules";
134
+ import type {
135
+ DefaultShareScope,
136
+ SharePermissionInputBean,
137
+ } from "./models/filter-sharing";
138
+ import type {
139
+ ChangeFilterOwner,
140
+ Filter,
141
+ FilterDetails,
142
+ FilterSubscription,
143
+ FilterSubscriptionsList,
144
+ PageBeanFilterDetails,
145
+ UserList,
146
+ } from "./models/filters";
147
+ import type {
148
+ FoundUsersAndGroups,
149
+ UserPickerUser,
150
+ } from "./models/group-and-user-picker";
151
+ import type {
152
+ AddGroupBean,
153
+ FoundGroup,
154
+ Group,
155
+ GroupDetails,
156
+ GroupLabel,
157
+ PageBeanGroupDetails,
158
+ PageBeanUserDetails,
159
+ PagedListUserDetailsApplicationUser,
160
+ UpdateUserToGroupBean,
161
+ } from "./models/groups";
162
+ import type {
163
+ Attachment,
164
+ AttachmentArchiveEntry,
165
+ AttachmentArchiveImpl,
166
+ AttachmentArchiveItemReadable,
167
+ AttachmentArchiveMetadataReadable,
168
+ AttachmentMetadata,
169
+ AttachmentSettings,
170
+ ListWrapperCallbackApplicationRole,
171
+ ListWrapperCallbackGroupName,
172
+ MultipartFile,
173
+ SimpleListWrapperApplicationRole,
174
+ SimpleListWrapperGroupName,
175
+ } from "./models/issue-attachments";
176
+ import type { PropertyKey } from "./models/issue-comment-properties";
177
+ import type {
178
+ IssueCommentListRequestBean,
179
+ PageBeanComment,
180
+ PageOfComments,
181
+ } from "./models/issue-comments";
182
+ import type {
183
+ ContextualConfiguration,
184
+ CustomFieldConfigurations,
185
+ PageBeanContextualConfiguration,
186
+ } from "./models/issue-custom-field-configuration-apps";
187
+ import type {
188
+ ContextForProjectAndIssueType,
189
+ CreateCustomFieldContext,
190
+ CustomFieldContext,
191
+ CustomFieldContextDefaultValue,
192
+ CustomFieldContextDefaultValueCascadingOption,
193
+ CustomFieldContextDefaultValueDate,
194
+ CustomFieldContextDefaultValueDateTime,
195
+ CustomFieldContextDefaultValueFloat,
196
+ CustomFieldContextDefaultValueForgeDateTimeField,
197
+ CustomFieldContextDefaultValueForgeGroupField,
198
+ CustomFieldContextDefaultValueForgeMultiGroupField,
199
+ CustomFieldContextDefaultValueForgeMultiStringField,
200
+ CustomFieldContextDefaultValueForgeMultiUserField,
201
+ CustomFieldContextDefaultValueForgeNumberField,
202
+ CustomFieldContextDefaultValueForgeObjectField,
203
+ CustomFieldContextDefaultValueForgeStringField,
204
+ CustomFieldContextDefaultValueForgeUserField,
205
+ CustomFieldContextDefaultValueLabels,
206
+ CustomFieldContextDefaultValueMultipleGroupPicker,
207
+ CustomFieldContextDefaultValueMultipleOption,
208
+ CustomFieldContextDefaultValueMultipleVersionPicker,
209
+ CustomFieldContextDefaultValueMultiUserPicker,
210
+ CustomFieldContextDefaultValueProject,
211
+ CustomFieldContextDefaultValueReadOnly,
212
+ CustomFieldContextDefaultValueSingleGroupPicker,
213
+ CustomFieldContextDefaultValueSingleOption,
214
+ CustomFieldContextDefaultValueSingleVersionPicker,
215
+ CustomFieldContextDefaultValueTextArea,
216
+ CustomFieldContextDefaultValueTextField,
217
+ CustomFieldContextDefaultValueUpdate,
218
+ CustomFieldContextDefaultValueUrl,
219
+ CustomFieldContextProjectMapping,
220
+ CustomFieldContextSingleUserPickerDefaults,
221
+ CustomFieldContextUpdateDetails,
222
+ IssueTypeToContextMapping,
223
+ PageBeanContextForProjectAndIssueType,
224
+ PageBeanCustomFieldContext,
225
+ PageBeanCustomFieldContextDefaultValue,
226
+ PageBeanCustomFieldContextProjectMapping,
227
+ PageBeanIssueTypeToContextMapping,
228
+ ProjectIds,
229
+ ProjectIssueTypeMapping,
230
+ ProjectIssueTypeMappings,
231
+ UserFilter,
232
+ } from "./models/issue-custom-field-contexts";
233
+ import type {
234
+ BulkCustomFieldOptionCreateRequest,
235
+ BulkCustomFieldOptionUpdateRequest,
236
+ CustomFieldContextOption,
237
+ CustomFieldCreatedContextOptionsList,
238
+ CustomFieldOption,
239
+ CustomFieldOptionCreate,
240
+ CustomFieldOptionUpdate,
241
+ CustomFieldUpdatedContextOptionsList,
242
+ OrderOfCustomFieldOptions,
243
+ PageBeanCustomFieldContextOption,
244
+ RemoveOptionFromIssuesResult,
245
+ SimpleErrorCollection,
246
+ } from "./models/issue-custom-field-options";
247
+ import type {
248
+ GlobalScopeBean,
249
+ IssueFieldOption,
250
+ IssueFieldOptionConfiguration,
251
+ IssueFieldOptionCreateBean,
252
+ IssueFieldOptionScopeBean,
253
+ PageBeanIssueFieldOption,
254
+ ProjectScopeBean,
255
+ } from "./models/issue-custom-field-options-apps";
256
+ import type {
257
+ CustomFieldValueUpdate,
258
+ CustomFieldValueUpdateDetails,
259
+ MultipleCustomFieldValuesUpdate,
260
+ MultipleCustomFieldValuesUpdateDetails,
261
+ } from "./models/issue-custom-field-values-apps";
262
+ import type {
263
+ AssociateFieldConfigurationsWithIssueTypesRequest,
264
+ FieldConfiguration,
265
+ FieldConfigurationDetails,
266
+ FieldConfigurationIssueTypeItem,
267
+ FieldConfigurationItem,
268
+ FieldConfigurationItemsDetails,
269
+ FieldConfigurationScheme,
270
+ FieldConfigurationSchemeProjectAssociation,
271
+ FieldConfigurationSchemeProjects,
272
+ FieldConfigurationToIssueTypeMapping,
273
+ IssueTypeIdsToRemove,
274
+ PageBeanFieldConfigurationDetails,
275
+ PageBeanFieldConfigurationIssueTypeItem,
276
+ PageBeanFieldConfigurationItem,
277
+ PageBeanFieldConfigurationScheme,
278
+ PageBeanFieldConfigurationSchemeProjects,
279
+ UpdateFieldConfigurationSchemeDetails,
280
+ } from "./models/issue-field-configurations";
281
+ import type {
282
+ Context,
283
+ CustomFieldDefinitionJsonBean,
284
+ Field,
285
+ FieldLastUsed,
286
+ PageBeanContext,
287
+ PageBeanField,
288
+ UpdateCustomFieldDetails,
289
+ } from "./models/issue-fields";
290
+ import type { IssueLinkTypes } from "./models/issue-link-types";
291
+ import type {
292
+ ExpandPrioritySchemePage,
293
+ Fields,
294
+ IssueLink,
295
+ LinkedIssue,
296
+ LinkIssueRequestJsonBean,
297
+ TimeTrackingDetails,
298
+ } from "./models/issue-links";
299
+ import type {
300
+ AddNotificationsDetails,
301
+ CreateNotificationSchemeDetails,
302
+ EventNotification,
303
+ NotificationEvent,
304
+ NotificationSchemeAndProjectMappingJsonBean,
305
+ NotificationSchemeEvent,
306
+ NotificationSchemeEventDetails,
307
+ NotificationSchemeEventTypeId,
308
+ NotificationSchemeId,
309
+ NotificationSchemeNotificationDetails,
310
+ PageBeanNotificationScheme,
311
+ PageBeanNotificationSchemeAndProjectMappingJsonBean,
312
+ UpdateNotificationSchemeDetails,
313
+ } from "./models/issue-notification-schemes";
314
+ import type {
315
+ CreatePriorityDetails,
316
+ PageBeanPriority,
317
+ PriorityId,
318
+ ReorderIssuePriorities,
319
+ SetDefaultPriorityRequest,
320
+ UpdatePriorityDetails,
321
+ } from "./models/issue-priorities";
322
+ import type {
323
+ BulkIssuePropertyUpdateRequest,
324
+ IssueEntityProperties,
325
+ IssueEntityPropertiesForMultiUpdate,
326
+ IssueFilterForBulkPropertyDelete,
327
+ IssueFilterForBulkPropertySet,
328
+ MultiIssueEntityProperties,
329
+ } from "./models/issue-properties";
330
+ import type {
331
+ Application,
332
+ Icon,
333
+ RemoteIssueLink,
334
+ RemoteIssueLinkIdentifies,
335
+ RemoteIssueLinkRequest,
336
+ RemoteObject,
337
+ Status,
338
+ } from "./models/issue-remote-links";
339
+ import type {
340
+ CreateResolutionDetails,
341
+ PageBeanResolutionJsonBean,
342
+ ReorderIssueResolutionsRequest,
343
+ Resolution,
344
+ ResolutionId,
345
+ ResolutionJsonBean,
346
+ SetDefaultResolutionRequest,
347
+ UpdateResolutionDetails,
348
+ } from "./models/issue-resolutions";
349
+ import type {
350
+ IdSearchRequestBean,
351
+ IdSearchResults,
352
+ IssueMatches,
353
+ IssueMatchesForJql,
354
+ IssuePickerSuggestions,
355
+ IssuePickerSuggestionsIssueType,
356
+ IssuesAndJqlQueries,
357
+ SearchRequestBean,
358
+ SearchResults,
359
+ SuggestedIssue,
360
+ } from "./models/issue-search";
361
+ import type {
362
+ IssueSecurityLevelMember,
363
+ PageBeanIssueSecurityLevelMember,
364
+ } from "./models/issue-security-level";
365
+ import type {
366
+ AddSecuritySchemeLevelsRequestBean,
367
+ AssociateSecuritySchemeWithProjectDetails,
368
+ CreateIssueSecuritySchemeDetails,
369
+ DefaultLevelValue,
370
+ IssueSecuritySchemeToProjectMapping,
371
+ OldToNewSecurityLevelMappingsBean,
372
+ PageBeanIssueSecuritySchemeToProjectMapping,
373
+ PageBeanSecurityLevel,
374
+ PageBeanSecurityLevelMember,
375
+ PageBeanSecuritySchemeWithProjects,
376
+ SecurityLevelMember,
377
+ SecuritySchemeId,
378
+ SecuritySchemeLevelBean,
379
+ SecuritySchemeLevelMemberBean,
380
+ SecuritySchemeMembersRequest,
381
+ SecuritySchemes,
382
+ SecuritySchemeWithProjects,
383
+ SetDefaultLevelsRequest,
384
+ UpdateIssueSecurityLevelDetails,
385
+ UpdateIssueSecuritySchemeRequestBean,
386
+ } from "./models/issue-security-schemes";
387
+ import type {
388
+ IssueTypeScheme,
389
+ IssueTypeSchemeDetails,
390
+ IssueTypeSchemeId,
391
+ IssueTypeSchemeMapping,
392
+ IssueTypeSchemeProjectAssociation,
393
+ IssueTypeSchemeProjects,
394
+ IssueTypeSchemeUpdateDetails,
395
+ OrderOfIssueTypes,
396
+ PageBeanIssueTypeScheme,
397
+ PageBeanIssueTypeSchemeMapping,
398
+ PageBeanIssueTypeSchemeProjects,
399
+ } from "./models/issue-type-schemes";
400
+ import type {
401
+ IssueTypeScreenScheme,
402
+ IssueTypeScreenSchemeDetails,
403
+ IssueTypeScreenSchemeId,
404
+ IssueTypeScreenSchemeItem,
405
+ IssueTypeScreenSchemeMapping,
406
+ IssueTypeScreenSchemeMappingDetails,
407
+ IssueTypeScreenSchemeProjectAssociation,
408
+ IssueTypeScreenSchemesProjects,
409
+ IssueTypeScreenSchemeUpdateDetails,
410
+ PageBeanIssueTypeScreenSchemeItem,
411
+ PageBeanIssueTypeScreenSchemesProjects,
412
+ UpdateDefaultScreenScheme,
413
+ } from "./models/issue-type-screen-schemes";
414
+ import type {
415
+ IssueTypeCreateBean,
416
+ IssueTypeUpdateBean,
417
+ } from "./models/issue-types";
418
+ import type { Votes } from "./models/issue-votes";
419
+ import type {
420
+ BulkIssueIsWatching,
421
+ IssueList,
422
+ Watchers,
423
+ } from "./models/issue-watchers";
424
+ import type {
425
+ ChangedWorklog,
426
+ ChangedWorklogs,
427
+ PageOfWorklogs,
428
+ Worklog,
429
+ WorklogIdsRequestBean,
430
+ } from "./models/issue-worklogs";
431
+ import type {
432
+ ArchivedIssuesFilterRequest,
433
+ ArchiveIssueAsyncRequest,
434
+ BulkOperationErrorResult,
435
+ ChangeDetails,
436
+ Changelog,
437
+ CreatedIssue,
438
+ CreatedIssues,
439
+ DateRangeFilterRequest,
440
+ Error,
441
+ Errors,
442
+ ExportArchivedIssuesTaskProgressResponse,
443
+ FieldCreateMetadata,
444
+ FieldMetadata,
445
+ FieldUpdateOperation,
446
+ HistoryMetadata,
447
+ HistoryMetadataParticipant,
448
+ IncludedFields,
449
+ IssueArchivalSyncRequest,
450
+ IssueArchivalSyncResponse,
451
+ IssueChangelogIds,
452
+ IssueCreateMetadata,
453
+ IssueEvent,
454
+ IssueLimitReportRequest,
455
+ IssueLimitReportResponseBean,
456
+ IssuesUpdateBean,
457
+ IssueTransition,
458
+ IssueTypeIssueCreateMetadata,
459
+ IssueUpdateDetails,
460
+ IssueUpdateMetadata,
461
+ LinkGroup,
462
+ NestedResponse,
463
+ Notification,
464
+ NotificationRecipients,
465
+ NotificationRecipientsRestrictions,
466
+ Operations,
467
+ PageBeanChangelog,
468
+ PageOfChangelogs,
469
+ PageOfCreateMetaIssueTypes,
470
+ PageOfCreateMetaIssueTypeWithField,
471
+ ProjectIssueCreateMetadata,
472
+ RestrictedPermission,
473
+ Transitions,
474
+ WarningCollection,
475
+ } from "./models/issues";
476
+ import type {
477
+ CustomContextVariable,
478
+ IdOrKeyBean,
479
+ IssueContextVariable,
480
+ IssuesJqlMetaDataBean,
481
+ IssuesMetaBean,
482
+ JexpIssues,
483
+ JexpJqlIssues,
484
+ JiraExpressionAnalysis,
485
+ JiraExpressionComplexity,
486
+ JiraExpressionEvalContextBean,
487
+ JiraExpressionEvalRequestBean,
488
+ JiraExpressionEvaluationMetaDataBean,
489
+ JiraExpressionForAnalysis,
490
+ JiraExpressionResult,
491
+ JiraExpressionsAnalysis,
492
+ JiraExpressionsComplexityBean,
493
+ JiraExpressionsComplexityValueBean,
494
+ JiraExpressionValidationError,
495
+ JsonContextVariable,
496
+ UserContextVariable,
497
+ } from "./models/jira-expressions";
498
+ import type {
499
+ ApplicationProperty,
500
+ Configuration,
501
+ SimpleApplicationPropertyBean,
502
+ } from "./models/jira-settings";
503
+ import type {
504
+ AutoCompleteSuggestion,
505
+ AutoCompleteSuggestions,
506
+ CompoundClause,
507
+ ConvertedJqlQueries,
508
+ FieldChangedClause,
509
+ FieldReferenceData,
510
+ FieldValueClause,
511
+ FieldWasClause,
512
+ FunctionOperand,
513
+ FunctionReferenceData,
514
+ JqlPersonalDataMigrationRequest,
515
+ JqlQueriesToParse,
516
+ JqlQueriesToSanitize,
517
+ JqlQuery,
518
+ JqlQueryClause,
519
+ JqlQueryClauseOperand,
520
+ JqlQueryClauseTimePredicate,
521
+ JqlQueryField,
522
+ JqlQueryFieldEntityProperty,
523
+ JqlQueryOrderByClause,
524
+ JqlQueryOrderByClauseElement,
525
+ JqlQueryToSanitize,
526
+ JqlQueryUnitaryOperand,
527
+ JqlQueryWithUnknownUsers,
528
+ JqlReferenceData,
529
+ KeywordOperand,
530
+ ListOperand,
531
+ ParsedJqlQueries,
532
+ ParsedJqlQuery,
533
+ SanitizedJqlQueries,
534
+ SanitizedJqlQuery,
535
+ SearchAutoCompleteFilter,
536
+ ValueOperand,
537
+ } from "./models/jql";
538
+ import type {
539
+ JqlFunctionPrecomputationBean,
540
+ JqlFunctionPrecomputationUpdateBean,
541
+ JqlFunctionPrecomputationUpdateRequestBean,
542
+ PageBeanJqlFunctionPrecomputationBean,
543
+ } from "./models/jql-functions-apps";
544
+ import type { PageBeanString } from "./models/labels";
545
+ import type {
546
+ ErrorCollections,
547
+ License,
548
+ LicensedApplication,
549
+ LicenseMetric,
550
+ } from "./models/license-metrics";
551
+ import type { Locale } from "./models/myself";
552
+ import type {
553
+ PermissionGrant,
554
+ PermissionGrants,
555
+ PermissionSchemes,
556
+ } from "./models/permission-schemes";
557
+ import type {
558
+ BulkPermissionGrants,
559
+ BulkPermissionsRequestBean,
560
+ BulkProjectPermissionGrants,
561
+ BulkProjectPermissions,
562
+ Permissions,
563
+ PermissionsKeysBean,
564
+ PermittedProjects,
565
+ ProjectIdentifierBean,
566
+ UserPermission,
567
+ } from "./models/permissions";
568
+ import type {
569
+ CreatePrioritySchemeDetails,
570
+ PageBeanPrioritySchemeWithPaginatedPrioritiesAndProjects,
571
+ PageBeanPriorityWithSequence,
572
+ PriorityMapping,
573
+ PrioritySchemeChangesWithMappings,
574
+ PrioritySchemeChangesWithoutMappings,
575
+ PrioritySchemeId,
576
+ PrioritySchemeWithPaginatedPrioritiesAndProjects,
577
+ PriorityWithSequence,
578
+ SuggestedMappingsForPrioritiesRequestBean,
579
+ SuggestedMappingsForProjectsRequestBean,
580
+ SuggestedMappingsRequestBean,
581
+ TaskProgressBeanJsonNode,
582
+ UpdatePrioritiesInSchemeRequestBean,
583
+ UpdatePrioritySchemeRequestBean,
584
+ UpdatePrioritySchemeResponseBean,
585
+ UpdateProjectsInSchemeRequestBean,
586
+ } from "./models/priority-schemes";
587
+ import type { ProjectAvatars } from "./models/project-avatars";
588
+ import type { UpdateDefaultProjectClassificationBean } from "./models/project-classification-levels";
589
+ import type {
590
+ ComponentIssuesCount,
591
+ ComponentJsonBean,
592
+ ComponentWithIssueCount,
593
+ PageBean2ComponentJsonBean,
594
+ PageBeanComponentWithIssueCount,
595
+ } from "./models/project-components";
596
+ import type { ProjectEmailAddress } from "./models/project-email";
597
+ import type {
598
+ ContainerForProjectFeatures,
599
+ ProjectFeature,
600
+ ProjectFeatureState,
601
+ } from "./models/project-features";
602
+ import type {
603
+ IdBean,
604
+ ProjectIssueSecurityLevels,
605
+ } from "./models/project-permission-schemes";
606
+ import type {
607
+ ActorInputBean,
608
+ ActorsMap,
609
+ ProjectRoleActorsUpdateBean,
610
+ } from "./models/project-role-actors";
611
+ import type {
612
+ CreateUpdateRoleRequestBean,
613
+ ProjectRoleDetails,
614
+ } from "./models/project-roles";
615
+ import type { ProjectType } from "./models/project-types";
616
+ import type {
617
+ CustomFieldReplacement,
618
+ DeleteAndReplaceVersionBean,
619
+ PageBeanVersion,
620
+ VersionIssueCounts,
621
+ VersionMoveBean,
622
+ VersionRelatedWork,
623
+ VersionUnresolvedIssuesCount,
624
+ VersionUsageInCustomField,
625
+ } from "./models/project-versions";
626
+ import type {
627
+ CreateProjectDetails,
628
+ IssueTypeInfo,
629
+ IssueTypeWithStatus,
630
+ ProjectIdentifiers,
631
+ ProjectIssueTypeHierarchy,
632
+ ProjectIssueTypesHierarchyLevel,
633
+ StringList,
634
+ UpdateProjectDetails,
635
+ } from "./models/projects";
636
+ import type {
637
+ PageBeanScreenScheme,
638
+ ScreenScheme,
639
+ ScreenSchemeDetails,
640
+ ScreenSchemeId,
641
+ ScreenTypes,
642
+ UpdateScreenSchemeDetails,
643
+ UpdateScreenTypes,
644
+ } from "./models/screen-schemes";
645
+ import type { AddFieldBean, MoveFieldBean } from "./models/screen-tab-fields";
646
+ import type {
647
+ PageBeanScreen,
648
+ PageBeanScreenWithTab,
649
+ Screen,
650
+ ScreenDetails,
651
+ ScreenWithTab,
652
+ UpdateScreenDetails,
653
+ } from "./models/screens";
654
+ import type {
655
+ HealthCheckResult,
656
+ ServerInformation,
657
+ } from "./models/server-info";
658
+ import type {
659
+ ServiceRegistry,
660
+ ServiceRegistryTier,
661
+ } from "./models/service-registry";
662
+ import type {
663
+ JiraStatus,
664
+ PageOfStatuses,
665
+ StatusCreate,
666
+ StatusCreateRequest,
667
+ StatusScope,
668
+ StatusUpdate,
669
+ StatusUpdateRequest,
670
+ WorkflowUsages,
671
+ } from "./models/status";
672
+ import type { TimeTrackingProvider } from "./models/time-tracking";
673
+ import type {
674
+ CreateUiModificationDetails,
675
+ DetailedErrorCollection,
676
+ PageBeanUiModificationDetails,
677
+ UiModificationContextDetails,
678
+ UiModificationDetails,
679
+ UiModificationIdentifiers,
680
+ UpdateUiModificationDetails,
681
+ } from "./models/ui-modifications-apps";
682
+ import type { PageBeanUserKey, UserKey } from "./models/user-search";
683
+ import type {
684
+ NewUserDetails,
685
+ UnrestrictedUserEmail,
686
+ UserColumnRequestBody,
687
+ UserMigrationBean,
688
+ } from "./models/users";
689
+ import type {
690
+ ContainerForRegisteredWebhooks,
691
+ ContainerForWebhookIds,
692
+ FailedWebhook,
693
+ FailedWebhooks,
694
+ PageBeanWebhook,
695
+ RegisteredWebhook,
696
+ Webhook,
697
+ WebhookDetails,
698
+ WebhookRegistrationDetails,
699
+ WebhooksExpirationDate,
700
+ } from "./models/webhooks";
701
+ import type {
702
+ PublishDraftWorkflowScheme,
703
+ StatusMapping,
704
+ } from "./models/workflow-scheme-drafts";
705
+ import type {
706
+ ContainerOfWorkflowSchemeAssociations,
707
+ WorkflowSchemeAssociations,
708
+ WorkflowSchemeProjectAssociation,
709
+ } from "./models/workflow-scheme-project-associations";
710
+ import type {
711
+ MappingsByIssueTypeOverride,
712
+ MappingsByWorkflow,
713
+ PageBeanWorkflowScheme,
714
+ RequiredMappingByIssueType,
715
+ RequiredMappingByWorkflows,
716
+ SimpleUsage,
717
+ StatusesPerWorkflow,
718
+ StatusMetadata,
719
+ WorkflowAssociationStatusMapping,
720
+ WorkflowMetadataAndIssueTypeRestModel,
721
+ WorkflowMetadataRestModel,
722
+ WorkflowSchemeAssociation,
723
+ WorkflowSchemeReadRequest,
724
+ WorkflowSchemeReadResponse,
725
+ WorkflowSchemeUpdateRequest,
726
+ WorkflowSchemeUpdateRequiredMappingsRequest,
727
+ WorkflowSchemeUpdateRequiredMappingsResponse,
728
+ } from "./models/workflow-schemes";
729
+ import type { WorkflowTransitionProperty } from "./models/workflow-transition-properties";
730
+ import type {
731
+ AppWorkflowTransitionRule,
732
+ PageBeanWorkflowTransitionRules,
733
+ RuleConfiguration,
734
+ WorkflowId,
735
+ WorkflowsWithTransitionRulesDetails,
736
+ WorkflowTransition,
737
+ WorkflowTransitionRulesDetails,
738
+ WorkflowTransitionRulesUpdate,
739
+ WorkflowTransitionRulesUpdateErrorDetails,
740
+ WorkflowTransitionRulesUpdateErrors,
741
+ } from "./models/workflow-transition-rules";
742
+ import type {
743
+ AvailableWorkflowConnectRule,
744
+ AvailableWorkflowForgeRule,
745
+ AvailableWorkflowSystemRule,
746
+ AvailableWorkflowTriggers,
747
+ AvailableWorkflowTriggerTypes,
748
+ ConditionGroupConfiguration,
749
+ ConditionGroupUpdate,
750
+ CreateWorkflowCondition,
751
+ CreateWorkflowDetails,
752
+ CreateWorkflowStatusDetails,
753
+ CreateWorkflowTransitionDetails,
754
+ CreateWorkflowTransitionRule,
755
+ CreateWorkflowTransitionRulesDetails,
756
+ CreateWorkflowTransitionScreenDetails,
757
+ DeprecatedWorkflow,
758
+ JiraWorkflow,
759
+ JiraWorkflowStatus,
760
+ PageBeanWorkflow,
761
+ ProjectAndIssueTypePair,
762
+ PublishedWorkflowId,
763
+ StatusLayoutUpdate,
764
+ StatusMappingDto,
765
+ StatusMigration,
766
+ StatusReferenceAndPort,
767
+ Transition,
768
+ TransitionScreenDetails,
769
+ TransitionUpdateDto,
770
+ ValidationOptionsForCreate,
771
+ ValidationOptionsForUpdate,
772
+ Workflow,
773
+ WorkflowCapabilities,
774
+ WorkflowCompoundCondition,
775
+ WorkflowCondition,
776
+ WorkflowCreate,
777
+ WorkflowCreateRequest,
778
+ WorkflowCreateResponse,
779
+ WorkflowCreateValidateRequest,
780
+ WorkflowElementReference,
781
+ WorkflowIds,
782
+ WorkflowLayout,
783
+ WorkflowOperations,
784
+ WorkflowReadRequest,
785
+ WorkflowReadResponse,
786
+ WorkflowReferenceStatus,
787
+ WorkflowRuleConfiguration,
788
+ WorkflowRules,
789
+ WorkflowSchemeIdName,
790
+ WorkflowSimpleCondition,
791
+ WorkflowStatus,
792
+ WorkflowStatusAndPort,
793
+ WorkflowStatusLayout,
794
+ WorkflowStatusUpdate,
795
+ WorkflowTransitionRule,
796
+ WorkflowTransitions,
797
+ WorkflowTrigger,
798
+ WorkflowUpdate,
799
+ WorkflowUpdateRequest,
800
+ WorkflowUpdateResponse,
801
+ WorkflowUpdateValidateRequestBean,
802
+ WorkflowValidationError,
803
+ WorkflowValidationErrorList,
804
+ } from "./models/workflows";
805
+ import { AnnouncementBannerService } from "./services/announcement-banner-service";
806
+ import { AppDataPoliciesService } from "./services/app-data-policies-service";
807
+ import { AppMigrationService } from "./services/app-migration-service";
808
+ import { AppPropertiesService } from "./services/app-properties-service";
809
+ import { ApplicationRolesService } from "./services/application-roles-service";
810
+ import { AuditRecordsService } from "./services/audit-records-service";
811
+ import { AvatarsService } from "./services/avatars-service";
812
+ import { ClassificationLevelsService } from "./services/classification-levels-service";
813
+ import { DashboardsService } from "./services/dashboards-service";
814
+ import { DynamicModulesService } from "./services/dynamic-modules-service";
815
+ import { FilterSharingService } from "./services/filter-sharing-service";
816
+ import { FiltersService } from "./services/filters-service";
817
+ import { GroupAndUserPickerService } from "./services/group-and-user-picker-service";
818
+ import { GroupsService } from "./services/groups-service";
819
+ import { IssueAttachmentsService } from "./services/issue-attachments-service";
820
+ import { IssueCommentPropertiesService } from "./services/issue-comment-properties-service";
821
+ import { IssueCommentsService } from "./services/issue-comments-service";
822
+ import { IssueCustomFieldConfigurationAppsService } from "./services/issue-custom-field-configuration-apps-service";
823
+ import { IssueCustomFieldContextsService } from "./services/issue-custom-field-contexts-service";
824
+ import { IssueCustomFieldOptionsAppsService } from "./services/issue-custom-field-options-apps-service";
825
+ import { IssueCustomFieldOptionsService } from "./services/issue-custom-field-options-service";
826
+ import { IssueCustomFieldValuesAppsService } from "./services/issue-custom-field-values-apps-service";
827
+ import { IssueFieldConfigurationsService } from "./services/issue-field-configurations-service";
828
+ import { IssueFieldsService } from "./services/issue-fields-service";
829
+ import { IssueLinkTypesService } from "./services/issue-link-types-service";
830
+ import { IssueLinksService } from "./services/issue-links-service";
831
+ import { IssueNavigatorSettingsService } from "./services/issue-navigator-settings-service";
832
+ import { IssueNotificationSchemesService } from "./services/issue-notification-schemes-service";
833
+ import { IssuePrioritiesService } from "./services/issue-priorities-service";
834
+ import { IssuePropertiesService } from "./services/issue-properties-service";
835
+ import { IssueRemoteLinksService } from "./services/issue-remote-links-service";
836
+ import { IssueResolutionsService } from "./services/issue-resolutions-service";
837
+ import { IssueSearchService } from "./services/issue-search-service";
838
+ import { IssueSecurityLevelService } from "./services/issue-security-level-service";
839
+ import { IssueSecuritySchemesService } from "./services/issue-security-schemes-service";
840
+ import { IssueTypePropertiesService } from "./services/issue-type-properties-service";
841
+ import { IssueTypeSchemesService } from "./services/issue-type-schemes-service";
842
+ import { IssueTypeScreenSchemesService } from "./services/issue-type-screen-schemes-service";
843
+ import { IssueTypesService } from "./services/issue-types-service";
844
+ import { IssueVotesService } from "./services/issue-votes-service";
845
+ import { IssueWatchersService } from "./services/issue-watchers-service";
846
+ import { IssueWorklogPropertiesService } from "./services/issue-worklog-properties-service";
847
+ import { IssueWorklogsService } from "./services/issue-worklogs-service";
848
+ import { IssuesService } from "./services/issues-service";
849
+ import { JiraExpressionsService } from "./services/jira-expressions-service";
850
+ import { JiraSettingsService } from "./services/jira-settings-service";
851
+ import { JqlFunctionsAppsService } from "./services/jql-functions-apps-service";
852
+ import { JqlService } from "./services/jql-service";
853
+ import { LabelsService } from "./services/labels-service";
854
+ import { LicenseMetricsService } from "./services/license-metrics-service";
855
+ import { MyselfService } from "./services/myself-service";
856
+ import { PermissionSchemesService } from "./services/permission-schemes-service";
857
+ import { PermissionsService } from "./services/permissions-service";
858
+ import { PrioritySchemesService } from "./services/priority-schemes-service";
859
+ import { ProjectAvatarsService } from "./services/project-avatars-service";
860
+ import { ProjectCategoriesService } from "./services/project-categories-service";
861
+ import { ProjectClassificationLevelsService } from "./services/project-classification-levels-service";
862
+ import { ProjectComponentsService } from "./services/project-components-service";
863
+ import { ProjectEmailService } from "./services/project-email-service";
864
+ import { ProjectFeaturesService } from "./services/project-features-service";
865
+ import { ProjectKeyAndNameValidationService } from "./services/project-key-and-name-validation-service";
866
+ import { ProjectPermissionSchemesService } from "./services/project-permission-schemes-service";
867
+ import { ProjectPropertiesService } from "./services/project-properties-service";
868
+ import { ProjectRoleActorsService } from "./services/project-role-actors-service";
869
+ import { ProjectRolesService } from "./services/project-roles-service";
870
+ import { ProjectTypesService } from "./services/project-types-service";
871
+ import { ProjectVersionsService } from "./services/project-versions-service";
872
+ import { ProjectsService } from "./services/projects-service";
873
+ import { ScreenSchemesService } from "./services/screen-schemes-service";
874
+ import { ScreenTabFieldsService } from "./services/screen-tab-fields-service";
875
+ import { ScreenTabsService } from "./services/screen-tabs-service";
876
+ import { ScreensService } from "./services/screens-service";
877
+ import { ServerInfoService } from "./services/server-info-service";
878
+ import { ServiceRegistryService } from "./services/service-registry-service";
879
+ import { StatusService } from "./services/status-service";
880
+ import { TasksService } from "./services/tasks-service";
881
+ import { TimeTrackingService } from "./services/time-tracking-service";
882
+ import { UiModificationsAppsService } from "./services/ui-modifications-apps-service";
883
+ import { UserPropertiesService } from "./services/user-properties-service";
884
+ import { UserSearchService } from "./services/user-search-service";
885
+ import { UsersService } from "./services/users-service";
886
+ import { WebhooksService } from "./services/webhooks-service";
887
+ import { WorkflowSchemeDraftsService } from "./services/workflow-scheme-drafts-service";
888
+ import { WorkflowSchemeProjectAssociationsService } from "./services/workflow-scheme-project-associations-service";
889
+ import { WorkflowSchemesService } from "./services/workflow-schemes-service";
890
+ import { WorkflowStatusCategoriesService } from "./services/workflow-status-categories-service";
891
+ import { WorkflowStatusesService } from "./services/workflow-statuses-service";
892
+ import { WorkflowTransitionPropertiesService } from "./services/workflow-transition-properties-service";
893
+ import { WorkflowTransitionRulesService } from "./services/workflow-transition-rules-service";
894
+ import { WorkflowsService } from "./services/workflows-service";
895
+ import { validationSchemaStorage } from "./validation-schema-storage";
896
+ export type BaseJiraPlatformApiClientOptions =
897
+ Partial<commonHttpClient.CommonHttpClientOptions>;
898
+ export class BaseJiraPlatformApiClientError extends commonHttpClient.CommonHttpClientError {
899
+ name = "BaseJiraPlatformApiClientError";
900
+ }
901
+ /**
902
+ * The Jira Cloud platform REST API
903
+ *
904
+ * Jira Cloud platform REST API documentation
905
+ *
906
+ * @version 1001.0.0-SNAPSHOT-a295e7484152fa2365a7ce8735dc664cc7adfec0
907
+ */
908
+ export class BaseJiraPlatformApiClient extends CommonHttpService {
909
+ client = new commonHttpClient.CommonHttpClient({
910
+ baseUrl: "https://your-domain.atlassian.net",
911
+ binaryResponseType: "blob",
912
+ errorClass: BaseJiraPlatformApiClientError,
913
+ });
914
+ getClient = () => this.client;
915
+ /**
916
+ * This resource represents an announcement banner. Use it to retrieve and update
917
+ * banner configuration.
918
+ */
919
+ announcementBanner = new AnnouncementBannerService(this.getClient);
920
+ /** This resource represents app access rule data policies. */
921
+ appDataPolicies = new AppDataPoliciesService(this.getClient);
922
+ /**
923
+ * This resource represents application roles. Use it to get details of an
924
+ * application role or all application roles.
925
+ */
926
+ applicationRoles = new ApplicationRolesService(this.getClient);
927
+ /**
928
+ * This resource supports [app
929
+ * migrations](https://developer.atlassian.com/platform/app-migration/). Use it to:
930
+ * - [to request migrated workflow rules
931
+ * details](https://developer.atlassian.com/platform/app-migration/tutorials/migration-app-workflow-rules/).
932
+ * - [perform bulk updates of entity
933
+ * properties](https://developer.atlassian.com/platform/app-migration/tutorials/entity-properties-bulk-api/).
934
+ * - [perform bulk updates of issue custom field
935
+ * values](https://developer.atlassian.com/platform/app-migration/tutorials/migrating-app-custom-fields/).
936
+ */
937
+ appMigration = new AppMigrationService(this.getClient);
938
+ /**
939
+ * This resource represents app properties. Use it to store arbitrary data for your
940
+ * [Connect
941
+ * app](https://developer.atlassian.com/cloud/jira/platform/index/#connect-apps).
942
+ */
943
+ appProperties = new AppPropertiesService(this.getClient);
944
+ /**
945
+ * This resource represents audits that record activities undertaken in Jira. Use
946
+ * it to get a list of audit records.
947
+ */
948
+ auditRecords = new AuditRecordsService(this.getClient);
949
+ /**
950
+ * This resource represents system and custom avatars. Use it to obtain the
951
+ * details of system or custom avatars, add and remove avatars from a project or
952
+ * issue type, and obtain avatar images.
953
+ */
954
+ avatars = new AvatarsService(this.getClient);
955
+ /** This resource represents classification levels. */
956
+ classificationLevels = new ClassificationLevelsService(this.getClient);
957
+ /**
958
+ * This resource represents dashboards. Use it to obtain the details of dashboards
959
+ * as well as get, create, update, or remove item properties and gadgets from
960
+ * dashboards.
961
+ */
962
+ dashboards = new DashboardsService(this.getClient);
963
+ /**
964
+ * This resource represents [modules registered
965
+ * dynamically](https://developer.atlassian.com/cloud/jira/platform/dynamic-modules/)
966
+ * by [Connect
967
+ * apps](https://developer.atlassian.com/cloud/jira/platform/index/#connect-apps).
968
+ */
969
+ dynamicModules = new DynamicModulesService(this.getClient);
970
+ /**
971
+ * This resource represents options for sharing [filters](#api-group-Filters). Use
972
+ * it to get share scopes as well as add and remove share scopes from filters.
973
+ */
974
+ filterSharing = new FilterSharingService(this.getClient);
975
+ /**
976
+ * This resource represents [filters](https://confluence.atlassian.com/x/eQiiLQ).
977
+ * Use it to get, create, update, or delete filters. Also use it to configure the
978
+ * columns for a filter and set favorite filters.
979
+ */
980
+ filters = new FiltersService(this.getClient);
981
+ /**
982
+ * This resource represents a list of users and a list of groups. Use it to obtain
983
+ * the details to populate user and group picker suggestions list.
984
+ */
985
+ groupAndUserPicker = new GroupAndUserPickerService(this.getClient);
986
+ /**
987
+ * This resource represents groups of users. Use it to get, create, find, and
988
+ * delete groups as well as add and remove users from groups. (\[WARNING\] The
989
+ * standard Atlassian group names are default names only and can be edited or
990
+ * deleted. For example, an admin or Atlassian support could delete the default
991
+ * group jira-software-users or rename it to jsw-users at any point. See
992
+ * https://support.atlassian.com/user-management/docs/create-and-update-groups/
993
+ * for details.)
994
+ */
995
+ groups = new GroupsService(this.getClient);
996
+ /**
997
+ * This resource represents issue attachments and the attachment settings for
998
+ * Jira. Use it to get the metadata for an attachment, delete an attachment, and
999
+ * view the metadata for the contents of an attachment. Also, use it to get the
1000
+ * attachment settings for Jira.
1001
+ */
1002
+ issueAttachments = new IssueAttachmentsService(this.getClient);
1003
+ /**
1004
+ * This resource represents [issue comment](#api-group-Issue-comments) properties,
1005
+ * which provides for storing custom data against an issue comment. Use is to get,
1006
+ * set, and delete issue comment properties as well as obtain the keys of all
1007
+ * properties on a comment. Comment properties are a type of [entity
1008
+ * property](https://developer.atlassian.com/cloud/jira/platform/jira-entity-properties/).
1009
+ */
1010
+ issueCommentProperties = new IssueCommentPropertiesService(this.getClient);
1011
+ /**
1012
+ * This resource represents issue comments. Use it to:
1013
+ *
1014
+ * * get, create, update, and delete a comment from an issue.
1015
+ * * get all comments from issue.
1016
+ * * get a list of comments by comment ID.
1017
+ */
1018
+ issueComments = new IssueCommentsService(this.getClient);
1019
+ /**
1020
+ * This resource represents configurations stored against a custom field context
1021
+ * by a [Forge app](https://developer.atlassian.com/platform/forge/).
1022
+ * Configurations are information used by the Forge app at runtime to determine
1023
+ * how to handle or process the data in a custom field in a given context. Use
1024
+ * this resource to set and read configurations.
1025
+ */
1026
+ issueCustomFieldConfigurationApps =
1027
+ new IssueCustomFieldConfigurationAppsService(this.getClient);
1028
+ /**
1029
+ * This resource represents issue custom field contexts. Use it to:
1030
+ *
1031
+ * * get, create, update, and delete custom field contexts.
1032
+ * * get context to issue types and projects mappings.
1033
+ * * get custom field contexts for projects and issue types.
1034
+ * * assign custom field contexts to projects.
1035
+ * * remove custom field contexts from projects.
1036
+ * * add issue types to custom field contexts.
1037
+ */
1038
+ issueCustomFieldContexts = new IssueCustomFieldContextsService(
1039
+ this.getClient,
1040
+ );
1041
+ /**
1042
+ * This resource represents custom issue field select list options created by a
1043
+ * Connect app. See [Issue custom field
1044
+ * options](#api-group-Issue-custom-field-options) to manipulate options created
1045
+ * in Jira or using the REST API.
1046
+ *
1047
+ * A select list issue field is a type of [issue
1048
+ * field](https://developer.atlassian.com/cloud/jira/platform/modules/issue-field/)
1049
+ * that enables a user to select an option from a list. Use it to add, remove, and
1050
+ * update the options of a select list issue field.
1051
+ */
1052
+ issueCustomFieldOptionsApps = new IssueCustomFieldOptionsAppsService(
1053
+ this.getClient,
1054
+ );
1055
+ /**
1056
+ * This resource represents custom issue field select list options created in Jira
1057
+ * or using the REST API. This resource supports the following field types:
1058
+ *
1059
+ * * Checkboxes.
1060
+ * * Radio Buttons.
1061
+ * * Select List (single choice).
1062
+ * * Select List (multiple choices).
1063
+ * * Select List (cascading).
1064
+ *
1065
+ * See [Issue custom field options
1066
+ * (apps)](#api-group-Issue-custom-field-options--apps-) to manipulate custom
1067
+ * issue field select list options created by a Connect app.
1068
+ *
1069
+ * Use it to retrieve, create, update, order, and delete custom field options.
1070
+ */
1071
+ issueCustomFieldOptions = new IssueCustomFieldOptionsService(this.getClient);
1072
+ /**
1073
+ * This resource represents the values of custom fields added by [Forge
1074
+ * apps](https://developer.atlassian.com/platform/forge/). Use it to update the
1075
+ * value of a custom field on issues.
1076
+ */
1077
+ issueCustomFieldValuesApps = new IssueCustomFieldValuesAppsService(
1078
+ this.getClient,
1079
+ );
1080
+ /**
1081
+ * This resource represents issue field configurations. Use it to get, set, and
1082
+ * delete field configurations and field configuration schemes.
1083
+ */
1084
+ issueFieldConfigurations = new IssueFieldConfigurationsService(
1085
+ this.getClient,
1086
+ );
1087
+ /**
1088
+ * This resource represents issue fields, both system and custom fields. Use it to
1089
+ * get fields, field configurations, and create custom fields.
1090
+ */
1091
+ issueFields = new IssueFieldsService(this.getClient);
1092
+ /**
1093
+ * This resource represents links between issues. Use it to get, create, and
1094
+ * delete links between issues.
1095
+ *
1096
+ * To use it, the site must have [issue
1097
+ * linking](https://confluence.atlassian.com/x/yoXKM) enabled.
1098
+ */
1099
+ issueLinks = new IssueLinksService(this.getClient);
1100
+ /**
1101
+ * This resource represents [issue link](#api-group-Issue-links) types. Use it to
1102
+ * get, create, update, and delete link issue types as well as get lists of all
1103
+ * link issue types.
1104
+ *
1105
+ * To use it, the site must have [issue
1106
+ * linking](https://confluence.atlassian.com/x/yoXKM) enabled.
1107
+ */
1108
+ issueLinkTypes = new IssueLinkTypesService(this.getClient);
1109
+ /**
1110
+ * This resource represents issue navigator settings. Use it to get and set issue
1111
+ * navigator default columns.
1112
+ */
1113
+ issueNavigatorSettings = new IssueNavigatorSettingsService(this.getClient);
1114
+ /**
1115
+ * This resource represents notification schemes, lists of events and the
1116
+ * recipients who will receive notifications for those events. Use it to get
1117
+ * details of a notification scheme and a list of notification schemes.
1118
+ *
1119
+ * ### About notification schemes ###
1120
+ *
1121
+ * A notification scheme is a list of events and recipients who will receive
1122
+ * notifications for those events. The list is contained within the
1123
+ * `notificationSchemeEvents` object and contains pairs of `events` and
1124
+ * `notifications`:
1125
+ *
1126
+ * * `event` Identifies the type of event. The events can be [Jira system
1127
+ * events](https://support.atlassian.com/jira-cloud-administration/docs/configure-notification-schemes/)
1128
+ * (see the *Events* section) or [custom
1129
+ * events](https://support.atlassian.com/jira-cloud-administration/docs/add-a-custom-event/).
1130
+ * * `notifications` Identifies the
1131
+ * [recipients](https://confluence.atlassian.com/x/8YdKLg#Creatinganotificationscheme-recipientsRecipients)
1132
+ * of notifications for each event. Recipients can be any of the following types:
1133
+ *
1134
+ * * `CurrentAssignee`
1135
+ * * `Reporter`
1136
+ * * `CurrentUser`
1137
+ * * `ProjectLead`
1138
+ * * `ComponentLead`
1139
+ * * `User` (the `parameter` is the user key)
1140
+ * * `Group` (the `parameter` is the group name)
1141
+ * * `ProjectRole` (the `parameter` is the project role ID)
1142
+ * * `EmailAddress` *(deprecated)*
1143
+ * * `AllWatchers`
1144
+ * * `UserCustomField` (the `parameter` is the ID of the custom field)
1145
+ * * `GroupCustomField`(the `parameter` is the ID of the custom field)
1146
+ */
1147
+ issueNotificationSchemes = new IssueNotificationSchemesService(
1148
+ this.getClient,
1149
+ );
1150
+ /**
1151
+ * This resource represents issue priorities. Use it to get, create and update
1152
+ * issue priorities and details for individual issue priorities.
1153
+ */
1154
+ issuePriorities = new IssuePrioritiesService(this.getClient);
1155
+ /**
1156
+ * This resource represents [issue](#api-group-Issues) properties, which provides
1157
+ * for storing custom data against an issue. Use it to get, set, and delete issue
1158
+ * properties as well as obtain details of all properties on an issue. Operations
1159
+ * to bulk update and delete issue properties are also provided. Issue properties
1160
+ * are a type of [entity
1161
+ * property](https://developer.atlassian.com/cloud/jira/platform/jira-entity-properties/).
1162
+ */
1163
+ issueProperties = new IssuePropertiesService(this.getClient);
1164
+ /**
1165
+ * This resource represents remote issue links, a way of linking Jira to
1166
+ * information in other systems. Use it to get, create, update, and delete remote
1167
+ * issue links either by ID or global ID. The global ID provides a way of
1168
+ * accessing remote issue links using information about the item's remote system
1169
+ * host and remote system identifier.
1170
+ */
1171
+ issueRemoteLinks = new IssueRemoteLinksService(this.getClient);
1172
+ /**
1173
+ * This resource represents issue resolution values. Use it to obtain a list of
1174
+ * all issue resolution values and the details of individual resolution values.
1175
+ */
1176
+ issueResolutions = new IssueResolutionsService(this.getClient);
1177
+ /**
1178
+ * This resource represents various ways to search for issues. Use it to search
1179
+ * for issues with a JQL query and find issues to populate an issue picker.
1180
+ */
1181
+ issueSearch = new IssueSearchService(this.getClient);
1182
+ /**
1183
+ * This resource represents issue security levels. Use it to obtain the details of
1184
+ * any issue security level. For more information about issue security levels, see
1185
+ * [Configuring issue-level security](https://confluence.atlassian.com/x/J4lKLg).
1186
+ */
1187
+ issueSecurityLevel = new IssueSecurityLevelService(this.getClient);
1188
+ /**
1189
+ * This resource represents issue security schemes. Use it to get an issue
1190
+ * security scheme or a list of issue security schemes.
1191
+ *
1192
+ * Issue security schemes control which users or groups of users can view an
1193
+ * issue. When an issue security scheme is associated with a project, its security
1194
+ * levels can be applied to issues in that project. Sub-tasks also inherit the
1195
+ * security level of their parent issue.
1196
+ */
1197
+ issueSecuritySchemes = new IssueSecuritySchemesService(this.getClient);
1198
+ /**
1199
+ * This resource represents Jira issues. Use it to:
1200
+ *
1201
+ * * create or edit issues, individually or in bulk.
1202
+ * * retrieve metadata about the options for creating or editing issues.
1203
+ * * delete an issue.
1204
+ * * assign a user to an issue.
1205
+ * * get issue changelogs.
1206
+ * * send notifications about an issue.
1207
+ * * get details of the transitions available for an issue.
1208
+ * * transition an issue.
1209
+ * * Archive issues.
1210
+ * * Unarchive issues.
1211
+ * * Export archived issues.
1212
+ */
1213
+ issues = new IssuesService(this.getClient);
1214
+ /**
1215
+ * This resource represents [issue type](#api-group-Issue-types) properties, which
1216
+ * provides for storing custom data against an issue type. Use it to get, create,
1217
+ * and delete issue type properties as well as obtain the keys of all properties
1218
+ * on a issues type. Issue type properties are a type of [entity
1219
+ * property](https://developer.atlassian.com/cloud/jira/platform/jira-entity-properties/).
1220
+ */
1221
+ issueTypeProperties = new IssueTypePropertiesService(this.getClient);
1222
+ /**
1223
+ * This resource represents issue type schemes in classic projects. Use it to:
1224
+ *
1225
+ * * get issue type schemes and a list of the projects that use them.
1226
+ * * associate issue type schemes with projects.
1227
+ * * add issue types to issue type schemes.
1228
+ * * delete issue types from issue type schemes.
1229
+ * * create, update, and delete issue type schemes.
1230
+ * * change the order of issue types in issue type schemes.
1231
+ */
1232
+ issueTypeSchemes = new IssueTypeSchemesService(this.getClient);
1233
+ /**
1234
+ * This resource represents issue type screen schemes. Use it to:
1235
+ *
1236
+ * * get issue type screen schemes and a list of the projects that use them.
1237
+ * * create issue type screen schemes.
1238
+ * * update issue type screen schemes.
1239
+ * * delete issue type screen schemes.
1240
+ * * associate issue type screen schemes with projects.
1241
+ * * append issue type to screen scheme mappings to issue type screen schemes.
1242
+ * * remove issue type to screen scheme mappings from issue type screen schemes.
1243
+ * * update default screen scheme of issue type screen scheme.
1244
+ */
1245
+ issueTypeScreenSchemes = new IssueTypeScreenSchemesService(this.getClient);
1246
+ /**
1247
+ * This resource represents issues types. Use it to:
1248
+ *
1249
+ * * get, create, update, and delete issue types.
1250
+ * * get all issue types for a user.
1251
+ * * get alternative issue types.
1252
+ * * set an avatar for an issue type.
1253
+ */
1254
+ issueTypes = new IssueTypesService(this.getClient);
1255
+ /**
1256
+ * This resource represents votes cast by users on an issue. Use it to get details
1257
+ * of votes on an issue as well as cast and withdrawal votes.
1258
+ */
1259
+ issueVotes = new IssueVotesService(this.getClient);
1260
+ /**
1261
+ * This resource represents users watching an issue. Use it to get details of
1262
+ * users watching an issue as well as start and stop a user watching an issue.
1263
+ */
1264
+ issueWatchers = new IssueWatchersService(this.getClient);
1265
+ /**
1266
+ * This resource represents [issue worklog](#api-group-Issue-worklogs) properties,
1267
+ * which provides for storing custom data against an issue worklog. Use it to get,
1268
+ * create, and delete issue worklog properties as well as obtain the keys of all
1269
+ * properties on a issue worklog. Issue worklog properties are a type of [entity
1270
+ * property](https://developer.atlassian.com/cloud/jira/platform/jira-entity-properties/).
1271
+ */
1272
+ issueWorklogProperties = new IssueWorklogPropertiesService(this.getClient);
1273
+ /**
1274
+ * This resource represents issue worklogs. Use it to:
1275
+ *
1276
+ * * get, create, update, and delete worklogs.
1277
+ * * obtain lists of updated or deleted worklogs.
1278
+ */
1279
+ issueWorklogs = new IssueWorklogsService(this.getClient);
1280
+ /**
1281
+ * This resource is a collection of operations for [Jira
1282
+ * expressions](https://developer.atlassian.com/cloud/jira/platform/jira-expressions/).
1283
+ */
1284
+ jiraExpressions = new JiraExpressionsService(this.getClient);
1285
+ /**
1286
+ * This resource represents various settings in Jira. Use it to get and update
1287
+ * Jira settings and properties.
1288
+ */
1289
+ jiraSettings = new JiraSettingsService(this.getClient);
1290
+ /**
1291
+ * This resource represents JQL function's precomputations. Precomputation is a
1292
+ * mapping between custom function call and JQL fragment returned by this
1293
+ * function. Use it to get and update precomputations.
1294
+ */
1295
+ jqlFunctionsApps = new JqlFunctionsAppsService(this.getClient);
1296
+ /**
1297
+ * This resource represents JQL search auto-complete details. Use it to obtain JQL
1298
+ * search auto-complete data and suggestions for use in programmatic construction
1299
+ * of queries or custom query builders. It also provides operations to:
1300
+ *
1301
+ * * convert one or more JQL queries with user identifiers (username or user
1302
+ * key) to equivalent JQL queries with account IDs.
1303
+ * * convert readable details in one or more JQL queries to IDs where a user
1304
+ * doesn't have permission to view the entity whose details are readable.
1305
+ */
1306
+ jql = new JqlService(this.getClient);
1307
+ /**
1308
+ * This resource represents available labels. Use it to get available labels for
1309
+ * the global label field.
1310
+ */
1311
+ labels = new LabelsService(this.getClient);
1312
+ /**
1313
+ * This resource represents license metrics. Use it to get available metrics for
1314
+ * Jira licences.
1315
+ */
1316
+ licenseMetrics = new LicenseMetricsService(this.getClient);
1317
+ /**
1318
+ * This resource represents information about the current user, such as basic
1319
+ * details, group membership, application roles, preferences, and locale. Use it
1320
+ * to get, create, update, and delete (restore default) values of the user's
1321
+ * preferences and locale.
1322
+ */
1323
+ myself = new MyselfService(this.getClient);
1324
+ /**
1325
+ * This resource represents permission schemes. Use it to get, create, update, and
1326
+ * delete permission schemes as well as get, create, update, and delete details of
1327
+ * the permissions granted in those schemes.
1328
+ */
1329
+ permissionSchemes = new PermissionSchemesService(this.getClient);
1330
+ /**
1331
+ * This resource represents permissions. Use it to obtain details of all
1332
+ * permissions and determine whether the user has certain permissions.
1333
+ */
1334
+ permissions = new PermissionsService(this.getClient);
1335
+ /**
1336
+ * This resource represents issue priority schemes. Use it to get priority schemes
1337
+ * and related information, and to create, update and delete priority schemes.
1338
+ */
1339
+ prioritySchemes = new PrioritySchemesService(this.getClient);
1340
+ /**
1341
+ * This resource represents avatars associated with a project. Use it to get,
1342
+ * load, set, and remove project avatars.
1343
+ */
1344
+ projectAvatars = new ProjectAvatarsService(this.getClient);
1345
+ /**
1346
+ * This resource represents project categories. Use it to create, update, and
1347
+ * delete project categories as well as obtain a list of all project categories
1348
+ * and details of individual categories. For more information on managing project
1349
+ * categories, see [Adding, assigning, and deleting project
1350
+ * categories](https://confluence.atlassian.com/x/-A5WMg).
1351
+ */
1352
+ projectCategories = new ProjectCategoriesService(this.getClient);
1353
+ /**
1354
+ * This resource represents classification levels used in a project. Use it to
1355
+ * view and manage classification levels in your projects.
1356
+ */
1357
+ projectClassificationLevels = new ProjectClassificationLevelsService(
1358
+ this.getClient,
1359
+ );
1360
+ /**
1361
+ * This resource represents project components. Use it to get, create, update, and
1362
+ * delete project components. Also get components for project and get a count of
1363
+ * issues by component.
1364
+ */
1365
+ projectComponents = new ProjectComponentsService(this.getClient);
1366
+ /**
1367
+ * This resource represents the email address used to send a project's
1368
+ * notifications. Use it to get and set the [project's sender email
1369
+ * address](https://confluence.atlassian.com/x/dolKLg).
1370
+ */
1371
+ projectEmail = new ProjectEmailService(this.getClient);
1372
+ /**
1373
+ * This resource represents project features. Use it to get the list of features
1374
+ * for a project and modify the state of a feature. The project feature endpoint
1375
+ * is available only for Jira Software, both for team- and company-managed
1376
+ * projects.
1377
+ */
1378
+ projectFeatures = new ProjectFeaturesService(this.getClient);
1379
+ /** This resource provides validation for project keys and names. */
1380
+ projectKeyAndNameValidation = new ProjectKeyAndNameValidationService(
1381
+ this.getClient,
1382
+ );
1383
+ /**
1384
+ * This resource represents permission schemes for a project. Use this resource to:
1385
+ *
1386
+ * * get details of a project's issue security levels available to the calling
1387
+ * user.
1388
+ * * get the permission scheme associated with the project or assign different
1389
+ * permission scheme to the project.
1390
+ * * get details of a project's issue security scheme.
1391
+ *
1392
+ * See [Managing project permissions](https://confluence.atlassian.com/x/yodKLg)
1393
+ * for more information about permission schemes.
1394
+ */
1395
+ projectPermissionSchemes = new ProjectPermissionSchemesService(
1396
+ this.getClient,
1397
+ );
1398
+ /**
1399
+ * This resource represents [project](#api-group-Projects) properties, which
1400
+ * provides for storing custom data against a project. Use it to get, create, and
1401
+ * delete project properties as well as get a list of property keys for a project.
1402
+ * Project properties are a type of [entity
1403
+ * property](https://developer.atlassian.com/cloud/jira/platform/jira-entity-properties/).
1404
+ */
1405
+ projectProperties = new ProjectPropertiesService(this.getClient);
1406
+ /**
1407
+ * This resource represents the users assigned to [project
1408
+ * roles](#api-group-Issue-comments). Use it to get, add, and remove default users
1409
+ * from project roles. Also use it to add and remove users from a project role
1410
+ * associated with a project.
1411
+ */
1412
+ projectRoleActors = new ProjectRoleActorsService(this.getClient);
1413
+ /**
1414
+ * This resource represents the roles that users can play in projects. Use this
1415
+ * resource to get, create, update, and delete project roles.
1416
+ */
1417
+ projectRoles = new ProjectRolesService(this.getClient);
1418
+ /**
1419
+ * This resource represents projects. Use it to get, create, update, and delete
1420
+ * projects. Also get statuses available to a project, a project's notification
1421
+ * schemes, and update a project's type.
1422
+ */
1423
+ projects = new ProjectsService(this.getClient);
1424
+ /**
1425
+ * This resource represents project types. Use it to obtain a list of all project
1426
+ * types, a list of project types accessible to the calling user, and details of a
1427
+ * project type.
1428
+ */
1429
+ projectTypes = new ProjectTypesService(this.getClient);
1430
+ /**
1431
+ * This resource represents project versions. Use it to get, get lists of, create,
1432
+ * update, move, merge, and delete project versions. This resource also provides
1433
+ * counts of issues by version.
1434
+ */
1435
+ projectVersions = new ProjectVersionsService(this.getClient);
1436
+ /**
1437
+ * This resource represents screen schemes in classic projects. Use it to get,
1438
+ * create, update, and delete screen schemes.
1439
+ */
1440
+ screenSchemes = new ScreenSchemesService(this.getClient);
1441
+ /**
1442
+ * This resource represents the screens used to record issue details. Use it to:
1443
+ *
1444
+ * * get details of all screens.
1445
+ * * get details of all the fields available for use on screens.
1446
+ * * create screens.
1447
+ * * delete screens.
1448
+ * * update screens.
1449
+ * * add a field to the default screen.
1450
+ */
1451
+ screens = new ScreensService(this.getClient);
1452
+ /**
1453
+ * This resource represents the screen tab fields used to record issue details.
1454
+ * Use it to get, add, move, and remove fields from screen tabs.
1455
+ */
1456
+ screenTabFields = new ScreenTabFieldsService(this.getClient);
1457
+ /**
1458
+ * This resource represents the screen tabs used to record issue details. Use it
1459
+ * to get, create, update, move, and delete screen tabs.
1460
+ */
1461
+ screenTabs = new ScreenTabsService(this.getClient);
1462
+ /** This resource provides information about the Jira instance. */
1463
+ serverInfo = new ServerInfoService(this.getClient);
1464
+ /**
1465
+ * This resource represents a service registry. Use it to retrieve attributes
1466
+ * related to a [service
1467
+ * registry](https://support.atlassian.com/jira-service-management-cloud/docs/what-is-services/)
1468
+ * in JSM.
1469
+ */
1470
+ serviceRegistry = new ServiceRegistryService(this.getClient);
1471
+ /**
1472
+ * This resource represents statuses. Use it to search, get, create, delete, and
1473
+ * change statuses.
1474
+ */
1475
+ status = new StatusService(this.getClient);
1476
+ /**
1477
+ * This resource represents a [long-running asynchronous
1478
+ * tasks](#async-operations). Use it to obtain details about the progress of a
1479
+ * long-running task or cancel a long-running task.
1480
+ */
1481
+ tasks = new TasksService(this.getClient);
1482
+ /**
1483
+ * This resource represents time tracking and time tracking providers. Use it to
1484
+ * get and set the time tracking provider, get and set the time tracking options,
1485
+ * and disable time tracking.
1486
+ */
1487
+ timeTracking = new TimeTrackingService(this.getClient);
1488
+ /**
1489
+ * UI modifications is a feature available for **Forge apps only**. It enables
1490
+ * Forge apps to control how selected Jira fields behave on the following views:
1491
+ * global issue create, issue view. For example: hide specific fields, set them as
1492
+ * required, etc.
1493
+ */
1494
+ uiModificationsApps = new UiModificationsAppsService(this.getClient);
1495
+ /**
1496
+ * This resource represents [user](#api-group-Users) properties and provides for
1497
+ * storing custom data against a user. Use it to get, create, and delete user
1498
+ * properties as well as get a list of property keys for a user. This resourse is
1499
+ * designed for integrations and apps to store per-user data and settings. This
1500
+ * enables data used to customized the user experience to be kept in the Jira
1501
+ * Cloud instance's database. User properties are a type of [entity
1502
+ * property](https://developer.atlassian.com/cloud/jira/platform/jira-entity-properties/).
1503
+ *
1504
+ * This resource does not access the [user
1505
+ * properties](https://confluence.atlassian.com/x/8YxjL) created and maintained in
1506
+ * Jira.
1507
+ */
1508
+ userProperties = new UserPropertiesService(this.getClient);
1509
+ /**
1510
+ * This resource represents various ways to search for and find users. Use it to
1511
+ * obtain list of users including users assignable to projects and issues, users
1512
+ * with permissions, user lists for pickup fields, and user lists generated using
1513
+ * structured queries. Note that the operations in this resource only return users
1514
+ * found within the first 1000 users.
1515
+ */
1516
+ userSearch = new UserSearchService(this.getClient);
1517
+ /**
1518
+ * This resource represent users. Use it to:
1519
+ *
1520
+ * * get, get a list of, create, and delete users.
1521
+ * * get, set, and reset a user's default issue table columns.
1522
+ * * get a list of the groups the user belongs to.
1523
+ * * get a list of user account IDs for a list of usernames or user keys.
1524
+ */
1525
+ users = new UsersService(this.getClient);
1526
+ /**
1527
+ * This resource represents webhooks. Webhooks are calls sent to a URL when an
1528
+ * event occurs in Jira for issues specified by a JQL query. Only Connect and
1529
+ * OAuth 2.0 apps can register and manage webhooks. For more information, see
1530
+ * [Webhooks](https://developer.atlassian.com/cloud/jira/platform/webhooks/#registering-a-webhook-via-the-jira-rest-api-for-connect-apps).
1531
+ */
1532
+ webhooks = new WebhooksService(this.getClient);
1533
+ /**
1534
+ * This resource represents draft workflow schemes. Use it to manage drafts of
1535
+ * workflow schemes.
1536
+ *
1537
+ * A workflow scheme maps issue types to workflows. A workflow scheme can be
1538
+ * associated with one or more projects, which enables the projects to use the
1539
+ * workflow-issue type mappings.
1540
+ *
1541
+ * Active workflow schemes (workflow schemes that are used by projects) cannot be
1542
+ * edited. Editing an active workflow scheme creates a draft copy of the scheme.
1543
+ * The draft workflow scheme can then be edited and published (replacing the
1544
+ * active scheme).
1545
+ *
1546
+ * See [Configuring workflow schemes](https://confluence.atlassian.com/x/tohKLg)
1547
+ * for more information.
1548
+ */
1549
+ workflowSchemeDrafts = new WorkflowSchemeDraftsService(this.getClient);
1550
+ /**
1551
+ * This resource represents the associations between workflow schemes and projects.
1552
+ *
1553
+ * For more information, see [Managing your
1554
+ * workflows](https://confluence.atlassian.com/x/q4hKLg).
1555
+ */
1556
+ workflowSchemeProjectAssociations =
1557
+ new WorkflowSchemeProjectAssociationsService(this.getClient);
1558
+ /**
1559
+ * This resource represents workflow schemes. Use it to manage workflow schemes
1560
+ * and the workflow scheme's workflows and issue types.
1561
+ *
1562
+ * A workflow scheme maps issue types to workflows. A workflow scheme can be
1563
+ * associated with one or more projects, which enables the projects to use the
1564
+ * workflow-issue type mappings.
1565
+ *
1566
+ * Active workflow schemes (workflow schemes that are used by projects) cannot be
1567
+ * edited. When an active workflow scheme is edited, a draft copy of the scheme is
1568
+ * created. The draft workflow scheme is then be edited and published (replacing
1569
+ * the active scheme).
1570
+ *
1571
+ * See [Configuring workflow schemes](https://confluence.atlassian.com/x/tohKLg)
1572
+ * for more information.
1573
+ */
1574
+ workflowSchemes = new WorkflowSchemesService(this.getClient);
1575
+ /**
1576
+ * This resource represents workflows. Use it to:
1577
+ *
1578
+ * * Get workflows
1579
+ * * Create workflows
1580
+ * * Update workflows
1581
+ * * Delete inactive workflows
1582
+ * * Get workflow capabilities
1583
+ */
1584
+ workflows = new WorkflowsService(this.getClient);
1585
+ /**
1586
+ * This resource represents status categories. Use it to obtain a list of all
1587
+ * status categories and the details of a category. Status categories provided a
1588
+ * mechanism for categorizing [statuses](#api-group-Workflow-statuses).
1589
+ */
1590
+ workflowStatusCategories = new WorkflowStatusCategoriesService(
1591
+ this.getClient,
1592
+ );
1593
+ /**
1594
+ * This resource represents issue workflow statuses. Use it to obtain a list of
1595
+ * all statuses associated with workflows and the details of a status.
1596
+ */
1597
+ workflowStatuses = new WorkflowStatusesService(this.getClient);
1598
+ /**
1599
+ * This resource represents workflow transition properties, which provides for
1600
+ * storing custom data against a workflow transition. Use it to get, create, and
1601
+ * delete workflow transition properties as well as get a list of property keys
1602
+ * for a workflow transition. Workflow transition properties are a type of [entity
1603
+ * property](https://developer.atlassian.com/cloud/jira/platform/jira-entity-properties/).
1604
+ */
1605
+ workflowTransitionProperties = new WorkflowTransitionPropertiesService(
1606
+ this.getClient,
1607
+ );
1608
+ /**
1609
+ * This resource represents workflow transition rules. Workflow transition rules
1610
+ * define a Connect or a Forge app routine, such as a [workflow post
1611
+ * functions](https://developer.atlassian.com/cloud/jira/platform/modules/workflow-post-function/)
1612
+ * that is executed in association with the workflow. Use it to read and modify
1613
+ * configuration of workflow transition rules.
1614
+ */
1615
+ workflowTransitionRules = new WorkflowTransitionRulesService(this.getClient);
1616
+ constructor(options?: BaseJiraPlatformApiClientOptions) {
1617
+ super(() => this.client);
1618
+ this.client.setOptions({
1619
+ ...this.client.getOptions(),
1620
+ ...options,
1621
+ });
1622
+ }
1623
+ static createClientWithServices = commonHttpClient.createClientWithServices;
1624
+ }
1625
+ validationSchemaStorage.setErrorClass(BaseJiraPlatformApiClientError);
1626
+ export type {
1627
+ ActorInputBean,
1628
+ ActorsMap,
1629
+ ProjectRoleActorsUpdateBean,
1630
+ AddFieldBean,
1631
+ MoveFieldBean,
1632
+ AddGroupBean,
1633
+ FoundGroup,
1634
+ Group,
1635
+ GroupDetails,
1636
+ GroupLabel,
1637
+ PageBeanGroupDetails,
1638
+ PageBeanUserDetails,
1639
+ PagedListUserDetailsApplicationUser,
1640
+ UpdateUserToGroupBean,
1641
+ AddNotificationsDetails,
1642
+ CreateNotificationSchemeDetails,
1643
+ EventNotification,
1644
+ NotificationEvent,
1645
+ NotificationSchemeAndProjectMappingJsonBean,
1646
+ NotificationSchemeEvent,
1647
+ NotificationSchemeEventDetails,
1648
+ NotificationSchemeEventTypeId,
1649
+ NotificationSchemeId,
1650
+ NotificationSchemeNotificationDetails,
1651
+ PageBeanNotificationScheme,
1652
+ PageBeanNotificationSchemeAndProjectMappingJsonBean,
1653
+ UpdateNotificationSchemeDetails,
1654
+ AddSecuritySchemeLevelsRequestBean,
1655
+ AssociateSecuritySchemeWithProjectDetails,
1656
+ CreateIssueSecuritySchemeDetails,
1657
+ DefaultLevelValue,
1658
+ IssueSecuritySchemeToProjectMapping,
1659
+ OldToNewSecurityLevelMappingsBean,
1660
+ PageBeanIssueSecuritySchemeToProjectMapping,
1661
+ PageBeanSecurityLevel,
1662
+ PageBeanSecurityLevelMember,
1663
+ PageBeanSecuritySchemeWithProjects,
1664
+ SecurityLevelMember,
1665
+ SecuritySchemeId,
1666
+ SecuritySchemeLevelBean,
1667
+ SecuritySchemeLevelMemberBean,
1668
+ SecuritySchemeMembersRequest,
1669
+ SecuritySchemes,
1670
+ SecuritySchemeWithProjects,
1671
+ SetDefaultLevelsRequest,
1672
+ UpdateIssueSecurityLevelDetails,
1673
+ UpdateIssueSecuritySchemeRequestBean,
1674
+ AnnouncementBannerConfiguration,
1675
+ AnnouncementBannerConfigurationUpdate,
1676
+ Application,
1677
+ Icon,
1678
+ RemoteIssueLink,
1679
+ RemoteIssueLinkIdentifies,
1680
+ RemoteIssueLinkRequest,
1681
+ RemoteObject,
1682
+ Status,
1683
+ ApplicationProperty,
1684
+ Configuration,
1685
+ SimpleApplicationPropertyBean,
1686
+ ApplicationRole,
1687
+ Avatar,
1688
+ AvatarUrlsBean,
1689
+ ColumnItem,
1690
+ ColumnRequestBody,
1691
+ Comment,
1692
+ DefaultWorkflow,
1693
+ DocumentVersion,
1694
+ EntityProperty,
1695
+ ErrorCollection,
1696
+ FieldDetails,
1697
+ FoundGroups,
1698
+ FoundUsers,
1699
+ GroupName,
1700
+ IssueBean,
1701
+ IssueLinkType,
1702
+ IssueTypeDetails,
1703
+ IssueTypeIds,
1704
+ IssueTypesWorkflowMapping,
1705
+ IssueTypeWorkflowMapping,
1706
+ JsonNode,
1707
+ JsonTypeBean,
1708
+ NotificationScheme,
1709
+ PageBeanIssueTypeScreenScheme,
1710
+ PageBeanProject,
1711
+ PageBeanProjectDetails,
1712
+ PageBeanUser,
1713
+ PermissionHolder,
1714
+ PermissionScheme,
1715
+ Priority,
1716
+ Project,
1717
+ ProjectCategory,
1718
+ ProjectComponent,
1719
+ ProjectDetails,
1720
+ ProjectId,
1721
+ ProjectIssueTypes,
1722
+ ProjectRole,
1723
+ PropertyKeys,
1724
+ Scope,
1725
+ ScreenableField,
1726
+ ScreenableTab,
1727
+ SecurityLevel,
1728
+ SecurityScheme,
1729
+ SharePermission,
1730
+ SimpleLink,
1731
+ StatusCategory,
1732
+ StatusDetails,
1733
+ TaskProgressBeanObject,
1734
+ TaskProgressBeanRemoveOptionFromIssuesResult,
1735
+ TimeTrackingConfiguration,
1736
+ UpdatedProjectCategory,
1737
+ User,
1738
+ UserDetails,
1739
+ Version,
1740
+ Visibility,
1741
+ WorkflowScheme,
1742
+ WorkflowScope,
1743
+ WorkflowTransitionRules,
1744
+ AppWorkflowTransitionRule,
1745
+ PageBeanWorkflowTransitionRules,
1746
+ RuleConfiguration,
1747
+ WorkflowId,
1748
+ WorkflowsWithTransitionRulesDetails,
1749
+ WorkflowTransition,
1750
+ WorkflowTransitionRulesDetails,
1751
+ WorkflowTransitionRulesUpdate,
1752
+ WorkflowTransitionRulesUpdateErrorDetails,
1753
+ WorkflowTransitionRulesUpdateErrors,
1754
+ ArchivedIssuesFilterRequest,
1755
+ ArchiveIssueAsyncRequest,
1756
+ BulkOperationErrorResult,
1757
+ ChangeDetails,
1758
+ Changelog,
1759
+ CreatedIssue,
1760
+ CreatedIssues,
1761
+ DateRangeFilterRequest,
1762
+ Error,
1763
+ Errors,
1764
+ ExportArchivedIssuesTaskProgressResponse,
1765
+ FieldCreateMetadata,
1766
+ FieldMetadata,
1767
+ FieldUpdateOperation,
1768
+ HistoryMetadata,
1769
+ HistoryMetadataParticipant,
1770
+ IncludedFields,
1771
+ IssueArchivalSyncRequest,
1772
+ IssueArchivalSyncResponse,
1773
+ IssueChangelogIds,
1774
+ IssueCreateMetadata,
1775
+ IssueEvent,
1776
+ IssueLimitReportRequest,
1777
+ IssueLimitReportResponseBean,
1778
+ IssuesUpdateBean,
1779
+ IssueTransition,
1780
+ IssueTypeIssueCreateMetadata,
1781
+ IssueUpdateDetails,
1782
+ IssueUpdateMetadata,
1783
+ LinkGroup,
1784
+ NestedResponse,
1785
+ Notification,
1786
+ NotificationRecipients,
1787
+ NotificationRecipientsRestrictions,
1788
+ Operations,
1789
+ PageBeanChangelog,
1790
+ PageOfChangelogs,
1791
+ PageOfCreateMetaIssueTypes,
1792
+ PageOfCreateMetaIssueTypeWithField,
1793
+ ProjectIssueCreateMetadata,
1794
+ RestrictedPermission,
1795
+ Transitions,
1796
+ WarningCollection,
1797
+ AssociatedItemBean,
1798
+ AuditRecordBean,
1799
+ AuditRecords,
1800
+ ChangedValueBean,
1801
+ AssociateFieldConfigurationsWithIssueTypesRequest,
1802
+ FieldConfiguration,
1803
+ FieldConfigurationDetails,
1804
+ FieldConfigurationIssueTypeItem,
1805
+ FieldConfigurationItem,
1806
+ FieldConfigurationItemsDetails,
1807
+ FieldConfigurationScheme,
1808
+ FieldConfigurationSchemeProjectAssociation,
1809
+ FieldConfigurationSchemeProjects,
1810
+ FieldConfigurationToIssueTypeMapping,
1811
+ IssueTypeIdsToRemove,
1812
+ PageBeanFieldConfigurationDetails,
1813
+ PageBeanFieldConfigurationIssueTypeItem,
1814
+ PageBeanFieldConfigurationItem,
1815
+ PageBeanFieldConfigurationScheme,
1816
+ PageBeanFieldConfigurationSchemeProjects,
1817
+ UpdateFieldConfigurationSchemeDetails,
1818
+ Attachment,
1819
+ AttachmentArchiveEntry,
1820
+ AttachmentArchiveImpl,
1821
+ AttachmentArchiveItemReadable,
1822
+ AttachmentArchiveMetadataReadable,
1823
+ AttachmentMetadata,
1824
+ AttachmentSettings,
1825
+ ListWrapperCallbackApplicationRole,
1826
+ ListWrapperCallbackGroupName,
1827
+ MultipartFile,
1828
+ SimpleListWrapperApplicationRole,
1829
+ SimpleListWrapperGroupName,
1830
+ AutoCompleteSuggestion,
1831
+ AutoCompleteSuggestions,
1832
+ CompoundClause,
1833
+ ConvertedJqlQueries,
1834
+ FieldChangedClause,
1835
+ FieldReferenceData,
1836
+ FieldValueClause,
1837
+ FieldWasClause,
1838
+ FunctionOperand,
1839
+ FunctionReferenceData,
1840
+ JqlPersonalDataMigrationRequest,
1841
+ JqlQueriesToParse,
1842
+ JqlQueriesToSanitize,
1843
+ JqlQuery,
1844
+ JqlQueryClause,
1845
+ JqlQueryClauseOperand,
1846
+ JqlQueryClauseTimePredicate,
1847
+ JqlQueryField,
1848
+ JqlQueryFieldEntityProperty,
1849
+ JqlQueryOrderByClause,
1850
+ JqlQueryOrderByClauseElement,
1851
+ JqlQueryToSanitize,
1852
+ JqlQueryUnitaryOperand,
1853
+ JqlQueryWithUnknownUsers,
1854
+ JqlReferenceData,
1855
+ KeywordOperand,
1856
+ ListOperand,
1857
+ ParsedJqlQueries,
1858
+ ParsedJqlQuery,
1859
+ SanitizedJqlQueries,
1860
+ SanitizedJqlQuery,
1861
+ SearchAutoCompleteFilter,
1862
+ ValueOperand,
1863
+ AvailableDashboardGadget,
1864
+ AvailableDashboardGadgetsResponse,
1865
+ BulkChangeOwnerDetails,
1866
+ BulkEditActionError,
1867
+ BulkEditShareableEntityRequest,
1868
+ BulkEditShareableEntityResponse,
1869
+ Dashboard,
1870
+ DashboardDetails,
1871
+ DashboardGadget,
1872
+ DashboardGadgetPosition,
1873
+ DashboardGadgetResponse,
1874
+ DashboardGadgetSettings,
1875
+ DashboardGadgetUpdateRequest,
1876
+ Hierarchy,
1877
+ PageBeanDashboard,
1878
+ PageOfDashboards,
1879
+ PermissionDetails,
1880
+ ProjectInsight,
1881
+ ProjectLandingPageInfo,
1882
+ ProjectPermissions,
1883
+ ProjectRoleGroup,
1884
+ ProjectRoleUser,
1885
+ RoleActor,
1886
+ SimplifiedHierarchyLevel,
1887
+ UserBean,
1888
+ UserBeanAvatarUrls,
1889
+ VersionApprover,
1890
+ VersionIssuesStatus,
1891
+ AvailableWorkflowConnectRule,
1892
+ AvailableWorkflowForgeRule,
1893
+ AvailableWorkflowSystemRule,
1894
+ AvailableWorkflowTriggers,
1895
+ AvailableWorkflowTriggerTypes,
1896
+ ConditionGroupConfiguration,
1897
+ ConditionGroupUpdate,
1898
+ CreateWorkflowCondition,
1899
+ CreateWorkflowDetails,
1900
+ CreateWorkflowStatusDetails,
1901
+ CreateWorkflowTransitionDetails,
1902
+ CreateWorkflowTransitionRule,
1903
+ CreateWorkflowTransitionRulesDetails,
1904
+ CreateWorkflowTransitionScreenDetails,
1905
+ DeprecatedWorkflow,
1906
+ JiraWorkflow,
1907
+ JiraWorkflowStatus,
1908
+ PageBeanWorkflow,
1909
+ ProjectAndIssueTypePair,
1910
+ PublishedWorkflowId,
1911
+ StatusLayoutUpdate,
1912
+ StatusMappingDto,
1913
+ StatusMigration,
1914
+ StatusReferenceAndPort,
1915
+ Transition,
1916
+ TransitionScreenDetails,
1917
+ TransitionUpdateDto,
1918
+ ValidationOptionsForCreate,
1919
+ ValidationOptionsForUpdate,
1920
+ Workflow,
1921
+ WorkflowCapabilities,
1922
+ WorkflowCompoundCondition,
1923
+ WorkflowCondition,
1924
+ WorkflowCreate,
1925
+ WorkflowCreateRequest,
1926
+ WorkflowCreateResponse,
1927
+ WorkflowCreateValidateRequest,
1928
+ WorkflowElementReference,
1929
+ WorkflowIds,
1930
+ WorkflowLayout,
1931
+ WorkflowOperations,
1932
+ WorkflowReadRequest,
1933
+ WorkflowReadResponse,
1934
+ WorkflowReferenceStatus,
1935
+ WorkflowRuleConfiguration,
1936
+ WorkflowRules,
1937
+ WorkflowSchemeIdName,
1938
+ WorkflowSimpleCondition,
1939
+ WorkflowStatus,
1940
+ WorkflowStatusAndPort,
1941
+ WorkflowStatusLayout,
1942
+ WorkflowStatusUpdate,
1943
+ WorkflowTransitionRule,
1944
+ WorkflowTransitions,
1945
+ WorkflowTrigger,
1946
+ WorkflowUpdate,
1947
+ WorkflowUpdateRequest,
1948
+ WorkflowUpdateResponse,
1949
+ WorkflowUpdateValidateRequestBean,
1950
+ WorkflowValidationError,
1951
+ WorkflowValidationErrorList,
1952
+ Avatars,
1953
+ StreamingResponseBody,
1954
+ SystemAvatars,
1955
+ BulkCustomFieldOptionCreateRequest,
1956
+ BulkCustomFieldOptionUpdateRequest,
1957
+ CustomFieldContextOption,
1958
+ CustomFieldCreatedContextOptionsList,
1959
+ CustomFieldOption,
1960
+ CustomFieldOptionCreate,
1961
+ CustomFieldOptionUpdate,
1962
+ CustomFieldUpdatedContextOptionsList,
1963
+ OrderOfCustomFieldOptions,
1964
+ PageBeanCustomFieldContextOption,
1965
+ RemoveOptionFromIssuesResult,
1966
+ SimpleErrorCollection,
1967
+ BulkIssueIsWatching,
1968
+ IssueList,
1969
+ Watchers,
1970
+ BulkIssuePropertyUpdateRequest,
1971
+ IssueEntityProperties,
1972
+ IssueEntityPropertiesForMultiUpdate,
1973
+ IssueFilterForBulkPropertyDelete,
1974
+ IssueFilterForBulkPropertySet,
1975
+ MultiIssueEntityProperties,
1976
+ BulkPermissionGrants,
1977
+ BulkPermissionsRequestBean,
1978
+ BulkProjectPermissionGrants,
1979
+ BulkProjectPermissions,
1980
+ Permissions,
1981
+ PermissionsKeysBean,
1982
+ PermittedProjects,
1983
+ ProjectIdentifierBean,
1984
+ UserPermission,
1985
+ ChangedWorklog,
1986
+ ChangedWorklogs,
1987
+ PageOfWorklogs,
1988
+ Worklog,
1989
+ WorklogIdsRequestBean,
1990
+ ChangeFilterOwner,
1991
+ Filter,
1992
+ FilterDetails,
1993
+ FilterSubscription,
1994
+ FilterSubscriptionsList,
1995
+ PageBeanFilterDetails,
1996
+ UserList,
1997
+ ComponentIssuesCount,
1998
+ ComponentJsonBean,
1999
+ ComponentWithIssueCount,
2000
+ PageBean2ComponentJsonBean,
2001
+ PageBeanComponentWithIssueCount,
2002
+ ConnectCustomFieldValue,
2003
+ ConnectCustomFieldValues,
2004
+ EntityPropertyDetails,
2005
+ WorkflowRulesSearch,
2006
+ WorkflowRulesSearchDetails,
2007
+ ConnectModule,
2008
+ ConnectModules,
2009
+ ErrorMessage,
2010
+ ContainerForProjectFeatures,
2011
+ ProjectFeature,
2012
+ ProjectFeatureState,
2013
+ ContainerForRegisteredWebhooks,
2014
+ ContainerForWebhookIds,
2015
+ FailedWebhook,
2016
+ FailedWebhooks,
2017
+ PageBeanWebhook,
2018
+ RegisteredWebhook,
2019
+ Webhook,
2020
+ WebhookDetails,
2021
+ WebhookRegistrationDetails,
2022
+ WebhooksExpirationDate,
2023
+ ContainerOfWorkflowSchemeAssociations,
2024
+ WorkflowSchemeAssociations,
2025
+ WorkflowSchemeProjectAssociation,
2026
+ Context,
2027
+ CustomFieldDefinitionJsonBean,
2028
+ Field,
2029
+ FieldLastUsed,
2030
+ PageBeanContext,
2031
+ PageBeanField,
2032
+ UpdateCustomFieldDetails,
2033
+ ContextForProjectAndIssueType,
2034
+ CreateCustomFieldContext,
2035
+ CustomFieldContext,
2036
+ CustomFieldContextDefaultValue,
2037
+ CustomFieldContextDefaultValueCascadingOption,
2038
+ CustomFieldContextDefaultValueDate,
2039
+ CustomFieldContextDefaultValueDateTime,
2040
+ CustomFieldContextDefaultValueFloat,
2041
+ CustomFieldContextDefaultValueForgeDateTimeField,
2042
+ CustomFieldContextDefaultValueForgeGroupField,
2043
+ CustomFieldContextDefaultValueForgeMultiGroupField,
2044
+ CustomFieldContextDefaultValueForgeMultiStringField,
2045
+ CustomFieldContextDefaultValueForgeMultiUserField,
2046
+ CustomFieldContextDefaultValueForgeNumberField,
2047
+ CustomFieldContextDefaultValueForgeObjectField,
2048
+ CustomFieldContextDefaultValueForgeStringField,
2049
+ CustomFieldContextDefaultValueForgeUserField,
2050
+ CustomFieldContextDefaultValueLabels,
2051
+ CustomFieldContextDefaultValueMultipleGroupPicker,
2052
+ CustomFieldContextDefaultValueMultipleOption,
2053
+ CustomFieldContextDefaultValueMultipleVersionPicker,
2054
+ CustomFieldContextDefaultValueMultiUserPicker,
2055
+ CustomFieldContextDefaultValueProject,
2056
+ CustomFieldContextDefaultValueReadOnly,
2057
+ CustomFieldContextDefaultValueSingleGroupPicker,
2058
+ CustomFieldContextDefaultValueSingleOption,
2059
+ CustomFieldContextDefaultValueSingleVersionPicker,
2060
+ CustomFieldContextDefaultValueTextArea,
2061
+ CustomFieldContextDefaultValueTextField,
2062
+ CustomFieldContextDefaultValueUpdate,
2063
+ CustomFieldContextDefaultValueUrl,
2064
+ CustomFieldContextProjectMapping,
2065
+ CustomFieldContextSingleUserPickerDefaults,
2066
+ CustomFieldContextUpdateDetails,
2067
+ IssueTypeToContextMapping,
2068
+ PageBeanContextForProjectAndIssueType,
2069
+ PageBeanCustomFieldContext,
2070
+ PageBeanCustomFieldContextDefaultValue,
2071
+ PageBeanCustomFieldContextProjectMapping,
2072
+ PageBeanIssueTypeToContextMapping,
2073
+ ProjectIds,
2074
+ ProjectIssueTypeMapping,
2075
+ ProjectIssueTypeMappings,
2076
+ UserFilter,
2077
+ ContextualConfiguration,
2078
+ CustomFieldConfigurations,
2079
+ PageBeanContextualConfiguration,
2080
+ CreatePriorityDetails,
2081
+ PageBeanPriority,
2082
+ PriorityId,
2083
+ ReorderIssuePriorities,
2084
+ SetDefaultPriorityRequest,
2085
+ UpdatePriorityDetails,
2086
+ CreatePrioritySchemeDetails,
2087
+ PageBeanPrioritySchemeWithPaginatedPrioritiesAndProjects,
2088
+ PageBeanPriorityWithSequence,
2089
+ PriorityMapping,
2090
+ PrioritySchemeChangesWithMappings,
2091
+ PrioritySchemeChangesWithoutMappings,
2092
+ PrioritySchemeId,
2093
+ PrioritySchemeWithPaginatedPrioritiesAndProjects,
2094
+ PriorityWithSequence,
2095
+ SuggestedMappingsForPrioritiesRequestBean,
2096
+ SuggestedMappingsForProjectsRequestBean,
2097
+ SuggestedMappingsRequestBean,
2098
+ TaskProgressBeanJsonNode,
2099
+ UpdatePrioritiesInSchemeRequestBean,
2100
+ UpdatePrioritySchemeRequestBean,
2101
+ UpdatePrioritySchemeResponseBean,
2102
+ UpdateProjectsInSchemeRequestBean,
2103
+ CreateProjectDetails,
2104
+ IssueTypeInfo,
2105
+ IssueTypeWithStatus,
2106
+ ProjectIdentifiers,
2107
+ ProjectIssueTypeHierarchy,
2108
+ ProjectIssueTypesHierarchyLevel,
2109
+ StringList,
2110
+ UpdateProjectDetails,
2111
+ CreateResolutionDetails,
2112
+ PageBeanResolutionJsonBean,
2113
+ ReorderIssueResolutionsRequest,
2114
+ Resolution,
2115
+ ResolutionId,
2116
+ ResolutionJsonBean,
2117
+ SetDefaultResolutionRequest,
2118
+ UpdateResolutionDetails,
2119
+ CreateUiModificationDetails,
2120
+ DetailedErrorCollection,
2121
+ PageBeanUiModificationDetails,
2122
+ UiModificationContextDetails,
2123
+ UiModificationDetails,
2124
+ UiModificationIdentifiers,
2125
+ UpdateUiModificationDetails,
2126
+ CreateUpdateRoleRequestBean,
2127
+ ProjectRoleDetails,
2128
+ CustomContextVariable,
2129
+ IdOrKeyBean,
2130
+ IssueContextVariable,
2131
+ IssuesJqlMetaDataBean,
2132
+ IssuesMetaBean,
2133
+ JexpIssues,
2134
+ JexpJqlIssues,
2135
+ JiraExpressionAnalysis,
2136
+ JiraExpressionComplexity,
2137
+ JiraExpressionEvalContextBean,
2138
+ JiraExpressionEvalRequestBean,
2139
+ JiraExpressionEvaluationMetaDataBean,
2140
+ JiraExpressionForAnalysis,
2141
+ JiraExpressionResult,
2142
+ JiraExpressionsAnalysis,
2143
+ JiraExpressionsComplexityBean,
2144
+ JiraExpressionsComplexityValueBean,
2145
+ JiraExpressionValidationError,
2146
+ JsonContextVariable,
2147
+ UserContextVariable,
2148
+ CustomFieldReplacement,
2149
+ DeleteAndReplaceVersionBean,
2150
+ PageBeanVersion,
2151
+ VersionIssueCounts,
2152
+ VersionMoveBean,
2153
+ VersionRelatedWork,
2154
+ VersionUnresolvedIssuesCount,
2155
+ VersionUsageInCustomField,
2156
+ CustomFieldValueUpdate,
2157
+ CustomFieldValueUpdateDetails,
2158
+ MultipleCustomFieldValuesUpdate,
2159
+ MultipleCustomFieldValuesUpdateDetails,
2160
+ DataClassificationLevelsBean,
2161
+ DataClassificationTagBean,
2162
+ DefaultShareScope,
2163
+ SharePermissionInputBean,
2164
+ ErrorCollections,
2165
+ License,
2166
+ LicensedApplication,
2167
+ LicenseMetric,
2168
+ ExpandPrioritySchemePage,
2169
+ Fields,
2170
+ IssueLink,
2171
+ LinkedIssue,
2172
+ LinkIssueRequestJsonBean,
2173
+ TimeTrackingDetails,
2174
+ FoundUsersAndGroups,
2175
+ UserPickerUser,
2176
+ GlobalScopeBean,
2177
+ IssueFieldOption,
2178
+ IssueFieldOptionConfiguration,
2179
+ IssueFieldOptionCreateBean,
2180
+ IssueFieldOptionScopeBean,
2181
+ PageBeanIssueFieldOption,
2182
+ ProjectScopeBean,
2183
+ HealthCheckResult,
2184
+ ServerInformation,
2185
+ IdBean,
2186
+ ProjectIssueSecurityLevels,
2187
+ IdSearchRequestBean,
2188
+ IdSearchResults,
2189
+ IssueMatches,
2190
+ IssueMatchesForJql,
2191
+ IssuePickerSuggestions,
2192
+ IssuePickerSuggestionsIssueType,
2193
+ IssuesAndJqlQueries,
2194
+ SearchRequestBean,
2195
+ SearchResults,
2196
+ SuggestedIssue,
2197
+ IssueCommentListRequestBean,
2198
+ PageBeanComment,
2199
+ PageOfComments,
2200
+ IssueLinkTypes,
2201
+ IssueSecurityLevelMember,
2202
+ PageBeanIssueSecurityLevelMember,
2203
+ IssueTypeCreateBean,
2204
+ IssueTypeUpdateBean,
2205
+ IssueTypeScheme,
2206
+ IssueTypeSchemeDetails,
2207
+ IssueTypeSchemeId,
2208
+ IssueTypeSchemeMapping,
2209
+ IssueTypeSchemeProjectAssociation,
2210
+ IssueTypeSchemeProjects,
2211
+ IssueTypeSchemeUpdateDetails,
2212
+ OrderOfIssueTypes,
2213
+ PageBeanIssueTypeScheme,
2214
+ PageBeanIssueTypeSchemeMapping,
2215
+ PageBeanIssueTypeSchemeProjects,
2216
+ IssueTypeScreenScheme,
2217
+ IssueTypeScreenSchemeDetails,
2218
+ IssueTypeScreenSchemeId,
2219
+ IssueTypeScreenSchemeItem,
2220
+ IssueTypeScreenSchemeMapping,
2221
+ IssueTypeScreenSchemeMappingDetails,
2222
+ IssueTypeScreenSchemeProjectAssociation,
2223
+ IssueTypeScreenSchemesProjects,
2224
+ IssueTypeScreenSchemeUpdateDetails,
2225
+ PageBeanIssueTypeScreenSchemeItem,
2226
+ PageBeanIssueTypeScreenSchemesProjects,
2227
+ UpdateDefaultScreenScheme,
2228
+ JiraStatus,
2229
+ PageOfStatuses,
2230
+ StatusCreate,
2231
+ StatusCreateRequest,
2232
+ StatusScope,
2233
+ StatusUpdate,
2234
+ StatusUpdateRequest,
2235
+ WorkflowUsages,
2236
+ JqlFunctionPrecomputationBean,
2237
+ JqlFunctionPrecomputationUpdateBean,
2238
+ JqlFunctionPrecomputationUpdateRequestBean,
2239
+ PageBeanJqlFunctionPrecomputationBean,
2240
+ Locale,
2241
+ MappingsByIssueTypeOverride,
2242
+ MappingsByWorkflow,
2243
+ PageBeanWorkflowScheme,
2244
+ RequiredMappingByIssueType,
2245
+ RequiredMappingByWorkflows,
2246
+ SimpleUsage,
2247
+ StatusesPerWorkflow,
2248
+ StatusMetadata,
2249
+ WorkflowAssociationStatusMapping,
2250
+ WorkflowMetadataAndIssueTypeRestModel,
2251
+ WorkflowMetadataRestModel,
2252
+ WorkflowSchemeAssociation,
2253
+ WorkflowSchemeReadRequest,
2254
+ WorkflowSchemeReadResponse,
2255
+ WorkflowSchemeUpdateRequest,
2256
+ WorkflowSchemeUpdateRequiredMappingsRequest,
2257
+ WorkflowSchemeUpdateRequiredMappingsResponse,
2258
+ NewUserDetails,
2259
+ UnrestrictedUserEmail,
2260
+ UserColumnRequestBody,
2261
+ UserMigrationBean,
2262
+ OperationMessage,
2263
+ PageBeanScreen,
2264
+ PageBeanScreenWithTab,
2265
+ Screen,
2266
+ ScreenDetails,
2267
+ ScreenWithTab,
2268
+ UpdateScreenDetails,
2269
+ PageBeanScreenScheme,
2270
+ ScreenScheme,
2271
+ ScreenSchemeDetails,
2272
+ ScreenSchemeId,
2273
+ ScreenTypes,
2274
+ UpdateScreenSchemeDetails,
2275
+ UpdateScreenTypes,
2276
+ PageBeanString,
2277
+ PageBeanUserKey,
2278
+ UserKey,
2279
+ PermissionGrant,
2280
+ PermissionGrants,
2281
+ PermissionSchemes,
2282
+ ProjectAvatars,
2283
+ ProjectDataPolicies,
2284
+ ProjectDataPolicy,
2285
+ ProjectWithDataPolicy,
2286
+ WorkspaceDataPolicy,
2287
+ ProjectEmailAddress,
2288
+ ProjectType,
2289
+ PropertyKey,
2290
+ PublishDraftWorkflowScheme,
2291
+ StatusMapping,
2292
+ ServiceRegistry,
2293
+ ServiceRegistryTier,
2294
+ TimeTrackingProvider,
2295
+ UpdateDefaultProjectClassificationBean,
2296
+ Votes,
2297
+ WorkflowTransitionProperty,
2298
+ };