You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- WorkItemTypes Response
- GetProjectMembers Response
- IssueSearch Response
- State Response (without slug)
make appInstallationId optional in getAppInstallations endpoint
bump version to 0.1.2
Copy file name to clipboardExpand all lines: README.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,4 +1,4 @@
1
-
## @makeplane/plane-node-sdk@0.1.1
1
+
## @makeplane/plane-node-sdk@0.1.2
2
2
3
3
This generator creates TypeScript/JavaScript client that utilizes [Fetch API](https://fetch.spec.whatwg.org/). The generated Node module can be used in the following environments:
4
4
@@ -36,7 +36,7 @@ navigate to the folder of your consuming project and run one of the following co
* 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.1
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
+
* Individual issue component for search results.
17
+
*
18
+
* Provides standardized search result structure including work item identifiers,
19
+
* project context, and workspace information for search API responses.
20
+
* @export
21
+
* @interface IssueSearchItem
22
+
*/
23
+
exportinterfaceIssueSearchItem{
24
+
/**
25
+
* Issue ID
26
+
* @type {string}
27
+
* @memberof IssueSearchItem
28
+
*/
29
+
id: string;
30
+
/**
31
+
* Issue name
32
+
* @type {string}
33
+
* @memberof IssueSearchItem
34
+
*/
35
+
name: string;
36
+
/**
37
+
* Issue sequence ID
38
+
* @type {string}
39
+
* @memberof IssueSearchItem
40
+
*/
41
+
sequenceId: string;
42
+
/**
43
+
* Project identifier
44
+
* @type {string}
45
+
* @memberof IssueSearchItem
46
+
*/
47
+
projectIdentifier: string;
48
+
/**
49
+
* Project ID
50
+
* @type {string}
51
+
* @memberof IssueSearchItem
52
+
*/
53
+
projectId: string;
54
+
/**
55
+
* Workspace slug
56
+
* @type {string}
57
+
* @memberof IssueSearchItem
58
+
*/
59
+
workspaceSlug: string;
60
+
}
61
+
62
+
/**
63
+
* Check if a given object implements the IssueSearchItem interface.
64
+
*/
65
+
exportfunctioninstanceOfIssueSearchItem(value: object): value is IssueSearchItem{
0 commit comments