@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 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("packages/forge-auth/out/jira").ProjectPermission[]) => Promise<import("packages/forge-auth/out/jira").ProjectPermissionResponse[]>;
3
- readonly onJiraProject: (projects: import("packages/forge-auth/out/jira").Id | import("packages/forge-auth/out/jira").Id[]) => Record<string, import("packages/forge-auth/out/types").PermissionCheck>;
4
- readonly onJiraIssue: (issues: import("packages/forge-auth/out/jira").Id | import("packages/forge-auth/out/jira").Id[]) => Record<string, import("packages/forge-auth/out/types").PermissionCheck>;
5
- readonly onConfluenceContent: (contentId: string | number) => Record<string, import("packages/forge-auth/out/types").PermissionCheck>;
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.0",
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.1",
16
- "@forge/util": "1.2.3",
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.1",
21
+ "@forge/auth": "0.0.2-next.0",
23
22
  "@forge/egress": "1.2.1",
24
- "@forge/storage": "1.5.3",
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
  }