@shortcut/client 2.3.1 → 3.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.
@@ -191,7 +191,7 @@ var Api = class extends require_http_client.HttpClient {
191
191
  ...params
192
192
  });
193
193
  /**
194
- * @description Creates a new Doc.
194
+ * @description Creates a new Doc. Supports markdown or HTML input via content_format parameter.
195
195
  *
196
196
  * @name CreateDoc
197
197
  * @summary Create Doc
@@ -208,6 +208,55 @@ var Api = class extends require_http_client.HttpClient {
208
208
  ...params
209
209
  });
210
210
  /**
211
+ * @description Get a Doc by its public ID with content. Use content_format=html query parameter to include HTML content.
212
+ *
213
+ * @name GetDoc
214
+ * @summary Get Doc
215
+ * @request GET:/api/v3/documents/{doc-public-id}
216
+ * @secure
217
+ */
218
+ getDoc = (docPublicId, query, params = {}) => this.request({
219
+ path: `/api/v3/documents/${docPublicId}`,
220
+ method: "GET",
221
+ query,
222
+ secure: true,
223
+ format: "json",
224
+ ...params
225
+ });
226
+ /**
227
+ * @description Updates an existing Doc's title and/or content. Supports markdown or HTML input via content_format parameter. When a document is updated: (1) If users are connected, SSE events notify them to refresh their view. (2) If no users are connected, CKEditor cache is flushed to ensure fresh content.
228
+ *
229
+ * @name UpdateDoc
230
+ * @summary Update Doc
231
+ * @request PUT:/api/v3/documents/{doc-public-id}
232
+ * @secure
233
+ */
234
+ updateDoc = (docPublicId, UpdateDoc, params = {}) => this.request({
235
+ path: `/api/v3/documents/${docPublicId}`,
236
+ method: "PUT",
237
+ body: UpdateDoc,
238
+ secure: true,
239
+ type: require_http_client.ContentType.Json,
240
+ format: "json",
241
+ ...params
242
+ });
243
+ /**
244
+ * @description Permanently deletes a Doc and its associated data. Requires admin access to the doc. When a document is deleted, connected clients will be notified via SSE events.
245
+ *
246
+ * @name DeleteDoc
247
+ * @summary Delete Doc
248
+ * @request DELETE:/api/v3/documents/{doc-public-id}
249
+ * @secure
250
+ */
251
+ deleteDoc = (docPublicId, GetDoc, params = {}) => this.request({
252
+ path: `/api/v3/documents/${docPublicId}`,
253
+ method: "DELETE",
254
+ body: GetDoc,
255
+ secure: true,
256
+ type: require_http_client.ContentType.Json,
257
+ ...params
258
+ });
259
+ /**
211
260
  * @description List all the entity templates for the Workspace.
212
261
  *
213
262
  * @name ListEntityTemplates
@@ -697,9 +746,10 @@ var Api = class extends require_http_client.HttpClient {
697
746
  * @request GET:/api/v3/groups
698
747
  * @secure
699
748
  */
