@girs/gio-2.0 2.78.0-3.2.7 → 2.78.0-3.3.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/gio-2.0.d.cts CHANGED
@@ -5418,7 +5418,7 @@ export function unix_mount_points_changed_since(time: number): boolean
5418
5418
  * If `time_read` is set, it will be filled with the mount timestamp,
5419
5419
  * allowing for checking if the mounts have changed with
5420
5420
  * g_unix_mount_points_changed_since().
5421
- * @returns a #GList of the UNIX mountpoints.
5421
+ * @returns a #GList of the UNIX mountpoints.
5422
5422
  */
5423
5423
  export function unix_mount_points_get(): [ /* returnType */ UnixMountPoint[], /* time_read */ number ]
5424
5424
  /**
@@ -5432,7 +5432,7 @@ export function unix_mounts_changed_since(time: number): boolean
5432
5432
  * If `time_read` is set, it will be filled with the mount
5433
5433
  * timestamp, allowing for checking if the mounts have changed
5434
5434
  * with g_unix_mounts_changed_since().
5435
- * @returns a #GList of the UNIX mounts.
5435
+ * @returns a #GList of the UNIX mounts.
5436
5436
  */
5437
5437
  export function unix_mounts_get(): [ /* returnType */ UnixMountEntry[], /* time_read */ number ]
5438
5438
  /**
@@ -5988,12 +5988,6 @@ export interface Action {
5988
5988
  * the action once it has been added to a #GActionGroup. It is immutable.
5989
5989
  */
5990
5990
  readonly name: string | null
5991
- /**
5992
- * The type of the parameter that must be given when activating the
5993
- * action. This is immutable, and may be %NULL if no parameter is needed when
5994
- * activating the action.
5995
- */
5996
- readonly parameter_type: GLib.VariantType
5997
5991
  /**
5998
5992
  * The type of the parameter that must be given when activating the
5999
5993
  * action. This is immutable, and may be %NULL if no parameter is needed when
@@ -6004,11 +5998,6 @@ export interface Action {
6004
5998
  * The state of the action, or %NULL if the action is stateless.
6005
5999
  */
6006
6000
  readonly state: GLib.Variant
6007
- /**
6008
- * The #GVariantType of the state that the action has, or %NULL if the
6009
- * action is stateless. This is immutable.
6010
- */
6011
- readonly state_type: GLib.VariantType
6012
6001
  /**
6013
6002
  * The #GVariantType of the state that the action has, or %NULL if the
6014
6003
  * action is stateless. This is immutable.
@@ -7222,7 +7211,7 @@ export interface AppInfo {
7222
7211
  * This function does not take in consideration associations added with
7223
7212
  * g_app_info_add_supports_type(), but only those exported directly by
7224
7213
  * the application.
7225
- * @returns a list of content types.
7214
+ * @returns a list of content types.
7226
7215
  */
7227
7216
  get_supported_types(): string[]
7228
7217
  /**
@@ -7469,7 +7458,7 @@ export interface AppInfo {
7469
7458
  * g_app_info_add_supports_type(), but only those exported directly by
7470
7459
  * the application.
7471
7460
  * @virtual
7472
- * @returns a list of content types.
7461
+ * @returns a list of content types.
7473
7462
  */
7474
7463
  vfunc_get_supported_types(): string[]
7475
7464
  /**
@@ -9358,11 +9347,6 @@ export module DebugController {
9358
9347
 
9359
9348
  // Own constructor properties of Gio-2.0.Gio.DebugController
9360
9349
 
9361
- /**
9362
- * %TRUE if debug output should be exposed (for example by forwarding it to
9363
- * the journal), %FALSE otherwise.
9364
- */
9365
- debug_enabled?: boolean | null
9366
9350
  /**
9367
9351
  * %TRUE if debug output should be exposed (for example by forwarding it to
9368
9352
  * the journal), %FALSE otherwise.
@@ -9376,11 +9360,6 @@ export interface DebugController extends Initable {
9376
9360
 
9377
9361
  // Own properties of Gio-2.0.Gio.DebugController
9378
9362
 
9379
- /**
9380
- * %TRUE if debug output should be exposed (for example by forwarding it to
9381
- * the journal), %FALSE otherwise.
9382
- */
9383
- debug_enabled: boolean
9384
9363
  /**
9385
9364
  * %TRUE if debug output should be exposed (for example by forwarding it to
9386
9365
  * the journal), %FALSE otherwise.
@@ -10039,42 +10018,6 @@ export module DtlsClientConnection {
10039
10018
 
10040
10019
  // Own constructor properties of Gio-2.0.Gio.DtlsClientConnection
10041
10020
 
10042
- /**
10043
- * A #GSocketConnectable describing the identity of the server that
10044
- * is expected on the other end of the connection.
10045
- *
10046
- * If the %G_TLS_CERTIFICATE_BAD_IDENTITY flag is set in
10047
- * #GDtlsClientConnection:validation-flags, this object will be used
10048
- * to determine the expected identify of the remote end of the
10049
- * connection; if #GDtlsClientConnection:server-identity is not set,
10050
- * or does not match the identity presented by the server, then the
10051
- * %G_TLS_CERTIFICATE_BAD_IDENTITY validation will fail.
10052
- *
10053
- * In addition to its use in verifying the server certificate,
10054
- * this is also used to give a hint to the server about what
10055
- * certificate we expect, which is useful for servers that serve
10056
- * virtual hosts.
10057
- */
10058
- server_identity?: SocketConnectable | null
10059
- /**
10060
- * What steps to perform when validating a certificate received from
10061
- * a server. Server certificates that fail to validate in any of the
10062
- * ways indicated here will be rejected unless the application
10063
- * overrides the default via #GDtlsConnection::accept-certificate.
10064
- *
10065
- * GLib guarantees that if certificate verification fails, at least one
10066
- * flag will be set, but it does not guarantee that all possible flags
10067
- * will be set. Accordingly, you may not safely decide to ignore any
10068
- * particular type of error. For example, it would be incorrect to mask
10069
- * %G_TLS_CERTIFICATE_EXPIRED if you want to allow expired certificates,
10070
- * because this could potentially be the only error flag set even if
10071
- * other problems exist with the certificate. Therefore, there is no
10072
- * safe way to use this property. This is not a horrible problem,
10073
- * though, because you should not be attempting to ignore validation
10074
- * errors anyway. If you really must ignore TLS certificate errors,
10075
- * connect to #GDtlsConnection::accept-certificate.
10076
- */
10077
- validation_flags?: TlsCertificateFlags | null
10078
10021
  /**
10079
10022
  * A #GSocketConnectable describing the identity of the server that
10080
10023
  * is expected on the other end of the connection.
@@ -10119,16 +10062,6 @@ export interface DtlsClientConnection extends DatagramBased, DtlsConnection {
10119
10062
 
10120
10063
  // Own properties of Gio-2.0.Gio.DtlsClientConnection
10121
10064
 
10122
- /**
10123
- * A list of the distinguished names of the Certificate Authorities
10124
- * that the server will accept client certificates signed by. If the
10125
- * server requests a client certificate during the handshake, then
10126
- * this property will be set after the handshake completes.
10127
- *
10128
- * Each item in the list is a #GByteArray which contains the complete
10129
- * subject DN of the certificate authority.
10130
- */
10131
- readonly accepted_cas: any[]
10132
10065
  /**
10133
10066
  * A list of the distinguished names of the Certificate Authorities
10134
10067
  * that the server will accept client certificates signed by. If the
@@ -10139,23 +10072,6 @@ export interface DtlsClientConnection extends DatagramBased, DtlsConnection {
10139
10072
  * subject DN of the certificate authority.
10140
10073
  */
10141
10074
  readonly acceptedCas: any[]
10142
- /**
10143
- * A #GSocketConnectable describing the identity of the server that
10144
- * is expected on the other end of the connection.
10145
- *
10146
- * If the %G_TLS_CERTIFICATE_BAD_IDENTITY flag is set in
10147
- * #GDtlsClientConnection:validation-flags, this object will be used
10148
- * to determine the expected identify of the remote end of the
10149
- * connection; if #GDtlsClientConnection:server-identity is not set,
10150
- * or does not match the identity presented by the server, then the
10151
- * %G_TLS_CERTIFICATE_BAD_IDENTITY validation will fail.
10152
- *
10153
- * In addition to its use in verifying the server certificate,
10154
- * this is also used to give a hint to the server about what
10155
- * certificate we expect, which is useful for servers that serve
10156
- * virtual hosts.
10157
- */
10158
- server_identity: SocketConnectable
10159
10075
  /**
10160
10076
  * A #GSocketConnectable describing the identity of the server that
10161
10077
  * is expected on the other end of the connection.
@@ -10173,25 +10089,6 @@ export interface DtlsClientConnection extends DatagramBased, DtlsConnection {
10173
10089
  * virtual hosts.
10174
10090
  */
10175
10091
  serverIdentity: SocketConnectable
10176
- /**
10177
- * What steps to perform when validating a certificate received from
10178
- * a server. Server certificates that fail to validate in any of the
10179
- * ways indicated here will be rejected unless the application
10180
- * overrides the default via #GDtlsConnection::accept-certificate.
10181
- *
10182
- * GLib guarantees that if certificate verification fails, at least one
10183
- * flag will be set, but it does not guarantee that all possible flags
10184
- * will be set. Accordingly, you may not safely decide to ignore any
10185
- * particular type of error. For example, it would be incorrect to mask
10186
- * %G_TLS_CERTIFICATE_EXPIRED if you want to allow expired certificates,
10187
- * because this could potentially be the only error flag set even if
10188
- * other problems exist with the certificate. Therefore, there is no
10189
- * safe way to use this property. This is not a horrible problem,
10190
- * though, because you should not be attempting to ignore validation
10191
- * errors anyway. If you really must ignore TLS certificate errors,
10192
- * connect to #GDtlsConnection::accept-certificate.
10193
- */
10194
- validation_flags: TlsCertificateFlags
10195
10092
  /**
10196
10093
  * What steps to perform when validating a certificate received from
10197
10094
  * a server. Server certificates that fail to validate in any of the
@@ -10361,12 +10258,12 @@ export module DtlsConnection {
10361
10258
  * advertises that it is willing to speak. See
10362
10259
  * g_dtls_connection_set_advertised_protocols().
10363
10260
  */
10364
- advertised_protocols?: string[] | null
10261
+ advertisedProtocols?: string[] | null
10365
10262
  /**
10366
10263
  * The #GDatagramBased that the connection wraps. Note that this may be any
10367
10264
  * implementation of #GDatagramBased, not just a #GSocket.
10368
10265
  */
10369
- base_socket?: DatagramBased | null
10266
+ baseSocket?: DatagramBased | null
10370
10267
  /**
10371
10268
  * The connection's certificate; see
10372
10269
  * g_dtls_connection_set_certificate().
@@ -10397,27 +10294,6 @@ export module DtlsConnection {
10397
10294
  * user for passwords where necessary.
10398
10295
  */
10399
10296
  interaction?: TlsInteraction | null
10400
- /**
10401
- * The rehandshaking mode. See
10402
- * g_dtls_connection_set_rehandshake_mode().
10403
- */
10404
- rehandshake_mode?: TlsRehandshakeMode | null
10405
- /**
10406
- * Whether or not proper TLS close notification is required.
10407
- * See g_dtls_connection_set_require_close_notify().
10408
- */
10409
- require_close_notify?: boolean | null
10410
- /**
10411
- * The list of application-layer protocols that the connection
10412
- * advertises that it is willing to speak. See
10413
- * g_dtls_connection_set_advertised_protocols().
10414
- */
10415
- advertisedProtocols?: string[] | null
10416
- /**
10417
- * The #GDatagramBased that the connection wraps. Note that this may be any
10418
- * implementation of #GDatagramBased, not just a #GSocket.
10419
- */
10420
- baseSocket?: DatagramBased | null
10421
10297
  /**
10422
10298
  * The rehandshaking mode. See
10423
10299
  * g_dtls_connection_set_rehandshake_mode().
@@ -10436,23 +10312,12 @@ export interface DtlsConnection extends DatagramBased {
10436
10312
 
10437
10313
  // Own properties of Gio-2.0.Gio.DtlsConnection
10438
10314
 
10439
- /**
10440
- * The list of application-layer protocols that the connection
10441
- * advertises that it is willing to speak. See
10442
- * g_dtls_connection_set_advertised_protocols().
10443
- */
10444
- advertised_protocols: string[]
10445
10315
  /**
10446
10316
  * The list of application-layer protocols that the connection
10447
10317
  * advertises that it is willing to speak. See
10448
10318
  * g_dtls_connection_set_advertised_protocols().
10449
10319
  */
10450
10320
  advertisedProtocols: string[]
10451
- /**
10452
- * The #GDatagramBased that the connection wraps. Note that this may be any
10453
- * implementation of #GDatagramBased, not just a #GSocket.
10454
- */
10455
- readonly base_socket: DatagramBased
10456
10321
  /**
10457
10322
  * The #GDatagramBased that the connection wraps. Note that this may be any
10458
10323
  * implementation of #GDatagramBased, not just a #GSocket.
@@ -10463,10 +10328,6 @@ export interface DtlsConnection extends DatagramBased {
10463
10328
  * g_dtls_connection_set_certificate().
10464
10329
  */
10465
10330
  certificate: TlsCertificate
10466
- /**
10467
- * The name of the DTLS ciphersuite in use. See g_dtls_connection_get_ciphersuite_name().
10468
- */
10469
- readonly ciphersuite_name: string | null
10470
10331
  /**
10471
10332
  * The name of the DTLS ciphersuite in use. See g_dtls_connection_get_ciphersuite_name().
10472
10333
  */
