@schemastore/backportrc 0.0.2 → 0.0.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/LICENSE +1 -1
- package/README.md +2 -2
- package/index.d.ts +5 -4
- package/package.json +4 -4
package/LICENSE
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
MIT License
|
|
2
2
|
|
|
3
|
-
Copyright (c) Florian
|
|
3
|
+
Copyright (c) Florian Imdahl. All rights reserved.
|
|
4
4
|
|
|
5
5
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
6
|
of this software and associated documentation files (the "Software"), to deal
|
package/README.md
CHANGED
|
@@ -5,8 +5,8 @@
|
|
|
5
5
|
This package contains type definitions for backportrc.
|
|
6
6
|
|
|
7
7
|
## Details
|
|
8
|
-
Files were exported from https://github.com/ffflorian/schemastore-updater/tree/
|
|
8
|
+
Files were exported from https://github.com/ffflorian/schemastore-updater/tree/main/schemas/backportrc.
|
|
9
9
|
|
|
10
10
|
## Additional Details
|
|
11
|
-
* Last updated:
|
|
11
|
+
* Last updated: Mon, Apr 04, 2022, 11:03:18 GMT
|
|
12
12
|
* Dependencies: none
|
package/index.d.ts
CHANGED
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
|
|
8
8
|
export interface JSONSchemaForBackportConfigFile {
|
|
9
9
|
/**
|
|
10
|
-
* Identifier for the
|
|
10
|
+
* Identifier for the GitHub project as `{owner}/{repoName}`
|
|
11
11
|
*/
|
|
12
12
|
upsteam?: string;
|
|
13
13
|
/**
|
|
@@ -18,8 +18,9 @@ export interface JSONSchemaForBackportConfigFile {
|
|
|
18
18
|
| {
|
|
19
19
|
name: string;
|
|
20
20
|
checked: boolean;
|
|
21
|
-
[k: string]:
|
|
22
|
-
}
|
|
21
|
+
[k: string]: unknown;
|
|
22
|
+
}
|
|
23
|
+
)[];
|
|
23
24
|
/**
|
|
24
25
|
* Labels that will be added to the pull request
|
|
25
26
|
*/
|
|
@@ -28,5 +29,5 @@ export interface JSONSchemaForBackportConfigFile {
|
|
|
28
29
|
* Whether to only show the current user's commits or commits from anyone
|
|
29
30
|
*/
|
|
30
31
|
all?: boolean;
|
|
31
|
-
[k: string]:
|
|
32
|
+
[k: string]: unknown;
|
|
32
33
|
}
|
package/package.json
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
{
|
|
2
|
-
"author": "Florian
|
|
2
|
+
"author": "Florian Imdahl <git@ffflorian.de>",
|
|
3
3
|
"dependencies": {},
|
|
4
4
|
"description": "TypeScript definitions for backportrc.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"main": "index.d.ts",
|
|
7
7
|
"name": "@schemastore/backportrc",
|
|
8
|
-
"repository": "https://github.com/ffflorian/schemastore-updater/tree/
|
|
8
|
+
"repository": "https://github.com/ffflorian/schemastore-updater/tree/main/schemas/backportrc",
|
|
9
9
|
"scripts": {},
|
|
10
|
-
"typesPublisherContentHash": "
|
|
10
|
+
"typesPublisherContentHash": "77f879d97ec026ee9104e3e2047ecde5b8ef3f0effd96af81e04e8f94b7276a6",
|
|
11
11
|
"types": "index.d.ts",
|
|
12
|
-
"version": "0.0.
|
|
12
|
+
"version": "0.0.5",
|
|
13
13
|
"typeScriptVersion": "2.2"
|
|
14
14
|
}
|