@girs/icalglib-3.0 3.0.0-3.2.7 → 3.0.0-3.2.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -1
- package/icalglib-3.0-ambient.js +2 -0
- package/icalglib-3.0-import.js +3 -0
- package/icalglib-3.0.d.cts +3 -31
- package/icalglib-3.0.d.ts +3 -31
- package/package.json +13 -7
package/README.md
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|

|
|
6
6
|
|
|
7
7
|
|
|
8
|
-
GJS TypeScript type definitions for ICalGLib-3.0, generated from library version 3.0.0 using [ts-for-gir](https://github.com/gjsify/ts-for-gir) v3.2.
|
|
8
|
+
GJS TypeScript type definitions for ICalGLib-3.0, generated from library version 3.0.0 using [ts-for-gir](https://github.com/gjsify/ts-for-gir) v3.2.8.
|
|
9
9
|
|
|
10
10
|
Implementation of the iCalendar protocols and protocol data units. The iCalendar specification describes how calendar clients can communicate with calendar servers so users can store their calendar data and arrange meetings with other users.
|
|
11
11
|
|
package/icalglib-3.0.d.cts
CHANGED
|
@@ -2021,12 +2021,12 @@ export module Object {
|
|
|
2021
2021
|
* Whether free the native libical structure on #ICalObject's finalize even
|
|
2022
2022
|
* if the object has set an owner.
|
|
2023
2023
|
*/
|
|
2024
|
-
|
|
2024
|
+
alwaysDestroy?: boolean | null
|
|
2025
2025
|
/**
|
|
2026
2026
|
* Whether the native libical structure is from a global shared memory.
|
|
2027
2027
|
* If TRUE, then it is not freed on #ICalObject's finalize.
|
|
2028
2028
|
*/
|
|
2029
|
-
|
|
2029
|
+
isGlobalMemory?: boolean | null
|
|
2030
2030
|
/**
|
|
2031
2031
|
* The native libical structure for this ICalObject.
|
|
2032
2032
|
*/
|
|
@@ -2034,26 +2034,12 @@ export module Object {
|
|
|
2034
2034
|
/**
|
|
2035
2035
|
* GDestroyNotify function to use to destroy the native libical pointer.
|
|
2036
2036
|
*/
|
|
2037
|
-
|
|
2037
|
+
nativeDestroyFunc?: any | null
|
|
2038
2038
|
/**
|
|
2039
2039
|
* Owner of the native libical structure. If set, then it is
|
|
2040
2040
|
* responsible for a free of the native libical structure.
|
|
2041
2041
|
*/
|
|
2042
2042
|
owner?: GObject.Object | null
|
|
2043
|
-
/**
|
|
2044
|
-
* Whether free the native libical structure on #ICalObject's finalize even
|
|
2045
|
-
* if the object has set an owner.
|
|
2046
|
-
*/
|
|
2047
|
-
alwaysDestroy?: boolean | null
|
|
2048
|
-
/**
|
|
2049
|
-
* Whether the native libical structure is from a global shared memory.
|
|
2050
|
-
* If TRUE, then it is not freed on #ICalObject's finalize.
|
|
2051
|
-
*/
|
|
2052
|
-
isGlobalMemory?: boolean | null
|
|
2053
|
-
/**
|
|
2054
|
-
* GDestroyNotify function to use to destroy the native libical pointer.
|
|
2055
|
-
*/
|
|
2056
|
-
nativeDestroyFunc?: any | null
|
|
2057
2043
|
}
|
|
2058
2044
|
|
|
2059
2045
|
}
|
|
@@ -2062,21 +2048,11 @@ export interface Object {
|
|
|
2062
2048
|
|
|
2063
2049
|
// Own properties of ICalGLib-3.0.ICalGLib.Object
|
|
2064
2050
|
|
|
2065
|
-
/**
|
|
2066
|
-
* Whether free the native libical structure on #ICalObject's finalize even
|
|
2067
|
-
* if the object has set an owner.
|
|
2068
|
-
*/
|
|
2069
|
-
always_destroy: boolean
|
|
2070
2051
|
/**
|
|
2071
2052
|
* Whether free the native libical structure on #ICalObject's finalize even
|
|
2072
2053
|
* if the object has set an owner.
|
|
2073
2054
|
*/
|
|
2074
2055
|
alwaysDestroy: boolean
|
|
2075
|
-
/**
|
|
2076
|
-
* Whether the native libical structure is from a global shared memory.
|
|
2077
|
-
* If TRUE, then it is not freed on #ICalObject's finalize.
|
|
2078
|
-
*/
|
|
2079
|
-
readonly is_global_memory: boolean
|
|
2080
2056
|
/**
|
|
2081
2057
|
* Whether the native libical structure is from a global shared memory.
|
|
2082
2058
|
* If TRUE, then it is not freed on #ICalObject's finalize.
|
|
@@ -2086,10 +2062,6 @@ export interface Object {
|
|
|
2086
2062
|
* The native libical structure for this ICalObject.
|
|
2087
2063
|
*/
|
|
2088
2064
|
readonly native: any
|
|
2089
|
-
/**
|
|
2090
|
-
* GDestroyNotify function to use to destroy the native libical pointer.
|
|
2091
|
-
*/
|
|
2092
|
-
native_destroy_func: any
|
|
2093
2065
|
/**
|
|
2094
2066
|
* GDestroyNotify function to use to destroy the native libical pointer.
|
|
2095
2067
|
*/
|
package/icalglib-3.0.d.ts
CHANGED
|
@@ -2023,12 +2023,12 @@ module Object {
|
|
|
2023
2023
|
* Whether free the native libical structure on #ICalObject's finalize even
|
|
2024
2024
|
* if the object has set an owner.
|
|
2025
2025
|
*/
|
|
2026
|
-
|
|
2026
|
+
alwaysDestroy?: boolean | null
|
|
2027
2027
|
/**
|
|
2028
2028
|
* Whether the native libical structure is from a global shared memory.
|
|
2029
2029
|
* If TRUE, then it is not freed on #ICalObject's finalize.
|
|
2030
2030
|
*/
|
|
2031
|
-
|
|
2031
|
+
isGlobalMemory?: boolean | null
|
|
2032
2032
|
/**
|
|
2033
2033
|
* The native libical structure for this ICalObject.
|
|
2034
2034
|
*/
|
|
@@ -2036,26 +2036,12 @@ module Object {
|
|
|
2036
2036
|
/**
|
|
2037
2037
|
* GDestroyNotify function to use to destroy the native libical pointer.
|
|
2038
2038
|
*/
|
|
2039
|
-
|
|
2039
|
+
nativeDestroyFunc?: any | null
|
|
2040
2040
|
/**
|
|
2041
2041
|
* Owner of the native libical structure. If set, then it is
|
|
2042
2042
|
* responsible for a free of the native libical structure.
|
|
2043
2043
|
*/
|
|
2044
2044
|
owner?: GObject.Object | null
|
|
2045
|
-
/**
|
|
2046
|
-
* Whether free the native libical structure on #ICalObject's finalize even
|
|
2047
|
-
* if the object has set an owner.
|
|
2048
|
-
*/
|
|
2049
|
-
alwaysDestroy?: boolean | null
|
|
2050
|
-
/**
|
|
2051
|
-
* Whether the native libical structure is from a global shared memory.
|
|
2052
|
-
* If TRUE, then it is not freed on #ICalObject's finalize.
|
|
2053
|
-
*/
|
|
2054
|
-
isGlobalMemory?: boolean | null
|
|
2055
|
-
/**
|
|
2056
|
-
* GDestroyNotify function to use to destroy the native libical pointer.
|
|
2057
|
-
*/
|
|
2058
|
-
nativeDestroyFunc?: any | null
|
|
2059
2045
|
}
|
|
2060
2046
|
|
|
2061
2047
|
}
|
|
@@ -2064,21 +2050,11 @@ interface Object {
|
|
|
2064
2050
|
|
|
2065
2051
|
// Own properties of ICalGLib-3.0.ICalGLib.Object
|
|
2066
2052
|
|
|
2067
|
-
/**
|
|
2068
|
-
* Whether free the native libical structure on #ICalObject's finalize even
|
|
2069
|
-
* if the object has set an owner.
|
|
2070
|
-
*/
|
|
2071
|
-
always_destroy: boolean
|
|
2072
2053
|
/**
|
|
2073
2054
|
* Whether free the native libical structure on #ICalObject's finalize even
|
|
2074
2055
|
* if the object has set an owner.
|
|
2075
2056
|
*/
|
|
2076
2057
|
alwaysDestroy: boolean
|
|
2077
|
-
/**
|
|
2078
|
-
* Whether the native libical structure is from a global shared memory.
|
|
2079
|
-
* If TRUE, then it is not freed on #ICalObject's finalize.
|
|
2080
|
-
*/
|
|
2081
|
-
readonly is_global_memory: boolean
|
|
2082
2058
|
/**
|
|
2083
2059
|
* Whether the native libical structure is from a global shared memory.
|
|
2084
2060
|
* If TRUE, then it is not freed on #ICalObject's finalize.
|
|
@@ -2088,10 +2064,6 @@ interface Object {
|
|
|
2088
2064
|
* The native libical structure for this ICalObject.
|
|
2089
2065
|
*/
|
|
2090
2066
|
readonly native: any
|
|
2091
|
-
/**
|
|
2092
|
-
* GDestroyNotify function to use to destroy the native libical pointer.
|
|
2093
|
-
*/
|
|
2094
|
-
native_destroy_func: any
|
|
2095
2067
|
/**
|
|
2096
2068
|
* GDestroyNotify function to use to destroy the native libical pointer.
|
|
2097
2069
|
*/
|
package/package.json
CHANGED
|
@@ -1,13 +1,19 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@girs/icalglib-3.0",
|
|
3
|
-
"version": "3.0.0-3.2.
|
|
3
|
+
"version": "3.0.0-3.2.8",
|
|
4
4
|
"description": "GJS TypeScript type definitions for ICalGLib-3.0, generated from library version 3.0.0",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"module": "icalglib-3.0.js",
|
|
7
7
|
"main": "icalglib-3.0.js",
|
|
8
8
|
"exports": {
|
|
9
|
-
"./ambient":
|
|
10
|
-
|
|
9
|
+
"./ambient": {
|
|
10
|
+
"types": "./icalglib-3.0-ambient.d.ts",
|
|
11
|
+
"default": "./icalglib-3.0-ambient.js"
|
|
12
|
+
},
|
|
13
|
+
"./import": {
|
|
14
|
+
"types": "./icalglib-3.0-import.d.ts",
|
|
15
|
+
"default": "./icalglib-3.0-import.js"
|
|
16
|
+
},
|
|
11
17
|
".": {
|
|
12
18
|
"import": {
|
|
13
19
|
"types": "./icalglib-3.0.d.ts",
|
|
@@ -25,9 +31,9 @@
|
|
|
25
31
|
"test:cjs": "NODE_OPTIONS=--max_old_space_size=9216 tsc --noEmit icalglib-3.0.d.cts"
|
|
26
32
|
},
|
|
27
33
|
"dependencies": {
|
|
28
|
-
"@girs/gjs": "^3.2.
|
|
29
|
-
"@girs/glib-2.0": "^2.
|
|
30
|
-
"@girs/gobject-2.0": "^2.
|
|
34
|
+
"@girs/gjs": "^3.2.8",
|
|
35
|
+
"@girs/glib-2.0": "^2.77.0-3.2.8",
|
|
36
|
+
"@girs/gobject-2.0": "^2.77.0-3.2.8"
|
|
31
37
|
},
|
|
32
38
|
"devDependencies": {
|
|
33
39
|
"typescript": "*"
|
|
@@ -44,7 +50,7 @@
|
|
|
44
50
|
"license": "MIT",
|
|
45
51
|
"repository": {
|
|
46
52
|
"type": "git",
|
|
47
|
-
"url": "git+https://github.com/gjsify/
|
|
53
|
+
"url": "git+https://github.com/gjsify/ts-for-gir.git"
|
|
48
54
|
},
|
|
49
55
|
"bugs": {
|
|
50
56
|
"url": "https://github.com/gjsify/ts-for-gir/issues"
|