700
- listGroups = (params = {}) => this.request({
749
+ listGroups = (query, params = {}) => this.request({
701
750
  path: `/api/v3/groups`,
702
751
  method: "GET",
752
+ query,
703
753
  secure: true,
704
754
  format: "json",
705
755
  ...params
@@ -1546,6 +1596,22 @@ var Api = class extends require_http_client.HttpClient {
1546
1596
  ...params
1547
1597
  });
1548
1598
  /**
1599
+ * @description Search Documents lets you search Documents based on desired parameters. Supports structured filters: title, archived, created_by_me, followed_by_me.
1600
+ *
1601
+ * @name SearchDocuments
1602
+ * @summary Search Documents
1603
+ * @request GET:/api/v3/search/documents
1604
+ * @secure
1605
+ */
1606
+ searchDocuments = (query, params = {}) => this.request({
1607
+ path: `/api/v3/search/documents`,
1608
+ method: "GET",
1609
+ query,
1610
+ secure: true,
1611
+ format: "json",
1612
+ ...params
1613
+ });
1614
+ /**
1549
1615
  * @description Search Epics lets you search Epics based on desired parameters. Since ordering of stories can change over time (due to search ranking decay, new Epics being created), the `next` value from the previous response can be used as the path and query string for the next page to ensure stable ordering.
1550
1616
  *
1551
1617
  * @name SearchEpics
@@ -1914,6 +1980,21 @@ var Api = class extends require_http_client.HttpClient {
1914
1980
  ...params
1915
1981
  });
1916
1982
  /**
1983
+ * @description List Story Sub tasks returns a list of all Sub-task Stories for a given parent Story.
1984
+ *
1985
+ * @name ListStorySubTasks
1986
+ * @summary List Story Sub tasks
1987
+ * @request GET:/api/v3/stories/{story-public-id}/sub-tasks
1988
+ * @secure
1989
+ */
1990
+ listStorySubTasks = (storyPublicId, params = {}) => this.request({
1991
+ path: `/api/v3/stories/${storyPublicId}/sub-tasks`,
1992
+ method: "GET",
1993
+ secure: true,
1994
+ format: "json",
1995
+ ...params
1996
+ });
1997
+ /**
1917
1998
  * @description Create Task is used to create a new task in a Story.
1918
1999
  *
1919
2000
  * @name CreateTask
@@ -191,7 +191,7 @@ var Api = class extends HttpClient {
191
191
  ...params
192
192
  });
193
193
  /**
194
- * @description Creates a new Doc.
194
+ * @description Creates a new Doc. Supports markdown or HTML input via content_format parameter.
195
195
  *
196
196
  * @name CreateDoc
197
197
  * @summary Create Doc
@@ -208,6 +208,55 @@ var Api = class extends HttpClient {
208
208
  ...params
209
209
  });
210
210
  /**
211
+ * @description Get a Doc by its public ID with content. Use content_format=html query parameter to include HTML content.
212
+ *
213
+ * @name GetDoc
214
+ * @summary Get Doc
215
+ * @request GET:/api/v3/documents/{doc-public-id}
216
+ * @secure
217
+ */
218
+ getDoc = (docPublicId, query, params = {}) => this.request({
219
+ path: `/api/v3/documents/${docPublicId}`,
220
+ method: "GET",
221
+ query,
222
+ secure: true,
223
+ format: "json",
224
+ ...params
225
+ });
226
+ /**
227
+ * @description Updates an existing Doc's title and/or content. Supports markdown or HTML input via content_format parameter. When a document is updated: (1) If users are connected, SSE events notify them to refresh their view. (2) If no users are connected, CKEditor cache is flushed to ensure fresh content.
228
+ *
229
+ * @name UpdateDoc
230
+ * @summary Update Doc
231
+ * @request PUT:/api/v3/documents/{doc-public-id}
232
+ * @secure
233
+ */
234
+ updateDoc = (docPublicId, UpdateDoc, params = {}) => this.request({
235
+ path: `/api/v3/documents/${docPublicId}`,
236
+ method: "PUT",
237
+ body: UpdateDoc,
238
+ secure: true,
239
+ type: ContentType.Json,
240
+ format: "json",
241
+ ...params
242
+ });
243
+ /**
244
+ * @description Permanently deletes a Doc and its associated data. Requires admin access to the doc. When a document is deleted, connected clients will be notified via SSE events.
245
+ *
246
+ * @name DeleteDoc
247
+ * @summary Delete Doc
248
+ * @request DELETE:/api/v3/documents/{doc-public-id}
249
+ * @secure
250
+ */
251
+ deleteDoc = (docPublicId, GetDoc, params = {}) => this.request({
252
+ path: `/api/v3/documents/${docPublicId}`,
253
+ method: "DELETE",
254
+ body: GetDoc,
255
+ secure: true,
256
+ type: ContentType.Json,
257
+ ...params
258
+ });
259
+ /**
211
260
  * @description List all the entity templates for the Workspace.
212
261
  *
213
262
  * @name ListEntityTemplates
@@ -697,9 +746,10 @@ var Api = class extends HttpClient {
697
746
  * @request GET:/api/v3/groups
698
747
  * @secure
699
748
  */
700
- listGroups = (params = {}) => this.request({
749
+ listGroups = (query, params = {}) => this.request({
701
750
  path: `/api/v3/groups`,
702
751
  method: "GET",
752
+ query,
703
753
  secure: true,
704
754
  format: "json",
705
755
  ...params
@@ -1546,6 +1596,22 @@ var Api = class extends HttpClient {
1546
1596
  ...params
1547
1597
  });
1548
1598
  /**
1599
+ * @description Search Documents lets you search Documents based on desired parameters. Supports structured filters: title, archived, created_by_me, followed_by_me.
1600
+ *
1601
+ * @name SearchDocuments
1602
+ * @summary Search Documents
1603
+ * @request GET:/api/v3/search/documents
1604
+ * @secure
1605
+ */
1606
+ searchDocuments = (query, params = {}) => this.request({
1607
+ path: `/api/v3/search/documents`,
1608
+ method: "GET",
1609
+ query,
1610
+ secure: true,
1611
+ format: "json",
1612
+ ...params
1613
+ });
1614
+ /**
1549
1615
  * @description Search Epics lets you search Epics based on desired parameters. Since ordering of stories can change over time (due to search ranking decay, new Epics being created), the `next` value from the previous response can be used as the path and query string for the next page to ensure stable ordering.
1550
1616
  *
1551
1617
  * @name SearchEpics
@@ -1914,6 +1980,21 @@ var Api = class extends HttpClient {
1914
1980
  ...params
1915
1981
  });
1916
1982
  /**
1983
+ * @description List Story Sub tasks returns a list of all Sub-task Stories for a given parent Story.
1984
+ *
1985
+ * @name ListStorySubTasks
1986
+ * @summary List Story Sub tasks
1987
+ * @request GET:/api/v3/stories/{story-public-id}/sub-tasks
1988
+ * @secure
1989
+ */
1990
+ listStorySubTasks = (storyPublicId, params = {}) => this.request({
1991
+ path: `/api/v3/stories/${storyPublicId}/sub-tasks`,
1992
+ method: "GET",
1993
+ secure: true,
1994
+ format: "json",
1995
+ ...params
1996
+ });
1997
+ /**
1917
1998
  * @description Create Task is used to create a new task in a Story.
1918
1999
  *
1919
2000
  * @name CreateTask
@@ -224,13 +224,15 @@ interface CreateCommentComment {
224
224
  }
225
225
  interface CreateDoc {
226
226
  /**
227
- * The title for the new document
227
+ * The title for the new document.
228
228
  * @minLength 1
229
229
  * @maxLength 256
230
230
  */
231
231
  title: string;
232
- /** The content for the new document */
232
+ /** The content for the new document. */
233
233
  content: string;
234
+ /** Format of the content being sent. Defaults to 'html'. If 'markdown', content will be converted to HTML for storage. Storage is always HTML; this parameter just tells us what format you're sending. */
235
+ content_format?: "markdown" | "html";
234
236
  }
235
237
  /** Request parameters for creating an entirely new entity template. */
236
238
  interface CreateEntityTemplate {
@@ -733,7 +735,10 @@ interface CreateStoryContents {
733
735
  epic_id?: number | null;
734
736
  /** An array of external links to be populated. */
735
737
  external_links?: string[];
736
- /** An array of sub-tasks connected to the story */
738
+ /**
739
+ * An array of maps specifying the sub-tasks to create and link to the story.
740
+ * Field only applicable when Sub-task feature is enabled.
741
+ */
737
742
  sub_tasks?: CreateSubTaskParams[];
738
743
  /**
739
744
  * The ID of the iteration the to be populated.
@@ -856,7 +861,10 @@ interface CreateStoryFromTemplateParams {
856
861
  * @uniqueItems true
857
862
  */
858
863
  follower_ids_remove?: string[];
859
- /** A list of either params to create a new sub-task or link an existing story as a sub-task */
864
+ /**
865
+ * An array of maps specifying sub-tasks to be associated with the created story. Each map can either link to an existing story or create a new sub-task story to be linked to the created story.
866
+ * Field only applicable when Sub-task feature is enabled.
867
+ */
860
868
  sub_tasks?: (LinkSubTaskParams | CreateSubTaskParams)[];
861
869
  /**
862
870
  * An array of IDs of linked files removed from files from the template. Cannot be used in conjunction with `linked_files.`
@@ -921,7 +929,8 @@ interface CreateStoryFromTemplateParams {
921
929
  */
922
930
  external_id?: string;
923
931
  /**
924
- * The id of the parent story to associate with this story.
932
+ * The ID of the parent story to associate with this story (making the created story a sub-task).
933
+ * Field only applicable when Sub-task feature is enabled.
925
934
  * @format int64
926
935
  */
927
936
  parent_story_id?: number | null;
@@ -1064,7 +1073,10 @@ interface CreateStoryParams {
1064
1073
  story_template_id?: string | null;
1065
1074
  /** An array of External Links associated with this story. */
1066
1075
  external_links?: string[];
1067
- /** A list of either params to create a new sub-task or link an existing story as a sub-task */
1076
+ /**
1077
+ * An array of maps specifying sub-tasks to be associated with the created story. Each map can either link to an existing story or create a new sub-task story to be linked to the created story.
1078
+ * Field only applicable when Sub-task feature is enabled.
1079
+ */
1068
1080
  sub_tasks?: (LinkSubTaskParams | CreateSubTaskParams)[];
1069
1081
  /**
1070
1082
  * The ID of the member that requested the story.
@@ -1114,7 +1126,8 @@ interface CreateStoryParams {
1114
1126
  */
1115
1127
  external_id?: string;
1116
1128
  /**
1117
- * The id of the parent story to associate with this story.
1129
+ * The ID of the parent story to associate with this story (making the created story a sub-task).
1130
+ * Field only applicable when Sub-task feature is enabled.
1118
1131
  * @format int64
1119
1132
  */
1120
1133
  parent_story_id?: number | null;
@@ -1328,6 +1341,45 @@ interface DisabledFeatureError {
1328
1341
  /** The message explaining the error */
1329
1342
  message: string;
1330
1343
  }
1344
+ interface Doc {
1345
+ /**
1346
+ * The public id of the Doc
1347
+ * @format uuid
1348
+ */
1349
+ id: string;
1350
+ /** The Doc's title */
1351
+ title?: string | null;
1352
+ /** The Doc's content in Markdown format (converted from HTML storage). */
1353
+ content_markdown?: string | null;
1354
+ /** The Doc's content in HTML format (as stored in S3). Only included when include_html=true query parameter is provided. */
1355
+ content_html?: string | null;
1356
+ /** The Shortcut application url for the Doc */
1357
+ app_url: string;
1358
+ /**
1359
+ * The time/date the Doc was created
1360
+ * @format date-time
1361
+ */
1362
+ created_at: string;
1363
+ /**
1364
+ * The time/date the Doc was last updated
1365
+ * @format date-time
1366
+ */
1367
+ updated_at: string;
1368
+ /** Whether the Doc is archived */
1369
+ archived: boolean;
1370
+ }
1371
+ /** The results of the Document search query. */
1372
+ interface DocSearchResults {
1373
+ /**
1374
+ * The total number of matches for the search query. The first 1000 matches can be paged through via the API.
1375
+ * @format int64
1376
+ */
1377
+ total: number;
1378
+ /** A list of document search results. */
1379
+ data: DocSlim[];
1380
+ /** The URL path and query string for the next page of search results. */
1381
+ next?: string | null;
1382
+ }
1331
1383
  interface DocSlim {
1332
1384
  /**
1333
1385
  * The public id of the Doc
@@ -1959,6 +2011,10 @@ interface EpicWorkflow {
1959
2011
  /** A map of the Epic States in this Epic Workflow. */
1960
2012
  epic_states: EpicState[];
1961
2013
  }
2014
+ interface GetDoc {
2015
+ /** Format of the content to return. Defaults to 'markdown'. If 'html', includes HTML content in response. */
2016
+ content_format?: "markdown" | "html";
2017
+ }
1962
2018
  /** A Group. */
1963
2019
  interface Group {
1964
2020
  /** The Shortcut application url for the Group. */
@@ -4108,6 +4164,10 @@ interface Story {
4108
4164
  * @format int64
4109
4165
  */
4110
4166
  iteration_id?: number | null;
4167
+ /**
4168
+ * The Story IDs of Sub-tasks attached to the Story
4169
+ * Field only applicable when Sub-task feature is enabled.
4170
+ */
4111
4171
  sub_task_story_ids?: number[];
4112
4172
  /** An array of tasks connected to the story. */
4113
4173
  tasks: Task[];
@@ -4155,7 +4215,11 @@ interface Story {
4155
4215
  * @format int64
4156
4216
  */
4157
4217
  lead_time?: number;
4158
- /** @format int64 */
4218
+ /**
4219
+ * The ID of the parent story to this story (making this story a sub-task).
4220
+ * Field only applicable when Sub-task feature is enabled.
4221
+ * @format int64
4222
+ */
4159
4223
  parent_story_id?: number | null;
4160
4224
  /**
4161
4225
  * The numeric point estimate of the story. Can also be null, which means unestimated.
@@ -4286,7 +4350,10 @@ interface StoryContents {
4286
4350
  epic_id?: number;
4287
4351
  /** An array of external links connected to the story. */
4288
4352
  external_links?: string[];
4289
- /** An array of sub-tasks connected to the story */
4353
+ /**
4354
+ * An array of maps specifying the sub-tasks to create and link to the story.
4355
+ * Field only applicable when Sub-task feature is enabled.
4356
+ */
4290
4357
  sub_tasks?: CreateSubTaskParams[];
4291
4358
  /**
4292
4359
  * The ID of the iteration the story belongs to.
@@ -4548,6 +4615,10 @@ interface StorySearchResult {
4548
4615
  * @format int64
4549
4616
  */
4550
4617
  iteration_id?: number | null;
4618
+ /**
4619
+ * The Story IDs of Sub-tasks attached to the Story
4620
+ * Field only applicable when Sub-task feature is enabled.
4621
+ */
4551
4622
  sub_task_story_ids?: number[];
4552
4623
  /** An array of tasks connected to the story. */
4553
4624
  tasks?: Task[];
@@ -4595,7 +4666,11 @@ interface StorySearchResult {
4595
4666
  * @format int64
4596
4667
  */
4597
4668
  lead_time?: number;
4598
- /** @format int64 */
4669
+ /**
4670
+ * The ID of the parent story to this story (making this story a sub-task).
4671
+ * Field only applicable when Sub-task feature is enabled.
4672
+ * @format int64
4673
+ */
4599
4674
  parent_story_id?: number | null;
4600
4675
  /**
4601
4676
  * The numeric point estimate of the story. Can also be null, which means unestimated.
@@ -4743,6 +4818,10 @@ interface StorySlim {
4743
4818
  * @format int64
4744
4819
  */
4745
4820
  iteration_id?: number | null;
4821
+ /**
4822
+ * The Story IDs of Sub-tasks attached to the Story
4823
+ * Field only applicable when Sub-task feature is enabled.
4824
+ */
4746
4825
  sub_task_story_ids?: number[];
4747
4826
  /** The formatted branch name for this story. */
4748
4827
  formatted_vcs_branch_name?: string | null;
@@ -4786,7 +4865,11 @@ interface StorySlim {
4786
4865
  * @format int64
4787
4866
  */
4788
4867
  lead_time?: number;
4789
- /** @format int64 */
4868
+ /**
4869
+ * The ID of the parent story to this story (making this story a sub-task).
4870
+ * Field only applicable when Sub-task feature is enabled.
4871
+ * @format int64
4872
+ */
4790
4873
  parent_story_id?: number | null;
4791
4874
  /**
4792
4875
  * The numeric point estimate of the story. Can also be null, which means unestimated.
@@ -5060,6 +5143,18 @@ interface UpdateCustomFieldEnumValue {
5060
5143
  /** Whether this EnumValue is enabled for its CustomField or not. Leaving this key out of the request leaves the current enabled state untouched. */
5061
5144
  enabled?: boolean;
5062
5145
  }
5146
+ interface UpdateDoc {
5147
+ /**
5148
+ * The new title for the document
5149
+ * @minLength 1
5150
+ * @maxLength 256
5151
+ */
5152
+ title?: string;
5153
+ /** The new content for the document. */
5154
+ content?: string;
5155
+ /** Format of content. For input: specifies format of provided content (defaults to 'html'). For output: controls response format - 'markdown' (default) or 'html' to include HTML content. */
5156
+ content_format?: "markdown" | "html";
5157
+ }
5063
5158
  /**
5064
5159
  * Request parameters for changing either a template's name or any of
5065
5160
  * the attributes it is designed to pre-populate.
@@ -5610,6 +5705,8 @@ interface UpdateStory {
5610
5705
  * @uniqueItems true
5611
5706
  */
5612
5707
  commit_ids?: number[];
5708
+ /** An array of story IDs to attach to this story as sub-tasks. This list represents the final state of the parent's sub-tasks - missing stories will be unlinked, new stories will be linked, and the input order reflects sub-task positions. */
5709
+ sub_tasks?: LinkSubTaskParams[];
5613
5710
  /**
5614
5711
  * The ID of the member that requested the story.
5615
5712
  * @format uuid
@@ -5712,7 +5809,10 @@ interface UpdateStoryContents {
5712
5809
  epic_id?: number | null;
5713
5810
  /** An array of external links to be populated. */
5714
5811
  external_links?: string[];
5715
- /** An array of sub-tasks connected to the story */
5812
+ /**
5813
+ * An array of maps specifying the sub-tasks to create and link to the story.
5814
+ * Field only applicable when Sub-task feature is enabled.
5815
+ */
5716
5816
  sub_tasks?: CreateSubTaskParams[];
5717
5817
  /**
5718
5818
  * The ID of the iteration the to be populated.
@@ -5936,4 +6036,4 @@ interface WorkflowState {
5936
6036
  created_at: string;
5937
6037
  }
5938
6038
  //#endregion
5939
- export { BaseTaskParams, BasicWorkspaceInfo, Branch, Category, Commit, CreateCategory, CreateCategoryParams, CreateCommentComment, CreateDoc, CreateEntityTemplate, CreateEpic, CreateEpicComment, CreateEpicHealth, CreateGenericIntegration, CreateGroup, CreateIteration, CreateLabelParams, CreateLinkedFile, CreateMilestone, CreateObjective, CreateOrDeleteStoryReaction, CreateProject, CreateStories, CreateStoryComment, CreateStoryCommentParams, CreateStoryContents, CreateStoryFromTemplateParams, CreateStoryLink, CreateStoryLinkParams, CreateStoryParams, CreateSubTaskParams, CreateTask, CreateTaskParams, CustomField, CustomFieldEnumValue, CustomFieldValueParams, DataConflictError, DeleteStories, DisabledFeatureError, DocSlim, EntityTemplate, Epic, EpicAssociatedGroup, EpicPaginatedResults, EpicSearchResult, EpicSearchResults, EpicSlim, EpicState, EpicStats, EpicWorkflow, Group, Health, History, HistoryActionBranchCreate, HistoryActionBranchMerge, HistoryActionBranchPush, HistoryActionLabelCreate, HistoryActionLabelDelete, HistoryActionLabelUpdate, HistoryActionProjectUpdate, HistoryActionPullRequest, HistoryActionStoryCommentCreate, HistoryActionStoryCreate, HistoryActionStoryDelete, HistoryActionStoryLinkCreate, HistoryActionStoryLinkDelete, HistoryActionStoryLinkUpdate, HistoryActionStoryUpdate, HistoryActionTaskCreate, HistoryActionTaskDelete, HistoryActionTaskUpdate, HistoryActionWorkspace2BulkUpdate, HistoryChangesStory, HistoryChangesStoryLink, HistoryChangesTask, HistoryReferenceBranch, HistoryReferenceCommit, HistoryReferenceCustomFieldEnumValue, HistoryReferenceEpic, HistoryReferenceGeneral, HistoryReferenceGroup, HistoryReferenceIteration, HistoryReferenceLabel, HistoryReferenceProject, HistoryReferenceStory, HistoryReferenceStoryTask, HistoryReferenceWorkflowState, Icon, Identity, Iteration, IterationAssociatedGroup, IterationSearchResults, IterationSlim, IterationStats, KeyResult, KeyResultValue, Label, LabelSlim, LabelStats, LinkSubTaskParams, LinkedFile, MaxSearchResultsExceededError, Member, MemberInfo, MemberInfoOrganization2, Milestone, MilestoneStats, Objective, ObjectiveSearchResult, ObjectiveSearchResults, ObjectiveStats, Profile, Project, ProjectStats, PullRequest, PullRequestLabel, RemoveCustomFieldParams, RemoveLabelParams, Repository, SearchResults, SearchStories, Story, StoryComment, StoryContents, StoryContentsTask, StoryCustomField, StoryHistoryChangeAddsRemovesInt, StoryHistoryChangeAddsRemovesUuid, StoryHistoryChangeOldNewBool, StoryHistoryChangeOldNewInt, StoryHistoryChangeOldNewStr, StoryHistoryChangeOldNewUuid, StoryLink, StoryReaction, StorySearchResult, StorySearchResults, StorySlim, StoryStats, SyncedItem, Task, ThreadedComment, TypedStoryLink, UnusableEntitlementError, UpdateCategory, UpdateComment, UpdateCustomField, UpdateCustomFieldEnumValue, UpdateEntityTemplate, UpdateEpic, UpdateFile, UpdateGroup, UpdateHealth, UpdateIteration, UpdateKeyResult, UpdateLabel, UpdateLinkedFile, UpdateMilestone, UpdateObjective, UpdateProject, UpdateStories, UpdateStory, UpdateStoryComment, UpdateStoryContents, UpdateStoryLink, UpdateTask, UploadedFile, Workflow, WorkflowState };
6039
+ export { BaseTaskParams, BasicWorkspaceInfo, Branch, Category, Commit, CreateCategory, CreateCategoryParams, CreateCommentComment, CreateDoc, CreateEntityTemplate, CreateEpic, CreateEpicComment, CreateEpicHealth, CreateGenericIntegration, CreateGroup, CreateIteration, CreateLabelParams, CreateLinkedFile, CreateMilestone, CreateObjective, CreateOrDeleteStoryReaction, CreateProject, CreateStories, CreateStoryComment, CreateStoryCommentParams, CreateStoryContents, CreateStoryFromTemplateParams, CreateStoryLink, CreateStoryLinkParams, CreateStoryParams, CreateSubTaskParams, CreateTask, CreateTaskParams, CustomField, CustomFieldEnumValue, CustomFieldValueParams, DataConflictError, DeleteStories, DisabledFeatureError, Doc, DocSearchResults, DocSlim, EntityTemplate, Epic, EpicAssociatedGroup, EpicPaginatedResults, EpicSearchResult, EpicSearchResults, EpicSlim, EpicState, EpicStats, EpicWorkflow, GetDoc, Group, Health, History, HistoryActionBranchCreate, HistoryActionBranchMerge, HistoryActionBranchPush, HistoryActionLabelCreate, HistoryActionLabelDelete, HistoryActionLabelUpdate, HistoryActionProjectUpdate, HistoryActionPullRequest, HistoryActionStoryCommentCreate, HistoryActionStoryCreate, HistoryActionStoryDelete, HistoryActionStoryLinkCreate, HistoryActionStoryLinkDelete, HistoryActionStoryLinkUpdate, HistoryActionStoryUpdate, HistoryActionTaskCreate, HistoryActionTaskDelete, HistoryActionTaskUpdate, HistoryActionWorkspace2BulkUpdate, HistoryChangesStory, HistoryChangesStoryLink, HistoryChangesTask, HistoryReferenceBranch, HistoryReferenceCommit, HistoryReferenceCustomFieldEnumValue, HistoryReferenceEpic, HistoryReferenceGeneral, HistoryReferenceGroup, HistoryReferenceIteration, HistoryReferenceLabel, HistoryReferenceProject, HistoryReferenceStory, HistoryReferenceStoryTask, HistoryReferenceWorkflowState, Icon, Identity, Iteration, IterationAssociatedGroup, IterationSearchResults, IterationSlim, IterationStats, KeyResult, KeyResultValue, Label, LabelSlim, LabelStats, LinkSubTaskParams, LinkedFile, MaxSearchResultsExceededError, Member, MemberInfo, MemberInfoOrganization2, Milestone, MilestoneStats, Objective, ObjectiveSearchResult, ObjectiveSearchResults, ObjectiveStats, Profile, Project, ProjectStats, PullRequest, PullRequestLabel, RemoveCustomFieldParams, RemoveLabelParams, Repository, SearchResults, SearchStories, Story, StoryComment, StoryContents, StoryContentsTask, StoryCustomField, StoryHistoryChangeAddsRemovesInt, StoryHistoryChangeAddsRemovesUuid, StoryHistoryChangeOldNewBool, StoryHistoryChangeOldNewInt, StoryHistoryChangeOldNewStr, StoryHistoryChangeOldNewUuid, StoryLink, StoryReaction, StorySearchResult, StorySearchResults, StorySlim, StoryStats, SyncedItem, Task, ThreadedComment, TypedStoryLink, UnusableEntitlementError, UpdateCategory, UpdateComment, UpdateCustomField, UpdateCustomFieldEnumValue, UpdateDoc, UpdateEntityTemplate, UpdateEpic, UpdateFile, UpdateGroup, UpdateHealth, UpdateIteration, UpdateKeyResult, UpdateLabel, UpdateLinkedFile, UpdateMilestone, UpdateObjective, UpdateProject, UpdateStories, UpdateStory, UpdateStoryComment, UpdateStoryContents, UpdateStoryLink, UpdateTask, UploadedFile, Workflow, WorkflowState };