@kici-dev/compiler 0.1.27 → 0.2.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.
Files changed (153) hide show
  1. package/dist/auth/headless-detect.d.ts +14 -5
  2. package/dist/auth/headless-detect.js +50 -9
  3. package/dist/cli.js +120 -11
  4. package/dist/commands/compile.js +28 -4
  5. package/dist/commands/diagnostics.js +14 -2
  6. package/dist/commands/doctor.d.ts +64 -0
  7. package/dist/commands/doctor.js +413 -0
  8. package/dist/commands/endpoints.js +6 -0
  9. package/dist/commands/fixture.js +13 -0
  10. package/dist/commands/hook.js +3 -2
  11. package/dist/commands/index.d.ts +8 -0
  12. package/dist/commands/index.js +5 -1
  13. package/dist/commands/init-host-os.d.ts +34 -0
  14. package/dist/commands/init-host-os.js +44 -0
  15. package/dist/commands/init.d.ts +4 -0
  16. package/dist/commands/init.js +159 -36
  17. package/dist/commands/local.d.ts +28 -2
  18. package/dist/commands/local.js +74 -5
  19. package/dist/commands/login.js +1 -1
  20. package/dist/commands/notifications.d.ts +61 -0
  21. package/dist/commands/notifications.js +274 -0
  22. package/dist/commands/preview.js +8 -1
  23. package/dist/commands/run-routed.js +10 -1
  24. package/dist/commands/run.js +41 -12
  25. package/dist/commands/runs/artifacts/download.d.ts +24 -0
  26. package/dist/commands/runs/artifacts/download.js +154 -0
  27. package/dist/commands/runs/artifacts/list.d.ts +5 -0
  28. package/dist/commands/runs/artifacts/list.js +47 -0
  29. package/dist/commands/runs/cancel.js +2 -2
  30. package/dist/commands/runs/list.js +8 -2
  31. package/dist/commands/verify-attestation.d.ts +3 -1
  32. package/dist/commands/verify-attestation.js +18 -7
  33. package/dist/errors/formatter.d.ts +14 -1
  34. package/dist/errors/formatter.js +13 -3
  35. package/dist/errors/index.d.ts +2 -1
  36. package/dist/errors/index.js +3 -2
  37. package/dist/errors/source-location.d.ts +20 -0
  38. package/dist/errors/source-location.js +45 -0
  39. package/dist/execution/executor.js +25 -5
  40. package/dist/fixtures/defaults/index.js +2 -1
  41. package/dist/llm-context/llms-architecture.txt +48 -19
  42. package/dist/llm-context/llms-cli.txt +2461 -1582
  43. package/dist/llm-context/llms-features.txt +178 -106
  44. package/dist/llm-context/llms-full.txt +6124 -4423
  45. package/dist/llm-context/llms-getting-started.txt +306 -42
  46. package/dist/llm-context/llms-patterns.txt +13 -7
  47. package/dist/llm-context/llms-sdk-runtime.txt +2013 -0
  48. package/dist/llm-context/llms-sdk.txt +591 -2152
  49. package/dist/llm-context/llms.txt +30 -16
  50. package/dist/local-plane/orchestrator-process.d.ts +12 -7
  51. package/dist/local-plane/orchestrator-process.js +28 -14
  52. package/dist/local-plane/os-mismatch-hint.d.ts +16 -0
  53. package/dist/local-plane/os-mismatch-hint.js +34 -0
  54. package/dist/local-plane/plane-liveness.d.ts +68 -0
  55. package/dist/local-plane/plane-liveness.js +145 -0
  56. package/dist/local-plane/plane-manager.d.ts +60 -18
  57. package/dist/local-plane/plane-manager.js +210 -70
  58. package/dist/local-plane/plane-trigger.d.ts +13 -4
  59. package/dist/local-plane/plane-trigger.js +27 -14
  60. package/dist/local-plane/platform-attach.js +1 -5
  61. package/dist/local-plane/port-holder.d.ts +78 -0
  62. package/dist/local-plane/port-holder.js +227 -0
  63. package/dist/local-plane/postgres.d.ts +15 -3
  64. package/dist/local-plane/postgres.js +34 -12
  65. package/dist/local-plane/run-follow.d.ts +20 -0
  66. package/dist/local-plane/run-follow.js +51 -4
  67. package/dist/local-plane/scaler-config.d.ts +28 -14
  68. package/dist/local-plane/scaler-config.js +59 -41
  69. package/dist/local-plane/source-provider.js +4 -10
  70. package/dist/lockfile/generator.d.ts +14 -1
  71. package/dist/lockfile/generator.js +99 -33
  72. package/dist/lockfile/index.d.ts +3 -1
  73. package/dist/lockfile/index.js +3 -2
  74. package/dist/lockfile/purity-diagnostics.d.ts +31 -0
  75. package/dist/lockfile/purity-diagnostics.js +52 -0
  76. package/dist/postinstall.js +2 -1
  77. package/dist/remote/artifact-extract.d.ts +8 -0
  78. package/dist/remote/artifact-extract.js +58 -0
  79. package/dist/remote/config.d.ts +21 -3
  80. package/dist/remote/config.js +24 -5
  81. package/dist/remote/dashboard-client.d.ts +39 -2
  82. package/dist/remote/dashboard-client.js +47 -4
  83. package/dist/remote/fs-case.d.ts +21 -0
  84. package/dist/remote/fs-case.js +45 -0
  85. package/dist/remote/history.d.ts +9 -3
  86. package/dist/remote/history.js +79 -10
  87. package/dist/remote/local-repo-identity.d.ts +1 -1
  88. package/dist/remote/local-repo-identity.js +2 -1
  89. package/dist/remote/notifications-client.d.ts +149 -0
  90. package/dist/remote/notifications-client.js +103 -0
  91. package/dist/remote/oauth.d.ts +13 -0
  92. package/dist/remote/oauth.js +31 -5
  93. package/dist/remote/output/summary.js +76 -14
  94. package/dist/remote/render.js +30 -9
  95. package/dist/remote/uploader.js +5 -4
  96. package/dist/templates/agents-md.d.ts +1 -1
  97. package/dist/templates/agents-md.js +6 -6
  98. package/dist/templates/index.d.ts +1 -1
  99. package/dist/templates/index.js +2 -2
  100. package/dist/templates/package-json.d.ts +15 -0
  101. package/dist/templates/package-json.js +26 -5
  102. package/dist/test-runner/dry-run.d.ts +2 -1
  103. package/dist/test-runner/dry-run.js +18 -1
  104. package/dist/test-runner/event-types.d.ts +2 -0
  105. package/dist/test-runner/event-types.js +3 -0
  106. package/dist/test-runner/job-executor.d.ts +1 -0
  107. package/dist/test-runner/job-executor.js +81 -43
  108. package/dist/test-runner/output-formatter.d.ts +5 -2
  109. package/dist/test-runner/output-formatter.js +6 -4
  110. package/dist/test-runner/payload-builder.d.ts +7 -1
  111. package/dist/test-runner/payload-builder.js +11 -2
  112. package/dist/test-runner/rule-evaluator.d.ts +7 -3
  113. package/dist/test-runner/rule-evaluator.js +13 -12
  114. package/dist/test-runner/step-context.d.ts +23 -5
  115. package/dist/test-runner/step-context.js +28 -118
  116. package/dist/types.d.ts +21 -2
  117. package/dist/types.js +4 -2
  118. package/dist/validation/index.d.ts +2 -0
  119. package/dist/validation/index.js +2 -1
  120. package/dist/validation/typecheck.d.ts +28 -0
  121. package/dist/validation/typecheck.js +110 -0
  122. package/dist/validation/validator.d.ts +9 -4
  123. package/dist/validation/validator.js +38 -44
  124. package/package.json +12 -15
  125. package/sbom.spdx.json +1322 -1964
  126. package/dist/assets/api-TJJVHrjC.json +0 -118
  127. package/dist/assets/descriptor-BTtjzN9L.json +0 -1382
  128. package/dist/assets/package-BpQF9kR8.json +0 -74
  129. package/dist/assets/package-Ceo2h27X.json +0 -89
  130. package/dist/assets/source_context-D0atuL28.json +0 -20
  131. package/dist/assets/type-BFqO8SCZ.json +0 -202
  132. package/dist/commands/cancel.d.ts +0 -22
  133. package/dist/commands/detect-package-manager.d.ts +0 -42
  134. package/dist/commands/held-run-resolve.d.ts +0 -50
  135. package/dist/commands/status.d.ts +0 -34
  136. package/dist/commands/test.d.ts +0 -88
  137. package/dist/errors/codes.d.ts +0 -25
  138. package/dist/local-executor/dag-scheduler.d.ts +0 -44
  139. package/dist/local-executor/index.d.ts +0 -23
  140. package/dist/local-executor/job-runner.d.ts +0 -47
  141. package/dist/local-executor/materializer.d.ts +0 -44
  142. package/dist/local-executor/output-streamer.d.ts +0 -31
  143. package/dist/local-executor/payload-generator.d.ts +0 -16
  144. package/dist/local-executor/picker.d.ts +0 -33
  145. package/dist/local-executor/runs-on-display.d.ts +0 -9
  146. package/dist/local-executor/secret-loader.d.ts +0 -18
  147. package/dist/local-executor/to-event-payload.d.ts +0 -16
  148. package/dist/local-executor/types.d.ts +0 -93
  149. package/dist/local-executor/workflow-lock.d.ts +0 -82
  150. package/dist/package-F7UXSDHW.json +0 -74
  151. package/dist/remote/client.d.ts +0 -210
  152. package/dist/remote/observer.d.ts +0 -81
  153. package/dist/test-runner/summary.d.ts +0 -7
