@makeplane/plane-node-sdk 0.1.3 → 0.1.5

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 (400) hide show
  1. package/.github/workflows/publish-node-sdk.yml +23 -5
  2. package/.openapi-generator/FILES +18 -3
  3. package/README.md +2 -2
  4. package/dist/apis/AssetsApi.d.ts +1 -1
  5. package/dist/apis/AssetsApi.js +1 -1
  6. package/dist/apis/CyclesApi.d.ts +3 -3
  7. package/dist/apis/CyclesApi.js +2 -2
  8. package/dist/apis/EpicsApi.d.ts +49 -0
  9. package/dist/apis/EpicsApi.js +243 -0
  10. package/dist/apis/IntakeApi.d.ts +1 -1
  11. package/dist/apis/IntakeApi.js +1 -1
  12. package/dist/apis/LabelsApi.d.ts +1 -1
  13. package/dist/apis/LabelsApi.js +1 -1
  14. package/dist/apis/MembersApi.d.ts +1 -1
  15. package/dist/apis/MembersApi.js +1 -1
  16. package/dist/apis/ModulesApi.d.ts +3 -3
  17. package/dist/apis/ModulesApi.js +2 -2
  18. package/dist/apis/PagesApi.d.ts +75 -0
  19. package/dist/apis/PagesApi.js +393 -0
  20. package/dist/apis/ProjectsApi.d.ts +1 -1
  21. package/dist/apis/ProjectsApi.js +1 -1
  22. package/dist/apis/StatesApi.d.ts +1 -1
  23. package/dist/apis/StatesApi.js +1 -1
  24. package/dist/apis/UsersApi.d.ts +1 -1
  25. package/dist/apis/UsersApi.js +1 -1
  26. package/dist/apis/WorkItemActivityApi.d.ts +1 -1
  27. package/dist/apis/WorkItemActivityApi.js +1 -1
  28. package/dist/apis/WorkItemAttachmentsApi.d.ts +18 -1
  29. package/dist/apis/WorkItemAttachmentsApi.js +83 -1
  30. package/dist/apis/WorkItemCommentsApi.d.ts +1 -1
  31. package/dist/apis/WorkItemCommentsApi.js +1 -1
  32. package/dist/apis/WorkItemLinksApi.d.ts +1 -1
  33. package/dist/apis/WorkItemLinksApi.js +1 -1
  34. package/dist/apis/WorkItemPropertiesApi.d.ts +24 -8
  35. package/dist/apis/WorkItemPropertiesApi.js +86 -4
  36. package/dist/apis/WorkItemTypesApi.d.ts +1 -1
  37. package/dist/apis/WorkItemTypesApi.js +1 -1
  38. package/dist/apis/WorkItemWorklogsApi.d.ts +1 -1
  39. package/dist/apis/WorkItemWorklogsApi.js +1 -1
  40. package/dist/apis/WorkItemsApi.d.ts +56 -4
  41. package/dist/apis/WorkItemsApi.js +262 -2
  42. package/dist/apis/WorkspacesApi.d.ts +28 -0
  43. package/dist/apis/WorkspacesApi.js +150 -0
  44. package/dist/apis/index.d.ts +3 -0
  45. package/dist/apis/index.js +3 -0
  46. package/dist/models/AccessBd4Enum.d.ts +25 -0
  47. package/dist/models/AccessBd4Enum.js +51 -0
  48. package/dist/models/Cycle.d.ts +1 -1
  49. package/dist/models/Cycle.js +1 -1
  50. package/dist/models/CycleCreateRequest.d.ts +1 -1
  51. package/dist/models/CycleCreateRequest.js +1 -1
  52. package/dist/models/CycleIssue.d.ts +1 -1
  53. package/dist/models/CycleIssue.js +1 -1
  54. package/dist/models/CycleIssueRequestRequest.d.ts +1 -1
  55. package/dist/models/CycleIssueRequestRequest.js +1 -1
  56. package/dist/models/CycleLite.d.ts +1 -1
  57. package/dist/models/CycleLite.js +1 -1
  58. package/dist/models/EntityTypeEnum.d.ts +1 -1
  59. package/dist/models/EntityTypeEnum.js +1 -1
  60. package/dist/models/Epic.d.ts +206 -0
  61. package/dist/models/Epic.js +106 -0
  62. package/dist/models/GenericAssetUploadRequest.d.ts +1 -1
  63. package/dist/models/GenericAssetUploadRequest.js +1 -1
  64. package/dist/models/GetWorkspaceMembers200ResponseInner.d.ts +1 -1
  65. package/dist/models/GetWorkspaceMembers200ResponseInner.js +1 -1
  66. package/dist/models/GroupEnum.d.ts +1 -1
  67. package/dist/models/GroupEnum.js +1 -1
  68. package/dist/models/IntakeIssue.d.ts +1 -1
  69. package/dist/models/IntakeIssue.js +1 -1
  70. package/dist/models/IntakeIssueCreateRequest.d.ts +1 -1
  71. package/dist/models/IntakeIssueCreateRequest.js +1 -1
  72. package/dist/models/IntakeWorkItemStatusEnum.d.ts +1 -1
  73. package/dist/models/IntakeWorkItemStatusEnum.js +1 -1
  74. package/dist/models/Issue.d.ts +1 -1
  75. package/dist/models/Issue.js +1 -1
  76. package/dist/models/IssueActivity.d.ts +1 -1
  77. package/dist/models/IssueActivity.js +1 -1
  78. package/dist/models/IssueAttachment.d.ts +1 -1
  79. package/dist/models/IssueAttachment.js +1 -1
  80. package/dist/models/IssueAttachmentUploadRequest.d.ts +1 -1
  81. package/dist/models/IssueAttachmentUploadRequest.js +1 -1
  82. package/dist/models/IssueComment.d.ts +4 -4
  83. package/dist/models/IssueComment.js +4 -4
  84. package/dist/models/IssueCommentCreateRequest.d.ts +4 -4
  85. package/dist/models/IssueCommentCreateRequest.js +4 -4
  86. package/dist/models/IssueDetail.d.ts +211 -0
  87. package/dist/models/IssueDetail.js +108 -0
  88. package/dist/models/IssueExpand.d.ts +5 -7
  89. package/dist/models/IssueExpand.js +3 -5
  90. package/dist/models/IssueForIntakeRequest.d.ts +1 -1
  91. package/dist/models/IssueForIntakeRequest.js +1 -1
  92. package/dist/models/IssueLink.d.ts +1 -1
  93. package/dist/models/IssueLink.js +1 -1
  94. package/dist/models/IssueLinkCreateRequest.d.ts +1 -1
  95. package/dist/models/IssueLinkCreateRequest.js +1 -1
  96. package/dist/models/IssuePropertyAPI.d.ts +4 -4
  97. package/dist/models/IssuePropertyAPI.js +4 -4
  98. package/dist/models/IssuePropertyAPIRelationTypeEnum.d.ts +25 -0
  99. package/dist/models/IssuePropertyAPIRelationTypeEnum.js +51 -0
  100. package/dist/models/IssuePropertyAPIRequest.d.ts +4 -4
  101. package/dist/models/IssuePropertyAPIRequest.js +4 -4
  102. package/dist/models/IssuePropertyOptionAPI.d.ts +1 -1
  103. package/dist/models/IssuePropertyOptionAPI.js +1 -1
  104. package/dist/models/IssuePropertyOptionAPIRequest.d.ts +1 -1
  105. package/dist/models/IssuePropertyOptionAPIRequest.js +1 -1
  106. package/dist/models/IssuePropertyValueAPI.d.ts +1 -1
  107. package/dist/models/IssuePropertyValueAPI.js +1 -1
  108. package/dist/models/IssuePropertyValueAPIDetail.d.ts +39 -0
  109. package/dist/models/IssuePropertyValueAPIDetail.js +54 -0
  110. package/dist/models/IssuePropertyValueAPIRequest.d.ts +1 -1
  111. package/dist/models/IssuePropertyValueAPIRequest.js +1 -1
  112. package/dist/models/IssueRelation.d.ts +106 -0
  113. package/dist/models/IssueRelation.js +58 -0
  114. package/dist/models/IssueRelationCreateRelationTypeEnum.d.ts +37 -0
  115. package/dist/models/IssueRelationCreateRelationTypeEnum.js +63 -0
  116. package/dist/models/IssueRelationCreateRequest.d.ts +50 -0
  117. package/dist/models/IssueRelationCreateRequest.js +55 -0
  118. package/dist/models/IssueRelationRemoveRequest.d.ts +34 -0
  119. package/dist/models/IssueRelationRemoveRequest.js +50 -0
  120. package/dist/models/IssueRelationResponse.d.ts +75 -0
  121. package/dist/models/IssueRelationResponse.js +78 -0
  122. package/dist/models/IssueRequest.d.ts +1 -1
  123. package/dist/models/IssueRequest.js +1 -1
  124. package/dist/models/IssueSearch.d.ts +4 -5
  125. package/dist/models/IssueSearch.js +1 -1
  126. package/dist/models/IssueSearchItem.d.ts +1 -1
  127. package/dist/models/IssueSearchItem.js +1 -1
  128. package/dist/models/IssueTypeAPI.d.ts +1 -1
  129. package/dist/models/IssueTypeAPI.js +1 -1
  130. package/dist/models/IssueTypeAPIRequest.d.ts +1 -1
  131. package/dist/models/IssueTypeAPIRequest.js +1 -1
  132. package/dist/models/IssueWorkLogAPI.d.ts +1 -1
  133. package/dist/models/IssueWorkLogAPI.js +1 -1
  134. package/dist/models/IssueWorkLogAPIRequest.d.ts +1 -1
  135. package/dist/models/IssueWorkLogAPIRequest.js +1 -1
  136. package/dist/models/Label.d.ts +1 -1
  137. package/dist/models/Label.js +1 -1
  138. package/dist/models/LabelCreateUpdateRequest.d.ts +1 -1
  139. package/dist/models/LabelCreateUpdateRequest.js +1 -1
  140. package/dist/models/Module.d.ts +1 -1
  141. package/dist/models/Module.js +1 -1
  142. package/dist/models/ModuleCreateRequest.d.ts +1 -1
  143. package/dist/models/ModuleCreateRequest.js +1 -1
  144. package/dist/models/ModuleIssue.d.ts +1 -1
  145. package/dist/models/ModuleIssue.js +1 -1
  146. package/dist/models/ModuleIssueRequestRequest.d.ts +1 -1
  147. package/dist/models/ModuleIssueRequestRequest.js +1 -1
  148. package/dist/models/ModuleLite.d.ts +1 -1
  149. package/dist/models/ModuleLite.js +1 -1
  150. package/dist/models/ModuleStatusEnum.d.ts +1 -1
  151. package/dist/models/ModuleStatusEnum.js +1 -1
  152. package/dist/models/NetworkEnum.d.ts +1 -1
  153. package/dist/models/NetworkEnum.js +1 -1
  154. package/dist/models/PageCreateAPI.d.ts +134 -0
  155. package/dist/models/PageCreateAPI.js +79 -0
  156. package/dist/models/PageCreateAPIAccessEnum.d.ts +25 -0
  157. package/dist/models/PageCreateAPIAccessEnum.js +51 -0
  158. package/dist/models/PageCreateAPIRequest.d.ts +86 -0
  159. package/dist/models/PageCreateAPIRequest.js +71 -0
  160. package/dist/models/PageDetailAPI.d.ts +79 -0
  161. package/dist/models/PageDetailAPI.js +57 -0
  162. package/dist/models/PaginatedArchivedCycleResponse.d.ts +1 -1
  163. package/dist/models/PaginatedArchivedCycleResponse.js +1 -1
  164. package/dist/models/PaginatedArchivedModuleResponse.d.ts +1 -1
  165. package/dist/models/PaginatedArchivedModuleResponse.js +1 -1
  166. package/dist/models/PaginatedCycleIssueResponse.d.ts +1 -1
  167. package/dist/models/PaginatedCycleIssueResponse.js +1 -1
  168. package/dist/models/PaginatedCycleResponse.d.ts +1 -1
  169. package/dist/models/PaginatedCycleResponse.js +1 -1
  170. package/dist/models/PaginatedEpicResponse.d.ts +98 -0
  171. package/dist/models/PaginatedEpicResponse.js +95 -0
  172. package/dist/models/PaginatedIntakeIssueResponse.d.ts +1 -1
  173. package/dist/models/PaginatedIntakeIssueResponse.js +1 -1
  174. package/dist/models/PaginatedIssueActivityDetailResponse.d.ts +1 -1
  175. package/dist/models/PaginatedIssueActivityDetailResponse.js +1 -1
  176. package/dist/models/PaginatedIssueActivityResponse.d.ts +1 -1
  177. package/dist/models/PaginatedIssueActivityResponse.js +1 -1
  178. package/dist/models/PaginatedIssueCommentResponse.d.ts +1 -1
  179. package/dist/models/PaginatedIssueCommentResponse.js +1 -1
  180. package/dist/models/PaginatedIssueLinkDetailResponse.d.ts +1 -1
  181. package/dist/models/PaginatedIssueLinkDetailResponse.js +1 -1
  182. package/dist/models/PaginatedIssueLinkResponse.d.ts +1 -1
  183. package/dist/models/PaginatedIssueLinkResponse.js +1 -1
  184. package/dist/models/PaginatedLabelResponse.d.ts +1 -1
  185. package/dist/models/PaginatedLabelResponse.js +1 -1
  186. package/dist/models/PaginatedModuleIssueResponse.d.ts +1 -1
  187. package/dist/models/PaginatedModuleIssueResponse.js +1 -1
  188. package/dist/models/PaginatedModuleResponse.d.ts +1 -1
  189. package/dist/models/PaginatedModuleResponse.js +1 -1
  190. package/dist/models/PaginatedProjectResponse.d.ts +1 -1
  191. package/dist/models/PaginatedProjectResponse.js +1 -1
  192. package/dist/models/PaginatedStateResponse.d.ts +1 -1
  193. package/dist/models/PaginatedStateResponse.js +1 -1
  194. package/dist/models/PaginatedWorkItemResponse.d.ts +1 -1
  195. package/dist/models/PaginatedWorkItemResponse.js +1 -1
  196. package/dist/models/PatchedAssetUpdateRequest.d.ts +1 -1
  197. package/dist/models/PatchedAssetUpdateRequest.js +1 -1
  198. package/dist/models/PatchedCycleUpdateRequest.d.ts +1 -1
  199. package/dist/models/PatchedCycleUpdateRequest.js +1 -1
  200. package/dist/models/PatchedGenericAssetUpdateRequest.d.ts +1 -1
  201. package/dist/models/PatchedGenericAssetUpdateRequest.js +1 -1
  202. package/dist/models/PatchedIntakeIssueUpdateRequest.d.ts +1 -1
  203. package/dist/models/PatchedIntakeIssueUpdateRequest.js +1 -1
  204. package/dist/models/PatchedIssueCommentCreateRequest.d.ts +4 -4
  205. package/dist/models/PatchedIssueCommentCreateRequest.js +4 -4
  206. package/dist/models/PatchedIssueLinkUpdateRequest.d.ts +1 -1
  207. package/dist/models/PatchedIssueLinkUpdateRequest.js +1 -1
  208. package/dist/models/PatchedIssuePropertyAPIRequest.d.ts +4 -4
  209. package/dist/models/PatchedIssuePropertyAPIRequest.js +4 -4
  210. package/dist/models/PatchedIssuePropertyOptionAPIRequest.d.ts +1 -1
  211. package/dist/models/PatchedIssuePropertyOptionAPIRequest.js +1 -1
  212. package/dist/models/PatchedIssueRequest.d.ts +1 -1
  213. package/dist/models/PatchedIssueRequest.js +1 -1
  214. package/dist/models/PatchedIssueTypeAPIRequest.d.ts +1 -1
  215. package/dist/models/PatchedIssueTypeAPIRequest.js +1 -1
  216. package/dist/models/PatchedIssueWorkLogAPIRequest.d.ts +1 -1
  217. package/dist/models/PatchedIssueWorkLogAPIRequest.js +1 -1
  218. package/dist/models/PatchedLabelCreateUpdateRequest.d.ts +1 -1
  219. package/dist/models/PatchedLabelCreateUpdateRequest.js +1 -1
  220. package/dist/models/PatchedModuleUpdateRequest.d.ts +1 -1
  221. package/dist/models/PatchedModuleUpdateRequest.js +1 -1
  222. package/dist/models/PatchedProjectUpdateRequest.d.ts +25 -1
  223. package/dist/models/PatchedProjectUpdateRequest.js +9 -1
  224. package/dist/models/PatchedStateRequest.d.ts +1 -1
  225. package/dist/models/PatchedStateRequest.js +1 -1
  226. package/dist/models/PriorityEnum.d.ts +1 -1
  227. package/dist/models/PriorityEnum.js +1 -1
  228. package/dist/models/Project.d.ts +1 -1
  229. package/dist/models/Project.js +1 -1
  230. package/dist/models/ProjectCreateRequest.d.ts +25 -1
  231. package/dist/models/ProjectCreateRequest.js +9 -1
  232. package/dist/models/ProjectWorklogSummary.d.ts +1 -1
  233. package/dist/models/ProjectWorklogSummary.js +1 -1
  234. package/dist/models/PropertyTypeEnum.d.ts +1 -1
  235. package/dist/models/PropertyTypeEnum.js +1 -1
  236. package/dist/models/RetrieveWorkItemAttachment400Response.d.ts +1 -1
  237. package/dist/models/RetrieveWorkItemAttachment400Response.js +1 -1
  238. package/dist/models/State.d.ts +1 -1
  239. package/dist/models/State.js +1 -1
  240. package/dist/models/StateLite.d.ts +1 -1
  241. package/dist/models/StateLite.js +1 -1
  242. package/dist/models/StateRequest.d.ts +1 -1
  243. package/dist/models/StateRequest.js +1 -1
  244. package/dist/models/TimezoneEnum.d.ts +1 -1
  245. package/dist/models/TimezoneEnum.js +1 -1
  246. package/dist/models/TransferCycleIssueRequestRequest.d.ts +1 -1
  247. package/dist/models/TransferCycleIssueRequestRequest.js +1 -1
  248. package/dist/models/TransferCycleWorkItems200Response.d.ts +1 -1
  249. package/dist/models/TransferCycleWorkItems200Response.js +1 -1
  250. package/dist/models/TransferCycleWorkItems400Response.d.ts +1 -1
  251. package/dist/models/TransferCycleWorkItems400Response.js +1 -1
  252. package/dist/models/TypeEnum.d.ts +1 -1
  253. package/dist/models/TypeEnum.js +1 -1
  254. package/dist/models/UserAssetUploadRequest.d.ts +1 -1
  255. package/dist/models/UserAssetUploadRequest.js +1 -1
  256. package/dist/models/UserLite.d.ts +1 -1
  257. package/dist/models/UserLite.js +1 -1
  258. package/dist/models/index.d.ts +15 -3
  259. package/dist/models/index.js +15 -3
  260. package/dist/runtime.d.ts +1 -1
  261. package/dist/runtime.js +1 -1
  262. package/package.json +1 -1
  263. package/src/apis/AssetsApi.ts +1 -1
  264. package/src/apis/CyclesApi.ts +4 -4
  265. package/src/apis/EpicsApi.ts +177 -0
  266. package/src/apis/IntakeApi.ts +1 -1
  267. package/src/apis/LabelsApi.ts +1 -1
  268. package/src/apis/MembersApi.ts +1 -1
  269. package/src/apis/ModulesApi.ts +4 -4
  270. package/src/apis/PagesApi.ts +301 -0
  271. package/src/apis/ProjectsApi.ts +1 -1
  272. package/src/apis/StatesApi.ts +1 -1
  273. package/src/apis/UsersApi.ts +1 -1
  274. package/src/apis/WorkItemActivityApi.ts +1 -1
  275. package/src/apis/WorkItemAttachmentsApi.ts +81 -1
  276. package/src/apis/WorkItemCommentsApi.ts +1 -1
  277. package/src/apis/WorkItemLinksApi.ts +1 -1
  278. package/src/apis/WorkItemPropertiesApi.ts +90 -10
  279. package/src/apis/WorkItemTypesApi.ts +1 -1
  280. package/src/apis/WorkItemWorklogsApi.ts +1 -1
  281. package/src/apis/WorkItemsApi.ts +272 -4
  282. package/src/apis/WorkspacesApi.ts +80 -0
  283. package/src/apis/index.ts +3 -0
  284. package/src/models/AccessBd4Enum.ts +53 -0
  285. package/src/models/Cycle.ts +1 -1
  286. package/src/models/CycleCreateRequest.ts +1 -1
  287. package/src/models/CycleIssue.ts +1 -1
  288. package/src/models/CycleIssueRequestRequest.ts +1 -1
  289. package/src/models/CycleLite.ts +1 -1
  290. package/src/models/EntityTypeEnum.ts +1 -1
  291. package/src/models/Epic.ts +302 -0
  292. package/src/models/GenericAssetUploadRequest.ts +1 -1
  293. package/src/models/GetWorkspaceMembers200ResponseInner.ts +1 -1
  294. package/src/models/GroupEnum.ts +1 -1
  295. package/src/models/IntakeIssue.ts +1 -1
  296. package/src/models/IntakeIssueCreateRequest.ts +1 -1
  297. package/src/models/IntakeWorkItemStatusEnum.ts +1 -1
  298. package/src/models/Issue.ts +1 -1
  299. package/src/models/IssueActivity.ts +1 -1
  300. package/src/models/IssueAttachment.ts +1 -1
  301. package/src/models/IssueAttachmentUploadRequest.ts +1 -1
  302. package/src/models/IssueComment.ts +11 -11
  303. package/src/models/IssueCommentCreateRequest.ts +11 -11
  304. package/src/models/IssueDetail.ts +319 -0
  305. package/src/models/IssueExpand.ts +7 -21
  306. package/src/models/IssueForIntakeRequest.ts +1 -1
  307. package/src/models/IssueLink.ts +1 -1
  308. package/src/models/IssueLinkCreateRequest.ts +1 -1
  309. package/src/models/IssuePropertyAPI.ts +11 -11
  310. package/src/models/IssuePropertyAPIRelationTypeEnum.ts +53 -0
  311. package/src/models/IssuePropertyAPIRequest.ts +11 -11
  312. package/src/models/IssuePropertyOptionAPI.ts +1 -1
  313. package/src/models/IssuePropertyOptionAPIRequest.ts +1 -1
  314. package/src/models/IssuePropertyValueAPI.ts +1 -1
  315. package/src/models/IssuePropertyValueAPIDetail.ts +76 -0
  316. package/src/models/IssuePropertyValueAPIRequest.ts +1 -1
  317. package/src/models/IssueRelation.ts +150 -0
  318. package/src/models/IssueRelationCreateRelationTypeEnum.ts +65 -0
  319. package/src/models/IssueRelationCreateRequest.ts +96 -0
  320. package/src/models/IssueRelationRemoveRequest.ts +68 -0
  321. package/src/models/IssueRelationResponse.ts +130 -0
  322. package/src/models/IssueRequest.ts +1 -1
  323. package/src/models/IssueSearch.ts +4 -5
  324. package/src/models/IssueSearchItem.ts +1 -1
  325. package/src/models/IssueTypeAPI.ts +1 -1
  326. package/src/models/IssueTypeAPIRequest.ts +1 -1
  327. package/src/models/IssueWorkLogAPI.ts +1 -1
  328. package/src/models/IssueWorkLogAPIRequest.ts +1 -1
  329. package/src/models/Label.ts +1 -1
  330. package/src/models/LabelCreateUpdateRequest.ts +1 -1
  331. package/src/models/Module.ts +1 -1
  332. package/src/models/ModuleCreateRequest.ts +1 -1
  333. package/src/models/ModuleIssue.ts +1 -1
  334. package/src/models/ModuleIssueRequestRequest.ts +1 -1
  335. package/src/models/ModuleLite.ts +1 -1
  336. package/src/models/ModuleStatusEnum.ts +1 -1
  337. package/src/models/NetworkEnum.ts +1 -1
  338. package/src/models/PageCreateAPI.ts +204 -0
  339. package/src/models/PageCreateAPIAccessEnum.ts +53 -0
  340. package/src/models/PageCreateAPIRequest.ts +148 -0
  341. package/src/models/PageDetailAPI.ts +121 -0
  342. package/src/models/PaginatedArchivedCycleResponse.ts +1 -1
  343. package/src/models/PaginatedArchivedModuleResponse.ts +1 -1
  344. package/src/models/PaginatedCycleIssueResponse.ts +1 -1
  345. package/src/models/PaginatedCycleResponse.ts +1 -1
  346. package/src/models/PaginatedEpicResponse.ts +172 -0
  347. package/src/models/PaginatedIntakeIssueResponse.ts +1 -1
  348. package/src/models/PaginatedIssueActivityDetailResponse.ts +1 -1
  349. package/src/models/PaginatedIssueActivityResponse.ts +1 -1
  350. package/src/models/PaginatedIssueCommentResponse.ts +1 -1
  351. package/src/models/PaginatedIssueLinkDetailResponse.ts +1 -1
  352. package/src/models/PaginatedIssueLinkResponse.ts +1 -1
  353. package/src/models/PaginatedLabelResponse.ts +1 -1
  354. package/src/models/PaginatedModuleIssueResponse.ts +1 -1
  355. package/src/models/PaginatedModuleResponse.ts +1 -1
  356. package/src/models/PaginatedProjectResponse.ts +1 -1
  357. package/src/models/PaginatedStateResponse.ts +1 -1
  358. package/src/models/PaginatedWorkItemResponse.ts +1 -1
  359. package/src/models/PatchedAssetUpdateRequest.ts +1 -1
  360. package/src/models/PatchedCycleUpdateRequest.ts +1 -1
  361. package/src/models/PatchedGenericAssetUpdateRequest.ts +1 -1
  362. package/src/models/PatchedIntakeIssueUpdateRequest.ts +1 -1
  363. package/src/models/PatchedIssueCommentCreateRequest.ts +11 -11
  364. package/src/models/PatchedIssueLinkUpdateRequest.ts +1 -1
  365. package/src/models/PatchedIssuePropertyAPIRequest.ts +11 -11
  366. package/src/models/PatchedIssuePropertyOptionAPIRequest.ts +1 -1
  367. package/src/models/PatchedIssueRequest.ts +1 -1
  368. package/src/models/PatchedIssueTypeAPIRequest.ts +1 -1
  369. package/src/models/PatchedIssueWorkLogAPIRequest.ts +1 -1
  370. package/src/models/PatchedLabelCreateUpdateRequest.ts +1 -1
  371. package/src/models/PatchedModuleUpdateRequest.ts +1 -1
  372. package/src/models/PatchedProjectUpdateRequest.ts +33 -1
  373. package/src/models/PatchedStateRequest.ts +1 -1
  374. package/src/models/PriorityEnum.ts +1 -1
  375. package/src/models/Project.ts +1 -1
  376. package/src/models/ProjectCreateRequest.ts +33 -1
  377. package/src/models/ProjectWorklogSummary.ts +1 -1
  378. package/src/models/PropertyTypeEnum.ts +1 -1
  379. package/src/models/RetrieveWorkItemAttachment400Response.ts +1 -1
  380. package/src/models/State.ts +1 -1
  381. package/src/models/StateLite.ts +1 -1
  382. package/src/models/StateRequest.ts +1 -1
  383. package/src/models/TimezoneEnum.ts +1 -1
  384. package/src/models/TransferCycleIssueRequestRequest.ts +1 -1
  385. package/src/models/TransferCycleWorkItems200Response.ts +1 -1
  386. package/src/models/TransferCycleWorkItems400Response.ts +1 -1
  387. package/src/models/TypeEnum.ts +1 -1
  388. package/src/models/UserAssetUploadRequest.ts +1 -1
  389. package/src/models/UserLite.ts +1 -1
  390. package/src/models/index.ts +15 -3
  391. package/src/runtime.ts +1 -1
  392. package/dist/models/AccessEnum.d.ts +0 -25
  393. package/dist/models/AccessEnum.js +0 -51
  394. package/dist/models/LabelLite.d.ts +0 -46
  395. package/dist/models/LabelLite.js +0 -53
  396. package/dist/models/RelationTypeEnum.d.ts +0 -25
  397. package/dist/models/RelationTypeEnum.js +0 -51
  398. package/src/models/AccessEnum.ts +0 -53
  399. package/src/models/LabelLite.ts +0 -83
  400. package/src/models/RelationTypeEnum.ts +0 -53
