@xemahq/scm-connector-api-client 0.2.5 → 0.2.7
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/dist/models/orgRepositoryResponseDto.d.ts +1 -0
- package/dist/models/orgRepositoryResponseDtoMetadataJson.d.ts +4 -1
- package/dist/models/orgScmConfigControllerGetGitHubAppBootstrapParams.d.ts +1 -0
- package/dist/models/orgScmConfigControllerListGitHubAppRepositoriesParams.d.ts +1 -0
- package/dist/models/orgScmConfigResponseDto.d.ts +1 -0
- package/dist/models/orgScmConfigResponseDtoConfigJson.d.ts +4 -1
- package/dist/models/postChangeRequestCommentDto.d.ts +6 -1
- package/dist/models/updateProjectRepositoryBindingDto.d.ts +4 -1
- package/package.json +2 -2
|
@@ -4,7 +4,11 @@
|
|
|
4
4
|
* OpenAPI spec version: 0.1.0
|
|
5
5
|
*/
|
|
6
6
|
export interface PostChangeRequestCommentDto {
|
|
7
|
-
/**
|
|
7
|
+
/**
|
|
8
|
+
* Provider-native markdown body of the comment.
|
|
9
|
+
* @minLength 1
|
|
10
|
+
* @maxLength 65000
|
|
11
|
+
*/
|
|
8
12
|
body: string;
|
|
9
13
|
/**
|
|
10
14
|
* Repo-relative file path the comment anchors to (inline review comment). Omit for a top-level PR comment.
|
|
@@ -13,6 +17,7 @@ export interface PostChangeRequestCommentDto {
|
|
|
13
17
|
path?: string | null;
|
|
14
18
|
/**
|
|
15
19
|
* Line number the comment anchors to. Requires `path`.
|
|
20
|
+
* @minimum 1
|
|
16
21
|
* @nullable
|
|
17
22
|
*/
|
|
18
23
|
line?: number | null;
|
|
@@ -9,6 +9,9 @@ export interface UpdateProjectRepositoryBindingDto {
|
|
|
9
9
|
role?: UpdateProjectRepositoryBindingDtoRole;
|
|
10
10
|
/** Target branch override */
|
|
11
11
|
targetBranch?: string;
|
|
12
|
-
/**
|
|
12
|
+
/**
|
|
13
|
+
* Display order (0-based)
|
|
14
|
+
* @minimum 0
|
|
15
|
+
*/
|
|
13
16
|
displayOrder?: number;
|
|
14
17
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@xemahq/scm-connector-api-client",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.7",
|
|
4
4
|
"repository": {
|
|
5
5
|
"type": "git",
|
|
6
6
|
"url": "git+https://github.com/xema-dev/xema-cultivars.git",
|
|
@@ -25,7 +25,7 @@
|
|
|
25
25
|
"service": "scm-connector-api",
|
|
26
26
|
"biome": "software-dev",
|
|
27
27
|
"target": "server",
|
|
28
|
-
"generator": "@xemahq/api-client-generator@0.
|
|
28
|
+
"generator": "@xemahq/api-client-generator@0.17.1",
|
|
29
29
|
"source": "openapi.public.json"
|
|
30
30
|
},
|
|
31
31
|
"scripts": {
|