@girs/gxml-0.18 0.18.0-3.2.4 → 0.18.0-3.2.6

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/gxml-0.18.d.cts CHANGED
@@ -214,6 +214,7 @@ export module Collection {
214
214
 
215
215
  element?: DomElement | null
216
216
  items_type?: GObject.GType | null
217
+ itemsType?: GObject.GType | null
217
218
  }
218
219
 
219
220
  }
@@ -223,9 +224,12 @@ export interface Collection extends GObject.Object {
223
224
  // Own properties of GXml-0.18.GXml.Collection
224
225
 
225
226
  readonly nodes_index: GLib.Queue
227
+ readonly nodesIndex: GLib.Queue
226
228
  element: DomElement
227
229
  readonly items_name: string | null
230
+ readonly itemsName: string | null
228
231
  items_type: GObject.GType
232
+ itemsType: GObject.GType
229
233
  readonly length: number
230
234
 
231
235
  // Owm methods of GXml-0.18.GXml.Collection
@@ -475,6 +479,7 @@ export module Map {
475
479
  // Own constructor properties of GXml-0.18.GXml.Map
476
480
 
477
481
  attribute_key?: string | null
482
+ attributeKey?: string | null
478
483
  }
479
484
 
480
485
  }
@@ -484,7 +489,9 @@ export interface Map extends GObject.Object, Collection, Gee.Traversable, Gee.It
484
489
  // Own properties of GXml-0.18.GXml.Map
485
490
 
486
491
  attribute_key: string | null
492
+ attributeKey: string | null
487
493
  readonly keys_set: Gee.Set
494
+ readonly keysSet: Gee.Set
488
495
 
489
496
  // Owm methods of GXml-0.18.GXml.Map
490
497
 
@@ -677,6 +684,8 @@ export module PairedMap {
677
684
 
678
685
  attribute_primary_key?: string | null
679
686
  attribute_secondary_key?: string | null
687
+ attributePrimaryKey?: string | null
688
+ attributeSecondaryKey?: string | null
680
689
  }
681
690
 
682
691
  }
@@ -686,8 +695,11 @@ export interface PairedMap extends GObject.Object, Collection, Gee.Traversable,
686
695
  // Own properties of GXml-0.18.GXml.PairedMap
687
696
 
688
697
  attribute_primary_key: string | null
698
+ attributePrimaryKey: string | null
689
699
  attribute_secondary_key: string | null
700
+ attributeSecondaryKey: string | null
690
701
  readonly primary_keys_set: Gee.Set
702
+ readonly primaryKeysSet: Gee.Set
691
703
 
692
704
  // Owm methods of GXml-0.18.GXml.PairedMap
693
705
 
@@ -894,6 +906,9 @@ export module ThreeMap {
894
906
  attribute_primary_key?: string | null
895
907
  attribute_secondary_key?: string | null
896
908
  attribute_third_key?: string | null
909
+ attributePrimaryKey?: string | null
910
+ attributeSecondaryKey?: string | null
911
+ attributeThirdKey?: string | null
897
912
  }
898
913
 
899
914
  }
@@ -903,9 +918,13 @@ export interface ThreeMap extends GObject.Object, Collection, Gee.Traversable, G
903
918
  // Own properties of GXml-0.18.GXml.ThreeMap
904
919
 
905
920
  attribute_primary_key: string | null
921
+ attributePrimaryKey: string | null
906
922
  attribute_secondary_key: string | null
923
+ attributeSecondaryKey: string | null
907
924
  attribute_third_key: string | null
925
+ attributeThirdKey: string | null
908
926
  readonly primary_keys_set: Gee.Set
927
+ readonly primaryKeysSet: Gee.Set
909
928
 
910
929
  // Owm methods of GXml-0.18.GXml.ThreeMap
911
930
 
@@ -1316,6 +1335,8 @@ export module Document {
1316
1335
  prefix_default_ns?: boolean | null
1317
1336
  backup?: boolean | null
1318
1337
  file?: Gio.File | null
1338
+ nsTop?: boolean | null
1339
+ prefixDefaultNs?: boolean | null
1319
1340
  }
1320
1341
 
1321
1342
  }