@@ -0,0 +1,76 @@
1
+ /* tslint:disable */
2
+ /* eslint-disable */
3
+ /**
4
+ * The Plane REST API
5
+ * The Plane REST API Visit our quick start guide and full API documentation at [developers.plane.so](https://developers.plane.so/api-reference/introduction).
6
+ *
7
+ * The version of the API Spec: 0.0.2
8
+ * Contact: support@plane.so
9
+ *
10
+ * NOTE: This class is auto generated.
11
+ * Do not edit the class manually.
12
+ */
13
+
14
+ import { mapValues } from '../runtime';
15
+ /**
16
+ * Serializer for aggregated issue property values response.
17
+ * This serializer handles the response format from the query_annotator method
18
+ * which returns property_id and values (ArrayAgg of property values).
19
+ * @export
20
+ * @interface IssuePropertyValueAPIDetail
21
+ */
22
+ export interface IssuePropertyValueAPIDetail {
23
+ /**
24
+ * The ID of the issue property
25
+ * @type {string}
26
+ * @memberof IssuePropertyValueAPIDetail
27
+ */
28
+ propertyId: string;
29
+ /**
30
+ * List of aggregated property values for the given property
31
+ * @type {Array<string>}
32
+ * @memberof IssuePropertyValueAPIDetail
33
+ */
34
+ values: Array<string>;
35
+ }
36
+
37
+ /**
38
+ * Check if a given object implements the IssuePropertyValueAPIDetail interface.
39
+ */
40
+ export function instanceOfIssuePropertyValueAPIDetail(value: object): value is IssuePropertyValueAPIDetail {
41
+ if (!('propertyId' in value) || value['propertyId'] === undefined) return false;
42
+ if (!('values' in value) || value['values'] === undefined) return false;
43
+ return true;
44
+ }
45
+
46
+ export function IssuePropertyValueAPIDetailFromJSON(json: any): IssuePropertyValueAPIDetail {
47
+ return IssuePropertyValueAPIDetailFromJSONTyped(json, false);
48
+ }
49
+
50
+ export function IssuePropertyValueAPIDetailFromJSONTyped(json: any, ignoreDiscriminator: boolean): IssuePropertyValueAPIDetail {
51
+ if (json == null) {
52
+ return json;
53
+ }
54
+ return {
55
+
56
+ 'propertyId': json['property_id'],
57
+ 'values': json['values'],
58
+ };
59
+ }
60
+
61
+ export function IssuePropertyValueAPIDetailToJSON(json: any): IssuePropertyValueAPIDetail {
62
+ return IssuePropertyValueAPIDetailToJSONTyped(json, false);
63
+ }
64
+
65
+ export function IssuePropertyValueAPIDetailToJSONTyped(value?: IssuePropertyValueAPIDetail | null, ignoreDiscriminator: boolean = false): any {
66
+ if (value == null) {
67
+ return value;
68
+ }
69
+
70
+ return {
71
+
72
+ 'property_id': value['propertyId'],
73
+ 'values': value['values'],
74
+ };
75
+ }
76
+
@@ -4,7 +4,7 @@
4
4
  * The Plane REST API
