@girs/ebackend-1.2 1.2.0-3.2.7 → 1.2.0-3.2.8
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/ebackend-1.2-ambient.js +2 -0
- package/ebackend-1.2-import.js +3 -0
- package/ebackend-1.2.d.cts +3 -42
- package/ebackend-1.2.d.ts +3 -42
- package/package.json +19 -13
package/README.md
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|

|
|
6
6
|
|
|
7
7
|
|
|
8
|
-
GJS TypeScript type definitions for EBackend-1.2, generated from library version 1.2.0 using [ts-for-gir](https://github.com/gjsify/ts-for-gir) v3.2.
|
|
8
|
+
GJS TypeScript type definitions for EBackend-1.2, generated from library version 1.2.0 using [ts-for-gir](https://github.com/gjsify/ts-for-gir) v3.2.8.
|
|
9
9
|
|
|
10
10
|
|
|
11
11
|
## Install
|
package/ebackend-1.2.d.cts
CHANGED
|
@@ -445,11 +445,9 @@ export interface Backend {
|
|
|
445
445
|
// Own properties of EBackend-1.2.EBackend.Backend
|
|
446
446
|
|
|
447
447
|
connectable: Gio.SocketConnectable
|
|
448
|
-
readonly main_context: GLib.MainContext
|
|
449
448
|
readonly mainContext: GLib.MainContext
|
|
450
449
|
online: boolean
|
|
451
450
|
readonly source: EDataServer.Source
|
|
452
|
-
readonly user_prompter: UserPrompter
|
|
453
451
|
readonly userPrompter: UserPrompter
|
|
454
452
|
|
|
455
453
|
// Owm methods of EBackend-1.2.EBackend.Backend
|
|
@@ -1199,18 +1197,6 @@ export module CacheKeys {
|
|
|
1199
1197
|
* The #ECache being used for this keys table.
|
|
1200
1198
|
*/
|
|
1201
1199
|
cache?: Cache | null
|
|
1202
|
-
/**
|
|
1203
|
-
* The column name for the keys.
|
|
1204
|
-
*/
|
|
1205
|
-
key_column_name?: string | null
|
|
1206
|
-
/**
|
|
1207
|
-
* The table name of this keys table.
|
|
1208
|
-
*/
|
|
1209
|
-
table_name?: string | null
|
|
1210
|
-
/**
|
|
1211
|
-
* The column name for the values.
|
|
1212
|
-
*/
|
|
1213
|
-
value_column_name?: string | null
|
|
1214
1200
|
/**
|
|
1215
1201
|
* The column name for the keys.
|
|
1216
1202
|
*/
|
|
@@ -1235,26 +1221,14 @@ export interface CacheKeys {
|
|
|
1235
1221
|
* The #ECache being used for this keys table.
|
|
1236
1222
|
*/
|
|
1237
1223
|
readonly cache: Cache
|
|
1238
|
-
/**
|
|
1239
|
-
* The column name for the keys.
|
|
1240
|
-
*/
|
|
1241
|
-
readonly key_column_name: string | null
|
|
1242
1224
|
/**
|
|
1243
1225
|
* The column name for the keys.
|
|
1244
1226
|
*/
|
|
1245
1227
|
readonly keyColumnName: string | null
|
|
1246
|
-
/**
|
|
1247
|
-
* The table name of this keys table.
|
|
1248
|
-
*/
|
|
1249
|
-
readonly table_name: string | null
|
|
1250
1228
|
/**
|
|
1251
1229
|
* The table name of this keys table.
|
|
1252
1230
|
*/
|
|
1253
1231
|
readonly tableName: string | null
|
|
1254
|
-
/**
|
|
1255
|
-
* The column name for the values.
|
|
1256
|
-
*/
|
|
1257
|
-
readonly value_column_name: string | null
|
|
1258
1232
|
/**
|
|
1259
1233
|
* The column name for the values.
|
|
1260
1234
|
*/
|
|
@@ -1526,7 +1500,6 @@ export interface CollectionBackend {
|
|
|
1526
1500
|
|
|
1527
1501
|
// Own properties of EBackend-1.2.EBackend.CollectionBackend
|
|
1528
1502
|
|
|
1529
|
-
readonly proxy_resolver: Gio.ProxyResolver
|
|
1530
1503
|
readonly proxyResolver: Gio.ProxyResolver
|
|
1531
1504
|
readonly server: SourceRegistryServer
|
|
1532
1505
|
|
|
@@ -2196,8 +2169,6 @@ export module DataFactory {
|
|
|
2196
2169
|
|
|
2197
2170
|
// Own constructor properties of EBackend-1.2.EBackend.DataFactory
|
|
2198
2171
|
|
|
2199
|
-
backend_per_process?: number | null
|
|
2200
|
-
reload_supported?: boolean | null
|
|
2201
2172
|
backendPerProcess?: number | null
|
|
2202
2173
|
reloadSupported?: boolean | null
|
|
2203
2174
|
}
|
|
@@ -2208,10 +2179,8 @@ export interface DataFactory extends EDataServer.Extensible, Gio.Initable {
|
|
|
2208
2179
|
|
|
2209
2180
|
// Own properties of EBackend-1.2.EBackend.DataFactory
|
|
2210
2181
|
|
|
2211
|
-
readonly backend_per_process: number
|
|
2212
2182
|
readonly backendPerProcess: number
|
|
2213
2183
|
readonly registry: EDataServer.SourceRegistry
|
|
2214
|
-
readonly reload_supported: boolean
|
|
2215
2184
|
readonly reloadSupported: boolean
|
|
2216
2185
|
|
|
2217
2186
|
// Owm methods of EBackend-1.2.EBackend.DataFactory
|
|
@@ -2483,16 +2452,12 @@ export module ServerSideSource {
|
|
|
2483
2452
|
// Own constructor properties of EBackend-1.2.EBackend.ServerSideSource
|
|
2484
2453
|
|
|
2485
2454
|
file?: Gio.File | null
|
|
2486
|
-
oauth2_support?: OAuth2Support | null
|
|
2487
|
-
remote_creatable?: boolean | null
|
|
2488
|
-
remote_deletable?: boolean | null
|
|
2489
|
-
removable?: boolean | null
|
|
2490
|
-
server?: SourceRegistryServer | null
|
|
2491
|
-
writable?: boolean | null
|
|
2492
|
-
write_directory?: string | null
|
|
2493
2455
|
oauth2Support?: OAuth2Support | null
|
|
2494
2456
|
remoteCreatable?: boolean | null
|
|
2495
2457
|
remoteDeletable?: boolean | null
|
|
2458
|
+
removable?: boolean | null
|
|
2459
|
+
server?: SourceRegistryServer | null
|
|
2460
|
+
writable?: boolean | null
|
|
2496
2461
|
writeDirectory?: string | null
|
|
2497
2462
|
}
|
|
2498
2463
|
|
|
@@ -2504,16 +2469,12 @@ export interface ServerSideSource extends Gio.Initable, Gio.ProxyResolver {
|
|
|
2504
2469
|
|
|
2505
2470
|
readonly exported: boolean
|
|
2506
2471
|
readonly file: Gio.File
|
|
2507
|
-
oauth2_support: OAuth2Support
|
|
2508
2472
|
oauth2Support: OAuth2Support
|
|
2509
|
-
remote_creatable: any
|
|
2510
2473
|
remoteCreatable: any
|
|
2511
|
-
remote_deletable: any
|
|
2512
2474
|
remoteDeletable: any
|
|
2513
2475
|
removable: any
|
|
2514
2476
|
readonly server: SourceRegistryServer
|
|
2515
2477
|
writable: any
|
|
2516
|
-
write_directory: string | null
|
|
2517
2478
|
writeDirectory: string | null
|
|
2518
2479
|
|
|
2519
2480
|
// Owm methods of EBackend-1.2.EBackend.ServerSideSource
|
package/ebackend-1.2.d.ts
CHANGED
|
@@ -447,11 +447,9 @@ interface Backend {
|
|
|
447
447
|
// Own properties of EBackend-1.2.EBackend.Backend
|
|
448
448
|
|
|
449
449
|
connectable: Gio.SocketConnectable
|
|
450
|
-
readonly main_context: GLib.MainContext
|
|
451
450
|
readonly mainContext: GLib.MainContext
|
|
452
451
|
online: boolean
|
|
453
452
|
readonly source: EDataServer.Source
|
|
454
|
-
readonly user_prompter: UserPrompter
|
|
455
453
|
readonly userPrompter: UserPrompter
|
|
456
454
|
|
|
457
455
|
// Owm methods of EBackend-1.2.EBackend.Backend
|
|
@@ -1201,18 +1199,6 @@ module CacheKeys {
|
|
|
1201
1199
|
* The #ECache being used for this keys table.
|
|
1202
1200
|
*/
|
|
1203
1201
|
cache?: Cache | null
|
|
1204
|
-
/**
|
|
1205
|
-
* The column name for the keys.
|
|
1206
|
-
*/
|
|
1207
|
-
key_column_name?: string | null
|
|
1208
|
-
/**
|
|
1209
|
-
* The table name of this keys table.
|
|
1210
|
-
*/
|
|
1211
|
-
table_name?: string | null
|
|
1212
|
-
/**
|
|
1213
|
-
* The column name for the values.
|
|
1214
|
-
*/
|
|
1215
|
-
value_column_name?: string | null
|
|
1216
1202
|
/**
|
|
1217
1203
|
* The column name for the keys.
|
|
1218
1204
|
*/
|
|
@@ -1237,26 +1223,14 @@ interface CacheKeys {
|
|
|
1237
1223
|
* The #ECache being used for this keys table.
|
|
1238
1224
|
*/
|
|
1239
1225
|
readonly cache: Cache
|
|
1240
|
-
/**
|
|
1241
|
-
* The column name for the keys.
|
|
1242
|
-
*/
|
|
1243
|
-
readonly key_column_name: string | null
|
|
1244
1226
|
/**
|
|
1245
1227
|
* The column name for the keys.
|
|
1246
1228
|
*/
|
|
1247
1229
|
readonly keyColumnName: string | null
|
|
1248
|
-
/**
|
|
1249
|
-
* The table name of this keys table.
|
|
1250
|
-
*/
|
|
1251
|
-
readonly table_name: string | null
|
|
1252
1230
|
/**
|
|
1253
1231
|
* The table name of this keys table.
|
|
1254
1232
|
*/
|
|
1255
1233
|
readonly tableName: string | null
|
|
1256
|
-
/**
|
|
1257
|
-
* The column name for the values.
|
|
1258
|
-
*/
|
|
1259
|
-
readonly value_column_name: string | null
|
|
1260
1234
|
/**
|
|
1261
1235
|
* The column name for the values.
|
|
1262
1236
|
*/
|
|
@@ -1528,7 +1502,6 @@ interface CollectionBackend {
|
|
|
1528
1502
|
|
|
1529
1503
|
// Own properties of EBackend-1.2.EBackend.CollectionBackend
|
|
1530
1504
|
|
|
1531
|
-
readonly proxy_resolver: Gio.ProxyResolver
|
|
1532
1505
|
readonly proxyResolver: Gio.ProxyResolver
|
|
1533
1506
|
readonly server: SourceRegistryServer
|
|
1534
1507
|
|
|
@@ -2198,8 +2171,6 @@ module DataFactory {
|
|
|
2198
2171
|
|
|
2199
2172
|
// Own constructor properties of EBackend-1.2.EBackend.DataFactory
|
|
2200
2173
|
|
|
2201
|
-
backend_per_process?: number | null
|
|
2202
|
-
reload_supported?: boolean | null
|
|
2203
2174
|
backendPerProcess?: number | null
|
|
2204
2175
|
reloadSupported?: boolean | null
|
|
2205
2176
|
}
|
|
@@ -2210,10 +2181,8 @@ interface DataFactory extends EDataServer.Extensible, Gio.Initable {
|
|
|
2210
2181
|
|
|
2211
2182
|
// Own properties of EBackend-1.2.EBackend.DataFactory
|
|
2212
2183
|
|
|
2213
|
-
readonly backend_per_process: number
|
|
2214
2184
|
readonly backendPerProcess: number
|
|
2215
2185
|
readonly registry: EDataServer.SourceRegistry
|
|
2216
|
-
readonly reload_supported: boolean
|
|
2217
2186
|
readonly reloadSupported: boolean
|
|
2218
2187
|
|
|
2219
2188
|
// Owm methods of EBackend-1.2.EBackend.DataFactory
|
|
@@ -2485,16 +2454,12 @@ module ServerSideSource {
|
|
|
2485
2454
|
// Own constructor properties of EBackend-1.2.EBackend.ServerSideSource
|
|
2486
2455
|
|
|
2487
2456
|
file?: Gio.File | null
|
|
2488
|
-
oauth2_support?: OAuth2Support | null
|
|
2489
|
-
remote_creatable?: boolean | null
|
|
2490
|
-
remote_deletable?: boolean | null
|
|
2491
|
-
removable?: boolean | null
|
|
2492
|
-
server?: SourceRegistryServer | null
|
|
2493
|
-
writable?: boolean | null
|
|
2494
|
-
write_directory?: string | null
|
|
2495
2457
|
oauth2Support?: OAuth2Support | null
|
|
2496
2458
|
remoteCreatable?: boolean | null
|
|
2497
2459
|
remoteDeletable?: boolean | null
|
|
2460
|
+
removable?: boolean | null
|
|
2461
|
+
server?: SourceRegistryServer | null
|
|
2462
|
+
writable?: boolean | null
|
|
2498
2463
|
writeDirectory?: string | null
|
|
2499
2464
|
}
|
|
2500
2465
|
|
|
@@ -2506,16 +2471,12 @@ interface ServerSideSource extends Gio.Initable, Gio.ProxyResolver {
|
|
|
2506
2471
|
|
|
2507
2472
|
readonly exported: boolean
|
|
2508
2473
|
readonly file: Gio.File
|
|
2509
|
-
oauth2_support: OAuth2Support
|
|
2510
2474
|
oauth2Support: OAuth2Support
|
|
2511
|
-
remote_creatable: any
|
|
2512
2475
|
remoteCreatable: any
|
|
2513
|
-
remote_deletable: any
|
|
2514
2476
|
remoteDeletable: any
|
|
2515
2477
|
removable: any
|
|
2516
2478
|
readonly server: SourceRegistryServer
|
|
2517
2479
|
writable: any
|
|
2518
|
-
write_directory: string | null
|
|
2519
2480
|
writeDirectory: string | null
|
|
2520
2481
|
|
|
2521
2482
|
// Owm methods of EBackend-1.2.EBackend.ServerSideSource
|
package/package.json
CHANGED
|
@@ -1,13 +1,19 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@girs/ebackend-1.2",
|
|
3
|
-
"version": "1.2.0-3.2.
|
|
3
|
+
"version": "1.2.0-3.2.8",
|
|
4
4
|
"description": "GJS TypeScript type definitions for EBackend-1.2, generated from library version 1.2.0",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"module": "ebackend-1.2.js",
|
|
7
7
|
"main": "ebackend-1.2.js",
|
|
8
8
|
"exports": {
|
|
9
|
-
"./ambient":
|
|
10
|
-
|
|
9
|
+
"./ambient": {
|
|
10
|
+
"types": "./ebackend-1.2-ambient.d.ts",
|
|
11
|
+
"default": "./ebackend-1.2-ambient.js"
|
|
12
|
+
},
|
|
13
|
+
"./import": {
|
|
14
|
+
"types": "./ebackend-1.2-import.d.ts",
|
|
15
|
+
"default": "./ebackend-1.2-import.js"
|
|
16
|
+
},
|
|
11
17
|
".": {
|
|
12
18
|
"import": {
|
|
13
19
|
"types": "./ebackend-1.2.d.ts",
|
|
@@ -25,15 +31,15 @@
|
|
|
25
31
|
"test:cjs": "NODE_OPTIONS=--max_old_space_size=9216 tsc --noEmit ebackend-1.2.d.cts"
|
|
26
32
|
},
|
|
27
33
|
"dependencies": {
|
|
28
|
-
"@girs/camel-1.2": "^1.2.0-3.2.
|
|
29
|
-
"@girs/edataserver-1.2": "^1.2.0-3.2.
|
|
30
|
-
"@girs/gio-2.0": "^2.
|
|
31
|
-
"@girs/gjs": "^3.2.
|
|
32
|
-
"@girs/glib-2.0": "^2.
|
|
33
|
-
"@girs/gobject-2.0": "^2.
|
|
34
|
-
"@girs/json-1.0": "^1.7.1-3.2.
|
|
35
|
-
"@girs/libxml2-2.0": "^2.0.0-3.2.
|
|
36
|
-
"@girs/soup-3.0": "^3.4.
|
|
34
|
+
"@girs/camel-1.2": "^1.2.0-3.2.8",
|
|
35
|
+
"@girs/edataserver-1.2": "^1.2.0-3.2.8",
|
|
36
|
+
"@girs/gio-2.0": "^2.77.0-3.2.8",
|
|
37
|
+
"@girs/gjs": "^3.2.8",
|
|
38
|
+
"@girs/glib-2.0": "^2.77.0-3.2.8",
|
|
39
|
+
"@girs/gobject-2.0": "^2.77.0-3.2.8",
|
|
40
|
+
"@girs/json-1.0": "^1.7.1-3.2.8",
|
|
41
|
+
"@girs/libxml2-2.0": "^2.0.0-3.2.8",
|
|
42
|
+
"@girs/soup-3.0": "^3.4.2-3.2.8"
|
|
37
43
|
},
|
|
38
44
|
"devDependencies": {
|
|
39
45
|
"typescript": "*"
|
|
@@ -50,7 +56,7 @@
|
|
|
50
56
|
"license": "MIT",
|
|
51
57
|
"repository": {
|
|
52
58
|
"type": "git",
|
|
53
|
-
"url": "git+https://github.com/gjsify/
|
|
59
|
+
"url": "git+https://github.com/gjsify/ts-for-gir.git"
|
|
54
60
|
},
|
|
55
61
|
"bugs": {
|
|
56
62
|
"url": "https://github.com/gjsify/ts-for-gir/issues"
|