@girs/vda-1 1.0.0-3.2.7 → 1.0.0-3.2.8

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -5,7 +5,7 @@
5
5
  ![downloads/week](https://img.shields.io/npm/dw/@girs/vda-1)
6
6
 
7
7
 
8
- GJS TypeScript type definitions for Vda-1, generated from library version 1.0.0 using [ts-for-gir](https://github.com/gjsify/ts-for-gir) v3.2.7.
8
+ GJS TypeScript type definitions for Vda-1, generated from library version 1.0.0 using [ts-for-gir](https://github.com/gjsify/ts-for-gir) v3.2.8.
9
9
 
10
10
  Vala Data Access library, a set of interfaces to connect to databases and execute queries
11
11
 
package/package.json CHANGED
@@ -1,13 +1,19 @@
1
1
  {
2
2
  "name": "@girs/vda-1",
3
- "version": "1.0.0-3.2.7",
3
+ "version": "1.0.0-3.2.8",
4
4
  "description": "GJS TypeScript type definitions for Vda-1, generated from library version 1.0.0",
5
5
  "type": "module",
6
6
  "module": "vda-1.js",
7
7
  "main": "vda-1.js",
8
8
  "exports": {
9
- "./ambient": "./vda-1-ambient.d.ts",
10
- "./import": "./vda-1-import.d.ts",
9
+ "./ambient": {
10
+ "types": "./vda-1-ambient.d.ts",
11
+ "default": "./vda-1-ambient.js"
12
+ },
13
+ "./import": {
14
+ "types": "./vda-1-import.d.ts",
15
+ "default": "./vda-1-import.js"
16
+ },
11
17
  ".": {
12
18
  "import": {
13
19
  "types": "./vda-1.d.ts",
@@ -25,15 +31,15 @@
25
31
  "test:cjs": "NODE_OPTIONS=--max_old_space_size=9216 tsc --noEmit vda-1.d.cts"
26
32
  },
27
33
  "dependencies": {
28
- "@girs/gcalc-2": "^2.0.0-3.2.7",
29
- "@girs/gee-0.8": "^0.8.0-3.2.7",
30
- "@girs/gio-2.0": "^2.78.0-3.2.7",
31
- "@girs/gjs": "^3.2.7",
32
- "@girs/glib-2.0": "^2.78.0-3.2.7",
33
- "@girs/gobject-2.0": "^2.78.0-3.2.7",
34
- "@girs/gxml-0.20": "^0.20.0-3.2.7",
35
- "@girs/json-1.0": "^1.7.1-3.2.7",
36
- "@girs/libxml2-2.0": "^2.0.0-3.2.7"
34
+ "@girs/gcalc-2": "^2.0.0-3.2.8",
35
+ "@girs/gee-0.8": "^0.8.0-3.2.8",
36
+ "@girs/gio-2.0": "^2.77.0-3.2.8",
37
+ "@girs/gjs": "^3.2.8",
38
+ "@girs/glib-2.0": "^2.77.0-3.2.8",
39
+ "@girs/gobject-2.0": "^2.77.0-3.2.8",
40
+ "@girs/gxml-0.20": "^0.20.0-3.2.8",
41
+ "@girs/json-1.0": "^1.7.1-3.2.8",
42
+ "@girs/libxml2-2.0": "^2.0.0-3.2.8"
37
43
  },
38
44
  "devDependencies": {
39
45
  "typescript": "*"
@@ -50,7 +56,7 @@
50
56
  "license": "MIT",
51
57
  "repository": {
52
58
  "type": "git",
53
- "url": "git+https://github.com/gjsify/types.git"
59
+ "url": "git+https://github.com/gjsify/ts-for-gir.git"
54
60
  },
55
61
  "bugs": {
56
62
  "url": "https://github.com/gjsify/ts-for-gir/issues"
@@ -0,0 +1,2 @@
1
+ export {}
2
+
@@ -0,0 +1,3 @@
1
+ const gi = globalThis.imports?.gi || {};
2
+ export default gi;
3
+
package/vda-1.d.cts CHANGED
@@ -263,7 +263,6 @@ export interface ColumnModel extends GObject.Object {
263
263
  // Own properties of Vda-1.Vda.ColumnModel
264
264
 
265
265
  readonly name: string | null
266
- readonly data_type: GObject.GType
267
266
  readonly dataType: GObject.GType
268
267
 
269
268
  // Owm methods of Vda-1.Vda.ColumnModel
@@ -367,9 +366,7 @@ export interface Connection extends GObject.Object {
367
366
 
368
367
  readonly status: ConnectionStatus
369
368
  parameters: ConnectionParameters
370
- readonly is_opened: boolean
371
369
  readonly isOpened: boolean
372
- readonly connection_string: string | null
373
370
  readonly connectionString: string | null
374
371
 
375
372
  // Owm methods of Vda-1.Vda.Connection
@@ -608,11 +605,9 @@ export module DataObject {
608
605
 
609
606
  // Own constructor properties of Vda-1.Vda.DataObject
610
607
 
611
- database_connection?: Connection | null
612
- database_table_name?: string | null
613
- cancellable?: Gio.Cancellable | null
614
608
  databaseConnection?: Connection | null
615
609
  databaseTableName?: string | null
610
+ cancellable?: Gio.Cancellable | null
616
611
  }
617
612
 
618
613
  }
@@ -621,9 +616,7 @@ export interface DataObject extends GObject.Object {
621
616
 
622
617
  // Own properties of Vda-1.Vda.DataObject
623
618
 
624
- database_connection: Connection
625
619
  databaseConnection: Connection
626
- database_table_name: string | null
627
620
  databaseTableName: string | null
628
621
  cancellable: Gio.Cancellable
629
622
 
@@ -730,9 +723,8 @@ export module DataCollection {
730
723
 
731
724
  // Own constructor properties of Vda-1.Vda.DataCollection
732
725
 
733
- database_connection?: Connection | null
734
- cancellable?: Gio.Cancellable | null
735
726
  databaseConnection?: Connection | null
727
+ cancellable?: Gio.Cancellable | null
736
728
  }
737
729
 
738
730
  }
@@ -741,14 +733,10 @@ export interface DataCollection extends GObject.Object {
741
733
 
742
734
  // Own properties of Vda-1.Vda.DataCollection
743
735
 
744
- database_connection: Connection
745
736
  databaseConnection: Connection
746
- readonly parent_property: string | null
747
737
  readonly parentProperty: string | null
748
738
  readonly parent: DataObject
749
- readonly object_type: GObject.GType
750
739
  readonly objectType: GObject.GType
751
- readonly ref_field: string | null
752
740
  readonly refField: string | null
753
741
  cancellable: Gio.Cancellable
754
742
 
@@ -875,7 +863,6 @@ export interface Inserted extends GObject.Object, Result {
875
863
  // Own properties of Vda-1.Vda.Inserted
876
864
 
877
865
  readonly number: number
878
- readonly last_inserted: RowModel
879
866
  readonly lastInserted: RowModel
880
867
 
881
868
  // Owm methods of Vda-1.Vda.Inserted
@@ -1204,7 +1191,6 @@ export interface RowModel extends GObject.Object, Gio.ListModel {
1204
1191
 
1205
1192
  // Own properties of Vda-1.Vda.RowModel
1206
1193
 
1207
- readonly n_columns: number
1208
1194
  readonly nColumns: number
1209
1195
 
1210
1196
  // Owm methods of Vda-1.Vda.RowModel
@@ -1884,10 +1870,9 @@ export module SqlExpressionField {
1884
1870
 
1885
1871
  // Own constructor properties of Vda-1.Vda.SqlExpressionField
1886
1872
 
1887
- table_ref?: string | null
1873
+ tableRef?: string | null
1888
1874
  name?: string | null
1889
1875
  allias?: string | null
1890
- tableRef?: string | null
1891
1876
  }
1892
1877
 
1893
1878
  }
@@ -1896,7 +1881,6 @@ export interface SqlExpressionField extends GObject.Object, SqlExpression {
1896
1881
 
1897
1882
  // Own properties of Vda-1.Vda.SqlExpressionField
1898
1883
 
1899
- table_ref: string | null
1900
1884
  tableRef: string | null
1901
1885
  name: string | null
1902
1886
  allias: string | null
@@ -1962,7 +1946,6 @@ export interface SqlExpressionOperator extends GObject.Object, SqlExpression {
1962
1946
 
1963
1947
  // Own properties of Vda-1.Vda.SqlExpressionOperator
1964
1948
 
1965
- readonly operator_type: SqlExpressionOperatorType
1966
1949
  readonly operatorType: SqlExpressionOperatorType
1967
1950
 
1968
1951
  // Owm methods of Vda-1.Vda.SqlExpressionOperator
@@ -6426,7 +6409,6 @@ export interface Expression extends Gio.ListModel, SqlExpression {
6426
6409
 
6427
6410
  // Conflicting properties
6428
6411
 
6429
- read_only_view: any
6430
6412
  readOnlyView: any
6431
6413
 
6432
6414
  // Owm methods of Vda-1.Vda.Expression
@@ -6559,7 +6541,6 @@ export interface ExpressionField extends SqlExpressionField {
6559
6541
 
6560
6542
  // Conflicting properties
6561
6543
 
6562
- read_only_view: any
6563
6544
  readOnlyView: any
6564
6545
 
6565
6546
  // Conflicting methods
@@ -6694,7 +6675,6 @@ export interface ExpressionOperator extends SqlExpressionOperator {
6694
6675
 
6695
6676
  // Conflicting properties
6696
6677
 
6697
- read_only_view: any
6698
6678
  readOnlyView: any
6699
6679
 
6700
6680
  // Own fields of Vda-1.Vda.ExpressionOperator
@@ -6827,7 +6807,6 @@ export interface ExpressionOperatorGroup extends SqlExpressionOperatorGroup {
6827
6807
 
6828
6808
  // Conflicting properties
6829
6809
 
6830
- read_only_view: any
6831
6810
  readOnlyView: any
6832
6811
 
6833
6812
  // Conflicting methods
@@ -6957,7 +6936,6 @@ export interface ExpressionOperatorMultiterm extends SqlExpressionOperatorMultit
6957
6936
 
6958
6937
  // Conflicting properties
6959
6938
 
6960
- read_only_view: any
6961
6939
  readOnlyView: any
6962
6940
 
6963
6941
  // Own fields of Vda-1.Vda.ExpressionOperatorMultiterm
@@ -7091,7 +7069,6 @@ export interface ExpressionOperatorAnd extends SqlExpressionOperatorAnd {
7091
7069
 
7092
7070
  // Conflicting properties
7093
7071
 
7094
- read_only_view: any
7095
7072
  readOnlyView: any
7096
7073
 
7097
7074
  // Conflicting methods
@@ -7222,7 +7199,6 @@ export interface ExpressionOperatorOr extends SqlExpressionOperatorOr {
7222
7199
 
7223
7200
  // Conflicting properties
7224
7201
 
7225
- read_only_view: any
7226
7202
  readOnlyView: any
7227
7203
 
7228
7204
  // Conflicting methods
@@ -7353,7 +7329,6 @@ export interface ExpressionOperatorBinaryterm extends SqlExpressionOperatorBinar
7353
7329
 
7354
7330
  // Conflicting properties
7355
7331
 
7356
- read_only_view: any
7357
7332
  readOnlyView: any
7358
7333
 
7359
7334
  // Own fields of Vda-1.Vda.ExpressionOperatorBinaryterm
@@ -7487,7 +7462,6 @@ export interface ExpressionOperatorEq extends SqlExpressionOperatorEq {
7487
7462
 
7488
7463
  // Conflicting properties
7489
7464
 
7490
- read_only_view: any
7491
7465
  readOnlyView: any
7492
7466
 
7493
7467
  // Conflicting methods
@@ -7618,7 +7592,6 @@ export interface ExpressionOperatorNotEq extends SqlExpressionOperatorNotEq {
7618
7592
 
7619
7593
  // Conflicting properties
7620
7594
 
7621
- read_only_view: any
7622
7595
  readOnlyView: any
7623
7596
 
7624
7597
  // Conflicting methods
@@ -7749,7 +7722,6 @@ export interface ExpressionOperatorDiff extends SqlExpressionOperatorDiff {
7749
7722
 
7750
7723
  // Conflicting properties
7751
7724
 
7752
- read_only_view: any
7753
7725
  readOnlyView: any
7754
7726
 
7755
7727
  // Conflicting methods
@@ -7880,7 +7852,6 @@ export interface ExpressionOperatorGt extends SqlExpressionOperatorGt {
7880
7852
 
7881
7853
  // Conflicting properties
7882
7854
 
7883
- read_only_view: any
7884
7855
  readOnlyView: any
7885
7856
 
7886
7857
  // Conflicting methods
@@ -8011,7 +7982,6 @@ export interface ExpressionOperatorLt extends SqlExpressionOperatorLt {
8011
7982
 
8012
7983
  // Conflicting properties
8013
7984
 
8014
- read_only_view: any
8015
7985
  readOnlyView: any
8016
7986
 
8017
7987
  // Conflicting methods
@@ -8142,7 +8112,6 @@ export interface ExpressionOperatorGeq extends SqlExpressionOperatorGeq {
8142
8112
 
8143
8113
  // Conflicting properties
8144
8114
 
8145
- read_only_view: any
8146
8115
  readOnlyView: any
8147
8116
 
8148
8117
  // Conflicting methods
@@ -8273,7 +8242,6 @@ export interface ExpressionOperatorLeq extends SqlExpressionOperatorLeq {
8273
8242
 
8274
8243
  // Conflicting properties
8275
8244
 
8276
- read_only_view: any
8277
8245
  readOnlyView: any
8278
8246
 
8279
8247
  // Conflicting methods
@@ -8404,7 +8372,6 @@ export interface ExpressionOperatorRegexp extends SqlExpressionOperatorRegexp {
8404
8372
 
8405
8373
  // Conflicting properties
8406
8374
 
8407
- read_only_view: any
8408
8375
  readOnlyView: any
8409
8376
 
8410
8377
  // Conflicting methods
@@ -8535,7 +8502,6 @@ export interface ExpressionOperatorStar extends SqlExpressionOperatorStar {
8535
8502
 
8536
8503
  // Conflicting properties
8537
8504
 
8538
- read_only_view: any
8539
8505
  readOnlyView: any
8540
8506
 
8541
8507
  // Conflicting methods
@@ -8666,7 +8632,6 @@ export interface ExpressionOperatorDiv extends SqlExpressionOperatorDiv {
8666
8632
 
8667
8633
  // Conflicting properties
8668
8634
 
8669
- read_only_view: any
8670
8635
  readOnlyView: any
8671
8636
 
8672
8637
  // Conflicting methods
@@ -8797,7 +8762,6 @@ export interface ExpressionOperatorIn extends SqlExpressionOperatorIn {
8797
8762
 
8798
8763
  // Conflicting properties
8799
8764
 
8800
- read_only_view: any
8801
8765
  readOnlyView: any
8802
8766
 
8803
8767
  // Conflicting methods
@@ -8928,7 +8892,6 @@ export interface ExpressionOperatorNotIn extends SqlExpressionOperatorNotIn {
8928
8892
 
8929
8893
  // Conflicting properties
8930
8894
 
8931
- read_only_view: any
8932
8895
  readOnlyView: any
8933
8896
 
8934
8897
  // Conflicting methods
@@ -9059,7 +9022,6 @@ export interface ExpressionOperatorConcatenate extends SqlExpressionOperatorConc
9059
9022
 
9060
9023
  // Conflicting properties
9061
9024
 
9062
- read_only_view: any
9063
9025
  readOnlyView: any
9064
9026
 
9065
9027
  // Conflicting methods
@@ -9190,7 +9152,6 @@ export interface ExpressionOperatorSimilarTo extends SqlExpressionOperatorSimila
9190
9152
 
9191
9153
  // Conflicting properties
9192
9154
 
9193
- read_only_view: any
9194
9155
  readOnlyView: any
9195
9156
 
9196
9157
  // Conflicting methods
@@ -9321,7 +9282,6 @@ export interface ExpressionOperatorLike extends SqlExpressionOperatorLike {
9321
9282
 
9322
9283
  // Conflicting properties
9323
9284
 
9324
- read_only_view: any
9325
9285
  readOnlyView: any
9326
9286
 
9327
9287
  // Conflicting methods
@@ -9452,7 +9412,6 @@ export interface ExpressionOperatorNotLike extends SqlExpressionOperatorNotLike
9452
9412
 
9453
9413
  // Conflicting properties
9454
9414
 
9455
- read_only_view: any
9456
9415
  readOnlyView: any
9457
9416
 
9458
9417
  // Conflicting methods
@@ -9583,7 +9542,6 @@ export interface ExpressionOperatorIlike extends SqlExpressionOperatorIlike {
9583
9542
 
9584
9543
  // Conflicting properties
9585
9544
 
9586
- read_only_view: any
9587
9545
  readOnlyView: any
9588
9546
 
9589
9547
  // Conflicting methods
@@ -9714,7 +9672,6 @@ export interface ExpressionOperatorNotIlike extends SqlExpressionOperatorNotIlik
9714
9672
 
9715
9673
  // Conflicting properties
9716
9674
 
9717
- read_only_view: any
9718
9675
  readOnlyView: any
9719
9676
 
9720
9677
  // Conflicting methods
@@ -9845,7 +9802,6 @@ export interface ExpressionOperatorBinaryUnaryterm extends SqlExpressionOperator
9845
9802
 
9846
9803
  // Conflicting properties
9847
9804
 
9848
- read_only_view: any
9849
9805
  readOnlyView: any
9850
9806
 
9851
9807
  // Own fields of Vda-1.Vda.ExpressionOperatorBinaryUnaryterm
@@ -9979,7 +9935,6 @@ export interface ExpressionOperatorMinus extends SqlExpressionOperatorMinus {
9979
9935
 
9980
9936
  // Conflicting properties
9981
9937
 
9982
- read_only_view: any
9983
9938
  readOnlyView: any
9984
9939
 
9985
9940
  // Conflicting methods
@@ -10110,7 +10065,6 @@ export interface ExpressionOperatorPlus extends SqlExpressionOperatorPlus {
10110
10065
 
10111
10066
  // Conflicting properties
10112
10067
 
10113
- read_only_view: any
10114
10068
  readOnlyView: any
10115
10069
 
10116
10070
  // Conflicting methods
@@ -10241,7 +10195,6 @@ export interface ExpressionOperatorInitialUnaryterm extends SqlExpressionOperato
10241
10195
 
10242
10196
  // Conflicting properties
10243
10197
 
10244
- read_only_view: any
10245
10198
  readOnlyView: any
10246
10199
 
10247
10200
  // Own fields of Vda-1.Vda.ExpressionOperatorInitialUnaryterm
@@ -10375,7 +10328,6 @@ export interface ExpressionOperatorNot extends SqlExpressionOperatorNot {
10375
10328
 
10376
10329
  // Conflicting properties
10377
10330
 
10378
- read_only_view: any
10379
10331
  readOnlyView: any
10380
10332
 
10381
10333
  // Conflicting methods
@@ -10506,7 +10458,6 @@ export interface ExpressionOperatorFinalUnaryterm extends SqlExpressionOperatorF
10506
10458
 
10507
10459
  // Conflicting properties
10508
10460
 
10509
- read_only_view: any
10510
10461
  readOnlyView: any
10511
10462
 
10512
10463
  // Own fields of Vda-1.Vda.ExpressionOperatorFinalUnaryterm
@@ -10640,7 +10591,6 @@ export interface ExpressionOperatorIs extends SqlExpressionOperatorIs {
10640
10591
 
10641
10592
  // Conflicting properties
10642
10593
 
10643
- read_only_view: any
10644
10594
  readOnlyView: any
10645
10595
 
10646
10596
  // Conflicting methods
@@ -10771,7 +10721,6 @@ export interface ExpressionOperatorIsNot extends SqlExpressionOperatorIsNot {
10771
10721
 
10772
10722
  // Conflicting properties
10773
10723
 
10774
- read_only_view: any
10775
10724
  readOnlyView: any
10776
10725
 
10777
10726
  // Conflicting methods
@@ -10903,7 +10852,6 @@ export interface ExpressionOperatorIsNull extends SqlExpressionOperatorIsNull {
10903
10852
 
10904
10853
  // Conflicting properties
10905
10854
 
10906
- read_only_view: any
10907
10855
  readOnlyView: any
10908
10856
 
10909
10857
  // Conflicting methods
@@ -11035,7 +10983,6 @@ export interface ExpressionOperatorIsNotNull extends SqlExpressionOperatorIsNotN
11035
10983
 
11036
10984
  // Conflicting properties
11037
10985
 
11038
- read_only_view: any
11039
10986
  readOnlyView: any
11040
10987
 
11041
10988
  // Conflicting methods
@@ -11168,7 +11115,6 @@ export interface ExpressionOperatorIsTrue extends SqlExpressionOperatorIsTrue {
11168
11115
 
11169
11116
  // Conflicting properties
11170
11117
 
11171
- read_only_view: any
11172
11118
  readOnlyView: any
11173
11119
 
11174
11120
  // Conflicting methods
@@ -11300,7 +11246,6 @@ export interface ExpressionOperatorIsNotTrue extends SqlExpressionOperatorIsNotT
11300
11246
 
11301
11247
  // Conflicting properties
11302
11248
 
11303
- read_only_view: any
11304
11249
  readOnlyView: any
11305
11250
 
11306
11251
  // Conflicting methods
@@ -11433,7 +11378,6 @@ export interface ExpressionOperatorIsFalse extends SqlExpressionOperatorIsFalse
11433
11378
 
11434
11379
  // Conflicting properties
11435
11380
 
11436
- read_only_view: any
11437
11381
  readOnlyView: any
11438
11382
 
11439
11383
  // Conflicting methods
@@ -11565,7 +11509,6 @@ export interface ExpressionOperatorIsNotFalse extends SqlExpressionOperatorIsNot
11565
11509
 
11566
11510
  // Conflicting properties
11567
11511
 
11568
- read_only_view: any
11569
11512
  readOnlyView: any
11570
11513
 
11571
11514
  // Conflicting methods
@@ -11698,7 +11641,6 @@ export interface ExpressionOperatorIsNotUnknown extends SqlExpressionOperatorIsN
11698
11641
 
11699
11642
  // Conflicting properties
11700
11643
 
11701
- read_only_view: any
11702
11644
  readOnlyView: any
11703
11645
 
11704
11646
  // Conflicting methods
@@ -11831,7 +11773,6 @@ export interface ExpressionOperatorIsUnknown extends SqlExpressionOperatorIsUnkn
11831
11773
 
11832
11774
  // Conflicting properties
11833
11775
 
11834
- read_only_view: any
11835
11776
  readOnlyView: any
11836
11777
 
11837
11778
  // Conflicting methods
@@ -11963,7 +11904,6 @@ export interface ExpressionOperatorIsDistinct extends SqlExpressionOperatorIsDis
11963
11904
 
11964
11905
  // Conflicting properties
11965
11906
 
11966
- read_only_view: any
11967
11907
  readOnlyView: any
11968
11908
 
11969
11909
  // Conflicting methods
@@ -12094,7 +12034,6 @@ export interface ExpressionOperatorIsNotDistinct extends SqlExpressionOperatorIs
12094
12034
 
12095
12035
  // Conflicting properties
12096
12036
 
12097
- read_only_view: any
12098
12037
  readOnlyView: any
12099
12038
 
12100
12039
  // Conflicting methods
@@ -12226,7 +12165,6 @@ export interface ExpressionOperatorIsDistinctFrom extends SqlExpressionOperatorI
12226
12165
 
12227
12166
  // Conflicting properties
12228
12167
 
12229
- read_only_view: any
12230
12168
  readOnlyView: any
12231
12169
 
12232
12170
  // Conflicting methods
@@ -12358,7 +12296,6 @@ export interface ExpressionOperatorIsNotDistinctFrom extends SqlExpressionOperat
12358
12296
 
12359
12297
  // Conflicting properties
12360
12298
 
12361
- read_only_view: any
12362
12299
  readOnlyView: any
12363
12300
 
12364
12301
  // Conflicting methods
@@ -12491,7 +12428,6 @@ export interface ExpressionOperatorThreeterm extends SqlExpressionOperatorThreet
12491
12428
 
12492
12429
  // Conflicting properties
12493
12430
 
12494
- read_only_view: any
12495
12431
  readOnlyView: any
12496
12432
 
12497
12433
  // Own fields of Vda-1.Vda.ExpressionOperatorThreeterm
@@ -12626,7 +12562,6 @@ export interface ExpressionOperatorBetween extends SqlExpressionOperatorBetween
12626
12562
 
12627
12563
  // Conflicting properties
12628
12564
 
12629
- read_only_view: any
12630
12565
  readOnlyView: any
12631
12566
 
12632
12567
  // Conflicting methods
@@ -12757,7 +12692,6 @@ export interface ExpressionOperatorBetweenAnd extends SqlExpressionOperatorBetwe
12757
12692
 
12758
12693
  // Conflicting properties
12759
12694
 
12760
- read_only_view: any
12761
12695
  readOnlyView: any
12762
12696
 
12763
12697
  // Conflicting methods
@@ -12889,7 +12823,6 @@ export interface ExpressionOperatorNotBetween extends SqlExpressionOperatorNotBe
12889
12823
 
12890
12824
  // Conflicting properties
12891
12825
 
12892
- read_only_view: any
12893
12826
  readOnlyView: any
12894
12827
 
12895
12828
  // Conflicting methods
@@ -13021,7 +12954,6 @@ export interface ExpressionOperatorNotBetweenAnd extends SqlExpressionOperatorNo
13021
12954
 
13022
12955
  // Conflicting properties
13023
12956
 
13024
- read_only_view: any
13025
12957
  readOnlyView: any
13026
12958
 
13027
12959
  // Conflicting methods
@@ -13154,7 +13086,6 @@ export interface ExpressionOperatorBetweenSymmetric extends SqlExpressionOperato
13154
13086
 
13155
13087
  // Conflicting properties
13156
13088
 
13157
- read_only_view: any
13158
13089
  readOnlyView: any
13159
13090
 
13160
13091
  // Conflicting methods
@@ -13286,7 +13217,6 @@ export interface ExpressionOperatorBetweenSymmetricAnd extends SqlExpressionOper
13286
13217
 
13287
13218
  // Conflicting properties
13288
13219
 
13289
- read_only_view: any
13290
13220
  readOnlyView: any
13291
13221
 
13292
13222
  // Conflicting methods
@@ -13419,7 +13349,6 @@ export interface ExpressionOperatorNotBetweenSymmetric extends SqlExpressionOper
13419
13349
 
13420
13350
  // Conflicting properties
13421
13351
 
13422
- read_only_view: any
13423
13352
  readOnlyView: any
13424
13353
 
13425
13354
  // Conflicting methods
@@ -13552,7 +13481,6 @@ export interface ExpressionOperatorNotBetweenSymmetricAnd extends SqlExpressionO
13552
13481
 
13553
13482
  // Conflicting properties
13554
13483
 
13555
- read_only_view: any
13556
13484
  readOnlyView: any
13557
13485
 
13558
13486
  // Conflicting methods
@@ -13686,7 +13614,6 @@ export interface ExpressionValue extends SqlExpressionValue {
13686
13614
 
13687
13615
  // Conflicting properties
13688
13616
 
13689
- read_only_view: any
13690
13617
  readOnlyView: any
13691
13618
 
13692
13619
  // Conflicting methods
@@ -13818,7 +13745,6 @@ export interface ExpressionValueParameter extends SqlExpressionValueParameter {
13818
13745
 
13819
13746
  // Conflicting properties
13820
13747
 
13821
- read_only_view: any
13822
13748
  readOnlyView: any
13823
13749
 
13824
13750
  // Conflicting methods
@@ -13960,7 +13886,6 @@ export interface HashList extends Gio.ListModel, HashModel {
13960
13886
 
13961
13887
  // Conflicting properties
13962
13888
 
13963
- read_only_view: any
13964
13889
  readOnlyView: any
13965
13890
 
13966
13891
  // Conflicting methods
package/vda-1.d.ts CHANGED
@@ -265,7 +265,6 @@ interface ColumnModel extends GObject.Object {
265
265
  // Own properties of Vda-1.Vda.ColumnModel
266
266
 
267
267
  readonly name: string | null
268
- readonly data_type: GObject.GType
269
268
  readonly dataType: GObject.GType
270
269
 
271
270
  // Owm methods of Vda-1.Vda.ColumnModel
@@ -369,9 +368,7 @@ interface Connection extends GObject.Object {
369
368
 
370
369
  readonly status: ConnectionStatus
371
370
  parameters: ConnectionParameters
372
- readonly is_opened: boolean
373
371
  readonly isOpened: boolean
374
- readonly connection_string: string | null
375
372
  readonly connectionString: string | null
376
373
 
377
374
  // Owm methods of Vda-1.Vda.Connection
@@ -610,11 +607,9 @@ module DataObject {
610
607
 
611
608
  // Own constructor properties of Vda-1.Vda.DataObject
612
609
 
613
- database_connection?: Connection | null
614
- database_table_name?: string | null
615
- cancellable?: Gio.Cancellable | null
616
610
  databaseConnection?: Connection | null
617
611
  databaseTableName?: string | null
612
+ cancellable?: Gio.Cancellable | null
618
613
  }
619
614
 
620
615
  }
@@ -623,9 +618,7 @@ interface DataObject extends GObject.Object {
623
618
 
624
619
  // Own properties of Vda-1.Vda.DataObject
625
620
 
626
- database_connection: Connection
627
621
  databaseConnection: Connection
628
- database_table_name: string | null
629
622
  databaseTableName: string | null
630
623
  cancellable: Gio.Cancellable
631
624
 
@@ -732,9 +725,8 @@ module DataCollection {
732
725
 
733
726
  // Own constructor properties of Vda-1.Vda.DataCollection
734
727
 
735
- database_connection?: Connection | null
736
- cancellable?: Gio.Cancellable | null
737
728
  databaseConnection?: Connection | null
729
+ cancellable?: Gio.Cancellable | null
738
730
  }
739
731
 
740
732
  }
@@ -743,14 +735,10 @@ interface DataCollection extends GObject.Object {
743
735
 
744
736
  // Own properties of Vda-1.Vda.DataCollection
745
737
 
746
- database_connection: Connection
747
738
  databaseConnection: Connection
748
- readonly parent_property: string | null
749
739
  readonly parentProperty: string | null
750
740
  readonly parent: DataObject
751
- readonly object_type: GObject.GType
752
741
  readonly objectType: GObject.GType
753
- readonly ref_field: string | null
754
742
  readonly refField: string | null
755
743
  cancellable: Gio.Cancellable
756
744
 
@@ -877,7 +865,6 @@ interface Inserted extends GObject.Object, Result {
877
865
  // Own properties of Vda-1.Vda.Inserted
878
866
 
879
867
  readonly number: number
880
- readonly last_inserted: RowModel
881
868
  readonly lastInserted: RowModel
882
869
 
883
870
  // Owm methods of Vda-1.Vda.Inserted
@@ -1206,7 +1193,6 @@ interface RowModel extends GObject.Object, Gio.ListModel {
1206
1193
 
1207
1194
  // Own properties of Vda-1.Vda.RowModel
1208
1195
 
1209
- readonly n_columns: number
1210
1196
  readonly nColumns: number
1211
1197
 
1212
1198
  // Owm methods of Vda-1.Vda.RowModel
@@ -1886,10 +1872,9 @@ module SqlExpressionField {
1886
1872
 
1887
1873
  // Own constructor properties of Vda-1.Vda.SqlExpressionField
1888
1874
 
1889
- table_ref?: string | null
1875
+ tableRef?: string | null
1890
1876
  name?: string | null
1891
1877
  allias?: string | null
1892
- tableRef?: string | null
1893
1878
  }
1894
1879
 
1895
1880
  }
@@ -1898,7 +1883,6 @@ interface SqlExpressionField extends GObject.Object, SqlExpression {
1898
1883
 
1899
1884
  // Own properties of Vda-1.Vda.SqlExpressionField
1900
1885
 
1901
- table_ref: string | null
1902
1886
  tableRef: string | null
1903
1887
  name: string | null
1904
1888
  allias: string | null
@@ -1964,7 +1948,6 @@ interface SqlExpressionOperator extends GObject.Object, SqlExpression {
1964
1948
 
1965
1949
  // Own properties of Vda-1.Vda.SqlExpressionOperator
1966
1950
 
1967
- readonly operator_type: SqlExpressionOperatorType
1968
1951
  readonly operatorType: SqlExpressionOperatorType
1969
1952
 
1970
1953
  // Owm methods of Vda-1.Vda.SqlExpressionOperator
@@ -6428,7 +6411,6 @@ interface Expression extends Gio.ListModel, SqlExpression {
6428
6411
 
6429
6412
  // Conflicting properties
6430
6413
 
6431
- read_only_view: any
6432
6414
  readOnlyView: any
6433
6415
 
6434
6416
  // Owm methods of Vda-1.Vda.Expression
@@ -6561,7 +6543,6 @@ interface ExpressionField extends SqlExpressionField {
6561
6543
 
6562
6544
  // Conflicting properties
6563
6545
 
6564
- read_only_view: any
6565
6546
  readOnlyView: any
6566
6547
 
6567
6548
  // Conflicting methods
@@ -6696,7 +6677,6 @@ interface ExpressionOperator extends SqlExpressionOperator {
6696
6677
 
6697
6678
  // Conflicting properties
6698
6679
 
6699
- read_only_view: any
6700
6680
  readOnlyView: any
6701
6681
 
6702
6682
  // Own fields of Vda-1.Vda.ExpressionOperator
@@ -6829,7 +6809,6 @@ interface ExpressionOperatorGroup extends SqlExpressionOperatorGroup {
6829
6809
 
6830
6810
  // Conflicting properties
6831
6811
 
6832
- read_only_view: any
6833
6812
  readOnlyView: any
6834
6813
 
6835
6814
  // Conflicting methods
@@ -6959,7 +6938,6 @@ interface ExpressionOperatorMultiterm extends SqlExpressionOperatorMultiterm {
6959
6938
 
6960
6939
  // Conflicting properties
6961
6940
 
6962
- read_only_view: any
6963
6941
  readOnlyView: any
6964
6942
 
6965
6943
  // Own fields of Vda-1.Vda.ExpressionOperatorMultiterm
@@ -7093,7 +7071,6 @@ interface ExpressionOperatorAnd extends SqlExpressionOperatorAnd {
7093
7071
 
7094
7072
  // Conflicting properties
7095
7073
 
7096
- read_only_view: any
7097
7074
  readOnlyView: any
7098
7075
 
7099
7076
  // Conflicting methods
@@ -7224,7 +7201,6 @@ interface ExpressionOperatorOr extends SqlExpressionOperatorOr {
7224
7201
 
7225
7202
  // Conflicting properties
7226
7203
 
7227
- read_only_view: any
7228
7204
  readOnlyView: any
7229
7205
 
7230
7206
  // Conflicting methods
@@ -7355,7 +7331,6 @@ interface ExpressionOperatorBinaryterm extends SqlExpressionOperatorBinaryterm {
7355
7331
 
7356
7332
  // Conflicting properties
7357
7333
 
7358
- read_only_view: any
7359
7334
  readOnlyView: any
7360
7335
 
7361
7336
  // Own fields of Vda-1.Vda.ExpressionOperatorBinaryterm
@@ -7489,7 +7464,6 @@ interface ExpressionOperatorEq extends SqlExpressionOperatorEq {
7489
7464
 
7490
7465
  // Conflicting properties
7491
7466
 
7492
- read_only_view: any
7493
7467
  readOnlyView: any
7494
7468
 
7495
7469
  // Conflicting methods
@@ -7620,7 +7594,6 @@ interface ExpressionOperatorNotEq extends SqlExpressionOperatorNotEq {
7620
7594
 
7621
7595
  // Conflicting properties
7622
7596
 
7623
- read_only_view: any
7624
7597
  readOnlyView: any
7625
7598
 
7626
7599
  // Conflicting methods
@@ -7751,7 +7724,6 @@ interface ExpressionOperatorDiff extends SqlExpressionOperatorDiff {
7751
7724
 
7752
7725
  // Conflicting properties
7753
7726
 
7754
- read_only_view: any
7755
7727
  readOnlyView: any
7756
7728
 
7757
7729
  // Conflicting methods
@@ -7882,7 +7854,6 @@ interface ExpressionOperatorGt extends SqlExpressionOperatorGt {
7882
7854
 
7883
7855
  // Conflicting properties
7884
7856
 
7885
- read_only_view: any
7886
7857
  readOnlyView: any
7887
7858
 
7888
7859
  // Conflicting methods
@@ -8013,7 +7984,6 @@ interface ExpressionOperatorLt extends SqlExpressionOperatorLt {
8013
7984
 
8014
7985
  // Conflicting properties
8015
7986
 
8016
- read_only_view: any
8017
7987
  readOnlyView: any
8018
7988
 
8019
7989
  // Conflicting methods
@@ -8144,7 +8114,6 @@ interface ExpressionOperatorGeq extends SqlExpressionOperatorGeq {
8144
8114
 
8145
8115
  // Conflicting properties
8146
8116
 
8147
- read_only_view: any
8148
8117
  readOnlyView: any
8149
8118
 
8150
8119
  // Conflicting methods
@@ -8275,7 +8244,6 @@ interface ExpressionOperatorLeq extends SqlExpressionOperatorLeq {
8275
8244
 
8276
8245
  // Conflicting properties
8277
8246
 
8278
- read_only_view: any
8279
8247
  readOnlyView: any
8280
8248
 
8281
8249
  // Conflicting methods
@@ -8406,7 +8374,6 @@ interface ExpressionOperatorRegexp extends SqlExpressionOperatorRegexp {
8406
8374
 
8407
8375
  // Conflicting properties
8408
8376
 
8409
- read_only_view: any
8410
8377
  readOnlyView: any
8411
8378
 
8412
8379
  // Conflicting methods
@@ -8537,7 +8504,6 @@ interface ExpressionOperatorStar extends SqlExpressionOperatorStar {
8537
8504
 
8538
8505
  // Conflicting properties
8539
8506
 
8540
- read_only_view: any
8541
8507
  readOnlyView: any
8542
8508
 
8543
8509
  // Conflicting methods
@@ -8668,7 +8634,6 @@ interface ExpressionOperatorDiv extends SqlExpressionOperatorDiv {
8668
8634
 
8669
8635
  // Conflicting properties
8670
8636
 
8671
- read_only_view: any
8672
8637
  readOnlyView: any
8673
8638
 
8674
8639
  // Conflicting methods
@@ -8799,7 +8764,6 @@ interface ExpressionOperatorIn extends SqlExpressionOperatorIn {
8799
8764
 
8800
8765
  // Conflicting properties
8801
8766
 
8802
- read_only_view: any
8803
8767
  readOnlyView: any
8804
8768
 
8805
8769
  // Conflicting methods
@@ -8930,7 +8894,6 @@ interface ExpressionOperatorNotIn extends SqlExpressionOperatorNotIn {
8930
8894
 
8931
8895
  // Conflicting properties
8932
8896
 
8933
- read_only_view: any
8934
8897
  readOnlyView: any
8935
8898
 
8936
8899
  // Conflicting methods
@@ -9061,7 +9024,6 @@ interface ExpressionOperatorConcatenate extends SqlExpressionOperatorConcatenate
9061
9024
 
9062
9025
  // Conflicting properties
9063
9026
 
9064
- read_only_view: any
9065
9027
  readOnlyView: any
9066
9028
 
9067
9029
  // Conflicting methods
@@ -9192,7 +9154,6 @@ interface ExpressionOperatorSimilarTo extends SqlExpressionOperatorSimilarTo {
9192
9154
 
9193
9155
  // Conflicting properties
9194
9156
 
9195
- read_only_view: any
9196
9157
  readOnlyView: any
9197
9158
 
9198
9159
  // Conflicting methods
@@ -9323,7 +9284,6 @@ interface ExpressionOperatorLike extends SqlExpressionOperatorLike {
9323
9284
 
9324
9285
  // Conflicting properties
9325
9286
 
9326
- read_only_view: any
9327
9287
  readOnlyView: any
9328
9288
 
9329
9289
  // Conflicting methods
@@ -9454,7 +9414,6 @@ interface ExpressionOperatorNotLike extends SqlExpressionOperatorNotLike {
9454
9414
 
9455
9415
  // Conflicting properties
9456
9416
 
9457
- read_only_view: any
9458
9417
  readOnlyView: any
9459
9418
 
9460
9419
  // Conflicting methods
@@ -9585,7 +9544,6 @@ interface ExpressionOperatorIlike extends SqlExpressionOperatorIlike {
9585
9544
 
9586
9545
  // Conflicting properties
9587
9546
 
9588
- read_only_view: any
9589
9547
  readOnlyView: any
9590
9548
 
9591
9549
  // Conflicting methods
@@ -9716,7 +9674,6 @@ interface ExpressionOperatorNotIlike extends SqlExpressionOperatorNotIlike {
9716
9674
 
9717
9675
  // Conflicting properties
9718
9676
 
9719
- read_only_view: any
9720
9677
  readOnlyView: any
9721
9678
 
9722
9679
  // Conflicting methods
@@ -9847,7 +9804,6 @@ interface ExpressionOperatorBinaryUnaryterm extends SqlExpressionOperatorBinaryU
9847
9804
 
9848
9805
  // Conflicting properties
9849
9806
 
9850
- read_only_view: any
9851
9807
  readOnlyView: any
9852
9808
 
9853
9809
  // Own fields of Vda-1.Vda.ExpressionOperatorBinaryUnaryterm
@@ -9981,7 +9937,6 @@ interface ExpressionOperatorMinus extends SqlExpressionOperatorMinus {
9981
9937
 
9982
9938
  // Conflicting properties
9983
9939
 
9984
- read_only_view: any
9985
9940
  readOnlyView: any
9986
9941
 
9987
9942
  // Conflicting methods
@@ -10112,7 +10067,6 @@ interface ExpressionOperatorPlus extends SqlExpressionOperatorPlus {
10112
10067
 
10113
10068
  // Conflicting properties
10114
10069
 
10115
- read_only_view: any
10116
10070
  readOnlyView: any
10117
10071
 
10118
10072
  // Conflicting methods
@@ -10243,7 +10197,6 @@ interface ExpressionOperatorInitialUnaryterm extends SqlExpressionOperatorInitia
10243
10197
 
10244
10198
  // Conflicting properties
10245
10199
 
10246
- read_only_view: any
10247
10200
  readOnlyView: any
10248
10201
 
10249
10202
  // Own fields of Vda-1.Vda.ExpressionOperatorInitialUnaryterm
@@ -10377,7 +10330,6 @@ interface ExpressionOperatorNot extends SqlExpressionOperatorNot {
10377
10330
 
10378
10331
  // Conflicting properties
10379
10332
 
10380
- read_only_view: any
10381
10333
  readOnlyView: any
10382
10334
 
10383
10335
  // Conflicting methods
@@ -10508,7 +10460,6 @@ interface ExpressionOperatorFinalUnaryterm extends SqlExpressionOperatorFinalUna
10508
10460
 
10509
10461
  // Conflicting properties
10510
10462
 
10511
- read_only_view: any
10512
10463
  readOnlyView: any
10513
10464
 
10514
10465
  // Own fields of Vda-1.Vda.ExpressionOperatorFinalUnaryterm
@@ -10642,7 +10593,6 @@ interface ExpressionOperatorIs extends SqlExpressionOperatorIs {
10642
10593
 
10643
10594
  // Conflicting properties
10644
10595
 
10645
- read_only_view: any
10646
10596
  readOnlyView: any
10647
10597
 
10648
10598
  // Conflicting methods
@@ -10773,7 +10723,6 @@ interface ExpressionOperatorIsNot extends SqlExpressionOperatorIsNot {
10773
10723
 
10774
10724
  // Conflicting properties
10775
10725
 
10776
- read_only_view: any
10777
10726
  readOnlyView: any
10778
10727
 
10779
10728
  // Conflicting methods
@@ -10905,7 +10854,6 @@ interface ExpressionOperatorIsNull extends SqlExpressionOperatorIsNull {
10905
10854
 
10906
10855
  // Conflicting properties
10907
10856
 
10908
- read_only_view: any
10909
10857
  readOnlyView: any
10910
10858
 
10911
10859
  // Conflicting methods
@@ -11037,7 +10985,6 @@ interface ExpressionOperatorIsNotNull extends SqlExpressionOperatorIsNotNull {
11037
10985
 
11038
10986
  // Conflicting properties
11039
10987
 
11040
- read_only_view: any
11041
10988
  readOnlyView: any
11042
10989
 
11043
10990
  // Conflicting methods
@@ -11170,7 +11117,6 @@ interface ExpressionOperatorIsTrue extends SqlExpressionOperatorIsTrue {
11170
11117
 
11171
11118
  // Conflicting properties
11172
11119
 
11173
- read_only_view: any
11174
11120
  readOnlyView: any
11175
11121
 
11176
11122
  // Conflicting methods
@@ -11302,7 +11248,6 @@ interface ExpressionOperatorIsNotTrue extends SqlExpressionOperatorIsNotTrue {
11302
11248
 
11303
11249
  // Conflicting properties
11304
11250
 
11305
- read_only_view: any
11306
11251
  readOnlyView: any
11307
11252
 
11308
11253
  // Conflicting methods
@@ -11435,7 +11380,6 @@ interface ExpressionOperatorIsFalse extends SqlExpressionOperatorIsFalse {
11435
11380
 
11436
11381
  // Conflicting properties
11437
11382
 
11438
- read_only_view: any
11439
11383
  readOnlyView: any
11440
11384
 
11441
11385
  // Conflicting methods
@@ -11567,7 +11511,6 @@ interface ExpressionOperatorIsNotFalse extends SqlExpressionOperatorIsNotFalse {
11567
11511
 
11568
11512
  // Conflicting properties
11569
11513
 
11570
- read_only_view: any
11571
11514
  readOnlyView: any
11572
11515
 
11573
11516
  // Conflicting methods
@@ -11700,7 +11643,6 @@ interface ExpressionOperatorIsNotUnknown extends SqlExpressionOperatorIsNotUnkno
11700
11643
 
11701
11644
  // Conflicting properties
11702
11645
 
11703
- read_only_view: any
11704
11646
  readOnlyView: any
11705
11647
 
11706
11648
  // Conflicting methods
@@ -11833,7 +11775,6 @@ interface ExpressionOperatorIsUnknown extends SqlExpressionOperatorIsUnknown {
11833
11775
 
11834
11776
  // Conflicting properties
11835
11777
 
11836
- read_only_view: any
11837
11778
  readOnlyView: any
11838
11779
 
11839
11780
  // Conflicting methods
@@ -11965,7 +11906,6 @@ interface ExpressionOperatorIsDistinct extends SqlExpressionOperatorIsDistinct {
11965
11906
 
11966
11907
  // Conflicting properties
11967
11908
 
11968
- read_only_view: any
11969
11909
  readOnlyView: any
11970
11910
 
11971
11911
  // Conflicting methods
@@ -12096,7 +12036,6 @@ interface ExpressionOperatorIsNotDistinct extends SqlExpressionOperatorIsNotDist
12096
12036
 
12097
12037
  // Conflicting properties
12098
12038
 
12099
- read_only_view: any
12100
12039
  readOnlyView: any
12101
12040
 
12102
12041
  // Conflicting methods
@@ -12228,7 +12167,6 @@ interface ExpressionOperatorIsDistinctFrom extends SqlExpressionOperatorIsDistin
12228
12167
 
12229
12168
  // Conflicting properties
12230
12169
 
12231
- read_only_view: any
12232
12170
  readOnlyView: any
12233
12171
 
12234
12172
  // Conflicting methods
@@ -12360,7 +12298,6 @@ interface ExpressionOperatorIsNotDistinctFrom extends SqlExpressionOperatorIsNot
12360
12298
 
12361
12299
  // Conflicting properties
12362
12300
 
12363
- read_only_view: any
12364
12301
  readOnlyView: any
12365
12302
 
12366
12303
  // Conflicting methods
@@ -12493,7 +12430,6 @@ interface ExpressionOperatorThreeterm extends SqlExpressionOperatorThreeterm {
12493
12430
 
12494
12431
  // Conflicting properties
12495
12432
 
12496
- read_only_view: any
12497
12433
  readOnlyView: any
12498
12434
 
12499
12435
  // Own fields of Vda-1.Vda.ExpressionOperatorThreeterm
@@ -12628,7 +12564,6 @@ interface ExpressionOperatorBetween extends SqlExpressionOperatorBetween {
12628
12564
 
12629
12565
  // Conflicting properties
12630
12566
 
12631
- read_only_view: any
12632
12567
  readOnlyView: any
12633
12568
 
12634
12569
  // Conflicting methods
@@ -12759,7 +12694,6 @@ interface ExpressionOperatorBetweenAnd extends SqlExpressionOperatorBetweenAnd {
12759
12694
 
12760
12695
  // Conflicting properties
12761
12696
 
12762
- read_only_view: any
12763
12697
  readOnlyView: any
12764
12698
 
12765
12699
  // Conflicting methods
@@ -12891,7 +12825,6 @@ interface ExpressionOperatorNotBetween extends SqlExpressionOperatorNotBetween {
12891
12825
 
12892
12826
  // Conflicting properties
12893
12827
 
12894
- read_only_view: any
12895
12828
  readOnlyView: any
12896
12829
 
12897
12830
  // Conflicting methods
@@ -13023,7 +12956,6 @@ interface ExpressionOperatorNotBetweenAnd extends SqlExpressionOperatorNotBetwee
13023
12956
 
13024
12957
  // Conflicting properties
13025
12958
 
13026
- read_only_view: any
13027
12959
  readOnlyView: any
13028
12960
 
13029
12961
  // Conflicting methods
@@ -13156,7 +13088,6 @@ interface ExpressionOperatorBetweenSymmetric extends SqlExpressionOperatorBetwee
13156
13088
 
13157
13089
  // Conflicting properties
13158
13090
 
13159
- read_only_view: any
13160
13091
  readOnlyView: any
13161
13092
 
13162
13093
  // Conflicting methods
@@ -13288,7 +13219,6 @@ interface ExpressionOperatorBetweenSymmetricAnd extends SqlExpressionOperatorBet
13288
13219
 
13289
13220
  // Conflicting properties
13290
13221
 
13291
- read_only_view: any
13292
13222
  readOnlyView: any
13293
13223
 
13294
13224
  // Conflicting methods
@@ -13421,7 +13351,6 @@ interface ExpressionOperatorNotBetweenSymmetric extends SqlExpressionOperatorNot
13421
13351
 
13422
13352
  // Conflicting properties
13423
13353
 
13424
- read_only_view: any
13425
13354
  readOnlyView: any
13426
13355
 
13427
13356
  // Conflicting methods
@@ -13554,7 +13483,6 @@ interface ExpressionOperatorNotBetweenSymmetricAnd extends SqlExpressionOperator
13554
13483
 
13555
13484
  // Conflicting properties
13556
13485
 
13557
- read_only_view: any
13558
13486
  readOnlyView: any
13559
13487
 
13560
13488
  // Conflicting methods
@@ -13688,7 +13616,6 @@ interface ExpressionValue extends SqlExpressionValue {
13688
13616
 
13689
13617
  // Conflicting properties
13690
13618
 
13691
- read_only_view: any
13692
13619
  readOnlyView: any
13693
13620
 
13694
13621
  // Conflicting methods
@@ -13820,7 +13747,6 @@ interface ExpressionValueParameter extends SqlExpressionValueParameter {
13820
13747
 
13821
13748
  // Conflicting properties
13822
13749
 
13823
- read_only_view: any
13824
13750
  readOnlyView: any
13825
13751
 
13826
13752
  // Conflicting methods
@@ -13962,7 +13888,6 @@ interface HashList extends Gio.ListModel, HashModel {
13962
13888
 
13963
13889
  // Conflicting properties
13964
13890
 
13965
- read_only_view: any
13966
13891
  readOnlyView: any
13967
13892
 
13968
13893
  // Conflicting methods