5
5
  * The Plane REST API Visit our quick start guide and full API documentation at [developers.plane.so](https://developers.plane.so/api-reference/introduction).
6
6
  *
7
- * The version of the API Spec: 0.0.1
7
+ * The version of the API Spec: 0.0.2
8
8
  * Contact: support@plane.so
9
9
  *
10
10
  * NOTE: This class is auto generated.
@@ -0,0 +1,150 @@
1
+ /* tslint:disable */
2
+ /* eslint-disable */
3
+ /**
4
+ * The Plane REST API
5
+ * The Plane REST API Visit our quick start guide and full API documentation at [developers.plane.so](https://developers.plane.so/api-reference/introduction).
6
+ *
7
+ * The version of the API Spec: 0.0.2
8
+ * Contact: support@plane.so
9
+ *
10
+ * NOTE: This class is auto generated.
11
+ * Do not edit the class manually.
12
+ */
13
+
14
+ import { mapValues } from '../runtime';
15
+ /**
16
+ * Serializer for issue relationships showing related issue details.
17
+ *
18
+ * Provides comprehensive information about related issues including
19
+ * project context, sequence ID, and relationship type.
20
+ * @export
21
+ * @interface IssueRelation
22
+ */
23
+ export interface IssueRelation {
24
+ /**
25
+ *
26
+ * @type {string}
27
+ * @memberof IssueRelation
28
+ */
29
+ readonly id?: string;
30
+ /**
31
+ *
32
+ * @type {string}
33
+ * @memberof IssueRelation
34
+ */
35
+ readonly projectId?: string;
36
+ /**
37
+ *
38
+ * @type {number}
39
+ * @memberof IssueRelation
40
+ */
41
+ readonly sequenceId?: number;
42
+ /**
43
+ *
44
+ * @type {string}
45
+ * @memberof IssueRelation
46
+ */
47
+ readonly relationType?: string;
48
+ /**
49
+ *
50
+ * @type {string}
51
+ * @memberof IssueRelation
52
+ */
53
+ readonly name?: string;
54
+ /**
55
+ *
56
+ * @type {string}
57
+ * @memberof IssueRelation
58
+ */
59
+ readonly typeId?: string;
60
+ /**
61
+ *
62
+ * @type {boolean}
63
+ * @memberof IssueRelation
64
+ */
65
+ readonly isEpic?: boolean;
66
+ /**
67
+ *
68
+ * @type {string}
69
+ * @memberof IssueRelation
70
+ */
71
+ readonly stateId?: string;
72
+ /**
73
+ *
74
+ * @type {string}
75
+ * @memberof IssueRelation
76
+ */
77
+ readonly priority?: string;
78
+ /**
79
+ *
80
+ * @type {string}
81
+ * @memberof IssueRelation
82
+ */
83
+ readonly createdBy?: string | null;
84
+ /**
85
+ *
86
+ * @type {Date}
87
+ * @memberof IssueRelation
88
+ */
89
+ readonly createdAt?: Date;
90
+ /**
91
+ *
92
+ * @type {Date}
93
+ * @memberof IssueRelation
94
+ */
95
+ readonly updatedAt?: Date;
96
+ /**
97
+ *
98
+ * @type {string}
99
+ * @memberof IssueRelation
100
+ */
101
+ readonly updatedBy?: string | null;
102
+ }
103
+
104
+ /**
105
+ * Check if a given object implements the IssueRelation interface.
106
+ */
107
+ export function instanceOfIssueRelation(value: object): value is IssueRelation {
108
+ return true;
109
+ }
110
+
111
+ export function IssueRelationFromJSON(json: any): IssueRelation {
112
+ return IssueRelationFromJSONTyped(json, false);
113
+ }
114
+
115
+ export function IssueRelationFromJSONTyped(json: any, ignoreDiscriminator: boolean): IssueRelation {
116
+ if (json == null) {
117
+ return json;
118
+ }
119
+ return {
120
+
121
+ 'id': json['id'] == null ? undefined : json['id'],
122
+ 'projectId': json['project_id'] == null ? undefined : json['project_id'],
123
+ 'sequenceId': json['sequence_id'] == null ? undefined : json['sequence_id'],
124
+ 'relationType': json['relation_type'] == null ? undefined : json['relation_type'],
125
+ 'name': json['name'] == null ? undefined : json['name'],
126
+ 'typeId': json['type_id'] == null ? undefined : json['type_id'],
127
+ 'isEpic': json['is_epic'] == null ? undefined : json['is_epic'],
128
+ 'stateId': json['state_id'] == null ? undefined : json['state_id'],
129
+ 'priority': json['priority'] == null ? undefined : json['priority'],
130
+ 'createdBy': json['created_by'] == null ? undefined : json['created_by'],
131
+ 'createdAt': json['created_at'] == null ? undefined : (new Date(json['created_at'])),
132
+ 'updatedAt': json['updated_at'] == null ? undefined : (new Date(json['updated_at'])),
133
+ 'updatedBy': json['updated_by'] == null ? undefined : json['updated_by'],
134
+ };
135
+ }
136
+
137
+ export function IssueRelationToJSON(json: any): IssueRelation {
138
+ return IssueRelationToJSONTyped(json, false);
139
+ }
140
+
141
+ export function IssueRelationToJSONTyped(value?: Omit<IssueRelation, 'id'|'project_id'|'sequence_id'|'relation_type'|'name'|'type_id'|'is_epic'|'state_id'|'priority'|'created_by'|'created_at'|'updated_at'|'updated_by'> | null, ignoreDiscriminator: boolean = false): any {
142
+ if (value == null) {
143
+ return value;
144
+ }
145
+
146
+ return {
147
+
148
+ };
149
+ }
150
+
@@ -0,0 +1,65 @@
1
+ /* tslint:disable */
2
+ /* eslint-disable */
3
+ /**
4
+ * The Plane REST API
5
+ * The Plane REST API Visit our quick start guide and full API documentation at [developers.plane.so](https://developers.plane.so/api-reference/introduction).
6
+ *
7
+ * The version of the API Spec: 0.0.2
8
+ * Contact: support@plane.so
9
+ *
10
+ * NOTE: This class is auto generated.
11
+ * Do not edit the class manually.
12
+ */
13
+
14
+
15
+ /**
16
+ * * `blocking` - Blocking
17
+ * * `blocked_by` - Blocked By
18
+ * * `duplicate` - Duplicate
19
+ * * `relates_to` - Relates To
20
+ * * `start_before` - Start Before
21
+ * * `start_after` - Start After
22
+ * * `finish_before` - Finish Before
23
+ * * `finish_after` - Finish After
24
+ * @export
25
+ */
26
+ export const IssueRelationCreateRelationTypeEnum = {
27
+ Blocking: 'blocking',
28
+ BlockedBy: 'blocked_by',
29
+ Duplicate: 'duplicate',
30
+ RelatesTo: 'relates_to',
31
+ StartBefore: 'start_before',
32
+ StartAfter: 'start_after',
33
+ FinishBefore: 'finish_before',
34
+ FinishAfter: 'finish_after'
35
+ } as const;
36
+ export type IssueRelationCreateRelationTypeEnum = typeof IssueRelationCreateRelationTypeEnum[keyof typeof IssueRelationCreateRelationTypeEnum];
37
+
38
+
39
+ export function instanceOfIssueRelationCreateRelationTypeEnum(value: any): boolean {
40
+ for (const key in IssueRelationCreateRelationTypeEnum) {
41
+ if (Object.prototype.hasOwnProperty.call(IssueRelationCreateRelationTypeEnum, key)) {
42
+ if (IssueRelationCreateRelationTypeEnum[key as keyof typeof IssueRelationCreateRelationTypeEnum] === value) {
43
+ return true;
44
+ }
45
+ }
46
+ }
47
+ return false;
48
+ }
49
+
50
+ export function IssueRelationCreateRelationTypeEnumFromJSON(json: any): IssueRelationCreateRelationTypeEnum {
51
+ return IssueRelationCreateRelationTypeEnumFromJSONTyped(json, false);
52
+ }
53
+
54
+ export function IssueRelationCreateRelationTypeEnumFromJSONTyped(json: any, ignoreDiscriminator: boolean): IssueRelationCreateRelationTypeEnum {
55
+ return json as IssueRelationCreateRelationTypeEnum;
56
+ }
57
+
58
+ export function IssueRelationCreateRelationTypeEnumToJSON(value?: IssueRelationCreateRelationTypeEnum | null): any {
59
+ return value as any;
60
+ }
61
+
62
+ export function IssueRelationCreateRelationTypeEnumToJSONTyped(value: any, ignoreDiscriminator: boolean): IssueRelationCreateRelationTypeEnum {
63
+ return value as IssueRelationCreateRelationTypeEnum;
64
+ }
65
+
@@ -0,0 +1,96 @@
1
+ /* tslint:disable */
2
+ /* eslint-disable */
3
+ /**
4
+ * The Plane REST API
5
+ * The Plane REST API Visit our quick start guide and full API documentation at [developers.plane.so](https://developers.plane.so/api-reference/introduction).
6
+ *
7
+ * The version of the API Spec: 0.0.2
8
+ * Contact: support@plane.so
9
+ *
10
+ * NOTE: This class is auto generated.
11
+ * Do not edit the class manually.
12
+ */
13
+
14
+ import { mapValues } from '../runtime';
15
+ import type { IssueRelationCreateRelationTypeEnum } from './IssueRelationCreateRelationTypeEnum';
16
+ import {
17
+ IssueRelationCreateRelationTypeEnumFromJSON,
18
+ IssueRelationCreateRelationTypeEnumFromJSONTyped,
19
+ IssueRelationCreateRelationTypeEnumToJSON,
20
+ IssueRelationCreateRelationTypeEnumToJSONTyped,
21
+ } from './IssueRelationCreateRelationTypeEnum';
22
+
23
+ /**
24
+ * Serializer for creating issue relations.
25
+ *
26
+ * Creates issue relations with the specified relation type and issues.
27
+ * Validates relation types and ensures proper issue ID format.
28
+ * @export
29
+ * @interface IssueRelationCreateRequest
30
+ */
31
+ export interface IssueRelationCreateRequest {
32
+ /**
33
+ * Type of relationship between work items
34
+ *
35
+ * * `blocking` - Blocking
36
+ * * `blocked_by` - Blocked By
37
+ * * `duplicate` - Duplicate
38
+ * * `relates_to` - Relates To
39
+ * * `start_before` - Start Before
40
+ * * `start_after` - Start After
41
+ * * `finish_before` - Finish Before
42
+ * * `finish_after` - Finish After
43
+ * @type {IssueRelationCreateRelationTypeEnum}
44
+ * @memberof IssueRelationCreateRequest
45
+ */
46
+ relationType: IssueRelationCreateRelationTypeEnum;
47
+ /**
48
+ * Array of work item IDs to create relations with
49
+ * @type {Array<string>}
50
+ * @memberof IssueRelationCreateRequest
51
+ */
52
+ issues: Array<string>;
53
+ }
54
+
55
+
56
+
57
+ /**
58
+ * Check if a given object implements the IssueRelationCreateRequest interface.
59
+ */
60
+ export function instanceOfIssueRelationCreateRequest(value: object): value is IssueRelationCreateRequest {
61
+ if (!('relationType' in value) || value['relationType'] === undefined) return false;
62
+ if (!('issues' in value) || value['issues'] === undefined) return false;
63
+ return true;
64
+ }
65
+
66
+ export function IssueRelationCreateRequestFromJSON(json: any): IssueRelationCreateRequest {
67
+ return IssueRelationCreateRequestFromJSONTyped(json, false);
68
+ }
69
+
70
+ export function IssueRelationCreateRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): IssueRelationCreateRequest {
71
+ if (json == null) {
72
+ return json;
73
+ }
74
+ return {
75
+
76
+ 'relationType': IssueRelationCreateRelationTypeEnumFromJSON(json['relation_type']),
77
+ 'issues': json['issues'],
78
+ };
79
+ }
80
+
81
+ export function IssueRelationCreateRequestToJSON(json: any): IssueRelationCreateRequest {
82
+ return IssueRelationCreateRequestToJSONTyped(json, false);
83
+ }
84
+
85
+ export function IssueRelationCreateRequestToJSONTyped(value?: IssueRelationCreateRequest | null, ignoreDiscriminator: boolean = false): any {
86
+ if (value == null) {
87
+ return value;
88
+ }
89
+
90
+ return {
91
+
92
+ 'relation_type': IssueRelationCreateRelationTypeEnumToJSON(value['relationType']),
93
+ 'issues': value['issues'],
94
+ };
95
+ }
96
+
@@ -0,0 +1,68 @@
1
+ /* tslint:disable */
2
+ /* eslint-disable */
3
+ /**
4
+ * The Plane REST API
5
+ * The Plane REST API Visit our quick start guide and full API documentation at [developers.plane.so](https://developers.plane.so/api-reference/introduction).
6
+ *
7
+ * The version of the API Spec: 0.0.2
8
+ * Contact: support@plane.so
9
+ *
10
+ * NOTE: This class is auto generated.
11
+ * Do not edit the class manually.
12
+ */
13
+
14
+ import { mapValues } from '../runtime';
15
+ /**
16
+ * Serializer for removing issue relations.
17
+ *
18
+ * Removes existing relationships between work items by specifying
19
+ * the related issue ID.
20
+ * @export
21
+ * @interface IssueRelationRemoveRequest
22
+ */
23
+ export interface IssueRelationRemoveRequest {
24
+ /**
25
+ * ID of the related work item to remove relation with
26
+ * @type {string}
27
+ * @memberof IssueRelationRemoveRequest
28
+ */
29
+ relatedIssue: string;
30
+ }
31
+
32
+ /**
33
+ * Check if a given object implements the IssueRelationRemoveRequest interface.
34
+ */
35
+ export function instanceOfIssueRelationRemoveRequest(value: object): value is IssueRelationRemoveRequest {
36
+ if (!('relatedIssue' in value) || value['relatedIssue'] === undefined) return false;
37
+ return true;
38
+ }
39
+
40
+ export function IssueRelationRemoveRequestFromJSON(json: any): IssueRelationRemoveRequest {
41
+ return IssueRelationRemoveRequestFromJSONTyped(json, false);
42
+ }
43
+
44
+ export function IssueRelationRemoveRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): IssueRelationRemoveRequest {
45
+ if (json == null) {
46
+ return json;
47
+ }
48
+ return {
49
+
50
+ 'relatedIssue': json['related_issue'],
51
+ };
52
+ }
53
+
54
+ export function IssueRelationRemoveRequestToJSON(json: any): IssueRelationRemoveRequest {
55
+ return IssueRelationRemoveRequestToJSONTyped(json, false);
56
+ }
57
+
58
+ export function IssueRelationRemoveRequestToJSONTyped(value?: IssueRelationRemoveRequest | null, ignoreDiscriminator: boolean = false): any {
59
+ if (value == null) {
60
+ return value;
61
+ }
62
+
63
+ return {
64
+
65
+ 'related_issue': value['relatedIssue'],
66
+ };
67
+ }
68
+
@@ -0,0 +1,130 @@
1
+ /* tslint:disable */
2
+ /* eslint-disable */
3
+ /**
4
+ * The Plane REST API
5
+ * The Plane REST API Visit our quick start guide and full API documentation at [developers.plane.so](https://developers.plane.so/api-reference/introduction).
6
+ *
7
+ * The version of the API Spec: 0.0.2
8
+ * Contact: support@plane.so
9
+ *
10
+ * NOTE: This class is auto generated.
11
+ * Do not edit the class manually.
12
+ */
13
+
14
+ import { mapValues } from '../runtime';
15
+ /**
16
+ * Serializer for issue relations response showing grouped relation types.
17
+ *
18
+ * Returns issue IDs organized by relation type for efficient client-side processing.
19
+ * @export
20
+ * @interface IssueRelationResponse
21
+ */
22
+ export interface IssueRelationResponse {
23
+ /**
24
+ * List of issue IDs that are blocking this issue
25
+ * @type {Array<string>}
26
+ * @memberof IssueRelationResponse
27
+ */
28
+ blocking: Array<string>;
29
+ /**
30
+ * List of issue IDs that this issue is blocked by
31
+ * @type {Array<string>}
32
+ * @memberof IssueRelationResponse
33
+ */
34
+ blockedBy: Array<string>;
35
+ /**
36
+ * List of issue IDs that are duplicates of this issue
37
+ * @type {Array<string>}
38
+ * @memberof IssueRelationResponse
39
+ */
40
+ duplicate: Array<string>;
41
+ /**
42
+ * List of issue IDs that relate to this issue
43
+ * @type {Array<string>}
44
+ * @memberof IssueRelationResponse
45
+ */
46
+ relatesTo: Array<string>;
47
+ /**
48
+ * List of issue IDs that start after this issue
49
+ * @type {Array<string>}
50
+ * @memberof IssueRelationResponse
51
+ */
52
+ startAfter: Array<string>;
53
+ /**
54
+ * List of issue IDs that start before this issue
55
+ * @type {Array<string>}
56
+ * @memberof IssueRelationResponse
57
+ */
58
+ startBefore: Array<string>;
59
+ /**
60
+ * List of issue IDs that finish after this issue
61
+ * @type {Array<string>}
62
+ * @memberof IssueRelationResponse
63
+ */
64
+ finishAfter: Array<string>;
65
+ /**
66
+ * List of issue IDs that finish before this issue
67
+ * @type {Array<string>}
68
+ * @memberof IssueRelationResponse
69
+ */
70
+ finishBefore: Array<string>;
71
+ }
72
+
73
+ /**
74
+ * Check if a given object implements the IssueRelationResponse interface.
75
+ */
76
+ export function instanceOfIssueRelationResponse(value: object): value is IssueRelationResponse {
77
+ if (!('blocking' in value) || value['blocking'] === undefined) return false;
78
+ if (!('blockedBy' in value) || value['blockedBy'] === undefined) return false;
79
+ if (!('duplicate' in value) || value['duplicate'] === undefined) return false;
80
+ if (!('relatesTo' in value) || value['relatesTo'] === undefined) return false;
81
+ if (!('startAfter' in value) || value['startAfter'] === undefined) return false;
82
+ if (!('startBefore' in value) || value['startBefore'] === undefined) return false;
83
+ if (!('finishAfter' in value) || value['finishAfter'] === undefined) return false;
84
+ if (!('finishBefore' in value) || value['finishBefore'] === undefined) return false;
85
+ return true;
86
+ }
87
+
88
+ export function IssueRelationResponseFromJSON(json: any): IssueRelationResponse {
89
+ return IssueRelationResponseFromJSONTyped(json, false);
90
+ }
91
+
92
+ export function IssueRelationResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): IssueRelationResponse {
93
+ if (json == null) {
94
+ return json;
95
+ }
96
+ return {
97
+
98
+ 'blocking': json['blocking'],
99
+ 'blockedBy': json['blocked_by'],
100
+ 'duplicate': json['duplicate'],
101
+ 'relatesTo': json['relates_to'],
102
+ 'startAfter': json['start_after'],
103
+ 'startBefore': json['start_before'],
104
+ 'finishAfter': json['finish_after'],
105
+ 'finishBefore': json['finish_before'],
106
+ };
107
+ }
108
+
109
+ export function IssueRelationResponseToJSON(json: any): IssueRelationResponse {
110
+ return IssueRelationResponseToJSONTyped(json, false);
111
+ }
112
+
113
+ export function IssueRelationResponseToJSONTyped(value?: IssueRelationResponse | null, ignoreDiscriminator: boolean = false): any {
114
+ if (value == null) {
115
+ return value;
116
+ }
117
+
118
+ return {
119
+
120
+ 'blocking': value['blocking'],
121
+ 'blocked_by': value['blockedBy'],
122
+ 'duplicate': value['duplicate'],
123
+ 'relates_to': value['relatesTo'],
124
+ 'start_after': value['startAfter'],
125
+ 'start_before': value['startBefore'],
126
+ 'finish_after': value['finishAfter'],
127
+ 'finish_before': value['finishBefore'],
128
+ };
129
+ }
130
+
@@ -4,7 +4,7 @@
4
4
  * The Plane REST API
