@girs/unity-7.0 7.0.0-3.2.4 → 7.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 +14 -1
- package/package.json +7 -7
- package/unity-7.0-ambient.d.ts +4 -1
- package/unity-7.0-import.d.ts +0 -1
- package/unity-7.0.d.cts +151 -0
- package/unity-7.0.d.ts +151 -0
package/README.md
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|

|
|
6
6
|
|
|
7
7
|
|
|
8
|
-
GJS TypeScript type definitions for Unity-7.0, generated from library version 7.0.0 using [ts-for-gir](https://github.com/gjsify/ts-for-gir) v3.2.
|
|
8
|
+
GJS TypeScript type definitions for Unity-7.0, generated from library version 7.0.0 using [ts-for-gir](https://github.com/gjsify/ts-for-gir) v3.2.6.
|
|
9
9
|
|
|
10
10
|
|
|
11
11
|
## Install
|
|
@@ -81,6 +81,19 @@ Now you have also type support for this, too:
|
|
|
81
81
|
const Unity = imports.gi.Unity;
|
|
82
82
|
```
|
|
83
83
|
|
|
84
|
+
|
|
85
|
+
### ESM vs. CommonJS
|
|
86
|
+
|
|
87
|
+
GJS supports two different import syntaxes. The new modern ESM syntax and the old global imports syntax.
|
|
88
|
+
|
|
89
|
+
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.
|
|
90
|
+
|
|
91
|
+
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.
|
|
92
|
+
|
|
93
|
+
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.
|
|
94
|
+
|
|
95
|
+
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.
|
|
96
|
+
|
|
84
97
|
### Bundle
|
|
85
98
|
|
|
86
99
|
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/unity-7.0",
|
|
3
|
-
"version": "7.0.0-3.2.
|
|
3
|
+
"version": "7.0.0-3.2.6",
|
|
4
4
|
"description": "GJS TypeScript type definitions for Unity-7.0, generated from library version 7.0.0",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"module": "unity-7.0.js",
|
|
@@ -25,12 +25,12 @@
|
|
|
25
25
|
"test:cjs": "NODE_OPTIONS=--max_old_space_size=9216 tsc --noEmit unity-7.0.d.cts"
|
|
26
26
|
},
|
|
27
27
|
"dependencies": {
|
|
28
|
-
"@girs/dbusmenu-0.4": "^0.4.0-3.2.
|
|
29
|
-
"@girs/dee-1.0": "^1.0.0-3.2.
|
|
30
|
-
"@girs/gio-2.0": "^2.78.0-3.2.
|
|
31
|
-
"@girs/gjs": "^3.2.
|
|
32
|
-
"@girs/glib-2.0": "^2.78.0-3.2.
|
|
33
|
-
"@girs/gobject-2.0": "^2.78.0-3.2.
|
|
28
|
+
"@girs/dbusmenu-0.4": "^0.4.0-3.2.6",
|
|
29
|
+
"@girs/dee-1.0": "^1.0.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
34
|
},
|
|
35
35
|
"devDependencies": {
|
|
36
36
|
"typescript": "*"
|
package/unity-7.0-ambient.d.ts
CHANGED
package/unity-7.0-import.d.ts
CHANGED
package/unity-7.0.d.cts
CHANGED
|
@@ -243,6 +243,7 @@ export module AnnotatedIcon {
|
|
|
243
243
|
ribbon?: string | null
|
|
244
244
|
category?: CategoryType | null
|
|
245
245
|
size_hint?: IconSizeHint | null
|
|
246
|
+
sizeHint?: IconSizeHint | null
|
|
246
247
|
}
|
|
247
248
|
|
|
248
249
|
}
|
|
@@ -255,6 +256,7 @@ export interface AnnotatedIcon {
|
|
|
255
256
|
ribbon: string | null
|
|
256
257
|
category: CategoryType
|
|
257
258
|
size_hint: IconSizeHint
|
|
259
|
+
sizeHint: IconSizeHint
|
|
258
260
|
|
|
259
261
|
// Owm methods of Unity-7.0.Unity.AnnotatedIcon
|
|
260
262
|
|
|
@@ -318,7 +320,9 @@ export interface Inspector {
|
|
|
318
320
|
// Own properties of Unity-7.0.Unity.Inspector
|
|
319
321
|
|
|
320
322
|
readonly unity_running: boolean
|
|
323
|
+
readonly unityRunning: boolean
|
|
321
324
|
readonly unity_bus_name: string | null
|
|
325
|
+
readonly unityBusName: string | null
|
|
322
326
|
|
|
323
327
|
// Owm methods of Unity-7.0.Unity.Inspector
|
|
324
328
|
|
|
@@ -368,6 +372,9 @@ export module LauncherEntry {
|
|
|
368
372
|
progress_visible?: boolean | null
|
|
369
373
|
urgent?: boolean | null
|
|
370
374
|
quicklist?: Dbusmenu.Menuitem | null
|
|
375
|
+
appUri?: string | null
|
|
376
|
+
countVisible?: boolean | null
|
|
377
|
+
progressVisible?: boolean | null
|
|
371
378
|
}
|
|
372
379
|
|
|
373
380
|
}
|
|
@@ -377,10 +384,13 @@ export interface LauncherEntry extends Dee.Serializable {
|
|
|
377
384
|
// Own properties of Unity-7.0.Unity.LauncherEntry
|
|
378
385
|
|
|
379
386
|
app_uri: string | null
|
|
387
|
+
appUri: string | null
|
|
380
388
|
count: number
|
|
381
389
|
count_visible: boolean
|
|
390
|
+
countVisible: boolean
|
|
382
391
|
progress: number
|
|
383
392
|
progress_visible: boolean
|
|
393
|
+
progressVisible: boolean
|
|
384
394
|
urgent: boolean
|
|
385
395
|
quicklist: Dbusmenu.Menuitem
|
|
386
396
|
|
|
@@ -545,6 +555,8 @@ export module ProgressSourceProvider {
|
|
|
545
555
|
|
|
546
556
|
dbus_name?: string | null
|
|
547
557
|
dbus_path?: string | null
|
|
558
|
+
dbusName?: string | null
|
|
559
|
+
dbusPath?: string | null
|
|
548
560
|
}
|
|
549
561
|
|
|
550
562
|
}
|
|
@@ -554,7 +566,9 @@ export interface ProgressSourceProvider {
|
|
|
554
566
|
// Own properties of Unity-7.0.Unity.ProgressSourceProvider
|
|
555
567
|
|
|
556
568
|
readonly dbus_name: string | null
|
|
569
|
+
readonly dbusName: string | null
|
|
557
570
|
readonly dbus_path: string | null
|
|
571
|
+
readonly dbusPath: string | null
|
|
558
572
|
|
|
559
573
|
// Owm methods of Unity-7.0.Unity.ProgressSourceProvider
|
|
560
574
|
|
|
@@ -604,6 +618,10 @@ export module Category {
|
|
|
604
618
|
default_renderer?: CategoryRenderer | null
|
|
605
619
|
content_type?: CategoryContentType | null
|
|
606
620
|
renderer_hint?: string | null
|
|
621
|
+
iconHint?: Gio.Icon | null
|
|
622
|
+
defaultRenderer?: CategoryRenderer | null
|
|
623
|
+
contentType?: CategoryContentType | null
|
|
624
|
+
rendererHint?: string | null
|
|
607
625
|
}
|
|
608
626
|
|
|
609
627
|
}
|
|
@@ -615,9 +633,13 @@ export interface Category {
|
|
|
615
633
|
readonly id: string | null
|
|
616
634
|
readonly name: string | null
|
|
617
635
|
readonly icon_hint: Gio.Icon
|
|
636
|
+
readonly iconHint: Gio.Icon
|
|
618
637
|
readonly default_renderer: CategoryRenderer
|
|
638
|
+
readonly defaultRenderer: CategoryRenderer
|
|
619
639
|
content_type: CategoryContentType
|
|
640
|
+
contentType: CategoryContentType
|
|
620
641
|
renderer_hint: string | null
|
|
642
|
+
rendererHint: string | null
|
|
621
643
|
readonly renderer: string | null
|
|
622
644
|
|
|
623
645
|
// Owm methods of Unity-7.0.Unity.Category
|
|
@@ -702,6 +724,8 @@ export module Filter {
|
|
|
702
724
|
visible?: boolean | null
|
|
703
725
|
collapsed?: boolean | null
|
|
704
726
|
filtering?: boolean | null
|
|
727
|
+
displayName?: string | null
|
|
728
|
+
iconHint?: Gio.Icon | null
|
|
705
729
|
}
|
|
706
730
|
|
|
707
731
|
}
|
|
@@ -712,7 +736,9 @@ export interface Filter extends Dee.Serializable {
|
|
|
712
736
|
|
|
713
737
|
readonly id: string | null
|
|
714
738
|
display_name: string | null
|
|
739
|
+
displayName: string | null
|
|
715
740
|
readonly icon_hint: Gio.Icon
|
|
741
|
+
readonly iconHint: Gio.Icon
|
|
716
742
|
readonly renderer: FilterRenderer
|
|
717
743
|
visible: boolean
|
|
718
744
|
collapsed: boolean
|
|
@@ -789,6 +815,8 @@ export module FilterOption {
|
|
|
789
815
|
display_name?: string | null
|
|
790
816
|
icon_hint?: Gio.Icon | null
|
|
791
817
|
active?: boolean | null
|
|
818
|
+
displayName?: string | null
|
|
819
|
+
iconHint?: Gio.Icon | null
|
|
792
820
|
}
|
|
793
821
|
|
|
794
822
|
}
|
|
@@ -799,7 +827,9 @@ export interface FilterOption {
|
|
|
799
827
|
|
|
800
828
|
readonly id: string | null
|
|
801
829
|
readonly display_name: string | null
|
|
830
|
+
readonly displayName: string | null
|
|
802
831
|
readonly icon_hint: Gio.Icon
|
|
832
|
+
readonly iconHint: Gio.Icon
|
|
803
833
|
active: boolean
|
|
804
834
|
|
|
805
835
|
// Owm methods of Unity-7.0.Unity.FilterOption
|
|
@@ -855,6 +885,8 @@ export module OptionsFilter {
|
|
|
855
885
|
|
|
856
886
|
sort_type?: OptionsFilterSortType | null
|
|
857
887
|
show_all_button?: boolean | null
|
|
888
|
+
sortType?: OptionsFilterSortType | null
|
|
889
|
+
showAllButton?: boolean | null
|
|
858
890
|
}
|
|
859
891
|
|
|
860
892
|
}
|
|
@@ -864,7 +896,9 @@ export interface OptionsFilter {
|
|
|
864
896
|
// Own properties of Unity-7.0.Unity.OptionsFilter
|
|
865
897
|
|
|
866
898
|
sort_type: OptionsFilterSortType
|
|
899
|
+
sortType: OptionsFilterSortType
|
|
867
900
|
show_all_button: boolean
|
|
901
|
+
showAllButton: boolean
|
|
868
902
|
|
|
869
903
|
// Own fields of Unity-7.0.Unity.OptionsFilter
|
|
870
904
|
|
|
@@ -1282,6 +1316,11 @@ export module PreferencesManager {
|
|
|
1282
1316
|
home_lens_priority?: string[] | null
|
|
1283
1317
|
home_lens_default_view?: string[] | null
|
|
1284
1318
|
disabled_scopes?: string[] | null
|
|
1319
|
+
remoteContentSearch?: PreferencesManagerRemoteContent | null
|
|
1320
|
+
alwaysSearch?: string[] | null
|
|
1321
|
+
homeLensPriority?: string[] | null
|
|
1322
|
+
homeLensDefaultView?: string[] | null
|
|
1323
|
+
disabledScopes?: string[] | null
|
|
1285
1324
|
}
|
|
1286
1325
|
|
|
1287
1326
|
}
|
|
@@ -1291,10 +1330,15 @@ export interface PreferencesManager {
|
|
|
1291
1330
|
// Own properties of Unity-7.0.Unity.PreferencesManager
|
|
1292
1331
|
|
|
1293
1332
|
remote_content_search: PreferencesManagerRemoteContent
|
|
1333
|
+
remoteContentSearch: PreferencesManagerRemoteContent
|
|
1294
1334
|
always_search: string[]
|
|
1335
|
+
alwaysSearch: string[]
|
|
1295
1336
|
home_lens_priority: string[]
|
|
1337
|
+
homeLensPriority: string[]
|
|
1296
1338
|
home_lens_default_view: string[]
|
|
1339
|
+
homeLensDefaultView: string[]
|
|
1297
1340
|
disabled_scopes: string[]
|
|
1341
|
+
disabledScopes: string[]
|
|
1298
1342
|
|
|
1299
1343
|
// Owm methods of Unity-7.0.Unity.PreferencesManager
|
|
1300
1344
|
|
|
@@ -1368,6 +1412,8 @@ export module DeprecatedScopeSearch {
|
|
|
1368
1412
|
hints?: GLib.HashTable | null
|
|
1369
1413
|
results_model?: Dee.SerializableModel | null
|
|
1370
1414
|
owner?: DeprecatedScopeBase | null
|
|
1415
|
+
channelId?: string | null
|
|
1416
|
+
resultsModel?: Dee.SerializableModel | null
|
|
1371
1417
|
}
|
|
1372
1418
|
|
|
1373
1419
|
}
|
|
@@ -1377,10 +1423,14 @@ export interface DeprecatedScopeSearch {
|
|
|
1377
1423
|
// Own properties of Unity-7.0.Unity.DeprecatedScopeSearch
|
|
1378
1424
|
|
|
1379
1425
|
readonly channel_id: string | null
|
|
1426
|
+
readonly channelId: string | null
|
|
1380
1427
|
readonly search_string: string | null
|
|
1428
|
+
readonly searchString: string | null
|
|
1381
1429
|
readonly search_type: SearchType
|
|
1430
|
+
readonly searchType: SearchType
|
|
1382
1431
|
readonly hints: GLib.HashTable
|
|
1383
1432
|
readonly results_model: Dee.SerializableModel
|
|
1433
|
+
readonly resultsModel: Dee.SerializableModel
|
|
1384
1434
|
readonly owner: DeprecatedScopeBase
|
|
1385
1435
|
|
|
1386
1436
|
// Owm methods of Unity-7.0.Unity.DeprecatedScopeSearch
|
|
@@ -1539,6 +1589,8 @@ export module Preview {
|
|
|
1539
1589
|
description_markup?: string | null
|
|
1540
1590
|
image_source_uri?: string | null
|
|
1541
1591
|
image?: Gio.Icon | null
|
|
1592
|
+
descriptionMarkup?: string | null
|
|
1593
|
+
imageSourceUri?: string | null
|
|
1542
1594
|
}
|
|
1543
1595
|
|
|
1544
1596
|
}
|
|
@@ -1550,7 +1602,9 @@ export interface Preview extends Dee.Serializable {
|
|
|
1550
1602
|
title: string | null
|
|
1551
1603
|
subtitle: string | null
|
|
1552
1604
|
description_markup: string | null
|
|
1605
|
+
descriptionMarkup: string | null
|
|
1553
1606
|
image_source_uri: string | null
|
|
1607
|
+
imageSourceUri: string | null
|
|
1554
1608
|
image: Gio.Icon
|
|
1555
1609
|
|
|
1556
1610
|
// Owm methods of Unity-7.0.Unity.Preview
|
|
@@ -1627,6 +1681,10 @@ export module PreviewAction {
|
|
|
1627
1681
|
extra_text?: string | null
|
|
1628
1682
|
icon_hint?: Gio.Icon | null
|
|
1629
1683
|
layout_hint?: LayoutHint | null
|
|
1684
|
+
displayName?: string | null
|
|
1685
|
+
extraText?: string | null
|
|
1686
|
+
iconHint?: Gio.Icon | null
|
|
1687
|
+
layoutHint?: LayoutHint | null
|
|
1630
1688
|
}
|
|
1631
1689
|
|
|
1632
1690
|
}
|
|
@@ -1637,9 +1695,13 @@ export interface PreviewAction extends Dee.Serializable {
|
|
|
1637
1695
|
|
|
1638
1696
|
readonly id: string | null
|
|
1639
1697
|
readonly display_name: string | null
|
|
1698
|
+
readonly displayName: string | null
|
|
1640
1699
|
extra_text: string | null
|
|
1700
|
+
extraText: string | null
|
|
1641
1701
|
readonly icon_hint: Gio.Icon
|
|
1702
|
+
readonly iconHint: Gio.Icon
|
|
1642
1703
|
readonly layout_hint: LayoutHint
|
|
1704
|
+
readonly layoutHint: LayoutHint
|
|
1643
1705
|
readonly hints: GLib.HashTable
|
|
1644
1706
|
|
|
1645
1707
|
// Owm methods of Unity-7.0.Unity.PreviewAction
|
|
@@ -1713,6 +1775,8 @@ export module InfoHint {
|
|
|
1713
1775
|
display_name?: string | null
|
|
1714
1776
|
icon_hint?: Gio.Icon | null
|
|
1715
1777
|
data?: GLib.Variant | null
|
|
1778
|
+
displayName?: string | null
|
|
1779
|
+
iconHint?: Gio.Icon | null
|
|
1716
1780
|
}
|
|
1717
1781
|
|
|
1718
1782
|
}
|
|
@@ -1723,7 +1787,9 @@ export interface InfoHint {
|
|
|
1723
1787
|
|
|
1724
1788
|
readonly id: string | null
|
|
1725
1789
|
readonly display_name: string | null
|
|
1790
|
+
readonly displayName: string | null
|
|
1726
1791
|
readonly icon_hint: Gio.Icon
|
|
1792
|
+
readonly iconHint: Gio.Icon
|
|
1727
1793
|
readonly data: GLib.Variant
|
|
1728
1794
|
|
|
1729
1795
|
// Owm methods of Unity-7.0.Unity.InfoHint
|
|
@@ -1839,6 +1905,8 @@ export module ApplicationPreview {
|
|
|
1839
1905
|
license?: string | null
|
|
1840
1906
|
copyright?: string | null
|
|
1841
1907
|
last_update?: string | null
|
|
1908
|
+
appIcon?: Gio.Icon | null
|
|
1909
|
+
lastUpdate?: string | null
|
|
1842
1910
|
}
|
|
1843
1911
|
|
|
1844
1912
|
}
|
|
@@ -1848,9 +1916,11 @@ export interface ApplicationPreview {
|
|
|
1848
1916
|
// Own properties of Unity-7.0.Unity.ApplicationPreview
|
|
1849
1917
|
|
|
1850
1918
|
app_icon: Gio.Icon
|
|
1919
|
+
appIcon: Gio.Icon
|
|
1851
1920
|
license: string | null
|
|
1852
1921
|
copyright: string | null
|
|
1853
1922
|
last_update: string | null
|
|
1923
|
+
lastUpdate: string | null
|
|
1854
1924
|
|
|
1855
1925
|
// Owm methods of Unity-7.0.Unity.ApplicationPreview
|
|
1856
1926
|
|
|
@@ -1981,6 +2051,10 @@ export module PaymentPreview {
|
|
|
1981
2051
|
purchase_prize?: string | null
|
|
1982
2052
|
purchase_type?: string | null
|
|
1983
2053
|
preview_type?: PaymentPreviewType | null
|
|
2054
|
+
paymentMethod?: string | null
|
|
2055
|
+
purchasePrize?: string | null
|
|
2056
|
+
purchaseType?: string | null
|
|
2057
|
+
previewType?: PaymentPreviewType | null
|
|
1984
2058
|
}
|
|
1985
2059
|
|
|
1986
2060
|
}
|
|
@@ -1992,9 +2066,13 @@ export interface PaymentPreview {
|
|
|
1992
2066
|
header: string | null
|
|
1993
2067
|
email: string | null
|
|
1994
2068
|
payment_method: string | null
|
|
2069
|
+
paymentMethod: string | null
|
|
1995
2070
|
purchase_prize: string | null
|
|
2071
|
+
purchasePrize: string | null
|
|
1996
2072
|
purchase_type: string | null
|
|
2073
|
+
purchaseType: string | null
|
|
1997
2074
|
preview_type: PaymentPreviewType
|
|
2075
|
+
previewType: PaymentPreviewType
|
|
1998
2076
|
|
|
1999
2077
|
// Owm methods of Unity-7.0.Unity.PaymentPreview
|
|
2000
2078
|
|
|
@@ -2294,6 +2372,7 @@ export module ActivationResponse {
|
|
|
2294
2372
|
|
|
2295
2373
|
handled?: HandledType | null
|
|
2296
2374
|
goto_uri?: string | null
|
|
2375
|
+
gotoUri?: string | null
|
|
2297
2376
|
}
|
|
2298
2377
|
|
|
2299
2378
|
}
|
|
@@ -2304,6 +2383,7 @@ export interface ActivationResponse {
|
|
|
2304
2383
|
|
|
2305
2384
|
readonly handled: HandledType
|
|
2306
2385
|
goto_uri: string | null
|
|
2386
|
+
gotoUri: string | null
|
|
2307
2387
|
|
|
2308
2388
|
// Owm methods of Unity-7.0.Unity.ActivationResponse
|
|
2309
2389
|
|
|
@@ -2355,6 +2435,10 @@ export module AggregatorActivation {
|
|
|
2355
2435
|
action_type?: number | null
|
|
2356
2436
|
scope_result?: ScopeResult | null
|
|
2357
2437
|
hints?: GLib.HashTable | null
|
|
2438
|
+
channelId?: string | null
|
|
2439
|
+
scopeId?: string | null
|
|
2440
|
+
actionType?: number | null
|
|
2441
|
+
scopeResult?: ScopeResult | null
|
|
2358
2442
|
}
|
|
2359
2443
|
|
|
2360
2444
|
}
|
|
@@ -2364,9 +2448,13 @@ export interface AggregatorActivation {
|
|
|
2364
2448
|
// Own properties of Unity-7.0.Unity.AggregatorActivation
|
|
2365
2449
|
|
|
2366
2450
|
channel_id: string | null
|
|
2451
|
+
channelId: string | null
|
|
2367
2452
|
scope_id: string | null
|
|
2453
|
+
scopeId: string | null
|
|
2368
2454
|
action_type: number
|
|
2455
|
+
actionType: number
|
|
2369
2456
|
scope_result: ScopeResult
|
|
2457
|
+
scopeResult: ScopeResult
|
|
2370
2458
|
hints: GLib.HashTable
|
|
2371
2459
|
|
|
2372
2460
|
// Owm methods of Unity-7.0.Unity.AggregatorActivation
|
|
@@ -2799,6 +2887,7 @@ export interface SearchMetadata {
|
|
|
2799
2887
|
|
|
2800
2888
|
readonly locale: string | null
|
|
2801
2889
|
readonly form_factor: string | null
|
|
2890
|
+
readonly formFactor: string | null
|
|
2802
2891
|
readonly location: GeoCoordinate
|
|
2803
2892
|
|
|
2804
2893
|
// Owm methods of Unity-7.0.Unity.SearchMetadata
|
|
@@ -3042,6 +3131,10 @@ export module DeprecatedScopeBase {
|
|
|
3042
3131
|
categories?: CategorySet | null
|
|
3043
3132
|
filters?: FilterSet | null
|
|
3044
3133
|
schema?: Schema | null
|
|
3134
|
+
dbusPath?: string | null
|
|
3135
|
+
searchInGlobal?: boolean | null
|
|
3136
|
+
isMaster?: boolean | null
|
|
3137
|
+
searchHint?: string | null
|
|
3045
3138
|
}
|
|
3046
3139
|
|
|
3047
3140
|
}
|
|
@@ -3052,10 +3145,14 @@ export interface DeprecatedScopeBase {
|
|
|
3052
3145
|
|
|
3053
3146
|
readonly id: string | null
|
|
3054
3147
|
readonly dbus_path: string | null
|
|
3148
|
+
readonly dbusPath: string | null
|
|
3055
3149
|
search_in_global: boolean
|
|
3150
|
+
searchInGlobal: boolean
|
|
3056
3151
|
visible: boolean
|
|
3057
3152
|
readonly is_master: boolean
|
|
3153
|
+
readonly isMaster: boolean
|
|
3058
3154
|
search_hint: string | null
|
|
3155
|
+
searchHint: string | null
|
|
3059
3156
|
sources: OptionsFilter
|
|
3060
3157
|
categories: CategorySet
|
|
3061
3158
|
filters: FilterSet
|
|
@@ -3275,6 +3372,9 @@ export module AggregatorScope {
|
|
|
3275
3372
|
merge_mode?: AggregatorScopeMergeMode | null
|
|
3276
3373
|
proxy_filter_hints?: boolean | null
|
|
3277
3374
|
automatic_flushing?: boolean | null
|
|
3375
|
+
mergeMode?: AggregatorScopeMergeMode | null
|
|
3376
|
+
proxyFilterHints?: boolean | null
|
|
3377
|
+
automaticFlushing?: boolean | null
|
|
3278
3378
|
}
|
|
3279
3379
|
|
|
3280
3380
|
}
|
|
@@ -3284,8 +3384,11 @@ export interface AggregatorScope {
|
|
|
3284
3384
|
// Own properties of Unity-7.0.Unity.AggregatorScope
|
|
3285
3385
|
|
|
3286
3386
|
merge_mode: AggregatorScopeMergeMode
|
|
3387
|
+
mergeMode: AggregatorScopeMergeMode
|
|
3287
3388
|
proxy_filter_hints: boolean
|
|
3389
|
+
proxyFilterHints: boolean
|
|
3288
3390
|
automatic_flushing: boolean
|
|
3391
|
+
automaticFlushing: boolean
|
|
3289
3392
|
|
|
3290
3393
|
// Owm methods of Unity-7.0.Unity.AggregatorScope
|
|
3291
3394
|
|
|
@@ -3380,6 +3483,7 @@ export module MasterScope {
|
|
|
3380
3483
|
// Own constructor properties of Unity-7.0.Unity.MasterScope
|
|
3381
3484
|
|
|
3382
3485
|
no_content_hint?: string | null
|
|
3486
|
+
noContentHint?: string | null
|
|
3383
3487
|
}
|
|
3384
3488
|
|
|
3385
3489
|
}
|
|
@@ -3389,6 +3493,7 @@ export interface MasterScope {
|
|
|
3389
3493
|
// Own properties of Unity-7.0.Unity.MasterScope
|
|
3390
3494
|
|
|
3391
3495
|
no_content_hint: string | null
|
|
3496
|
+
noContentHint: string | null
|
|
3392
3497
|
|
|
3393
3498
|
// Owm methods of Unity-7.0.Unity.MasterScope
|
|
3394
3499
|
|
|
@@ -3474,6 +3579,11 @@ export module SimpleScope {
|
|
|
3474
3579
|
search_hint?: string | null
|
|
3475
3580
|
group_name?: string | null
|
|
3476
3581
|
unique_name?: string | null
|
|
3582
|
+
filterSet?: FilterSet | null
|
|
3583
|
+
categorySet?: CategorySet | null
|
|
3584
|
+
searchHint?: string | null
|
|
3585
|
+
groupName?: string | null
|
|
3586
|
+
uniqueName?: string | null
|
|
3477
3587
|
}
|
|
3478
3588
|
|
|
3479
3589
|
}
|
|
@@ -3483,11 +3593,16 @@ export interface SimpleScope {
|
|
|
3483
3593
|
// Own properties of Unity-7.0.Unity.SimpleScope
|
|
3484
3594
|
|
|
3485
3595
|
filter_set: FilterSet
|
|
3596
|
+
filterSet: FilterSet
|
|
3486
3597
|
category_set: CategorySet
|
|
3598
|
+
categorySet: CategorySet
|
|
3487
3599
|
schema: Schema
|
|
3488
3600
|
search_hint: string | null
|
|
3601
|
+
searchHint: string | null
|
|
3489
3602
|
group_name: string | null
|
|
3603
|
+
groupName: string | null
|
|
3490
3604
|
unique_name: string | null
|
|
3605
|
+
uniqueName: string | null
|
|
3491
3606
|
|
|
3492
3607
|
// Owm methods of Unity-7.0.Unity.SimpleScope
|
|
3493
3608
|
|
|
@@ -3613,6 +3728,9 @@ export module TrackMetadata {
|
|
|
3613
3728
|
length?: number | null
|
|
3614
3729
|
art_location?: Gio.File | null
|
|
3615
3730
|
art_icon?: Gio.Icon | null
|
|
3731
|
+
trackNo?: number | null
|
|
3732
|
+
artLocation?: Gio.File | null
|
|
3733
|
+
artIcon?: Gio.Icon | null
|
|
3616
3734
|
}
|
|
3617
3735
|
|
|
3618
3736
|
}
|
|
@@ -3623,12 +3741,15 @@ export interface TrackMetadata {
|
|
|
3623
3741
|
|
|
3624
3742
|
uri: string | null
|
|
3625
3743
|
track_no: number
|
|
3744
|
+
trackNo: number
|
|
3626
3745
|
artist: string | null
|
|
3627
3746
|
title: string | null
|
|
3628
3747
|
album: string | null
|
|
3629
3748
|
length: number
|
|
3630
3749
|
art_location: Gio.File
|
|
3750
|
+
artLocation: Gio.File
|
|
3631
3751
|
art_icon: Gio.Icon
|
|
3752
|
+
artIcon: Gio.Icon
|
|
3632
3753
|
|
|
3633
3754
|
// Owm methods of Unity-7.0.Unity.TrackMetadata
|
|
3634
3755
|
|
|
@@ -3711,6 +3832,9 @@ export module Playlist {
|
|
|
3711
3832
|
creation_date?: GLib.DateTime | null
|
|
3712
3833
|
modification_date?: GLib.DateTime | null
|
|
3713
3834
|
last_play_date?: GLib.DateTime | null
|
|
3835
|
+
creationDate?: GLib.DateTime | null
|
|
3836
|
+
modificationDate?: GLib.DateTime | null
|
|
3837
|
+
lastPlayDate?: GLib.DateTime | null
|
|
3714
3838
|
}
|
|
3715
3839
|
|
|
3716
3840
|
}
|
|
@@ -3723,8 +3847,11 @@ export interface Playlist {
|
|
|
3723
3847
|
name: string | null
|
|
3724
3848
|
icon: Gio.Icon
|
|
3725
3849
|
creation_date: GLib.DateTime
|
|
3850
|
+
creationDate: GLib.DateTime
|
|
3726
3851
|
modification_date: GLib.DateTime
|
|
3852
|
+
modificationDate: GLib.DateTime
|
|
3727
3853
|
last_play_date: GLib.DateTime
|
|
3854
|
+
lastPlayDate: GLib.DateTime
|
|
3728
3855
|
|
|
3729
3856
|
// Owm methods of Unity-7.0.Unity.Playlist
|
|
3730
3857
|
|
|
@@ -3840,6 +3967,18 @@ export module MusicPlayer {
|
|
|
3840
3967
|
current_playlist?: Playlist | null
|
|
3841
3968
|
track_menu?: Dbusmenu.Menuitem | null
|
|
3842
3969
|
player_menu?: Dbusmenu.Menuitem | null
|
|
3970
|
+
appInfo?: Gio.AppInfo | null
|
|
3971
|
+
desktopFileName?: string | null
|
|
3972
|
+
isBlacklisted?: boolean | null
|
|
3973
|
+
canGoNext?: boolean | null
|
|
3974
|
+
canGoPrevious?: boolean | null
|
|
3975
|
+
canPlay?: boolean | null
|
|
3976
|
+
canPause?: boolean | null
|
|
3977
|
+
currentTrack?: TrackMetadata | null
|
|
3978
|
+
playbackState?: PlaybackState | null
|
|
3979
|
+
currentPlaylist?: Playlist | null
|
|
3980
|
+
trackMenu?: Dbusmenu.Menuitem | null
|
|
3981
|
+
playerMenu?: Dbusmenu.Menuitem | null
|
|
3843
3982
|
}
|
|
3844
3983
|
|
|
3845
3984
|
}
|
|
@@ -3849,18 +3988,30 @@ export interface MusicPlayer {
|
|
|
3849
3988
|
// Own properties of Unity-7.0.Unity.MusicPlayer
|
|
3850
3989
|
|
|
3851
3990
|
readonly app_info: Gio.AppInfo
|
|
3991
|
+
readonly appInfo: Gio.AppInfo
|
|
3852
3992
|
readonly desktop_file_name: string | null
|
|
3993
|
+
readonly desktopFileName: string | null
|
|
3853
3994
|
is_blacklisted: boolean
|
|
3995
|
+
isBlacklisted: boolean
|
|
3854
3996
|
title: string | null
|
|
3855
3997
|
can_go_next: boolean
|
|
3998
|
+
canGoNext: boolean
|
|
3856
3999
|
can_go_previous: boolean
|
|
4000
|
+
canGoPrevious: boolean
|
|
3857
4001
|
can_play: boolean
|
|
4002
|
+
canPlay: boolean
|
|
3858
4003
|
can_pause: boolean
|
|
4004
|
+
canPause: boolean
|
|
3859
4005
|
current_track: TrackMetadata
|
|
4006
|
+
currentTrack: TrackMetadata
|
|
3860
4007
|
playback_state: PlaybackState
|
|
4008
|
+
playbackState: PlaybackState
|
|
3861
4009
|
current_playlist: Playlist
|
|
4010
|
+
currentPlaylist: Playlist
|
|
3862
4011
|
track_menu: Dbusmenu.Menuitem
|
|
4012
|
+
trackMenu: Dbusmenu.Menuitem
|
|
3863
4013
|
player_menu: Dbusmenu.Menuitem
|
|
4014
|
+
playerMenu: Dbusmenu.Menuitem
|
|
3864
4015
|
|
|
3865
4016
|
// Owm methods of Unity-7.0.Unity.MusicPlayer
|
|
3866
4017
|
|
package/unity-7.0.d.ts
CHANGED
|
@@ -245,6 +245,7 @@ module AnnotatedIcon {
|
|
|
245
245
|
ribbon?: string | null
|
|
246
246
|
category?: CategoryType | null
|
|
247
247
|
size_hint?: IconSizeHint | null
|
|
248
|
+
sizeHint?: IconSizeHint | null
|
|
248
249
|
}
|
|
249
250
|
|
|
250
251
|
}
|
|
@@ -257,6 +258,7 @@ interface AnnotatedIcon {
|
|
|
257
258
|
ribbon: string | null
|
|
258
259
|
category: CategoryType
|
|
259
260
|
size_hint: IconSizeHint
|
|
261
|
+
sizeHint: IconSizeHint
|
|
260
262
|
|
|
261
263
|
// Owm methods of Unity-7.0.Unity.AnnotatedIcon
|
|
262
264
|
|
|
@@ -320,7 +322,9 @@ interface Inspector {
|
|
|
320
322
|
// Own properties of Unity-7.0.Unity.Inspector
|
|
321
323
|
|
|
322
324
|
readonly unity_running: boolean
|
|
325
|
+
readonly unityRunning: boolean
|
|
323
326
|
readonly unity_bus_name: string | null
|
|
327
|
+
readonly unityBusName: string | null
|
|
324
328
|
|
|
325
329
|
// Owm methods of Unity-7.0.Unity.Inspector
|
|
326
330
|
|
|
@@ -370,6 +374,9 @@ module LauncherEntry {
|
|
|
370
374
|
progress_visible?: boolean | null
|
|
371
375
|
urgent?: boolean | null
|
|
372
376
|
quicklist?: Dbusmenu.Menuitem | null
|
|
377
|
+
appUri?: string | null
|
|
378
|
+
countVisible?: boolean | null
|
|
379
|
+
progressVisible?: boolean | null
|
|
373
380
|
}
|
|
374
381
|
|
|
375
382
|
}
|
|
@@ -379,10 +386,13 @@ interface LauncherEntry extends Dee.Serializable {
|
|
|
379
386
|
// Own properties of Unity-7.0.Unity.LauncherEntry
|
|
380
387
|
|
|
381
388
|
app_uri: string | null
|
|
389
|
+
appUri: string | null
|
|
382
390
|
count: number
|
|
383
391
|
count_visible: boolean
|
|
392
|
+
countVisible: boolean
|
|
384
393
|
progress: number
|
|
385
394
|
progress_visible: boolean
|
|
395
|
+
progressVisible: boolean
|
|
386
396
|
urgent: boolean
|
|
387
397
|
quicklist: Dbusmenu.Menuitem
|
|
388
398
|
|
|
@@ -547,6 +557,8 @@ module ProgressSourceProvider {
|
|
|
547
557
|
|
|
548
558
|
dbus_name?: string | null
|
|
549
559
|
dbus_path?: string | null
|
|
560
|
+
dbusName?: string | null
|
|
561
|
+
dbusPath?: string | null
|
|
550
562
|
}
|
|
551
563
|
|
|
552
564
|
}
|
|
@@ -556,7 +568,9 @@ interface ProgressSourceProvider {
|
|
|
556
568
|
// Own properties of Unity-7.0.Unity.ProgressSourceProvider
|
|
557
569
|
|
|
558
570
|
readonly dbus_name: string | null
|
|
571
|
+
readonly dbusName: string | null
|
|
559
572
|
readonly dbus_path: string | null
|
|
573
|
+
readonly dbusPath: string | null
|
|
560
574
|
|
|
561
575
|
// Owm methods of Unity-7.0.Unity.ProgressSourceProvider
|
|
562
576
|
|
|
@@ -606,6 +620,10 @@ module Category {
|
|
|
606
620
|
default_renderer?: CategoryRenderer | null
|
|
607
621
|
content_type?: CategoryContentType | null
|
|
608
622
|
renderer_hint?: string | null
|
|
623
|
+
iconHint?: Gio.Icon | null
|
|
624
|
+
defaultRenderer?: CategoryRenderer | null
|
|
625
|
+
contentType?: CategoryContentType | null
|
|
626
|
+
rendererHint?: string | null
|
|
609
627
|
}
|
|
610
628
|
|
|
611
629
|
}
|
|
@@ -617,9 +635,13 @@ interface Category {
|
|
|
617
635
|
readonly id: string | null
|
|
618
636
|
readonly name: string | null
|
|
619
637
|
readonly icon_hint: Gio.Icon
|
|
638
|
+
readonly iconHint: Gio.Icon
|
|
620
639
|
readonly default_renderer: CategoryRenderer
|
|
640
|
+
readonly defaultRenderer: CategoryRenderer
|
|
621
641
|
content_type: CategoryContentType
|
|
642
|
+
contentType: CategoryContentType
|
|
622
643
|
renderer_hint: string | null
|
|
644
|
+
rendererHint: string | null
|
|
623
645
|
readonly renderer: string | null
|
|
624
646
|
|
|
625
647
|
// Owm methods of Unity-7.0.Unity.Category
|
|
@@ -704,6 +726,8 @@ module Filter {
|
|
|
704
726
|
visible?: boolean | null
|
|
705
727
|
collapsed?: boolean | null
|
|
706
728
|
filtering?: boolean | null
|
|
729
|
+
displayName?: string | null
|
|
730
|
+
iconHint?: Gio.Icon | null
|
|
707
731
|
}
|
|
708
732
|
|
|
709
733
|
}
|
|
@@ -714,7 +738,9 @@ interface Filter extends Dee.Serializable {
|
|
|
714
738
|
|
|
715
739
|
readonly id: string | null
|
|
716
740
|
display_name: string | null
|
|
741
|
+
displayName: string | null
|
|
717
742
|
readonly icon_hint: Gio.Icon
|
|
743
|
+
readonly iconHint: Gio.Icon
|
|
718
744
|
readonly renderer: FilterRenderer
|
|
719
745
|
visible: boolean
|
|
720
746
|
collapsed: boolean
|
|
@@ -791,6 +817,8 @@ module FilterOption {
|
|
|
791
817
|
display_name?: string | null
|
|
792
818
|
icon_hint?: Gio.Icon | null
|
|
793
819
|
active?: boolean | null
|
|
820
|
+
displayName?: string | null
|
|
821
|
+
iconHint?: Gio.Icon | null
|
|
794
822
|
}
|
|
795
823
|
|
|
796
824
|
}
|
|
@@ -801,7 +829,9 @@ interface FilterOption {
|
|
|
801
829
|
|
|
802
830
|
readonly id: string | null
|
|
803
831
|
readonly display_name: string | null
|
|
832
|
+
readonly displayName: string | null
|
|
804
833
|
readonly icon_hint: Gio.Icon
|
|
834
|
+
readonly iconHint: Gio.Icon
|
|
805
835
|
active: boolean
|
|
806
836
|
|
|
807
837
|
// Owm methods of Unity-7.0.Unity.FilterOption
|
|
@@ -857,6 +887,8 @@ module OptionsFilter {
|
|
|
857
887
|
|
|
858
888
|
sort_type?: OptionsFilterSortType | null
|
|
859
889
|
show_all_button?: boolean | null
|
|
890
|
+
sortType?: OptionsFilterSortType | null
|
|
891
|
+
showAllButton?: boolean | null
|
|
860
892
|
}
|
|
861
893
|
|
|
862
894
|
}
|
|
@@ -866,7 +898,9 @@ interface OptionsFilter {
|
|
|
866
898
|
// Own properties of Unity-7.0.Unity.OptionsFilter
|
|
867
899
|
|
|
868
900
|
sort_type: OptionsFilterSortType
|
|
901
|
+
sortType: OptionsFilterSortType
|
|
869
902
|
show_all_button: boolean
|
|
903
|
+
showAllButton: boolean
|
|
870
904
|
|
|
871
905
|
// Own fields of Unity-7.0.Unity.OptionsFilter
|
|
872
906
|
|
|
@@ -1284,6 +1318,11 @@ module PreferencesManager {
|
|
|
1284
1318
|
home_lens_priority?: string[] | null
|
|
1285
1319
|
home_lens_default_view?: string[] | null
|
|
1286
1320
|
disabled_scopes?: string[] | null
|
|
1321
|
+
remoteContentSearch?: PreferencesManagerRemoteContent | null
|
|
1322
|
+
alwaysSearch?: string[] | null
|
|
1323
|
+
homeLensPriority?: string[] | null
|
|
1324
|
+
homeLensDefaultView?: string[] | null
|
|
1325
|
+
disabledScopes?: string[] | null
|
|
1287
1326
|
}
|
|
1288
1327
|
|
|
1289
1328
|
}
|
|
@@ -1293,10 +1332,15 @@ interface PreferencesManager {
|
|
|
1293
1332
|
// Own properties of Unity-7.0.Unity.PreferencesManager
|
|
1294
1333
|
|
|
1295
1334
|
remote_content_search: PreferencesManagerRemoteContent
|
|
1335
|
+
remoteContentSearch: PreferencesManagerRemoteContent
|
|
1296
1336
|
always_search: string[]
|
|
1337
|
+
alwaysSearch: string[]
|
|
1297
1338
|
home_lens_priority: string[]
|
|
1339
|
+
homeLensPriority: string[]
|
|
1298
1340
|
home_lens_default_view: string[]
|
|
1341
|
+
homeLensDefaultView: string[]
|
|
1299
1342
|
disabled_scopes: string[]
|
|
1343
|
+
disabledScopes: string[]
|
|
1300
1344
|
|
|
1301
1345
|
// Owm methods of Unity-7.0.Unity.PreferencesManager
|
|
1302
1346
|
|
|
@@ -1370,6 +1414,8 @@ module DeprecatedScopeSearch {
|
|
|
1370
1414
|
hints?: GLib.HashTable | null
|
|
1371
1415
|
results_model?: Dee.SerializableModel | null
|
|
1372
1416
|
owner?: DeprecatedScopeBase | null
|
|
1417
|
+
channelId?: string | null
|
|
1418
|
+
resultsModel?: Dee.SerializableModel | null
|
|
1373
1419
|
}
|
|
1374
1420
|
|
|
1375
1421
|
}
|
|
@@ -1379,10 +1425,14 @@ interface DeprecatedScopeSearch {
|
|
|
1379
1425
|
// Own properties of Unity-7.0.Unity.DeprecatedScopeSearch
|
|
1380
1426
|
|
|
1381
1427
|
readonly channel_id: string | null
|
|
1428
|
+
readonly channelId: string | null
|
|
1382
1429
|
readonly search_string: string | null
|
|
1430
|
+
readonly searchString: string | null
|
|
1383
1431
|
readonly search_type: SearchType
|
|
1432
|
+
readonly searchType: SearchType
|
|
1384
1433
|
readonly hints: GLib.HashTable
|
|
1385
1434
|
readonly results_model: Dee.SerializableModel
|
|
1435
|
+
readonly resultsModel: Dee.SerializableModel
|
|
1386
1436
|
readonly owner: DeprecatedScopeBase
|
|
1387
1437
|
|
|
1388
1438
|
// Owm methods of Unity-7.0.Unity.DeprecatedScopeSearch
|
|
@@ -1541,6 +1591,8 @@ module Preview {
|
|
|
1541
1591
|
description_markup?: string | null
|
|
1542
1592
|
image_source_uri?: string | null
|
|
1543
1593
|
image?: Gio.Icon | null
|
|
1594
|
+
descriptionMarkup?: string | null
|
|
1595
|
+
imageSourceUri?: string | null
|
|
1544
1596
|
}
|
|
1545
1597
|
|
|
1546
1598
|
}
|
|
@@ -1552,7 +1604,9 @@ interface Preview extends Dee.Serializable {
|
|
|
1552
1604
|
title: string | null
|
|
1553
1605
|
subtitle: string | null
|
|
1554
1606
|
description_markup: string | null
|
|
1607
|
+
descriptionMarkup: string | null
|
|
1555
1608
|
image_source_uri: string | null
|
|
1609
|
+
imageSourceUri: string | null
|
|
1556
1610
|
image: Gio.Icon
|
|
1557
1611
|
|
|
1558
1612
|
// Owm methods of Unity-7.0.Unity.Preview
|
|
@@ -1629,6 +1683,10 @@ module PreviewAction {
|
|
|
1629
1683
|
extra_text?: string | null
|
|
1630
1684
|
icon_hint?: Gio.Icon | null
|
|
1631
1685
|
layout_hint?: LayoutHint | null
|
|
1686
|
+
displayName?: string | null
|
|
1687
|
+
extraText?: string | null
|
|
1688
|
+
iconHint?: Gio.Icon | null
|
|
1689
|
+
layoutHint?: LayoutHint | null
|
|
1632
1690
|
}
|
|
1633
1691
|
|
|
1634
1692
|
}
|
|
@@ -1639,9 +1697,13 @@ interface PreviewAction extends Dee.Serializable {
|
|
|
1639
1697
|
|
|
1640
1698
|
readonly id: string | null
|
|
1641
1699
|
readonly display_name: string | null
|
|
1700
|
+
readonly displayName: string | null
|
|
1642
1701
|
extra_text: string | null
|
|
1702
|
+
extraText: string | null
|
|
1643
1703
|
readonly icon_hint: Gio.Icon
|
|
1704
|
+
readonly iconHint: Gio.Icon
|
|
1644
1705
|
readonly layout_hint: LayoutHint
|
|
1706
|
+
readonly layoutHint: LayoutHint
|
|
1645
1707
|
readonly hints: GLib.HashTable
|
|
1646
1708
|
|
|
1647
1709
|
// Owm methods of Unity-7.0.Unity.PreviewAction
|
|
@@ -1715,6 +1777,8 @@ module InfoHint {
|
|
|
1715
1777
|
display_name?: string | null
|
|
1716
1778
|
icon_hint?: Gio.Icon | null
|
|
1717
1779
|
data?: GLib.Variant | null
|
|
1780
|
+
displayName?: string | null
|
|
1781
|
+
iconHint?: Gio.Icon | null
|
|
1718
1782
|
}
|
|
1719
1783
|
|
|
1720
1784
|
}
|
|
@@ -1725,7 +1789,9 @@ interface InfoHint {
|
|
|
1725
1789
|
|
|
1726
1790
|
readonly id: string | null
|
|
1727
1791
|
readonly display_name: string | null
|
|
1792
|
+
readonly displayName: string | null
|
|
1728
1793
|
readonly icon_hint: Gio.Icon
|
|
1794
|
+
readonly iconHint: Gio.Icon
|
|
1729
1795
|
readonly data: GLib.Variant
|
|
1730
1796
|
|
|
1731
1797
|
// Owm methods of Unity-7.0.Unity.InfoHint
|
|
@@ -1841,6 +1907,8 @@ module ApplicationPreview {
|
|
|
1841
1907
|
license?: string | null
|
|
1842
1908
|
copyright?: string | null
|
|
1843
1909
|
last_update?: string | null
|
|
1910
|
+
appIcon?: Gio.Icon | null
|
|
1911
|
+
lastUpdate?: string | null
|
|
1844
1912
|
}
|
|
1845
1913
|
|
|
1846
1914
|
}
|
|
@@ -1850,9 +1918,11 @@ interface ApplicationPreview {
|
|
|
1850
1918
|
// Own properties of Unity-7.0.Unity.ApplicationPreview
|
|
1851
1919
|
|
|
1852
1920
|
app_icon: Gio.Icon
|
|
1921
|
+
appIcon: Gio.Icon
|
|
1853
1922
|
license: string | null
|
|
1854
1923
|
copyright: string | null
|
|
1855
1924
|
last_update: string | null
|
|
1925
|
+
lastUpdate: string | null
|
|
1856
1926
|
|
|
1857
1927
|
// Owm methods of Unity-7.0.Unity.ApplicationPreview
|
|
1858
1928
|
|
|
@@ -1983,6 +2053,10 @@ module PaymentPreview {
|
|
|
1983
2053
|
purchase_prize?: string | null
|
|
1984
2054
|
purchase_type?: string | null
|
|
1985
2055
|
preview_type?: PaymentPreviewType | null
|
|
2056
|
+
paymentMethod?: string | null
|
|
2057
|
+
purchasePrize?: string | null
|
|
2058
|
+
purchaseType?: string | null
|
|
2059
|
+
previewType?: PaymentPreviewType | null
|
|
1986
2060
|
}
|
|
1987
2061
|
|
|
1988
2062
|
}
|
|
@@ -1994,9 +2068,13 @@ interface PaymentPreview {
|
|
|
1994
2068
|
header: string | null
|
|
1995
2069
|
email: string | null
|
|
1996
2070
|
payment_method: string | null
|
|
2071
|
+
paymentMethod: string | null
|
|
1997
2072
|
purchase_prize: string | null
|
|
2073
|
+
purchasePrize: string | null
|
|
1998
2074
|
purchase_type: string | null
|
|
2075
|
+
purchaseType: string | null
|
|
1999
2076
|
preview_type: PaymentPreviewType
|
|
2077
|
+
previewType: PaymentPreviewType
|
|
2000
2078
|
|
|
2001
2079
|
// Owm methods of Unity-7.0.Unity.PaymentPreview
|
|
2002
2080
|
|
|
@@ -2296,6 +2374,7 @@ module ActivationResponse {
|
|
|
2296
2374
|
|
|
2297
2375
|
handled?: HandledType | null
|
|
2298
2376
|
goto_uri?: string | null
|
|
2377
|
+
gotoUri?: string | null
|
|
2299
2378
|
}
|
|
2300
2379
|
|
|
2301
2380
|
}
|
|
@@ -2306,6 +2385,7 @@ interface ActivationResponse {
|
|
|
2306
2385
|
|
|
2307
2386
|
readonly handled: HandledType
|
|
2308
2387
|
goto_uri: string | null
|
|
2388
|
+
gotoUri: string | null
|
|
2309
2389
|
|
|
2310
2390
|
// Owm methods of Unity-7.0.Unity.ActivationResponse
|
|
2311
2391
|
|
|
@@ -2357,6 +2437,10 @@ module AggregatorActivation {
|
|
|
2357
2437
|
action_type?: number | null
|
|
2358
2438
|
scope_result?: ScopeResult | null
|
|
2359
2439
|
hints?: GLib.HashTable | null
|
|
2440
|
+
channelId?: string | null
|
|
2441
|
+
scopeId?: string | null
|
|
2442
|
+
actionType?: number | null
|
|
2443
|
+
scopeResult?: ScopeResult | null
|
|
2360
2444
|
}
|
|
2361
2445
|
|
|
2362
2446
|
}
|
|
@@ -2366,9 +2450,13 @@ interface AggregatorActivation {
|
|
|
2366
2450
|
// Own properties of Unity-7.0.Unity.AggregatorActivation
|
|
2367
2451
|
|
|
2368
2452
|
channel_id: string | null
|
|
2453
|
+
channelId: string | null
|
|
2369
2454
|
scope_id: string | null
|
|
2455
|
+
scopeId: string | null
|
|
2370
2456
|
action_type: number
|
|
2457
|
+
actionType: number
|
|
2371
2458
|
scope_result: ScopeResult
|
|
2459
|
+
scopeResult: ScopeResult
|
|
2372
2460
|
hints: GLib.HashTable
|
|
2373
2461
|
|
|
2374
2462
|
// Owm methods of Unity-7.0.Unity.AggregatorActivation
|
|
@@ -2801,6 +2889,7 @@ interface SearchMetadata {
|
|
|
2801
2889
|
|
|
2802
2890
|
readonly locale: string | null
|
|
2803
2891
|
readonly form_factor: string | null
|
|
2892
|
+
readonly formFactor: string | null
|
|
2804
2893
|
readonly location: GeoCoordinate
|
|
2805
2894
|
|
|
2806
2895
|
// Owm methods of Unity-7.0.Unity.SearchMetadata
|
|
@@ -3044,6 +3133,10 @@ module DeprecatedScopeBase {
|
|
|
3044
3133
|
categories?: CategorySet | null
|
|
3045
3134
|
filters?: FilterSet | null
|
|
3046
3135
|
schema?: Schema | null
|
|
3136
|
+
dbusPath?: string | null
|
|
3137
|
+
searchInGlobal?: boolean | null
|
|
3138
|
+
isMaster?: boolean | null
|
|
3139
|
+
searchHint?: string | null
|
|
3047
3140
|
}
|
|
3048
3141
|
|
|
3049
3142
|
}
|
|
@@ -3054,10 +3147,14 @@ interface DeprecatedScopeBase {
|
|
|
3054
3147
|
|
|
3055
3148
|
readonly id: string | null
|
|
3056
3149
|
readonly dbus_path: string | null
|
|
3150
|
+
readonly dbusPath: string | null
|
|
3057
3151
|
search_in_global: boolean
|
|
3152
|
+
searchInGlobal: boolean
|
|
3058
3153
|
visible: boolean
|
|
3059
3154
|
readonly is_master: boolean
|
|
3155
|
+
readonly isMaster: boolean
|
|
3060
3156
|
search_hint: string | null
|
|
3157
|
+
searchHint: string | null
|
|
3061
3158
|
sources: OptionsFilter
|
|
3062
3159
|
categories: CategorySet
|
|
3063
3160
|
filters: FilterSet
|
|
@@ -3277,6 +3374,9 @@ module AggregatorScope {
|
|
|
3277
3374
|
merge_mode?: AggregatorScopeMergeMode | null
|
|
3278
3375
|
proxy_filter_hints?: boolean | null
|
|
3279
3376
|
automatic_flushing?: boolean | null
|
|
3377
|
+
mergeMode?: AggregatorScopeMergeMode | null
|
|
3378
|
+
proxyFilterHints?: boolean | null
|
|
3379
|
+
automaticFlushing?: boolean | null
|
|
3280
3380
|
}
|
|
3281
3381
|
|
|
3282
3382
|
}
|
|
@@ -3286,8 +3386,11 @@ interface AggregatorScope {
|
|
|
3286
3386
|
// Own properties of Unity-7.0.Unity.AggregatorScope
|
|
3287
3387
|
|
|
3288
3388
|
merge_mode: AggregatorScopeMergeMode
|
|
3389
|
+
mergeMode: AggregatorScopeMergeMode
|
|
3289
3390
|
proxy_filter_hints: boolean
|
|
3391
|
+
proxyFilterHints: boolean
|
|
3290
3392
|
automatic_flushing: boolean
|
|
3393
|
+
automaticFlushing: boolean
|
|
3291
3394
|
|
|
3292
3395
|
// Owm methods of Unity-7.0.Unity.AggregatorScope
|
|
3293
3396
|
|
|
@@ -3382,6 +3485,7 @@ module MasterScope {
|
|
|
3382
3485
|
// Own constructor properties of Unity-7.0.Unity.MasterScope
|
|
3383
3486
|
|
|
3384
3487
|
no_content_hint?: string | null
|
|
3488
|
+
noContentHint?: string | null
|
|
3385
3489
|
}
|
|
3386
3490
|
|
|
3387
3491
|
}
|
|
@@ -3391,6 +3495,7 @@ interface MasterScope {
|
|
|
3391
3495
|
// Own properties of Unity-7.0.Unity.MasterScope
|
|
3392
3496
|
|
|
3393
3497
|
no_content_hint: string | null
|
|
3498
|
+
noContentHint: string | null
|
|
3394
3499
|
|
|
3395
3500
|
// Owm methods of Unity-7.0.Unity.MasterScope
|
|
3396
3501
|
|
|
@@ -3476,6 +3581,11 @@ module SimpleScope {
|
|
|
3476
3581
|
search_hint?: string | null
|
|
3477
3582
|
group_name?: string | null
|
|
3478
3583
|
unique_name?: string | null
|
|
3584
|
+
filterSet?: FilterSet | null
|
|
3585
|
+
categorySet?: CategorySet | null
|
|
3586
|
+
searchHint?: string | null
|
|
3587
|
+
groupName?: string | null
|
|
3588
|
+
uniqueName?: string | null
|
|
3479
3589
|
}
|
|
3480
3590
|
|
|
3481
3591
|
}
|
|
@@ -3485,11 +3595,16 @@ interface SimpleScope {
|
|
|
3485
3595
|
// Own properties of Unity-7.0.Unity.SimpleScope
|
|
3486
3596
|
|
|
3487
3597
|
filter_set: FilterSet
|
|
3598
|
+
filterSet: FilterSet
|
|
3488
3599
|
category_set: CategorySet
|
|
3600
|
+
categorySet: CategorySet
|
|
3489
3601
|
schema: Schema
|
|
3490
3602
|
search_hint: string | null
|
|
3603
|
+
searchHint: string | null
|
|
3491
3604
|
group_name: string | null
|
|
3605
|
+
groupName: string | null
|
|
3492
3606
|
unique_name: string | null
|
|
3607
|
+
uniqueName: string | null
|
|
3493
3608
|
|
|
3494
3609
|
// Owm methods of Unity-7.0.Unity.SimpleScope
|
|
3495
3610
|
|
|
@@ -3615,6 +3730,9 @@ module TrackMetadata {
|
|
|
3615
3730
|
length?: number | null
|
|
3616
3731
|
art_location?: Gio.File | null
|
|
3617
3732
|
art_icon?: Gio.Icon | null
|
|
3733
|
+
trackNo?: number | null
|
|
3734
|
+
artLocation?: Gio.File | null
|
|
3735
|
+
artIcon?: Gio.Icon | null
|
|
3618
3736
|
}
|
|
3619
3737
|
|
|
3620
3738
|
}
|
|
@@ -3625,12 +3743,15 @@ interface TrackMetadata {
|
|
|
3625
3743
|
|
|
3626
3744
|
uri: string | null
|
|
3627
3745
|
track_no: number
|
|
3746
|
+
trackNo: number
|
|
3628
3747
|
artist: string | null
|
|
3629
3748
|
title: string | null
|
|
3630
3749
|
album: string | null
|
|
3631
3750
|
length: number
|
|
3632
3751
|
art_location: Gio.File
|
|
3752
|
+
artLocation: Gio.File
|
|
3633
3753
|
art_icon: Gio.Icon
|
|
3754
|
+
artIcon: Gio.Icon
|
|
3634
3755
|
|
|
3635
3756
|
// Owm methods of Unity-7.0.Unity.TrackMetadata
|
|
3636
3757
|
|
|
@@ -3713,6 +3834,9 @@ module Playlist {
|
|
|
3713
3834
|
creation_date?: GLib.DateTime | null
|
|
3714
3835
|
modification_date?: GLib.DateTime | null
|
|
3715
3836
|
last_play_date?: GLib.DateTime | null
|
|
3837
|
+
creationDate?: GLib.DateTime | null
|
|
3838
|
+
modificationDate?: GLib.DateTime | null
|
|
3839
|
+
lastPlayDate?: GLib.DateTime | null
|
|
3716
3840
|
}
|
|
3717
3841
|
|
|
3718
3842
|
}
|
|
@@ -3725,8 +3849,11 @@ interface Playlist {
|
|
|
3725
3849
|
name: string | null
|
|
3726
3850
|
icon: Gio.Icon
|
|
3727
3851
|
creation_date: GLib.DateTime
|
|
3852
|
+
creationDate: GLib.DateTime
|
|
3728
3853
|
modification_date: GLib.DateTime
|
|
3854
|
+
modificationDate: GLib.DateTime
|
|
3729
3855
|
last_play_date: GLib.DateTime
|
|
3856
|
+
lastPlayDate: GLib.DateTime
|
|
3730
3857
|
|
|
3731
3858
|
// Owm methods of Unity-7.0.Unity.Playlist
|
|
3732
3859
|
|
|
@@ -3842,6 +3969,18 @@ module MusicPlayer {
|
|
|
3842
3969
|
current_playlist?: Playlist | null
|
|
3843
3970
|
track_menu?: Dbusmenu.Menuitem | null
|
|
3844
3971
|
player_menu?: Dbusmenu.Menuitem | null
|
|
3972
|
+
appInfo?: Gio.AppInfo | null
|
|
3973
|
+
desktopFileName?: string | null
|
|
3974
|
+
isBlacklisted?: boolean | null
|
|
3975
|
+
canGoNext?: boolean | null
|
|
3976
|
+
canGoPrevious?: boolean | null
|
|
3977
|
+
canPlay?: boolean | null
|
|
3978
|
+
canPause?: boolean | null
|
|
3979
|
+
currentTrack?: TrackMetadata | null
|
|
3980
|
+
playbackState?: PlaybackState | null
|
|
3981
|
+
currentPlaylist?: Playlist | null
|
|
3982
|
+
trackMenu?: Dbusmenu.Menuitem | null
|
|
3983
|
+
playerMenu?: Dbusmenu.Menuitem | null
|
|
3845
3984
|
}
|
|
3846
3985
|
|
|
3847
3986
|
}
|
|
@@ -3851,18 +3990,30 @@ interface MusicPlayer {
|
|
|
3851
3990
|
// Own properties of Unity-7.0.Unity.MusicPlayer
|
|
3852
3991
|
|
|
3853
3992
|
readonly app_info: Gio.AppInfo
|
|
3993
|
+
readonly appInfo: Gio.AppInfo
|
|
3854
3994
|
readonly desktop_file_name: string | null
|
|
3995
|
+
readonly desktopFileName: string | null
|
|
3855
3996
|
is_blacklisted: boolean
|
|
3997
|
+
isBlacklisted: boolean
|
|
3856
3998
|
title: string | null
|
|
3857
3999
|
can_go_next: boolean
|
|
4000
|
+
canGoNext: boolean
|
|
3858
4001
|
can_go_previous: boolean
|
|
4002
|
+
canGoPrevious: boolean
|
|
3859
4003
|
can_play: boolean
|
|
4004
|
+
canPlay: boolean
|
|
3860
4005
|
can_pause: boolean
|
|
4006
|
+
canPause: boolean
|
|
3861
4007
|
current_track: TrackMetadata
|
|
4008
|
+
currentTrack: TrackMetadata
|
|
3862
4009
|
playback_state: PlaybackState
|
|
4010
|
+
playbackState: PlaybackState
|
|
3863
4011
|
current_playlist: Playlist
|
|
4012
|
+
currentPlaylist: Playlist
|
|
3864
4013
|
track_menu: Dbusmenu.Menuitem
|
|
4014
|
+
trackMenu: Dbusmenu.Menuitem
|
|
3865
4015
|
player_menu: Dbusmenu.Menuitem
|
|
4016
|
+
playerMenu: Dbusmenu.Menuitem
|
|
3866
4017
|
|
|
3867
4018
|
// Owm methods of Unity-7.0.Unity.MusicPlayer
|
|
3868
4019
|
|