@girs/foundry-1 4.4.0 → 4.6.0
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 +36 -41
- package/foundry-1.d.ts +410 -357
- package/package.json +10 -10
package/foundry-1.d.ts
CHANGED
|
@@ -38,11 +38,11 @@ export namespace Foundry {
|
|
|
38
38
|
* @gir-type Enum
|
|
39
39
|
*/
|
|
40
40
|
enum AcpChangedFileKind {
|
|
41
|
-
UNKNOWN,
|
|
42
|
-
CREATED,
|
|
43
|
-
MODIFIED,
|
|
44
|
-
DELETED,
|
|
45
|
-
PATCHED,
|
|
41
|
+
UNKNOWN = 0,
|
|
42
|
+
CREATED = 1,
|
|
43
|
+
MODIFIED = 2,
|
|
44
|
+
DELETED = 3,
|
|
45
|
+
PATCHED = 4,
|
|
46
46
|
}
|
|
47
47
|
|
|
48
48
|
|
|
@@ -57,14 +57,14 @@ export namespace Foundry {
|
|
|
57
57
|
* @gir-type Enum
|
|
58
58
|
*/
|
|
59
59
|
enum AcpConnectionState {
|
|
60
|
-
NEW,
|
|
61
|
-
STARTING,
|
|
62
|
-
INITIALIZING,
|
|
63
|
-
AUTH_REQUIRED,
|
|
64
|
-
READY,
|
|
65
|
-
CLOSING,
|
|
66
|
-
CLOSED,
|
|
67
|
-
FAILED,
|
|
60
|
+
NEW = 0,
|
|
61
|
+
STARTING = 1,
|
|
62
|
+
INITIALIZING = 2,
|
|
63
|
+
AUTH_REQUIRED = 3,
|
|
64
|
+
READY = 4,
|
|
65
|
+
CLOSING = 5,
|
|
66
|
+
CLOSED = 6,
|
|
67
|
+
FAILED = 7,
|
|
68
68
|
}
|
|
69
69
|
|
|
70
70
|
|
|
@@ -113,27 +113,27 @@ export namespace Foundry {
|
|
|
113
113
|
* @gir-type Enum
|
|
114
114
|
*/
|
|
115
115
|
enum AcpEventKind {
|
|
116
|
-
UNKNOWN,
|
|
117
|
-
MESSAGE_CHUNK,
|
|
118
|
-
MESSAGE,
|
|
119
|
-
STEP,
|
|
120
|
-
TOOL_CALL,
|
|
121
|
-
TOOL_UPDATE,
|
|
122
|
-
TOOL_RESULT,
|
|
123
|
-
PERMISSION_REQUEST,
|
|
124
|
-
PERMISSION_RESPONSE,
|
|
125
|
-
TERMINAL_CREATED,
|
|
126
|
-
TERMINAL_OUTPUT,
|
|
127
|
-
TERMINAL_EXITED,
|
|
128
|
-
TERMINAL_RELEASED,
|
|
129
|
-
FILE_READ,
|
|
130
|
-
FILE_WRITE,
|
|
131
|
-
FILE_PATCH,
|
|
132
|
-
FILE_CREATED,
|
|
133
|
-
FILE_DELETED,
|
|
134
|
-
MODE_CHANGED,
|
|
135
|
-
CONFIG_CHANGED,
|
|
136
|
-
ERROR,
|
|
116
|
+
UNKNOWN = 0,
|
|
117
|
+
MESSAGE_CHUNK = 1,
|
|
118
|
+
MESSAGE = 2,
|
|
119
|
+
STEP = 3,
|
|
120
|
+
TOOL_CALL = 4,
|
|
121
|
+
TOOL_UPDATE = 5,
|
|
122
|
+
TOOL_RESULT = 6,
|
|
123
|
+
PERMISSION_REQUEST = 7,
|
|
124
|
+
PERMISSION_RESPONSE = 8,
|
|
125
|
+
TERMINAL_CREATED = 9,
|
|
126
|
+
TERMINAL_OUTPUT = 10,
|
|
127
|
+
TERMINAL_EXITED = 11,
|
|
128
|
+
TERMINAL_RELEASED = 12,
|
|
129
|
+
FILE_READ = 13,
|
|
130
|
+
FILE_WRITE = 14,
|
|
131
|
+
FILE_PATCH = 15,
|
|
132
|
+
FILE_CREATED = 16,
|
|
133
|
+
FILE_DELETED = 17,
|
|
134
|
+
MODE_CHANGED = 18,
|
|
135
|
+
CONFIG_CHANGED = 19,
|
|
136
|
+
ERROR = 20,
|
|
137
137
|
}
|
|
138
138
|
|
|
139
139
|
|
|
@@ -148,11 +148,11 @@ export namespace Foundry {
|
|
|
148
148
|
* @gir-type Enum
|
|
149
149
|
*/
|
|
150
150
|
enum AcpEventState {
|
|
151
|
-
PENDING,
|
|
152
|
-
RUNNING,
|
|
153
|
-
COMPLETED,
|
|
154
|
-
FAILED,
|
|
155
|
-
CANCELLED,
|
|
151
|
+
PENDING = 0,
|
|
152
|
+
RUNNING = 1,
|
|
153
|
+
COMPLETED = 2,
|
|
154
|
+
FAILED = 3,
|
|
155
|
+
CANCELLED = 4,
|
|
156
156
|
}
|
|
157
157
|
|
|
158
158
|
|
|
@@ -167,12 +167,12 @@ export namespace Foundry {
|
|
|
167
167
|
* @gir-type Enum
|
|
168
168
|
*/
|
|
169
169
|
enum AcpSessionState {
|
|
170
|
-
NEW,
|
|
171
|
-
LOADING,
|
|
172
|
-
IDLE,
|
|
173
|
-
RUNNING,
|
|
174
|
-
CANCELLING,
|
|
175
|
-
CLOSED,
|
|
170
|
+
NEW = 0,
|
|
171
|
+
LOADING = 1,
|
|
172
|
+
IDLE = 2,
|
|
173
|
+
RUNNING = 3,
|
|
174
|
+
CANCELLING = 4,
|
|
175
|
+
CLOSED = 5,
|
|
176
176
|
}
|
|
177
177
|
|
|
178
178
|
|
|
@@ -187,23 +187,23 @@ export namespace Foundry {
|
|
|
187
187
|
* @gir-type Enum
|
|
188
188
|
*/
|
|
189
189
|
enum AcpSessionUpdateKind {
|
|
190
|
-
UNKNOWN,
|
|
191
|
-
MESSAGE_CHUNK,
|
|
192
|
-
MESSAGE,
|
|
193
|
-
STEP,
|
|
194
|
-
TOOL_CALL,
|
|
195
|
-
TOOL_UPDATE,
|
|
196
|
-
TOOL_RESULT,
|
|
197
|
-
TERMINAL_CREATED,
|
|
198
|
-
TERMINAL_OUTPUT,
|
|
199
|
-
TERMINAL_EXITED,
|
|
200
|
-
FILE_READ,
|
|
201
|
-
FILE_WRITE,
|
|
202
|
-
FILE_PATCH,
|
|
203
|
-
FILE_CREATED,
|
|
204
|
-
FILE_DELETED,
|
|
205
|
-
PROGRESS,
|
|
206
|
-
ERROR,
|
|
190
|
+
UNKNOWN = 0,
|
|
191
|
+
MESSAGE_CHUNK = 1,
|
|
192
|
+
MESSAGE = 2,
|
|
193
|
+
STEP = 3,
|
|
194
|
+
TOOL_CALL = 4,
|
|
195
|
+
TOOL_UPDATE = 5,
|
|
196
|
+
TOOL_RESULT = 6,
|
|
197
|
+
TERMINAL_CREATED = 7,
|
|
198
|
+
TERMINAL_OUTPUT = 8,
|
|
199
|
+
TERMINAL_EXITED = 9,
|
|
200
|
+
FILE_READ = 10,
|
|
201
|
+
FILE_WRITE = 11,
|
|
202
|
+
FILE_PATCH = 12,
|
|
203
|
+
FILE_CREATED = 13,
|
|
204
|
+
FILE_DELETED = 14,
|
|
205
|
+
PROGRESS = 15,
|
|
206
|
+
ERROR = 16,
|
|
207
207
|
}
|
|
208
208
|
|
|
209
209
|
|
|
@@ -218,12 +218,12 @@ export namespace Foundry {
|
|
|
218
218
|
* @gir-type Enum
|
|
219
219
|
*/
|
|
220
220
|
enum AcpStopReason {
|
|
221
|
-
END_TURN,
|
|
222
|
-
MAX_TOKENS,
|
|
223
|
-
MAX_TURN_REQUESTS,
|
|
224
|
-
REFUSAL,
|
|
225
|
-
CANCELLED,
|
|
226
|
-
UNKNOWN,
|
|
221
|
+
END_TURN = 1,
|
|
222
|
+
MAX_TOKENS = 2,
|
|
223
|
+
MAX_TURN_REQUESTS = 3,
|
|
224
|
+
REFUSAL = 4,
|
|
225
|
+
CANCELLED = 5,
|
|
226
|
+
UNKNOWN = 0,
|
|
227
227
|
}
|
|
228
228
|
|
|
229
229
|
|
|
@@ -238,10 +238,10 @@ export namespace Foundry {
|
|
|
238
238
|
* @gir-type Enum
|
|
239
239
|
*/
|
|
240
240
|
enum AcpTerminalState {
|
|
241
|
-
RUNNING,
|
|
242
|
-
EXITED,
|
|
243
|
-
FAILED,
|
|
244
|
-
CANCELLED,
|
|
241
|
+
RUNNING = 0,
|
|
242
|
+
EXITED = 1,
|
|
243
|
+
FAILED = 2,
|
|
244
|
+
CANCELLED = 3,
|
|
245
245
|
}
|
|
246
246
|
|
|
247
247
|
|
|
@@ -281,23 +281,23 @@ export namespace Foundry {
|
|
|
281
281
|
/**
|
|
282
282
|
* a regular file
|
|
283
283
|
*/
|
|
284
|
-
FILE,
|
|
284
|
+
FILE = 0,
|
|
285
285
|
/**
|
|
286
286
|
* a directory
|
|
287
287
|
*/
|
|
288
|
-
DIRECTORY,
|
|
288
|
+
DIRECTORY = 1,
|
|
289
289
|
/**
|
|
290
290
|
* a JUnit test report
|
|
291
291
|
*/
|
|
292
|
-
JUNIT,
|
|
292
|
+
JUNIT = 2,
|
|
293
293
|
/**
|
|
294
294
|
* a coverage report
|
|
295
295
|
*/
|
|
296
|
-
COVERAGE,
|
|
296
|
+
COVERAGE = 3,
|
|
297
297
|
/**
|
|
298
298
|
* a code quality report
|
|
299
299
|
*/
|
|
300
|
-
CODE_QUALITY,
|
|
300
|
+
CODE_QUALITY = 4,
|
|
301
301
|
}
|
|
302
302
|
|
|
303
303
|
|
|
@@ -317,23 +317,23 @@ export namespace Foundry {
|
|
|
317
317
|
/**
|
|
318
318
|
* the job is selected for execution
|
|
319
319
|
*/
|
|
320
|
-
SELECTED,
|
|
320
|
+
SELECTED = 0,
|
|
321
321
|
/**
|
|
322
322
|
* the job was skipped by pipeline rules
|
|
323
323
|
*/
|
|
324
|
-
SKIPPED,
|
|
324
|
+
SKIPPED = 1,
|
|
325
325
|
/**
|
|
326
326
|
* the job requires manual selection
|
|
327
327
|
*/
|
|
328
|
-
MANUAL,
|
|
328
|
+
MANUAL = 2,
|
|
329
329
|
/**
|
|
330
330
|
* the job cannot run locally
|
|
331
331
|
*/
|
|
332
|
-
UNSUPPORTED,
|
|
332
|
+
UNSUPPORTED = 3,
|
|
333
333
|
/**
|
|
334
334
|
* the job is blocked by dependencies
|
|
335
335
|
*/
|
|
336
|
-
BLOCKED,
|
|
336
|
+
BLOCKED = 4,
|
|
337
337
|
}
|
|
338
338
|
|
|
339
339
|
|
|
@@ -353,27 +353,27 @@ export namespace Foundry {
|
|
|
353
353
|
/**
|
|
354
354
|
* the run has not started
|
|
355
355
|
*/
|
|
356
|
-
PENDING,
|
|
356
|
+
PENDING = 0,
|
|
357
357
|
/**
|
|
358
358
|
* the run is preparing its environment
|
|
359
359
|
*/
|
|
360
|
-
PREPARING,
|
|
360
|
+
PREPARING = 1,
|
|
361
361
|
/**
|
|
362
362
|
* the run is executing
|
|
363
363
|
*/
|
|
364
|
-
RUNNING,
|
|
364
|
+
RUNNING = 2,
|
|
365
365
|
/**
|
|
366
366
|
* the run completed successfully
|
|
367
367
|
*/
|
|
368
|
-
PASSED,
|
|
368
|
+
PASSED = 3,
|
|
369
369
|
/**
|
|
370
370
|
* the run failed
|
|
371
371
|
*/
|
|
372
|
-
FAILED,
|
|
372
|
+
FAILED = 4,
|
|
373
373
|
/**
|
|
374
374
|
* the run was cancelled
|
|
375
375
|
*/
|
|
376
|
-
CANCELLED,
|
|
376
|
+
CANCELLED = 5,
|
|
377
377
|
}
|
|
378
378
|
|
|
379
379
|
|
|
@@ -383,7 +383,7 @@ export namespace Foundry {
|
|
|
383
383
|
* @gir-type Enum
|
|
384
384
|
*/
|
|
385
385
|
enum CommandLineError {
|
|
386
|
-
COMMAND_LINE_ERROR_RUN_LOCAL,
|
|
386
|
+
COMMAND_LINE_ERROR_RUN_LOCAL = 1,
|
|
387
387
|
}
|
|
388
388
|
|
|
389
389
|
|
|
@@ -402,10 +402,10 @@ export namespace Foundry {
|
|
|
402
402
|
* @gir-type Enum
|
|
403
403
|
*/
|
|
404
404
|
enum CommandLocality {
|
|
405
|
-
SUBPROCESS,
|
|
406
|
-
HOST,
|
|
407
|
-
PIPELINE,
|
|
408
|
-
APPLICATION,
|
|
405
|
+
SUBPROCESS = 0,
|
|
406
|
+
HOST = 1,
|
|
407
|
+
PIPELINE = 2,
|
|
408
|
+
APPLICATION = 3,
|
|
409
409
|
}
|
|
410
410
|
|
|
411
411
|
|
|
@@ -413,9 +413,9 @@ export namespace Foundry {
|
|
|
413
413
|
* @gir-type Enum
|
|
414
414
|
*/
|
|
415
415
|
enum CompletionActivation {
|
|
416
|
-
NONE,
|
|
417
|
-
INTERACTIVE,
|
|
418
|
-
USER_REQUESTED,
|
|
416
|
+
NONE = 0,
|
|
417
|
+
INTERACTIVE = 1,
|
|
418
|
+
USER_REQUESTED = 2,
|
|
419
419
|
}
|
|
420
420
|
|
|
421
421
|
|
|
@@ -423,7 +423,7 @@ export namespace Foundry {
|
|
|
423
423
|
* @gir-type Enum
|
|
424
424
|
*/
|
|
425
425
|
enum ContextError {
|
|
426
|
-
CONTEXT_ERROR_IN_SHUTDOWN,
|
|
426
|
+
CONTEXT_ERROR_IN_SHUTDOWN = 1,
|
|
427
427
|
}
|
|
428
428
|
|
|
429
429
|
|
|
@@ -431,7 +431,7 @@ export namespace Foundry {
|
|
|
431
431
|
* @gir-type Enum
|
|
432
432
|
*/
|
|
433
433
|
enum ContextualError {
|
|
434
|
-
CONTEXTUAL_ERROR_IN_SHUTDOWN,
|
|
434
|
+
CONTEXTUAL_ERROR_IN_SHUTDOWN = 1,
|
|
435
435
|
}
|
|
436
436
|
|
|
437
437
|
|
|
@@ -446,11 +446,11 @@ export namespace Foundry {
|
|
|
446
446
|
* @gir-type Enum
|
|
447
447
|
*/
|
|
448
448
|
enum DebuggerMovement {
|
|
449
|
-
START,
|
|
450
|
-
CONTINUE,
|
|
451
|
-
STEP_IN,
|
|
452
|
-
STEP_OUT,
|
|
453
|
-
STEP_OVER,
|
|
449
|
+
START = 0,
|
|
450
|
+
CONTINUE = 1,
|
|
451
|
+
STEP_IN = 2,
|
|
452
|
+
STEP_OUT = 4,
|
|
453
|
+
STEP_OVER = 3,
|
|
454
454
|
}
|
|
455
455
|
|
|
456
456
|
|
|
@@ -465,15 +465,15 @@ export namespace Foundry {
|
|
|
465
465
|
* @gir-type Enum
|
|
466
466
|
*/
|
|
467
467
|
enum DebuggerStopReason {
|
|
468
|
-
BREAKPOINT_HIT,
|
|
469
|
-
EXITED,
|
|
470
|
-
EXITED_NORMALLY,
|
|
471
|
-
SIGNALED,
|
|
472
|
-
FUNCTION_FINISHED,
|
|
473
|
-
LOCATION_REACHED,
|
|
474
|
-
SIGNAL_RECEIVED,
|
|
475
|
-
CATCH,
|
|
476
|
-
UNKNOWN,
|
|
468
|
+
BREAKPOINT_HIT = 1,
|
|
469
|
+
EXITED = 2,
|
|
470
|
+
EXITED_NORMALLY = 3,
|
|
471
|
+
SIGNALED = 4,
|
|
472
|
+
FUNCTION_FINISHED = 5,
|
|
473
|
+
LOCATION_REACHED = 6,
|
|
474
|
+
SIGNAL_RECEIVED = 7,
|
|
475
|
+
CATCH = 8,
|
|
476
|
+
UNKNOWN = 0,
|
|
477
477
|
}
|
|
478
478
|
|
|
479
479
|
|
|
@@ -488,10 +488,10 @@ export namespace Foundry {
|
|
|
488
488
|
* @gir-type Enum
|
|
489
489
|
*/
|
|
490
490
|
enum DebuggerTrapDisposition {
|
|
491
|
-
KEEP,
|
|
492
|
-
DISABLE,
|
|
493
|
-
NEXT_HIT,
|
|
494
|
-
NEXT_STOP,
|
|
491
|
+
KEEP = 0,
|
|
492
|
+
DISABLE = 1,
|
|
493
|
+
NEXT_HIT = 2,
|
|
494
|
+
NEXT_STOP = 3,
|
|
495
495
|
}
|
|
496
496
|
|
|
497
497
|
|
|
@@ -506,9 +506,9 @@ export namespace Foundry {
|
|
|
506
506
|
* @gir-type Enum
|
|
507
507
|
*/
|
|
508
508
|
enum DebuggerTrapKind {
|
|
509
|
-
BREAKPOINT,
|
|
510
|
-
COUNTPOINT,
|
|
511
|
-
WATCHPOINT,
|
|
509
|
+
BREAKPOINT = 0,
|
|
510
|
+
COUNTPOINT = 2,
|
|
511
|
+
WATCHPOINT = 1,
|
|
512
512
|
}
|
|
513
513
|
|
|
514
514
|
|
|
@@ -523,10 +523,10 @@ export namespace Foundry {
|
|
|
523
523
|
* @gir-type Enum
|
|
524
524
|
*/
|
|
525
525
|
enum DeviceChassis {
|
|
526
|
-
WORKSTATION,
|
|
527
|
-
HANDSET,
|
|
528
|
-
TABLET,
|
|
529
|
-
OTHER,
|
|
526
|
+
WORKSTATION = 0,
|
|
527
|
+
HANDSET = 1,
|
|
528
|
+
TABLET = 2,
|
|
529
|
+
OTHER = 3,
|
|
530
530
|
}
|
|
531
531
|
|
|
532
532
|
|
|
@@ -541,13 +541,13 @@ export namespace Foundry {
|
|
|
541
541
|
* @gir-type Enum
|
|
542
542
|
*/
|
|
543
543
|
enum DiagnosticSeverity {
|
|
544
|
-
IGNORED,
|
|
545
|
-
NOTE,
|
|
546
|
-
UNUSED,
|
|
547
|
-
DEPRECATED,
|
|
548
|
-
WARNING,
|
|
549
|
-
ERROR,
|
|
550
|
-
FATAL,
|
|
544
|
+
IGNORED = 0,
|
|
545
|
+
NOTE = 1,
|
|
546
|
+
UNUSED = 2,
|
|
547
|
+
DEPRECATED = 3,
|
|
548
|
+
WARNING = 4,
|
|
549
|
+
ERROR = 5,
|
|
550
|
+
FATAL = 6,
|
|
551
551
|
}
|
|
552
552
|
|
|
553
553
|
|
|
@@ -555,7 +555,7 @@ export namespace Foundry {
|
|
|
555
555
|
* @gir-type Enum
|
|
556
556
|
*/
|
|
557
557
|
enum DiagnosticToolError {
|
|
558
|
-
DIAGNOSTIC_TOOL_ERROR_NO_COMMAND,
|
|
558
|
+
DIAGNOSTIC_TOOL_ERROR_NO_COMMAND = 1,
|
|
559
559
|
}
|
|
560
560
|
|
|
561
561
|
|
|
@@ -563,7 +563,7 @@ export namespace Foundry {
|
|
|
563
563
|
* @gir-type Enum
|
|
564
564
|
*/
|
|
565
565
|
enum DoapFileError {
|
|
566
|
-
DOAP_FILE_ERROR_INVALID_FORMAT,
|
|
566
|
+
DOAP_FILE_ERROR_INVALID_FORMAT = 1,
|
|
567
567
|
}
|
|
568
568
|
|
|
569
569
|
|
|
@@ -571,9 +571,9 @@ export namespace Foundry {
|
|
|
571
571
|
* @gir-type Enum
|
|
572
572
|
*/
|
|
573
573
|
enum ForgeError {
|
|
574
|
-
FAILED,
|
|
575
|
-
NOT_CONFIGURED,
|
|
576
|
-
NOT_FOUND,
|
|
574
|
+
FAILED = 0,
|
|
575
|
+
NOT_CONFIGURED = 1,
|
|
576
|
+
NOT_FOUND = 2,
|
|
577
577
|
}
|
|
578
578
|
|
|
579
579
|
|
|
@@ -581,8 +581,8 @@ export namespace Foundry {
|
|
|
581
581
|
* @gir-type Enum
|
|
582
582
|
*/
|
|
583
583
|
enum GirError {
|
|
584
|
-
FAILED,
|
|
585
|
-
PARSE,
|
|
584
|
+
FAILED = 0,
|
|
585
|
+
PARSE = 1,
|
|
586
586
|
}
|
|
587
587
|
|
|
588
588
|
|
|
@@ -590,49 +590,49 @@ export namespace Foundry {
|
|
|
590
590
|
* @gir-type Enum
|
|
591
591
|
*/
|
|
592
592
|
enum GirNodeType {
|
|
593
|
-
UNKNOWN,
|
|
594
|
-
REPOSITORY,
|
|
595
|
-
INCLUDE,
|
|
596
|
-
C_INCLUDE,
|
|
597
|
-
PACKAGE,
|
|
598
|
-
NAMESPACE,
|
|
599
|
-
ALIAS,
|
|
600
|
-
ARRAY,
|
|
601
|
-
BITFIELD,
|
|
602
|
-
CALLBACK,
|
|
603
|
-
CLASS,
|
|
604
|
-
CLASS_METHOD,
|
|
605
|
-
CLASS_VIRTUAL_METHOD,
|
|
606
|
-
CLASS_PROPERTY,
|
|
607
|
-
CONSTRUCTOR,
|
|
608
|
-
CONSTANT,
|
|
609
|
-
DOC,
|
|
610
|
-
DOC_PARA,
|
|
611
|
-
DOC_TEXT,
|
|
612
|
-
ENUM,
|
|
613
|
-
ENUM_MEMBER,
|
|
614
|
-
FIELD,
|
|
615
|
-
FUNCTION,
|
|
616
|
-
FUNCTION_MACRO,
|
|
617
|
-
GLIB_BOXED,
|
|
618
|
-
GLIB_ERROR_DOMAIN,
|
|
619
|
-
GLIB_SIGNAL,
|
|
620
|
-
IMPLEMENTS,
|
|
621
|
-
INSTANCE_PARAMETER,
|
|
622
|
-
INTERFACE,
|
|
623
|
-
METHOD,
|
|
624
|
-
NAMESPACE_FUNCTION,
|
|
625
|
-
PARAMETER,
|
|
626
|
-
PARAMETERS,
|
|
627
|
-
PREREQUISITE,
|
|
628
|
-
PROPERTY,
|
|
629
|
-
RECORD,
|
|
630
|
-
RETURN_VALUE,
|
|
631
|
-
SOURCE_POSITION,
|
|
632
|
-
TYPE,
|
|
633
|
-
UNION,
|
|
634
|
-
VARARGS,
|
|
635
|
-
VIRTUAL_METHOD,
|
|
593
|
+
UNKNOWN = 0,
|
|
594
|
+
REPOSITORY = 1,
|
|
595
|
+
INCLUDE = 2,
|
|
596
|
+
C_INCLUDE = 3,
|
|
597
|
+
PACKAGE = 4,
|
|
598
|
+
NAMESPACE = 5,
|
|
599
|
+
ALIAS = 6,
|
|
600
|
+
ARRAY = 7,
|
|
601
|
+
BITFIELD = 8,
|
|
602
|
+
CALLBACK = 9,
|
|
603
|
+
CLASS = 10,
|
|
604
|
+
CLASS_METHOD = 11,
|
|
605
|
+
CLASS_VIRTUAL_METHOD = 12,
|
|
606
|
+
CLASS_PROPERTY = 13,
|
|
607
|
+
CONSTRUCTOR = 14,
|
|
608
|
+
CONSTANT = 15,
|
|
609
|
+
DOC = 16,
|
|
610
|
+
DOC_PARA = 17,
|
|
611
|
+
DOC_TEXT = 18,
|
|
612
|
+
ENUM = 19,
|
|
613
|
+
ENUM_MEMBER = 20,
|
|
614
|
+
FIELD = 21,
|
|
615
|
+
FUNCTION = 22,
|
|
616
|
+
FUNCTION_MACRO = 23,
|
|
617
|
+
GLIB_BOXED = 24,
|
|
618
|
+
GLIB_ERROR_DOMAIN = 25,
|
|
619
|
+
GLIB_SIGNAL = 26,
|
|
620
|
+
IMPLEMENTS = 27,
|
|
621
|
+
INSTANCE_PARAMETER = 28,
|
|
622
|
+
INTERFACE = 29,
|
|
623
|
+
METHOD = 30,
|
|
624
|
+
NAMESPACE_FUNCTION = 31,
|
|
625
|
+
PARAMETER = 32,
|
|
626
|
+
PARAMETERS = 33,
|
|
627
|
+
PREREQUISITE = 34,
|
|
628
|
+
PROPERTY = 35,
|
|
629
|
+
RECORD = 36,
|
|
630
|
+
RETURN_VALUE = 37,
|
|
631
|
+
SOURCE_POSITION = 38,
|
|
632
|
+
TYPE = 39,
|
|
633
|
+
UNION = 40,
|
|
634
|
+
VARARGS = 41,
|
|
635
|
+
VIRTUAL_METHOD = 42,
|
|
636
636
|
}
|
|
637
637
|
|
|
638
638
|
|
|
@@ -665,9 +665,9 @@ export namespace Foundry {
|
|
|
665
665
|
* @gir-type Enum
|
|
666
666
|
*/
|
|
667
667
|
enum Locality {
|
|
668
|
-
RUN,
|
|
669
|
-
BUILD,
|
|
670
|
-
TOOL,
|
|
668
|
+
RUN = 1,
|
|
669
|
+
BUILD = 0,
|
|
670
|
+
TOOL = 2,
|
|
671
671
|
}
|
|
672
672
|
|
|
673
673
|
|
|
@@ -682,10 +682,10 @@ export namespace Foundry {
|
|
|
682
682
|
* @gir-type Enum
|
|
683
683
|
*/
|
|
684
684
|
enum MarkupKind {
|
|
685
|
-
PLAINTEXT,
|
|
686
|
-
MARKDOWN,
|
|
687
|
-
HTML,
|
|
688
|
-
PANGO,
|
|
685
|
+
PLAINTEXT = 0,
|
|
686
|
+
MARKDOWN = 1,
|
|
687
|
+
HTML = 2,
|
|
688
|
+
PANGO = 3,
|
|
689
689
|
}
|
|
690
690
|
|
|
691
691
|
|
|
@@ -700,8 +700,8 @@ export namespace Foundry {
|
|
|
700
700
|
* @gir-type Enum
|
|
701
701
|
*/
|
|
702
702
|
enum ObjectSerializerFormat {
|
|
703
|
-
TEXT,
|
|
704
|
-
JSON,
|
|
703
|
+
TEXT = 0,
|
|
704
|
+
JSON = 1,
|
|
705
705
|
}
|
|
706
706
|
|
|
707
707
|
|
|
@@ -713,15 +713,15 @@ export namespace Foundry {
|
|
|
713
713
|
/**
|
|
714
714
|
* A basic shell with no user scripts
|
|
715
715
|
*/
|
|
716
|
-
DEFAULT,
|
|
716
|
+
DEFAULT = 0,
|
|
717
717
|
/**
|
|
718
718
|
* A user login shell similar to `bash -l`
|
|
719
719
|
*/
|
|
720
|
-
LOGIN,
|
|
720
|
+
LOGIN = 1,
|
|
721
721
|
/**
|
|
722
722
|
* A user interactive shell similar to `bash -i`
|
|
723
723
|
*/
|
|
724
|
-
INTERACTIVE,
|
|
724
|
+
INTERACTIVE = 2,
|
|
725
725
|
}
|
|
726
726
|
|
|
727
727
|
|
|
@@ -729,8 +729,8 @@ export namespace Foundry {
|
|
|
729
729
|
* @gir-type Enum
|
|
730
730
|
*/
|
|
731
731
|
enum SdkConfigOption {
|
|
732
|
-
PREFIX,
|
|
733
|
-
LIBDIR,
|
|
732
|
+
PREFIX = 1,
|
|
733
|
+
LIBDIR = 2,
|
|
734
734
|
}
|
|
735
735
|
|
|
736
736
|
|
|
@@ -738,8 +738,8 @@ export namespace Foundry {
|
|
|
738
738
|
* @gir-type Enum
|
|
739
739
|
*/
|
|
740
740
|
enum ServiceError {
|
|
741
|
-
STARTED,
|
|
742
|
-
STOPPED,
|
|
741
|
+
STARTED = 1,
|
|
742
|
+
STOPPED = 2,
|
|
743
743
|
}
|
|
744
744
|
|
|
745
745
|
|
|
@@ -758,18 +758,18 @@ export namespace Foundry {
|
|
|
758
758
|
* Application-wide settings global to
|
|
759
759
|
* any new project opened or created with Foundry.
|
|
760
760
|
*/
|
|
761
|
-
APPLICATION,
|
|
761
|
+
APPLICATION = 0,
|
|
762
762
|
/**
|
|
763
763
|
* Project-level overrides which take
|
|
764
764
|
* priority over {@link Foundry.SettingsLayer.APPLICATION}.
|
|
765
765
|
*/
|
|
766
|
-
PROJECT,
|
|
766
|
+
PROJECT = 1,
|
|
767
767
|
/**
|
|
768
768
|
* User-level overrides which take priority
|
|
769
769
|
* over {@link Foundry.SettingsLayer.APPLICATION} and
|
|
770
770
|
* {@link Foundry.SettingsLayer.PROJECT}.
|
|
771
771
|
*/
|
|
772
|
-
USER,
|
|
772
|
+
USER = 2,
|
|
773
773
|
}
|
|
774
774
|
|
|
775
775
|
|
|
@@ -789,22 +789,22 @@ export namespace Foundry {
|
|
|
789
789
|
* Be notified before text
|
|
790
790
|
* is inserted into the underlying buffer.
|
|
791
791
|
*/
|
|
792
|
-
BEFORE_INSERT,
|
|
792
|
+
BEFORE_INSERT = 1,
|
|
793
793
|
/**
|
|
794
794
|
* Be notified after text
|
|
795
795
|
* has been inserted into the underlying buffer.
|
|
796
796
|
*/
|
|
797
|
-
AFTER_INSERT,
|
|
797
|
+
AFTER_INSERT = 2,
|
|
798
798
|
/**
|
|
799
799
|
* Be notified before text
|
|
800
800
|
* is deleted from the underlying buffer.
|
|
801
801
|
*/
|
|
802
|
-
BEFORE_DELETE,
|
|
802
|
+
BEFORE_DELETE = 4,
|
|
803
803
|
/**
|
|
804
804
|
* Be notified after text
|
|
805
805
|
* has been deleted from the underlying buffer.
|
|
806
806
|
*/
|
|
807
|
-
AFTER_DELETE,
|
|
807
|
+
AFTER_DELETE = 8,
|
|
808
808
|
}
|
|
809
809
|
|
|
810
810
|
|
|
@@ -819,35 +819,35 @@ export namespace Foundry {
|
|
|
819
819
|
* @gir-type Enum
|
|
820
820
|
*/
|
|
821
821
|
enum TextSetting {
|
|
822
|
-
NONE,
|
|
823
|
-
AUTO_INDENT,
|
|
824
|
-
COMPLETION_AUTO_SELECT,
|
|
825
|
-
COMPLETION_PAGE_SIZE,
|
|
826
|
-
CUSTOM_FONT,
|
|
827
|
-
ENABLE_COMPLETION,
|
|
828
|
-
ENABLE_SNIPPETS,
|
|
829
|
-
ENABLE_SPELL_CHECK,
|
|
830
|
-
HIGHLIGHT_CURRENT_LINE,
|
|
831
|
-
HIGHLIGHT_MATCHING_BRACKETS,
|
|
832
|
-
IMPLICIT_TRAILING_NEWLINE,
|
|
833
|
-
INDENT_ON_TAB,
|
|
834
|
-
INDENT_WIDTH,
|
|
835
|
-
INSERT_MATCHING_BRACE,
|
|
836
|
-
INSERT_SPACES_INSTEAD_OF_TABS,
|
|
837
|
-
LINE_HEIGHT,
|
|
838
|
-
OVERRIDE_INDENT_WIDTH,
|
|
839
|
-
OVERWRITE_MATCHING_BRACE,
|
|
840
|
-
RIGHT_MARGIN_POSITION,
|
|
841
|
-
SHOW_DIAGNOSTICS,
|
|
842
|
-
SHOW_LINE_CHANGES,
|
|
843
|
-
SHOW_LINE_CHANGES_OVERVIEW,
|
|
844
|
-
SHOW_LINE_NUMBERS,
|
|
845
|
-
SHOW_RIGHT_MARGIN,
|
|
846
|
-
SMART_BACKSPACE,
|
|
847
|
-
SMART_HOME_END,
|
|
848
|
-
TAB_WIDTH,
|
|
849
|
-
USE_CUSTOM_FONT,
|
|
850
|
-
WRAP,
|
|
822
|
+
NONE = 0,
|
|
823
|
+
AUTO_INDENT = 1,
|
|
824
|
+
COMPLETION_AUTO_SELECT = 2,
|
|
825
|
+
COMPLETION_PAGE_SIZE = 3,
|
|
826
|
+
CUSTOM_FONT = 4,
|
|
827
|
+
ENABLE_COMPLETION = 5,
|
|
828
|
+
ENABLE_SNIPPETS = 6,
|
|
829
|
+
ENABLE_SPELL_CHECK = 7,
|
|
830
|
+
HIGHLIGHT_CURRENT_LINE = 8,
|
|
831
|
+
HIGHLIGHT_MATCHING_BRACKETS = 9,
|
|
832
|
+
IMPLICIT_TRAILING_NEWLINE = 10,
|
|
833
|
+
INDENT_ON_TAB = 11,
|
|
834
|
+
INDENT_WIDTH = 12,
|
|
835
|
+
INSERT_MATCHING_BRACE = 13,
|
|
836
|
+
INSERT_SPACES_INSTEAD_OF_TABS = 14,
|
|
837
|
+
LINE_HEIGHT = 15,
|
|
838
|
+
OVERRIDE_INDENT_WIDTH = 16,
|
|
839
|
+
OVERWRITE_MATCHING_BRACE = 17,
|
|
840
|
+
RIGHT_MARGIN_POSITION = 18,
|
|
841
|
+
SHOW_DIAGNOSTICS = 19,
|
|
842
|
+
SHOW_LINE_CHANGES = 20,
|
|
843
|
+
SHOW_LINE_CHANGES_OVERVIEW = 21,
|
|
844
|
+
SHOW_LINE_NUMBERS = 22,
|
|
845
|
+
SHOW_RIGHT_MARGIN = 23,
|
|
846
|
+
SMART_BACKSPACE = 24,
|
|
847
|
+
SMART_HOME_END = 25,
|
|
848
|
+
TAB_WIDTH = 26,
|
|
849
|
+
USE_CUSTOM_FONT = 27,
|
|
850
|
+
WRAP = 28,
|
|
851
851
|
}
|
|
852
852
|
|
|
853
853
|
|
|
@@ -862,10 +862,10 @@ export namespace Foundry {
|
|
|
862
862
|
* @gir-type Enum
|
|
863
863
|
*/
|
|
864
864
|
enum TextWrap {
|
|
865
|
-
NONE,
|
|
866
|
-
CHAR,
|
|
867
|
-
WORD,
|
|
868
|
-
WORD_CHAR,
|
|
865
|
+
NONE = 0,
|
|
866
|
+
CHAR = 1,
|
|
867
|
+
WORD = 2,
|
|
868
|
+
WORD_CHAR = 3,
|
|
869
869
|
}
|
|
870
870
|
|
|
871
871
|
|
|
@@ -880,17 +880,17 @@ export namespace Foundry {
|
|
|
880
880
|
* @gir-type Enum
|
|
881
881
|
*/
|
|
882
882
|
enum VcsDeltaStatus {
|
|
883
|
-
UNMODIFIED,
|
|
884
|
-
ADDED,
|
|
885
|
-
DELETED,
|
|
886
|
-
MODIFIED,
|
|
887
|
-
RENAMED,
|
|
888
|
-
COPIED,
|
|
889
|
-
IGNORED,
|
|
890
|
-
UNTRACKED,
|
|
891
|
-
TYPECHANGE,
|
|
892
|
-
UNREADABLE,
|
|
893
|
-
CONFLICTED,
|
|
883
|
+
UNMODIFIED = 0,
|
|
884
|
+
ADDED = 1,
|
|
885
|
+
DELETED = 2,
|
|
886
|
+
MODIFIED = 3,
|
|
887
|
+
RENAMED = 4,
|
|
888
|
+
COPIED = 5,
|
|
889
|
+
IGNORED = 6,
|
|
890
|
+
UNTRACKED = 7,
|
|
891
|
+
TYPECHANGE = 8,
|
|
892
|
+
UNREADABLE = 9,
|
|
893
|
+
CONFLICTED = 10,
|
|
894
894
|
}
|
|
895
895
|
|
|
896
896
|
|
|
@@ -905,12 +905,12 @@ export namespace Foundry {
|
|
|
905
905
|
* @gir-type Enum
|
|
906
906
|
*/
|
|
907
907
|
enum VcsDiffLineOrigin {
|
|
908
|
-
ADDED,
|
|
909
|
-
DELETED,
|
|
910
|
-
CONTEXT,
|
|
911
|
-
CONTEXT_EOFNL,
|
|
912
|
-
ADD_EOFNL,
|
|
913
|
-
DEL_EOFNL,
|
|
908
|
+
ADDED = 43,
|
|
909
|
+
DELETED = 45,
|
|
910
|
+
CONTEXT = 32,
|
|
911
|
+
CONTEXT_EOFNL = 61,
|
|
912
|
+
ADD_EOFNL = 62,
|
|
913
|
+
DEL_EOFNL = 60,
|
|
914
914
|
}
|
|
915
915
|
|
|
916
916
|
|
|
@@ -925,30 +925,60 @@ export namespace Foundry {
|
|
|
925
925
|
* @gir-type Enum
|
|
926
926
|
*/
|
|
927
927
|
enum VcsGraphPoint {
|
|
928
|
-
TOP,
|
|
929
|
-
CENTER,
|
|
930
|
-
BOTTOM,
|
|
928
|
+
TOP = 0,
|
|
929
|
+
CENTER = 1,
|
|
930
|
+
BOTTOM = 2,
|
|
931
931
|
}
|
|
932
932
|
|
|
933
933
|
|
|
934
|
+
/**
|
|
935
|
+
* @default 1
|
|
936
|
+
*/
|
|
934
937
|
const ACP_PROTOCOL_VERSION: number;
|
|
935
938
|
|
|
939
|
+
/**
|
|
940
|
+
* @default deprecated
|
|
941
|
+
*/
|
|
936
942
|
const DOCUMENTATION_ATTRIBUTE_DEPRECATED: string;
|
|
937
943
|
|
|
944
|
+
/**
|
|
945
|
+
* @default since
|
|
946
|
+
*/
|
|
938
947
|
const DOCUMENTATION_ATTRIBUTE_SINCE: string;
|
|
939
948
|
|
|
949
|
+
/**
|
|
950
|
+
* @default stability
|
|
951
|
+
*/
|
|
940
952
|
const DOCUMENTATION_ATTRIBUTE_STABILITY: string;
|
|
941
953
|
|
|
954
|
+
/**
|
|
955
|
+
* @default 43
|
|
956
|
+
*/
|
|
942
957
|
const GIR_NODE_LAST: number;
|
|
943
958
|
|
|
959
|
+
/**
|
|
960
|
+
* @default actions
|
|
961
|
+
*/
|
|
944
962
|
const SEARCH_CATEGORY_ACTIONS: string;
|
|
945
963
|
|
|
964
|
+
/**
|
|
965
|
+
* @default documentation
|
|
966
|
+
*/
|
|
946
967
|
const SEARCH_CATEGORY_DOCUMENTATION: string;
|
|
947
968
|
|
|
969
|
+
/**
|
|
970
|
+
* @default files
|
|
971
|
+
*/
|
|
948
972
|
const SEARCH_CATEGORY_FILES: string;
|
|
949
973
|
|
|
974
|
+
/**
|
|
975
|
+
* @default symbols
|
|
976
|
+
*/
|
|
950
977
|
const SEARCH_CATEGORY_SYMBOLS: string;
|
|
951
978
|
|
|
979
|
+
/**
|
|
980
|
+
* @default 29
|
|
981
|
+
*/
|
|
952
982
|
const TEXT_SETTING_LAST: number;
|
|
953
983
|
|
|
954
984
|
/**
|
|
@@ -997,6 +1027,7 @@ export namespace Foundry {
|
|
|
997
1027
|
* Canonicalize `file` as if via `realpath()`, raising an error if it
|
|
998
1028
|
* doesn't exist or otherwise isn't accessible.
|
|
999
1029
|
* @param file a {@link Gio.File}
|
|
1030
|
+
* @throws GLib.Error
|
|
1000
1031
|
*/
|
|
1001
1032
|
function file_canonicalize(file: Gio.File): Gio.File;
|
|
1002
1033
|
|
|
@@ -1314,12 +1345,14 @@ export namespace Foundry {
|
|
|
1314
1345
|
* @param read_fd
|
|
1315
1346
|
* @param write_fd
|
|
1316
1347
|
* @param flags
|
|
1348
|
+
* @throws GLib.Error
|
|
1317
1349
|
*/
|
|
1318
1350
|
function pipe(read_fd: number, write_fd: number, flags: number): boolean;
|
|
1319
1351
|
|
|
1320
1352
|
/**
|
|
1321
1353
|
* @param pty_consumer_fd
|
|
1322
1354
|
* @param blocking
|
|
1355
|
+
* @throws GLib.Error
|
|
1323
1356
|
*/
|
|
1324
1357
|
function pty_create_producer(pty_consumer_fd: number, blocking: boolean): number;
|
|
1325
1358
|
|
|
@@ -1461,8 +1494,8 @@ export namespace Foundry {
|
|
|
1461
1494
|
* @gir-type Flags
|
|
1462
1495
|
*/
|
|
1463
1496
|
enum AcpAgentCapabilityFlags {
|
|
1464
|
-
NONE,
|
|
1465
|
-
RESUME_SESSION,
|
|
1497
|
+
NONE = 0,
|
|
1498
|
+
RESUME_SESSION = 1,
|
|
1466
1499
|
}
|
|
1467
1500
|
|
|
1468
1501
|
|
|
@@ -1477,10 +1510,10 @@ export namespace Foundry {
|
|
|
1477
1510
|
* @gir-type Flags
|
|
1478
1511
|
*/
|
|
1479
1512
|
enum AcpChangedFileFlags {
|
|
1480
|
-
NONE,
|
|
1481
|
-
STAGED,
|
|
1482
|
-
UNSTAGED,
|
|
1483
|
-
UNTRACKED,
|
|
1513
|
+
NONE = 0,
|
|
1514
|
+
STAGED = 1,
|
|
1515
|
+
UNSTAGED = 2,
|
|
1516
|
+
UNTRACKED = 4,
|
|
1484
1517
|
}
|
|
1485
1518
|
|
|
1486
1519
|
|
|
@@ -1495,10 +1528,10 @@ export namespace Foundry {
|
|
|
1495
1528
|
* @gir-type Flags
|
|
1496
1529
|
*/
|
|
1497
1530
|
enum AcpClientCapabilityFlags {
|
|
1498
|
-
NONE,
|
|
1499
|
-
FS_READ_TEXT_FILE,
|
|
1500
|
-
FS_WRITE_TEXT_FILE,
|
|
1501
|
-
TERMINAL,
|
|
1531
|
+
NONE = 0,
|
|
1532
|
+
FS_READ_TEXT_FILE = 1,
|
|
1533
|
+
FS_WRITE_TEXT_FILE = 2,
|
|
1534
|
+
TERMINAL = 4,
|
|
1502
1535
|
}
|
|
1503
1536
|
|
|
1504
1537
|
|
|
@@ -1513,21 +1546,21 @@ export namespace Foundry {
|
|
|
1513
1546
|
* @gir-type Flags
|
|
1514
1547
|
*/
|
|
1515
1548
|
enum BuildPipelinePhase {
|
|
1516
|
-
NONE,
|
|
1517
|
-
PREPARE,
|
|
1518
|
-
DOWNLOADS,
|
|
1519
|
-
DEPENDENCIES,
|
|
1520
|
-
AUTOGEN,
|
|
1521
|
-
CONFIGURE,
|
|
1522
|
-
BUILD,
|
|
1523
|
-
INSTALL,
|
|
1524
|
-
COMMIT,
|
|
1525
|
-
EXPORT,
|
|
1526
|
-
FINAL,
|
|
1527
|
-
BEFORE,
|
|
1528
|
-
AFTER,
|
|
1529
|
-
FINISHED,
|
|
1530
|
-
FAILED,
|
|
1549
|
+
NONE = 0,
|
|
1550
|
+
PREPARE = 1,
|
|
1551
|
+
DOWNLOADS = 2,
|
|
1552
|
+
DEPENDENCIES = 4,
|
|
1553
|
+
AUTOGEN = 8,
|
|
1554
|
+
CONFIGURE = 16,
|
|
1555
|
+
BUILD = 64,
|
|
1556
|
+
INSTALL = 128,
|
|
1557
|
+
COMMIT = 256,
|
|
1558
|
+
EXPORT = 512,
|
|
1559
|
+
FINAL = 1024,
|
|
1560
|
+
BEFORE = 268435456,
|
|
1561
|
+
AFTER = 536870912,
|
|
1562
|
+
FINISHED = 1073741824,
|
|
1563
|
+
FAILED = 2147483648,
|
|
1531
1564
|
}
|
|
1532
1565
|
|
|
1533
1566
|
|
|
@@ -1542,8 +1575,8 @@ export namespace Foundry {
|
|
|
1542
1575
|
* @gir-type Flags
|
|
1543
1576
|
*/
|
|
1544
1577
|
enum ContextFlags {
|
|
1545
|
-
NONE,
|
|
1546
|
-
CREATE,
|
|
1578
|
+
NONE = 0,
|
|
1579
|
+
CREATE = 1,
|
|
1547
1580
|
}
|
|
1548
1581
|
|
|
1549
1582
|
|
|
@@ -1558,8 +1591,8 @@ export namespace Foundry {
|
|
|
1558
1591
|
* @gir-type Flags
|
|
1559
1592
|
*/
|
|
1560
1593
|
enum DapDebuggerQuirk {
|
|
1561
|
-
NONE,
|
|
1562
|
-
QUERY_THREADS,
|
|
1594
|
+
NONE = 0,
|
|
1595
|
+
QUERY_THREADS = 1,
|
|
1563
1596
|
}
|
|
1564
1597
|
|
|
1565
1598
|
|
|
@@ -1574,10 +1607,10 @@ export namespace Foundry {
|
|
|
1574
1607
|
* @gir-type Flags
|
|
1575
1608
|
*/
|
|
1576
1609
|
enum DebuggerWatchAccess {
|
|
1577
|
-
NONE,
|
|
1578
|
-
READ,
|
|
1579
|
-
WRITE,
|
|
1580
|
-
READWRITE,
|
|
1610
|
+
NONE = 0,
|
|
1611
|
+
READ = 1,
|
|
1612
|
+
WRITE = 2,
|
|
1613
|
+
READWRITE = 3,
|
|
1581
1614
|
}
|
|
1582
1615
|
|
|
1583
1616
|
|
|
@@ -1592,11 +1625,11 @@ export namespace Foundry {
|
|
|
1592
1625
|
* @gir-type Flags
|
|
1593
1626
|
*/
|
|
1594
1627
|
enum ModifierType {
|
|
1595
|
-
CONTROL,
|
|
1596
|
-
SHIFT,
|
|
1597
|
-
ALT,
|
|
1598
|
-
SUPER,
|
|
1599
|
-
COMMAND,
|
|
1628
|
+
CONTROL = 1,
|
|
1629
|
+
SHIFT = 2,
|
|
1630
|
+
ALT = 4,
|
|
1631
|
+
SUPER = 8,
|
|
1632
|
+
COMMAND = 16,
|
|
1600
1633
|
}
|
|
1601
1634
|
|
|
1602
1635
|
|
|
@@ -1611,13 +1644,13 @@ export namespace Foundry {
|
|
|
1611
1644
|
* @gir-type Flags
|
|
1612
1645
|
*/
|
|
1613
1646
|
enum VcsFileStatus {
|
|
1614
|
-
CURRENT,
|
|
1615
|
-
MODIFIED_IN_STAGE,
|
|
1616
|
-
MODIFIED_IN_TREE,
|
|
1617
|
-
NEW_IN_STAGE,
|
|
1618
|
-
NEW_IN_TREE,
|
|
1619
|
-
DELETED_IN_STAGE,
|
|
1620
|
-
DELETED_IN_TREE,
|
|
1647
|
+
CURRENT = 0,
|
|
1648
|
+
MODIFIED_IN_STAGE = 2,
|
|
1649
|
+
MODIFIED_IN_TREE = 4,
|
|
1650
|
+
NEW_IN_STAGE = 8,
|
|
1651
|
+
NEW_IN_TREE = 16,
|
|
1652
|
+
DELETED_IN_STAGE = 32,
|
|
1653
|
+
DELETED_IN_TREE = 64,
|
|
1621
1654
|
}
|
|
1622
1655
|
|
|
1623
1656
|
|
|
@@ -1632,10 +1665,10 @@ export namespace Foundry {
|
|
|
1632
1665
|
* @gir-type Flags
|
|
1633
1666
|
*/
|
|
1634
1667
|
enum VcsLineChange {
|
|
1635
|
-
ADDED,
|
|
1636
|
-
REMOVED,
|
|
1637
|
-
CHANGED,
|
|
1638
|
-
PREVIOUS_REMOVED,
|
|
1668
|
+
ADDED = 1,
|
|
1669
|
+
REMOVED = 2,
|
|
1670
|
+
CHANGED = 4,
|
|
1671
|
+
PREVIOUS_REMOVED = 8,
|
|
1639
1672
|
}
|
|
1640
1673
|
|
|
1641
1674
|
|
|
@@ -2560,7 +2593,7 @@ export namespace Foundry {
|
|
|
2560
2593
|
|
|
2561
2594
|
namespace AcpManager {
|
|
2562
2595
|
// Signal signatures
|
|
2563
|
-
interface SignalSignatures extends Service.SignalSignatures {
|
|
2596
|
+
interface SignalSignatures extends Service.SignalSignatures, Gio.ListModel.SignalSignatures {
|
|
2564
2597
|
"notify::context": (pspec: GObject.ParamSpec) => void;
|
|
2565
2598
|
}
|
|
2566
2599
|
|
|
@@ -3406,7 +3439,7 @@ export namespace Foundry {
|
|
|
3406
3439
|
|
|
3407
3440
|
namespace AcpProvider {
|
|
3408
3441
|
// Signal signatures
|
|
3409
|
-
interface SignalSignatures extends Contextual.SignalSignatures {
|
|
3442
|
+
interface SignalSignatures extends Contextual.SignalSignatures, Gio.ListModel.SignalSignatures {
|
|
3410
3443
|
"notify::plugin-info": (pspec: GObject.ParamSpec) => void;
|
|
3411
3444
|
"notify::context": (pspec: GObject.ParamSpec) => void;
|
|
3412
3445
|
}
|
|
@@ -4656,7 +4689,7 @@ export namespace Foundry {
|
|
|
4656
4689
|
|
|
4657
4690
|
namespace ActionMuxer {
|
|
4658
4691
|
// Signal signatures
|
|
4659
|
-
interface SignalSignatures extends GObject.Object.SignalSignatures {}
|
|
4692
|
+
interface SignalSignatures extends GObject.Object.SignalSignatures, Gio.ActionGroup.SignalSignatures {}
|
|
4660
4693
|
|
|
4661
4694
|
// Constructor properties interface
|
|
4662
4695
|
interface ConstructorProps extends GObject.Object.ConstructorProps, Gio.ActionGroup.ConstructorProps {}
|
|
@@ -6055,7 +6088,7 @@ export namespace Foundry {
|
|
|
6055
6088
|
|
|
6056
6089
|
namespace BuildPipeline {
|
|
6057
6090
|
// Signal signatures
|
|
6058
|
-
interface SignalSignatures extends Contextual.SignalSignatures {
|
|
6091
|
+
interface SignalSignatures extends Contextual.SignalSignatures, Gio.ListModel.SignalSignatures {
|
|
6059
6092
|
"notify::arch": (pspec: GObject.ParamSpec) => void;
|
|
6060
6093
|
"notify::build-system": (pspec: GObject.ParamSpec) => void;
|
|
6061
6094
|
"notify::config": (pspec: GObject.ParamSpec) => void;
|
|
@@ -9221,6 +9254,7 @@ export namespace Foundry {
|
|
|
9221
9254
|
/**
|
|
9222
9255
|
* @param args
|
|
9223
9256
|
* @param options
|
|
9257
|
+
* @throws GLib.Error
|
|
9224
9258
|
*/
|
|
9225
9259
|
lookup(args: string, options: CliOptions): CliCommand;
|
|
9226
9260
|
|
|
@@ -9993,7 +10027,7 @@ export namespace Foundry {
|
|
|
9993
10027
|
|
|
9994
10028
|
namespace CommandManager {
|
|
9995
10029
|
// Signal signatures
|
|
9996
|
-
interface SignalSignatures extends Service.SignalSignatures {
|
|
10030
|
+
interface SignalSignatures extends Service.SignalSignatures, Gio.ListModel.SignalSignatures {
|
|
9997
10031
|
"notify::context": (pspec: GObject.ParamSpec) => void;
|
|
9998
10032
|
}
|
|
9999
10033
|
|
|
@@ -10158,7 +10192,7 @@ export namespace Foundry {
|
|
|
10158
10192
|
|
|
10159
10193
|
namespace CommandProvider {
|
|
10160
10194
|
// Signal signatures
|
|
10161
|
-
interface SignalSignatures extends Contextual.SignalSignatures {
|
|
10195
|
+
interface SignalSignatures extends Contextual.SignalSignatures, Gio.ListModel.SignalSignatures {
|
|
10162
10196
|
"notify::context": (pspec: GObject.ParamSpec) => void;
|
|
10163
10197
|
}
|
|
10164
10198
|
|
|
@@ -10740,6 +10774,7 @@ export namespace Foundry {
|
|
|
10740
10774
|
* @param file a {@link Gio.File} representing the file to lookup
|
|
10741
10775
|
* @param system_includes system include dirs if any
|
|
10742
10776
|
* @returns A string array or `null` if there was a failure to locate or parse the command.
|
|
10777
|
+
* @throws GLib.Error
|
|
10743
10778
|
*/
|
|
10744
10779
|
lookup(file: Gio.File, system_includes: string): [string[] | null, Gio.File | null];
|
|
10745
10780
|
}
|
|
@@ -11878,7 +11913,7 @@ export namespace Foundry {
|
|
|
11878
11913
|
|
|
11879
11914
|
namespace ConfigManager {
|
|
11880
11915
|
// Signal signatures
|
|
11881
|
-
interface SignalSignatures extends Service.SignalSignatures {
|
|
11916
|
+
interface SignalSignatures extends Service.SignalSignatures, Gio.ListModel.SignalSignatures {
|
|
11882
11917
|
"notify::config": (pspec: GObject.ParamSpec) => void;
|
|
11883
11918
|
"notify::context": (pspec: GObject.ParamSpec) => void;
|
|
11884
11919
|
}
|
|
@@ -12065,7 +12100,7 @@ export namespace Foundry {
|
|
|
12065
12100
|
|
|
12066
12101
|
namespace ConfigProvider {
|
|
12067
12102
|
// Signal signatures
|
|
12068
|
-
interface SignalSignatures extends Contextual.SignalSignatures {
|
|
12103
|
+
interface SignalSignatures extends Contextual.SignalSignatures, Gio.ListModel.SignalSignatures {
|
|
12069
12104
|
"notify::context": (pspec: GObject.ParamSpec) => void;
|
|
12070
12105
|
}
|
|
12071
12106
|
|
|
@@ -13315,6 +13350,7 @@ export namespace Foundry {
|
|
|
13315
13350
|
* appropriate error.
|
|
13316
13351
|
* @returns a {@link Foundry.Context} or `error` is set.
|
|
13317
13352
|
* @since 1.1
|
|
13353
|
+
* @throws GLib.Error
|
|
13318
13354
|
*/
|
|
13319
13355
|
acquire(): Context;
|
|
13320
13356
|
|
|
@@ -13334,6 +13370,7 @@ export namespace Foundry {
|
|
|
13334
13370
|
* If the context is already in shutdown, then `null` is returned and
|
|
13335
13371
|
* `error` is set.
|
|
13336
13372
|
* @returns a {@link Foundry.Inhibitor} or `null` and `error` is set.
|
|
13373
|
+
* @throws GLib.Error
|
|
13337
13374
|
*/
|
|
13338
13375
|
inhibit(): Inhibitor;
|
|
13339
13376
|
|
|
@@ -13742,7 +13779,7 @@ export namespace Foundry {
|
|
|
13742
13779
|
* @signal
|
|
13743
13780
|
* @run-last
|
|
13744
13781
|
*/
|
|
13745
|
-
event: (
|
|
13782
|
+
event: (object: DebuggerEvent) => void;
|
|
13746
13783
|
"notify::address-space": (pspec: GObject.ParamSpec) => void;
|
|
13747
13784
|
"notify::log-messages": (pspec: GObject.ParamSpec) => void;
|
|
13748
13785
|
"notify::modules": (pspec: GObject.ParamSpec) => void;
|
|
@@ -14376,7 +14413,7 @@ export namespace Foundry {
|
|
|
14376
14413
|
|
|
14377
14414
|
namespace DebuggerActions {
|
|
14378
14415
|
// Signal signatures
|
|
14379
|
-
interface SignalSignatures extends GObject.Object.SignalSignatures {
|
|
14416
|
+
interface SignalSignatures extends GObject.Object.SignalSignatures, Gio.ActionGroup.SignalSignatures {
|
|
14380
14417
|
"notify::debugger": (pspec: GObject.ParamSpec) => void;
|
|
14381
14418
|
"notify::thread": (pspec: GObject.ParamSpec) => void;
|
|
14382
14419
|
}
|
|
@@ -18901,7 +18938,7 @@ export namespace Foundry {
|
|
|
18901
18938
|
|
|
18902
18939
|
namespace DeviceManager {
|
|
18903
18940
|
// Signal signatures
|
|
18904
|
-
interface SignalSignatures extends Service.SignalSignatures {
|
|
18941
|
+
interface SignalSignatures extends Service.SignalSignatures, Gio.ListModel.SignalSignatures {
|
|
18905
18942
|
"notify::device": (pspec: GObject.ParamSpec) => void;
|
|
18906
18943
|
"notify::context": (pspec: GObject.ParamSpec) => void;
|
|
18907
18944
|
}
|
|
@@ -19086,7 +19123,7 @@ export namespace Foundry {
|
|
|
19086
19123
|
|
|
19087
19124
|
namespace DeviceProvider {
|
|
19088
19125
|
// Signal signatures
|
|
19089
|
-
interface SignalSignatures extends Contextual.SignalSignatures {
|
|
19126
|
+
interface SignalSignatures extends Contextual.SignalSignatures, Gio.ListModel.SignalSignatures {
|
|
19090
19127
|
"notify::context": (pspec: GObject.ParamSpec) => void;
|
|
19091
19128
|
}
|
|
19092
19129
|
|
|
@@ -20577,7 +20614,7 @@ export namespace Foundry {
|
|
|
20577
20614
|
|
|
20578
20615
|
namespace DirectoryListing {
|
|
20579
20616
|
// Signal signatures
|
|
20580
|
-
interface SignalSignatures extends Contextual.SignalSignatures {
|
|
20617
|
+
interface SignalSignatures extends Contextual.SignalSignatures, Gio.ListModel.SignalSignatures {
|
|
20581
20618
|
"notify::attributes": (pspec: GObject.ParamSpec) => void;
|
|
20582
20619
|
"notify::directory": (pspec: GObject.ParamSpec) => void;
|
|
20583
20620
|
"notify::include-parent": (pspec: GObject.ParamSpec) => void;
|
|
@@ -21028,7 +21065,7 @@ export namespace Foundry {
|
|
|
21028
21065
|
* @signal
|
|
21029
21066
|
* @run-last
|
|
21030
21067
|
*/
|
|
21031
|
-
"remove-file": (
|
|
21068
|
+
"remove-file": (file: Gio.File) => void;
|
|
21032
21069
|
}
|
|
21033
21070
|
|
|
21034
21071
|
// Constructor properties interface
|
|
@@ -21115,11 +21152,13 @@ export namespace Foundry {
|
|
|
21115
21152
|
|
|
21116
21153
|
/**
|
|
21117
21154
|
* @param result
|
|
21155
|
+
* @throws GLib.Error
|
|
21118
21156
|
*/
|
|
21119
21157
|
execute_finish(result: Gio.AsyncResult): boolean;
|
|
21120
21158
|
|
|
21121
21159
|
/**
|
|
21122
21160
|
* @param cancellable
|
|
21161
|
+
* @throws GLib.Error
|
|
21123
21162
|
*/
|
|
21124
21163
|
execute_sync(cancellable: Gio.Cancellable | null): boolean;
|
|
21125
21164
|
}
|
|
@@ -22245,7 +22284,7 @@ export namespace Foundry {
|
|
|
22245
22284
|
|
|
22246
22285
|
namespace DocumentationMatches {
|
|
22247
22286
|
// Signal signatures
|
|
22248
|
-
interface SignalSignatures extends GObject.Object.SignalSignatures {
|
|
22287
|
+
interface SignalSignatures extends GObject.Object.SignalSignatures, Gio.ListModel.SignalSignatures {
|
|
22249
22288
|
"notify::query": (pspec: GObject.ParamSpec) => void;
|
|
22250
22289
|
"notify::sections": (pspec: GObject.ParamSpec) => void;
|
|
22251
22290
|
}
|
|
@@ -23403,17 +23442,17 @@ export namespace Foundry {
|
|
|
23403
23442
|
|
|
23404
23443
|
namespace ExtensionSet {
|
|
23405
23444
|
// Signal signatures
|
|
23406
|
-
interface SignalSignatures extends Contextual.SignalSignatures {
|
|
23445
|
+
interface SignalSignatures extends Contextual.SignalSignatures, Gio.ListModel.SignalSignatures {
|
|
23407
23446
|
/**
|
|
23408
23447
|
* @signal
|
|
23409
23448
|
* @run-last
|
|
23410
23449
|
*/
|
|
23411
|
-
"extension-added": (
|
|
23450
|
+
"extension-added": (object: Peas.PluginInfo, p0: GObject.Object) => void;
|
|
23412
23451
|
/**
|
|
23413
23452
|
* @signal
|
|
23414
23453
|
* @run-last
|
|
23415
23454
|
*/
|
|
23416
|
-
"extension-removed": (
|
|
23455
|
+
"extension-removed": (object: Peas.PluginInfo, p0: GObject.Object) => void;
|
|
23417
23456
|
/**
|
|
23418
23457
|
* @signal
|
|
23419
23458
|
* @run-last
|
|
@@ -25841,7 +25880,7 @@ export namespace Foundry {
|
|
|
25841
25880
|
|
|
25842
25881
|
namespace FlatpakExtensions {
|
|
25843
25882
|
// Signal signatures
|
|
25844
|
-
interface SignalSignatures extends FlatpakList.SignalSignatures {
|
|
25883
|
+
interface SignalSignatures extends FlatpakList.SignalSignatures, Gio.ListModel.SignalSignatures {
|
|
25845
25884
|
"notify::item-type": (pspec: GObject.ParamSpec) => void;
|
|
25846
25885
|
}
|
|
25847
25886
|
|
|
@@ -25997,7 +26036,7 @@ export namespace Foundry {
|
|
|
25997
26036
|
|
|
25998
26037
|
namespace FlatpakList {
|
|
25999
26038
|
// Signal signatures
|
|
26000
|
-
interface SignalSignatures extends FlatpakSerializable.SignalSignatures {
|
|
26039
|
+
interface SignalSignatures extends FlatpakSerializable.SignalSignatures, Gio.ListModel.SignalSignatures {
|
|
26001
26040
|
"notify::item-type": (pspec: GObject.ParamSpec) => void;
|
|
26002
26041
|
}
|
|
26003
26042
|
|
|
@@ -27860,7 +27899,7 @@ export namespace Foundry {
|
|
|
27860
27899
|
|
|
27861
27900
|
namespace FlatpakModules {
|
|
27862
27901
|
// Signal signatures
|
|
27863
|
-
interface SignalSignatures extends FlatpakList.SignalSignatures {
|
|
27902
|
+
interface SignalSignatures extends FlatpakList.SignalSignatures, Gio.ListModel.SignalSignatures {
|
|
27864
27903
|
"notify::item-type": (pspec: GObject.ParamSpec) => void;
|
|
27865
27904
|
}
|
|
27866
27905
|
|
|
@@ -28660,6 +28699,7 @@ export namespace Foundry {
|
|
|
28660
28699
|
/**
|
|
28661
28700
|
* @param path
|
|
28662
28701
|
* @returns a {@link Gio.File} or `null` and `error` is set
|
|
28702
|
+
* @throws GLib.Error
|
|
28663
28703
|
*/
|
|
28664
28704
|
resolve_file(path: string): Gio.File;
|
|
28665
28705
|
|
|
@@ -30250,7 +30290,7 @@ export namespace Foundry {
|
|
|
30250
30290
|
|
|
30251
30291
|
namespace FlatpakSources {
|
|
30252
30292
|
// Signal signatures
|
|
30253
|
-
interface SignalSignatures extends FlatpakList.SignalSignatures {
|
|
30293
|
+
interface SignalSignatures extends FlatpakList.SignalSignatures, Gio.ListModel.SignalSignatures {
|
|
30254
30294
|
"notify::item-type": (pspec: GObject.ParamSpec) => void;
|
|
30255
30295
|
}
|
|
30256
30296
|
|
|
@@ -30930,7 +30970,7 @@ export namespace Foundry {
|
|
|
30930
30970
|
|
|
30931
30971
|
namespace ForgeListing {
|
|
30932
30972
|
// Signal signatures
|
|
30933
|
-
interface SignalSignatures extends GObject.Object.SignalSignatures {
|
|
30973
|
+
interface SignalSignatures extends GObject.Object.SignalSignatures, Gio.ListModel.SignalSignatures {
|
|
30934
30974
|
"notify::auto-load": (pspec: GObject.ParamSpec) => void;
|
|
30935
30975
|
"notify::n-pages": (pspec: GObject.ParamSpec) => void;
|
|
30936
30976
|
"notify::page-size": (pspec: GObject.ParamSpec) => void;
|
|
@@ -31206,7 +31246,7 @@ export namespace Foundry {
|
|
|
31206
31246
|
|
|
31207
31247
|
namespace ForgeManager {
|
|
31208
31248
|
// Signal signatures
|
|
31209
|
-
interface SignalSignatures extends Service.SignalSignatures {
|
|
31249
|
+
interface SignalSignatures extends Service.SignalSignatures, Gio.ListModel.SignalSignatures {
|
|
31210
31250
|
"notify::forge": (pspec: GObject.ParamSpec) => void;
|
|
31211
31251
|
"notify::context": (pspec: GObject.ParamSpec) => void;
|
|
31212
31252
|
}
|
|
@@ -33946,7 +33986,7 @@ export namespace Foundry {
|
|
|
33946
33986
|
|
|
33947
33987
|
namespace GitStatusList {
|
|
33948
33988
|
// Signal signatures
|
|
33949
|
-
interface SignalSignatures extends GObject.Object.SignalSignatures {}
|
|
33989
|
+
interface SignalSignatures extends GObject.Object.SignalSignatures, Gio.ListModel.SignalSignatures {}
|
|
33950
33990
|
|
|
33951
33991
|
// Constructor properties interface
|
|
33952
33992
|
interface ConstructorProps<A extends GObject.Object = GObject.Object> extends GObject.Object.ConstructorProps, Gio.ListModel.ConstructorProps {}
|
|
@@ -37482,7 +37522,7 @@ export namespace Foundry {
|
|
|
37482
37522
|
|
|
37483
37523
|
namespace LlmManager {
|
|
37484
37524
|
// Signal signatures
|
|
37485
|
-
interface SignalSignatures extends Service.SignalSignatures {
|
|
37525
|
+
interface SignalSignatures extends Service.SignalSignatures, Gio.ListModel.SignalSignatures {
|
|
37486
37526
|
"notify::context": (pspec: GObject.ParamSpec) => void;
|
|
37487
37527
|
}
|
|
37488
37528
|
|
|
@@ -39219,7 +39259,7 @@ export namespace Foundry {
|
|
|
39219
39259
|
|
|
39220
39260
|
namespace LogManager {
|
|
39221
39261
|
// Signal signatures
|
|
39222
|
-
interface SignalSignatures extends Service.SignalSignatures {
|
|
39262
|
+
interface SignalSignatures extends Service.SignalSignatures, Gio.ListModel.SignalSignatures {
|
|
39223
39263
|
"notify::context": (pspec: GObject.ParamSpec) => void;
|
|
39224
39264
|
}
|
|
39225
39265
|
|
|
@@ -39914,7 +39954,7 @@ export namespace Foundry {
|
|
|
39914
39954
|
|
|
39915
39955
|
namespace LspManager {
|
|
39916
39956
|
// Signal signatures
|
|
39917
|
-
interface SignalSignatures extends Service.SignalSignatures {
|
|
39957
|
+
interface SignalSignatures extends Service.SignalSignatures, Gio.ListModel.SignalSignatures {
|
|
39918
39958
|
"notify::context": (pspec: GObject.ParamSpec) => void;
|
|
39919
39959
|
}
|
|
39920
39960
|
|
|
@@ -40087,7 +40127,7 @@ export namespace Foundry {
|
|
|
40087
40127
|
|
|
40088
40128
|
namespace LspProvider {
|
|
40089
40129
|
// Signal signatures
|
|
40090
|
-
interface SignalSignatures extends Contextual.SignalSignatures {
|
|
40130
|
+
interface SignalSignatures extends Contextual.SignalSignatures, Gio.ListModel.SignalSignatures {
|
|
40091
40131
|
"notify::plugin-info": (pspec: GObject.ParamSpec) => void;
|
|
40092
40132
|
"notify::server": (pspec: GObject.ParamSpec) => void;
|
|
40093
40133
|
"notify::context": (pspec: GObject.ParamSpec) => void;
|
|
@@ -41400,7 +41440,7 @@ export namespace Foundry {
|
|
|
41400
41440
|
|
|
41401
41441
|
namespace OnTypeDiagnostics {
|
|
41402
41442
|
// Signal signatures
|
|
41403
|
-
interface SignalSignatures extends GObject.Object.SignalSignatures {}
|
|
41443
|
+
interface SignalSignatures extends GObject.Object.SignalSignatures, Gio.ListModel.SignalSignatures {}
|
|
41404
41444
|
|
|
41405
41445
|
// Constructor properties interface
|
|
41406
41446
|
interface ConstructorProps<A extends GObject.Object = GObject.Object> extends GObject.Object.ConstructorProps, Gio.ListModel.ConstructorProps {}
|
|
@@ -41895,7 +41935,7 @@ export namespace Foundry {
|
|
|
41895
41935
|
|
|
41896
41936
|
namespace OperationManager {
|
|
41897
41937
|
// Signal signatures
|
|
41898
|
-
interface SignalSignatures extends Service.SignalSignatures {
|
|
41938
|
+
interface SignalSignatures extends Service.SignalSignatures, Gio.ListModel.SignalSignatures {
|
|
41899
41939
|
"notify::n-items": (pspec: GObject.ParamSpec) => void;
|
|
41900
41940
|
"notify::context": (pspec: GObject.ParamSpec) => void;
|
|
41901
41941
|
}
|
|
@@ -42211,7 +42251,7 @@ export namespace Foundry {
|
|
|
42211
42251
|
|
|
42212
42252
|
namespace PluginLspProvider {
|
|
42213
42253
|
// Signal signatures
|
|
42214
|
-
interface SignalSignatures extends LspProvider.SignalSignatures {
|
|
42254
|
+
interface SignalSignatures extends LspProvider.SignalSignatures, Gio.ListModel.SignalSignatures {
|
|
42215
42255
|
"notify::plugin-info": (pspec: GObject.ParamSpec) => void;
|
|
42216
42256
|
"notify::server": (pspec: GObject.ParamSpec) => void;
|
|
42217
42257
|
"notify::context": (pspec: GObject.ParamSpec) => void;
|
|
@@ -42504,6 +42544,7 @@ export namespace Foundry {
|
|
|
42504
42544
|
|
|
42505
42545
|
/**
|
|
42506
42546
|
* @param args
|
|
42547
|
+
* @throws GLib.Error
|
|
42507
42548
|
*/
|
|
42508
42549
|
append_args_parsed(args: string): boolean;
|
|
42509
42550
|
|
|
@@ -42518,6 +42559,7 @@ export namespace Foundry {
|
|
|
42518
42559
|
* The stream is created using UNIX pipes which are attached to the
|
|
42519
42560
|
* stdin/stdout of the child process.
|
|
42520
42561
|
* @returns a {@link Gio.IOStream} if successful; otherwise `null` and `error` is set.
|
|
42562
|
+
* @throws GLib.Error
|
|
42521
42563
|
*/
|
|
42522
42564
|
create_stdio_stream(): Gio.IOStream;
|
|
42523
42565
|
|
|
@@ -42545,6 +42587,7 @@ export namespace Foundry {
|
|
|
42545
42587
|
* file-descriptors after calling this function.
|
|
42546
42588
|
* @param unix_fd_map a {@link Foundry.UnixFDMap}
|
|
42547
42589
|
* @returns `true` if successful; otherwise `false` and `error` is set.
|
|
42590
|
+
* @throws GLib.Error
|
|
42548
42591
|
*/
|
|
42549
42592
|
merge_unix_fd_map(unix_fd_map: UnixFDMap): boolean;
|
|
42550
42593
|
|
|
@@ -42647,6 +42690,7 @@ export namespace Foundry {
|
|
|
42647
42690
|
*
|
|
42648
42691
|
* If the subprocess fails to launch, then `null` is returned and `error` is set.
|
|
42649
42692
|
* @returns an {@link Gio.Subprocess} if successful; otherwise `null` and `error` is set.
|
|
42693
|
+
* @throws GLib.Error
|
|
42650
42694
|
*/
|
|
42651
42695
|
spawn(): Gio.Subprocess;
|
|
42652
42696
|
|
|
@@ -42655,6 +42699,7 @@ export namespace Foundry {
|
|
|
42655
42699
|
* flags for the GSubprocess which may override other settings.
|
|
42656
42700
|
* @param flags
|
|
42657
42701
|
* @returns a {@link Gio.Subprocess} or `null` upon error.
|
|
42702
|
+
* @throws GLib.Error
|
|
42658
42703
|
*/
|
|
42659
42704
|
spawn_with_flags(flags: Gio.SubprocessFlags): Gio.Subprocess;
|
|
42660
42705
|
|
|
@@ -42722,7 +42767,7 @@ export namespace Foundry {
|
|
|
42722
42767
|
|
|
42723
42768
|
namespace PtyDiagnostics {
|
|
42724
42769
|
// Signal signatures
|
|
42725
|
-
interface SignalSignatures extends Contextual.SignalSignatures {
|
|
42770
|
+
interface SignalSignatures extends Contextual.SignalSignatures, Gio.ListModel.SignalSignatures {
|
|
42726
42771
|
"notify::context": (pspec: GObject.ParamSpec) => void;
|
|
42727
42772
|
}
|
|
42728
42773
|
|
|
@@ -42785,6 +42830,9 @@ export namespace Foundry {
|
|
|
42785
42830
|
static register(regex: GLib.Regex): void;
|
|
42786
42831
|
|
|
42787
42832
|
// Methods
|
|
42833
|
+
/**
|
|
42834
|
+
* @throws GLib.Error
|
|
42835
|
+
*/
|
|
42788
42836
|
create_producer(): number;
|
|
42789
42837
|
|
|
42790
42838
|
get_fd(): number;
|
|
@@ -43517,7 +43565,7 @@ export namespace Foundry {
|
|
|
43517
43565
|
* @signal
|
|
43518
43566
|
* @run-last
|
|
43519
43567
|
*/
|
|
43520
|
-
started: (
|
|
43568
|
+
started: (object: Gio.Subprocess) => void;
|
|
43521
43569
|
/**
|
|
43522
43570
|
* @signal
|
|
43523
43571
|
* @run-last
|
|
@@ -44445,7 +44493,7 @@ export namespace Foundry {
|
|
|
44445
44493
|
|
|
44446
44494
|
namespace SdkManager {
|
|
44447
44495
|
// Signal signatures
|
|
44448
|
-
interface SignalSignatures extends Service.SignalSignatures {
|
|
44496
|
+
interface SignalSignatures extends Service.SignalSignatures, Gio.ListModel.SignalSignatures {
|
|
44449
44497
|
"notify::sdk": (pspec: GObject.ParamSpec) => void;
|
|
44450
44498
|
"notify::context": (pspec: GObject.ParamSpec) => void;
|
|
44451
44499
|
}
|
|
@@ -44630,7 +44678,7 @@ export namespace Foundry {
|
|
|
44630
44678
|
|
|
44631
44679
|
namespace SdkProvider {
|
|
44632
44680
|
// Signal signatures
|
|
44633
|
-
interface SignalSignatures extends Contextual.SignalSignatures {
|
|
44681
|
+
interface SignalSignatures extends Contextual.SignalSignatures, Gio.ListModel.SignalSignatures {
|
|
44634
44682
|
"notify::context": (pspec: GObject.ParamSpec) => void;
|
|
44635
44683
|
}
|
|
44636
44684
|
|
|
@@ -46291,13 +46339,13 @@ export namespace Foundry {
|
|
|
46291
46339
|
|
|
46292
46340
|
namespace Settings {
|
|
46293
46341
|
// Signal signatures
|
|
46294
|
-
interface SignalSignatures extends Contextual.SignalSignatures {
|
|
46342
|
+
interface SignalSignatures extends Contextual.SignalSignatures, Gio.ActionGroup.SignalSignatures {
|
|
46295
46343
|
/**
|
|
46296
46344
|
* @signal
|
|
46297
46345
|
* @detailed
|
|
46298
46346
|
* @run-last
|
|
46299
46347
|
*/
|
|
46300
|
-
changed: (
|
|
46348
|
+
changed: (object: string) => void;
|
|
46301
46349
|
"notify::path": (pspec: GObject.ParamSpec) => void;
|
|
46302
46350
|
"notify::schema-id": (pspec: GObject.ParamSpec) => void;
|
|
46303
46351
|
"notify::context": (pspec: GObject.ParamSpec) => void;
|
|
@@ -46306,20 +46354,20 @@ export namespace Foundry {
|
|
|
46306
46354
|
* @detailed
|
|
46307
46355
|
* @run-last
|
|
46308
46356
|
*/
|
|
46309
|
-
"changed::path": (
|
|
46357
|
+
"changed::path": (object: string) => void;
|
|
46310
46358
|
/**
|
|
46311
46359
|
* @signal
|
|
46312
46360
|
* @detailed
|
|
46313
46361
|
* @run-last
|
|
46314
46362
|
*/
|
|
46315
|
-
"changed::schema-id": (
|
|
46363
|
+
"changed::schema-id": (object: string) => void;
|
|
46316
46364
|
/**
|
|
46317
46365
|
* @signal
|
|
46318
46366
|
* @detailed
|
|
46319
46367
|
* @run-last
|
|
46320
46368
|
*/
|
|
46321
|
-
"changed::context": (
|
|
46322
|
-
[key: `changed::${string}`]: (
|
|
46369
|
+
"changed::context": (object: string) => void;
|
|
46370
|
+
[key: `changed::${string}`]: (object: string) => void;
|
|
46323
46371
|
}
|
|
46324
46372
|
|
|
46325
46373
|
// Constructor properties interface
|
|
@@ -49032,7 +49080,7 @@ export namespace Foundry {
|
|
|
49032
49080
|
|
|
49033
49081
|
namespace TestManager {
|
|
49034
49082
|
// Signal signatures
|
|
49035
|
-
interface SignalSignatures extends Service.SignalSignatures {
|
|
49083
|
+
interface SignalSignatures extends Service.SignalSignatures, Gio.ListModel.SignalSignatures {
|
|
49036
49084
|
"notify::context": (pspec: GObject.ParamSpec) => void;
|
|
49037
49085
|
}
|
|
49038
49086
|
|
|
@@ -49490,7 +49538,7 @@ export namespace Foundry {
|
|
|
49490
49538
|
|
|
49491
49539
|
namespace TestSuite {
|
|
49492
49540
|
// Signal signatures
|
|
49493
|
-
interface SignalSignatures extends GObject.Object.SignalSignatures {
|
|
49541
|
+
interface SignalSignatures extends GObject.Object.SignalSignatures, Gio.ListModel.SignalSignatures {
|
|
49494
49542
|
"notify::name": (pspec: GObject.ParamSpec) => void;
|
|
49495
49543
|
}
|
|
49496
49544
|
|
|
@@ -49978,7 +50026,7 @@ export namespace Foundry {
|
|
|
49978
50026
|
* @since 1.1
|
|
49979
50027
|
* @run-last
|
|
49980
50028
|
*/
|
|
49981
|
-
saved: (
|
|
50029
|
+
saved: (file: Gio.File) => void;
|
|
49982
50030
|
"notify::addins": (pspec: GObject.ParamSpec) => void;
|
|
49983
50031
|
"notify::buffer": (pspec: GObject.ParamSpec) => void;
|
|
49984
50032
|
"notify::draft-id": (pspec: GObject.ParamSpec) => void;
|
|
@@ -51157,12 +51205,12 @@ export namespace Foundry {
|
|
|
51157
51205
|
* @signal
|
|
51158
51206
|
* @run-last
|
|
51159
51207
|
*/
|
|
51160
|
-
"document-added": (
|
|
51208
|
+
"document-added": (object: Gio.File, p0: TextDocument) => void;
|
|
51161
51209
|
/**
|
|
51162
51210
|
* @signal
|
|
51163
51211
|
* @run-last
|
|
51164
51212
|
*/
|
|
51165
|
-
"document-removed": (
|
|
51213
|
+
"document-removed": (object: Gio.File) => void;
|
|
51166
51214
|
/**
|
|
51167
51215
|
* This signal is emitted whenever a {@link Foundry.TextDocument} managed
|
|
51168
51216
|
* by the manager emits "saved".
|
|
@@ -51170,7 +51218,7 @@ export namespace Foundry {
|
|
|
51170
51218
|
* @since 1.1
|
|
51171
51219
|
* @run-last
|
|
51172
51220
|
*/
|
|
51173
|
-
"document-saved": (
|
|
51221
|
+
"document-saved": (document: TextDocument) => void;
|
|
51174
51222
|
"notify::context": (pspec: GObject.ParamSpec) => void;
|
|
51175
51223
|
}
|
|
51176
51224
|
|
|
@@ -52130,7 +52178,7 @@ export namespace Foundry {
|
|
|
52130
52178
|
* @signal
|
|
52131
52179
|
* @run-last
|
|
52132
52180
|
*/
|
|
52133
|
-
changed: (
|
|
52181
|
+
changed: (object: TextSetting) => void;
|
|
52134
52182
|
"notify::document": (pspec: GObject.ParamSpec) => void;
|
|
52135
52183
|
"notify::plugin-info": (pspec: GObject.ParamSpec) => void;
|
|
52136
52184
|
"notify::context": (pspec: GObject.ParamSpec) => void;
|
|
@@ -53041,12 +53089,14 @@ export namespace Foundry {
|
|
|
53041
53089
|
* @param dest_read_fd the FD number in the destination process for the read side (stdin)
|
|
53042
53090
|
* @param dest_write_fd the FD number in the destination process for the write side (stdout)
|
|
53043
53091
|
* @returns a {@link Gio.IOStream} if successful; otherwise `null` and `error` is set.
|
|
53092
|
+
* @throws GLib.Error
|
|
53044
53093
|
*/
|
|
53045
53094
|
create_stream(dest_read_fd: number, dest_write_fd: number): Gio.IOStream;
|
|
53046
53095
|
|
|
53047
53096
|
/**
|
|
53048
53097
|
* @param index
|
|
53049
53098
|
* @param dest_fd
|
|
53099
|
+
* @throws GLib.Error
|
|
53050
53100
|
*/
|
|
53051
53101
|
get(index: number, dest_fd: number): number;
|
|
53052
53102
|
|
|
@@ -53058,6 +53108,7 @@ export namespace Foundry {
|
|
|
53058
53108
|
* @param filename
|
|
53059
53109
|
* @param mode
|
|
53060
53110
|
* @param dest_fd
|
|
53111
|
+
* @throws GLib.Error
|
|
53061
53112
|
*/
|
|
53062
53113
|
open_file(filename: string, mode: number, dest_fd: number): boolean;
|
|
53063
53114
|
|
|
@@ -53075,6 +53126,7 @@ export namespace Foundry {
|
|
|
53075
53126
|
|
|
53076
53127
|
/**
|
|
53077
53128
|
* @param dest_fd
|
|
53129
|
+
* @throws GLib.Error
|
|
53078
53130
|
*/
|
|
53079
53131
|
silence_fd(dest_fd: number): boolean;
|
|
53080
53132
|
|
|
@@ -53092,6 +53144,7 @@ export namespace Foundry {
|
|
|
53092
53144
|
|
|
53093
53145
|
/**
|
|
53094
53146
|
* @param other
|
|
53147
|
+
* @throws GLib.Error
|
|
53095
53148
|
*/
|
|
53096
53149
|
steal_from(other: UnixFDMap): boolean;
|
|
53097
53150
|
|
|
@@ -54765,7 +54818,7 @@ export namespace Foundry {
|
|
|
54765
54818
|
|
|
54766
54819
|
namespace VcsGraph {
|
|
54767
54820
|
// Signal signatures
|
|
54768
|
-
interface SignalSignatures extends GObject.Object.SignalSignatures {}
|
|
54821
|
+
interface SignalSignatures extends GObject.Object.SignalSignatures, Gio.ListModel.SignalSignatures {}
|
|
54769
54822
|
|
|
54770
54823
|
// Constructor properties interface
|
|
54771
54824
|
interface ConstructorProps<A extends GObject.Object = GObject.Object> extends GObject.Object.ConstructorProps, Gio.ListModel.ConstructorProps {}
|
|
@@ -55181,7 +55234,7 @@ export namespace Foundry {
|
|
|
55181
55234
|
|
|
55182
55235
|
namespace VcsManager {
|
|
55183
55236
|
// Signal signatures
|
|
55184
|
-
interface SignalSignatures extends Service.SignalSignatures {
|
|
55237
|
+
interface SignalSignatures extends Service.SignalSignatures, Gio.ListModel.SignalSignatures {
|
|
55185
55238
|
"notify::vcs": (pspec: GObject.ParamSpec) => void;
|
|
55186
55239
|
"notify::context": (pspec: GObject.ParamSpec) => void;
|
|
55187
55240
|
}
|
|
@@ -55375,7 +55428,7 @@ export namespace Foundry {
|
|
|
55375
55428
|
|
|
55376
55429
|
namespace VcsProvider {
|
|
55377
55430
|
// Signal signatures
|
|
55378
|
-
interface SignalSignatures extends Contextual.SignalSignatures {
|
|
55431
|
+
interface SignalSignatures extends Contextual.SignalSignatures, Gio.ListModel.SignalSignatures {
|
|
55379
55432
|
"notify::plugin-info": (pspec: GObject.ParamSpec) => void;
|
|
55380
55433
|
"notify::context": (pspec: GObject.ParamSpec) => void;
|
|
55381
55434
|
}
|