File tree 7 files changed +23
-9
lines changed
7 files changed +23
-9
lines changed Original file line number Diff line number Diff line change @@ -18,7 +18,8 @@ pnpm i @coderabbitai/bitbucket
18
18
### Cloud
19
19
20
20
``` ts
21
- import { createBitbucketCloudClient , toBase64 } from " @coderabbitai/bitbucket"
21
+ import { createBitbucketCloudClient } from " @coderabbitai/bitbucket/cloud"
22
+ import { toBase64 } from " @coderabbitai/bitbucket"
22
23
import {
23
24
BITBUCKET_CLOUD_APP_PASSWORD ,
24
25
BITBUCKET_CLOUD_URL ,
@@ -38,7 +39,7 @@ const client = createBitbucketCloudClient({
38
39
### Server
39
40
40
41
``` ts
41
- import { createBitbucketServerClient } from " @coderabbitai/bitbucket"
42
+ import { createBitbucketServerClient } from " @coderabbitai/bitbucket/server "
42
43
import { BITBUCKET_SERVER_TOKEN , BITBUCKET_SERVER_URL } from " ./env.js"
43
44
44
45
const server = createBitbucketServerClient ({
Original file line number Diff line number Diff line change 73
73
"." : {
74
74
"types" : " ./dist/index.d.ts" ,
75
75
"default" : " ./dist/index.js"
76
+ },
77
+ "./cloud" : {
78
+ "types" : " ./dist/cloud/index.d.ts" ,
79
+ "default" : " ./dist/cloud/index.js"
80
+ },
81
+ "./server" : {
82
+ "types" : " ./dist/server/index.d.ts" ,
83
+ "default" : " ./dist/server/index.js"
76
84
}
77
85
},
78
86
"types" : " dist/index.d.ts" ,
Original file line number Diff line number Diff line change 1
1
export * from "./client.js"
2
- export type * as cloud from "./openapi/index.js"
2
+ export type * from "./openapi/index.js"
Original file line number Diff line number Diff line change 1
1
export * from "./base64.js"
2
- export * from "./cloud/index.js"
3
- export * from "./server/index.js"
2
+ export * as cloud from "./cloud/index.js"
3
+ export * as server from "./server/index.js"
Original file line number Diff line number Diff line change 1
- import { createBitbucketCloudClient , toBase64 } from "../../src/index.js"
1
+ import { createBitbucketCloudClient } from "../../src/cloud/index.js"
2
+ import { toBase64 } from "../../src/index.js"
2
3
import {
3
4
BITBUCKET_CLOUD_APP_PASSWORD ,
4
5
BITBUCKET_CLOUD_URL ,
5
6
BITBUCKET_CLOUD_USERNAME ,
6
7
} from "../env.js"
7
8
8
9
const basic = toBase64 (
9
- BITBUCKET_CLOUD_USERNAME + ":" + BITBUCKET_CLOUD_APP_PASSWORD ,
10
+ ` ${ BITBUCKET_CLOUD_USERNAME } : ${ BITBUCKET_CLOUD_APP_PASSWORD } ` ,
10
11
)
11
12
12
13
export const client = createBitbucketCloudClient ( {
Original file line number Diff line number Diff line change 1
- import { createBitbucketServerClient } from "../../src/index.js"
1
+ import { createBitbucketServerClient } from "../../src/server/ index.js"
2
2
import { BITBUCKET_SERVER_TOKEN , BITBUCKET_SERVER_URL } from "../env.js"
3
3
4
4
export const client = createBitbucketServerClient ( {
Original file line number Diff line number Diff line change 1
1
{
2
2
"$schema" : " https://typedoc.org/schema.json" ,
3
- "entryPoints" : [" ./src/index.ts" ],
3
+ "entryPoints" : [
4
+ " ./src/index.ts" ,
5
+ " ./src/cloud/index.ts" ,
6
+ " ./src/server/index.ts"
7
+ ],
4
8
"highlightLanguages" : [" ini" , " sh" , " ts" ]
5
9
}
You canβt perform that action at this time.
0 commit comments