@linear/sdk 65.2.0 → 66.0.1
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.
- package/LICENSE +21 -0
- package/README.md +6 -6
- package/dist/_generated_documents.d.ts +3732 -5984
- package/dist/_generated_documents.d.ts.map +1 -1
- package/dist/_generated_sdk.d.ts +33 -5
- package/dist/_generated_sdk.d.ts.map +1 -1
- package/dist/error.d.ts.map +1 -1
- package/dist/graphql-client.d.ts.map +1 -1
- package/dist/index-cjs.min.js +1 -1
- package/dist/index-cjs.min.js.map +1 -1
- package/dist/index-es.min.js +1 -1
- package/dist/index-es.min.js.map +1 -1
- package/dist/index-umd.min.js +1 -1
- package/dist/index-umd.min.js.map +1 -1
- package/dist/webhooks/client.d.ts +0 -1
- package/dist/webhooks/client.d.ts.map +1 -1
- package/dist/webhooks/index-cjs.min.js +1 -1
- package/dist/webhooks/index-cjs.min.js.map +1 -1
- package/dist/webhooks/index-es.min.js +1 -1
- package/dist/webhooks/index-es.min.js.map +1 -1
- package/dist/webhooks/types.d.ts +24 -25
- package/dist/webhooks/types.d.ts.map +1 -1
- package/package.json +29 -18
package/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2019 Linear
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
package/README.md
CHANGED
|
@@ -44,7 +44,7 @@ The Linear Client uses custom [GraphQL Code Generator](https://graphql-code-gene
|
|
|
44
44
|
|
|
45
45
|
### Structure
|
|
46
46
|
|
|
47
|
-
This monorepo uses `
|
|
47
|
+
This monorepo uses `pnpm` workspaces to manage and publish packages.
|
|
48
48
|
|
|
49
49
|
Generated code uses file prefix `_generated` and should never be manually updated.
|
|
50
50
|
|
|
@@ -61,19 +61,19 @@ Make sure you have Node 18+ and Corepack enabled (`corepack enable`).
|
|
|
61
61
|
|
|
62
62
|
```shell
|
|
63
63
|
# install dependencies
|
|
64
|
-
|
|
64
|
+
pnpm install
|
|
65
65
|
|
|
66
66
|
# build all packages
|
|
67
|
-
|
|
67
|
+
pnpm build
|
|
68
68
|
|
|
69
69
|
# test all packages
|
|
70
|
-
|
|
70
|
+
pnpm test
|
|
71
71
|
|
|
72
72
|
# update the schema from the production API
|
|
73
|
-
|
|
73
|
+
pnpm schema
|
|
74
74
|
|
|
75
75
|
# create changeset for generating CHANGELOG.md
|
|
76
|
-
|
|
76
|
+
pnpm changeset
|
|
77
77
|
```
|
|
78
78
|
|
|
79
79
|
### Plugin Flow
|