@@ -1,1382 +0,0 @@
1
- {
2
- "nested": {
3
- "google": {
4
- "nested": {
5
- "protobuf": {
6
- "options": {
7
- "go_package": "google.golang.org/protobuf/types/descriptorpb",
8
- "java_package": "com.google.protobuf",
9
- "java_outer_classname": "DescriptorProtos",
10
- "csharp_namespace": "Google.Protobuf.Reflection",
11
- "objc_class_prefix": "GPB",
12
- "cc_enable_arenas": true,
13
- "optimize_for": "SPEED"
14
- },
15
- "nested": {
16
- "FileDescriptorSet": {
17
- "edition": "proto2",
18
- "fields": {
19
- "file": {
20
- "rule": "repeated",
21
- "type": "FileDescriptorProto",
22
- "id": 1
23
- }
24
- },
25
- "extensions": [
26
- [
27
- 536000000,
28
- 536000000
29
- ]
30
- ]
31
- },
32
- "Edition": {
33
- "edition": "proto2",
34
- "values": {
35
- "EDITION_UNKNOWN": 0,
36
- "EDITION_LEGACY": 900,
37
- "EDITION_PROTO2": 998,
38
- "EDITION_PROTO3": 999,
39
- "EDITION_2023": 1000,
40
- "EDITION_2024": 1001,
41
- "EDITION_1_TEST_ONLY": 1,
42
- "EDITION_2_TEST_ONLY": 2,
43
- "EDITION_99997_TEST_ONLY": 99997,
44
- "EDITION_99998_TEST_ONLY": 99998,
45
- "EDITION_99999_TEST_ONLY": 99999,
46
- "EDITION_MAX": 2147483647
47
- }
48
- },
49
- "FileDescriptorProto": {
50
- "edition": "proto2",
51
- "fields": {
52
- "name": {
53
- "type": "string",
54
- "id": 1
55
- },
56
- "package": {
57
- "type": "string",
58
- "id": 2
59
- },
60
- "dependency": {
61
- "rule": "repeated",
62
- "type": "string",
63
- "id": 3
64
- },
65
- "publicDependency": {
66
- "rule": "repeated",
67
- "type": "int32",
68
- "id": 10
69
- },
70
- "weakDependency": {
71
- "rule": "repeated",
72
- "type": "int32",
73
- "id": 11
74
- },
75
- "optionDependency": {
76
- "rule": "repeated",
77
- "type": "string",
78
- "id": 15
79
- },
80
- "messageType": {
81
- "rule": "repeated",
82
- "type": "DescriptorProto",
83
- "id": 4
84
- },
85
- "enumType": {
86
- "rule": "repeated",
87
- "type": "EnumDescriptorProto",
88
- "id": 5
89
- },
90
- "service": {
91
- "rule": "repeated",
92
- "type": "ServiceDescriptorProto",
93
- "id": 6
94
- },
95
- "extension": {
96
- "rule": "repeated",
97
- "type": "FieldDescriptorProto",
98
- "id": 7
99
- },
100
- "options": {
101
- "type": "FileOptions",
102
- "id": 8
103
- },
104
- "sourceCodeInfo": {
105
- "type": "SourceCodeInfo",
106
- "id": 9
107
- },
108
- "syntax": {
109
- "type": "string",
110
- "id": 12
111
- },
112
- "edition": {
113
- "type": "Edition",
114
- "id": 14
115
- }
116
- }
117
- },
118
- "DescriptorProto": {
119
- "edition": "proto2",
120
- "fields": {
121
- "name": {
122
- "type": "string",
123
- "id": 1
124
- },
125
- "field": {
126
- "rule": "repeated",
127
- "type": "FieldDescriptorProto",
128
- "id": 2
129
- },
130
- "extension": {
131
- "rule": "repeated",
132
- "type": "FieldDescriptorProto",
133
- "id": 6
134
- },
135
- "nestedType": {
136
- "rule": "repeated",
137
- "type": "DescriptorProto",
138
- "id": 3
139
- },
140
- "enumType": {
141
- "rule": "repeated",
142
- "type": "EnumDescriptorProto",
143
- "id": 4
144
- },
145
- "extensionRange": {
146
- "rule": "repeated",
147
- "type": "ExtensionRange",
148
- "id": 5
149
- },
150
- "oneofDecl": {
151
- "rule": "repeated",
152
- "type": "OneofDescriptorProto",
153
- "id": 8
154
- },
155
- "options": {
156
- "type": "MessageOptions",
157
- "id": 7
158
- },
159
- "reservedRange": {
160
- "rule": "repeated",
161
- "type": "ReservedRange",
162
- "id": 9
163
- },
164
- "reservedName": {
165
- "rule": "repeated",
166
- "type": "string",
167
- "id": 10
168
- },
169
- "visibility": {
170
- "type": "SymbolVisibility",
171
- "id": 11
172
- }
173
- },
174
- "nested": {
175
- "ExtensionRange": {
176
- "fields": {
177
- "start": {
178
- "type": "int32",
179
- "id": 1
180
- },
181
- "end": {
182
- "type": "int32",
183
- "id": 2
184
- },
185
- "options": {
186
- "type": "ExtensionRangeOptions",
187
- "id": 3
188
- }
189
- }
190
- },
191
- "ReservedRange": {
192
- "fields": {
193
- "start": {
194
- "type": "int32",
195
- "id": 1
196
- },
197
- "end": {
198
- "type": "int32",
199
- "id": 2
200
- }
201
- }
202
- }
203
- }
204
- },
205
- "ExtensionRangeOptions": {
206
- "edition": "proto2",
207
- "fields": {
208
- "uninterpretedOption": {
209
- "rule": "repeated",
210
- "type": "UninterpretedOption",
211
- "id": 999
212
- },
213
- "declaration": {
214
- "rule": "repeated",
215
- "type": "Declaration",
216
- "id": 2,
217
- "options": {
218
- "retention": "RETENTION_SOURCE"
219
- }
220
- },
221
- "features": {
222
- "type": "FeatureSet",
223
- "id": 50
224
- },
225
- "verification": {
226
- "type": "VerificationState",
227
- "id": 3,
228
- "options": {
229
- "default": "UNVERIFIED",
230
- "retention": "RETENTION_SOURCE"
231
- }
232
- }
233
- },
234
- "extensions": [
235
- [
236
- 1000,
237
- 536870911
238
- ]
239
- ],
240
- "nested": {
241
- "Declaration": {
242
- "fields": {
243
- "number": {
244
- "type": "int32",
245
- "id": 1
246
- },
247
- "fullName": {
248
- "type": "string",
249
- "id": 2
250
- },
251
- "type": {
252
- "type": "string",
253
- "id": 3
254
- },
255
- "reserved": {
256
- "type": "bool",
257
- "id": 5
258
- },
259
- "repeated": {
260
- "type": "bool",
261
- "id": 6
262
- }
263
- },
264
- "reserved": [
265
- [
266
- 4,
267
- 4
268
- ]
269
- ]
270
- },
271
- "VerificationState": {
272
- "values": {
273
- "DECLARATION": 0,
274
- "UNVERIFIED": 1
275
- }
276
- }
277
- }
278
- },
279
- "FieldDescriptorProto": {
280
- "edition": "proto2",
281
- "fields": {
282
- "name": {
283
- "type": "string",
284
- "id": 1
285
- },
286
- "number": {
287
- "type": "int32",
288
- "id": 3
289
- },
290
- "label": {
291
- "type": "Label",
292
- "id": 4
293
- },
294
- "type": {
295
- "type": "Type",
296
- "id": 5
297
- },
298
- "typeName": {
299
- "type": "string",
300
- "id": 6
301
- },
302
- "extendee": {
303
- "type": "string",
304
- "id": 2
305
- },
306
- "defaultValue": {
307
- "type": "string",
308
- "id": 7
309
- },
310
- "oneofIndex": {
311
- "type": "int32",
312
- "id": 9
313
- },
314
- "jsonName": {
315
- "type": "string",
316
- "id": 10
317
- },
318
- "options": {
319
- "type": "FieldOptions",
320
- "id": 8
321
- },
322
- "proto3Optional": {
323
- "type": "bool",
324
- "id": 17
325
- }
326
- },
327
- "nested": {
328
- "Type": {
329
- "values": {
330
- "TYPE_DOUBLE": 1,
331
- "TYPE_FLOAT": 2,
332
- "TYPE_INT64": 3,
333
- "TYPE_UINT64": 4,
334
- "TYPE_INT32": 5,
335
- "TYPE_FIXED64": 6,
336
- "TYPE_FIXED32": 7,
337
- "TYPE_BOOL": 8,
338
- "TYPE_STRING": 9,
339
- "TYPE_GROUP": 10,
340
- "TYPE_MESSAGE": 11,
341
- "TYPE_BYTES": 12,
342
- "TYPE_UINT32": 13,
343
- "TYPE_ENUM": 14,
344
- "TYPE_SFIXED32": 15,
345
- "TYPE_SFIXED64": 16,
346
- "TYPE_SINT32": 17,
347
- "TYPE_SINT64": 18
348
- }
349
- },
350
- "Label": {
351
- "values": {
352
- "LABEL_OPTIONAL": 1,
353
- "LABEL_REPEATED": 3,
354
- "LABEL_REQUIRED": 2
355
- }
356
- }
357
- }
358
- },
359
- "OneofDescriptorProto": {
360
- "edition": "proto2",
361
- "fields": {
362
- "name": {
363
- "type": "string",
364
- "id": 1
365
- },
366
- "options": {
367
- "type": "OneofOptions",
368
- "id": 2
369
- }
370
- }
371
- },
372
- "EnumDescriptorProto": {
373
- "edition": "proto2",
374
- "fields": {
375
- "name": {
376
- "type": "string",
377
- "id": 1
378
- },
379
- "value": {
380
- "rule": "repeated",
381
- "type": "EnumValueDescriptorProto",
382
- "id": 2
383
- },
384
- "options": {
385
- "type": "EnumOptions",
386
- "id": 3
387
- },
388
- "reservedRange": {
389
- "rule": "repeated",
390
- "type": "EnumReservedRange",
391
- "id": 4
392
- },
393
- "reservedName": {
394
- "rule": "repeated",
395
- "type": "string",
396
- "id": 5
397
- },
398
- "visibility": {
399
- "type": "SymbolVisibility",
400
- "id": 6
401
- }
402
- },
403
- "nested": {
404
- "EnumReservedRange": {
405
- "fields": {
406
- "start": {
407
- "type": "int32",
408
- "id": 1
409
- },
410
- "end": {
411
- "type": "int32",
412
- "id": 2
413
- }
414
- }
415
- }
416
- }
417
- },
418
- "EnumValueDescriptorProto": {
419
- "edition": "proto2",
420
- "fields": {
421
- "name": {
422
- "type": "string",
423
- "id": 1
424
- },
425
- "number": {
426
- "type": "int32",
427
- "id": 2
428
- },
429
- "options": {
430
- "type": "EnumValueOptions",
431
- "id": 3
432
- }
433
- }
434
- },
435
- "ServiceDescriptorProto": {
436
- "edition": "proto2",
437
- "fields": {
438
- "name": {
439
- "type": "string",
440
- "id": 1
441
- },
442
- "method": {
443
- "rule": "repeated",
444
- "type": "MethodDescriptorProto",
445
- "id": 2
446
- },
447
- "options": {
448
- "type": "ServiceOptions",
449
- "id": 3
450
- }
451
- }
452
- },
453
- "MethodDescriptorProto": {
454
- "edition": "proto2",
455
- "fields": {
456
- "name": {
457
- "type": "string",
458
- "id": 1
459
- },
460
- "inputType": {
461
- "type": "string",
462
- "id": 2
463
- },
464
- "outputType": {
465
- "type": "string",
466
- "id": 3
467
- },
468
- "options": {
469
- "type": "MethodOptions",
470
- "id": 4
471
- },
472
- "clientStreaming": {
473
- "type": "bool",
474
- "id": 5
475
- },
476
- "serverStreaming": {
477
- "type": "bool",
478
- "id": 6
479
- }
480
- }
481
- },
482
- "FileOptions": {
483
- "edition": "proto2",
484
- "fields": {
485
- "javaPackage": {
486
- "type": "string",
487
- "id": 1
488
- },
489
- "javaOuterClassname": {
490
- "type": "string",
491
- "id": 8
492
- },
493
- "javaMultipleFiles": {
494
- "type": "bool",
495
- "id": 10
496
- },
497
- "javaGenerateEqualsAndHash": {
498
- "type": "bool",
499
- "id": 20,
500
- "options": {
501
- "deprecated": true
502
- }
503
- },
504
- "javaStringCheckUtf8": {
505
- "type": "bool",
506
- "id": 27
507
- },
508
- "optimizeFor": {
509
- "type": "OptimizeMode",
510
- "id": 9,
511
- "options": {
512
- "default": "SPEED"
513
- }
514
- },
515
- "goPackage": {
516
- "type": "string",
517
- "id": 11
518
- },
519
- "ccGenericServices": {
520
- "type": "bool",
521
- "id": 16
522
- },
523
- "javaGenericServices": {
524
- "type": "bool",
525
- "id": 17
526
- },
527
- "pyGenericServices": {
528
- "type": "bool",
529
- "id": 18
530
- },
531
- "deprecated": {
532
- "type": "bool",
533
- "id": 23
534
- },
535
- "ccEnableArenas": {
536
- "type": "bool",
537
- "id": 31,
538
- "options": {
539
- "default": true
540
- }
541
- },
542
- "objcClassPrefix": {
543
- "type": "string",
544
- "id": 36
545
- },
546
- "csharpNamespace": {
547
- "type": "string",
548
- "id": 37
549
- },
550
- "swiftPrefix": {
551
- "type": "string",
552
- "id": 39
553
- },
554
- "phpClassPrefix": {
555
- "type": "string",
556
- "id": 40
557
- },
558
- "phpNamespace": {
559
- "type": "string",
560
- "id": 41
561
- },
562
- "phpMetadataNamespace": {
563
- "type": "string",
564
- "id": 44
565
- },
566
- "rubyPackage": {
567
- "type": "string",
568
- "id": 45
569
- },
570
- "features": {
571
- "type": "FeatureSet",
572
- "id": 50
573
- },
574
- "uninterpretedOption": {
575
- "rule": "repeated",
576
- "type": "UninterpretedOption",
577
- "id": 999
578
- }
579
- },
580
- "extensions": [
581
- [
582
- 1000,
583
- 536870911
584
- ]
585
- ],
586
- "reserved": [
587
- [
588
- 42,
589
- 42
590
- ],
591
- [
592
- 38,
593
- 38
594
- ],
595
- "php_generic_services"
596
- ],
597
- "nested": {
598
- "OptimizeMode": {
599
- "values": {
600
- "SPEED": 1,
601
- "CODE_SIZE": 2,
602
- "LITE_RUNTIME": 3
603
- }
604
- }
605
- }
606
- },
607
- "MessageOptions": {
608
- "edition": "proto2",
609
- "fields": {
610
- "messageSetWireFormat": {
611
- "type": "bool",
612
- "id": 1
613
- },
614
- "noStandardDescriptorAccessor": {
615
- "type": "bool",
616
- "id": 2
617
- },
618
- "deprecated": {
619
- "type": "bool",
620
- "id": 3
621
- },
622
- "mapEntry": {
623
- "type": "bool",
624
- "id": 7
625
- },
626
- "deprecatedLegacyJsonFieldConflicts": {
627
- "type": "bool",
628
- "id": 11,
629
- "options": {
630
- "deprecated": true
631
- }
632
- },
633
- "features": {
634
- "type": "FeatureSet",
635
- "id": 12
636
- },
637
- "uninterpretedOption": {
638
- "rule": "repeated",
639
- "type": "UninterpretedOption",
640
- "id": 999
641
- }
642
- },
643
- "extensions": [
644
- [
645
- 1000,
646
- 536870911
647
- ]
648
- ],
649
- "reserved": [
650
- [
651
- 4,
652
- 4
653
- ],
654
- [
655
- 5,
656
- 5
657
- ],
658
- [
659
- 6,
660
- 6
661
- ],
662
- [
663
- 8,
664
- 8
665
- ],
666
- [
667
- 9,
668
- 9
669
- ]
670
- ]
671
- },
672
- "FieldOptions": {
673
- "edition": "proto2",
674
- "fields": {
675
- "ctype": {
676
- "type": "CType",
677
- "id": 1,
678
- "options": {
679
- "default": "STRING"
680
- }
681
- },
682
- "packed": {
683
- "type": "bool",
684
- "id": 2
685
- },
686
- "jstype": {
687
- "type": "JSType",
688
- "id": 6,
689
- "options": {
690
- "default": "JS_NORMAL"
691
- }
692
- },
693
- "lazy": {
694
- "type": "bool",
695
- "id": 5
696
- },
697
- "unverifiedLazy": {
698
- "type": "bool",
699
- "id": 15
700
- },
701
- "deprecated": {
702
- "type": "bool",
703
- "id": 3
704
- },
705
- "weak": {
706
- "type": "bool",
707
- "id": 10,
708
- "options": {
709
- "deprecated": true
710
- }
711
- },
712
- "debugRedact": {
713
- "type": "bool",
714
- "id": 16
715
- },
716
- "retention": {
717
- "type": "OptionRetention",
718
- "id": 17
719
- },
720
- "targets": {
721
- "rule": "repeated",
722
- "type": "OptionTargetType",
723
- "id": 19
724
- },
725
- "editionDefaults": {
726
- "rule": "repeated",
727
- "type": "EditionDefault",
728
- "id": 20
729
- },
730
- "features": {
731
- "type": "FeatureSet",
732
- "id": 21
733
- },
734
- "featureSupport": {
735
- "type": "FeatureSupport",
736
- "id": 22
737
- },
738
- "uninterpretedOption": {
739
- "rule": "repeated",
740
- "type": "UninterpretedOption",
741
- "id": 999
742
- }
743
- },
744
- "extensions": [
745
- [
746
- 1000,
747
- 536870911
748
- ]
749
- ],
750
- "reserved": [
751
- [
752
- 4,
753
- 4
754
- ],
755
- [
756
- 18,
757
- 18
758
- ]
759
- ],
760
- "nested": {
761
- "CType": {
762
- "values": {
763
- "STRING": 0,
764
- "CORD": 1,
765
- "STRING_PIECE": 2
766
- }
767
- },
768
- "JSType": {
769
- "values": {
770
- "JS_NORMAL": 0,
771
- "JS_STRING": 1,
772
- "JS_NUMBER": 2
773
- }
774
- },
775
- "OptionRetention": {
776
- "values": {
777
- "RETENTION_UNKNOWN": 0,
778
- "RETENTION_RUNTIME": 1,
779
- "RETENTION_SOURCE": 2
780
- }
781
- },
782
- "OptionTargetType": {
783
- "values": {
784
- "TARGET_TYPE_UNKNOWN": 0,
785
- "TARGET_TYPE_FILE": 1,
786
- "TARGET_TYPE_EXTENSION_RANGE": 2,
787
- "TARGET_TYPE_MESSAGE": 3,
788
- "TARGET_TYPE_FIELD": 4,
789
- "TARGET_TYPE_ONEOF": 5,
790
- "TARGET_TYPE_ENUM": 6,
791
- "TARGET_TYPE_ENUM_ENTRY": 7,
792
- "TARGET_TYPE_SERVICE": 8,
793
- "TARGET_TYPE_METHOD": 9
794
- }
795
- },
796
- "EditionDefault": {
797
- "fields": {
798
- "edition": {
799
- "type": "Edition",
800
- "id": 3
801
- },
802
- "value": {
803
- "type": "string",
804
- "id": 2
805
- }
806
- }
807
- },
808
- "FeatureSupport": {
809
- "fields": {
810
- "editionIntroduced": {
811
- "type": "Edition",
812
- "id": 1
813
- },
814
- "editionDeprecated": {
815
- "type": "Edition",
816
- "id": 2
817
- },
818
- "deprecationWarning": {
819
- "type": "string",
820
- "id": 3
821
- },
822
- "editionRemoved": {
823
- "type": "Edition",
824
- "id": 4
825
- }
826
- }
827
- }
828
- }
829
- },
830
- "OneofOptions": {
831
- "edition": "proto2",
832
- "fields": {
833
- "features": {
834
- "type": "FeatureSet",
835
- "id": 1
836
- },
837
- "uninterpretedOption": {
838
- "rule": "repeated",
839
- "type": "UninterpretedOption",
840
- "id": 999
841
- }
842
- },
843
- "extensions": [
844
- [
845
- 1000,
846
- 536870911
847
- ]
848
- ]
849
- },
850
- "EnumOptions": {
851
- "edition": "proto2",
852
- "fields": {
853
- "allowAlias": {
854
- "type": "bool",
855
- "id": 2
856
- },
857
- "deprecated": {
858
- "type": "bool",
859
- "id": 3
860
- },
861
- "deprecatedLegacyJsonFieldConflicts": {
862
- "type": "bool",
863
- "id": 6,
864
- "options": {
865
- "deprecated": true
866
- }
867
- },
868
- "features": {
869
- "type": "FeatureSet",
870
- "id": 7
871
- },
872
- "uninterpretedOption": {
873
- "rule": "repeated",
874
- "type": "UninterpretedOption",
875
- "id": 999
876
- }
877
- },
878
- "extensions": [
879
- [
880
- 1000,
881
- 536870911
882
- ]
883
- ],
884
- "reserved": [
885
- [
886
- 5,
887
- 5
888
- ]
889
- ]
890
- },
891
- "EnumValueOptions": {
892
- "edition": "proto2",
893
- "fields": {
894
- "deprecated": {
895
- "type": "bool",
896
- "id": 1
897
- },
898
- "features": {
899
- "type": "FeatureSet",
900
- "id": 2
901
- },
902
- "debugRedact": {
903
- "type": "bool",
904
- "id": 3
905
- },
906
- "featureSupport": {
907
- "type": "FieldOptions.FeatureSupport",
908
- "id": 4
909
- },
910
- "uninterpretedOption": {
911
- "rule": "repeated",
912
- "type": "UninterpretedOption",
913
- "id": 999
914
- }
915
- },
916
- "extensions": [
917
- [
918
- 1000,
919
- 536870911
920
- ]
921
- ]
922
- },
923
- "ServiceOptions": {
924
- "edition": "proto2",
925
- "fields": {
926
- "features": {
927
- "type": "FeatureSet",
928
- "id": 34
929
- },
930
- "deprecated": {
931
- "type": "bool",
932
- "id": 33
933
- },
934
- "uninterpretedOption": {
935
- "rule": "repeated",
936
- "type": "UninterpretedOption",
937
- "id": 999
938
- }
939
- },
940
- "extensions": [
941
- [
942
- 1000,
943
- 536870911
944
- ]
945
- ]
946
- },
947
- "MethodOptions": {
948
- "edition": "proto2",
949
- "fields": {
950
- "deprecated": {
951
- "type": "bool",
952
- "id": 33
953
- },
954
- "idempotencyLevel": {
955
- "type": "IdempotencyLevel",
956
- "id": 34,
957
- "options": {
958
- "default": "IDEMPOTENCY_UNKNOWN"
959
- }
960
- },
961
- "features": {
962
- "type": "FeatureSet",
963
- "id": 35
964
- },
965
- "uninterpretedOption": {
966
- "rule": "repeated",
967
- "type": "UninterpretedOption",
968
- "id": 999
969
- }
970
- },
971
- "extensions": [
972
- [
973
- 1000,
974
- 536870911
975
- ]
976
- ],
977
- "nested": {
978
- "IdempotencyLevel": {
979
- "values": {
980
- "IDEMPOTENCY_UNKNOWN": 0,
981
- "NO_SIDE_EFFECTS": 1,
982
- "IDEMPOTENT": 2
983
- }
984
- }
985
- }
986
- },
987
- "UninterpretedOption": {
988
- "edition": "proto2",
989
- "fields": {
990
- "name": {
991
- "rule": "repeated",
992
- "type": "NamePart",
993
- "id": 2
994
- },
995
- "identifierValue": {
996
- "type": "string",
997
- "id": 3
998
- },
999
- "positiveIntValue": {
1000
- "type": "uint64",
1001
- "id": 4
1002
- },
1003
- "negativeIntValue": {
1004
- "type": "int64",
1005
- "id": 5
1006
- },
1007
- "doubleValue": {
1008
- "type": "double",
1009
- "id": 6
1010
- },
1011
- "stringValue": {
1012
- "type": "bytes",
1013
- "id": 7
1014
- },
1015
- "aggregateValue": {
1016
- "type": "string",
1017
- "id": 8
1018
- }
1019
- },
1020
- "nested": {
1021
- "NamePart": {
1022
- "fields": {
1023
- "namePart": {
1024
- "rule": "required",
1025
- "type": "string",
1026
- "id": 1
1027
- },
1028
- "isExtension": {
1029
- "rule": "required",
1030
- "type": "bool",
1031
- "id": 2
1032
- }
1033
- }
1034
- }
1035
- }
1036
- },
1037
- "FeatureSet": {
1038
- "edition": "proto2",
1039
- "fields": {
1040
- "fieldPresence": {
1041
- "type": "FieldPresence",
1042
- "id": 1,
1043
- "options": {
1044
- "retention": "RETENTION_RUNTIME",
1045
- "targets": "TARGET_TYPE_FILE",
1046
- "feature_support.edition_introduced": "EDITION_2023",
1047
- "edition_defaults.edition": "EDITION_2023",
1048
- "edition_defaults.value": "EXPLICIT"
1049
- }
1050
- },
1051
- "enumType": {
1052
- "type": "EnumType",
1053
- "id": 2,
1054
- "options": {
1055
- "retention": "RETENTION_RUNTIME",
1056
- "targets": "TARGET_TYPE_FILE",
1057
- "feature_support.edition_introduced": "EDITION_2023",
1058
- "edition_defaults.edition": "EDITION_PROTO3",
1059
- "edition_defaults.value": "OPEN"
1060
- }
1061
- },
1062
- "repeatedFieldEncoding": {
1063
- "type": "RepeatedFieldEncoding",
1064
- "id": 3,
1065
- "options": {
1066
- "retention": "RETENTION_RUNTIME",
1067
- "targets": "TARGET_TYPE_FILE",
1068
- "feature_support.edition_introduced": "EDITION_2023",
1069
- "edition_defaults.edition": "EDITION_PROTO3",
1070
- "edition_defaults.value": "PACKED"
1071
- }
1072
- },
1073
- "utf8Validation": {
1074
- "type": "Utf8Validation",
1075
- "id": 4,
1076
- "options": {
1077
- "retention": "RETENTION_RUNTIME",
1078
- "targets": "TARGET_TYPE_FILE",
1079
- "feature_support.edition_introduced": "EDITION_2023",
1080
- "edition_defaults.edition": "EDITION_PROTO3",
1081
- "edition_defaults.value": "VERIFY"
1082
- }
1083
- },
1084
- "messageEncoding": {
1085
- "type": "MessageEncoding",
1086
- "id": 5,
1087
- "options": {
1088
- "retention": "RETENTION_RUNTIME",
1089
- "targets": "TARGET_TYPE_FILE",
1090
- "feature_support.edition_introduced": "EDITION_2023",
1091
- "edition_defaults.edition": "EDITION_LEGACY",
1092
- "edition_defaults.value": "LENGTH_PREFIXED"
1093
- }
1094
- },
1095
- "jsonFormat": {
1096
- "type": "JsonFormat",
1097
- "id": 6,
1098
- "options": {
1099
- "retention": "RETENTION_RUNTIME",
1100
- "targets": "TARGET_TYPE_FILE",
1101
- "feature_support.edition_introduced": "EDITION_2023",
1102
- "edition_defaults.edition": "EDITION_PROTO3",
1103
- "edition_defaults.value": "ALLOW"
1104
- }
1105
- },
1106
- "enforceNamingStyle": {
1107
- "type": "EnforceNamingStyle",
1108
- "id": 7,
1109
- "options": {
1110
- "retention": "RETENTION_SOURCE",
1111
- "targets": "TARGET_TYPE_METHOD",
1112
- "feature_support.edition_introduced": "EDITION_2024",
1113
- "edition_defaults.edition": "EDITION_2024",
1114
- "edition_defaults.value": "STYLE2024"
1115
- }
1116
- },
1117
- "defaultSymbolVisibility": {
1118
- "type": "VisibilityFeature.DefaultSymbolVisibility",
1119
- "id": 8,
1120
- "options": {
1121
- "retention": "RETENTION_SOURCE",
1122
- "targets": "TARGET_TYPE_FILE",
1123
- "feature_support.edition_introduced": "EDITION_2024",
1124
- "edition_defaults.edition": "EDITION_2024",
1125
- "edition_defaults.value": "EXPORT_TOP_LEVEL"
1126
- }
1127
- }
1128
- },
1129
- "extensions": [
1130
- [
1131
- 1000,
1132
- 9994
1133
- ],
1134
- [
1135
- 9995,
1136
- 9999
1137
- ],
1138
- [
1139
- 10000,
1140
- 10000
1141
- ]
1142
- ],
1143
- "reserved": [
1144
- [
1145
- 999,
1146
- 999
1147
- ]
1148
- ],
1149
- "nested": {
1150
- "FieldPresence": {
1151
- "values": {
1152
- "FIELD_PRESENCE_UNKNOWN": 0,
1153
- "EXPLICIT": 1,
1154
- "IMPLICIT": 2,
1155
- "LEGACY_REQUIRED": 3
1156
- }
1157
- },
1158
- "EnumType": {
1159
- "values": {
1160
- "ENUM_TYPE_UNKNOWN": 0,
1161
- "OPEN": 1,
1162
- "CLOSED": 2
1163
- }
1164
- },
1165
- "RepeatedFieldEncoding": {
1166
- "values": {
1167
- "REPEATED_FIELD_ENCODING_UNKNOWN": 0,
1168
- "PACKED": 1,
1169
- "EXPANDED": 2
1170
- }
1171
- },
1172
- "Utf8Validation": {
1173
- "values": {
1174
- "UTF8_VALIDATION_UNKNOWN": 0,
1175
- "VERIFY": 2,
1176
- "NONE": 3
1177
- }
1178
- },
1179
- "MessageEncoding": {
1180
- "values": {
1181
- "MESSAGE_ENCODING_UNKNOWN": 0,
1182
- "LENGTH_PREFIXED": 1,
1183
- "DELIMITED": 2
1184
- }
1185
- },
1186
- "JsonFormat": {
1187
- "values": {
1188
- "JSON_FORMAT_UNKNOWN": 0,
1189
- "ALLOW": 1,
1190
- "LEGACY_BEST_EFFORT": 2
1191
- }
1192
- },
1193
- "EnforceNamingStyle": {
1194
- "values": {
1195
- "ENFORCE_NAMING_STYLE_UNKNOWN": 0,
1196
- "STYLE2024": 1,
1197
- "STYLE_LEGACY": 2
1198
- }
1199
- },
1200
- "VisibilityFeature": {
1201
- "fields": {},
1202
- "reserved": [
1203
- [
1204
- 1,
1205
- 536870911
1206
- ]
1207
- ],
1208
- "nested": {
1209
- "DefaultSymbolVisibility": {
1210
- "values": {
1211
- "DEFAULT_SYMBOL_VISIBILITY_UNKNOWN": 0,
1212
- "EXPORT_ALL": 1,
1213
- "EXPORT_TOP_LEVEL": 2,
1214
- "LOCAL_ALL": 3,
1215
- "STRICT": 4
1216
- }
1217
- }
1218
- }
1219
- }
1220
- }
1221
- },
1222
- "FeatureSetDefaults": {
1223
- "edition": "proto2",
1224
- "fields": {
1225
- "defaults": {
1226
- "rule": "repeated",
1227
- "type": "FeatureSetEditionDefault",
1228
- "id": 1
1229
- },
1230
- "minimumEdition": {
1231
- "type": "Edition",
1232
- "id": 4
1233
- },
1234
- "maximumEdition": {
1235
- "type": "Edition",
1236
- "id": 5
1237
- }
1238
- },
1239
- "nested": {
1240
- "FeatureSetEditionDefault": {
1241
- "fields": {
1242
- "edition": {
1243
- "type": "Edition",
1244
- "id": 3
1245
- },
1246
- "overridableFeatures": {
1247
- "type": "FeatureSet",
1248
- "id": 4
1249
- },
1250
- "fixedFeatures": {
1251
- "type": "FeatureSet",
1252
- "id": 5
1253
- }
1254
- },
1255
- "reserved": [
1256
- [
1257
- 1,
1258
- 1
1259
- ],
1260
- [
1261
- 2,
1262
- 2
1263
- ],
1264
- "features"
1265
- ]
1266
- }
1267
- }
1268
- },
1269
- "SourceCodeInfo": {
1270
- "edition": "proto2",
1271
- "fields": {
1272
- "location": {
1273
- "rule": "repeated",
1274
- "type": "Location",
1275
- "id": 1
1276
- }
1277
- },
1278
- "extensions": [
1279
- [
1280
- 536000000,
1281
- 536000000
1282
- ]
1283
- ],
1284
- "nested": {
1285
- "Location": {
1286
- "fields": {
1287
- "path": {
1288
- "rule": "repeated",
1289
- "type": "int32",
1290
- "id": 1,
1291
- "options": {
1292
- "packed": true
1293
- }
1294
- },
1295
- "span": {
1296
- "rule": "repeated",
1297
- "type": "int32",
1298
- "id": 2,
1299
- "options": {
1300
- "packed": true
1301
- }
1302
- },
1303
- "leadingComments": {
1304
- "type": "string",
1305
- "id": 3
1306
- },
1307
- "trailingComments": {
1308
- "type": "string",
1309
- "id": 4
1310
- },
1311
- "leadingDetachedComments": {
1312
- "rule": "repeated",
1313
- "type": "string",
1314
- "id": 6
1315
- }
1316
- }
1317
- }
1318
- }
1319
- },
1320
- "GeneratedCodeInfo": {
1321
- "edition": "proto2",
1322
- "fields": {
1323
- "annotation": {
1324
- "rule": "repeated",
1325
- "type": "Annotation",
1326
- "id": 1
1327
- }
1328
- },
1329
- "nested": {
1330
- "Annotation": {
1331
- "fields": {
1332
- "path": {
1333
- "rule": "repeated",
1334
- "type": "int32",
1335
- "id": 1,
1336
- "options": {
1337
- "packed": true
1338
- }
1339
- },
1340
- "sourceFile": {
1341
- "type": "string",
1342
- "id": 2
1343
- },
1344
- "begin": {
1345
- "type": "int32",
1346
- "id": 3
1347
- },
1348
- "end": {
1349
- "type": "int32",
1350
- "id": 4
1351
- },
1352
- "semantic": {
1353
- "type": "Semantic",
1354
- "id": 5
1355
- }
1356
- },
1357
- "nested": {
1358
- "Semantic": {
1359
- "values": {
1360
- "NONE": 0,
1361
- "SET": 1,
1362
- "ALIAS": 2
1363
- }
1364
- }
1365
- }
1366
- }
1367
- }
1368
- },
1369
- "SymbolVisibility": {
1370
- "edition": "proto2",
1371
- "values": {
1372
- "VISIBILITY_UNSET": 0,
1373
- "VISIBILITY_LOCAL": 1,
1374
- "VISIBILITY_EXPORT": 2
1375
- }
1376
- }
1377
- }
1378
- }
1379
- }
1380
- }
1381
- }
1382
- }