@girs/vda-1 1.0.0-3.2.4 → 1.0.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/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.4.
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.6.
9
9
 
10
10
  Vala Data Access library, a set of interfaces to connect to databases and execute queries
11
11
 
@@ -82,6 +82,19 @@ Now you have also type support for this, too:
82
82
  const Vda = imports.gi.Vda;
83
83
  ```
84
84
 
85
+
86
+ ### ESM vs. CommonJS
87
+
88
+ GJS supports two different import syntaxes. The new modern ESM syntax and the old global imports syntax.
89
+
90
+ In TypeScript projects for GJS and GNOME Shell extensions, you have the flexibility to use `ESM` syntax and then decide the import syntax for your bundled file. If your bundler is configured to use `CommonJS`, it will convert to the GJS-specific global imports syntax, like `const moduleName = imports.gi[moduleName]`. This is different from the traditional `require` syntax seen in Node.js. The global imports syntax is chosen because it aligns with the CommonJS format supported by NPM, which is used for the generated type definitions and this package.
91
+
92
+ On the other hand, if you configure your bundler to use ESM, it will retain the ESM import syntax. It's crucial to ensure that your bundler is set up to correctly translate and bundle these imports into either CommonJS or ESM format, depending on your project's requirements.
93
+
94
+ This approach is particularly important due to the `@girs` types, which include both `*.cjs `files, using the GJS global imports syntax, and `*.js` files, which utilize the ESM syntax. By appropriately setting up your bundler, you can control which syntax—CommonJS or ESM—is used in your project. The choice of CommonJS in this context is also due to the similarity between the GJS-specific global imports and CommonJS syntax, allowing for easier management and bundling in these specific types of projects.
95
+
96
+ Since GNOME Shell 45, you should only use ESM, even for GNOME Shell extensions. Before that, extensions had to use the global import syntax, unlike normal GJS applications, where ESM has been available for some time.
97
+
85
98
  ### Bundle
86
99
 
87
100
  Depending on your project configuration, it is recommended to use a bundler like [esbuild](https://esbuild.github.io/). You can find examples using different bundlers [here](https://github.com/gjsify/ts-for-gir/tree/main/examples).
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@girs/vda-1",
3
- "version": "1.0.0-3.2.4",
3
+ "version": "1.0.0-3.2.6",
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",
@@ -25,15 +25,15 @@
25
25
  "test:cjs": "NODE_OPTIONS=--max_old_space_size=9216 tsc --noEmit vda-1.d.cts"
26
26
  },
27
27
  "dependencies": {
28
- "@girs/gcalc-2": "^2.0.0-3.2.4",
29
- "@girs/gee-0.8": "^0.8.0-3.2.4",
30
- "@girs/gio-2.0": "^2.78.0-3.2.4",
31
- "@girs/gjs": "^3.2.4",
32
- "@girs/glib-2.0": "^2.78.0-3.2.4",
33
- "@girs/gobject-2.0": "^2.78.0-3.2.4",
34
- "@girs/gxml-0.20": "^0.20.0-3.2.4",
35
- "@girs/json-1.0": "^1.7.1-3.2.4",
36
- "@girs/libxml2-2.0": "^2.0.0-3.2.4"
28
+ "@girs/gcalc-2": "^2.0.0-3.2.6",
29
+ "@girs/gee-0.8": "^0.8.0-3.2.6",
30
+ "@girs/gio-2.0": "^2.78.0-3.2.6",
31
+ "@girs/gjs": "^3.2.6",
32
+ "@girs/glib-2.0": "^2.78.0-3.2.6",
33
+ "@girs/gobject-2.0": "^2.78.0-3.2.6",
34
+ "@girs/gxml-0.20": "^0.20.0-3.2.6",
35
+ "@girs/json-1.0": "^1.7.1-3.2.6",
36
+ "@girs/libxml2-2.0": "^2.0.0-3.2.6"
37
37
  },
38
38
  "devDependencies": {
39
39
  "typescript": "*"
@@ -1,5 +1,4 @@
1
1
 
2
-
3
2
  declare module 'gi://Vda?version=1' {
4
3
  import Vda1 from '@girs/vda-1';
5
4
  export default Vda1;
package/vda-1-import.d.ts CHANGED
@@ -1,5 +1,4 @@
1
1
 
2
-
3
2
  import Vda1 from '@girs/vda-1';
4
3
 
5
4
  declare global {
package/vda-1.d.cts CHANGED
@@ -264,6 +264,7 @@ export interface ColumnModel extends GObject.Object {
264
264
 
265
265
  readonly name: string | null
266
266
  readonly data_type: GObject.GType
267
+ readonly dataType: GObject.GType
267
268
 
268
269
  // Owm methods of Vda-1.Vda.ColumnModel
269
270
 
@@ -367,7 +368,9 @@ export interface Connection extends GObject.Object {
367
368
  readonly status: ConnectionStatus
368
369
  parameters: ConnectionParameters
369
370
  readonly is_opened: boolean
371
+ readonly isOpened: boolean
370
372
  readonly connection_string: string | null
373
+ readonly connectionString: string | null
371
374
 
372
375
  // Owm methods of Vda-1.Vda.Connection
373
376
 
@@ -608,6 +611,8 @@ export module DataObject {
608
611
  database_connection?: Connection | null
609
612
  database_table_name?: string | null
610
613
  cancellable?: Gio.Cancellable | null
614
+ databaseConnection?: Connection | null
615
+ databaseTableName?: string | null
611
616
  }
612
617
 
613
618
  }
@@ -617,7 +622,9 @@ export interface DataObject extends GObject.Object {
617
622
  // Own properties of Vda-1.Vda.DataObject
618
623
 
619
624
  database_connection: Connection
625
+ databaseConnection: Connection
620
626
  database_table_name: string | null
627
+ databaseTableName: string | null
621
628
  cancellable: Gio.Cancellable
622
629
 
623
630
  // Owm methods of Vda-1.Vda.DataObject
@@ -725,6 +732,7 @@ export module DataCollection {
725
732
 
726
733
  database_connection?: Connection | null
727
734
  cancellable?: Gio.Cancellable | null
735
+ databaseConnection?: Connection | null
728
736
  }
729
737
 
730
738
  }
@@ -734,10 +742,14 @@ export interface DataCollection extends GObject.Object {
734
742
  // Own properties of Vda-1.Vda.DataCollection
735
743
 
736
744
  database_connection: Connection
745
+ databaseConnection: Connection
737
746
  readonly parent_property: string | null
747
+ readonly parentProperty: string | null
738
748
  readonly parent: DataObject
739
749
  readonly object_type: GObject.GType
750
+ readonly objectType: GObject.GType
740
751
  readonly ref_field: string | null
752
+ readonly refField: string | null
741
753
  cancellable: Gio.Cancellable
742
754
 
743
755
  // Owm methods of Vda-1.Vda.DataCollection
@@ -864,6 +876,7 @@ export interface Inserted extends GObject.Object, Result {
864
876
 
865
877
  readonly number: number
866
878
  readonly last_inserted: RowModel
879
+ readonly lastInserted: RowModel
867
880
 
868
881
  // Owm methods of Vda-1.Vda.Inserted
869
882
 
@@ -1192,6 +1205,7 @@ export interface RowModel extends GObject.Object, Gio.ListModel {
1192
1205
  // Own properties of Vda-1.Vda.RowModel
1193
1206
 
1194
1207
  readonly n_columns: number
1208
+ readonly nColumns: number
1195
1209
 
1196
1210
  // Owm methods of Vda-1.Vda.RowModel
1197
1211
 
@@ -1873,6 +1887,7 @@ export module SqlExpressionField {
1873
1887
  table_ref?: string | null
1874
1888
  name?: string | null
1875
1889
  allias?: string | null
1890
+ tableRef?: string | null
1876
1891
  }
1877
1892
 
1878
1893
  }
@@ -1882,6 +1897,7 @@ export interface SqlExpressionField extends GObject.Object, SqlExpression {
1882
1897
  // Own properties of Vda-1.Vda.SqlExpressionField
1883
1898
 
1884
1899
  table_ref: string | null
1900
+ tableRef: string | null
1885
1901
  name: string | null
1886
1902
  allias: string | null
1887
1903
 
@@ -1947,6 +1963,7 @@ export interface SqlExpressionOperator extends GObject.Object, SqlExpression {
1947
1963
  // Own properties of Vda-1.Vda.SqlExpressionOperator
1948
1964
 
1949
1965
  readonly operator_type: SqlExpressionOperatorType
1966
+ readonly operatorType: SqlExpressionOperatorType
1950
1967
 
1951
1968
  // Owm methods of Vda-1.Vda.SqlExpressionOperator
1952
1969
 
@@ -6410,6 +6427,7 @@ export interface Expression extends Gio.ListModel, SqlExpression {
6410
6427
  // Conflicting properties
6411
6428
 
6412
6429
  read_only_view: any
6430
+ readOnlyView: any
6413
6431
 
6414
6432
  // Owm methods of Vda-1.Vda.Expression
6415
6433
 
@@ -6542,6 +6560,7 @@ export interface ExpressionField extends SqlExpressionField {
6542
6560
  // Conflicting properties
6543
6561
 
6544
6562
  read_only_view: any
6563
+ readOnlyView: any
6545
6564
 
6546
6565
  // Conflicting methods
6547
6566
 
@@ -6676,6 +6695,7 @@ export interface ExpressionOperator extends SqlExpressionOperator {
6676
6695
  // Conflicting properties
6677
6696
 
6678
6697
  read_only_view: any
6698
+ readOnlyView: any
6679
6699
 
6680
6700
  // Own fields of Vda-1.Vda.ExpressionOperator
6681
6701
 
@@ -6808,6 +6828,7 @@ export interface ExpressionOperatorGroup extends SqlExpressionOperatorGroup {
6808
6828
  // Conflicting properties
6809
6829
 
6810
6830
  read_only_view: any
6831
+ readOnlyView: any
6811
6832
 
6812
6833
  // Conflicting methods
6813
6834
 
@@ -6937,6 +6958,7 @@ export interface ExpressionOperatorMultiterm extends SqlExpressionOperatorMultit
6937
6958
  // Conflicting properties
6938
6959
 
6939
6960
  read_only_view: any
6961
+ readOnlyView: any
6940
6962
 
6941
6963
  // Own fields of Vda-1.Vda.ExpressionOperatorMultiterm
6942
6964
 
@@ -7070,6 +7092,7 @@ export interface ExpressionOperatorAnd extends SqlExpressionOperatorAnd {
7070
7092
  // Conflicting properties
7071
7093
 
7072
7094
  read_only_view: any
7095
+ readOnlyView: any
7073
7096
 
7074
7097
  // Conflicting methods
7075
7098
 
@@ -7200,6 +7223,7 @@ export interface ExpressionOperatorOr extends SqlExpressionOperatorOr {
7200
7223
  // Conflicting properties
7201
7224
 
7202
7225
  read_only_view: any
7226
+ readOnlyView: any
7203
7227
 
7204
7228
  // Conflicting methods
7205
7229
 
@@ -7330,6 +7354,7 @@ export interface ExpressionOperatorBinaryterm extends SqlExpressionOperatorBinar
7330
7354
  // Conflicting properties
7331
7355
 
7332
7356
  read_only_view: any
7357
+ readOnlyView: any
7333
7358
 
7334
7359
  // Own fields of Vda-1.Vda.ExpressionOperatorBinaryterm
7335
7360
 
@@ -7463,6 +7488,7 @@ export interface ExpressionOperatorEq extends SqlExpressionOperatorEq {
7463
7488
  // Conflicting properties
7464
7489
 
7465
7490
  read_only_view: any
7491
+ readOnlyView: any
7466
7492
 
7467
7493
  // Conflicting methods
7468
7494
 
@@ -7593,6 +7619,7 @@ export interface ExpressionOperatorNotEq extends SqlExpressionOperatorNotEq {
7593
7619
  // Conflicting properties
7594
7620
 
7595
7621
  read_only_view: any
7622
+ readOnlyView: any
7596
7623
 
7597
7624
  // Conflicting methods
7598
7625
 
@@ -7723,6 +7750,7 @@ export interface ExpressionOperatorDiff extends SqlExpressionOperatorDiff {
7723
7750
  // Conflicting properties
7724
7751
 
7725
7752
  read_only_view: any
7753
+ readOnlyView: any
7726
7754
 
7727
7755
  // Conflicting methods
7728
7756
 
@@ -7853,6 +7881,7 @@ export interface ExpressionOperatorGt extends SqlExpressionOperatorGt {
7853
7881
  // Conflicting properties
7854
7882
 
7855
7883
  read_only_view: any
7884
+ readOnlyView: any
7856
7885
 
7857
7886
  // Conflicting methods
7858
7887
 
@@ -7983,6 +8012,7 @@ export interface ExpressionOperatorLt extends SqlExpressionOperatorLt {
7983
8012
  // Conflicting properties
7984
8013
 
7985
8014
  read_only_view: any
8015
+ readOnlyView: any
7986
8016
 
7987
8017
  // Conflicting methods
7988
8018
 
@@ -8113,6 +8143,7 @@ export interface ExpressionOperatorGeq extends SqlExpressionOperatorGeq {
8113
8143
  // Conflicting properties
8114
8144
 
8115
8145
  read_only_view: any
8146
+ readOnlyView: any
8116
8147
 
8117
8148
  // Conflicting methods
8118
8149
 
@@ -8243,6 +8274,7 @@ export interface ExpressionOperatorLeq extends SqlExpressionOperatorLeq {
8243
8274
  // Conflicting properties
8244
8275
 
8245
8276
  read_only_view: any
8277
+ readOnlyView: any
8246
8278
 
8247
8279
  // Conflicting methods
8248
8280
 
@@ -8373,6 +8405,7 @@ export interface ExpressionOperatorRegexp extends SqlExpressionOperatorRegexp {
8373
8405
  // Conflicting properties
8374
8406
 
8375
8407
  read_only_view: any
8408
+ readOnlyView: any
8376
8409
 
8377
8410
  // Conflicting methods
8378
8411
 
@@ -8503,6 +8536,7 @@ export interface ExpressionOperatorStar extends SqlExpressionOperatorStar {
8503
8536
  // Conflicting properties
8504
8537
 
8505
8538
  read_only_view: any
8539
+ readOnlyView: any
8506
8540
 
8507
8541
  // Conflicting methods
8508
8542
 
@@ -8633,6 +8667,7 @@ export interface ExpressionOperatorDiv extends SqlExpressionOperatorDiv {
8633
8667
  // Conflicting properties
8634
8668
 
8635
8669
  read_only_view: any
8670
+ readOnlyView: any
8636
8671
 
8637
8672
  // Conflicting methods
8638
8673
 
@@ -8763,6 +8798,7 @@ export interface ExpressionOperatorIn extends SqlExpressionOperatorIn {
8763
8798
  // Conflicting properties
8764
8799
 
8765
8800
  read_only_view: any
8801
+ readOnlyView: any
8766
8802
 
8767
8803
  // Conflicting methods
8768
8804
 
@@ -8893,6 +8929,7 @@ export interface ExpressionOperatorNotIn extends SqlExpressionOperatorNotIn {
8893
8929
  // Conflicting properties
8894
8930
 
8895
8931
  read_only_view: any
8932
+ readOnlyView: any
8896
8933
 
8897
8934
  // Conflicting methods
8898
8935
 
@@ -9023,6 +9060,7 @@ export interface ExpressionOperatorConcatenate extends SqlExpressionOperatorConc
9023
9060
  // Conflicting properties
9024
9061
 
9025
9062
  read_only_view: any
9063
+ readOnlyView: any
9026
9064
 
9027
9065
  // Conflicting methods
9028
9066
 
@@ -9153,6 +9191,7 @@ export interface ExpressionOperatorSimilarTo extends SqlExpressionOperatorSimila
9153
9191
  // Conflicting properties
9154
9192
 
9155
9193
  read_only_view: any
9194
+ readOnlyView: any
9156
9195
 
9157
9196
  // Conflicting methods
9158
9197
 
@@ -9283,6 +9322,7 @@ export interface ExpressionOperatorLike extends SqlExpressionOperatorLike {
9283
9322
  // Conflicting properties
9284
9323
 
9285
9324
  read_only_view: any
9325
+ readOnlyView: any
9286
9326
 
9287
9327
  // Conflicting methods
9288
9328
 
@@ -9413,6 +9453,7 @@ export interface ExpressionOperatorNotLike extends SqlExpressionOperatorNotLike
9413
9453
  // Conflicting properties
9414
9454
 
9415
9455
  read_only_view: any
9456
+ readOnlyView: any
9416
9457
 
9417
9458
  // Conflicting methods
9418
9459
 
@@ -9543,6 +9584,7 @@ export interface ExpressionOperatorIlike extends SqlExpressionOperatorIlike {
9543
9584
  // Conflicting properties
9544
9585
 
9545
9586
  read_only_view: any
9587
+ readOnlyView: any
9546
9588
 
9547
9589
  // Conflicting methods
9548
9590
 
@@ -9673,6 +9715,7 @@ export interface ExpressionOperatorNotIlike extends SqlExpressionOperatorNotIlik
9673
9715
  // Conflicting properties
9674
9716
 
9675
9717
  read_only_view: any
9718
+ readOnlyView: any
9676
9719
 
9677
9720
  // Conflicting methods
9678
9721
 
@@ -9803,6 +9846,7 @@ export interface ExpressionOperatorBinaryUnaryterm extends SqlExpressionOperator
9803
9846
  // Conflicting properties
9804
9847
 
9805
9848
  read_only_view: any
9849
+ readOnlyView: any
9806
9850
 
9807
9851
  // Own fields of Vda-1.Vda.ExpressionOperatorBinaryUnaryterm
9808
9852
 
@@ -9936,6 +9980,7 @@ export interface ExpressionOperatorMinus extends SqlExpressionOperatorMinus {
9936
9980
  // Conflicting properties
9937
9981
 
9938
9982
  read_only_view: any
9983
+ readOnlyView: any
9939
9984
 
9940
9985
  // Conflicting methods
9941
9986
 
@@ -10066,6 +10111,7 @@ export interface ExpressionOperatorPlus extends SqlExpressionOperatorPlus {
10066
10111
  // Conflicting properties
10067
10112
 
10068
10113
  read_only_view: any
10114
+ readOnlyView: any
10069
10115
 
10070
10116
  // Conflicting methods
10071
10117
 
@@ -10196,6 +10242,7 @@ export interface ExpressionOperatorInitialUnaryterm extends SqlExpressionOperato
10196
10242
  // Conflicting properties
10197
10243
 
10198
10244
  read_only_view: any
10245
+ readOnlyView: any
10199
10246
 
10200
10247
  // Own fields of Vda-1.Vda.ExpressionOperatorInitialUnaryterm
10201
10248
 
@@ -10329,6 +10376,7 @@ export interface ExpressionOperatorNot extends SqlExpressionOperatorNot {
10329
10376
  // Conflicting properties
10330
10377
 
10331
10378
  read_only_view: any
10379
+ readOnlyView: any
10332
10380
 
10333
10381
  // Conflicting methods
10334
10382
 
@@ -10459,6 +10507,7 @@ export interface ExpressionOperatorFinalUnaryterm extends SqlExpressionOperatorF
10459
10507
  // Conflicting properties
10460
10508
 
10461
10509
  read_only_view: any
10510
+ readOnlyView: any
10462
10511
 
10463
10512
  // Own fields of Vda-1.Vda.ExpressionOperatorFinalUnaryterm
10464
10513
 
@@ -10592,6 +10641,7 @@ export interface ExpressionOperatorIs extends SqlExpressionOperatorIs {
10592
10641
  // Conflicting properties
10593
10642
 
10594
10643
  read_only_view: any
10644
+ readOnlyView: any
10595
10645
 
10596
10646
  // Conflicting methods
10597
10647
 
@@ -10722,6 +10772,7 @@ export interface ExpressionOperatorIsNot extends SqlExpressionOperatorIsNot {
10722
10772
  // Conflicting properties
10723
10773
 
10724
10774
  read_only_view: any
10775
+ readOnlyView: any
10725
10776
 
10726
10777
  // Conflicting methods
10727
10778
 
@@ -10853,6 +10904,7 @@ export interface ExpressionOperatorIsNull extends SqlExpressionOperatorIsNull {
10853
10904
  // Conflicting properties
10854
10905
 
10855
10906
  read_only_view: any
10907
+ readOnlyView: any
10856
10908
 
10857
10909
  // Conflicting methods
10858
10910
 
@@ -10984,6 +11036,7 @@ export interface ExpressionOperatorIsNotNull extends SqlExpressionOperatorIsNotN
10984
11036
  // Conflicting properties
10985
11037
 
10986
11038
  read_only_view: any
11039
+ readOnlyView: any
10987
11040
 
10988
11041
  // Conflicting methods
10989
11042
 
@@ -11116,6 +11169,7 @@ export interface ExpressionOperatorIsTrue extends SqlExpressionOperatorIsTrue {
11116
11169
  // Conflicting properties
11117
11170
 
11118
11171
  read_only_view: any
11172
+ readOnlyView: any
11119
11173
 
11120
11174
  // Conflicting methods
11121
11175
 
@@ -11247,6 +11301,7 @@ export interface ExpressionOperatorIsNotTrue extends SqlExpressionOperatorIsNotT
11247
11301
  // Conflicting properties
11248
11302
 
11249
11303
  read_only_view: any
11304
+ readOnlyView: any
11250
11305
 
11251
11306
  // Conflicting methods
11252
11307
 
@@ -11379,6 +11434,7 @@ export interface ExpressionOperatorIsFalse extends SqlExpressionOperatorIsFalse
11379
11434
  // Conflicting properties
11380
11435
 
11381
11436
  read_only_view: any
11437
+ readOnlyView: any
11382
11438
 
11383
11439
  // Conflicting methods
11384
11440
 
@@ -11510,6 +11566,7 @@ export interface ExpressionOperatorIsNotFalse extends SqlExpressionOperatorIsNot
11510
11566
  // Conflicting properties
11511
11567
 
11512
11568
  read_only_view: any
11569
+ readOnlyView: any
11513
11570
 
11514
11571
  // Conflicting methods
11515
11572
 
@@ -11642,6 +11699,7 @@ export interface ExpressionOperatorIsNotUnknown extends SqlExpressionOperatorIsN
11642
11699
  // Conflicting properties
11643
11700
 
11644
11701
  read_only_view: any
11702
+ readOnlyView: any
11645
11703
 
11646
11704
  // Conflicting methods
11647
11705
 
@@ -11774,6 +11832,7 @@ export interface ExpressionOperatorIsUnknown extends SqlExpressionOperatorIsUnkn
11774
11832
  // Conflicting properties
11775
11833
 
11776
11834
  read_only_view: any
11835
+ readOnlyView: any
11777
11836
 
11778
11837
  // Conflicting methods
11779
11838
 
@@ -11905,6 +11964,7 @@ export interface ExpressionOperatorIsDistinct extends SqlExpressionOperatorIsDis
11905
11964
  // Conflicting properties
11906
11965
 
11907
11966
  read_only_view: any
11967
+ readOnlyView: any
11908
11968
 
11909
11969
  // Conflicting methods
11910
11970
 
@@ -12035,6 +12095,7 @@ export interface ExpressionOperatorIsNotDistinct extends SqlExpressionOperatorIs
12035
12095
  // Conflicting properties
12036
12096
 
12037
12097
  read_only_view: any
12098
+ readOnlyView: any
12038
12099
 
12039
12100
  // Conflicting methods
12040
12101
 
@@ -12166,6 +12227,7 @@ export interface ExpressionOperatorIsDistinctFrom extends SqlExpressionOperatorI
12166
12227
  // Conflicting properties
12167
12228
 
12168
12229
  read_only_view: any
12230
+ readOnlyView: any
12169
12231
 
12170
12232
  // Conflicting methods
12171
12233
 
@@ -12297,6 +12359,7 @@ export interface ExpressionOperatorIsNotDistinctFrom extends SqlExpressionOperat
12297
12359
  // Conflicting properties
12298
12360
 
12299
12361
  read_only_view: any
12362
+ readOnlyView: any
12300
12363
 
12301
12364
  // Conflicting methods
12302
12365
 
@@ -12429,6 +12492,7 @@ export interface ExpressionOperatorThreeterm extends SqlExpressionOperatorThreet
12429
12492
  // Conflicting properties
12430
12493
 
12431
12494
  read_only_view: any
12495
+ readOnlyView: any
12432
12496
 
12433
12497
  // Own fields of Vda-1.Vda.ExpressionOperatorThreeterm
12434
12498
 
@@ -12563,6 +12627,7 @@ export interface ExpressionOperatorBetween extends SqlExpressionOperatorBetween
12563
12627
  // Conflicting properties
12564
12628
 
12565
12629
  read_only_view: any
12630
+ readOnlyView: any
12566
12631
 
12567
12632
  // Conflicting methods
12568
12633
 
@@ -12693,6 +12758,7 @@ export interface ExpressionOperatorBetweenAnd extends SqlExpressionOperatorBetwe
12693
12758
  // Conflicting properties
12694
12759
 
12695
12760
  read_only_view: any
12761
+ readOnlyView: any
12696
12762
 
12697
12763
  // Conflicting methods
12698
12764
 
@@ -12824,6 +12890,7 @@ export interface ExpressionOperatorNotBetween extends SqlExpressionOperatorNotBe
12824
12890
  // Conflicting properties
12825
12891
 
12826
12892
  read_only_view: any
12893
+ readOnlyView: any
12827
12894
 
12828
12895
  // Conflicting methods
12829
12896
 
@@ -12955,6 +13022,7 @@ export interface ExpressionOperatorNotBetweenAnd extends SqlExpressionOperatorNo
12955
13022
  // Conflicting properties
12956
13023
 
12957
13024
  read_only_view: any
13025
+ readOnlyView: any
12958
13026
 
12959
13027
  // Conflicting methods
12960
13028
 
@@ -13087,6 +13155,7 @@ export interface ExpressionOperatorBetweenSymmetric extends SqlExpressionOperato
13087
13155
  // Conflicting properties
13088
13156
 
13089
13157
  read_only_view: any
13158
+ readOnlyView: any
13090
13159
 
13091
13160
  // Conflicting methods
13092
13161
 
@@ -13218,6 +13287,7 @@ export interface ExpressionOperatorBetweenSymmetricAnd extends SqlExpressionOper
13218
13287
  // Conflicting properties
13219
13288
 
13220
13289
  read_only_view: any
13290
+ readOnlyView: any
13221
13291
 
13222
13292
  // Conflicting methods
13223
13293
 
@@ -13350,6 +13420,7 @@ export interface ExpressionOperatorNotBetweenSymmetric extends SqlExpressionOper
13350
13420
  // Conflicting properties
13351
13421
 
13352
13422
  read_only_view: any
13423
+ readOnlyView: any
13353
13424
 
13354
13425
  // Conflicting methods
13355
13426
 
@@ -13482,6 +13553,7 @@ export interface ExpressionOperatorNotBetweenSymmetricAnd extends SqlExpressionO
13482
13553
  // Conflicting properties
13483
13554
 
13484
13555
  read_only_view: any
13556
+ readOnlyView: any
13485
13557
 
13486
13558
  // Conflicting methods
13487
13559
 
@@ -13615,6 +13687,7 @@ export interface ExpressionValue extends SqlExpressionValue {
13615
13687
  // Conflicting properties
13616
13688
 
13617
13689
  read_only_view: any
13690
+ readOnlyView: any
13618
13691
 
13619
13692
  // Conflicting methods
13620
13693
 
@@ -13746,6 +13819,7 @@ export interface ExpressionValueParameter extends SqlExpressionValueParameter {
13746
13819
  // Conflicting properties
13747
13820
 
13748
13821
  read_only_view: any
13822
+ readOnlyView: any
13749
13823
 
13750
13824
  // Conflicting methods
13751
13825
 
@@ -13887,6 +13961,7 @@ export interface HashList extends Gio.ListModel, HashModel {
13887
13961
  // Conflicting properties
13888
13962
 
13889
13963
  read_only_view: any
13964
+ readOnlyView: any
13890
13965
 
13891
13966
  // Conflicting methods
13892
13967
 
package/vda-1.d.ts CHANGED
@@ -266,6 +266,7 @@ interface ColumnModel extends GObject.Object {
266
266
 
267
267
  readonly name: string | null
268
268
  readonly data_type: GObject.GType
269
+ readonly dataType: GObject.GType
269
270
 
270
271
  // Owm methods of Vda-1.Vda.ColumnModel
271
272
 
@@ -369,7 +370,9 @@ interface Connection extends GObject.Object {
369
370
  readonly status: ConnectionStatus
370
371
  parameters: ConnectionParameters
371
372
  readonly is_opened: boolean
373
+ readonly isOpened: boolean
372
374
  readonly connection_string: string | null
375
+ readonly connectionString: string | null
373
376
 
374
377
  // Owm methods of Vda-1.Vda.Connection
375
378
 
@@ -610,6 +613,8 @@ module DataObject {
610
613
  database_connection?: Connection | null
611
614
  database_table_name?: string | null
612
615
  cancellable?: Gio.Cancellable | null
616
+ databaseConnection?: Connection | null
617
+ databaseTableName?: string | null
613
618
  }
614
619
 
615
620
  }
@@ -619,7 +624,9 @@ interface DataObject extends GObject.Object {
619
624
  // Own properties of Vda-1.Vda.DataObject
620
625
 
621
626
  database_connection: Connection
627
+ databaseConnection: Connection
622
628
  database_table_name: string | null
629
+ databaseTableName: string | null
623
630
  cancellable: Gio.Cancellable
624
631
 
625
632
  // Owm methods of Vda-1.Vda.DataObject
@@ -727,6 +734,7 @@ module DataCollection {
727
734
 
728
735
  database_connection?: Connection | null
729
736
  cancellable?: Gio.Cancellable | null
737
+ databaseConnection?: Connection | null
730
738
  }
731
739
 
732
740
  }
@@ -736,10 +744,14 @@ interface DataCollection extends GObject.Object {
736
744
  // Own properties of Vda-1.Vda.DataCollection
737
745
 
738
746
  database_connection: Connection
747
+ databaseConnection: Connection
739
748
  readonly parent_property: string | null
749
+ readonly parentProperty: string | null
740
750
  readonly parent: DataObject
741
751
  readonly object_type: GObject.GType
752
+ readonly objectType: GObject.GType
742
753
  readonly ref_field: string | null
754
+ readonly refField: string | null
743
755
  cancellable: Gio.Cancellable
744
756
 
745
757
  // Owm methods of Vda-1.Vda.DataCollection
@@ -866,6 +878,7 @@ interface Inserted extends GObject.Object, Result {
866
878
 
867
879
  readonly number: number
868
880
  readonly last_inserted: RowModel
881
+ readonly lastInserted: RowModel
869
882
 
870
883
  // Owm methods of Vda-1.Vda.Inserted
871
884
 
@@ -1194,6 +1207,7 @@ interface RowModel extends GObject.Object, Gio.ListModel {
1194
1207
  // Own properties of Vda-1.Vda.RowModel
1195
1208
 
1196
1209
  readonly n_columns: number
1210
+ readonly nColumns: number
1197
1211
 
1198
1212
  // Owm methods of Vda-1.Vda.RowModel
1199
1213
 
@@ -1875,6 +1889,7 @@ module SqlExpressionField {
1875
1889
  table_ref?: string | null
1876
1890
  name?: string | null
1877
1891
  allias?: string | null
1892
+ tableRef?: string | null
1878
1893
  }
1879
1894
 
1880
1895
  }
@@ -1884,6 +1899,7 @@ interface SqlExpressionField extends GObject.Object, SqlExpression {
1884
1899
  // Own properties of Vda-1.Vda.SqlExpressionField
1885
1900
 
1886
1901
  table_ref: string | null
1902
+ tableRef: string | null
1887
1903
  name: string | null
1888
1904
  allias: string | null
1889
1905
 
@@ -1949,6 +1965,7 @@ interface SqlExpressionOperator extends GObject.Object, SqlExpression {
1949
1965
  // Own properties of Vda-1.Vda.SqlExpressionOperator
1950
1966
 
1951
1967
  readonly operator_type: SqlExpressionOperatorType
1968
+ readonly operatorType: SqlExpressionOperatorType
1952
1969
 
1953
1970
  // Owm methods of Vda-1.Vda.SqlExpressionOperator
1954
1971
 
@@ -6412,6 +6429,7 @@ interface Expression extends Gio.ListModel, SqlExpression {
6412
6429
  // Conflicting properties
6413
6430
 
6414
6431
  read_only_view: any
6432
+ readOnlyView: any
6415
6433
 
6416
6434
  // Owm methods of Vda-1.Vda.Expression
6417
6435
 
@@ -6544,6 +6562,7 @@ interface ExpressionField extends SqlExpressionField {
6544
6562
  // Conflicting properties
6545
6563
 
6546
6564
  read_only_view: any
6565
+ readOnlyView: any
6547
6566
 
6548
6567
  // Conflicting methods
6549
6568
 
@@ -6678,6 +6697,7 @@ interface ExpressionOperator extends SqlExpressionOperator {
6678
6697
  // Conflicting properties
6679
6698
 
6680
6699
  read_only_view: any
6700
+ readOnlyView: any
6681
6701
 
6682
6702
  // Own fields of Vda-1.Vda.ExpressionOperator
6683
6703
 
@@ -6810,6 +6830,7 @@ interface ExpressionOperatorGroup extends SqlExpressionOperatorGroup {
6810
6830
  // Conflicting properties
6811
6831
 
6812
6832
  read_only_view: any
6833
+ readOnlyView: any
6813
6834
 
6814
6835
  // Conflicting methods
6815
6836
 
@@ -6939,6 +6960,7 @@ interface ExpressionOperatorMultiterm extends SqlExpressionOperatorMultiterm {
6939
6960
  // Conflicting properties
6940
6961
 
6941
6962
  read_only_view: any
6963
+ readOnlyView: any
6942
6964
 
6943
6965
  // Own fields of Vda-1.Vda.ExpressionOperatorMultiterm
6944
6966
 
@@ -7072,6 +7094,7 @@ interface ExpressionOperatorAnd extends SqlExpressionOperatorAnd {
7072
7094
  // Conflicting properties
7073
7095
 
7074
7096
  read_only_view: any
7097
+ readOnlyView: any
7075
7098
 
7076
7099
  // Conflicting methods
7077
7100
 
@@ -7202,6 +7225,7 @@ interface ExpressionOperatorOr extends SqlExpressionOperatorOr {
7202
7225
  // Conflicting properties
7203
7226
 
7204
7227
  read_only_view: any
7228
+ readOnlyView: any
7205
7229
 
7206
7230
  // Conflicting methods
7207
7231
 
@@ -7332,6 +7356,7 @@ interface ExpressionOperatorBinaryterm extends SqlExpressionOperatorBinaryterm {
7332
7356
  // Conflicting properties
7333
7357
 
7334
7358
  read_only_view: any
7359
+ readOnlyView: any
7335
7360
 
7336
7361
  // Own fields of Vda-1.Vda.ExpressionOperatorBinaryterm
7337
7362
 
@@ -7465,6 +7490,7 @@ interface ExpressionOperatorEq extends SqlExpressionOperatorEq {
7465
7490
  // Conflicting properties
7466
7491
 
7467
7492
  read_only_view: any
7493
+ readOnlyView: any
7468
7494
 
7469
7495
  // Conflicting methods
7470
7496
 
@@ -7595,6 +7621,7 @@ interface ExpressionOperatorNotEq extends SqlExpressionOperatorNotEq {
7595
7621
  // Conflicting properties
7596
7622
 
7597
7623
  read_only_view: any
7624
+ readOnlyView: any
7598
7625
 
7599
7626
  // Conflicting methods
7600
7627
 
@@ -7725,6 +7752,7 @@ interface ExpressionOperatorDiff extends SqlExpressionOperatorDiff {
7725
7752
  // Conflicting properties
7726
7753
 
7727
7754
  read_only_view: any
7755
+ readOnlyView: any
7728
7756
 
7729
7757
  // Conflicting methods
7730
7758
 
@@ -7855,6 +7883,7 @@ interface ExpressionOperatorGt extends SqlExpressionOperatorGt {
7855
7883
  // Conflicting properties
7856
7884
 
7857
7885
  read_only_view: any
7886
+ readOnlyView: any
7858
7887
 
7859
7888
  // Conflicting methods
7860
7889
 
@@ -7985,6 +8014,7 @@ interface ExpressionOperatorLt extends SqlExpressionOperatorLt {
7985
8014
  // Conflicting properties
7986
8015
 
7987
8016
  read_only_view: any
8017
+ readOnlyView: any
7988
8018
 
7989
8019
  // Conflicting methods
7990
8020
 
@@ -8115,6 +8145,7 @@ interface ExpressionOperatorGeq extends SqlExpressionOperatorGeq {
8115
8145
  // Conflicting properties
8116
8146
 
8117
8147
  read_only_view: any
8148
+ readOnlyView: any
8118
8149
 
8119
8150
  // Conflicting methods
8120
8151
 
@@ -8245,6 +8276,7 @@ interface ExpressionOperatorLeq extends SqlExpressionOperatorLeq {
8245
8276
  // Conflicting properties
8246
8277
 
8247
8278
  read_only_view: any
8279
+ readOnlyView: any
8248
8280
 
8249
8281
  // Conflicting methods
8250
8282
 
@@ -8375,6 +8407,7 @@ interface ExpressionOperatorRegexp extends SqlExpressionOperatorRegexp {
8375
8407
  // Conflicting properties
8376
8408
 
8377
8409
  read_only_view: any
8410
+ readOnlyView: any
8378
8411
 
8379
8412
  // Conflicting methods
8380
8413
 
@@ -8505,6 +8538,7 @@ interface ExpressionOperatorStar extends SqlExpressionOperatorStar {
8505
8538
  // Conflicting properties
8506
8539
 
8507
8540
  read_only_view: any
8541
+ readOnlyView: any
8508
8542
 
8509
8543
  // Conflicting methods
8510
8544
 
@@ -8635,6 +8669,7 @@ interface ExpressionOperatorDiv extends SqlExpressionOperatorDiv {
8635
8669
  // Conflicting properties
8636
8670
 
8637
8671
  read_only_view: any
8672
+ readOnlyView: any
8638
8673
 
8639
8674
  // Conflicting methods
8640
8675
 
@@ -8765,6 +8800,7 @@ interface ExpressionOperatorIn extends SqlExpressionOperatorIn {
8765
8800
  // Conflicting properties
8766
8801
 
8767
8802
  read_only_view: any
8803
+ readOnlyView: any
8768
8804
 
8769
8805
  // Conflicting methods
8770
8806
 
@@ -8895,6 +8931,7 @@ interface ExpressionOperatorNotIn extends SqlExpressionOperatorNotIn {
8895
8931
  // Conflicting properties
8896
8932
 
8897
8933
  read_only_view: any
8934
+ readOnlyView: any
8898
8935
 
8899
8936
  // Conflicting methods
8900
8937
 
@@ -9025,6 +9062,7 @@ interface ExpressionOperatorConcatenate extends SqlExpressionOperatorConcatenate
9025
9062
  // Conflicting properties
9026
9063
 
9027
9064
  read_only_view: any
9065
+ readOnlyView: any
9028
9066
 
9029
9067
  // Conflicting methods
9030
9068
 
@@ -9155,6 +9193,7 @@ interface ExpressionOperatorSimilarTo extends SqlExpressionOperatorSimilarTo {
9155
9193
  // Conflicting properties
9156
9194
 
9157
9195
  read_only_view: any
9196
+ readOnlyView: any
9158
9197
 
9159
9198
  // Conflicting methods
9160
9199
 
@@ -9285,6 +9324,7 @@ interface ExpressionOperatorLike extends SqlExpressionOperatorLike {
9285
9324
  // Conflicting properties
9286
9325
 
9287
9326
  read_only_view: any
9327
+ readOnlyView: any
9288
9328
 
9289
9329
  // Conflicting methods
9290
9330
 
@@ -9415,6 +9455,7 @@ interface ExpressionOperatorNotLike extends SqlExpressionOperatorNotLike {
9415
9455
  // Conflicting properties
9416
9456
 
9417
9457
  read_only_view: any
9458
+ readOnlyView: any
9418
9459
 
9419
9460
  // Conflicting methods
9420
9461
 
@@ -9545,6 +9586,7 @@ interface ExpressionOperatorIlike extends SqlExpressionOperatorIlike {
9545
9586
  // Conflicting properties
9546
9587
 
9547
9588
  read_only_view: any
9589
+ readOnlyView: any
9548
9590
 
9549
9591
  // Conflicting methods
9550
9592
 
@@ -9675,6 +9717,7 @@ interface ExpressionOperatorNotIlike extends SqlExpressionOperatorNotIlike {
9675
9717
  // Conflicting properties
9676
9718
 
9677
9719
  read_only_view: any
9720
+ readOnlyView: any
9678
9721
 
9679
9722
  // Conflicting methods
9680
9723
 
@@ -9805,6 +9848,7 @@ interface ExpressionOperatorBinaryUnaryterm extends SqlExpressionOperatorBinaryU
9805
9848
  // Conflicting properties
9806
9849
 
9807
9850
  read_only_view: any
9851
+ readOnlyView: any
9808
9852
 
9809
9853
  // Own fields of Vda-1.Vda.ExpressionOperatorBinaryUnaryterm
9810
9854
 
@@ -9938,6 +9982,7 @@ interface ExpressionOperatorMinus extends SqlExpressionOperatorMinus {
9938
9982
  // Conflicting properties
9939
9983
 
9940
9984
  read_only_view: any
9985
+ readOnlyView: any
9941
9986
 
9942
9987
  // Conflicting methods
9943
9988
 
@@ -10068,6 +10113,7 @@ interface ExpressionOperatorPlus extends SqlExpressionOperatorPlus {
10068
10113
  // Conflicting properties
10069
10114
 
10070
10115
  read_only_view: any
10116
+ readOnlyView: any
10071
10117
 
10072
10118
  // Conflicting methods
10073
10119
 
@@ -10198,6 +10244,7 @@ interface ExpressionOperatorInitialUnaryterm extends SqlExpressionOperatorInitia
10198
10244
  // Conflicting properties
10199
10245
 
10200
10246
  read_only_view: any
10247
+ readOnlyView: any
10201
10248
 
10202
10249
  // Own fields of Vda-1.Vda.ExpressionOperatorInitialUnaryterm
10203
10250
 
@@ -10331,6 +10378,7 @@ interface ExpressionOperatorNot extends SqlExpressionOperatorNot {
10331
10378
  // Conflicting properties
10332
10379
 
10333
10380
  read_only_view: any
10381
+ readOnlyView: any
10334
10382
 
10335
10383
  // Conflicting methods
10336
10384
 
@@ -10461,6 +10509,7 @@ interface ExpressionOperatorFinalUnaryterm extends SqlExpressionOperatorFinalUna
10461
10509
  // Conflicting properties
10462
10510
 
10463
10511
  read_only_view: any
10512
+ readOnlyView: any
10464
10513
 
10465
10514
  // Own fields of Vda-1.Vda.ExpressionOperatorFinalUnaryterm
10466
10515
 
@@ -10594,6 +10643,7 @@ interface ExpressionOperatorIs extends SqlExpressionOperatorIs {
10594
10643
  // Conflicting properties
10595
10644
 
10596
10645
  read_only_view: any
10646
+ readOnlyView: any
10597
10647
 
10598
10648
  // Conflicting methods
10599
10649
 
@@ -10724,6 +10774,7 @@ interface ExpressionOperatorIsNot extends SqlExpressionOperatorIsNot {
10724
10774
  // Conflicting properties
10725
10775
 
10726
10776
  read_only_view: any
10777
+ readOnlyView: any
10727
10778
 
10728
10779
  // Conflicting methods
10729
10780
 
@@ -10855,6 +10906,7 @@ interface ExpressionOperatorIsNull extends SqlExpressionOperatorIsNull {
10855
10906
  // Conflicting properties
10856
10907
 
10857
10908
  read_only_view: any
10909
+ readOnlyView: any
10858
10910
 
10859
10911
  // Conflicting methods
10860
10912
 
@@ -10986,6 +11038,7 @@ interface ExpressionOperatorIsNotNull extends SqlExpressionOperatorIsNotNull {
10986
11038
  // Conflicting properties
10987
11039
 
10988
11040
  read_only_view: any
11041
+ readOnlyView: any
10989
11042
 
10990
11043
  // Conflicting methods
10991
11044
 
@@ -11118,6 +11171,7 @@ interface ExpressionOperatorIsTrue extends SqlExpressionOperatorIsTrue {
11118
11171
  // Conflicting properties
11119
11172
 
11120
11173
  read_only_view: any
11174
+ readOnlyView: any
11121
11175
 
11122
11176
  // Conflicting methods
11123
11177
 
@@ -11249,6 +11303,7 @@ interface ExpressionOperatorIsNotTrue extends SqlExpressionOperatorIsNotTrue {
11249
11303
  // Conflicting properties
11250
11304
 
11251
11305
  read_only_view: any
11306
+ readOnlyView: any
11252
11307
 
11253
11308
  // Conflicting methods
11254
11309
 
@@ -11381,6 +11436,7 @@ interface ExpressionOperatorIsFalse extends SqlExpressionOperatorIsFalse {
11381
11436
  // Conflicting properties
11382
11437
 
11383
11438
  read_only_view: any
11439
+ readOnlyView: any
11384
11440
 
11385
11441
  // Conflicting methods
11386
11442
 
@@ -11512,6 +11568,7 @@ interface ExpressionOperatorIsNotFalse extends SqlExpressionOperatorIsNotFalse {
11512
11568
  // Conflicting properties
11513
11569
 
11514
11570
  read_only_view: any
11571
+ readOnlyView: any
11515
11572
 
11516
11573
  // Conflicting methods
11517
11574
 
@@ -11644,6 +11701,7 @@ interface ExpressionOperatorIsNotUnknown extends SqlExpressionOperatorIsNotUnkno
11644
11701
  // Conflicting properties
11645
11702
 
11646
11703
  read_only_view: any
11704
+ readOnlyView: any
11647
11705
 
11648
11706
  // Conflicting methods
11649
11707
 
@@ -11776,6 +11834,7 @@ interface ExpressionOperatorIsUnknown extends SqlExpressionOperatorIsUnknown {
11776
11834
  // Conflicting properties
11777
11835
 
11778
11836
  read_only_view: any
11837
+ readOnlyView: any
11779
11838
 
11780
11839
  // Conflicting methods
11781
11840
 
@@ -11907,6 +11966,7 @@ interface ExpressionOperatorIsDistinct extends SqlExpressionOperatorIsDistinct {
11907
11966
  // Conflicting properties
11908
11967
 
11909
11968
  read_only_view: any
11969
+ readOnlyView: any
11910
11970
 
11911
11971
  // Conflicting methods
11912
11972
 
@@ -12037,6 +12097,7 @@ interface ExpressionOperatorIsNotDistinct extends SqlExpressionOperatorIsNotDist
12037
12097
  // Conflicting properties
12038
12098
 
12039
12099
  read_only_view: any
12100
+ readOnlyView: any
12040
12101
 
12041
12102
  // Conflicting methods
12042
12103
 
@@ -12168,6 +12229,7 @@ interface ExpressionOperatorIsDistinctFrom extends SqlExpressionOperatorIsDistin
12168
12229
  // Conflicting properties
12169
12230
 
12170
12231
  read_only_view: any
12232
+ readOnlyView: any
12171
12233
 
12172
12234
  // Conflicting methods
12173
12235
 
@@ -12299,6 +12361,7 @@ interface ExpressionOperatorIsNotDistinctFrom extends SqlExpressionOperatorIsNot
12299
12361
  // Conflicting properties
12300
12362
 
12301
12363
  read_only_view: any
12364
+ readOnlyView: any
12302
12365
 
12303
12366
  // Conflicting methods
12304
12367
 
@@ -12431,6 +12494,7 @@ interface ExpressionOperatorThreeterm extends SqlExpressionOperatorThreeterm {
12431
12494
  // Conflicting properties
12432
12495
 
12433
12496
  read_only_view: any
12497
+ readOnlyView: any
12434
12498
 
12435
12499
  // Own fields of Vda-1.Vda.ExpressionOperatorThreeterm
12436
12500
 
@@ -12565,6 +12629,7 @@ interface ExpressionOperatorBetween extends SqlExpressionOperatorBetween {
12565
12629
  // Conflicting properties
12566
12630
 
12567
12631
  read_only_view: any
12632
+ readOnlyView: any
12568
12633
 
12569
12634
  // Conflicting methods
12570
12635
 
@@ -12695,6 +12760,7 @@ interface ExpressionOperatorBetweenAnd extends SqlExpressionOperatorBetweenAnd {
12695
12760
  // Conflicting properties
12696
12761
 
12697
12762
  read_only_view: any
12763
+ readOnlyView: any
12698
12764
 
12699
12765
  // Conflicting methods
12700
12766
 
@@ -12826,6 +12892,7 @@ interface ExpressionOperatorNotBetween extends SqlExpressionOperatorNotBetween {
12826
12892
  // Conflicting properties
12827
12893
 
12828
12894
  read_only_view: any
12895
+ readOnlyView: any
12829
12896
 
12830
12897
  // Conflicting methods
12831
12898
 
@@ -12957,6 +13024,7 @@ interface ExpressionOperatorNotBetweenAnd extends SqlExpressionOperatorNotBetwee
12957
13024
  // Conflicting properties
12958
13025
 
12959
13026
  read_only_view: any
13027
+ readOnlyView: any
12960
13028
 
12961
13029
  // Conflicting methods
12962
13030
 
@@ -13089,6 +13157,7 @@ interface ExpressionOperatorBetweenSymmetric extends SqlExpressionOperatorBetwee
13089
13157
  // Conflicting properties
13090
13158
 
13091
13159
  read_only_view: any
13160
+ readOnlyView: any
13092
13161
 
13093
13162
  // Conflicting methods
13094
13163
 
@@ -13220,6 +13289,7 @@ interface ExpressionOperatorBetweenSymmetricAnd extends SqlExpressionOperatorBet
13220
13289
  // Conflicting properties
13221
13290
 
13222
13291
  read_only_view: any
13292
+ readOnlyView: any
13223
13293
 
13224
13294
  // Conflicting methods
13225
13295
 
@@ -13352,6 +13422,7 @@ interface ExpressionOperatorNotBetweenSymmetric extends SqlExpressionOperatorNot
13352
13422
  // Conflicting properties
13353
13423
 
13354
13424
  read_only_view: any
13425
+ readOnlyView: any
13355
13426
 
13356
13427
  // Conflicting methods
13357
13428
 
@@ -13484,6 +13555,7 @@ interface ExpressionOperatorNotBetweenSymmetricAnd extends SqlExpressionOperator
13484
13555
  // Conflicting properties
13485
13556
 
13486
13557
  read_only_view: any
13558
+ readOnlyView: any
13487
13559
 
13488
13560
  // Conflicting methods
13489
13561
 
@@ -13617,6 +13689,7 @@ interface ExpressionValue extends SqlExpressionValue {
13617
13689
  // Conflicting properties
13618
13690
 
13619
13691
  read_only_view: any
13692
+ readOnlyView: any
13620
13693
 
13621
13694
  // Conflicting methods
13622
13695
 
@@ -13748,6 +13821,7 @@ interface ExpressionValueParameter extends SqlExpressionValueParameter {
13748
13821
  // Conflicting properties
13749
13822
 
13750
13823
  read_only_view: any
13824
+ readOnlyView: any
13751
13825
 
13752
13826
  // Conflicting methods
13753
13827
 
@@ -13889,6 +13963,7 @@ interface HashList extends Gio.ListModel, HashModel {
13889
13963
  // Conflicting properties
13890
13964
 
13891
13965
  read_only_view: any
13966
+ readOnlyView: any
13892
13967
 
13893
13968
  // Conflicting methods
13894
13969