@@ -1326,7 +1347,9 @@ export interface Document extends GObject.Object, Node {
1326
1347
 
1327
1348
  indent: boolean
1328
1349
  ns_top: boolean
1350
+ nsTop: boolean
1329
1351
  prefix_default_ns: boolean
1352
+ prefixDefaultNs: boolean
1330
1353
  backup: boolean
1331
1354
  readonly root: Node
1332
1355
  file: Gio.File
@@ -1513,8 +1536,10 @@ export interface DomAttr extends GObject.Object {
1513
1536
  // Own properties of GXml-0.18.GXml.DomAttr
1514
1537
 
1515
1538
  readonly namespace_uri: string | null
1539
+ readonly namespaceUri: string | null
1516
1540
  readonly prefix: string | null
1517
1541
  readonly local_name: string | null
1542
+ readonly localName: string | null
1518
1543
  readonly name: string | null
1519
1544
  value: string | null
1520
1545
  readonly specified: boolean
@@ -1733,6 +1758,7 @@ export interface DomText extends DomCharacterData {
1733
1758
  // Own properties of GXml-0.18.GXml.DomText
1734
1759
 
1735
1760
  readonly whole_text: string | null
1761
+ readonly wholeText: string | null
1736
1762
 
1737
1763
  // Owm methods of GXml-0.18.GXml.DomText
1738
1764
 
@@ -2214,8 +2240,11 @@ export interface DomParentNode extends GObject.Object {
2214
2240
 
2215
2241
  readonly children: DomHTMLCollection
2216
2242
  readonly first_element_child: DomElement
2243
+ readonly firstElementChild: DomElement
2217
2244
  readonly last_element_child: DomElement
2245
+ readonly lastElementChild: DomElement
2218
2246
  readonly child_element_count: number
2247
+ readonly childElementCount: number
2219
2248
 
2220
2249
  // Owm methods of GXml-0.18.GXml.DomParentNode
2221
2250
 
@@ -2284,7 +2313,9 @@ export interface DomNonDocumentTypeChildNode extends GObject.Object {
2284
2313
  // Own properties of GXml-0.18.GXml.DomNonDocumentTypeChildNode
2285
2314
 
2286
2315
  readonly previous_element_sibling: DomElement
2316
+ readonly previousElementSibling: DomElement
2287
2317
  readonly next_element_sibling: DomElement
2318
+ readonly nextElementSibling: DomElement
2288
2319
 
2289
2320
  // Owm methods of GXml-0.18.GXml.DomNonDocumentTypeChildNode
2290
2321
 
@@ -2381,6 +2412,7 @@ export interface DomNodeList extends GObject.Object, Gee.BidirList {
2381
2412
  // Conflicting properties
2382
2413
 
2383
2414
  read_only_view: any
2415
+ readOnlyView: any
2384
2416
 
2385
2417
  // Owm methods of GXml-0.18.GXml.DomNodeList
2386
2418
 
@@ -2479,6 +2511,7 @@ export interface DomHTMLCollection extends GObject.Object, Gee.BidirList {
2479
2511
  // Conflicting properties
2480
2512
 
2481
2513
  read_only_view: any
2514
+ readOnlyView: any
2482
2515
 
2483
2516
  // Owm methods of GXml-0.18.GXml.DomHTMLCollection
2484
2517
 
@@ -2588,8 +2621,11 @@ export interface DomNodeIterator {
2588
2621
 
2589
2622
  readonly root: DomNode
2590
2623
  readonly reference_node: DomNode
2624
+ readonly referenceNode: DomNode
2591
2625
  readonly pointer_before_reference_node: boolean
2626
+ readonly pointerBeforeReferenceNode: boolean
2592
2627
  readonly what_to_show: number
2628
+ readonly whatToShow: number
2593
2629
  readonly filter: DomNodeFilter
2594
2630
 
2595
2631
  // Owm methods of GXml-0.18.GXml.DomNodeIterator
@@ -2665,8 +2701,10 @@ export interface DomTreeWalker extends GObject.Object {
2665
2701
 
2666
2702
  readonly root: DomNode
2667
2703
  readonly what_to_show: number
2704
+ readonly whatToShow: number
2668
2705
  readonly filter: DomNodeFilter
2669
2706
  readonly current_node: DomNode
2707
+ readonly currentNode: DomNode
2670
2708
 
2671
2709
  // Owm methods of GXml-0.18.GXml.DomTreeWalker
2672
2710
 
@@ -2826,6 +2864,7 @@ export interface DomTokenList extends GObject.Object, Gee.BidirList {
2826
2864
  // Conflicting properties
2827
2865
 
2828
2866
  read_only_view: any
2867
+ readOnlyView: any
2829
2868
 
2830
2869
  // Owm methods of GXml-0.18.GXml.DomTokenList
2831
2870
 
@@ -2962,6 +3001,7 @@ export interface DomSettableTokenList extends DomTokenList {
2962
3001
  // Conflicting properties
2963
3002
 
2964
3003
  read_only_view: any
3004
+ readOnlyView: any
2965
3005
 
2966
3006
  // Owm methods of GXml-0.18.GXml.DomSettableTokenList
2967
3007
 
@@ -3097,12 +3137,17 @@ export interface DomDocument extends GObject.Object, DomNode, DomParentNode, Dom
3097
3137
  readonly implementation: DomImplementation
3098
3138
  readonly url: string | null
3099
3139
  readonly document_uri: string | null
3140
+ readonly documentUri: string | null
3100
3141
  readonly origin: string | null
3101
3142
  readonly compat_mode: string | null
3143
+ readonly compatMode: string | null
3102
3144
  readonly character_set: string | null
3145
+ readonly characterSet: string | null
3103
3146
  readonly content_type: string | null
3147
+ readonly contentType: string | null
3104
3148
  readonly doctype: DomDocumentType
3105
3149
  readonly document_element: DomElement
3150
+ readonly documentElement: DomElement
3106
3151
 
3107
3152
  // Owm methods of GXml-0.18.GXml.DomDocument
3108
3153
 
@@ -3511,7 +3556,9 @@ export interface DomDocumentType extends GObject.Object, DomNode, DomChildNode {
3511
3556
 
3512
3557
  readonly name: string | null
3513
3558
  readonly public_id: string | null
3559
+ readonly publicId: string | null
3514
3560
  readonly system_id: string | null
3561
+ readonly systemId: string | null
3515
3562
 
3516
3563
  // Owm methods of GXml-0.18.GXml.DomDocumentType
3517
3564
 
@@ -3726,6 +3773,7 @@ export module DomElement {
3726
3773
 
3727
3774
  id?: string | null
3728
3775
  class_name?: string | null
3776
+ className?: string | null
3729
3777
  }
3730
3778
 
3731
3779
  }
@@ -3735,12 +3783,17 @@ export interface DomElement extends GObject.Object, DomNode, DomChildNode, DomNo
3735
3783
  // Own properties of GXml-0.18.GXml.DomElement
3736
3784
 
3737
3785
  readonly namespace_uri: string | null
3786
+ readonly namespaceUri: string | null
3738
3787
  readonly prefix: string | null
3739
3788
  readonly local_name: string | null
3789
+ readonly localName: string | null
3740
3790
  readonly tag_name: string | null
3791
+ readonly tagName: string | null
3741
3792
  id: string | null
3742
3793
  class_name: string | null
3794
+ className: string | null
3743
3795
  readonly class_list: DomTokenList
3796
+ readonly classList: DomTokenList
3744
3797
  readonly attributes: DomNamedNodeMap
3745
3798
 
3746
3799
  // Owm methods of GXml-0.18.GXml.DomElement
@@ -3992,13 +4045,19 @@ export interface DomEvent extends GObject.Object {
3992
4045
 
3993
4046
  readonly etype: string | null
3994
4047
  readonly event_target: DomEventTarget
4048
+ readonly eventTarget: DomEventTarget
3995
4049
  readonly current_target: DomEventTarget
4050
+ readonly currentTarget: DomEventTarget
3996
4051
  readonly bubbles: boolean
3997
4052
  readonly cancelable: boolean
3998
4053
  readonly is_trusted: boolean
4054
+ readonly isTrusted: boolean
3999
4055
  readonly time_stamp: DomTimeStamp
4056
+ readonly timeStamp: DomTimeStamp
4000
4057
  readonly default_prevented: boolean
4058
+ readonly defaultPrevented: boolean
4001
4059
  readonly event_phase: DomEventPhase
4060
+ readonly eventPhase: DomEventPhase
4002
4061
 
4003
4062
  // Owm methods of GXml-0.18.GXml.DomEvent
4004
4063
 
@@ -4210,6 +4269,8 @@ export module DomMutationRecord {
4210
4269
 
4211
4270
  added_nodes?: DomNodeList | null
4212
4271
  removed_nodes?: DomNodeList | null
4272
+ addedNodes?: DomNodeList | null
4273
+ removedNodes?: DomNodeList | null
4213
4274
  }
4214
4275
 
4215
4276
  }
@@ -4221,12 +4282,19 @@ export interface DomMutationRecord extends GObject.Object {
4221
4282
  readonly mtype: string | null
4222
4283
  readonly target: DomNode
4223
4284
  added_nodes: DomNodeList
4285
+ addedNodes: DomNodeList
4224
4286
  removed_nodes: DomNodeList
4287
+ removedNodes: DomNodeList
4225
4288
  readonly previous_sibling: DomNode
4289
+ readonly previousSibling: DomNode
4226
4290
  readonly next_sibling: DomNode
4291
+ readonly nextSibling: DomNode
4227
4292
  readonly attribute_name: string | null
4293
+ readonly attributeName: string | null
4228
4294
  readonly attribute_namespace: string | null
4295
+ readonly attributeNamespace: string | null
4229
4296
  readonly old_value: string | null
4297
+ readonly oldValue: string | null
4230
4298
 
4231
4299
  // Owm methods of GXml-0.18.GXml.DomMutationRecord
4232
4300
 
@@ -4315,6 +4383,9 @@ export module DomNode {
4315
4383
  owner_document?: DomDocument | null
4316
4384
  node_value?: string | null
4317
4385
  text_content?: string | null
4386
+ ownerDocument?: DomDocument | null
4387
+ nodeValue?: string | null
4388
+ textContent?: string | null
4318
4389
  }
4319
4390
 
4320
4391
  }
@@ -4324,18 +4395,31 @@ export interface DomNode extends GObject.Object, DomEventTarget {
4324
4395
  // Own properties of GXml-0.18.GXml.DomNode
4325
4396
 
4326
4397
  readonly node_type: DomNodeNodeType
4398
+ readonly nodeType: DomNodeNodeType
4327
4399
  readonly node_name: string | null
4400
+ readonly nodeName: string | null
4328
4401
  readonly base_uri: string | null
4402
+ readonly baseUri: string | null
4329
4403
  owner_document: DomDocument
4404
+ ownerDocument: DomDocument
4330
4405
  readonly parent_node: DomNode
4406
+ readonly parentNode: DomNode
4331
4407
  readonly parent_element: DomElement
4408
+ readonly parentElement: DomElement
4332
4409
  readonly child_nodes: DomNodeList
4410
+ readonly childNodes: DomNodeList
4333
4411
  readonly first_child: DomNode
4412
+ readonly firstChild: DomNode
4334
4413
  readonly last_child: DomNode
4414
+ readonly lastChild: DomNode
4335
4415
  readonly previous_sibling: DomNode
4416
+ readonly previousSibling: DomNode
4336
4417
  readonly next_sibling: DomNode
4418
+ readonly nextSibling: DomNode
4337
4419
  node_value: string | null
4420
+ nodeValue: string | null
4338
4421
  text_content: string | null
4422
+ textContent: string | null
4339
4423
 
4340
4424
  // Owm methods of GXml-0.18.GXml.DomNode
4341
4425
 
@@ -4476,11 +4560,16 @@ export interface DomRange extends GObject.Object {
4476
4560
  // Own properties of GXml-0.18.GXml.DomRange
4477
4561
 
4478
4562
  readonly start_container: DomNode
4563
+ readonly startContainer: DomNode
4479
4564
  readonly start_offset: number
4565
+ readonly startOffset: number
4480
4566
  readonly end_container: DomNode
4567
+ readonly endContainer: DomNode
4481
4568
  readonly end_offset: number
4569
+ readonly endOffset: number
4482
4570
  readonly collapsed: boolean
4483
4571
  readonly common_ancestor_container: DomNode
4572
+ readonly commonAncestorContainer: DomNode
4484
4573
 
4485
4574
  // Owm methods of GXml-0.18.GXml.DomRange
4486
4575
 
@@ -4599,6 +4688,7 @@ export interface Element extends GObject.Object, Node {
4599
4688
  // Own properties of GXml-0.18.GXml.Element
4600
4689
 
4601
4690
  readonly tag_name: string | null
4691
+ readonly tagName: string | null
4602
4692
  content: string | null
4603
4693
 
4604
4694
  // Owm methods of GXml-0.18.GXml.Element
@@ -4964,10 +5054,12 @@ export interface Node extends GObject.Object {
4964
5054
 
4965
5055
  readonly namespaces: Gee.List
4966
5056
  readonly children_nodes: Gee.BidirList
5057
+ readonly childrenNodes: Gee.BidirList
4967
5058
  readonly attrs: Gee.Map
4968
5059
  readonly name: string | null
4969
5060
  value: string | null
4970
5061
  readonly type_node: NodeType
5062
+ readonly typeNode: NodeType
4971
5063
  readonly document: Document
4972
5064
  readonly parent: Node
4973
5065
 
@@ -5071,7 +5163,9 @@ export interface Notation extends GObject.Object, Node {
5071
5163
  // Own properties of GXml-0.18.GXml.Notation
5072
5164
 
5073
5165
  readonly public_id: string | null
5166
+ readonly publicId: string | null
5074
5167
  readonly external_id: string | null
5168
+ readonly externalId: string | null
5075
5169
 
5076
5170
  // Owm methods of GXml-0.18.GXml.Notation
5077
5171
 
@@ -5555,6 +5649,9 @@ export module IXsdSchema {
5555
5649
  element_definitions?: IXsdListElements | null
5556
5650
  simple_type_definitions?: IXsdListSimpleTypes | null
5557
5651
  complex_type_definitions?: IXsdListComplexTypes | null
5652
+ elementDefinitions?: IXsdListElements | null
5653
+ simpleTypeDefinitions?: IXsdListSimpleTypes | null
5654
+ complexTypeDefinitions?: IXsdListComplexTypes | null
5558
5655
  }
5559
5656
 
5560
5657
  }
@@ -5564,8 +5661,11 @@ export interface IXsdSchema extends GObject.Object, DomElement {
5564
5661
  // Own properties of GXml-0.18.GXml.IXsdSchema
5565
5662
 
5566
5663
  element_definitions: IXsdListElements
5664
+ elementDefinitions: IXsdListElements
5567
5665
  simple_type_definitions: IXsdListSimpleTypes
5666
+ simpleTypeDefinitions: IXsdListSimpleTypes
5568
5667
  complex_type_definitions: IXsdListComplexTypes
5668
+ complexTypeDefinitions: IXsdListComplexTypes
5569
5669
 
5570
5670
  // Owm methods of GXml-0.18.GXml.IXsdSchema
5571
5671
 
@@ -5998,6 +6098,8 @@ export module IXsdTypeRestriction {
5998
6098
  simple_type?: IXsdSimpleType | null
5999
6099
  enumerations?: IXsdListTypeRestrictionEnumerations | null
6000
6100
  white_spaces?: IXsdListTypeRestrictionWhiteSpaces | null
6101
+ simpleType?: IXsdSimpleType | null
6102
+ whiteSpaces?: IXsdListTypeRestrictionWhiteSpaces | null
6001
6103
  }
6002
6104
 
6003
6105
  }
@@ -6009,8 +6111,10 @@ export interface IXsdTypeRestriction extends GObject.Object, IXsdTypeDef {
6009
6111
  base: string | null
6010
6112
  id: string | null
6011
6113
  simple_type: IXsdSimpleType
6114
+ simpleType: IXsdSimpleType
6012
6115
  enumerations: IXsdListTypeRestrictionEnumerations
6013
6116
  white_spaces: IXsdListTypeRestrictionWhiteSpaces
6117
+ whiteSpaces: IXsdListTypeRestrictionWhiteSpaces
6014
6118
 
6015
6119
  // Owm methods of GXml-0.18.GXml.IXsdTypeRestriction
6016
6120
 
@@ -6765,6 +6869,8 @@ export module IXsdComplexType {
6765
6869
  name?: string | null
6766
6870
  default_attributes_apply?: boolean | null
6767
6871
  content_type?: IXsdBaseContent | null
6872
+ defaultAttributesApply?: boolean | null
6873
+ contentType?: IXsdBaseContent | null
6768
6874
  }
6769
6875
 
6770
6876
  }
@@ -6779,9 +6885,13 @@ export interface IXsdComplexType extends GObject.Object, DomElement, IXsdBaseTyp
6779
6885
  mixed: boolean
6780
6886
  name: string | null
6781
6887
  default_attributes_apply: boolean
6888
+ defaultAttributesApply: boolean
6782
6889
  content_type: IXsdBaseContent
6890
+ contentType: IXsdBaseContent
6783
6891
  readonly type_attributes: IXsdListAttributes
6892
+ readonly typeAttributes: IXsdListAttributes
6784
6893
  readonly group_attributes: IXsdListAttributesGroup
6894
+ readonly groupAttributes: IXsdListAttributesGroup
6785
6895
 
6786
6896
  // Owm methods of GXml-0.18.GXml.IXsdComplexType
6787
6897
 
@@ -7113,6 +7223,11 @@ export module IXsdElement {
7113
7223
  anotation?: IXsdAnnotation | null
7114
7224
  simple_type?: IXsdSimpleType | null
7115
7225
  complex_type?: IXsdComplexType | null
7226
+ substitutionGroup?: DomTokenList | null
7227
+ targetNamespace?: string | null
7228
+ objectType?: string | null
7229
+ simpleType?: IXsdSimpleType | null
7230
+ complexType?: IXsdComplexType | null
7116
7231
  }
7117
7232
 
7118
7233
  }
@@ -7134,11 +7249,16 @@ export interface IXsdElement extends GObject.Object, DomElement {
7134
7249
  nillable: boolean
7135
7250
  // Has conflict: ref: string | null
7136
7251
  substitution_group: DomTokenList
7252
+ substitutionGroup: DomTokenList
7137
7253
  target_namespace: string | null
7254
+ targetNamespace: string | null
7138
7255
  object_type: string | null
7256
+ objectType: string | null
7139
7257
  anotation: IXsdAnnotation
7140
7258
  simple_type: IXsdSimpleType
7259
+ simpleType: IXsdSimpleType
7141
7260
  complex_type: IXsdComplexType
7261
+ complexType: IXsdComplexType
7142
7262
 
7143
7263
  // Owm methods of GXml-0.18.GXml.IXsdElement
7144
7264
 
@@ -7689,6 +7809,8 @@ export module IXsdList {
7689
7809
  element?: DomElement | null
7690
7810
  items_type?: GObject.GType | null
7691
7811
  items_name?: GObject.GType | null
7812
+ itemsType?: GObject.GType | null
7813
+ itemsName?: GObject.GType | null
7692
7814
  }
7693
7815
 
7694
7816
  }
@@ -7699,7 +7821,9 @@ export interface IXsdList extends GObject.Object, Collection {
7699
7821
 
7700
7822
  element: DomElement
7701
7823
  items_type: GObject.GType
7824
+ itemsType: GObject.GType
7702
7825
  items_name: any
7826
+ itemsName: any
7703
7827
  readonly length: number
7704
7828
 
7705
7829
  // Owm methods of GXml-0.18.GXml.IXsdList
@@ -7788,6 +7912,7 @@ export interface IXsdListElements extends GObject.Object, IXsdList {
7788
7912
  // Conflicting properties
7789
7913
 
7790
7914
  items_name: any
7915
+ itemsName: any
7791
7916
 
7792
7917
  // Conflicting methods
7793
7918
 
@@ -7854,6 +7979,7 @@ export interface IXsdListSimpleTypes extends GObject.Object, IXsdList {
7854
7979
  // Conflicting properties
7855
7980
 
7856
7981
  items_name: any
7982
+ itemsName: any
7857
7983
 
7858
7984
  // Conflicting methods
7859
7985
 
@@ -7920,6 +8046,7 @@ export interface IXsdListComplexTypes extends GObject.Object, IXsdList {
7920
8046
  // Conflicting properties
7921
8047
 
7922
8048
  items_name: any
8049
+ itemsName: any
7923
8050
 
7924
8051
  // Conflicting methods
7925
8052
 
@@ -7986,6 +8113,7 @@ export interface IXsdListAttributes extends GObject.Object, IXsdList {
7986
8113
  // Conflicting properties
7987
8114
 
7988
8115
  items_name: any
8116
+ itemsName: any
7989
8117
 
7990
8118
  // Conflicting methods
7991
8119
 
@@ -8052,6 +8180,7 @@ export interface IXsdListAttributesGroup extends GObject.Object, IXsdList {
8052
8180
  // Conflicting properties
8053
8181
 
8054
8182
  items_name: any
8183
+ itemsName: any
8055
8184
 
8056
8185
  // Conflicting methods
8057
8186
 
@@ -8118,6 +8247,7 @@ export interface IXsdListTypeRestrictionEnumerations extends GObject.Object, IXs
8118
8247
  // Conflicting properties
8119
8248
 
8120
8249
  items_name: any
8250
+ itemsName: any
8121
8251
 
8122
8252
  // Conflicting methods
8123
8253
 
@@ -8184,6 +8314,7 @@ export interface IXsdListTypeRestrictionWhiteSpaces extends GObject.Object, IXsd
8184
8314
  // Conflicting properties
8185
8315
 
8186
8316
  items_name: any
8317
+ itemsName: any
8187
8318
 
8188
8319
  // Conflicting methods
8189
8320
 
@@ -8276,6 +8407,7 @@ export module Serializable {
8276
8407
  // Own constructor properties of GXml-0.18.GXml.Serializable
8277
8408
 
8278
8409
  serialized_xml_node_value?: string | null
8410
+ serializedXmlNodeValue?: string | null
8279
8411
  }
8280
8412
 
8281
8413
  }
@@ -8285,8 +8417,11 @@ export interface Serializable extends GObject.Object {
8285
8417
  // Own properties of GXml-0.18.GXml.Serializable
8286
8418
 
8287
8419
  readonly unknown_serializable_properties: Gee.Map
8420
+ readonly unknownSerializableProperties: Gee.Map
8288
8421
  readonly unknown_serializable_nodes: Gee.Collection
8422
+ readonly unknownSerializableNodes: Gee.Collection
8289
8423
  serialized_xml_node_value: string | null
8424
+ serializedXmlNodeValue: string | null
8290
8425
 
8291
8426
  // Owm methods of GXml-0.18.GXml.Serializable
8292
8427
 
@@ -8693,9 +8828,13 @@ export interface XPathObject extends GObject.Object {
8693
8828
  // Own properties of GXml-0.18.GXml.XPathObject
8694
8829
 
8695
8830
  readonly object_type: XPathObjectType
8831
+ readonly objectType: XPathObjectType
8696
8832
  readonly boolean_value: boolean
8833
+ readonly booleanValue: boolean
8697
8834
  readonly string_value: string | null
8835
+ readonly stringValue: string | null
8698
8836
  readonly number_value: number
8837
+ readonly numberValue: number
8699
8838
  readonly nodeset: DomHTMLCollection
8700
8839
 
8701
8840
  // Owm methods of GXml-0.18.GXml.XPathObject
@@ -8761,6 +8900,7 @@ export module CssSelectorData {
8761
8900
  selector_type?: CssSelectorType | null
8762
8901
  data?: string | null
8763
8902
  value?: string | null
8903
+ selectorType?: CssSelectorType | null
8764
8904
  }
8765
8905
 
8766
8906
  }
@@ -8770,6 +8910,7 @@ export interface CssSelectorData {
8770
8910
  // Own properties of GXml-0.18.GXml.CssSelectorData
8771
8911
 
8772
8912
  selector_type: CssSelectorType
8913
+ selectorType: CssSelectorType
8773
8914
  data: string | null
8774
8915
  value: string | null
8775
8916
 
@@ -8952,6 +9093,7 @@ export interface DomElementList extends DomHTMLCollection {
8952
9093
  // Conflicting properties
8953
9094
 
8954
9095
  read_only_view: any
9096
+ readOnlyView: any
8955
9097
 
8956
9098
  // Own fields of GXml-0.18.GXml.DomElementList
8957
9099
 
@@ -9280,6 +9422,11 @@ export module DomMutationObserverInit {
9280
9422
  attribute_old_value?: boolean | null
9281
9423
  character_data_old_value?: boolean | null
9282
9424
  attribute_filter?: Gee.List | null
9425
+ childList?: boolean | null
9426
+ characterData?: boolean | null
9427
+ attributeOldValue?: boolean | null
9428
+ characterDataOldValue?: boolean | null
9429
+ attributeFilter?: Gee.List | null
9283
9430
  }
9284
9431
 
9285
9432
  }
@@ -9289,12 +9436,17 @@ export interface DomMutationObserverInit {
9289
9436
  // Own properties of GXml-0.18.GXml.DomMutationObserverInit
9290
9437
 
9291
9438
  child_list: boolean
9439
+ childList: boolean
9292
9440
  attributes: boolean
9293
9441
  character_data: boolean
9442
+ characterData: boolean
9294
9443
  subtree: boolean
9295
9444
  attribute_old_value: boolean
9445
+ attributeOldValue: boolean
9296
9446
  character_data_old_value: boolean
9447
+ characterDataOldValue: boolean
9297
9448
  attribute_filter: Gee.List
9449
+ attributeFilter: Gee.List
9298
9450
 
9299
9451
  // Own fields of GXml-0.18.GXml.DomMutationObserverInit
9300
9452
 
@@ -9420,6 +9572,7 @@ export interface ElementList extends DomHTMLCollection {
9420
9572
  // Conflicting properties
9421
9573
 
9422
9574
  read_only_view: any
9575
+ readOnlyView: any
9423
9576
 
9424
9577
  // Own fields of GXml-0.18.GXml.ElementList
9425
9578
 
@@ -9564,6 +9717,7 @@ export interface GHtmlDocument extends DomHtmlDocument {
9564
9717
  // Own properties of GXml-0.18.GXml.GHtmlDocument
9565
9718
 
9566
9719
  readonly default_options: number
9720
+ readonly defaultOptions: number
9567
9721
 
9568
9722
  // Own fields of GXml-0.18.GXml.GHtmlDocument
9569
9723
 
@@ -10614,6 +10768,7 @@ export module GomElement {
10614
10768
 
10615
10769
  parse_children?: boolean | null
10616
10770
  unparsed?: string | null
10771
+ parseChildren?: boolean | null
10617
10772
  }
10618
10773
 
10619
10774
  }
@@ -10623,6 +10778,7 @@ export interface GomElement extends DomChildNode, DomNonDocumentTypeChildNode, D
10623
10778
  // Own properties of GXml-0.18.GXml.GomElement
10624
10779
 
10625
10780
  parse_children: boolean
10781
+ parseChildren: boolean
10626
10782
  unparsed: string | null
10627
10783
 
10628
10784
  // Own fields of GXml-0.18.GXml.GomElement
@@ -11090,6 +11246,7 @@ export interface GomNodeList extends DomNodeList {
11090
11246
  // Conflicting properties
11091
11247
 
11092
11248
  read_only_view: any
11249
+ readOnlyView: any
11093
11250
 
11094
11251
  // Own fields of GXml-0.18.GXml.GomNodeList
11095
11252
 
@@ -11373,6 +11530,7 @@ export module GomXsdArrayString {
11373
11530
 
11374
11531
  simple_type?: string | null
11375
11532
  source?: Gio.File | null
11533
+ simpleType?: string | null
11376
11534
  }
11377
11535
 
11378
11536
  }
@@ -11382,6 +11540,7 @@ export interface GomXsdArrayString {
11382
11540
  // Own properties of GXml-0.18.GXml.GomXsdArrayString
11383
11541
 
11384
11542
  simple_type: string | null
11543
+ simpleType: string | null
11385
11544
  source: Gio.File
11386
11545
 
11387
11546
  // Own fields of GXml-0.18.GXml.GomXsdArrayString
@@ -11655,6 +11814,7 @@ export module GomEnum {
11655
11814
  // Own constructor properties of GXml-0.18.GXml.GomEnum
11656
11815
 
11657
11816
  enum_type?: GObject.GType | null
11817
+ enumType?: GObject.GType | null
11658
11818
  }
11659
11819
 
11660
11820
  }
@@ -11664,6 +11824,7 @@ export interface GomEnum {
11664
11824
  // Own properties of GXml-0.18.GXml.GomEnum
11665
11825
 
11666
11826
  enum_type: GObject.GType
11827
+ enumType: GObject.GType
11667
11828
 
11668
11829
  // Own fields of GXml-0.18.GXml.GomEnum
11669
11830
 
@@ -11829,6 +11990,9 @@ export module GomXsdSchema {
11829
11990
  element_definitions?: GomXsdListElements | null
11830
11991
  simple_type_definitions?: GomXsdListSimpleTypes | null
11831
11992
  complex_type_definitions?: GomXsdListComplexTypes | null
11993
+ elementDefinitions?: GomXsdListElements | null
11994
+ simpleTypeDefinitions?: GomXsdListSimpleTypes | null
11995
+ complexTypeDefinitions?: GomXsdListComplexTypes | null
11832
11996
  }
11833
11997
 
11834
11998
  }
@@ -11838,8 +12002,11 @@ export interface GomXsdSchema {
11838
12002
  // Own properties of GXml-0.18.GXml.GomXsdSchema
11839
12003
 
11840
12004
  element_definitions: GomXsdListElements
12005
+ elementDefinitions: GomXsdListElements
11841
12006
  simple_type_definitions: GomXsdListSimpleTypes
12007
+ simpleTypeDefinitions: GomXsdListSimpleTypes
11842
12008
  complex_type_definitions: GomXsdListComplexTypes
12009
+ complexTypeDefinitions: GomXsdListComplexTypes
11843
12010
 
11844
12011
  // Own fields of GXml-0.18.GXml.GomXsdSchema
11845
12012
 
@@ -12320,6 +12487,8 @@ export module GomXsdTypeRestriction {
12320
12487
  simple_type?: GomXsdSimpleType | null
12321
12488
  enumerations?: GomXsdListTypeRestrictionEnumerations | null
12322
12489
  white_spaces?: GomXsdListTypeRestrictionWhiteSpaces | null
12490
+ simpleType?: GomXsdSimpleType | null
12491
+ whiteSpaces?: GomXsdListTypeRestrictionWhiteSpaces | null
12323
12492
  }
12324
12493
 
12325
12494
  }
@@ -12330,8 +12499,10 @@ export interface GomXsdTypeRestriction {
12330
12499
 
12331
12500
  base: string | null
12332
12501
  simple_type: GomXsdSimpleType
12502
+ simpleType: GomXsdSimpleType
12333
12503
  enumerations: GomXsdListTypeRestrictionEnumerations
12334
12504
  white_spaces: GomXsdListTypeRestrictionWhiteSpaces
12505
+ whiteSpaces: GomXsdListTypeRestrictionWhiteSpaces
12335
12506
 
12336
12507
  // Own fields of GXml-0.18.GXml.GomXsdTypeRestriction
12337
12508
 
@@ -13753,6 +13924,8 @@ export module GomXsdComplexType {
13753
13924
  name?: string | null
13754
13925
  default_attributes_apply?: boolean | null
13755
13926
  content_type?: GomXsdBaseContent | null
13927
+ defaultAttributesApply?: boolean | null
13928
+ contentType?: GomXsdBaseContent | null
13756
13929
  }
13757
13930
 
13758
13931
  }
@@ -13767,9 +13940,13 @@ export interface GomXsdComplexType {
13767
13940
  mixed: boolean
13768
13941
  name: string | null
13769
13942
  default_attributes_apply: boolean
13943
+ defaultAttributesApply: boolean
13770
13944
  content_type: GomXsdBaseContent
13945
+ contentType: GomXsdBaseContent
13771
13946
  readonly type_attributes: GomXsdList
13947
+ readonly typeAttributes: GomXsdList
13772
13948
  readonly group_attributes: GomXsdList
13949
+ readonly groupAttributes: GomXsdList
13773
13950
 
13774
13951
  // Own fields of GXml-0.18.GXml.GomXsdComplexType
13775
13952
 
@@ -14007,6 +14184,13 @@ export module GomXsdElement {
14007
14184
  anotation?: GomXsdAnnotation | null
14008
14185
  simple_type?: GomXsdSimpleType | null
14009
14186
  complex_type?: GomXsdComplexType | null
14187
+ maxOccurs?: string | null
14188
+ minOccurs?: string | null
14189
+ substitutionGroup?: DomTokenList | null
14190
+ targetNamespace?: string | null
14191
+ objectType?: string | null
14192
+ simpleType?: GomXsdSimpleType | null
14193
+ complexType?: GomXsdComplexType | null
14010
14194
  }
14011
14195
 
14012
14196
  }
@@ -14022,16 +14206,23 @@ export interface GomXsdElement {
14022
14206
  fixed: string | null
14023
14207
  form: string | null
14024
14208
  max_occurs: string | null
14209
+ maxOccurs: string | null
14025
14210
  min_occurs: string | null
14211
+ minOccurs: string | null
14026
14212
  name: string | null
14027
14213
  nillable: boolean
14028
14214
  // Has conflict: ref: string | null
14029
14215
  substitution_group: DomTokenList
14216
+ substitutionGroup: DomTokenList
14030
14217
  target_namespace: string | null
14218
+ targetNamespace: string | null
14031
14219
  object_type: string | null
14220
+ objectType: string | null
14032
14221
  anotation: GomXsdAnnotation
14033
14222
  simple_type: GomXsdSimpleType
14223
+ simpleType: GomXsdSimpleType
14034
14224
  complex_type: GomXsdComplexType
14225
+ complexType: GomXsdComplexType
14035
14226
 
14036
14227
  // Own fields of GXml-0.18.GXml.GomXsdElement
14037
14228
 
@@ -17146,6 +17337,7 @@ export interface GDomTokenList extends DomTokenList {
17146
17337
  // Conflicting properties
17147
17338
 
17148
17339
  read_only_view: any
17340
+ readOnlyView: any
17149
17341
 
17150
17342
  // Own fields of GXml-0.18.GXml.GDomTokenList
17151
17343
 
@@ -17326,6 +17518,7 @@ export interface GDomSettableTokenList extends DomSettableTokenList {
17326
17518
  // Conflicting properties
17327
17519
 
17328
17520
  read_only_view: any
17521
+ readOnlyView: any
17329
17522
 
17330
17523
  // Own fields of GXml-0.18.GXml.GDomSettableTokenList
17331
17524
 
@@ -17504,6 +17697,7 @@ export interface GDomHTMLCollection extends DomHTMLCollection {
17504
17697
  // Conflicting properties
17505
17698
 
17506
17699
  read_only_view: any
17700
+ readOnlyView: any
17507
17701
 
17508
17702
  // Own fields of GXml-0.18.GXml.GDomHTMLCollection
17509
17703
 
@@ -18200,6 +18394,7 @@ export interface GListChildren extends DomNodeList, DomHTMLCollection {
18200
18394
  // Conflicting properties
18201
18395
 
18202
18396
  read_only_view: any
18397
+ readOnlyView: any
18203
18398
 
18204
18399
  // Own fields of GXml-0.18.GXml.GListChildren
18205
18400
 
@@ -18389,6 +18584,7 @@ export interface GListNamespaces {
18389
18584
  // Conflicting properties
18390
18585
 
18391
18586
  read_only_view: any
18587
+ readOnlyView: any
18392
18588
 
18393
18589
  // Own fields of GXml-0.18.GXml.GListNamespaces
18394
18590
 
@@ -18587,10 +18783,12 @@ export interface GNode extends DomEventTarget, DomNode, Node {
18587
18783
 
18588
18784
  readonly attrs: Gee.Map
18589
18785
  readonly children_nodes: Gee.BidirList
18786
+ readonly childrenNodes: Gee.BidirList
18590
18787
  readonly namespaces: Gee.List
18591
18788
  readonly document: Document
18592
18789
  readonly parent: Node
18593
18790
  readonly type_node: NodeType
18791
+ readonly typeNode: NodeType
18594
18792
  readonly name: string | null
18595
18793
  value: string | null
18596
18794
 
@@ -19183,6 +19381,7 @@ export interface NodeList {
19183
19381
  // Conflicting properties
19184
19382
 
19185
19383
  read_only_view: any
19384
+ readOnlyView: any
19186
19385
 
19187
19386
  // Own fields of GXml-0.18.GXml.NodeList
19188
19387
 
@@ -19562,6 +19761,7 @@ export module SerializableArrayList {
19562
19761
  // Own constructor properties of GXml-0.18.GXml.SerializableArrayList
19563
19762
 
19564
19763
  ignored_serializable_properties?: GLib.HashTable | null
19764
+ ignoredSerializableProperties?: GLib.HashTable | null
19565
19765
  }
19566
19766
 
19567
19767
  }
@@ -19571,10 +19771,12 @@ export interface SerializableArrayList extends Serializable, SerializableCollect
19571
19771
  // Own properties of GXml-0.18.GXml.SerializableArrayList
19572
19772
 
19573
19773
  ignored_serializable_properties: GLib.HashTable
19774
+ ignoredSerializableProperties: GLib.HashTable
19574
19775
 
19575
19776
  // Conflicting properties
19576
19777
 
19577
19778
  read_only_view: any
19779
+ readOnlyView: any
19578
19780
 
19579
19781
  // Own fields of GXml-0.18.GXml.SerializableArrayList
19580
19782
 
@@ -19753,6 +19955,7 @@ export module SerializableDualKeyMap {
19753
19955
  // Own constructor properties of GXml-0.18.GXml.SerializableDualKeyMap
19754
19956
 
19755
19957
  ignored_serializable_properties?: GLib.HashTable | null
19958
+ ignoredSerializableProperties?: GLib.HashTable | null
19756
19959
  }
19757
19960
 
19758
19961
  }
@@ -19762,11 +19965,16 @@ export interface SerializableDualKeyMap extends Gee.Traversable, Serializable, S
19762
19965
  // Own properties of GXml-0.18.GXml.SerializableDualKeyMap
19763
19966
 
19764
19967
  readonly value_type: GObject.GType
19968
+ readonly valueType: GObject.GType
19765
19969
  readonly primary_key_type: GObject.GType
19970
+ readonly primaryKeyType: GObject.GType
19766
19971
  readonly secondary_key_type: GObject.GType
19972
+ readonly secondaryKeyType: GObject.GType
19767
19973
  readonly primary_keys: Gee.Collection
19974
+ readonly primaryKeys: Gee.Collection
19768
19975
  readonly size: number
19769
19976
  ignored_serializable_properties: GLib.HashTable
19977
+ ignoredSerializableProperties: GLib.HashTable
19770
19978
 
19771
19979
  // Own fields of GXml-0.18.GXml.SerializableDualKeyMap
19772
19980
 
@@ -19887,6 +20095,7 @@ export module SerializableHashMap {
19887
20095
  // Own constructor properties of GXml-0.18.GXml.SerializableHashMap
19888
20096
 
19889
20097
  ignored_serializable_properties?: GLib.HashTable | null
20098
+ ignoredSerializableProperties?: GLib.HashTable | null
19890
20099
  }
19891
20100
 
19892
20101
  }
@@ -19896,6 +20105,7 @@ export interface SerializableHashMap extends Serializable, SerializableCollectio
19896
20105
  // Own properties of GXml-0.18.GXml.SerializableHashMap
19897
20106
 
19898
20107
  ignored_serializable_properties: GLib.HashTable
20108
+ ignoredSerializableProperties: GLib.HashTable
19899
20109
 
19900
20110
  // Own fields of GXml-0.18.GXml.SerializableHashMap
19901
20111
 
@@ -20030,6 +20240,7 @@ export module SerializableTreeMap {
20030
20240
  // Own constructor properties of GXml-0.18.GXml.SerializableTreeMap
20031
20241
 
20032
20242
  ignored_serializable_properties?: GLib.HashTable | null
20243
+ ignoredSerializableProperties?: GLib.HashTable | null
20033
20244
  }
20034
20245
 
20035
20246
  }
@@ -20039,10 +20250,12 @@ export interface SerializableTreeMap extends Serializable, SerializableCollectio
20039
20250
  // Own properties of GXml-0.18.GXml.SerializableTreeMap
20040
20251
 
20041
20252
  ignored_serializable_properties: GLib.HashTable
20253
+ ignoredSerializableProperties: GLib.HashTable
20042
20254
 
20043
20255
  // Conflicting properties
20044
20256
 
20045
20257
  read_only_view: any
20258
+ readOnlyView: any
20046
20259
 
20047
20260
  // Own fields of GXml-0.18.GXml.SerializableTreeMap
20048
20261
 
@@ -20282,6 +20495,7 @@ export module SerializableObjectModel {
20282
20495
  // Own constructor properties of GXml-0.18.GXml.SerializableObjectModel
20283
20496
 
20284
20497
  ignored_serializable_properties?: GLib.HashTable | null
20498
+ ignoredSerializableProperties?: GLib.HashTable | null
20285
20499
  }
20286
20500
 
20287
20501
  }
@@ -20291,6 +20505,7 @@ export interface SerializableObjectModel extends Serializable {
20291
20505
  // Own properties of GXml-0.18.GXml.SerializableObjectModel
20292
20506
 
20293
20507
  ignored_serializable_properties: GLib.HashTable
20508
+ ignoredSerializableProperties: GLib.HashTable
20294
20509
 
20295
20510
  // Own fields of GXml-0.18.GXml.SerializableObjectModel
20296
20511
 
@@ -20910,10 +21125,12 @@ export interface TNode extends Node {
20910
21125
 
20911
21126
  readonly attrs: Gee.Map
20912
21127
  readonly children_nodes: Gee.BidirList
21128
+ readonly childrenNodes: Gee.BidirList
20913
21129
  readonly document: Document
20914
21130
  readonly name: string | null
20915
21131
  readonly namespaces: Gee.List
20916
21132
  readonly type_node: NodeType
21133
+ readonly typeNode: NodeType
20917
21134
  value: string | null
20918
21135
  readonly parent: Node
20919
21136
 
@@ -21016,6 +21233,7 @@ export interface TNodeTChildrenList {
21016
21233
  // Conflicting properties
21017
21234
 
21018
21235
  read_only_view: any
21236
+ readOnlyView: any
21019
21237
 
21020
21238
  // Own fields of GXml-0.18.GXml.TNodeTChildrenList
21021
21239