@girs/modulemd-2.0 2.0.0-4.0.0-rc.17 → 2.0.0-4.0.0
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/README.md +1 -1
- package/modulemd-2.0.d.ts +4 -4
- package/package.json +4 -4
package/README.md
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|

|
|
6
6
|
|
|
7
7
|
|
|
8
|
-
GJS TypeScript type definitions for Modulemd-2.0, generated from library version 2.0.0 using [ts-for-gir](https://github.com/gjsify/ts-for-gir) v4.0.0
|
|
8
|
+
GJS TypeScript type definitions for Modulemd-2.0, generated from library version 2.0.0 using [ts-for-gir](https://github.com/gjsify/ts-for-gir) v4.0.0.
|
|
9
9
|
|
|
10
10
|
## Install
|
|
11
11
|
|
package/modulemd-2.0.d.ts
CHANGED
|
@@ -1917,7 +1917,7 @@ export namespace Modulemd {
|
|
|
1917
1917
|
* @param intent The name of the system intent whose default stream will be retrieved. If left NULL or the specified intent has no separate default, it will return the generic default stream for this module. System intents are deprecated and this argument will be ignored in the future.
|
|
1918
1918
|
* @returns A {@link GLib.HashTable} with the module name as the key and the default stream as the value for all modules with a default stream in the index. Modules without a default stream will not appear in this table.
|
|
1919
1919
|
*/
|
|
1920
|
-
get_default_streams(intent: string | null):
|
|
1920
|
+
get_default_streams(intent: string | null): { [key: string]: string };
|
|
1921
1921
|
|
|
1922
1922
|
/**
|
|
1923
1923
|
* @returns The metadata version of {@link Modulemd.Defaults} in use for this index.
|
|
@@ -3912,21 +3912,21 @@ export namespace Modulemd {
|
|
|
3912
3912
|
* stream `self` are removed and replaced by `set`.
|
|
3913
3913
|
* @param set A {@link GLib.HashTable} set of names of binary RPM packages to demodularize.
|
|
3914
3914
|
*/
|
|
3915
|
-
replace_demodularized_rpms(set:
|
|
3915
|
+
replace_demodularized_rpms(set: never): void;
|
|
3916
3916
|
|
|
3917
3917
|
/**
|
|
3918
3918
|
* Any existing API RPMs associated with module stream `self` are removed and
|
|
3919
3919
|
* replaced by `set`.
|
|
3920
3920
|
* @param set A {@link GLib.HashTable} set of binary RPMs present in this module stream that is considered stable public API.
|
|
3921
3921
|
*/
|
|
3922
|
-
replace_rpm_api(set:
|
|
3922
|
+
replace_rpm_api(set: never): void;
|
|
3923
3923
|
|
|
3924
3924
|
/**
|
|
3925
3925
|
* Any existing filtered binary RPM names associated with module stream `self`
|
|
3926
3926
|
* are removed and replaced by `set`.
|
|
3927
3927
|
* @param set A {@link GLib.HashTable} set of names of binary RPMs to filter out of this module stream.
|
|
3928
3928
|
*/
|
|
3929
|
-
replace_rpm_filters(set:
|
|
3929
|
+
replace_rpm_filters(set: never): void;
|
|
3930
3930
|
|
|
3931
3931
|
/**
|
|
3932
3932
|
* Set the module community website address.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@girs/modulemd-2.0",
|
|
3
|
-
"version": "2.0.0-4.0.0
|
|
3
|
+
"version": "2.0.0-4.0.0",
|
|
4
4
|
"description": "GJS TypeScript type definitions for Modulemd-2.0, generated from library version 2.0.0",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"module": "modulemd-2.0.js",
|
|
@@ -31,9 +31,9 @@
|
|
|
31
31
|
"test": "tsc --project tsconfig.json"
|
|
32
32
|
},
|
|
33
33
|
"dependencies": {
|
|
34
|
-
"@girs/gjs": "4.0.0
|
|
35
|
-
"@girs/gobject-2.0": "2.88.0-4.0.0
|
|
36
|
-
"@girs/glib-2.0": "2.88.0-4.0.0
|
|
34
|
+
"@girs/gjs": "4.0.0",
|
|
35
|
+
"@girs/gobject-2.0": "2.88.0-4.0.0",
|
|
36
|
+
"@girs/glib-2.0": "2.88.0-4.0.0" },
|
|
37
37
|
"devDependencies": {
|
|
38
38
|
"typescript": "*"
|
|
39
39
|
},
|