5
5
  * The Plane REST API Visit our quick start guide and full API documentation at [developers.plane.so](https://developers.plane.so/api-reference/introduction).
6
6
  *
7
- * The version of the API Spec: 0.0.1
7
+ * The version of the API Spec: 0.0.2
8
8
  * Contact: support@plane.so
9
9
  *
10
10
  * NOTE: This class is auto generated.
@@ -4,7 +4,7 @@
4
4
  * The Plane REST API
5
5
  * The Plane REST API Visit our quick start guide and full API documentation at [developers.plane.so](https://developers.plane.so/api-reference/introduction).
6
6
  *
7
- * The version of the API Spec: 0.0.1
7
+ * The version of the API Spec: 0.0.2
8
8
  * Contact: support@plane.so
9
9
  *
10
10
  * NOTE: This class is auto generated.
@@ -21,16 +21,15 @@ import {
21
21
  } from './IssueSearchItem';
22
22
 
23
23
  /**
24
- * Serializer for work item search result data formatting.
24
+ * Search results for work items.
25
25
  *
26
- * Provides standardized search result structure including work item identifiers,
27
- * project context, and workspace information for search API responses.
26
+ * Provides list of issues with their identifiers, names, and project context.
28
27
  * @export
29
28
  * @interface IssueSearch
30
29
  */
31
30
  export interface IssueSearch {
32
31
  /**
33
- * Array of search result issues
32
+ *
34
33
  * @type {Array<IssueSearchItem>}
35
34
  * @memberof IssueSearch
36
35
  */
@@ -4,7 +4,7 @@
4
4
  * The Plane REST API
5
5
  * The Plane REST API Visit our quick start guide and full API documentation at [developers.plane.so](https://developers.plane.so/api-reference/introduction).
6
6
  *
7
- * The version of the API Spec: 0.0.1
7
+ * The version of the API Spec: 0.0.2
8
8
  * Contact: support@plane.so
9
9
  *
10
10
  * NOTE: This class is auto generated.
@@ -4,7 +4,7 @@
4
4
  * The Plane REST API
5
5
  * The Plane REST API Visit our quick start guide and full API documentation at [developers.plane.so](https://developers.plane.so/api-reference/introduction).
6
6
  *
7
- * The version of the API Spec: 0.0.1
7
+ * The version of the API Spec: 0.0.2
8
8
  * Contact: support@plane.so
9
9
  *
10
10
  * NOTE: This class is auto generated.
@@ -4,7 +4,7 @@
4
4
  * The Plane REST API
5
5
  * The Plane REST API Visit our quick start guide and full API documentation at [developers.plane.so](https://developers.plane.so/api-reference/introduction).
6
6
  *
7
- * The version of the API Spec: 0.0.1
7
+ * The version of the API Spec: 0.0.2
8
8
  * Contact: support@plane.so
9
9
  *
10
10
  * NOTE: This class is auto generated.
@@ -4,7 +4,7 @@
4
4
  * The Plane REST API
5
5
  * The Plane REST API Visit our quick start guide and full API documentation at [developers.plane.so](https://developers.plane.so/api-reference/introduction).
6
6
  *
7
- * The version of the API Spec: 0.0.1
7
+ * The version of the API Spec: 0.0.2
8
8
  * Contact: support@plane.so
9
9
  *
10
10
  * NOTE: This class is auto generated.
@@ -4,7 +4,7 @@
4
4
  * The Plane REST API
5
5
  * The Plane REST API Visit our quick start guide and full API documentation at [developers.plane.so](https://developers.plane.so/api-reference/introduction).
6
6
  *
7
- * The version of the API Spec: 0.0.1
7
+ * The version of the API Spec: 0.0.2
8
8
  * Contact: support@plane.so
9
9
  *
10
10
  * NOTE: This class is auto generated.