@girs/plasma-1.0 1.0.0-3.2.7 → 1.0.0-3.2.8

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -5,7 +5,7 @@
5
5
  ![downloads/week](https://img.shields.io/npm/dw/@girs/plasma-1.0)
6
6
 
7
7
 
8
- GJS TypeScript type definitions for Plasma-1.0, generated from library version 1.0.0 using [ts-for-gir](https://github.com/gjsify/ts-for-gir) v3.2.7.
8
+ GJS TypeScript type definitions for Plasma-1.0, generated from library version 1.0.0 using [ts-for-gir](https://github.com/gjsify/ts-for-gir) v3.2.8.
9
9
 
10
10
 
11
11
  ## Install
package/package.json CHANGED
@@ -1,13 +1,19 @@
1
1
  {
2
2
  "name": "@girs/plasma-1.0",
3
- "version": "1.0.0-3.2.7",
3
+ "version": "1.0.0-3.2.8",
4
4
  "description": "GJS TypeScript type definitions for Plasma-1.0, generated from library version 1.0.0",
5
5
  "type": "module",
6
6
  "module": "plasma-1.0.js",
7
7
  "main": "plasma-1.0.js",
8
8
  "exports": {
9
- "./ambient": "./plasma-1.0-ambient.d.ts",
10
- "./import": "./plasma-1.0-import.d.ts",
9
+ "./ambient": {
10
+ "types": "./plasma-1.0-ambient.d.ts",
11
+ "default": "./plasma-1.0-ambient.js"
12
+ },
13
+ "./import": {
14
+ "types": "./plasma-1.0-import.d.ts",
15
+ "default": "./plasma-1.0-import.js"
16
+ },
11
17
  ".": {
12
18
  "import": {
13
19
  "types": "./plasma-1.0.d.ts",
@@ -25,12 +31,12 @@
25
31
  "test:cjs": "NODE_OPTIONS=--max_old_space_size=9216 tsc --noEmit plasma-1.0.d.cts"
26
32
  },
27
33
  "dependencies": {
28
- "@girs/arrow-1.0": "^7.0.0-3.2.7",
29
- "@girs/arrowcuda-1.0": "^1.0.0-3.2.7",
30
- "@girs/gio-2.0": "^2.78.0-3.2.7",
31
- "@girs/gjs": "^3.2.7",
32
- "@girs/glib-2.0": "^2.78.0-3.2.7",
33
- "@girs/gobject-2.0": "^2.78.0-3.2.7"
34
+ "@girs/arrow-1.0": "^7.0.0-3.2.8",
35
+ "@girs/arrowcuda-1.0": "^1.0.0-3.2.8",
36
+ "@girs/gio-2.0": "^2.77.0-3.2.8",
37
+ "@girs/gjs": "^3.2.8",
38
+ "@girs/glib-2.0": "^2.77.0-3.2.8",
39
+ "@girs/gobject-2.0": "^2.77.0-3.2.8"
34
40
  },
35
41
  "devDependencies": {
36
42
  "typescript": "*"
@@ -47,7 +53,7 @@
47
53
  "license": "MIT",
48
54
  "repository": {
49
55
  "type": "git",
50
- "url": "git+https://github.com/gjsify/types.git"
56
+ "url": "git+https://github.com/gjsify/ts-for-gir.git"
51
57
  },
52
58
  "bugs": {
53
59
  "url": "https://github.com/gjsify/ts-for-gir/issues"
@@ -0,0 +1,2 @@
1
+ export {}
2
+
@@ -0,0 +1,3 @@
1
+ const gi = globalThis.imports?.gi || {};
2
+ export default gi;
3
+
package/plasma-1.0.d.cts CHANGED
@@ -81,7 +81,6 @@ export module ClientCreateOptions {
81
81
 
82
82
  // Own constructor properties of Plasma-1.0.Plasma.ClientCreateOptions
83
83
 
84
- gpu_device?: number | null
85
84
  gpuDevice?: number | null
86
85
  }
87
86
 
@@ -91,7 +90,6 @@ export interface ClientCreateOptions {
91
90
 
92
91
  // Own properties of Plasma-1.0.Plasma.ClientCreateOptions
93
92
 
94
- gpu_device: number
95
93
  gpuDevice: number
96
94
 
97
95
  // Own fields of Plasma-1.0.Plasma.ClientCreateOptions
@@ -137,7 +135,6 @@ export module ClientOptions {
137
135
 
138
136
  // Own constructor properties of Plasma-1.0.Plasma.ClientOptions
139
137
 
140
- n_retries?: number | null
141
138
  nRetries?: number | null
142
139
  }
143
140
 
@@ -147,7 +144,6 @@ export interface ClientOptions {
147
144
 
148
145
  // Own properties of Plasma-1.0.Plasma.ClientOptions
149
146
 
150
- n_retries: number
151
147
  nRetries: number
152
148
 
153
149
  // Own fields of Plasma-1.0.Plasma.ClientOptions
@@ -267,12 +263,9 @@ export module Object {
267
263
 
268
264
  client?: Client | null
269
265
  data?: Arrow.Buffer | null
270
- gpu_device?: number | null
266
+ gpuDevice?: number | null
271
267
  id?: ObjectID | null
272
268
  metadata?: Arrow.Buffer | null
273
- raw_data?: any | null
274
- raw_metadata?: any | null
275
- gpuDevice?: number | null
276
269
  rawData?: any | null
277
270
  rawMetadata?: any | null
278
271
  }
@@ -285,13 +278,10 @@ export interface Object {
285
278
 
286
279
  readonly client: Client
287
280
  readonly data: Arrow.Buffer
288
- readonly gpu_device: number
289
281
  readonly gpuDevice: number
290
282
  readonly id: ObjectID
291
283
  readonly metadata: Arrow.Buffer
292
- readonly raw_data: any
293
284
  readonly rawData: any
294
- readonly raw_metadata: any
295
285
  readonly rawMetadata: any
296
286
 
297
287
  // Own fields of Plasma-1.0.Plasma.Object
package/plasma-1.0.d.ts CHANGED
@@ -83,7 +83,6 @@ module ClientCreateOptions {
83
83
 
84
84
  // Own constructor properties of Plasma-1.0.Plasma.ClientCreateOptions
85
85
 
86
- gpu_device?: number | null
87
86
  gpuDevice?: number | null
88
87
  }
89
88
 
@@ -93,7 +92,6 @@ interface ClientCreateOptions {
93
92
 
94
93
  // Own properties of Plasma-1.0.Plasma.ClientCreateOptions
95
94
 
96
- gpu_device: number
97
95
  gpuDevice: number
98
96
 
99
97
  // Own fields of Plasma-1.0.Plasma.ClientCreateOptions
@@ -139,7 +137,6 @@ module ClientOptions {
139
137
 
140
138
  // Own constructor properties of Plasma-1.0.Plasma.ClientOptions
141
139
 
142
- n_retries?: number | null
143
140
  nRetries?: number | null
144
141
  }
145
142
 
@@ -149,7 +146,6 @@ interface ClientOptions {
149
146
 
150
147
  // Own properties of Plasma-1.0.Plasma.ClientOptions
151
148
 
152
- n_retries: number
153
149
  nRetries: number
154
150
 
155
151
  // Own fields of Plasma-1.0.Plasma.ClientOptions
@@ -269,12 +265,9 @@ module Object {
269
265
 
270
266
  client?: Client | null
271
267
  data?: Arrow.Buffer | null
272
- gpu_device?: number | null
268
+ gpuDevice?: number | null
273
269
  id?: ObjectID | null
274
270
  metadata?: Arrow.Buffer | null
275
- raw_data?: any | null
276
- raw_metadata?: any | null
277
- gpuDevice?: number | null
278
271
  rawData?: any | null
279
272
  rawMetadata?: any | null
280
273
  }
@@ -287,13 +280,10 @@ interface Object {
287
280
 
288
281
  readonly client: Client
289
282
  readonly data: Arrow.Buffer
290
- readonly gpu_device: number
291
283
  readonly gpuDevice: number
292
284
  readonly id: ObjectID
293
285
  readonly metadata: Arrow.Buffer
294
- readonly raw_data: any
295
286
  readonly rawData: any
296
- readonly raw_metadata: any
297
287
  readonly rawMetadata: any
298
288
 
299
289
  // Own fields of Plasma-1.0.Plasma.Object