@@ -10496,25 +10357,11 @@ export interface DtlsConnection extends DatagramBased {
10496
10357
  * user for passwords where necessary.
10497
10358
  */
10498
10359
  interaction: TlsInteraction
10499
- /**
10500
- * The application-layer protocol negotiated during the TLS
10501
- * handshake. See g_dtls_connection_get_negotiated_protocol().
10502
- */
10503
- readonly negotiated_protocol: string | null
10504
10360
  /**
10505
10361
  * The application-layer protocol negotiated during the TLS
10506
10362
  * handshake. See g_dtls_connection_get_negotiated_protocol().
10507
10363
  */
10508
10364
  readonly negotiatedProtocol: string | null
10509
- /**
10510
- * The connection's peer's certificate, after the TLS handshake has
10511
- * completed or failed. Note in particular that this is not yet set
10512
- * during the emission of #GDtlsConnection::accept-certificate.
10513
- *
10514
- * (You can watch for a #GObject::notify signal on this property to
10515
- * detect when a handshake has occurred.)
10516
- */
10517
- readonly peer_certificate: TlsCertificate
10518
10365
  /**
10519
10366
  * The connection's peer's certificate, after the TLS handshake has
10520
10367
  * completed or failed. Note in particular that this is not yet set
@@ -10524,23 +10371,6 @@ export interface DtlsConnection extends DatagramBased {
10524
10371
  * detect when a handshake has occurred.)
10525
10372
  */
10526
10373
  readonly peerCertificate: TlsCertificate
10527
- /**
10528
- * The errors noticed while verifying
10529
- * #GDtlsConnection:peer-certificate. Normally this should be 0, but
10530
- * it may not be if #GDtlsClientConnection:validation-flags is not
10531
- * %G_TLS_CERTIFICATE_VALIDATE_ALL, or if
10532
- * #GDtlsConnection::accept-certificate overrode the default
10533
- * behavior.
10534
- *
10535
- * GLib guarantees that if certificate verification fails, at least
10536
- * one error will be set, but it does not guarantee that all possible
10537
- * errors will be set. Accordingly, you may not safely decide to
10538
- * ignore any particular type of error. For example, it would be
10539
- * incorrect to mask %G_TLS_CERTIFICATE_EXPIRED if you want to allow
10540
- * expired certificates, because this could potentially be the only
10541
- * error flag set even if other problems exist with the certificate.
10542
- */
10543
- readonly peer_certificate_errors: TlsCertificateFlags
10544
10374
  /**
10545
10375
  * The errors noticed while verifying
10546
10376
  * #GDtlsConnection:peer-certificate. Normally this should be 0, but
@@ -10558,29 +10388,15 @@ export interface DtlsConnection extends DatagramBased {
10558
10388
  * error flag set even if other problems exist with the certificate.
10559
10389
  */
10560
10390
  readonly peerCertificateErrors: TlsCertificateFlags
10561
- /**
10562
- * The DTLS protocol version in use. See g_dtls_connection_get_protocol_version().
10563
- */
10564
- readonly protocol_version: TlsProtocolVersion
10565
10391
  /**
10566
10392
  * The DTLS protocol version in use. See g_dtls_connection_get_protocol_version().
10567
10393
  */
10568
10394
  readonly protocolVersion: TlsProtocolVersion
10569
- /**
10570
- * The rehandshaking mode. See
10571
- * g_dtls_connection_set_rehandshake_mode().
10572
- */
10573
- rehandshake_mode: TlsRehandshakeMode
10574
10395
  /**
10575
10396
  * The rehandshaking mode. See
10576
10397
  * g_dtls_connection_set_rehandshake_mode().
10577
10398
  */
10578
10399
  rehandshakeMode: TlsRehandshakeMode
10579
- /**
10580
- * Whether or not proper TLS close notification is required.
10581
- * See g_dtls_connection_set_require_close_notify().
10582
- */
10583
- require_close_notify: boolean
10584
10400
  /**
10585
10401
  * Whether or not proper TLS close notification is required.
10586
10402
  * See g_dtls_connection_set_require_close_notify().
@@ -11174,12 +10990,6 @@ export module DtlsServerConnection {
11174
10990
 
11175
10991
  // Own constructor properties of Gio-2.0.Gio.DtlsServerConnection
11176
10992
 
11177
- /**
11178
- * The #GTlsAuthenticationMode for the server. This can be changed
11179
- * before calling g_dtls_connection_handshake() if you want to
11180
- * rehandshake with a different mode from the initial handshake.
11181
- */
11182
- authentication_mode?: TlsAuthenticationMode | null
11183
10993
  /**
11184
10994
  * The #GTlsAuthenticationMode for the server. This can be changed
11185
10995
  * before calling g_dtls_connection_handshake() if you want to
@@ -11194,12 +11004,6 @@ export interface DtlsServerConnection extends DatagramBased, DtlsConnection {
11194
11004
 
11195
11005
  // Own properties of Gio-2.0.Gio.DtlsServerConnection
11196
11006
 
11197
- /**
11198
- * The #GTlsAuthenticationMode for the server. This can be changed
11199
- * before calling g_dtls_connection_handshake() if you want to
11200
- * rehandshake with a different mode from the initial handshake.
11201
- */
11202
- authentication_mode: TlsAuthenticationMode
11203
11007
  /**
11204
11008
  * The #GTlsAuthenticationMode for the server. This can be changed
11205
11009
  * before calling g_dtls_connection_handshake() if you want to
@@ -11435,7 +11239,7 @@ export interface File {
11435
11239
  * @param flags set of #GFileCopyFlags
11436
11240
  * @param io_priority the [I/O priority][io-priority] of the request
11437
11241
  * @param cancellable optional #GCancellable object, %NULL to ignore
11438
- * @param progress_callback function to callback with progress information, or %NULL if progress information is not needed
11242
+ * @param progress_callback function to callback with progress information, or %NULL if progress information is not needed
11439
11243
  * @param callback a #GAsyncReadyCallback to call when the request is satisfied
11440
11244
  */
11441
11245
  copy_async(destination: File, flags: FileCopyFlags, io_priority: number, cancellable: Cancellable | null, progress_callback: FileProgressCallback | null, callback: AsyncReadyCallback<this> | null): void
@@ -11459,7 +11263,7 @@ export interface File {
11459
11263
  * @param flags set of #GFileCopyFlags
11460
11264
  * @param io_priority the [I/O priority][io-priority] of the request
11461
11265
  * @param cancellable optional #GCancellable object, %NULL to ignore
11462
- * @param progress_callback function to callback with progress information, or %NULL if progress information is not needed
11266
+ * @param progress_callback function to callback with progress information, or %NULL if progress information is not needed
11463
11267
  * @returns A Promise of: a %TRUE on success, %FALSE on error.
11464
11268
  */
11465
11269
  copy_async(destination: File, flags: FileCopyFlags, io_priority: number, cancellable: Cancellable | null, progress_callback: FileProgressCallback | null): globalThis.Promise<boolean>
@@ -12461,7 +12265,7 @@ export interface File {
12461
12265
  * @param flags set of #GFileCopyFlags
12462
12266
  * @param io_priority the [I/O priority][io-priority] of the request
12463
12267
  * @param cancellable optional #GCancellable object, %NULL to ignore
12464
- * @param progress_callback #GFileProgressCallback function for updates
12268
+ * @param progress_callback #GFileProgressCallback function for updates
12465
12269
  * @param callback a #GAsyncReadyCallback to call when the request is satisfied
12466
12270
  */
12467
12271
  move_async(destination: File, flags: FileCopyFlags, io_priority: number, cancellable: Cancellable | null, progress_callback: FileProgressCallback | null, callback: AsyncReadyCallback<this> | null): void
@@ -12484,7 +12288,7 @@ export interface File {
12484
12288
  * @param flags set of #GFileCopyFlags
12485
12289
  * @param io_priority the [I/O priority][io-priority] of the request
12486
12290
  * @param cancellable optional #GCancellable object, %NULL to ignore
12487
- * @param progress_callback #GFileProgressCallback function for updates
12291
+ * @param progress_callback #GFileProgressCallback function for updates
12488
12292
  * @returns A Promise of: %TRUE on successful file move, %FALSE otherwise.
12489
12293
  */
12490
12294
  move_async(destination: File, flags: FileCopyFlags, io_priority: number, cancellable: Cancellable | null, progress_callback: FileProgressCallback | null): globalThis.Promise<boolean>
@@ -13691,7 +13495,7 @@ export interface File {
13691
13495
  * @param flags set of #GFileCopyFlags
13692
13496
  * @param io_priority the [I/O priority][io-priority] of the request
13693
13497
  * @param cancellable optional #GCancellable object, %NULL to ignore
13694
- * @param progress_callback function to callback with progress information, or %NULL if progress information is not needed
13498
+ * @param progress_callback function to callback with progress information, or %NULL if progress information is not needed
13695
13499
  * @param callback a #GAsyncReadyCallback to call when the request is satisfied
13696
13500
  */
13697
13501
  vfunc_copy_async(destination: File, flags: FileCopyFlags, io_priority: number, cancellable: Cancellable | null, progress_callback: FileProgressCallback | null, callback: AsyncReadyCallback<this> | null): void
@@ -14392,7 +14196,7 @@ export interface File {
14392
14196
  * @param flags set of #GFileCopyFlags
14393
14197
  * @param io_priority the [I/O priority][io-priority] of the request
14394
14198
  * @param cancellable optional #GCancellable object, %NULL to ignore
14395
- * @param progress_callback #GFileProgressCallback function for updates
14199
+ * @param progress_callback #GFileProgressCallback function for updates
14396
14200
  * @param callback a #GAsyncReadyCallback to call when the request is satisfied
14397
14201
  */
14398
14202
  vfunc_move_async(destination: File, flags: FileCopyFlags, io_priority: number, cancellable: Cancellable | null, progress_callback: FileProgressCallback | null, callback: AsyncReadyCallback<this> | null): void
@@ -16703,26 +16507,6 @@ export interface NetworkMonitor extends Initable {
16703
16507
  * #GNetworkConnectivity for more details.
16704
16508
  */
16705
16509
  readonly connectivity: NetworkConnectivity
16706
- /**
16707
- * Whether the network is considered available. That is, whether the
16708
- * system has a default route for at least one of IPv4 or IPv6.
16709
- *
16710
- * Real-world networks are of course much more complicated than
16711
- * this; the machine may be connected to a wifi hotspot that
16712
- * requires payment before allowing traffic through, or may be
16713
- * connected to a functioning router that has lost its own upstream
16714
- * connectivity. Some hosts might only be accessible when a VPN is
16715
- * active. Other hosts might only be accessible when the VPN is
16716
- * not active. Thus, it is best to use g_network_monitor_can_reach()
16717
- * or g_network_monitor_can_reach_async() to test for reachability
16718
- * on a host-by-host basis. (On the other hand, when the property is
16719
- * %FALSE, the application can reasonably expect that no remote
16720
- * hosts at all are reachable, and should indicate this to the user
16721
- * in its UI.)
16722
- *
16723
- * See also #GNetworkMonitor::network-changed.
16724
- */
16725
- readonly network_available: boolean
16726
16510
  /**
16727
16511
  * Whether the network is considered available. That is, whether the
16728
16512
  * system has a default route for at least one of IPv4 or IPv6.
@@ -16743,30 +16527,6 @@ export interface NetworkMonitor extends Initable {
16743
16527
  * See also #GNetworkMonitor::network-changed.
16744
16528
  */
16745
16529
  readonly networkAvailable: boolean
16746
- /**
16747
- * Whether the network is considered metered.
16748
- *
16749
- * That is, whether the
16750
- * system has traffic flowing through the default connection that is
16751
- * subject to limitations set by service providers. For example, traffic
16752
- * might be billed by the amount of data transmitted, or there might be a
16753
- * quota on the amount of traffic per month. This is typical with tethered
16754
- * connections (3G and 4G) and in such situations, bandwidth intensive
16755
- * applications may wish to avoid network activity where possible if it will
16756
- * cost the user money or use up their limited quota. Anything more than a
16757
- * few hundreds of kilobytes of data usage per hour should be avoided without
16758
- * asking permission from the user.
16759
- *
16760
- * If more information is required about specific devices then the
16761
- * system network management API should be used instead (for example,
16762
- * NetworkManager or ConnMan).
16763
- *
16764
- * If this information is not available then no networks will be
16765
- * marked as metered.
16766
- *
16767
- * See also #GNetworkMonitor:network-available.
16768
- */
16769
- readonly network_metered: boolean
16770
16530
  /**
16771
16531
  * Whether the network is considered metered.
16772
16532
  *
@@ -17422,10 +17182,6 @@ export interface PowerProfileMonitor extends Initable {
17422
17182
 
17423
17183
  // Own properties of Gio-2.0.Gio.PowerProfileMonitor
17424
17184
 
17425
- /**
17426
- * Whether “Power Saver” mode is enabled on the system.
17427
- */
17428
- readonly power_saver_enabled: boolean
17429
17185
  /**
17430
17186
  * Whether “Power Saver” mode is enabled on the system.
17431
17187
  */
@@ -18377,47 +18133,6 @@ export module TlsClientConnection {
18377
18133
 
18378
18134
  // Own constructor properties of Gio-2.0.Gio.TlsClientConnection
18379
18135
 
18380
- /**
18381
- * A #GSocketConnectable describing the identity of the server that
18382
- * is expected on the other end of the connection.
18383
- *
18384
- * If the %G_TLS_CERTIFICATE_BAD_IDENTITY flag is set in
18385
- * #GTlsClientConnection:validation-flags, this object will be used
18386
- * to determine the expected identify of the remote end of the
18387
- * connection; if #GTlsClientConnection:server-identity is not set,
18388
- * or does not match the identity presented by the server, then the
18389
- * %G_TLS_CERTIFICATE_BAD_IDENTITY validation will fail.
18390
- *
18391
- * In addition to its use in verifying the server certificate,
18392
- * this is also used to give a hint to the server about what
18393
- * certificate we expect, which is useful for servers that serve
18394
- * virtual hosts.
18395
- */
18396
- server_identity?: SocketConnectable | null
18397
- /**
18398
- * SSL 3.0 is no longer supported. See
18399
- * g_tls_client_connection_set_use_ssl3() for details.
18400
- */
18401
- use_ssl3?: boolean | null
18402
- /**
18403
- * What steps to perform when validating a certificate received from
18404
- * a server. Server certificates that fail to validate in any of the
18405
- * ways indicated here will be rejected unless the application
18406
- * overrides the default via #GTlsConnection::accept-certificate.
18407
- *
18408
- * GLib guarantees that if certificate verification fails, at least one
18409
- * flag will be set, but it does not guarantee that all possible flags
18410
- * will be set. Accordingly, you may not safely decide to ignore any
18411
- * particular type of error. For example, it would be incorrect to mask
18412
- * %G_TLS_CERTIFICATE_EXPIRED if you want to allow expired certificates,
18413
- * because this could potentially be the only error flag set even if
18414
- * other problems exist with the certificate. Therefore, there is no
18415
- * safe way to use this property. This is not a horrible problem,
18416
- * though, because you should not be attempting to ignore validation
18417
- * errors anyway. If you really must ignore TLS certificate errors,
18418
- * connect to #GTlsConnection::accept-certificate.
18419
- */
18420
- validation_flags?: TlsCertificateFlags | null
18421
18136
  /**
18422
18137
  * A #GSocketConnectable describing the identity of the server that
18423
18138
  * is expected on the other end of the connection.
@@ -18467,16 +18182,6 @@ export interface TlsClientConnection extends TlsConnection {
18467
18182
 
18468
18183
  // Own properties of Gio-2.0.Gio.TlsClientConnection
18469
18184
 
18470
- /**
18471
- * A list of the distinguished names of the Certificate Authorities
18472
- * that the server will accept client certificates signed by. If the
18473
- * server requests a client certificate during the handshake, then
18474
- * this property will be set after the handshake completes.
18475
- *
18476
- * Each item in the list is a #GByteArray which contains the complete
18477
- * subject DN of the certificate authority.
18478
- */
18479
- readonly accepted_cas: any[]
18480
18185
  /**
18481
18186
  * A list of the distinguished names of the Certificate Authorities
18482
18187
  * that the server will accept client certificates signed by. If the
@@ -18487,23 +18192,6 @@ export interface TlsClientConnection extends TlsConnection {
18487
18192
  * subject DN of the certificate authority.
18488
18193
  */
18489
18194
  readonly acceptedCas: any[]
18490
- /**
18491
- * A #GSocketConnectable describing the identity of the server that
18492
- * is expected on the other end of the connection.
18493
- *
18494
- * If the %G_TLS_CERTIFICATE_BAD_IDENTITY flag is set in
18495
- * #GTlsClientConnection:validation-flags, this object will be used
18496
- * to determine the expected identify of the remote end of the
18497
- * connection; if #GTlsClientConnection:server-identity is not set,
18498
- * or does not match the identity presented by the server, then the
18499
- * %G_TLS_CERTIFICATE_BAD_IDENTITY validation will fail.
18500
- *
18501
- * In addition to its use in verifying the server certificate,
18502
- * this is also used to give a hint to the server about what
18503
- * certificate we expect, which is useful for servers that serve
18504
- * virtual hosts.
18505
- */
18506
- server_identity: SocketConnectable
18507
18195
  /**
18508
18196
  * A #GSocketConnectable describing the identity of the server that
18509
18197
  * is expected on the other end of the connection.
@@ -18521,35 +18209,11 @@ export interface TlsClientConnection extends TlsConnection {
18521
18209
  * virtual hosts.
18522
18210
  */
18523
18211
  serverIdentity: SocketConnectable
18524
- /**
18525
- * SSL 3.0 is no longer supported. See
18526
- * g_tls_client_connection_set_use_ssl3() for details.
18527
- */
18528
- use_ssl3: boolean
18529
18212
  /**
18530
18213
  * SSL 3.0 is no longer supported. See
18531
18214
  * g_tls_client_connection_set_use_ssl3() for details.
18532
18215
  */
18533
18216
  useSsl3: boolean
18534
- /**
18535
- * What steps to perform when validating a certificate received from
18536
- * a server. Server certificates that fail to validate in any of the
18537
- * ways indicated here will be rejected unless the application
18538
- * overrides the default via #GTlsConnection::accept-certificate.
18539
- *
18540
- * GLib guarantees that if certificate verification fails, at least one
18541
- * flag will be set, but it does not guarantee that all possible flags
18542
- * will be set. Accordingly, you may not safely decide to ignore any
18543
- * particular type of error. For example, it would be incorrect to mask
18544
- * %G_TLS_CERTIFICATE_EXPIRED if you want to allow expired certificates,
18545
- * because this could potentially be the only error flag set even if
18546
- * other problems exist with the certificate. Therefore, there is no
18547
- * safe way to use this property. This is not a horrible problem,
18548
- * though, because you should not be attempting to ignore validation
18549
- * errors anyway. If you really must ignore TLS certificate errors,
18550
- * connect to #GTlsConnection::accept-certificate.
18551
- */
18552
- validation_flags: TlsCertificateFlags
18553
18217
  /**
18554
18218
  * What steps to perform when validating a certificate received from
18555
18219
  * a server. Server certificates that fail to validate in any of the
@@ -18877,12 +18541,6 @@ export module TlsServerConnection {
18877
18541
 
18878
18542
  // Own constructor properties of Gio-2.0.Gio.TlsServerConnection
18879
18543
 
18880
- /**
18881
- * The #GTlsAuthenticationMode for the server. This can be changed
18882
- * before calling g_tls_connection_handshake() if you want to
18883
- * rehandshake with a different mode from the initial handshake.
18884
- */
18885
- authentication_mode?: TlsAuthenticationMode | null
18886
18544
  /**
18887
18545
  * The #GTlsAuthenticationMode for the server. This can be changed
18888
18546
  * before calling g_tls_connection_handshake() if you want to
@@ -18897,12 +18555,6 @@ export interface TlsServerConnection extends TlsConnection {
18897
18555
 
18898
18556
  // Own properties of Gio-2.0.Gio.TlsServerConnection
18899
18557
 
18900
- /**
18901
- * The #GTlsAuthenticationMode for the server. This can be changed
18902
- * before calling g_tls_connection_handshake() if you want to
18903
- * rehandshake with a different mode from the initial handshake.
18904
- */
18905
- authentication_mode: TlsAuthenticationMode
18906
18558
  /**
18907
18559
  * The #GTlsAuthenticationMode for the server. This can be changed
18908
18560
  * before calling g_tls_connection_handshake() if you want to
@@ -19692,7 +19344,7 @@ export interface AppLaunchContext {
19692
19344
  * the child process when `context` is used to launch an application.
19693
19345
  * This is a %NULL-terminated array of strings, where each string has
19694
19346
  * the form `KEY=VALUE`.
19695
- * @returns the child's environment
19347
+ * @returns the child's environment
19696
19348
  */
19697
19349
  get_environment(): string[]
19698
19350
  /**
@@ -19889,13 +19541,9 @@ export module Application {
19889
19541
 
19890
19542
  // Own constructor properties of Gio-2.0.Gio.Application
19891
19543
 
19892
- action_group?: ActionGroup | null
19893
- application_id?: string | null
19894
- flags?: ApplicationFlags | null
19895
- inactivity_timeout?: number | null
19896
- resource_base_path?: string | null
19897
19544
  actionGroup?: ActionGroup | null
19898
19545
  applicationId?: string | null
19546
+ flags?: ApplicationFlags | null
19899
19547
  inactivityTimeout?: number | null
19900
19548
  resourceBasePath?: string | null
19901
19549
  }
@@ -19906,28 +19554,17 @@ export interface Application extends ActionGroup, ActionMap {
19906
19554
 
19907
19555
  // Own properties of Gio-2.0.Gio.Application
19908
19556
 
19909
- action_group: ActionGroup
19910
19557
  actionGroup: ActionGroup
19911
- application_id: string | null
19912
19558
  applicationId: string | null
19913
19559
  flags: ApplicationFlags
19914
- inactivity_timeout: number
19915
19560
  inactivityTimeout: number
19916
- /**
19917
- * Whether the application is currently marked as busy through
19918
- * g_application_mark_busy() or g_application_bind_busy_property().
19919
- */
19920
- readonly is_busy: boolean
19921
19561
  /**
19922
19562
  * Whether the application is currently marked as busy through
19923
19563
  * g_application_mark_busy() or g_application_bind_busy_property().
19924
19564
  */
19925
19565
  readonly isBusy: boolean
19926
- readonly is_registered: boolean
19927
19566
  readonly isRegistered: boolean
19928
- readonly is_remote: boolean
19929
19567
  readonly isRemote: boolean
19930
- resource_base_path: string | null
19931
19568
  resourceBasePath: string | null
19932
19569
 
19933
19570
  // Owm methods of Gio-2.0.Gio.Application
@@ -20333,7 +19970,7 @@ export interface Application extends ActionGroup, ActionMap {
20333
19970
  * should not be used from applications like editors that need precise
20334
19971
  * control over when processes invoked via the commandline will exit and
20335
19972
  * what their exit status will be.
20336
- * @param argv the argv from main(), or %NULL
19973
+ * @param argv the argv from main(), or %NULL
20337
19974
  * @returns the exit status
20338
19975
  */
20339
19976
  run(argv: string[] | null): number
@@ -20870,7 +20507,6 @@ export module ApplicationCommandLine {
20870
20507
 
20871
20508
  "arguments"?: GLib.Variant | null
20872
20509
  options?: GLib.Variant | null
20873
- platform_data?: GLib.Variant | null
20874
20510
  platformData?: GLib.Variant | null
20875
20511
  }
20876
20512
 
@@ -20881,10 +20517,8 @@ export interface ApplicationCommandLine {
20881
20517
  // Own properties of Gio-2.0.Gio.ApplicationCommandLine
20882
20518
 
20883
20519
  readonly "arguments": GLib.Variant
20884
- readonly is_remote: boolean
20885
20520
  readonly isRemote: boolean
20886
20521
  readonly options: GLib.Variant
20887
- readonly platform_data: GLib.Variant
20888
20522
  readonly platformData: GLib.Variant
20889
20523
 
20890
20524
  // Owm methods of Gio-2.0.Gio.ApplicationCommandLine
@@ -20912,7 +20546,7 @@ export interface ApplicationCommandLine {
20912
20546
  *
20913
20547
  * The return value is %NULL-terminated and should be freed using
20914
20548
  * g_strfreev().
20915
- * @returns the string array containing the arguments (the argv)
20549
+ * @returns the string array containing the arguments (the argv)
20916
20550
  */
20917
20551
  get_arguments(): string[]
20918
20552
  /**
@@ -20943,7 +20577,7 @@ export interface ApplicationCommandLine {
20943
20577
  *
20944
20578
  * See g_application_command_line_getenv() if you are only interested
20945
20579
  * in the value of a single environment variable.
20946
- * @returns the environment strings, or %NULL if they were not sent
20580
+ * @returns the environment strings, or %NULL if they were not sent
20947
20581
  */
20948
20582
  get_environ(): string[]
20949
20583
  /**
@@ -21274,7 +20908,6 @@ export module BufferedInputStream {
21274
20908
 
21275
20909
  // Own constructor properties of Gio-2.0.Gio.BufferedInputStream
21276
20910
 
21277
- buffer_size?: number | null
21278
20911
  bufferSize?: number | null
21279
20912
  }
21280
20913
 
@@ -21284,7 +20917,6 @@ export interface BufferedInputStream extends Seekable {
21284
20917
 
21285
20918
  // Own properties of Gio-2.0.Gio.BufferedInputStream
21286
20919
 
21287
- buffer_size: number
21288
20920
  bufferSize: number
21289
20921
 
21290
20922
  // Own fields of Gio-2.0.Gio.BufferedInputStream
@@ -21382,7 +21014,7 @@ export interface BufferedInputStream extends Seekable {
21382
21014
  * Returns the buffer with the currently available bytes. The returned
21383
21015
  * buffer must not be modified and will become invalid when reading from
21384
21016
  * the stream or filling the buffer.
21385
- * @returns read-only buffer
21017
+ * @returns read-only buffer
21386
21018
  */
21387
21019
  peek_buffer(): Uint8Array
21388
21020
  /**
@@ -21546,8 +21178,6 @@ export module BufferedOutputStream {
21546
21178
 
21547
21179
  // Own constructor properties of Gio-2.0.Gio.BufferedOutputStream
21548
21180
 
21549
- auto_grow?: boolean | null
21550
- buffer_size?: number | null
21551
21181
  autoGrow?: boolean | null
21552
21182
  bufferSize?: number | null
21553
21183
  }
@@ -21558,9 +21188,7 @@ export interface BufferedOutputStream extends Seekable {
21558
21188
 
21559
21189
  // Own properties of Gio-2.0.Gio.BufferedOutputStream
21560
21190
 
21561
- auto_grow: boolean
21562
21191
  autoGrow: boolean
21563
- buffer_size: number
21564
21192
  bufferSize: number
21565
21193
 
21566
21194
  // Own fields of Gio-2.0.Gio.BufferedOutputStream
@@ -22018,9 +21646,6 @@ export module CharsetConverter {
22018
21646
 
22019
21647
  // Own constructor properties of Gio-2.0.Gio.CharsetConverter
22020
21648
 
22021
- from_charset?: string | null
22022
- to_charset?: string | null
22023
- use_fallback?: boolean | null
22024
21649
  fromCharset?: string | null
22025
21650
  toCharset?: string | null
22026
21651
  useFallback?: boolean | null
@@ -22032,11 +21657,8 @@ export interface CharsetConverter extends Converter, Initable {
22032
21657
 
22033
21658
  // Own properties of Gio-2.0.Gio.CharsetConverter
22034
21659
 
22035
- readonly from_charset: string | null
22036
21660
  readonly fromCharset: string | null
22037
- readonly to_charset: string | null
22038
21661
  readonly toCharset: string | null
22039
- use_fallback: boolean
22040
21662
  useFallback: boolean
22041
21663
 
22042
21664
  // Owm methods of Gio-2.0.Gio.CharsetConverter
@@ -22665,7 +22287,7 @@ export module DBusConnection {
22665
22287
  /**
22666
22288
  * A #GDBusAuthObserver object to assist in the authentication process or %NULL.
22667
22289
  */
22668
- authentication_observer?: DBusAuthObserver | null
22290
+ authenticationObserver?: DBusAuthObserver | null
22669
22291
  /**
22670
22292
  * A boolean specifying whether the process will be terminated (by
22671
22293
  * calling `raise(SIGTERM)`) if the connection is closed by the
@@ -22674,7 +22296,7 @@ export module DBusConnection {
22674
22296
  * Note that #GDBusConnection objects returned by g_bus_get_finish()
22675
22297
  * and g_bus_get_sync() will (usually) have this property set to %TRUE.
22676
22298
  */
22677
- exit_on_close?: boolean | null
22299
+ exitOnClose?: boolean | null
22678
22300
  /**
22679
22301
  * Flags from the #GDBusConnectionFlags enumeration.
22680
22302
  */
@@ -22715,19 +22337,6 @@ export module DBusConnection {
22715
22337
  * the stream directly.
22716
22338
  */
22717
22339
  stream?: IOStream | null
22718
- /**
22719
- * A #GDBusAuthObserver object to assist in the authentication process or %NULL.
22720
- */
22721
- authenticationObserver?: DBusAuthObserver | null
22722
- /**
22723
- * A boolean specifying whether the process will be terminated (by
22724
- * calling `raise(SIGTERM)`) if the connection is closed by the
22725
- * remote peer.
22726
- *
22727
- * Note that #GDBusConnection objects returned by g_bus_get_finish()
22728
- * and g_bus_get_sync() will (usually) have this property set to %TRUE.
22729
- */
22730
- exitOnClose?: boolean | null
22731
22340
  }
22732
22341
 
22733
22342
  }
@@ -22741,10 +22350,6 @@ export interface DBusConnection extends AsyncInitable, Initable {
22741
22350
  * when establishing the connection.
22742
22351
  */
22743
22352
  readonly address: string | null
22744
- /**
22745
- * A #GDBusAuthObserver object to assist in the authentication process or %NULL.
22746
- */
22747
- readonly authentication_observer: DBusAuthObserver
22748
22353
  /**
22749
22354
  * A #GDBusAuthObserver object to assist in the authentication process or %NULL.
22750
22355
  */
@@ -22758,15 +22363,6 @@ export interface DBusConnection extends AsyncInitable, Initable {
22758
22363
  * A boolean specifying whether the connection has been closed.
22759
22364
  */
22760
22365
  readonly closed: boolean
22761
- /**
22762
- * A boolean specifying whether the process will be terminated (by
22763
- * calling `raise(SIGTERM)`) if the connection is closed by the
22764
- * remote peer.
22765
- *
22766
- * Note that #GDBusConnection objects returned by g_bus_get_finish()
22767
- * and g_bus_get_sync() will (usually) have this property set to %TRUE.
22768
- */
22769
- exit_on_close: boolean
22770
22366
  /**
22771
22367
  * A boolean specifying whether the process will be terminated (by
22772
22368
  * calling `raise(SIGTERM)`) if the connection is closed by the
@@ -22816,11 +22412,6 @@ export interface DBusConnection extends AsyncInitable, Initable {
22816
22412
  * the stream directly.
22817
22413
  */
22818
22414
  readonly stream: IOStream
22819
- /**
22820
- * The unique name as assigned by the message bus or %NULL if the
22821
- * connection is not open or not a message bus connection.
22822
- */
22823
- readonly unique_name: string | null
22824
22415
  /**
22825
22416
  * The unique name as assigned by the message bus or %NULL if the
22826
22417
  * connection is not open or not a message bus connection.
@@ -23817,10 +23408,6 @@ export module DBusInterfaceSkeleton {
23817
23408
 
23818
23409
  // Own constructor properties of Gio-2.0.Gio.DBusInterfaceSkeleton
23819
23410
 
23820
- /**
23821
- * Flags from the #GDBusInterfaceSkeletonFlags enumeration.
23822
- */
23823
- g_flags?: DBusInterfaceSkeletonFlags | null
23824
23411
  /**
23825
23412
  * Flags from the #GDBusInterfaceSkeletonFlags enumeration.
23826
23413
  */
@@ -23833,10 +23420,6 @@ export interface DBusInterfaceSkeleton extends DBusInterface {
23833
23420
 
23834
23421
  // Own properties of Gio-2.0.Gio.DBusInterfaceSkeleton
23835
23422
 
23836
- /**
23837
- * Flags from the #GDBusInterfaceSkeletonFlags enumeration.
23838
- */
23839
- g_flags: DBusInterfaceSkeletonFlags
23840
23423
  /**
23841
23424
  * Flags from the #GDBusInterfaceSkeletonFlags enumeration.
23842
23425
  */
@@ -24679,7 +24262,7 @@ export module DBusObjectManagerClient {
24679
24262
  * #GDBusConnection obtained by calling g_bus_get() with the value
24680
24263
  * of this property.
24681
24264
  */
24682
- bus_type?: BusType | null
24265
+ busType?: BusType | null
24683
24266
  /**
24684
24267
  * The #GDBusConnection to use.
24685
24268
  */
@@ -24691,44 +24274,20 @@ export module DBusObjectManagerClient {
24691
24274
  /**
24692
24275
  * A #GDestroyNotify for the #gpointer user_data in #GDBusObjectManagerClient:get-proxy-type-user-data.
24693
24276
  */
24694
- get_proxy_type_destroy_notify?: any | null
24277
+ getProxyTypeDestroyNotify?: any | null
24695
24278
  /**
24696
24279
  * The #GDBusProxyTypeFunc to use when determining what #GType to
24697
24280
  * use for interface proxies or %NULL.
24698
24281
  */
24699
- get_proxy_type_func?: any | null
24282
+ getProxyTypeFunc?: any | null
24700
24283
  /**
24701
24284
  * The #gpointer user_data to pass to #GDBusObjectManagerClient:get-proxy-type-func.
24702
24285
  */
24703
- get_proxy_type_user_data?: any | null
24286
+ getProxyTypeUserData?: any | null
24704
24287
  /**
24705
24288
  * The well-known name or unique name that the manager is for.
24706
24289
  */
24707
24290
  name?: string | null
24708
- /**
24709
- * The object path the manager is for.
24710
- */
24711
- object_path?: string | null
24712
- /**
24713
- * If this property is not %G_BUS_TYPE_NONE, then
24714
- * #GDBusObjectManagerClient:connection must be %NULL and will be set to the
24715
- * #GDBusConnection obtained by calling g_bus_get() with the value
24716
- * of this property.
24717
- */
24718
- busType?: BusType | null
24719
- /**
24720
- * A #GDestroyNotify for the #gpointer user_data in #GDBusObjectManagerClient:get-proxy-type-user-data.
24721
- */
24722
- getProxyTypeDestroyNotify?: any | null
24723
- /**
24724
- * The #GDBusProxyTypeFunc to use when determining what #GType to
24725
- * use for interface proxies or %NULL.
24726
- */
24727
- getProxyTypeFunc?: any | null
24728
- /**
24729
- * The #gpointer user_data to pass to #GDBusObjectManagerClient:get-proxy-type-func.
24730
- */
24731
- getProxyTypeUserData?: any | null
24732
24291
  /**
24733
24292
  * The object path the manager is for.
24734
24293
  */
@@ -24741,13 +24300,6 @@ export interface DBusObjectManagerClient extends AsyncInitable, DBusObjectManage
24741
24300
 
24742
24301
  // Own properties of Gio-2.0.Gio.DBusObjectManagerClient
24743
24302
 
24744
- /**
24745
- * If this property is not %G_BUS_TYPE_NONE, then
24746
- * #GDBusObjectManagerClient:connection must be %NULL and will be set to the
24747
- * #GDBusConnection obtained by calling g_bus_get() with the value
24748
- * of this property.
24749
- */
24750
- readonly bus_type: BusType
24751
24303
  /**
24752
24304
  * If this property is not %G_BUS_TYPE_NONE, then
24753
24305
  * #GDBusObjectManagerClient:connection must be %NULL and will be set to the
@@ -24763,28 +24315,15 @@ export interface DBusObjectManagerClient extends AsyncInitable, DBusObjectManage
24763
24315
  * Flags from the #GDBusObjectManagerClientFlags enumeration.
24764
24316
  */
24765
24317
  readonly flags: DBusObjectManagerClientFlags
24766
- /**
24767
- * A #GDestroyNotify for the #gpointer user_data in #GDBusObjectManagerClient:get-proxy-type-user-data.
24768
- */
24769
- readonly get_proxy_type_destroy_notify: any
24770
24318
  /**
24771
24319
  * A #GDestroyNotify for the #gpointer user_data in #GDBusObjectManagerClient:get-proxy-type-user-data.
24772
24320
  */
24773
24321
  readonly getProxyTypeDestroyNotify: any
24774
- /**
24775
- * The #GDBusProxyTypeFunc to use when determining what #GType to
24776
- * use for interface proxies or %NULL.
24777
- */
24778
- readonly get_proxy_type_func: any
24779
24322
  /**
24780
24323
  * The #GDBusProxyTypeFunc to use when determining what #GType to
24781
24324
  * use for interface proxies or %NULL.
24782
24325
  */
24783
24326
  readonly getProxyTypeFunc: any
24784
- /**
24785
- * The #gpointer user_data to pass to #GDBusObjectManagerClient:get-proxy-type-func.
24786
- */
24787
- readonly get_proxy_type_user_data: any
24788
24327
  /**
24789
24328
  * The #gpointer user_data to pass to #GDBusObjectManagerClient:get-proxy-type-func.
24790
24329
  */
@@ -24793,22 +24332,12 @@ export interface DBusObjectManagerClient extends AsyncInitable, DBusObjectManage
24793
24332
  * The well-known name or unique name that the manager is for.
24794
24333
  */
24795
24334
  readonly name: string | null
24796
- /**
24797
- * The unique name that owns #GDBusObjectManagerClient:name or %NULL if
24798
- * no-one is currently owning the name. Connect to the
24799
- * #GObject::notify signal to track changes to this property.
24800
- */
24801
- readonly name_owner: string | null
24802
24335
  /**
24803
24336
  * The unique name that owns #GDBusObjectManagerClient:name or %NULL if
24804
24337
  * no-one is currently owning the name. Connect to the
24805
24338
  * #GObject::notify signal to track changes to this property.
24806
24339
  */
24807
24340
  readonly nameOwner: string | null
24808
- /**
24809
- * The object path the manager is for.
24810
- */
24811
- readonly object_path: string | null
24812
24341
  /**
24813
24342
  * The object path the manager is for.
24814
24343
  */
@@ -25077,10 +24606,6 @@ export module DBusObjectManagerServer {
25077
24606
  * The #GDBusConnection to export objects on.
25078
24607
  */
25079
24608
  connection?: DBusConnection | null
25080
- /**
25081
- * The object path to register the manager object at.
25082
- */
25083
- object_path?: string | null
25084
24609
  /**
25085
24610
  * The object path to register the manager object at.
25086
24611
  */
@@ -25097,10 +24622,6 @@ export interface DBusObjectManagerServer extends DBusObjectManager {
25097
24622
  * The #GDBusConnection to export objects on.
25098
24623
  */
25099
24624
  connection: DBusConnection
25100
- /**
25101
- * The object path to register the manager object at.
25102
- */
25103
- readonly object_path: string | null
25104
24625
  /**
25105
24626
  * The object path to register the manager object at.
25106
24627
  */
@@ -25244,14 +24765,6 @@ export module DBusObjectProxy {
25244
24765
 
25245
24766
  // Own constructor properties of Gio-2.0.Gio.DBusObjectProxy
25246
24767
 
25247
- /**
25248
- * The connection of the proxy.
25249
- */
25250
- g_connection?: DBusConnection | null
25251
- /**
25252
- * The object path of the proxy.
25253
- */
25254
- g_object_path?: string | null
25255
24768
  /**
25256
24769
  * The connection of the proxy.
25257
24770
  */
@@ -25268,18 +24781,10 @@ export interface DBusObjectProxy extends DBusObject {
25268
24781
 
25269
24782
  // Own properties of Gio-2.0.Gio.DBusObjectProxy
25270
24783
 
25271
- /**
25272
- * The connection of the proxy.
25273
- */
25274
- readonly g_connection: DBusConnection
25275
24784
  /**
25276
24785
  * The connection of the proxy.
25277
24786
  */
25278
24787
  readonly gConnection: DBusConnection
25279
- /**
25280
- * The object path of the proxy.
25281
- */
25282
- readonly g_object_path: string | null
25283
24788
  /**
25284
24789
  * The object path of the proxy.
25285
24790
  */
@@ -25363,10 +24868,6 @@ export module DBusObjectSkeleton {
25363
24868
 
25364
24869
  // Own constructor properties of Gio-2.0.Gio.DBusObjectSkeleton
25365
24870
 
25366
- /**
25367
- * The object path where the object is exported.
25368
- */
25369
- g_object_path?: string | null
25370
24871
  /**
25371
24872
  * The object path where the object is exported.
25372
24873
  */
@@ -25379,10 +24880,6 @@ export interface DBusObjectSkeleton extends DBusObject {
25379
24880
 
25380
24881
  // Own properties of Gio-2.0.Gio.DBusObjectSkeleton
25381
24882
 
25382
- /**
25383
- * The object path where the object is exported.
25384
- */
25385
- g_object_path: string | null
25386
24883
  /**
25387
24884
  * The object path where the object is exported.
25388
24885
  */
@@ -25507,71 +25004,6 @@ export module DBusProxy {
25507
25004
 
25508
25005
  // Own constructor properties of Gio-2.0.Gio.DBusProxy
25509
25006
 
25510
- /**
25511
- * If this property is not %G_BUS_TYPE_NONE, then
25512
- * #GDBusProxy:g-connection must be %NULL and will be set to the
25513
- * #GDBusConnection obtained by calling g_bus_get() with the value
25514
- * of this property.
25515
- */
25516
- g_bus_type?: BusType | null
25517
- /**
25518
- * The #GDBusConnection the proxy is for.
25519
- */
25520
- g_connection?: DBusConnection | null
25521
- /**
25522
- * The timeout to use if -1 (specifying default timeout) is passed
25523
- * as `timeout_msec` in the g_dbus_proxy_call() and
25524
- * g_dbus_proxy_call_sync() functions.
25525
- *
25526
- * This allows applications to set a proxy-wide timeout for all
25527
- * remote method invocations on the proxy. If this property is -1,
25528
- * the default timeout (typically 25 seconds) is used. If set to
25529
- * %G_MAXINT, then no timeout is used.
25530
- */
25531
- g_default_timeout?: number | null
25532
- /**
25533
- * Flags from the #GDBusProxyFlags enumeration.
25534
- */
25535
- g_flags?: DBusProxyFlags | null
25536
- /**
25537
- * Ensure that interactions with this proxy conform to the given
25538
- * interface. This is mainly to ensure that malformed data received
25539
- * from the other peer is ignored. The given #GDBusInterfaceInfo is
25540
- * said to be the "expected interface".
25541
- *
25542
- * The checks performed are:
25543
- * - When completing a method call, if the type signature of
25544
- * the reply message isn't what's expected, the reply is
25545
- * discarded and the #GError is set to %G_IO_ERROR_INVALID_ARGUMENT.
25546
- *
25547
- * - Received signals that have a type signature mismatch are dropped and
25548
- * a warning is logged via g_warning().
25549
- *
25550
- * - Properties received via the initial `GetAll()` call or via the
25551
- * `::PropertiesChanged` signal (on the
25552
- * [org.freedesktop.DBus.Properties](http://dbus.freedesktop.org/doc/dbus-specification.html#standard-interfaces-properties)
25553
- * interface) or set using g_dbus_proxy_set_cached_property()
25554
- * with a type signature mismatch are ignored and a warning is
25555
- * logged via g_warning().
25556
- *
25557
- * Note that these checks are never done on methods, signals and
25558
- * properties that are not referenced in the given
25559
- * #GDBusInterfaceInfo, since extending a D-Bus interface on the
25560
- * service-side is not considered an ABI break.
25561
- */
25562
- g_interface_info?: DBusInterfaceInfo | null
25563
- /**
25564
- * The D-Bus interface name the proxy is for.
25565
- */
25566
- g_interface_name?: string | null
25567
- /**
25568
- * The well-known or unique name that the proxy is for.
25569
- */
25570
- g_name?: string | null
25571
- /**
25572
- * The object path the proxy is for.
25573
- */
25574
- g_object_path?: string | null
25575
25007
  /**
25576
25008
  * If this property is not %G_BUS_TYPE_NONE, then
25577
25009
  * #GDBusProxy:g-connection must be %NULL and will be set to the
@@ -25645,13 +25077,6 @@ export interface DBusProxy extends AsyncInitable, DBusInterface, Initable {
25645
25077
 
25646
25078
  // Own properties of Gio-2.0.Gio.DBusProxy
25647
25079
 
25648
- /**
25649
- * If this property is not %G_BUS_TYPE_NONE, then
25650
- * #GDBusProxy:g-connection must be %NULL and will be set to the
25651
- * #GDBusConnection obtained by calling g_bus_get() with the value
25652
- * of this property.
25653
- */
25654
- readonly g_bus_type: BusType
25655
25080
  /**
25656
25081
  * If this property is not %G_BUS_TYPE_NONE, then
25657
25082
  * #GDBusProxy:g-connection must be %NULL and will be set to the
@@ -25659,25 +25084,10 @@ export interface DBusProxy extends AsyncInitable, DBusInterface, Initable {
25659
25084
  * of this property.
25660
25085
  */
25661
25086
  readonly gBusType: BusType
25662
- /**
25663
- * The #GDBusConnection the proxy is for.
25664
- */
25665
- readonly g_connection: DBusConnection
25666
25087
  /**
25667
25088
  * The #GDBusConnection the proxy is for.
25668
25089
  */
25669
25090
  readonly gConnection: DBusConnection
25670
- /**
25671
- * The timeout to use if -1 (specifying default timeout) is passed
25672
- * as `timeout_msec` in the g_dbus_proxy_call() and
25673
- * g_dbus_proxy_call_sync() functions.
25674
- *
25675
- * This allows applications to set a proxy-wide timeout for all
25676
- * remote method invocations on the proxy. If this property is -1,
25677
- * the default timeout (typically 25 seconds) is used. If set to
25678
- * %G_MAXINT, then no timeout is used.
25679
- */
25680
- g_default_timeout: number
25681
25091
  /**
25682
25092
  * The timeout to use if -1 (specifying default timeout) is passed
25683
25093
  * as `timeout_msec` in the g_dbus_proxy_call() and
@@ -25689,41 +25099,10 @@ export interface DBusProxy extends AsyncInitable, DBusInterface, Initable {
25689
25099
  * %G_MAXINT, then no timeout is used.
25690
25100
  */
25691
25101
  gDefaultTimeout: number
25692
- /**
25693
- * Flags from the #GDBusProxyFlags enumeration.
25694
- */
25695
- readonly g_flags: DBusProxyFlags
25696
25102
  /**
25697
25103
  * Flags from the #GDBusProxyFlags enumeration.
25698
25104
  */
25699
25105
  readonly gFlags: DBusProxyFlags
25700
- /**
25701
- * Ensure that interactions with this proxy conform to the given
25702
- * interface. This is mainly to ensure that malformed data received
25703
- * from the other peer is ignored. The given #GDBusInterfaceInfo is
25704
- * said to be the "expected interface".
25705
- *
25706
- * The checks performed are:
25707
- * - When completing a method call, if the type signature of
25708
- * the reply message isn't what's expected, the reply is
25709
- * discarded and the #GError is set to %G_IO_ERROR_INVALID_ARGUMENT.
25710
- *
25711
- * - Received signals that have a type signature mismatch are dropped and
25712
- * a warning is logged via g_warning().
25713
- *
25714
- * - Properties received via the initial `GetAll()` call or via the
25715
- * `::PropertiesChanged` signal (on the
25716
- * [org.freedesktop.DBus.Properties](http://dbus.freedesktop.org/doc/dbus-specification.html#standard-interfaces-properties)
25717
- * interface) or set using g_dbus_proxy_set_cached_property()
25718
- * with a type signature mismatch are ignored and a warning is
25719
- * logged via g_warning().
25720
- *
25721
- * Note that these checks are never done on methods, signals and
25722
- * properties that are not referenced in the given
25723
- * #GDBusInterfaceInfo, since extending a D-Bus interface on the
25724
- * service-side is not considered an ABI break.
25725
- */
25726
- g_interface_info: DBusInterfaceInfo
25727
25106
  /**
25728
25107
  * Ensure that interactions with this proxy conform to the given
25729
25108
  * interface. This is mainly to ensure that malformed data received
@@ -25751,38 +25130,20 @@ export interface DBusProxy extends AsyncInitable, DBusInterface, Initable {
25751
25130
  * service-side is not considered an ABI break.
25752
25131
  */
25753
25132
  gInterfaceInfo: DBusInterfaceInfo
25754
- /**
25755
- * The D-Bus interface name the proxy is for.
25756
- */
25757
- readonly g_interface_name: string | null
25758
25133
  /**
25759
25134
  * The D-Bus interface name the proxy is for.
25760
25135
  */
25761
25136
  readonly gInterfaceName: string | null
25762
- /**
25763
- * The well-known or unique name that the proxy is for.
25764
- */
25765
- readonly g_name: string | null
25766
25137
  /**
25767
25138
  * The well-known or unique name that the proxy is for.
25768
25139
  */
25769
25140
  readonly gName: string | null
25770
- /**
25771
- * The unique name that owns #GDBusProxy:g-name or %NULL if no-one
25772
- * currently owns that name. You may connect to #GObject::notify signal to
25773
- * track changes to this property.
25774
- */
25775
- readonly g_name_owner: string | null
25776
25141
  /**
25777
25142
  * The unique name that owns #GDBusProxy:g-name or %NULL if no-one
25778
25143
  * currently owns that name. You may connect to #GObject::notify signal to
25779
25144
  * track changes to this property.
25780
25145
  */
25781
25146
  readonly gNameOwner: string | null
25782
- /**
25783
- * The object path the proxy is for.
25784
- */
25785
- readonly g_object_path: string | null
25786
25147
  /**
25787
25148
  * The object path the proxy is for.
25788
25149
  */
@@ -26304,7 +25665,7 @@ export module DBusServer {
26304
25665
  /**
26305
25666
  * A #GDBusAuthObserver object to assist in the authentication process or %NULL.
26306
25667
  */
26307
- authentication_observer?: DBusAuthObserver | null
25668
+ authenticationObserver?: DBusAuthObserver | null
26308
25669
  /**
26309
25670
  * Flags from the #GDBusServerFlags enumeration.
26310
25671
  */
@@ -26315,10 +25676,6 @@ export module DBusServer {
26315
25676
  * See #GDBusConnection:guid for more details.
26316
25677
  */
26317
25678
  guid?: string | null
26318
- /**
26319
- * A #GDBusAuthObserver object to assist in the authentication process or %NULL.
26320
- */
26321
- authenticationObserver?: DBusAuthObserver | null
26322
25679
  }
26323
25680
 
26324
25681
  }
@@ -26335,18 +25692,10 @@ export interface DBusServer extends Initable {
26335
25692
  * The D-Bus address to listen on.
26336
25693
  */
26337
25694
  readonly address: string | null
26338
- /**
26339
- * A #GDBusAuthObserver object to assist in the authentication process or %NULL.
26340
- */
26341
- readonly authentication_observer: DBusAuthObserver
26342
25695
  /**
26343
25696
  * A #GDBusAuthObserver object to assist in the authentication process or %NULL.
26344
25697
  */
26345
25698
  readonly authenticationObserver: DBusAuthObserver
26346
- /**
26347
- * The D-Bus address that clients can use.
26348
- */
26349
- readonly client_address: string | null
26350
25699
  /**
26351
25700
  * The D-Bus address that clients can use.
26352
25701
  */
@@ -26501,17 +25850,6 @@ export module DataInputStream {
26501
25850
 
26502
25851
  // Own constructor properties of Gio-2.0.Gio.DataInputStream
26503
25852
 
26504
- /**
26505
- * The :byte-order property determines the byte ordering that
26506
- * is used when reading multi-byte entities (such as integers)
26507
- * from the stream.
26508
- */
26509
- byte_order?: DataStreamByteOrder | null
26510
- /**
26511
- * The :newline-type property determines what is considered
26512
- * as a line ending when reading complete lines from the stream.
26513
- */
26514
- newline_type?: DataStreamNewlineType | null
26515
25853
  /**
26516
25854
  * The :byte-order property determines the byte ordering that
26517
25855
  * is used when reading multi-byte entities (such as integers)
@@ -26531,23 +25869,12 @@ export interface DataInputStream extends Seekable {
26531
25869
 
26532
25870
  // Own properties of Gio-2.0.Gio.DataInputStream
26533
25871
 
26534
- /**
26535
- * The :byte-order property determines the byte ordering that
26536
- * is used when reading multi-byte entities (such as integers)
26537
- * from the stream.
26538
- */
26539
- byte_order: DataStreamByteOrder
26540
25872
  /**
26541
25873
  * The :byte-order property determines the byte ordering that
26542
25874
  * is used when reading multi-byte entities (such as integers)
26543
25875
  * from the stream.
26544
25876
  */
26545
25877
  byteOrder: DataStreamByteOrder
26546
- /**
26547
- * The :newline-type property determines what is considered
26548
- * as a line ending when reading complete lines from the stream.
26549
- */
26550
- newline_type: DataStreamNewlineType
26551
25878
  /**
26552
25879
  * The :newline-type property determines what is considered
26553
25880
  * as a line ending when reading complete lines from the stream.
@@ -26620,7 +25947,7 @@ export interface DataInputStream extends Seekable {
26620
25947
  * triggering the cancellable object from another thread. If the operation
26621
25948
  * was cancelled, the error %G_IO_ERROR_CANCELLED will be returned.
26622
25949
  * @param cancellable optional #GCancellable object, %NULL to ignore.
26623
- * @returns a NUL terminated byte array with the line that was read in (without the newlines). Set @length to a #gsize to get the length of the read line. On an error, it will return %NULL and @error will be set. If there's no content to read, it will still return %NULL, but @error won't be set.
25950
+ * @returns a NUL terminated byte array with the line that was read in (without the newlines). Set @length to a #gsize to get the length of the read line. On an error, it will return %NULL and @error will be set. If there's no content to read, it will still return %NULL, but @error won't be set.
26624
25951
  */
26625
25952
  read_line(cancellable: Cancellable | null): [ /* returnType */ Uint8Array | null, /* length */ number ]
26626
25953
  /**
@@ -26649,7 +25976,7 @@ export interface DataInputStream extends Seekable {
26649
25976
  * the result of the operation.
26650
25977
  * @param io_priority the [I/O priority][io-priority] of the request
26651
25978
  * @param cancellable optional #GCancellable object, %NULL to ignore.
26652
- * @returns A Promise of: a NUL-terminated byte array with the line that was read in (without the newlines). Set @length to a #gsize to get the length of the read line. On an error, it will return %NULL and @error will be set. If there's no content to read, it will still return %NULL, but @error won't be set.
25979
+ * @returns A Promise of: a NUL-terminated byte array with the line that was read in (without the newlines). Set @length to a #gsize to get the length of the read line. On an error, it will return %NULL and @error will be set. If there's no content to read, it will still return %NULL, but @error won't be set.
26653
25980
  */
26654
25981
  read_line_async(io_priority: number, cancellable: Cancellable | null): globalThis.Promise</* length */ number>
26655
25982
  /**
@@ -26658,7 +25985,7 @@ export interface DataInputStream extends Seekable {
26658
25985
  * string encoding in g_data_input_stream_read_line() applies here as
26659
25986
  * well.
26660
25987
  * @param result the #GAsyncResult that was provided to the callback.
26661
- * @returns a NUL-terminated byte array with the line that was read in (without the newlines). Set @length to a #gsize to get the length of the read line. On an error, it will return %NULL and @error will be set. If there's no content to read, it will still return %NULL, but @error won't be set.
25988
+ * @returns a NUL-terminated byte array with the line that was read in (without the newlines). Set @length to a #gsize to get the length of the read line. On an error, it will return %NULL and @error will be set. If there's no content to read, it will still return %NULL, but @error won't be set.
26662
25989
  */
26663
25990
  read_line_finish(result: AsyncResult): [ /* returnType */ Uint8Array | null, /* length */ number ]
26664
25991
  /**
@@ -26957,11 +26284,6 @@ export module DataOutputStream {
26957
26284
 
26958
26285
  // Own constructor properties of Gio-2.0.Gio.DataOutputStream
26959
26286
 
26960
- /**
26961
- * Determines the byte ordering that is used when writing
26962
- * multi-byte entities (such as integers) to the stream.
26963
- */
26964
- byte_order?: DataStreamByteOrder | null
26965
26287
  /**
26966
26288
  * Determines the byte ordering that is used when writing
26967
26289
  * multi-byte entities (such as integers) to the stream.
@@ -26975,11 +26297,6 @@ export interface DataOutputStream extends Seekable {
26975
26297
 
26976
26298
  // Own properties of Gio-2.0.Gio.DataOutputStream
26977
26299
 
26978
- /**
26979
- * Determines the byte ordering that is used when writing
26980
- * multi-byte entities (such as integers) to the stream.
26981
- */
26982
- byte_order: DataStreamByteOrder
26983
26300
  /**
26984
26301
  * Determines the byte ordering that is used when writing
26985
26302
  * multi-byte entities (such as integers) to the stream.
@@ -27481,7 +26798,7 @@ export interface DesktopAppInfo extends AppInfo {
27481
26798
  *
27482
26799
  * The `key` is looked up in the "Desktop Entry" group.
27483
26800
  * @param key the key to look up
27484
- * @returns a %NULL-terminated string array or %NULL if the specified key cannot be found. The array should be freed with g_strfreev().
26801
+ * @returns a %NULL-terminated string array or %NULL if the specified key cannot be found. The array should be freed with g_strfreev().
27485
26802
  */
27486
26803
  get_string_list(key: string): string[]
27487
26804
  /**
@@ -29453,7 +28770,6 @@ export module FileMonitor {
29453
28770
 
29454
28771
  // Own constructor properties of Gio-2.0.Gio.FileMonitor
29455
28772
 
29456
- rate_limit?: number | null
29457
28773
  rateLimit?: number | null
29458
28774
  }
29459
28775
 
@@ -29464,7 +28780,6 @@ export interface FileMonitor {
29464
28780
  // Own properties of Gio-2.0.Gio.FileMonitor
29465
28781
 
29466
28782
  readonly cancelled: boolean
29467
- rate_limit: number
29468
28783
  rateLimit: number
29469
28784
 
29470
28785
  // Own fields of Gio-2.0.Gio.FileMonitor
@@ -29848,8 +29163,6 @@ export module FilterInputStream {
29848
29163
 
29849
29164
  // Own constructor properties of Gio-2.0.Gio.FilterInputStream
29850
29165
 
29851
- base_stream?: InputStream | null
29852
- close_base_stream?: boolean | null
29853
29166
  baseStream?: InputStream | null
29854
29167
  closeBaseStream?: boolean | null
29855
29168
  }
@@ -29861,7 +29174,6 @@ export interface FilterInputStream {
29861
29174
  // Own properties of Gio-2.0.Gio.FilterInputStream
29862
29175
 
29863
29176
  readonly baseStream: InputStream
29864
- close_base_stream: boolean
29865
29177
  closeBaseStream: boolean
29866
29178
 
29867
29179
  // Own fields of Gio-2.0.Gio.FilterInputStream
@@ -29930,8 +29242,6 @@ export module FilterOutputStream {
29930
29242
 
29931
29243
  // Own constructor properties of Gio-2.0.Gio.FilterOutputStream
29932
29244
 
29933
- base_stream?: OutputStream | null
29934
- close_base_stream?: boolean | null
29935
29245
  baseStream?: OutputStream | null
29936
29246
  closeBaseStream?: boolean | null
29937
29247
  }
@@ -29943,7 +29253,6 @@ export interface FilterOutputStream {
29943
29253
  // Own properties of Gio-2.0.Gio.FilterOutputStream
29944
29254
 
29945
29255
  readonly baseStream: OutputStream
29946
- readonly close_base_stream: boolean
29947
29256
  readonly closeBaseStream: boolean
29948
29257
 
29949
29258
  // Own fields of Gio-2.0.Gio.FilterOutputStream
@@ -30133,9 +29442,7 @@ export interface IOStream {
30133
29442
  // Own properties of Gio-2.0.Gio.IOStream
30134
29443
 
30135
29444
  readonly closed: boolean
30136
- readonly input_stream: InputStream
30137
29445
  readonly inputStream: InputStream
30138
- readonly output_stream: OutputStream
30139
29446
  readonly outputStream: OutputStream
30140
29447
 
30141
29448
  // Own fields of Gio-2.0.Gio.IOStream
@@ -30421,101 +29728,51 @@ export interface InetAddress {
30421
29728
 
30422
29729
  readonly bytes: any
30423
29730
  readonly family: SocketFamily
30424
- /**
30425
- * Whether this is the "any" address for its family.
30426
- * See g_inet_address_get_is_any().
30427
- */
30428
- readonly is_any: boolean
30429
29731
  /**
30430
29732
  * Whether this is the "any" address for its family.
30431
29733
  * See g_inet_address_get_is_any().
30432
29734
  */
30433
29735
  readonly isAny: boolean
30434
- /**
30435
- * Whether this is a link-local address.
30436
- * See g_inet_address_get_is_link_local().
30437
- */
30438
- readonly is_link_local: boolean
30439
29736
  /**
30440
29737
  * Whether this is a link-local address.
30441
29738
  * See g_inet_address_get_is_link_local().
30442
29739
  */
30443
29740
  readonly isLinkLocal: boolean
30444
- /**
30445
- * Whether this is the loopback address for its family.
30446
- * See g_inet_address_get_is_loopback().
30447
- */
30448
- readonly is_loopback: boolean
30449
29741
  /**
30450
29742
  * Whether this is the loopback address for its family.
30451
29743
  * See g_inet_address_get_is_loopback().
30452
29744
  */
30453
29745
  readonly isLoopback: boolean
30454
- /**
30455
- * Whether this is a global multicast address.
30456
- * See g_inet_address_get_is_mc_global().
30457
- */
30458
- readonly is_mc_global: boolean
30459
29746
  /**
30460
29747
  * Whether this is a global multicast address.
30461
29748
  * See g_inet_address_get_is_mc_global().
30462
29749
  */
30463
29750
  readonly isMcGlobal: boolean
30464
- /**
30465
- * Whether this is a link-local multicast address.
30466
- * See g_inet_address_get_is_mc_link_local().
30467
- */
30468
- readonly is_mc_link_local: boolean
30469
29751
  /**
30470
29752
  * Whether this is a link-local multicast address.
30471
29753
  * See g_inet_address_get_is_mc_link_local().
30472
29754
  */
30473
29755
  readonly isMcLinkLocal: boolean
30474
- /**
30475
- * Whether this is a node-local multicast address.
30476
- * See g_inet_address_get_is_mc_node_local().
30477
- */
30478
- readonly is_mc_node_local: boolean
30479
29756
  /**
30480
29757
  * Whether this is a node-local multicast address.
30481
29758
  * See g_inet_address_get_is_mc_node_local().
30482
29759
  */
30483
29760
  readonly isMcNodeLocal: boolean
30484
- /**
30485
- * Whether this is an organization-local multicast address.
30486
- * See g_inet_address_get_is_mc_org_local().
30487
- */
30488
- readonly is_mc_org_local: boolean
30489
29761
  /**
30490
29762
  * Whether this is an organization-local multicast address.
30491
29763
  * See g_inet_address_get_is_mc_org_local().
30492
29764
  */
30493
29765
  readonly isMcOrgLocal: boolean
30494
- /**
30495
- * Whether this is a site-local multicast address.
30496
- * See g_inet_address_get_is_mc_site_local().
30497
- */
30498
- readonly is_mc_site_local: boolean
30499
29766
  /**
30500
29767
  * Whether this is a site-local multicast address.
30501
29768
  * See g_inet_address_get_is_mc_site_local().
30502
29769
  */
30503
29770
  readonly isMcSiteLocal: boolean
30504
- /**
30505
- * Whether this is a multicast address.
30506
- * See g_inet_address_get_is_multicast().
30507
- */
30508
- readonly is_multicast: boolean
30509
29771
  /**
30510
29772
  * Whether this is a multicast address.
30511
29773
  * See g_inet_address_get_is_multicast().
30512
29774
  */
30513
29775
  readonly isMulticast: boolean
30514
- /**
30515
- * Whether this is a site-local address.
30516
- * See g_inet_address_get_is_loopback().
30517
- */
30518
- readonly is_site_local: boolean
30519
29776
  /**
30520
29777
  * Whether this is a site-local address.
30521
29778
  * See g_inet_address_get_is_loopback().
@@ -30857,7 +30114,6 @@ export module InetSocketAddress {
30857
30114
  */
30858
30115
  flowinfo?: number | null
30859
30116
  port?: number | null
30860
- scope_id?: number | null
30861
30117
  scopeId?: number | null
30862
30118
  }
30863
30119
 
@@ -30873,7 +30129,6 @@ export interface InetSocketAddress extends SocketConnectable {
30873
30129
  */
30874
30130
  readonly flowinfo: number
30875
30131
  readonly port: number
30876
- readonly scope_id: number
30877
30132
  readonly scopeId: number
30878
30133
 
30879
30134
  // Own fields of Gio-2.0.Gio.InetSocketAddress
@@ -31606,11 +30861,6 @@ export module ListStore {
31606
30861
 
31607
30862
  // Own constructor properties of Gio-2.0.Gio.ListStore
31608
30863
 
31609
- /**
31610
- * The type of items contained in this list store. Items must be
31611
- * subclasses of #GObject.
31612
- */
31613
- item_type?: GObject.GType | null
31614
30864
  /**
31615
30865
  * The type of items contained in this list store. Items must be
31616
30866
  * subclasses of #GObject.
@@ -31624,20 +30874,11 @@ export interface ListStore<A extends GObject.Object = GObject.Object> extends Li
31624
30874
 
31625
30875
  // Own properties of Gio-2.0.Gio.ListStore
31626
30876
 
31627
- /**
31628
- * The type of items contained in this list store. Items must be
31629
- * subclasses of #GObject.
31630
- */
31631
- readonly item_type: GObject.GType
31632
30877
  /**
31633
30878
  * The type of items contained in this list store. Items must be
31634
30879
  * subclasses of #GObject.
31635
30880
  */
31636
30881
  readonly itemType: GObject.GType
31637
- /**
31638
- * The number of items contained in this list store.
31639
- */
31640
- readonly n_items: number
31641
30882
  /**
31642
30883
  * The number of items contained in this list store.
31643
30884
  */
@@ -31923,10 +31164,6 @@ export interface MemoryOutputStream extends PollableOutputStream, Seekable {
31923
31164
  * Pointer to buffer where data will be written.
31924
31165
  */
31925
31166
  readonly data: any
31926
- /**
31927
- * Size of data written to the buffer.
31928
- */
31929
- readonly data_size: number
31930
31167
  /**
31931
31168
  * Size of data written to the buffer.
31932
31169
  */
@@ -33209,7 +32446,7 @@ export module MountOperation {
33209
32446
  * Whether the device to be unlocked is a TCRYPT hidden volume.
33210
32447
  * See [the VeraCrypt documentation](https://www.veracrypt.fr/en/Hidden%20Volume.html).
33211
32448
  */
33212
- is_tcrypt_hidden_volume?: boolean | null
32449
+ isTcryptHiddenVolume?: boolean | null
33213
32450
  /**
33214
32451
  * Whether the device to be unlocked is a TCRYPT system volume.
33215
32452
  * In this context, a system volume is a volume with a bootloader
@@ -33217,7 +32454,7 @@ export module MountOperation {
33217
32454
  * operating systems. For further documentation, see
33218
32455
  * [the VeraCrypt documentation](https://www.veracrypt.fr/en/System%20Encryption.html).
33219
32456
  */
33220
- is_tcrypt_system_volume?: boolean | null
32457
+ isTcryptSystemVolume?: boolean | null
33221
32458
  /**
33222
32459
  * The password that is used for authentication when carrying out
33223
32460
  * the mount operation.
@@ -33226,7 +32463,7 @@ export module MountOperation {
33226
32463
  /**
33227
32464
  * Determines if and how the password information should be saved.
33228
32465
  */
33229
- password_save?: PasswordSave | null
32466
+ passwordSave?: PasswordSave | null
33230
32467
  /**
33231
32468
  * The VeraCrypt PIM value, when unlocking a VeraCrypt volume. See
33232
32469
  * [the VeraCrypt documentation](https://www.veracrypt.fr/en/Personal%20Iterations%20Multiplier%20(PIM).html).
@@ -33237,23 +32474,6 @@ export module MountOperation {
33237
32474
  * the mount operation.
33238
32475
  */
33239
32476
  username?: string | null
33240
- /**
33241
- * Whether the device to be unlocked is a TCRYPT hidden volume.
33242
- * See [the VeraCrypt documentation](https://www.veracrypt.fr/en/Hidden%20Volume.html).
33243
- */
33244
- isTcryptHiddenVolume?: boolean | null
33245
- /**
33246
- * Whether the device to be unlocked is a TCRYPT system volume.
33247
- * In this context, a system volume is a volume with a bootloader
33248
- * and operating system installed. This is only supported for Windows
33249
- * operating systems. For further documentation, see
33250
- * [the VeraCrypt documentation](https://www.veracrypt.fr/en/System%20Encryption.html).
33251
- */
33252
- isTcryptSystemVolume?: boolean | null
33253
- /**
33254
- * Determines if and how the password information should be saved.
33255
- */
33256
- passwordSave?: PasswordSave | null
33257
32477
  }
33258
32478
 
33259
32479
  }
@@ -33275,24 +32495,11 @@ export interface MountOperation {
33275
32495
  * The domain to use for the mount operation.
33276
32496
  */
33277
32497
  domain: string | null
33278
- /**
33279
- * Whether the device to be unlocked is a TCRYPT hidden volume.
33280
- * See [the VeraCrypt documentation](https://www.veracrypt.fr/en/Hidden%20Volume.html).
33281
- */
33282
- is_tcrypt_hidden_volume: boolean
33283
32498
  /**
33284
32499
  * Whether the device to be unlocked is a TCRYPT hidden volume.
33285
32500
  * See [the VeraCrypt documentation](https://www.veracrypt.fr/en/Hidden%20Volume.html).
33286
32501
  */
33287
32502
  isTcryptHiddenVolume: boolean
33288
- /**
33289
- * Whether the device to be unlocked is a TCRYPT system volume.
33290
- * In this context, a system volume is a volume with a bootloader
33291
- * and operating system installed. This is only supported for Windows
33292
- * operating systems. For further documentation, see
33293
- * [the VeraCrypt documentation](https://www.veracrypt.fr/en/System%20Encryption.html).
33294
- */
33295
- is_tcrypt_system_volume: boolean
33296
32503
  /**
33297
32504
  * Whether the device to be unlocked is a TCRYPT system volume.
33298
32505
  * In this context, a system volume is a volume with a bootloader
@@ -33306,10 +32513,6 @@ export interface MountOperation {
33306
32513
  * the mount operation.
33307
32514
  */
33308
32515
  password: string | null
33309
- /**
33310
- * Determines if and how the password information should be saved.
33311
- */
33312
- password_save: PasswordSave
33313
32516
  /**
33314
32517
  * Determines if and how the password information should be saved.
33315
32518
  */
@@ -35169,21 +34372,11 @@ export interface Permission {
35169
34372
  * `permission` represents the permission to perform.
35170
34373
  */
35171
34374
  readonly allowed: boolean
35172
- /**
35173
- * %TRUE if it is generally possible to acquire the permission by calling
35174
- * g_permission_acquire().
35175
- */
35176
- readonly can_acquire: boolean
35177
34375
  /**
35178
34376
  * %TRUE if it is generally possible to acquire the permission by calling
35179
34377
  * g_permission_acquire().
35180
34378
  */
35181
34379
  readonly canAcquire: boolean
35182
- /**
35183
- * %TRUE if it is generally possible to release the permission by calling
35184
- * g_permission_release().
35185
- */
35186
- readonly can_release: boolean
35187
34380
  /**
35188
34381
  * %TRUE if it is generally possible to release the permission by calling
35189
34382
  * g_permission_release().
@@ -35482,7 +34675,7 @@ export module PropertyAction {
35482
34675
  * If %TRUE, the state of the action will be the negation of the
35483
34676
  * property value, provided the property is boolean.
35484
34677
  */
35485
- invert_boolean?: boolean | null
34678
+ invertBoolean?: boolean | null
35486
34679
  /**
35487
34680
  * The name of the action. This is mostly meaningful for identifying
35488
34681
  * the action once it has been added to a #GActionMap.
@@ -35494,18 +34687,6 @@ export module PropertyAction {
35494
34687
  * The object must be a non-%NULL #GObject with properties.
35495
34688
  */
35496
34689
  object?: GObject.Object | null
35497
- /**
35498
- * The name of the property to wrap on the object.
35499
- *
35500
- * The property must exist on the passed-in object and it must be
35501
- * readable and writable (and not construct-only).
35502
- */
35503
- property_name?: string | null
35504
- /**
35505
- * If %TRUE, the state of the action will be the negation of the
35506
- * property value, provided the property is boolean.
35507
- */
35508
- invertBoolean?: boolean | null
35509
34690
  /**
35510
34691
  * The name of the property to wrap on the object.
35511
34692
  *
@@ -35528,11 +34709,6 @@ export interface PropertyAction extends Action {
35528
34709
  * g_action_change_state() have no effect.
35529
34710
  */
35530
34711
  readonly enabled: boolean
35531
- /**
35532
- * If %TRUE, the state of the action will be the negation of the
35533
- * property value, provided the property is boolean.
35534
- */
35535
- readonly invert_boolean: boolean
35536
34712
  /**
35537
34713
  * If %TRUE, the state of the action will be the negation of the
35538
34714
  * property value, provided the property is boolean.
@@ -35549,23 +34725,11 @@ export interface PropertyAction extends Action {
35549
34725
  * The object must be a non-%NULL #GObject with properties.
35550
34726
  */
35551
34727
  readonly object: GObject.Object
35552
- /**
35553
- * The type of the parameter that must be given when activating the
35554
- * action.
35555
- */
35556
- readonly parameter_type: GLib.VariantType
35557
34728
  /**
35558
34729
  * The type of the parameter that must be given when activating the
35559
34730
  * action.
35560
34731
  */
35561
34732
  readonly parameterType: GLib.VariantType
35562
- /**
35563
- * The name of the property to wrap on the object.
35564
- *
35565
- * The property must exist on the passed-in object and it must be
35566
- * readable and writable (and not construct-only).
35567
- */
35568
- readonly property_name: string | null
35569
34733
  /**
35570
34734
  * The name of the property to wrap on the object.
35571
34735
  *
@@ -35577,11 +34741,6 @@ export interface PropertyAction extends Action {
35577
34741
  * The state of the action, or %NULL if the action is stateless.
35578
34742
  */
35579
34743
  readonly state: GLib.Variant
35580
- /**
35581
- * The #GVariantType of the state that the action has, or %NULL if the
35582
- * action is stateless.
35583
- */
35584
- readonly state_type: GLib.VariantType
35585
34744
  /**
35586
34745
  * The #GVariantType of the state that the action has, or %NULL if the
35587
34746
  * action is stateless.
@@ -35727,13 +34886,13 @@ export module ProxyAddress {
35727
34886
 
35728
34887
  // Own constructor properties of Gio-2.0.Gio.ProxyAddress
35729
34888
 
35730
- destination_hostname?: string | null
35731
- destination_port?: number | null
34889
+ destinationHostname?: string | null
34890
+ destinationPort?: number | null
35732
34891
  /**
35733
34892
  * The protocol being spoke to the destination host, or %NULL if
35734
34893
  * the #GProxyAddress doesn't know.
35735
34894
  */
35736
- destination_protocol?: string | null
34895
+ destinationProtocol?: string | null
35737
34896
  password?: string | null
35738
34897
  protocol?: string | null
35739
34898
  /**
@@ -35742,13 +34901,6 @@ export module ProxyAddress {
35742
34901
  */
35743
34902
  uri?: string | null
35744
34903
  username?: string | null
35745
- destinationHostname?: string | null
35746
- destinationPort?: number | null
35747
- /**
35748
- * The protocol being spoke to the destination host, or %NULL if
35749
- * the #GProxyAddress doesn't know.
35750
- */
35751
- destinationProtocol?: string | null
35752
34904
  }
35753
34905
 
35754
34906
  }
@@ -35757,15 +34909,8 @@ export interface ProxyAddress extends SocketConnectable {
35757
34909
 
35758
34910
  // Own properties of Gio-2.0.Gio.ProxyAddress
35759
34911
 
35760
- readonly destination_hostname: string | null
35761
34912
  readonly destinationHostname: string | null
35762
- readonly destination_port: number
35763
34913
  readonly destinationPort: number
35764
- /**
35765
- * The protocol being spoke to the destination host, or %NULL if
35766
- * the #GProxyAddress doesn't know.
35767
- */
35768
- readonly destination_protocol: string | null
35769
34914
  /**
35770
34915
  * The protocol being spoke to the destination host, or %NULL if
35771
34916
  * the #GProxyAddress doesn't know.
@@ -35944,16 +35089,6 @@ export module ProxyAddressEnumerator {
35944
35089
  // Own constructor properties of Gio-2.0.Gio.ProxyAddressEnumerator
35945
35090
 
35946
35091
  connectable?: SocketConnectable | null
35947
- /**
35948
- * The default port to use if #GProxyAddressEnumerator:uri does not
35949
- * specify one.
35950
- */
35951
- default_port?: number | null
35952
- /**
35953
- * The proxy resolver to use.
35954
- */
35955
- proxy_resolver?: ProxyResolver | null
35956
- uri?: string | null
35957
35092
  /**
35958
35093
  * The default port to use if #GProxyAddressEnumerator:uri does not
35959
35094
  * specify one.
@@ -35963,6 +35098,7 @@ export module ProxyAddressEnumerator {
35963
35098
  * The proxy resolver to use.
35964
35099
  */
35965
35100
  proxyResolver?: ProxyResolver | null
35101
+ uri?: string | null
35966
35102
  }
35967
35103
 
35968
35104
  }
@@ -35972,20 +35108,11 @@ export interface ProxyAddressEnumerator {
35972
35108
  // Own properties of Gio-2.0.Gio.ProxyAddressEnumerator
35973
35109
 
35974
35110
  readonly connectable: SocketConnectable
35975
- /**
35976
- * The default port to use if #GProxyAddressEnumerator:uri does not
35977
- * specify one.
35978
- */
35979
- readonly default_port: number
35980
35111
  /**
35981
35112
  * The default port to use if #GProxyAddressEnumerator:uri does not
35982
35113
  * specify one.
35983
35114
  */
35984
35115
  readonly defaultPort: number
35985
- /**
35986
- * The proxy resolver to use.
35987
- */
35988
- proxy_resolver: ProxyResolver
35989
35116
  /**
35990
35117
  * The proxy resolver to use.
35991
35118
  */
@@ -36708,21 +35835,6 @@ export module Settings {
36708
35835
  * #GSettingsSchema.
36709
35836
  */
36710
35837
  schema?: string | null
36711
- /**
36712
- * The name of the schema that describes the types of keys
36713
- * for this #GSettings object.
36714
- */
36715
- schema_id?: string | null
36716
- /**
36717
- * The #GSettingsSchema describing the types of keys for this
36718
- * #GSettings object.
36719
- *
36720
- * Ideally, this property would be called 'schema'. #GSettingsSchema
36721
- * has only existed since version 2.32, however, and before then the
36722
- * 'schema' property was used to refer to the ID of the schema rather
36723
- * than the schema itself. Take care.
36724
- */
36725
- settings_schema?: SettingsSchema | null
36726
35838
  /**
36727
35839
  * The name of the schema that describes the types of keys
36728
35840
  * for this #GSettings object.
@@ -36750,21 +35862,11 @@ export interface Settings {
36750
35862
  * The name of the context that the settings are stored in.
36751
35863
  */
36752
35864
  readonly backend: SettingsBackend
36753
- /**
36754
- * Whether the #GSettings object is in 'delay-apply' mode. See
36755
- * g_settings_delay() for details.
36756
- */
36757
- readonly delay_apply: boolean
36758
35865
  /**
36759
35866
  * Whether the #GSettings object is in 'delay-apply' mode. See
36760
35867
  * g_settings_delay() for details.
36761
35868
  */
36762
35869
  readonly delayApply: boolean
36763
- /**
36764
- * If this property is %TRUE, the #GSettings object has outstanding
36765
- * changes that will be applied when g_settings_apply() is called.
36766
- */
36767
- readonly has_unapplied: boolean
36768
35870
  /**
36769
35871
  * If this property is %TRUE, the #GSettings object has outstanding
36770
35872
  * changes that will be applied when g_settings_apply() is called.
@@ -36786,26 +35888,11 @@ export interface Settings {
36786
35888
  * #GSettingsSchema.
36787
35889
  */
36788
35890
  readonly schema: string | null
36789
- /**
36790
- * The name of the schema that describes the types of keys
36791
- * for this #GSettings object.
36792
- */
36793
- readonly schema_id: string | null
36794
35891
  /**
36795
35892
  * The name of the schema that describes the types of keys
36796
35893
  * for this #GSettings object.
36797
35894
  */
36798
35895
  readonly schemaId: string | null
36799
- /**
36800
- * The #GSettingsSchema describing the types of keys for this
36801
- * #GSettings object.
36802
- *
36803
- * Ideally, this property would be called 'schema'. #GSettingsSchema
36804
- * has only existed since version 2.32, however, and before then the
36805
- * 'schema' property was used to refer to the ID of the schema rather
36806
- * than the schema itself. Take care.
36807
- */
36808
- readonly settings_schema: SettingsSchema
36809
35896
  /**
36810
35897
  * The #GSettingsSchema describing the types of keys for this
36811
35898
  * #GSettings object.
@@ -38118,16 +37205,11 @@ export module SimpleAction {
38118
37205
  * The type of the parameter that must be given when activating the
38119
37206
  * action.
38120
37207
  */
38121
- parameter_type?: GLib.VariantType | null
37208
+ parameterType?: GLib.VariantType | null
38122
37209
  /**
38123
37210
  * The state of the action, or %NULL if the action is stateless.
38124
37211
  */
38125
37212
  state?: GLib.Variant | null
38126
- /**
38127
- * The type of the parameter that must be given when activating the
38128
- * action.
38129
- */
38130
- parameterType?: GLib.VariantType | null
38131
37213
  }
38132
37214
 
38133
37215
  }
@@ -38148,11 +37230,6 @@ export interface SimpleAction extends Action {
38148
37230
  * the action once it has been added to a #GSimpleActionGroup.
38149
37231
  */
38150
37232
  readonly name: string | null
38151
- /**
38152
- * The type of the parameter that must be given when activating the
38153
- * action.
38154
- */
38155
- readonly parameter_type: GLib.VariantType
38156
37233
  /**
38157
37234
  * The type of the parameter that must be given when activating the
38158
37235
  * action.
@@ -38162,11 +37239,6 @@ export interface SimpleAction extends Action {
38162
37239
  * The state of the action, or %NULL if the action is stateless.
38163
37240
  */
38164
37241
  state: any
38165
- /**
38166
- * The #GVariantType of the state that the action has, or %NULL if the
38167
- * action is stateless.
38168
- */
38169
- readonly state_type: GLib.VariantType
38170
37242
  /**
38171
37243
  * The #GVariantType of the state that the action has, or %NULL if the
38172
37244
  * action is stateless.
@@ -38743,8 +37815,6 @@ export module SimpleIOStream {
38743
37815
 
38744
37816
  // Own constructor properties of Gio-2.0.Gio.SimpleIOStream
38745
37817
 
38746
- input_stream?: InputStream | null
38747
- output_stream?: OutputStream | null
38748
37818
  inputStream?: InputStream | null
38749
37819
  outputStream?: OutputStream | null
38750
37820
  }
@@ -38755,9 +37825,7 @@ export interface SimpleIOStream {
38755
37825
 
38756
37826
  // Own properties of Gio-2.0.Gio.SimpleIOStream
38757
37827
 
38758
- readonly input_stream: InputStream
38759
37828
  readonly inputStream: InputStream
38760
- readonly output_stream: OutputStream
38761
37829
  readonly outputStream: OutputStream
38762
37830
 
38763
37831
  // Class property signals of Gio-2.0.Gio.SimpleIOStream
@@ -38892,53 +37960,6 @@ export module SimpleProxyResolver {
38892
37960
 
38893
37961
  // Own constructor properties of Gio-2.0.Gio.SimpleProxyResolver
38894
37962
 
38895
- /**
38896
- * The default proxy URI that will be used for any URI that doesn't
38897
- * match #GSimpleProxyResolver:ignore-hosts, and doesn't match any
38898
- * of the schemes set with g_simple_proxy_resolver_set_uri_proxy().
38899
- *
38900
- * Note that as a special case, if this URI starts with
38901
- * "socks://", #GSimpleProxyResolver will treat it as referring
38902
- * to all three of the socks5, socks4a, and socks4 proxy types.
38903
- */
38904
- default_proxy?: string | null
38905
- /**
38906
- * A list of hostnames and IP addresses that the resolver should
38907
- * allow direct connections to.
38908
- *
38909
- * Entries can be in one of 4 formats:
38910
- *
38911
- * - A hostname, such as "example.com", ".example.com", or
38912
- * "*.example.com", any of which match "example.com" or
38913
- * any subdomain of it.
38914
- *
38915
- * - An IPv4 or IPv6 address, such as "192.168.1.1",
38916
- * which matches only that address.
38917
- *
38918
- * - A hostname or IP address followed by a port, such as
38919
- * "example.com:80", which matches whatever the hostname or IP
38920
- * address would match, but only for URLs with the (explicitly)
38921
- * indicated port. In the case of an IPv6 address, the address
38922
- * part must appear in brackets: "[::1]:443"
38923
- *
38924
- * - An IP address range, given by a base address and prefix length,
38925
- * such as "fe80::/10", which matches any address in that range.
38926
- *
38927
- * Note that when dealing with Unicode hostnames, the matching is
38928
- * done against the ASCII form of the name.
38929
- *
38930
- * Also note that hostname exclusions apply only to connections made
38931
- * to hosts identified by name, and IP address exclusions apply only
38932
- * to connections made to hosts identified by address. That is, if
38933
- * example.com has an address of 192.168.1.1, and the :ignore-hosts list
38934
- * contains only "192.168.1.1", then a connection to "example.com"
38935
- * (eg, via a #GNetworkAddress) will use the proxy, and a connection to
38936
- * "192.168.1.1" (eg, via a #GInetSocketAddress) will not.
38937
- *
38938
- * These rules match the "ignore-hosts"/"noproxy" rules most
38939
- * commonly used by other applications.
38940
- */
38941
- ignore_hosts?: string[] | null
38942
37963
  /**
38943
37964
  * The default proxy URI that will be used for any URI that doesn't
38944
37965
  * match #GSimpleProxyResolver:ignore-hosts, and doesn't match any
@@ -38994,16 +38015,6 @@ export interface SimpleProxyResolver extends ProxyResolver {
38994
38015
 
38995
38016
  // Own properties of Gio-2.0.Gio.SimpleProxyResolver
38996
38017
 
38997
- /**
38998
- * The default proxy URI that will be used for any URI that doesn't
38999
- * match #GSimpleProxyResolver:ignore-hosts, and doesn't match any
39000
- * of the schemes set with g_simple_proxy_resolver_set_uri_proxy().
39001
- *
39002
- * Note that as a special case, if this URI starts with
39003
- * "socks://", #GSimpleProxyResolver will treat it as referring
39004
- * to all three of the socks5, socks4a, and socks4 proxy types.
39005
- */
39006
- default_proxy: string | null
39007
38018
  /**
39008
38019
  * The default proxy URI that will be used for any URI that doesn't
39009
38020
  * match #GSimpleProxyResolver:ignore-hosts, and doesn't match any
@@ -39014,43 +38025,6 @@ export interface SimpleProxyResolver extends ProxyResolver {
39014
38025
  * to all three of the socks5, socks4a, and socks4 proxy types.
39015
38026
  */
39016
38027
  defaultProxy: string | null
39017
- /**
39018
- * A list of hostnames and IP addresses that the resolver should
39019
- * allow direct connections to.
39020
- *
39021
- * Entries can be in one of 4 formats:
39022
- *
39023
- * - A hostname, such as "example.com", ".example.com", or
39024
- * "*.example.com", any of which match "example.com" or
39025
- * any subdomain of it.
39026
- *
39027
- * - An IPv4 or IPv6 address, such as "192.168.1.1",
39028
- * which matches only that address.
39029
- *
39030
- * - A hostname or IP address followed by a port, such as
39031
- * "example.com:80", which matches whatever the hostname or IP
39032
- * address would match, but only for URLs with the (explicitly)
39033
- * indicated port. In the case of an IPv6 address, the address
39034
- * part must appear in brackets: "[::1]:443"
39035
- *
39036
- * - An IP address range, given by a base address and prefix length,
39037
- * such as "fe80::/10", which matches any address in that range.
39038
- *
39039
- * Note that when dealing with Unicode hostnames, the matching is
39040
- * done against the ASCII form of the name.
39041
- *
39042
- * Also note that hostname exclusions apply only to connections made
39043
- * to hosts identified by name, and IP address exclusions apply only
39044
- * to connections made to hosts identified by address. That is, if
39045
- * example.com has an address of 192.168.1.1, and the :ignore-hosts list
39046
- * contains only "192.168.1.1", then a connection to "example.com"
39047
- * (eg, via a #GNetworkAddress) will use the proxy, and a connection to
39048
- * "192.168.1.1" (eg, via a #GInetSocketAddress) will not.
39049
- *
39050
- * These rules match the "ignore-hosts"/"noproxy" rules most
39051
- * commonly used by other applications.
39052
- */
39053
- ignore_hosts: string[]
39054
38028
  /**
39055
38029
  * A list of hostnames and IP addresses that the resolver should
39056
38030
  * allow direct connections to.
@@ -39192,15 +38166,15 @@ export module Socket {
39192
38166
  family?: SocketFamily | null
39193
38167
  fd?: number | null
39194
38168
  keepalive?: boolean | null
39195
- listen_backlog?: number | null
38169
+ listenBacklog?: number | null
39196
38170
  /**
39197
38171
  * Whether outgoing multicast packets loop back to the local host.
39198
38172
  */
39199
- multicast_loopback?: boolean | null
38173
+ multicastLoopback?: boolean | null
39200
38174
  /**
39201
38175
  * Time-to-live out outgoing multicast packets
39202
38176
  */
39203
- multicast_ttl?: number | null
38177
+ multicastTtl?: number | null
39204
38178
  protocol?: SocketProtocol | null
39205
38179
  /**
39206
38180
  * The timeout in seconds on socket I/O
@@ -39211,15 +38185,6 @@ export module Socket {
39211
38185
  */
39212
38186
  ttl?: number | null
39213
38187
  type?: SocketType | null
39214
- listenBacklog?: number | null
39215
- /**
39216
- * Whether outgoing multicast packets loop back to the local host.
39217
- */
39218
- multicastLoopback?: boolean | null
39219
- /**
39220
- * Time-to-live out outgoing multicast packets
39221
- */
39222
- multicastTtl?: number | null
39223
38188
  }
39224
38189
 
39225
38190
  }
@@ -39236,28 +38201,17 @@ export interface Socket extends DatagramBased, Initable {
39236
38201
  readonly family: SocketFamily
39237
38202
  readonly fd: number
39238
38203
  keepalive: boolean
39239
- listen_backlog: number
39240
38204
  listenBacklog: number
39241
- readonly local_address: SocketAddress
39242
38205
  readonly localAddress: SocketAddress
39243
- /**
39244
- * Whether outgoing multicast packets loop back to the local host.
39245
- */
39246
- multicast_loopback: boolean
39247
38206
  /**
39248
38207
  * Whether outgoing multicast packets loop back to the local host.
39249
38208
  */
39250
38209
  multicastLoopback: boolean
39251
- /**
39252
- * Time-to-live out outgoing multicast packets
39253
- */
39254
- multicast_ttl: number
39255
38210
  /**
39256
38211
  * Time-to-live out outgoing multicast packets
39257
38212
  */
39258
38213
  multicastTtl: number
39259
38214
  readonly protocol: SocketProtocol
39260
- readonly remote_address: SocketAddress
39261
38215
  readonly remoteAddress: SocketAddress
39262
38216
  /**
39263
38217
  * The timeout in seconds on socket I/O
@@ -40747,42 +39701,16 @@ export module SocketClient {
40747
39701
 
40748
39702
  // Own constructor properties of Gio-2.0.Gio.SocketClient
40749
39703
 
40750
- enable_proxy?: boolean | null
39704
+ enableProxy?: boolean | null
40751
39705
  family?: SocketFamily | null
40752
- local_address?: SocketAddress | null
39706
+ localAddress?: SocketAddress | null
40753
39707
  protocol?: SocketProtocol | null
40754
39708
  /**
40755
39709
  * The proxy resolver to use
40756
39710
  */
40757
- proxy_resolver?: ProxyResolver | null
39711
+ proxyResolver?: ProxyResolver | null
40758
39712
  timeout?: number | null
40759
39713
  tls?: boolean | null
40760
- /**
40761
- * The TLS validation flags used when creating TLS connections. The
40762
- * default value is %G_TLS_CERTIFICATE_VALIDATE_ALL.
40763
- *
40764
- * GLib guarantees that if certificate verification fails, at least one
40765
- * flag will be set, but it does not guarantee that all possible flags
40766
- * will be set. Accordingly, you may not safely decide to ignore any
40767
- * particular type of error. For example, it would be incorrect to mask
40768
- * %G_TLS_CERTIFICATE_EXPIRED if you want to allow expired certificates,
40769
- * because this could potentially be the only error flag set even if
40770
- * other problems exist with the certificate. Therefore, there is no
40771
- * safe way to use this property. This is not a horrible problem,
40772
- * though, because you should not be attempting to ignore validation
40773
- * errors anyway. If you really must ignore TLS certificate errors,
40774
- * connect to the #GSocketClient::event signal, wait for it to be
40775
- * emitted with %G_SOCKET_CLIENT_TLS_HANDSHAKING, and use that to
40776
- * connect to #GTlsConnection::accept-certificate.
40777
- */
40778
- tls_validation_flags?: TlsCertificateFlags | null
40779
- type?: SocketType | null
40780
- enableProxy?: boolean | null
40781
- localAddress?: SocketAddress | null
40782
- /**
40783
- * The proxy resolver to use
40784
- */
40785
- proxyResolver?: ProxyResolver | null
40786
39714
  /**
40787
39715
  * The TLS validation flags used when creating TLS connections. The
40788
39716
  * default value is %G_TLS_CERTIFICATE_VALIDATE_ALL.
@@ -40802,6 +39730,7 @@ export module SocketClient {
40802
39730
  * connect to #GTlsConnection::accept-certificate.
40803
39731
  */
40804
39732
  tlsValidationFlags?: TlsCertificateFlags | null
39733
+ type?: SocketType | null
40805
39734
  }
40806
39735
 
40807
39736
  }
@@ -40810,41 +39739,16 @@ export interface SocketClient {
40810
39739
 
40811
39740
  // Own properties of Gio-2.0.Gio.SocketClient
40812
39741
 
40813
- enable_proxy: boolean
40814
39742
  enableProxy: boolean
40815
39743
  family: SocketFamily
40816
- local_address: SocketAddress
40817
39744
  localAddress: SocketAddress
40818
39745
  protocol: SocketProtocol
40819
- /**
40820
- * The proxy resolver to use
40821
- */
40822
- proxy_resolver: ProxyResolver
40823
39746
  /**
40824
39747
  * The proxy resolver to use
40825
39748
  */
40826
39749
  proxyResolver: ProxyResolver
40827
39750
  timeout: number
40828
39751
  tls: boolean
40829
- /**
40830
- * The TLS validation flags used when creating TLS connections. The
40831
- * default value is %G_TLS_CERTIFICATE_VALIDATE_ALL.
40832
- *
40833
- * GLib guarantees that if certificate verification fails, at least one
40834
- * flag will be set, but it does not guarantee that all possible flags
40835
- * will be set. Accordingly, you may not safely decide to ignore any
40836
- * particular type of error. For example, it would be incorrect to mask
40837
- * %G_TLS_CERTIFICATE_EXPIRED if you want to allow expired certificates,
40838
- * because this could potentially be the only error flag set even if
40839
- * other problems exist with the certificate. Therefore, there is no
40840
- * safe way to use this property. This is not a horrible problem,
40841
- * though, because you should not be attempting to ignore validation
40842
- * errors anyway. If you really must ignore TLS certificate errors,
40843
- * connect to the #GSocketClient::event signal, wait for it to be
40844
- * emitted with %G_SOCKET_CLIENT_TLS_HANDSHAKING, and use that to
40845
- * connect to #GTlsConnection::accept-certificate.
40846
- */
40847
- tls_validation_flags: TlsCertificateFlags
40848
39752
  /**
40849
39753
  * The TLS validation flags used when creating TLS connections. The
40850
39754
  * default value is %G_TLS_CERTIFICATE_VALIDATE_ALL.
@@ -41737,7 +40641,6 @@ export module SocketListener {
41737
40641
 
41738
40642
  // Own constructor properties of Gio-2.0.Gio.SocketListener
41739
40643
 
41740
- listen_backlog?: number | null
41741
40644
  listenBacklog?: number | null
41742
40645
  }
41743
40646
 
@@ -41747,7 +40650,6 @@ export interface SocketListener {
41747
40650
 
41748
40651
  // Own properties of Gio-2.0.Gio.SocketListener
41749
40652
 
41750
- listen_backlog: number
41751
40653
  listenBacklog: number
41752
40654
 
41753
40655
  // Own fields of Gio-2.0.Gio.SocketListener
@@ -42714,7 +41616,7 @@ export interface SubprocessLauncher {
42714
41616
  *
42715
41617
  * On UNIX, all strings in this array can be arbitrary byte strings.
42716
41618
  * On Windows, they should be in UTF-8.
42717
- * @param env the replacement environment
41619
+ * @param env the replacement environment
42718
41620
  */
42719
41621
  set_environ(env: string[]): void
42720
41622
  /**
@@ -43940,7 +42842,6 @@ export module TcpConnection {
43940
42842
 
43941
42843
  // Own constructor properties of Gio-2.0.Gio.TcpConnection
43942
42844
 
43943
- graceful_disconnect?: boolean | null
43944
42845
  gracefulDisconnect?: boolean | null
43945
42846
  }
43946
42847
 
@@ -43950,7 +42851,6 @@ export interface TcpConnection {
43950
42851
 
43951
42852
  // Own properties of Gio-2.0.Gio.TcpConnection
43952
42853
 
43953
- graceful_disconnect: boolean
43954
42854
  gracefulDisconnect: boolean
43955
42855
 
43956
42856
  // Own fields of Gio-2.0.Gio.TcpConnection
@@ -44089,7 +42989,6 @@ export module TcpWrapperConnection {
44089
42989
 
44090
42990
  // Own constructor properties of Gio-2.0.Gio.TcpWrapperConnection
44091
42991
 
44092
- base_io_stream?: IOStream | null
44093
42992
  baseIoStream?: IOStream | null
44094
42993
  }
44095
42994
 
@@ -44099,7 +42998,6 @@ export interface TcpWrapperConnection {
44099
42998
 
44100
42999
  // Own properties of Gio-2.0.Gio.TcpWrapperConnection
44101
43000
 
44102
- readonly base_io_stream: IOStream
44103
43001
  readonly baseIoStream: IOStream
44104
43002
 
44105
43003
  // Own fields of Gio-2.0.Gio.TcpWrapperConnection
@@ -44466,26 +43364,6 @@ export module ThemedIcon {
44466
43364
  * A %NULL-terminated array of icon names.
44467
43365
  */
44468
43366
  names?: string[] | null
44469
- /**
44470
- * Whether to use the default fallbacks found by shortening the icon name
44471
- * at '-' characters. If the "names" array has more than one element,
44472
- * ignores any past the first.
44473
- *
44474
- * For example, if the icon name was "gnome-dev-cdrom-audio", the array
44475
- * would become
44476
- *
44477
- * ```c
44478
- * {
44479
- * "gnome-dev-cdrom-audio",
44480
- * "gnome-dev-cdrom",
44481
- * "gnome-dev",
44482
- * "gnome",
44483
- * NULL
44484
- * };
44485
- * ```
44486
- *
44487
- */
44488
- use_default_fallbacks?: boolean | null
44489
43367
  /**
44490
43368
  * Whether to use the default fallbacks found by shortening the icon name
44491
43369
  * at '-' characters. If the "names" array has more than one element,
@@ -44522,26 +43400,6 @@ export interface ThemedIcon extends Icon {
44522
43400
  * A %NULL-terminated array of icon names.
44523
43401
  */
44524
43402
  readonly names: string[]
44525
- /**
44526
- * Whether to use the default fallbacks found by shortening the icon name
44527
- * at '-' characters. If the "names" array has more than one element,
44528
- * ignores any past the first.
44529
- *
44530
- * For example, if the icon name was "gnome-dev-cdrom-audio", the array
44531
- * would become
44532
- *
44533
- * ```c
44534
- * {
44535
- * "gnome-dev-cdrom-audio",
44536
- * "gnome-dev-cdrom",
44537
- * "gnome-dev",
44538
- * "gnome",
44539
- * NULL
44540
- * };
44541
- * ```
44542
- *
44543
- */
44544
- readonly use_default_fallbacks: boolean
44545
43403
  /**
44546
43404
  * Whether to use the default fallbacks found by shortening the icon name
44547
43405
  * at '-' characters. If the "names" array has more than one element,
@@ -44689,7 +43547,6 @@ export module ThreadedSocketService {
44689
43547
 
44690
43548
  // Own constructor properties of Gio-2.0.Gio.ThreadedSocketService
44691
43549
 
44692
- max_threads?: number | null
44693
43550
  maxThreads?: number | null
44694
43551
  }
44695
43552
 
@@ -44699,7 +43556,6 @@ export interface ThreadedSocketService {
44699
43556
 
44700
43557
  // Own properties of Gio-2.0.Gio.ThreadedSocketService
44701
43558
 
44702
- readonly max_threads: number
44703
43559
  readonly maxThreads: number
44704
43560
 
44705
43561
  // Own fields of Gio-2.0.Gio.ThreadedSocketService
@@ -44823,7 +43679,7 @@ export module TlsCertificate {
44823
43679
  * This property and the #GTlsCertificate:certificate
44824
43680
  * property represent the same data, just in different forms.
44825
43681
  */
44826
- certificate_pem?: string | null
43682
+ certificatePem?: string | null
44827
43683
  /**
44828
43684
  * A #GTlsCertificate representing the entity that issued this
44829
43685
  * certificate. If %NULL, this means that the certificate is either
@@ -44847,72 +43703,6 @@ export module TlsCertificate {
44847
43703
  * An optional password used when constructed with GTlsCertificate:pkcs12-data.
44848
43704
  */
44849
43705
  password?: string | null
44850
- /**
44851
- * A URI referencing the [PKCS \#11](https://docs.oasis-open.org/pkcs11/pkcs11-base/v3.0/os/pkcs11-base-v3.0-os.html)
44852
- * objects containing an X.509 certificate and optionally a private key.
44853
- *
44854
- * If %NULL, the certificate is either not backed by PKCS \#11 or the
44855
- * #GTlsBackend does not support PKCS \#11.
44856
- */
44857
- pkcs11_uri?: string | null
44858
- /**
44859
- * The PKCS #12 formatted data used to construct the object.
44860
- *
44861
- * See also: g_tls_certificate_new_from_pkcs12()
44862
- */
44863
- pkcs12_data?: Uint8Array | null
44864
- /**
44865
- * The DER (binary) encoded representation of the certificate's
44866
- * private key, in either [PKCS \#1 format](https://datatracker.ietf.org/doc/html/rfc8017)
44867
- * or unencrypted [PKCS \#8 format.](https://datatracker.ietf.org/doc/html/rfc5208)
44868
- * PKCS \#8 format is supported since 2.32; earlier releases only
44869
- * support PKCS \#1. You can use the `openssl rsa` tool to convert
44870
- * PKCS \#8 keys to PKCS \#1.
44871
- *
44872
- * This property (or the #GTlsCertificate:private-key-pem property)
44873
- * can be set when constructing a key (for example, from a file).
44874
- * Since GLib 2.70, it is now also readable; however, be aware that if
44875
- * the private key is backed by a PKCS \#11 URI – for example, if it
44876
- * is stored on a smartcard – then this property will be %NULL. If so,
44877
- * the private key must be referenced via its PKCS \#11 URI,
44878
- * #GTlsCertificate:private-key-pkcs11-uri. You must check both
44879
- * properties to see if the certificate really has a private key.
44880
- * When this property is read, the output format will be unencrypted
44881
- * PKCS \#8.
44882
- */
44883
- private_key?: Uint8Array | null
44884
- /**
44885
- * The PEM (ASCII) encoded representation of the certificate's
44886
- * private key in either [PKCS \#1 format](https://datatracker.ietf.org/doc/html/rfc8017)
44887
- * ("`BEGIN RSA PRIVATE KEY`") or unencrypted
44888
- * [PKCS \#8 format](https://datatracker.ietf.org/doc/html/rfc5208)
44889
- * ("`BEGIN PRIVATE KEY`"). PKCS \#8 format is supported since 2.32;
44890
- * earlier releases only support PKCS \#1. You can use the `openssl rsa`
44891
- * tool to convert PKCS \#8 keys to PKCS \#1.
44892
- *
44893
- * This property (or the #GTlsCertificate:private-key property)
44894
- * can be set when constructing a key (for example, from a file).
44895
- * Since GLib 2.70, it is now also readable; however, be aware that if
44896
- * the private key is backed by a PKCS \#11 URI - for example, if it
44897
- * is stored on a smartcard - then this property will be %NULL. If so,
44898
- * the private key must be referenced via its PKCS \#11 URI,
44899
- * #GTlsCertificate:private-key-pkcs11-uri. You must check both
44900
- * properties to see if the certificate really has a private key.
44901
- * When this property is read, the output format will be unencrypted
44902
- * PKCS \#8.
44903
- */
44904
- private_key_pem?: string | null
44905
- /**
44906
- * A URI referencing a [PKCS \#11](https://docs.oasis-open.org/pkcs11/pkcs11-base/v3.0/os/pkcs11-base-v3.0-os.html)
44907
- * object containing a private key.
44908
- */
44909
- private_key_pkcs11_uri?: string | null
44910
- /**
44911
- * The PEM (ASCII) encoded representation of the certificate.
44912
- * This property and the #GTlsCertificate:certificate
44913
- * property represent the same data, just in different forms.
44914
- */
44915
- certificatePem?: string | null
44916
43706
  /**
44917
43707
  * A URI referencing the [PKCS \#11](https://docs.oasis-open.org/pkcs11/pkcs11-base/v3.0/os/pkcs11-base-v3.0-os.html)
44918
43708
  * objects containing an X.509 certificate and optionally a private key.
@@ -44987,33 +43777,17 @@ export interface TlsCertificate {
44987
43777
  * represent the same data, just in different forms.
44988
43778
  */
44989
43779
  readonly certificate: Uint8Array
44990
- /**
44991
- * The PEM (ASCII) encoded representation of the certificate.
44992
- * This property and the #GTlsCertificate:certificate
44993
- * property represent the same data, just in different forms.
44994
- */
44995
- readonly certificate_pem: string | null
44996
43780
  /**
44997
43781
  * The PEM (ASCII) encoded representation of the certificate.
44998
43782
  * This property and the #GTlsCertificate:certificate
44999
43783
  * property represent the same data, just in different forms.
45000
43784
  */
45001
43785
  readonly certificatePem: string | null
45002
- /**
45003
- * The DNS names from the certificate's Subject Alternative Names (SANs),
45004
- * %NULL if unavailable.
45005
- */
45006
- readonly dns_names: any[]
45007
43786
  /**
45008
43787
  * The DNS names from the certificate's Subject Alternative Names (SANs),
45009
43788
  * %NULL if unavailable.
45010
43789
  */
45011
43790
  readonly dnsNames: any[]
45012
- /**
45013
- * The IP addresses from the certificate's Subject Alternative Names (SANs),
45014
- * %NULL if unavailable.
45015
- */
45016
- readonly ip_addresses: any[]
45017
43791
  /**
45018
43792
  * The IP addresses from the certificate's Subject Alternative Names (SANs),
45019
43793
  * %NULL if unavailable.
@@ -45038,31 +43812,16 @@ export interface TlsCertificate {
45038
43812
  * GLib itself should make security decisions about TLS certificates.
45039
43813
  */
45040
43814
  readonly issuer: TlsCertificate
45041
- /**
45042
- * The issuer from the certificate,
45043
- * %NULL if unavailable.
45044
- */
45045
- readonly issuer_name: string | null
45046
43815
  /**
45047
43816
  * The issuer from the certificate,
45048
43817
  * %NULL if unavailable.
45049
43818
  */
45050
43819
  readonly issuerName: string | null
45051
- /**
45052
- * The time at which this cert is no longer valid,
45053
- * %NULL if unavailable.
45054
- */
45055
- readonly not_valid_after: GLib.DateTime
45056
43820
  /**
45057
43821
  * The time at which this cert is no longer valid,
45058
43822
  * %NULL if unavailable.
45059
43823
  */
45060
43824
  readonly notValidAfter: GLib.DateTime
45061
- /**
45062
- * The time at which this cert is considered to be valid,
45063
- * %NULL if unavailable.
45064
- */
45065
- readonly not_valid_before: GLib.DateTime
45066
43825
  /**
45067
43826
  * The time at which this cert is considered to be valid,
45068
43827
  * %NULL if unavailable.
@@ -45072,14 +43831,6 @@ export interface TlsCertificate {
45072
43831
  * An optional password used when constructed with GTlsCertificate:pkcs12-data.
45073
43832
  */
45074
43833
  readonly password: string | null
45075
- /**
45076
- * A URI referencing the [PKCS \#11](https://docs.oasis-open.org/pkcs11/pkcs11-base/v3.0/os/pkcs11-base-v3.0-os.html)
45077
- * objects containing an X.509 certificate and optionally a private key.
45078
- *
45079
- * If %NULL, the certificate is either not backed by PKCS \#11 or the
45080
- * #GTlsBackend does not support PKCS \#11.
45081
- */
45082
- readonly pkcs11_uri: string | null
45083
43834
  /**
45084
43835
  * A URI referencing the [PKCS \#11](https://docs.oasis-open.org/pkcs11/pkcs11-base/v3.0/os/pkcs11-base-v3.0-os.html)
45085
43836
  * objects containing an X.509 certificate and optionally a private key.
@@ -45088,38 +43839,12 @@ export interface TlsCertificate {
45088
43839
  * #GTlsBackend does not support PKCS \#11.
45089
43840
  */
45090
43841
  readonly pkcs11Uri: string | null
45091
- /**
45092
- * The PKCS #12 formatted data used to construct the object.
45093
- *
45094
- * See also: g_tls_certificate_new_from_pkcs12()
45095
- */
45096
- readonly pkcs12_data: Uint8Array
45097
43842
  /**
45098
43843
  * The PKCS #12 formatted data used to construct the object.
45099
43844
  *
45100
43845
  * See also: g_tls_certificate_new_from_pkcs12()
45101
43846
  */
45102
43847
  readonly pkcs12Data: Uint8Array
45103
- /**
45104
- * The DER (binary) encoded representation of the certificate's
45105
- * private key, in either [PKCS \#1 format](https://datatracker.ietf.org/doc/html/rfc8017)
45106
- * or unencrypted [PKCS \#8 format.](https://datatracker.ietf.org/doc/html/rfc5208)
45107
- * PKCS \#8 format is supported since 2.32; earlier releases only
45108
- * support PKCS \#1. You can use the `openssl rsa` tool to convert
45109
- * PKCS \#8 keys to PKCS \#1.
45110
- *
45111
- * This property (or the #GTlsCertificate:private-key-pem property)
45112
- * can be set when constructing a key (for example, from a file).
45113
- * Since GLib 2.70, it is now also readable; however, be aware that if
45114
- * the private key is backed by a PKCS \#11 URI – for example, if it
45115
- * is stored on a smartcard – then this property will be %NULL. If so,
45116
- * the private key must be referenced via its PKCS \#11 URI,
45117
- * #GTlsCertificate:private-key-pkcs11-uri. You must check both
45118
- * properties to see if the certificate really has a private key.
45119
- * When this property is read, the output format will be unencrypted
45120
- * PKCS \#8.
45121
- */
45122
- readonly private_key: Uint8Array
45123
43848
  /**
45124
43849
  * The DER (binary) encoded representation of the certificate's
45125
43850
  * private key, in either [PKCS \#1 format](https://datatracker.ietf.org/doc/html/rfc8017)
@@ -45140,27 +43865,6 @@ export interface TlsCertificate {
45140
43865
  * PKCS \#8.
45141
43866
  */
45142
43867
  readonly privateKey: Uint8Array
45143
- /**
45144
- * The PEM (ASCII) encoded representation of the certificate's
45145
- * private key in either [PKCS \#1 format](https://datatracker.ietf.org/doc/html/rfc8017)
45146
- * ("`BEGIN RSA PRIVATE KEY`") or unencrypted
45147
- * [PKCS \#8 format](https://datatracker.ietf.org/doc/html/rfc5208)
45148
- * ("`BEGIN PRIVATE KEY`"). PKCS \#8 format is supported since 2.32;
45149
- * earlier releases only support PKCS \#1. You can use the `openssl rsa`
45150
- * tool to convert PKCS \#8 keys to PKCS \#1.
45151
- *
45152
- * This property (or the #GTlsCertificate:private-key property)
45153
- * can be set when constructing a key (for example, from a file).
45154
- * Since GLib 2.70, it is now also readable; however, be aware that if
45155
- * the private key is backed by a PKCS \#11 URI - for example, if it
45156
- * is stored on a smartcard - then this property will be %NULL. If so,
45157
- * the private key must be referenced via its PKCS \#11 URI,
45158
- * #GTlsCertificate:private-key-pkcs11-uri. You must check both
45159
- * properties to see if the certificate really has a private key.
45160
- * When this property is read, the output format will be unencrypted
45161
- * PKCS \#8.
45162
- */
45163
- readonly private_key_pem: string | null
45164
43868
  /**
45165
43869
  * The PEM (ASCII) encoded representation of the certificate's
45166
43870
  * private key in either [PKCS \#1 format](https://datatracker.ietf.org/doc/html/rfc8017)
@@ -45182,21 +43886,11 @@ export interface TlsCertificate {
45182
43886
  * PKCS \#8.
45183
43887
  */
45184
43888
  readonly privateKeyPem: string | null
45185
- /**
45186
- * A URI referencing a [PKCS \#11](https://docs.oasis-open.org/pkcs11/pkcs11-base/v3.0/os/pkcs11-base-v3.0-os.html)
45187
- * object containing a private key.
45188
- */
45189
- readonly private_key_pkcs11_uri: string | null
45190
43889
  /**
45191
43890
  * A URI referencing a [PKCS \#11](https://docs.oasis-open.org/pkcs11/pkcs11-base/v3.0/os/pkcs11-base-v3.0-os.html)
45192
43891
  * object containing a private key.
45193
43892
  */
45194
43893
  readonly privateKeyPkcs11Uri: string | null
45195
- /**
45196
- * The subject from the cert,
45197
- * %NULL if unavailable.
45198
- */
45199
- readonly subject_name: string | null
45200
43894
  /**
45201
43895
  * The subject from the cert,
45202
43896
  * %NULL if unavailable.
@@ -45574,7 +44268,7 @@ export module TlsConnection {
45574
44268
  * advertises that it is willing to speak. See
45575
44269
  * g_tls_connection_set_advertised_protocols().
45576
44270
  */
45577
- advertised_protocols?: string[] | null
44271
+ advertisedProtocols?: string[] | null
45578
44272
  /**
45579
44273
  * The #GIOStream that the connection wraps. The connection holds a reference
45580
44274
  * to this stream, and may run operations on the stream from other threads
@@ -45582,7 +44276,7 @@ export module TlsConnection {
45582
44276
  * constructed, application code may only run its own operations on this
45583
44277
  * stream when no #GIOStream operations are running.
45584
44278
  */
45585
- base_io_stream?: IOStream | null
44279
+ baseIoStream?: IOStream | null
45586
44280
  /**
45587
44281
  * The connection's certificate; see
45588
44282
  * g_tls_connection_set_certificate().
@@ -45613,36 +44307,6 @@ export module TlsConnection {
45613
44307
  * user for passwords where necessary.
45614
44308
  */
45615
44309
  interaction?: TlsInteraction | null
45616
- /**
45617
- * The rehandshaking mode. See
45618
- * g_tls_connection_set_rehandshake_mode().
45619
- */
45620
- rehandshake_mode?: TlsRehandshakeMode | null
45621
- /**
45622
- * Whether or not proper TLS close notification is required.
45623
- * See g_tls_connection_set_require_close_notify().
45624
- */
45625
- require_close_notify?: boolean | null
45626
- /**
45627
- * Whether or not the system certificate database will be used to
45628
- * verify peer certificates. See
45629
- * g_tls_connection_set_use_system_certdb().
45630
- */
45631
- use_system_certdb?: boolean | null
45632
- /**
45633
- * The list of application-layer protocols that the connection
45634
- * advertises that it is willing to speak. See
45635
- * g_tls_connection_set_advertised_protocols().
45636
- */
45637
- advertisedProtocols?: string[] | null
45638
- /**
45639
- * The #GIOStream that the connection wraps. The connection holds a reference
45640
- * to this stream, and may run operations on the stream from other threads
45641
- * throughout its lifetime. Consequently, after the #GIOStream has been
45642
- * constructed, application code may only run its own operations on this
45643
- * stream when no #GIOStream operations are running.
45644
- */
45645
- baseIoStream?: IOStream | null
45646
44310
  /**
45647
44311
  * The rehandshaking mode. See
45648
44312
  * g_tls_connection_set_rehandshake_mode().
@@ -45667,26 +44331,12 @@ export interface TlsConnection {
45667
44331
 
45668
44332
  // Own properties of Gio-2.0.Gio.TlsConnection
45669
44333
 
45670
- /**
45671
- * The list of application-layer protocols that the connection
45672
- * advertises that it is willing to speak. See
45673
- * g_tls_connection_set_advertised_protocols().
45674
- */
45675
- advertised_protocols: string[]
45676
44334
  /**
45677
44335
  * The list of application-layer protocols that the connection
45678
44336
  * advertises that it is willing to speak. See
45679
44337
  * g_tls_connection_set_advertised_protocols().
45680
44338
  */
45681
44339
  advertisedProtocols: string[]
45682
- /**
45683
- * The #GIOStream that the connection wraps. The connection holds a reference
45684
- * to this stream, and may run operations on the stream from other threads
45685
- * throughout its lifetime. Consequently, after the #GIOStream has been
45686
- * constructed, application code may only run its own operations on this
45687
- * stream when no #GIOStream operations are running.
45688
- */
45689
- readonly base_io_stream: IOStream
45690
44340
  /**
45691
44341
  * The #GIOStream that the connection wraps. The connection holds a reference
45692
44342
  * to this stream, and may run operations on the stream from other threads
@@ -45700,10 +44350,6 @@ export interface TlsConnection {
45700
44350
  * g_tls_connection_set_certificate().
45701
44351
  */
45702
44352
  certificate: TlsCertificate
45703
- /**
45704
- * The name of the TLS ciphersuite in use. See g_tls_connection_get_ciphersuite_name().
45705
- */
45706
- readonly ciphersuite_name: string | null
45707
44353
  /**
45708
44354
  * The name of the TLS ciphersuite in use. See g_tls_connection_get_ciphersuite_name().
45709
44355
  */
@@ -45733,25 +44379,11 @@ export interface TlsConnection {
45733
44379
  * user for passwords where necessary.
45734
44380
  */
45735
44381
  interaction: TlsInteraction
45736
- /**
45737
- * The application-layer protocol negotiated during the TLS
45738
- * handshake. See g_tls_connection_get_negotiated_protocol().
45739
- */
45740
- readonly negotiated_protocol: string | null
45741
44382
  /**
45742
44383
  * The application-layer protocol negotiated during the TLS
45743
44384
  * handshake. See g_tls_connection_get_negotiated_protocol().
45744
44385
  */
45745
44386
  readonly negotiatedProtocol: string | null
45746
- /**
45747
- * The connection's peer's certificate, after the TLS handshake has
45748
- * completed or failed. Note in particular that this is not yet set
45749
- * during the emission of #GTlsConnection::accept-certificate.
45750
- *
45751
- * (You can watch for a #GObject::notify signal on this property to
45752
- * detect when a handshake has occurred.)
45753
- */
45754
- readonly peer_certificate: TlsCertificate
45755
44387
  /**
45756
44388
  * The connection's peer's certificate, after the TLS handshake has
45757
44389
  * completed or failed. Note in particular that this is not yet set
@@ -45761,23 +44393,6 @@ export interface TlsConnection {
45761
44393
  * detect when a handshake has occurred.)
45762
44394
  */
45763
44395
  readonly peerCertificate: TlsCertificate
45764
- /**
45765
- * The errors noticed while verifying
45766
- * #GTlsConnection:peer-certificate. Normally this should be 0, but
45767
- * it may not be if #GTlsClientConnection:validation-flags is not
45768
- * %G_TLS_CERTIFICATE_VALIDATE_ALL, or if
45769
- * #GTlsConnection::accept-certificate overrode the default
45770
- * behavior.
45771
- *
45772
- * GLib guarantees that if certificate verification fails, at least
45773
- * one error will be set, but it does not guarantee that all possible
45774
- * errors will be set. Accordingly, you may not safely decide to
45775
- * ignore any particular type of error. For example, it would be
45776
- * incorrect to mask %G_TLS_CERTIFICATE_EXPIRED if you want to allow
45777
- * expired certificates, because this could potentially be the only
45778
- * error flag set even if other problems exist with the certificate.
45779
- */
45780
- readonly peer_certificate_errors: TlsCertificateFlags
45781
44396
  /**
45782
44397
  * The errors noticed while verifying
45783
44398
  * #GTlsConnection:peer-certificate. Normally this should be 0, but
@@ -45795,40 +44410,20 @@ export interface TlsConnection {
45795
44410
  * error flag set even if other problems exist with the certificate.
45796
44411
  */
45797
44412
  readonly peerCertificateErrors: TlsCertificateFlags
45798
- /**
45799
- * The TLS protocol version in use. See g_tls_connection_get_protocol_version().
45800
- */
45801
- readonly protocol_version: TlsProtocolVersion
45802
44413
  /**
45803
44414
  * The TLS protocol version in use. See g_tls_connection_get_protocol_version().
45804
44415
  */
45805
44416
  readonly protocolVersion: TlsProtocolVersion
45806
- /**
45807
- * The rehandshaking mode. See
45808
- * g_tls_connection_set_rehandshake_mode().
45809
- */
45810
- rehandshake_mode: TlsRehandshakeMode
45811
44417
  /**
45812
44418
  * The rehandshaking mode. See
45813
44419
  * g_tls_connection_set_rehandshake_mode().
45814
44420
  */
45815
44421
  rehandshakeMode: TlsRehandshakeMode
45816
- /**
45817
- * Whether or not proper TLS close notification is required.
45818
- * See g_tls_connection_set_require_close_notify().
45819
- */
45820
- require_close_notify: boolean
45821
44422
  /**
45822
44423
  * Whether or not proper TLS close notification is required.
45823
44424
  * See g_tls_connection_set_require_close_notify().
45824
44425
  */
45825
44426
  requireCloseNotify: boolean
45826
- /**
45827
- * Whether or not the system certificate database will be used to
45828
- * verify peer certificates. See
45829
- * g_tls_connection_set_use_system_certdb().
45830
- */
45831
- use_system_certdb: boolean
45832
44427
  /**
45833
44428
  * Whether or not the system certificate database will be used to
45834
44429
  * verify peer certificates. See
@@ -47974,7 +46569,6 @@ export module UnixFDMessage {
47974
46569
 
47975
46570
  // Own constructor properties of Gio-2.0.Gio.UnixFDMessage
47976
46571
 
47977
- fd_list?: UnixFDList | null
47978
46572
  fdList?: UnixFDList | null
47979
46573
  }
47980
46574
 
@@ -47984,7 +46578,6 @@ export interface UnixFDMessage {
47984
46578
 
47985
46579
  // Own properties of Gio-2.0.Gio.UnixFDMessage
47986
46580
 
47987
- readonly fd_list: UnixFDList
47988
46581
  readonly fdList: UnixFDList
47989
46582
 
47990
46583
  // Own fields of Gio-2.0.Gio.UnixFDMessage
@@ -48108,15 +46701,11 @@ export module UnixInputStream {
48108
46701
  /**
48109
46702
  * Whether to close the file descriptor when the stream is closed.
48110
46703
  */
48111
- close_fd?: boolean | null
46704
+ closeFd?: boolean | null
48112
46705
  /**
48113
46706
  * The file descriptor that the stream reads from.
48114
46707
  */
48115
46708
  fd?: number | null
48116
- /**
48117
- * Whether to close the file descriptor when the stream is closed.
48118
- */
48119
- closeFd?: boolean | null
48120
46709
  }
48121
46710
 
48122
46711
  }
@@ -48125,10 +46714,6 @@ export interface UnixInputStream extends FileDescriptorBased, PollableInputStrea
48125
46714
 
48126
46715
  // Own properties of Gio-2.0.Gio.UnixInputStream
48127
46716
 
48128
- /**
48129
- * Whether to close the file descriptor when the stream is closed.
48130
- */
48131
- close_fd: boolean
48132
46717
  /**
48133
46718
  * Whether to close the file descriptor when the stream is closed.
48134
46719
  */
@@ -48341,15 +46926,11 @@ export module UnixOutputStream {
48341
46926
  /**
48342
46927
  * Whether to close the file descriptor when the stream is closed.
48343
46928
  */
48344
- close_fd?: boolean | null
46929
+ closeFd?: boolean | null
48345
46930
  /**
48346
46931
  * The file descriptor that the stream writes to.
48347
46932
  */
48348
46933
  fd?: number | null
48349
- /**
48350
- * Whether to close the file descriptor when the stream is closed.
48351
- */
48352
- closeFd?: boolean | null
48353
46934
  }
48354
46935
 
48355
46936
  }
@@ -48358,10 +46939,6 @@ export interface UnixOutputStream extends FileDescriptorBased, PollableOutputStr
48358
46939
 
48359
46940
  // Own properties of Gio-2.0.Gio.UnixOutputStream
48360
46941
 
48361
- /**
48362
- * Whether to close the file descriptor when the stream is closed.
48363
- */
48364
- close_fd: boolean
48365
46942
  /**
48366
46943
  * Whether to close the file descriptor when the stream is closed.
48367
46944
  */
@@ -48468,10 +47045,8 @@ export module UnixSocketAddress {
48468
47045
  * Whether or not this is an abstract address
48469
47046
  */
48470
47047
  abstract?: boolean | null
48471
- address_type?: UnixSocketAddressType | null
48472
- path?: string | null
48473
- path_as_array?: Uint8Array | null
48474
47048
  addressType?: UnixSocketAddressType | null
47049
+ path?: string | null
48475
47050
  pathAsArray?: Uint8Array | null
48476
47051
  }
48477
47052
 
@@ -48485,10 +47060,8 @@ export interface UnixSocketAddress extends SocketConnectable {
48485
47060
  * Whether or not this is an abstract address
48486
47061
  */
48487
47062
  readonly abstract: boolean
48488
- readonly address_type: UnixSocketAddressType
48489
47063
  readonly addressType: UnixSocketAddressType
48490
47064
  readonly path: string | null
48491
- readonly path_as_array: Uint8Array
48492
47065
  readonly pathAsArray: Uint8Array
48493
47066
 
48494
47067
  // Own fields of Gio-2.0.Gio.UnixSocketAddress
@@ -49143,15 +47716,9 @@ export module ZlibCompressor {
49143
47716
  * %G_ZLIB_COMPRESSOR_FORMAT_GZIP, the compressor will write the file name
49144
47717
  * and modification time from the file info to the GZIP header.
49145
47718
  */
49146
- file_info?: FileInfo | null
47719
+ fileInfo?: FileInfo | null
49147
47720
  format?: ZlibCompressorFormat | null
49148
47721
  level?: number | null
49149
- /**
49150
- * If set to a non-%NULL #GFileInfo object, and #GZlibCompressor:format is
49151
- * %G_ZLIB_COMPRESSOR_FORMAT_GZIP, the compressor will write the file name
49152
- * and modification time from the file info to the GZIP header.
49153
- */
49154
- fileInfo?: FileInfo | null
49155
47722
  }
49156
47723
 
49157
47724
  }
@@ -49160,12 +47727,6 @@ export interface ZlibCompressor extends Converter {
49160
47727
 
49161
47728
  // Own properties of Gio-2.0.Gio.ZlibCompressor
49162
47729
 
49163
- /**
49164
- * If set to a non-%NULL #GFileInfo object, and #GZlibCompressor:format is
49165
- * %G_ZLIB_COMPRESSOR_FORMAT_GZIP, the compressor will write the file name
49166
- * and modification time from the file info to the GZIP header.
49167
- */
49168
- file_info: FileInfo
49169
47730
  /**
49170
47731
  * If set to a non-%NULL #GFileInfo object, and #GZlibCompressor:format is
49171
47732
  * %G_ZLIB_COMPRESSOR_FORMAT_GZIP, the compressor will write the file name
@@ -49263,13 +47824,6 @@ export interface ZlibDecompressor extends Converter {
49263
47824
 
49264
47825
  // Own properties of Gio-2.0.Gio.ZlibDecompressor
49265
47826
 
49266
- /**
49267
- * A #GFileInfo containing the information found in the GZIP header
49268
- * of the data stream processed, or %NULL if the header was not yet
49269
- * fully processed, is not present at all, or the compressor's
49270
- * #GZlibDecompressor:format property is not %G_ZLIB_COMPRESSOR_FORMAT_GZIP.
49271
- */
49272
- readonly file_info: FileInfo
49273
47827
  /**
49274
47828
  * A #GFileInfo containing the information found in the GZIP header
49275
47829
  * of the data stream processed, or %NULL if the header was not yet