@girs/tracker-3.0 3.5.2-3.2.0 → 3.6.0-3.2.3
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/package.json +6 -6
- package/tracker-3.0.d.cts +17 -1
- package/tracker-3.0.d.ts +17 -1
- package/typedoc.json +1 -1
package/README.md
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|

|
|
6
6
|
|
|
7
7
|
|
|
8
|
-
GJS TypeScript type definitions for Tracker-3.0, generated from library version 3.
|
|
8
|
+
GJS TypeScript type definitions for Tracker-3.0, generated from library version 3.6.0 using [ts-for-gir](https://github.com/gjsify/ts-for-gir) v3.2.3.
|
|
9
9
|
|
|
10
10
|
|
|
11
11
|
## Install
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@girs/tracker-3.0",
|
|
3
|
-
"version": "3.
|
|
4
|
-
"description": "GJS TypeScript type definitions for Tracker-3.0, generated from library version 3.
|
|
3
|
+
"version": "3.6.0-3.2.3",
|
|
4
|
+
"description": "GJS TypeScript type definitions for Tracker-3.0, generated from library version 3.6.0",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"module": "tracker-3.0.js",
|
|
7
7
|
"main": "tracker-3.0.js",
|
|
@@ -25,10 +25,10 @@
|
|
|
25
25
|
"test:cjs": "NODE_OPTIONS=--max_old_space_size=9216 tsc --noEmit tracker-3.0.d.cts"
|
|
26
26
|
},
|
|
27
27
|
"dependencies": {
|
|
28
|
-
"@girs/gio-2.0": "^2.76.1-3.2.
|
|
29
|
-
"@girs/gjs": "^3.2.
|
|
30
|
-
"@girs/glib-2.0": "^2.76.1-3.2.
|
|
31
|
-
"@girs/gobject-2.0": "^2.76.1-3.2.
|
|
28
|
+
"@girs/gio-2.0": "^2.76.1-3.2.3",
|
|
29
|
+
"@girs/gjs": "^3.2.3",
|
|
30
|
+
"@girs/glib-2.0": "^2.76.1-3.2.3",
|
|
31
|
+
"@girs/gobject-2.0": "^2.76.1-3.2.3"
|
|
32
32
|
},
|
|
33
33
|
"devDependencies": {
|
|
34
34
|
"typescript": "*"
|
package/tracker-3.0.d.cts
CHANGED
|
@@ -208,7 +208,7 @@ export enum SparqlConnectionFlags {
|
|
|
208
208
|
*/
|
|
209
209
|
FTS_ENABLE_UNACCENT,
|
|
210
210
|
/**
|
|
211
|
-
* FTS Search terms are filtered through a stop word list.
|
|
211
|
+
* FTS Search terms are filtered through a stop word list. This flag is deprecated since Tracker 3.6, and will do nothing.
|
|
212
212
|
*/
|
|
213
213
|
FTS_ENABLE_STOP_WORDS,
|
|
214
214
|
/**
|
|
@@ -376,6 +376,22 @@ export interface Batch {
|
|
|
376
376
|
|
|
377
377
|
// Owm methods of Tracker-3.0.Tracker.Batch
|
|
378
378
|
|
|
379
|
+
/**
|
|
380
|
+
* Inserts the RDF data contained in `stream` as part of `batch`.
|
|
381
|
+
*
|
|
382
|
+
* The RDF data will be inserted in the given `default_graph` if one is provided,
|
|
383
|
+
* or the anonymous graph if `default_graph` is %NULL. Any RDF data that has a
|
|
384
|
+
* graph specified (e.g. using the `GRAPH` clause in the Trig format) will
|
|
385
|
+
* be inserted in the specified graph instead of `default_graph`.
|
|
386
|
+
*
|
|
387
|
+
* The `flags` argument is reserved for future expansions, currently
|
|
388
|
+
* %TRACKER_DESERIALIZE_FLAGS_NONE must be passed.
|
|
389
|
+
* @param flags Deserialization flags
|
|
390
|
+
* @param format RDF format of data in stream
|
|
391
|
+
* @param default_graph Default graph that will receive the RDF data
|
|
392
|
+
* @param stream Input stream with RDF data
|
|
393
|
+
*/
|
|
394
|
+
add_rdf(flags: DeserializeFlags, format: RdfFormat, default_graph: string | null, stream: Gio.InputStream): void
|
|
379
395
|
/**
|
|
380
396
|
* Adds the RDF represented by `resource` to `batch`.
|
|
381
397
|
* @param graph RDF graph to insert the resource to
|
package/tracker-3.0.d.ts
CHANGED
|
@@ -210,7 +210,7 @@ enum SparqlConnectionFlags {
|
|
|
210
210
|
*/
|
|
211
211
|
FTS_ENABLE_UNACCENT,
|
|
212
212
|
/**
|
|
213
|
-
* FTS Search terms are filtered through a stop word list.
|
|
213
|
+
* FTS Search terms are filtered through a stop word list. This flag is deprecated since Tracker 3.6, and will do nothing.
|
|
214
214
|
*/
|
|
215
215
|
FTS_ENABLE_STOP_WORDS,
|
|
216
216
|
/**
|
|
@@ -378,6 +378,22 @@ interface Batch {
|
|
|
378
378
|
|
|
379
379
|
// Owm methods of Tracker-3.0.Tracker.Batch
|
|
380
380
|
|
|
381
|
+
/**
|
|
382
|
+
* Inserts the RDF data contained in `stream` as part of `batch`.
|
|
383
|
+
*
|
|
384
|
+
* The RDF data will be inserted in the given `default_graph` if one is provided,
|
|
385
|
+
* or the anonymous graph if `default_graph` is %NULL. Any RDF data that has a
|
|
386
|
+
* graph specified (e.g. using the `GRAPH` clause in the Trig format) will
|
|
387
|
+
* be inserted in the specified graph instead of `default_graph`.
|
|
388
|
+
*
|
|
389
|
+
* The `flags` argument is reserved for future expansions, currently
|
|
390
|
+
* %TRACKER_DESERIALIZE_FLAGS_NONE must be passed.
|
|
391
|
+
* @param flags Deserialization flags
|
|
392
|
+
* @param format RDF format of data in stream
|
|
393
|
+
* @param default_graph Default graph that will receive the RDF data
|
|
394
|
+
* @param stream Input stream with RDF data
|
|
395
|
+
*/
|
|
396
|
+
add_rdf(flags: DeserializeFlags, format: RdfFormat, default_graph: string | null, stream: Gio.InputStream): void
|
|
381
397
|
/**
|
|
382
398
|
* Adds the RDF represented by `resource` to `batch`.
|
|
383
399
|
* @param graph RDF graph to insert the resource to
|
package/typedoc.json
CHANGED