@forge/api 2.18.0 → 2.18.1-next.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/CHANGELOG.md +19 -0
- package/out/authorization/index.d.ts +4 -4
- package/package.json +6 -6
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,24 @@
|
|
|
1
1
|
# @forge/api
|
|
2
2
|
|
|
3
|
+
## 2.18.1-next.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- e67ce5c: Fix TypeScript definitions relying on unexported types
|
|
8
|
+
- Updated dependencies [e67ce5c]
|
|
9
|
+
- @forge/auth@0.0.2-next.0
|
|
10
|
+
|
|
11
|
+
## 2.18.1-next.0
|
|
12
|
+
|
|
13
|
+
### Patch Changes
|
|
14
|
+
|
|
15
|
+
- 270b46da: Bumping dependencies via Renovate:
|
|
16
|
+
|
|
17
|
+
- @types/node
|
|
18
|
+
|
|
19
|
+
- Updated dependencies [270b46da]
|
|
20
|
+
- @forge/storage@1.5.4-next.0
|
|
21
|
+
|
|
3
22
|
## 2.18.0
|
|
4
23
|
|
|
5
24
|
### Minor Changes
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
export declare const authorize: () => {
|
|
2
|
-
readonly onJira: (projectPermissionsInput: import("
|
|
3
|
-
readonly onJiraProject: (projects: import("
|
|
4
|
-
readonly onJiraIssue: (issues: import("
|
|
5
|
-
readonly onConfluenceContent: (contentId:
|
|
2
|
+
readonly onJira: (projectPermissionsInput: import("@forge/auth").ProjectPermission[]) => Promise<import("@forge/auth").ProjectPermissionResponse[]>;
|
|
3
|
+
readonly onJiraProject: (projects: import("@forge/auth").Id | import("@forge/auth").Id[]) => Record<string, import("@forge/auth").PermissionCheck>;
|
|
4
|
+
readonly onJiraIssue: (issues: import("@forge/auth").Id | import("@forge/auth").Id[]) => Record<string, import("@forge/auth").PermissionCheck>;
|
|
5
|
+
readonly onConfluenceContent: (contentId: import("@forge/auth").ContentId) => Record<string, import("@forge/auth").PermissionCheck>;
|
|
6
6
|
};
|
|
7
7
|
//# sourceMappingURL=index.d.ts.map
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@forge/api",
|
|
3
|
-
"version": "2.18.
|
|
3
|
+
"version": "2.18.1-next.1",
|
|
4
4
|
"description": "Forge API methods",
|
|
5
5
|
"author": "Atlassian",
|
|
6
6
|
"license": "UNLICENSED",
|
|
@@ -12,16 +12,16 @@
|
|
|
12
12
|
"compile": "tsc -b -v"
|
|
13
13
|
},
|
|
14
14
|
"devDependencies": {
|
|
15
|
-
"@forge/runtime": "4.4.
|
|
16
|
-
"@
|
|
17
|
-
"@types/node": "14.18.48",
|
|
15
|
+
"@forge/runtime": "4.4.2-next.0",
|
|
16
|
+
"@types/node": "14.18.51",
|
|
18
17
|
"jest-matcher-specific-error": "^1.0.0",
|
|
19
18
|
"nock": "^10.0.6"
|
|
20
19
|
},
|
|
21
20
|
"dependencies": {
|
|
22
|
-
"@forge/auth": "0.0.
|
|
21
|
+
"@forge/auth": "0.0.2-next.0",
|
|
23
22
|
"@forge/egress": "1.2.1",
|
|
24
|
-
"@forge/storage": "1.5.
|
|
23
|
+
"@forge/storage": "1.5.4-next.0",
|
|
24
|
+
"@forge/util": "1.2.3",
|
|
25
25
|
"@types/node-fetch": "^2.6.4",
|
|
26
26
|
"node-fetch": "2.6.11"
|
|
27
27
|
}
|