@backstage/plugin-bitbucket-cloud-common 0.2.4 → 0.2.5
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 +14 -0
- package/dist/index.d.ts +4 -4
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,19 @@
|
|
|
1
1
|
# @backstage/plugin-bitbucket-cloud-common
|
|
2
2
|
|
|
3
|
+
## 0.2.5
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies
|
|
8
|
+
- @backstage/integration@1.4.4
|
|
9
|
+
|
|
10
|
+
## 0.2.5-next.0
|
|
11
|
+
|
|
12
|
+
### Patch Changes
|
|
13
|
+
|
|
14
|
+
- Updated dependencies
|
|
15
|
+
- @backstage/integration@1.4.4-next.0
|
|
16
|
+
|
|
3
17
|
## 0.2.4
|
|
4
18
|
|
|
5
19
|
### Patch Changes
|
package/dist/index.d.ts
CHANGED
|
@@ -501,7 +501,7 @@ declare namespace Models {
|
|
|
501
501
|
}
|
|
502
502
|
|
|
503
503
|
/** @public */
|
|
504
|
-
|
|
504
|
+
type PaginationOptions = {
|
|
505
505
|
page?: number;
|
|
506
506
|
pagelen?: number;
|
|
507
507
|
};
|
|
@@ -516,16 +516,16 @@ declare class WithPagination<TPage extends Models.Paginated<TResultItem>, TResul
|
|
|
516
516
|
}
|
|
517
517
|
|
|
518
518
|
/** @public */
|
|
519
|
-
|
|
519
|
+
type FilterAndSortOptions = {
|
|
520
520
|
q?: string;
|
|
521
521
|
sort?: string;
|
|
522
522
|
};
|
|
523
523
|
/** @public */
|
|
524
|
-
|
|
524
|
+
type PartialResponseOptions = {
|
|
525
525
|
fields?: string;
|
|
526
526
|
};
|
|
527
527
|
/** @public */
|
|
528
|
-
|
|
528
|
+
type RequestOptions = FilterAndSortOptions & PaginationOptions & PartialResponseOptions & {
|
|
529
529
|
[key: string]: string | number | undefined;
|
|
530
530
|
};
|
|
531
531
|
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage/plugin-bitbucket-cloud-common",
|
|
3
3
|
"description": "Common functionalities for bitbucket-cloud plugins",
|
|
4
|
-
"version": "0.2.
|
|
4
|
+
"version": "0.2.5",
|
|
5
5
|
"main": "dist/index.cjs.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
7
7
|
"license": "Apache-2.0",
|
|
@@ -27,11 +27,11 @@
|
|
|
27
27
|
"update-models": "yarn refresh-schema && yarn generate-models && yarn reduce-models"
|
|
28
28
|
},
|
|
29
29
|
"dependencies": {
|
|
30
|
-
"@backstage/integration": "^1.4.
|
|
30
|
+
"@backstage/integration": "^1.4.4",
|
|
31
31
|
"cross-fetch": "^3.1.5"
|
|
32
32
|
},
|
|
33
33
|
"devDependencies": {
|
|
34
|
-
"@backstage/cli": "^0.22.
|
|
34
|
+
"@backstage/cli": "^0.22.6",
|
|
35
35
|
"@openapitools/openapi-generator-cli": "^2.4.26",
|
|
36
36
|
"msw": "^1.0.0",
|
|
37
37
|
"ts-morph": "^17.0.0"
|