@hasna/todos 0.11.94 → 0.12.1

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 (124) hide show
  1. package/README.md +5 -5
  2. package/dist/cli/cloud-router.d.ts +17 -1
  3. package/dist/cli/cloud-router.d.ts.map +1 -1
  4. package/dist/cli/commands/agent-commands.d.ts.map +1 -1
  5. package/dist/cli/commands/api-key-commands.d.ts.map +1 -1
  6. package/dist/cli/commands/config-serve-commands.d.ts.map +1 -1
  7. package/dist/cli/commands/help-commands.d.ts +2 -1
  8. package/dist/cli/commands/help-commands.d.ts.map +1 -1
  9. package/dist/cli/commands/knowledge-commands.d.ts.map +1 -1
  10. package/dist/cli/commands/mcp-hooks-commands.d.ts.map +1 -1
  11. package/dist/cli/commands/plan-template-commands.d.ts.map +1 -1
  12. package/dist/cli/commands/pr-group-commands.d.ts +3 -0
  13. package/dist/cli/commands/pr-group-commands.d.ts.map +1 -0
  14. package/dist/cli/commands/project-commands.d.ts.map +1 -1
  15. package/dist/cli/commands/query-commands.d.ts.map +1 -1
  16. package/dist/cli/commands/risk-commands.d.ts.map +1 -1
  17. package/dist/cli/commands/task-commands.d.ts.map +1 -1
  18. package/dist/cli/commands/usage-ledger-commands.d.ts.map +1 -1
  19. package/dist/cli/helpers.d.ts +23 -0
  20. package/dist/cli/helpers.d.ts.map +1 -1
  21. package/dist/cli/index.js +8539 -1940
  22. package/dist/cli/stage-a.d.ts +17 -0
  23. package/dist/cli/stage-a.d.ts.map +1 -1
  24. package/dist/contracts.js +1665 -523
  25. package/dist/db/agent-names.d.ts +13 -1
  26. package/dist/db/agent-names.d.ts.map +1 -1
  27. package/dist/db/agents.d.ts +4 -0
  28. package/dist/db/agents.d.ts.map +1 -1
  29. package/dist/db/audit.d.ts.map +1 -1
  30. package/dist/db/database.d.ts.map +1 -1
  31. package/dist/db/dispatches.d.ts.map +1 -1
  32. package/dist/db/identity-mapping.d.ts +40 -0
  33. package/dist/db/identity-mapping.d.ts.map +1 -0
  34. package/dist/db/inbox.d.ts.map +1 -1
  35. package/dist/db/migrations.d.ts.map +1 -1
  36. package/dist/db/schema.d.ts.map +1 -1
  37. package/dist/db/storage-tombstones.d.ts +1 -1
  38. package/dist/db/storage-tombstones.d.ts.map +1 -1
  39. package/dist/db/task-commits.d.ts.map +1 -1
  40. package/dist/db/task-crud.d.ts.map +1 -1
  41. package/dist/db/task-lifecycle.d.ts.map +1 -1
  42. package/dist/db/templates.d.ts.map +1 -1
  43. package/dist/index.d.ts +5 -0
  44. package/dist/index.d.ts.map +1 -1
  45. package/dist/index.js +4784 -882
  46. package/dist/json-contracts.d.ts +4 -2
  47. package/dist/json-contracts.d.ts.map +1 -1
  48. package/dist/lib/activity-audit.d.ts.map +1 -1
  49. package/dist/lib/artifact-store.d.ts.map +1 -1
  50. package/dist/lib/cli-help.d.ts +14 -3
  51. package/dist/lib/cli-help.d.ts.map +1 -1
  52. package/dist/lib/evidence-redaction.d.ts +72 -0
  53. package/dist/lib/evidence-redaction.d.ts.map +1 -0
  54. package/dist/lib/headless-boundaries.d.ts +1 -1
  55. package/dist/lib/headless-boundaries.d.ts.map +1 -1
  56. package/dist/lib/import-export-bridge.d.ts.map +1 -1
  57. package/dist/lib/local-bridge.d.ts +1 -0
  58. package/dist/lib/local-bridge.d.ts.map +1 -1
  59. package/dist/lib/local-encryption.d.ts.map +1 -1
  60. package/dist/lib/prewrite-secrets.d.ts +29 -0
  61. package/dist/lib/prewrite-secrets.d.ts.map +1 -0
  62. package/dist/lib/redaction.d.ts.map +1 -1
  63. package/dist/lib/search.d.ts +3 -0
  64. package/dist/lib/search.d.ts.map +1 -1
  65. package/dist/lib/task-route-sources.d.ts +2 -0
  66. package/dist/lib/task-route-sources.d.ts.map +1 -1
  67. package/dist/lib/task-routing.d.ts.map +1 -1
  68. package/dist/lib/template-semantics.d.ts +8 -0
  69. package/dist/lib/template-semantics.d.ts.map +1 -0
  70. package/dist/mcp/index.js +6631 -1062
  71. package/dist/mcp.js +1 -1
  72. package/dist/pr-groups/http-client.d.ts +24 -0
  73. package/dist/pr-groups/http-client.d.ts.map +1 -0
  74. package/dist/pr-groups/index.d.ts +9 -0
  75. package/dist/pr-groups/index.d.ts.map +1 -0
  76. package/dist/pr-groups/ledger.d.ts +20 -0
  77. package/dist/pr-groups/ledger.d.ts.map +1 -0
  78. package/dist/pr-groups/postgres.d.ts +21 -0
  79. package/dist/pr-groups/postgres.d.ts.map +1 -0
  80. package/dist/pr-groups/sqlite.d.ts +16 -0
  81. package/dist/pr-groups/sqlite.d.ts.map +1 -0
  82. package/dist/pr-groups/types.d.ts +320 -0
  83. package/dist/pr-groups/types.d.ts.map +1 -0
  84. package/dist/registry.js +1665 -523
  85. package/dist/release-provenance.json +5 -5
  86. package/dist/sdk/client.d.ts +16 -0
  87. package/dist/sdk/client.d.ts.map +1 -1
  88. package/dist/sdk/index.d.ts +2 -1
  89. package/dist/sdk/index.d.ts.map +1 -1
  90. package/dist/sdk/index.js +99 -0
  91. package/dist/sdk/v1.generated.d.ts +388 -1
  92. package/dist/sdk/v1.generated.d.ts.map +1 -1
  93. package/dist/server/cloud.d.ts +3 -0
  94. package/dist/server/cloud.d.ts.map +1 -1
  95. package/dist/server/index.js +6538 -969
  96. package/dist/server/openapi.d.ts +2020 -278
  97. package/dist/server/openapi.d.ts.map +1 -1
  98. package/dist/server/pr-groups.d.ts +7 -0
  99. package/dist/server/pr-groups.d.ts.map +1 -0
  100. package/dist/server/serve.d.ts.map +1 -1
  101. package/dist/server/v1.d.ts +2 -1
  102. package/dist/server/v1.d.ts.map +1 -1
  103. package/dist/storage/cloud-client.d.ts +1 -0
  104. package/dist/storage/cloud-client.d.ts.map +1 -1
  105. package/dist/storage/config.d.ts +5 -5
  106. package/dist/storage/config.d.ts.map +1 -1
  107. package/dist/storage/index.d.ts +1 -1
  108. package/dist/storage/index.d.ts.map +1 -1
  109. package/dist/storage/interfaces.d.ts +3 -2
  110. package/dist/storage/interfaces.d.ts.map +1 -1
  111. package/dist/storage/local-sqlite.d.ts.map +1 -1
  112. package/dist/storage/postgres-adapter.d.ts.map +1 -1
  113. package/dist/storage/postgres-sync.d.ts +1 -1
  114. package/dist/storage/postgres-sync.d.ts.map +1 -1
  115. package/dist/storage/shadow-outbox.d.ts.map +1 -1
  116. package/dist/storage/shadow.d.ts +1 -1
  117. package/dist/storage/shadow.d.ts.map +1 -1
  118. package/dist/storage/sqlite-snapshot.d.ts.map +1 -1
  119. package/dist/storage.d.ts +1 -1
  120. package/dist/storage.d.ts.map +1 -1
  121. package/dist/storage.js +1958 -524
  122. package/dist/types/index.d.ts +90 -0
  123. package/dist/types/index.d.ts.map +1 -1
  124. package/package.json +1 -1
@@ -210,6 +210,219 @@ export declare function buildV1OpenApiDocument(version?: string): {
210
210
  };
211
211
  };
212
212
  };
213
+ Template: {
214
+ readonly type: "object";
215
+ readonly required: readonly ["id", "name", "title_pattern", "priority", "tags", "variables", "version", "metadata", "created_at"];
216
+ readonly properties: {
217
+ readonly id: {
218
+ readonly type: "string";
219
+ };
220
+ readonly name: {
221
+ readonly type: "string";
222
+ };
223
+ readonly title_pattern: {
224
+ readonly type: "string";
225
+ };
226
+ readonly description: {
227
+ readonly type: "string";
228
+ readonly nullable: true;
229
+ };
230
+ readonly priority: {
231
+ readonly type: "string";
232
+ readonly enum: readonly ["low", "medium", "high", "critical"];
233
+ };
234
+ readonly tags: {
235
+ readonly type: "array";
236
+ readonly items: {
237
+ readonly type: "string";
238
+ };
239
+ };
240
+ readonly variables: {
241
+ readonly type: "array";
242
+ readonly items: {
243
+ readonly type: "object";
244
+ readonly properties: {
245
+ readonly name: {
246
+ readonly type: "string";
247
+ };
248
+ readonly required: {
249
+ readonly type: "boolean";
250
+ };
251
+ readonly default: {
252
+ readonly type: "string";
253
+ };
254
+ readonly description: {
255
+ readonly type: "string";
256
+ };
257
+ };
258
+ };
259
+ };
260
+ readonly version: {
261
+ readonly type: "integer";
262
+ readonly minimum: 1;
263
+ };
264
+ readonly project_id: {
265
+ readonly type: "string";
266
+ readonly nullable: true;
267
+ };
268
+ readonly plan_id: {
269
+ readonly type: "string";
270
+ readonly nullable: true;
271
+ };
272
+ readonly metadata: {
273
+ readonly type: "object";
274
+ readonly additionalProperties: true;
275
+ };
276
+ readonly created_at: {
277
+ readonly type: "string";
278
+ readonly format: "date-time";
279
+ };
280
+ readonly tasks: {
281
+ readonly type: "array";
282
+ readonly items: {
283
+ readonly $ref: "#/components/schemas/TemplateTask";
284
+ };
285
+ };
286
+ };
287
+ };
288
+ TemplateTask: {
289
+ readonly type: "object";
290
+ readonly required: readonly ["id", "template_id", "position", "title_pattern", "priority", "tags", "depends_on_positions", "metadata", "created_at"];
291
+ readonly properties: {
292
+ readonly id: {
293
+ readonly type: "string";
294
+ };
295
+ readonly template_id: {
296
+ readonly type: "string";
297
+ };
298
+ readonly position: {
299
+ readonly type: "integer";
300
+ readonly minimum: 0;
301
+ };
302
+ readonly title_pattern: {
303
+ readonly type: "string";
304
+ };
305
+ readonly description: {
306
+ readonly type: "string";
307
+ readonly nullable: true;
308
+ };
309
+ readonly priority: {
310
+ readonly type: "string";
311
+ readonly enum: readonly ["low", "medium", "high", "critical"];
312
+ };
313
+ readonly tags: {
314
+ readonly type: "array";
315
+ readonly items: {
316
+ readonly type: "string";
317
+ };
318
+ };
319
+ readonly task_type: {
320
+ readonly type: "string";
321
+ readonly nullable: true;
322
+ };
323
+ readonly condition: {
324
+ readonly type: "string";
325
+ readonly nullable: true;
326
+ };
327
+ readonly include_template_id: {
328
+ readonly type: "string";
329
+ readonly nullable: true;
330
+ };
331
+ readonly depends_on_positions: {
332
+ readonly type: "array";
333
+ readonly items: {
334
+ readonly type: "integer";
335
+ readonly minimum: 0;
336
+ };
337
+ };
338
+ readonly metadata: {
339
+ readonly type: "object";
340
+ readonly additionalProperties: true;
341
+ };
342
+ readonly created_at: {
343
+ readonly type: "string";
344
+ readonly format: "date-time";
345
+ };
346
+ };
347
+ };
348
+ TemplateVariable: {
349
+ readonly type: "object";
350
+ readonly required: readonly ["name", "required"];
351
+ readonly properties: {
352
+ readonly name: {
353
+ readonly type: "string";
354
+ };
355
+ readonly required: {
356
+ readonly type: "boolean";
357
+ };
358
+ readonly default: {
359
+ readonly type: "string";
360
+ };
361
+ readonly description: {
362
+ readonly type: "string";
363
+ };
364
+ };
365
+ };
366
+ CreateTemplateTaskInput: {
367
+ readonly type: "object";
368
+ readonly additionalProperties: false;
369
+ readonly required: readonly ["title_pattern"];
370
+ readonly properties: {
371
+ readonly position: {
372
+ readonly type: "integer";
373
+ readonly minimum: 0;
374
+ };
375
+ readonly title_pattern: {
376
+ readonly type: "string";
377
+ readonly minLength: 1;
378
+ };
379
+ readonly description: {
380
+ readonly type: "string";
381
+ readonly nullable: true;
382
+ };
383
+ readonly priority: {
384
+ readonly type: "string";
385
+ readonly enum: readonly ["low", "medium", "high", "critical"];
386
+ };
387
+ readonly tags: {
388
+ readonly type: "array";
389
+ readonly items: {
390
+ readonly type: "string";
391
+ readonly minLength: 1;
392
+ };
393
+ };
394
+ readonly task_type: {
395
+ readonly type: "string";
396
+ readonly nullable: true;
397
+ };
398
+ readonly condition: {
399
+ readonly type: "string";
400
+ readonly nullable: true;
401
+ };
402
+ readonly include_template_id: {
403
+ readonly type: "string";
404
+ readonly nullable: true;
405
+ };
406
+ readonly depends_on: {
407
+ readonly type: "array";
408
+ readonly items: {
409
+ readonly type: "integer";
410
+ readonly minimum: 0;
411
+ };
412
+ };
413
+ readonly depends_on_positions: {
414
+ readonly type: "array";
415
+ readonly items: {
416
+ readonly type: "integer";
417
+ readonly minimum: 0;
418
+ };
419
+ };
420
+ readonly metadata: {
421
+ readonly type: "object";
422
+ readonly additionalProperties: true;
423
+ };
424
+ };
425
+ };
213
426
  CreateTaskInput: {
214
427
  type: string;
215
428
  required: string[];
@@ -219,6 +432,7 @@ export declare function buildV1OpenApiDocument(version?: string): {
219
432
  };
220
433
  description: {
221
434
  type: string;
435
+ nullable: boolean;
222
436
  };
223
437
  status: {
224
438
  type: string;
@@ -528,102 +742,1599 @@ export declare function buildV1OpenApiDocument(version?: string): {
528
742
  };
529
743
  };
530
744
  };
531
- };
532
- };
533
- security: {
534
- apiKey: never[];
535
- }[];
536
- paths: {
537
- "/v1/tasks": {
538
- get: {
539
- operationId: string;
540
- summary: string;
541
- parameters: ({
542
- name: string;
543
- in: string;
544
- schema: {
745
+ CreateTemplateInput: {
746
+ type: string;
747
+ additionalProperties: boolean;
748
+ required: string[];
749
+ properties: {
750
+ name: {
545
751
  type: string;
546
- nullable?: undefined;
547
- minimum?: undefined;
752
+ minLength: number;
548
753
  };
549
- } | {
550
- name: string;
551
- in: string;
552
- schema: {
754
+ title_pattern: {
553
755
  type: string;
554
- nullable: boolean;
555
- minimum?: undefined;
756
+ minLength: number;
556
757
  };
557
- } | {
558
- name: string;
559
- in: string;
560
- schema: {
758
+ description: {
561
759
  type: string;
562
- minimum: number;
563
- nullable?: undefined;
760
+ nullable: boolean;
564
761
  };
565
- })[];
566
- responses: {
567
- "200": {
568
- content: {
569
- "application/json": {
570
- schema: {
571
- type: string;
572
- required: string[];
573
- properties: {
574
- tasks: {
575
- type: string;
576
- items: {
577
- $ref: string;
578
- };
579
- };
580
- count: {
581
- type: string;
582
- minimum: number;
583
- };
584
- total: {
585
- type: string;
586
- minimum: number;
587
- };
588
- };
589
- };
590
- };
591
- };
762
+ priority: {
763
+ type: string;
764
+ enum: string[];
592
765
  };
593
- };
594
- };
595
- post: {
596
- operationId: string;
597
- summary: string;
598
- requestBody: {
599
- required: boolean;
600
- content: {
601
- "application/json": {
602
- schema: {
603
- $ref: string;
604
- };
766
+ tags: {
767
+ type: string;
768
+ items: {
769
+ type: string;
770
+ minLength: number;
605
771
  };
606
772
  };
607
- };
608
- responses: {
609
- "201": {
610
- content: {
611
- "application/json": {
612
- schema: {
613
- type: string;
614
- properties: {
615
- task: {
616
- $ref: string;
617
- };
618
- };
619
- };
620
- };
773
+ variables: {
774
+ type: string;
775
+ items: {
776
+ $ref: string;
777
+ };
778
+ };
779
+ project_id: {
780
+ type: string;
781
+ minLength: number;
782
+ nullable: boolean;
783
+ };
784
+ plan_id: {
785
+ type: string;
786
+ minLength: number;
787
+ nullable: boolean;
788
+ };
789
+ metadata: {
790
+ type: string;
791
+ additionalProperties: boolean;
792
+ };
793
+ tasks: {
794
+ type: string;
795
+ items: {
796
+ $ref: string;
797
+ };
798
+ };
799
+ };
800
+ };
801
+ UpdateTemplateInput: {
802
+ type: string;
803
+ additionalProperties: boolean;
804
+ minProperties: number;
805
+ properties: {
806
+ name: {
807
+ type: string;
808
+ minLength: number;
809
+ };
810
+ title_pattern: {
811
+ type: string;
812
+ minLength: number;
813
+ };
814
+ description: {
815
+ type: string;
816
+ nullable: boolean;
817
+ };
818
+ priority: {
819
+ type: string;
820
+ enum: string[];
821
+ };
822
+ tags: {
823
+ type: string;
824
+ items: {
825
+ type: string;
826
+ minLength: number;
827
+ };
828
+ };
829
+ variables: {
830
+ type: string;
831
+ items: {
832
+ type: string;
833
+ };
834
+ };
835
+ project_id: {
836
+ type: string;
837
+ nullable: boolean;
838
+ };
839
+ plan_id: {
840
+ type: string;
841
+ nullable: boolean;
842
+ };
843
+ metadata: {
844
+ type: string;
845
+ additionalProperties: boolean;
846
+ };
847
+ };
848
+ };
849
+ PrGroupCiProof: {
850
+ type: string;
851
+ additionalProperties: boolean;
852
+ required: string[];
853
+ properties: {
854
+ provider: {
855
+ type: string;
856
+ minLength: number;
857
+ };
858
+ provider_run_id: {
859
+ type: string;
860
+ minLength: number;
861
+ };
862
+ status: {
863
+ type: string;
864
+ enum: string[];
865
+ };
866
+ repository: {
867
+ type: string;
868
+ minLength: number;
869
+ };
870
+ pr_number: {
871
+ type: string;
872
+ minimum: number;
873
+ };
874
+ base_sha: {
875
+ type: string;
876
+ pattern: string;
877
+ };
878
+ head_sha: {
879
+ type: string;
880
+ pattern: string;
881
+ };
882
+ };
883
+ };
884
+ PrGroupCleanupProof: {
885
+ type: string;
886
+ additionalProperties: boolean;
887
+ required: string[];
888
+ properties: {
889
+ worktree_clean: {
890
+ type: string;
891
+ const: boolean;
892
+ };
893
+ provider_reachable: {
894
+ type: string;
895
+ const: boolean;
896
+ };
897
+ provider_head_sha: {
898
+ type: string;
899
+ pattern: string;
900
+ };
901
+ pr_policy_satisfied: {
902
+ type: string;
903
+ const: boolean;
904
+ };
905
+ terminal_disposition: {
906
+ type: string;
907
+ enum: string[];
908
+ };
909
+ writer_retired: {
910
+ type: string;
911
+ const: boolean;
912
+ };
913
+ review_receipt_key: {
914
+ type: string;
915
+ nullable: boolean;
916
+ };
917
+ conditional_merge_receipt_key: {
918
+ type: string;
919
+ nullable: boolean;
920
+ };
921
+ merge_receipt_key: {
922
+ type: string;
923
+ nullable: boolean;
924
+ };
925
+ };
926
+ };
927
+ PrGroupRecord: {
928
+ type: string;
929
+ additionalProperties: boolean;
930
+ required: string[];
931
+ properties: {
932
+ schema_version: {
933
+ type: string;
934
+ const: number;
935
+ };
936
+ id: {
937
+ type: string;
938
+ };
939
+ identity_key: {
940
+ type: string;
941
+ };
942
+ root_request_id: {
943
+ type: string;
944
+ };
945
+ repository: {
946
+ type: string;
947
+ };
948
+ leaf_task_id: {
949
+ type: string;
950
+ };
951
+ branch: {
952
+ type: string;
953
+ };
954
+ pr_number: {
955
+ type: string;
956
+ nullable: boolean;
957
+ };
958
+ base_sha: {
959
+ type: string;
960
+ nullable: boolean;
961
+ };
962
+ state: {
963
+ type: string;
964
+ enum: string[];
965
+ };
966
+ active_attempt_id: {
967
+ type: string;
968
+ nullable: boolean;
969
+ };
970
+ active_generation: {
971
+ type: string;
972
+ nullable: boolean;
973
+ };
974
+ repair_cycle_count: {
975
+ type: string;
976
+ minimum: number;
977
+ maximum: number;
978
+ };
979
+ repair_cycle_limit: {
980
+ type: string;
981
+ const: number;
982
+ };
983
+ terminal_attempt_id: {
984
+ type: string;
985
+ nullable: boolean;
986
+ };
987
+ terminal_generation: {
988
+ type: string;
989
+ nullable: boolean;
990
+ };
991
+ terminal_outcome: {
992
+ type: string;
993
+ nullable: boolean;
994
+ enum: (string | null)[];
995
+ };
996
+ terminal_head_sha: {
997
+ type: string;
998
+ nullable: boolean;
999
+ };
1000
+ terminal_at: {
1001
+ type: string;
1002
+ nullable: boolean;
1003
+ };
1004
+ cleanup_eligible_at: {
1005
+ type: string;
1006
+ nullable: boolean;
1007
+ };
1008
+ revision: {
1009
+ type: string;
1010
+ minimum: number;
1011
+ };
1012
+ created_at: {
1013
+ type: string;
1014
+ };
1015
+ updated_at: {
1016
+ type: string;
1017
+ };
1018
+ };
1019
+ };
1020
+ PrGroupAttemptRecord: {
1021
+ type: string;
1022
+ additionalProperties: boolean;
1023
+ required: string[];
1024
+ properties: {
1025
+ schema_version: {
1026
+ type: string;
1027
+ const: number;
1028
+ };
1029
+ id: {
1030
+ type: string;
1031
+ };
1032
+ group_id: {
1033
+ type: string;
1034
+ };
1035
+ leaf_task_id: {
1036
+ type: string;
1037
+ };
1038
+ dispatch_attempt: {
1039
+ type: string;
1040
+ };
1041
+ writer_generation: {
1042
+ type: string;
1043
+ };
1044
+ previous_attempt_id: {
1045
+ type: string;
1046
+ nullable: boolean;
1047
+ };
1048
+ worktree: {
1049
+ type: string;
1050
+ };
1051
+ branch: {
1052
+ type: string;
1053
+ };
1054
+ repository: {
1055
+ type: string;
1056
+ };
1057
+ pr_number: {
1058
+ type: string;
1059
+ nullable: boolean;
1060
+ };
1061
+ base_sha: {
1062
+ type: string;
1063
+ nullable: boolean;
1064
+ };
1065
+ provider: {
1066
+ type: string;
1067
+ nullable: boolean;
1068
+ };
1069
+ provider_run_id: {
1070
+ type: string;
1071
+ nullable: boolean;
1072
+ };
1073
+ profile_alias: {
1074
+ type: string;
1075
+ nullable: boolean;
1076
+ };
1077
+ status: {
1078
+ type: string;
1079
+ enum: string[];
1080
+ };
1081
+ admitted_at: {
1082
+ type: string;
1083
+ };
1084
+ started_at: {
1085
+ type: string;
1086
+ nullable: boolean;
1087
+ };
1088
+ last_heartbeat_at: {
1089
+ type: string;
1090
+ nullable: boolean;
1091
+ };
1092
+ handed_off_at: {
1093
+ type: string;
1094
+ nullable: boolean;
1095
+ };
1096
+ fenced_at: {
1097
+ type: string;
1098
+ nullable: boolean;
1099
+ };
1100
+ terminal_at: {
1101
+ type: string;
1102
+ nullable: boolean;
1103
+ };
1104
+ created_at: {
1105
+ type: string;
1106
+ };
1107
+ updated_at: {
1108
+ type: string;
1109
+ };
1110
+ };
1111
+ };
1112
+ PrGroupEventRecord: {
1113
+ type: string;
1114
+ additionalProperties: boolean;
1115
+ required: string[];
1116
+ properties: {
1117
+ schema_version: {
1118
+ type: string;
1119
+ const: number;
1120
+ };
1121
+ id: {
1122
+ type: string;
1123
+ };
1124
+ group_id: {
1125
+ type: string;
1126
+ };
1127
+ attempt_id: {
1128
+ type: string;
1129
+ };
1130
+ writer_generation: {
1131
+ type: string;
1132
+ };
1133
+ sequence: {
1134
+ type: string;
1135
+ minimum: number;
1136
+ };
1137
+ idempotency_key: {
1138
+ type: string;
1139
+ };
1140
+ event_type: {
1141
+ type: string;
1142
+ enum: string[];
1143
+ };
1144
+ state: {
1145
+ type: string;
1146
+ enum: string[];
1147
+ };
1148
+ message: {
1149
+ type: string;
1150
+ nullable: boolean;
1151
+ };
1152
+ head_sha: {
1153
+ type: string;
1154
+ nullable: boolean;
1155
+ };
1156
+ receipt_key: {
1157
+ type: string;
1158
+ nullable: boolean;
1159
+ };
1160
+ review_receipt_key: {
1161
+ type: string;
1162
+ nullable: boolean;
1163
+ };
1164
+ conditional_merge_receipt_key: {
1165
+ type: string;
1166
+ nullable: boolean;
1167
+ };
1168
+ outcome: {
1169
+ type: string;
1170
+ nullable: boolean;
1171
+ enum: (string | null)[];
1172
+ };
1173
+ repository: {
1174
+ type: string;
1175
+ };
1176
+ pr_number: {
1177
+ type: string;
1178
+ nullable: boolean;
1179
+ };
1180
+ base_sha: {
1181
+ type: string;
1182
+ nullable: boolean;
1183
+ };
1184
+ actor_id: {
1185
+ type: string;
1186
+ nullable: boolean;
1187
+ };
1188
+ actor_run_id: {
1189
+ type: string;
1190
+ nullable: boolean;
1191
+ };
1192
+ expected_reviewer_id: {
1193
+ type: string;
1194
+ nullable: boolean;
1195
+ };
1196
+ expected_reviewer_run_id: {
1197
+ type: string;
1198
+ nullable: boolean;
1199
+ };
1200
+ repair_cycle: {
1201
+ type: string;
1202
+ nullable: boolean;
1203
+ };
1204
+ ci_proof: {
1205
+ oneOf: ({
1206
+ $ref: string;
1207
+ type?: undefined;
1208
+ } | {
1209
+ type: string;
1210
+ $ref?: undefined;
1211
+ })[];
1212
+ };
1213
+ cleanup_proof: {
1214
+ oneOf: ({
1215
+ $ref: string;
1216
+ type?: undefined;
1217
+ } | {
1218
+ type: string;
1219
+ $ref?: undefined;
1220
+ })[];
1221
+ };
1222
+ metadata: {
1223
+ type: string;
1224
+ additionalProperties: boolean;
1225
+ };
1226
+ payload_hash: {
1227
+ type: string;
1228
+ };
1229
+ created_at: {
1230
+ type: string;
1231
+ };
1232
+ };
1233
+ };
1234
+ PrGroupWorkRunAdapter: {
1235
+ type: string;
1236
+ additionalProperties: boolean;
1237
+ required: string[];
1238
+ properties: {
1239
+ kind: {
1240
+ type: string;
1241
+ const: string;
1242
+ };
1243
+ id: {
1244
+ type: string;
1245
+ };
1246
+ group_id: {
1247
+ type: string;
1248
+ };
1249
+ task_id: {
1250
+ type: string;
1251
+ };
1252
+ dispatch_attempt: {
1253
+ type: string;
1254
+ };
1255
+ writer_generation: {
1256
+ type: string;
1257
+ };
1258
+ previous_run_id: {
1259
+ type: string;
1260
+ nullable: boolean;
1261
+ };
1262
+ worktree: {
1263
+ type: string;
1264
+ };
1265
+ branch: {
1266
+ type: string;
1267
+ };
1268
+ repository: {
1269
+ type: string;
1270
+ };
1271
+ pr_number: {
1272
+ type: string;
1273
+ nullable: boolean;
1274
+ };
1275
+ base_sha: {
1276
+ type: string;
1277
+ nullable: boolean;
1278
+ };
1279
+ provider: {
1280
+ type: string;
1281
+ nullable: boolean;
1282
+ };
1283
+ provider_run_id: {
1284
+ type: string;
1285
+ nullable: boolean;
1286
+ };
1287
+ profile_alias: {
1288
+ type: string;
1289
+ nullable: boolean;
1290
+ };
1291
+ status: {
1292
+ type: string;
1293
+ };
1294
+ admitted_at: {
1295
+ type: string;
1296
+ };
1297
+ terminal_at: {
1298
+ type: string;
1299
+ nullable: boolean;
1300
+ };
1301
+ };
1302
+ };
1303
+ PrGroupEvidenceRefAdapter: {
1304
+ type: string;
1305
+ additionalProperties: boolean;
1306
+ required: string[];
1307
+ properties: {
1308
+ kind: {
1309
+ type: string;
1310
+ const: string;
1311
+ };
1312
+ id: {
1313
+ type: string;
1314
+ };
1315
+ group_id: {
1316
+ type: string;
1317
+ };
1318
+ work_run_id: {
1319
+ type: string;
1320
+ };
1321
+ sequence: {
1322
+ type: string;
1323
+ minimum: number;
1324
+ };
1325
+ evidence_type: {
1326
+ type: string;
1327
+ };
1328
+ repository: {
1329
+ type: string;
1330
+ };
1331
+ pr_number: {
1332
+ type: string;
1333
+ nullable: boolean;
1334
+ };
1335
+ base_sha: {
1336
+ type: string;
1337
+ nullable: boolean;
1338
+ };
1339
+ head_sha: {
1340
+ type: string;
1341
+ nullable: boolean;
1342
+ };
1343
+ receipt_key: {
1344
+ type: string;
1345
+ nullable: boolean;
1346
+ };
1347
+ outcome: {
1348
+ type: string;
1349
+ nullable: boolean;
1350
+ enum: (string | null)[];
1351
+ };
1352
+ actor_id: {
1353
+ type: string;
1354
+ nullable: boolean;
1355
+ };
1356
+ actor_run_id: {
1357
+ type: string;
1358
+ nullable: boolean;
1359
+ };
1360
+ payload_hash: {
1361
+ type: string;
1362
+ };
1363
+ created_at: {
1364
+ type: string;
1365
+ };
1366
+ };
1367
+ };
1368
+ PrGroupProofBundleAdapter: {
1369
+ type: string;
1370
+ additionalProperties: boolean;
1371
+ required: string[];
1372
+ properties: {
1373
+ kind: {
1374
+ type: string;
1375
+ const: string;
1376
+ };
1377
+ id: {
1378
+ type: string;
1379
+ };
1380
+ group_id: {
1381
+ type: string;
1382
+ };
1383
+ revision: {
1384
+ type: string;
1385
+ minimum: number;
1386
+ };
1387
+ evidence_ref_ids: {
1388
+ type: string;
1389
+ items: {
1390
+ type: string;
1391
+ };
1392
+ };
1393
+ exact_head: {
1394
+ type: string;
1395
+ nullable: boolean;
1396
+ };
1397
+ complete: {
1398
+ type: string;
1399
+ };
1400
+ };
1401
+ };
1402
+ PrGroupDecisionEnvelopeAdapter: {
1403
+ type: string;
1404
+ additionalProperties: boolean;
1405
+ required: string[];
1406
+ properties: {
1407
+ kind: {
1408
+ type: string;
1409
+ const: string;
1410
+ };
1411
+ id: {
1412
+ type: string;
1413
+ };
1414
+ group_id: {
1415
+ type: string;
1416
+ };
1417
+ state: {
1418
+ type: string;
1419
+ };
1420
+ active_work_run_id: {
1421
+ type: string;
1422
+ nullable: boolean;
1423
+ };
1424
+ active_writer_generation: {
1425
+ type: string;
1426
+ nullable: boolean;
1427
+ };
1428
+ repair_cycle_count: {
1429
+ type: string;
1430
+ minimum: number;
1431
+ maximum: number;
1432
+ };
1433
+ repair_cycle_limit: {
1434
+ type: string;
1435
+ const: number;
1436
+ };
1437
+ terminal_outcome: {
1438
+ type: string;
1439
+ nullable: boolean;
1440
+ enum: (string | null)[];
1441
+ };
1442
+ terminal_head_sha: {
1443
+ type: string;
1444
+ nullable: boolean;
1445
+ };
1446
+ cleanup_eligible: {
1447
+ type: string;
1448
+ };
1449
+ revision: {
1450
+ type: string;
1451
+ minimum: number;
1452
+ };
1453
+ };
1454
+ };
1455
+ PrGroupStateView: {
1456
+ type: string;
1457
+ additionalProperties: boolean;
1458
+ required: string[];
1459
+ properties: {
1460
+ schema_version: {
1461
+ type: string;
1462
+ const: number;
1463
+ };
1464
+ authoritative: {
1465
+ type: string;
1466
+ const: boolean;
1467
+ };
1468
+ authority: {
1469
+ type: string;
1470
+ enum: string[];
1471
+ };
1472
+ group: {
1473
+ $ref: string;
1474
+ };
1475
+ attempts: {
1476
+ type: string;
1477
+ maxItems: number;
1478
+ items: {
1479
+ $ref: string;
1480
+ };
1481
+ };
1482
+ latest_event: {
1483
+ oneOf: ({
1484
+ $ref: string;
1485
+ type?: undefined;
1486
+ } | {
1487
+ type: string;
1488
+ $ref?: undefined;
1489
+ })[];
1490
+ };
1491
+ review_receipts: {
1492
+ type: string;
1493
+ maxItems: number;
1494
+ items: {
1495
+ $ref: string;
1496
+ };
1497
+ };
1498
+ conditional_merge_receipts: {
1499
+ type: string;
1500
+ maxItems: number;
1501
+ items: {
1502
+ $ref: string;
1503
+ };
1504
+ };
1505
+ merge_receipts: {
1506
+ type: string;
1507
+ maxItems: number;
1508
+ items: {
1509
+ $ref: string;
1510
+ };
1511
+ };
1512
+ cleanup_receipts: {
1513
+ type: string;
1514
+ maxItems: number;
1515
+ items: {
1516
+ $ref: string;
1517
+ };
1518
+ };
1519
+ cleanup_eligible: {
1520
+ type: string;
1521
+ };
1522
+ adapters: {
1523
+ type: string;
1524
+ additionalProperties: boolean;
1525
+ required: string[];
1526
+ properties: {
1527
+ work_runs: {
1528
+ type: string;
1529
+ maxItems: number;
1530
+ items: {
1531
+ $ref: string;
1532
+ };
1533
+ };
1534
+ evidence_refs: {
1535
+ type: string;
1536
+ maxItems: number;
1537
+ items: {
1538
+ $ref: string;
1539
+ };
1540
+ };
1541
+ proof_bundle: {
1542
+ $ref: string;
1543
+ };
1544
+ decision_envelope: {
1545
+ $ref: string;
1546
+ };
1547
+ };
1548
+ };
1549
+ diagnostics: {
1550
+ type: string;
1551
+ additionalProperties: boolean;
1552
+ required: string[];
1553
+ properties: {
1554
+ event_count: {
1555
+ type: string;
1556
+ minimum: number;
1557
+ };
1558
+ attempts_omitted: {
1559
+ type: string;
1560
+ };
1561
+ receipt_history_complete: {
1562
+ type: string;
1563
+ };
1564
+ projection_limits: {
1565
+ type: string;
1566
+ additionalProperties: boolean;
1567
+ required: string[];
1568
+ properties: {
1569
+ attempts: {
1570
+ type: string;
1571
+ minimum: number;
1572
+ };
1573
+ receipts: {
1574
+ type: string;
1575
+ minimum: number;
1576
+ };
1577
+ };
1578
+ };
1579
+ };
1580
+ };
1581
+ };
1582
+ };
1583
+ PrGroupStateResponse: {
1584
+ type: string;
1585
+ additionalProperties: boolean;
1586
+ required: string[];
1587
+ properties: {
1588
+ view: {
1589
+ $ref: string;
1590
+ };
1591
+ };
1592
+ };
1593
+ PrGroupEventPage: {
1594
+ type: string;
1595
+ additionalProperties: boolean;
1596
+ required: string[];
1597
+ properties: {
1598
+ schema_version: {
1599
+ type: string;
1600
+ const: number;
1601
+ };
1602
+ authoritative: {
1603
+ type: string;
1604
+ const: boolean;
1605
+ };
1606
+ authority: {
1607
+ type: string;
1608
+ enum: string[];
1609
+ };
1610
+ group_id: {
1611
+ type: string;
1612
+ };
1613
+ events: {
1614
+ type: string;
1615
+ maxItems: number;
1616
+ items: {
1617
+ $ref: string;
1618
+ };
1619
+ };
1620
+ count: {
1621
+ type: string;
1622
+ minimum: number;
1623
+ maximum: number;
1624
+ };
1625
+ has_more: {
1626
+ type: string;
1627
+ };
1628
+ next_sequence: {
1629
+ type: string;
1630
+ nullable: boolean;
1631
+ };
1632
+ };
1633
+ };
1634
+ PrGroupEventHistoryResponse: {
1635
+ type: string;
1636
+ additionalProperties: boolean;
1637
+ required: string[];
1638
+ properties: {
1639
+ history: {
1640
+ $ref: string;
1641
+ };
1642
+ };
1643
+ };
1644
+ AdmitPrGroupInput: {
1645
+ type: string;
1646
+ additionalProperties: boolean;
1647
+ required: string[];
1648
+ properties: {
1649
+ root_request_id: {
1650
+ type: string;
1651
+ minLength: number;
1652
+ };
1653
+ repository: {
1654
+ type: string;
1655
+ minLength: number;
1656
+ };
1657
+ leaf_task_id: {
1658
+ type: string;
1659
+ minLength: number;
1660
+ };
1661
+ dispatch_attempt: {
1662
+ type: string;
1663
+ minLength: number;
1664
+ };
1665
+ writer_generation: {
1666
+ type: string;
1667
+ minLength: number;
1668
+ };
1669
+ worktree: {
1670
+ type: string;
1671
+ minLength: number;
1672
+ };
1673
+ branch: {
1674
+ type: string;
1675
+ minLength: number;
1676
+ };
1677
+ pr_number: {
1678
+ type: string;
1679
+ nullable: boolean;
1680
+ };
1681
+ base_sha: {
1682
+ type: string;
1683
+ nullable: boolean;
1684
+ };
1685
+ provider: {
1686
+ type: string;
1687
+ nullable: boolean;
1688
+ };
1689
+ provider_run_id: {
1690
+ type: string;
1691
+ nullable: boolean;
1692
+ };
1693
+ profile_alias: {
1694
+ type: string;
1695
+ nullable: boolean;
1696
+ };
1697
+ admitted_at: {
1698
+ type: string;
1699
+ };
1700
+ };
1701
+ };
1702
+ RecoverPrGroupInput: {
1703
+ type: string;
1704
+ additionalProperties: boolean;
1705
+ required: string[];
1706
+ properties: {
1707
+ root_request_id: {
1708
+ type: string;
1709
+ };
1710
+ repository: {
1711
+ type: string;
1712
+ };
1713
+ leaf_task_id: {
1714
+ type: string;
1715
+ };
1716
+ expected_attempt_id: {
1717
+ type: string;
1718
+ };
1719
+ dispatch_attempt: {
1720
+ type: string;
1721
+ };
1722
+ expected_generation: {
1723
+ type: string;
1724
+ };
1725
+ writer_generation: {
1726
+ type: string;
1727
+ };
1728
+ worktree: {
1729
+ type: string;
1730
+ };
1731
+ branch: {
1732
+ type: string;
1733
+ };
1734
+ pr_number: {
1735
+ type: string;
1736
+ nullable: boolean;
1737
+ };
1738
+ base_sha: {
1739
+ type: string;
1740
+ nullable: boolean;
1741
+ };
1742
+ provider: {
1743
+ type: string;
1744
+ nullable: boolean;
1745
+ };
1746
+ provider_run_id: {
1747
+ type: string;
1748
+ nullable: boolean;
1749
+ };
1750
+ profile_alias: {
1751
+ type: string;
1752
+ nullable: boolean;
1753
+ };
1754
+ idempotency_key: {
1755
+ type: string;
1756
+ };
1757
+ message: {
1758
+ type: string;
1759
+ nullable: boolean;
1760
+ };
1761
+ metadata: {
1762
+ type: string;
1763
+ additionalProperties: boolean;
1764
+ };
1765
+ recovered_at: {
1766
+ type: string;
1767
+ };
1768
+ };
1769
+ };
1770
+ AppendPrGroupEventInput: {
1771
+ type: string;
1772
+ additionalProperties: boolean;
1773
+ required: string[];
1774
+ properties: {
1775
+ attempt_id: {
1776
+ type: string;
1777
+ };
1778
+ writer_generation: {
1779
+ type: string;
1780
+ };
1781
+ idempotency_key: {
1782
+ type: string;
1783
+ };
1784
+ event_type: {
1785
+ type: string;
1786
+ enum: string[];
1787
+ };
1788
+ message: {
1789
+ type: string;
1790
+ nullable: boolean;
1791
+ };
1792
+ head_sha: {
1793
+ type: string;
1794
+ nullable: boolean;
1795
+ };
1796
+ receipt_key: {
1797
+ type: string;
1798
+ nullable: boolean;
1799
+ };
1800
+ review_receipt_key: {
1801
+ type: string;
1802
+ nullable: boolean;
1803
+ };
1804
+ conditional_merge_receipt_key: {
1805
+ type: string;
1806
+ nullable: boolean;
1807
+ };
1808
+ outcome: {
1809
+ type: string;
1810
+ nullable: boolean;
1811
+ enum: (string | null)[];
1812
+ };
1813
+ repository: {
1814
+ type: string;
1815
+ };
1816
+ pr_number: {
1817
+ type: string;
1818
+ nullable: boolean;
1819
+ };
1820
+ base_sha: {
1821
+ type: string;
1822
+ nullable: boolean;
1823
+ };
1824
+ actor_id: {
1825
+ type: string;
1826
+ nullable: boolean;
1827
+ };
1828
+ actor_run_id: {
1829
+ type: string;
1830
+ nullable: boolean;
1831
+ };
1832
+ expected_reviewer_id: {
1833
+ type: string;
1834
+ nullable: boolean;
1835
+ };
1836
+ expected_reviewer_run_id: {
1837
+ type: string;
1838
+ nullable: boolean;
1839
+ };
1840
+ repair_cycle: {
1841
+ type: string;
1842
+ nullable: boolean;
1843
+ };
1844
+ ci_proof: {
1845
+ oneOf: ({
1846
+ $ref: string;
1847
+ type?: undefined;
1848
+ } | {
1849
+ type: string;
1850
+ $ref?: undefined;
1851
+ })[];
1852
+ };
1853
+ cleanup_proof: {
1854
+ oneOf: ({
1855
+ $ref: string;
1856
+ type?: undefined;
1857
+ } | {
1858
+ type: string;
1859
+ $ref?: undefined;
1860
+ })[];
1861
+ };
1862
+ metadata: {
1863
+ type: string;
1864
+ additionalProperties: boolean;
1865
+ };
1866
+ created_at: {
1867
+ type: string;
1868
+ };
1869
+ };
1870
+ };
1871
+ PrGroupMutationResult: {
1872
+ type: string;
1873
+ additionalProperties: boolean;
1874
+ required: string[];
1875
+ properties: {
1876
+ created: {
1877
+ type: string;
1878
+ };
1879
+ adopted: {
1880
+ type: string;
1881
+ };
1882
+ appended: {
1883
+ type: string;
1884
+ };
1885
+ view: {
1886
+ $ref: string;
1887
+ };
1888
+ event: {
1889
+ $ref: string;
1890
+ };
1891
+ };
1892
+ };
1893
+ };
1894
+ };
1895
+ security: {
1896
+ apiKey: never[];
1897
+ }[];
1898
+ paths: {
1899
+ "/v1/tasks": {
1900
+ get: {
1901
+ operationId: string;
1902
+ summary: string;
1903
+ parameters: ({
1904
+ name: string;
1905
+ in: string;
1906
+ schema: {
1907
+ type: string;
1908
+ nullable?: undefined;
1909
+ minimum?: undefined;
1910
+ };
1911
+ } | {
1912
+ name: string;
1913
+ in: string;
1914
+ schema: {
1915
+ type: string;
1916
+ nullable: boolean;
1917
+ minimum?: undefined;
1918
+ };
1919
+ } | {
1920
+ name: string;
1921
+ in: string;
1922
+ schema: {
1923
+ type: string;
1924
+ minimum: number;
1925
+ nullable?: undefined;
1926
+ };
1927
+ })[];
1928
+ responses: {
1929
+ "200": {
1930
+ content: {
1931
+ "application/json": {
1932
+ schema: {
1933
+ type: string;
1934
+ required: string[];
1935
+ properties: {
1936
+ tasks: {
1937
+ type: string;
1938
+ items: {
1939
+ $ref: string;
1940
+ };
1941
+ };
1942
+ count: {
1943
+ type: string;
1944
+ minimum: number;
1945
+ };
1946
+ total: {
1947
+ type: string;
1948
+ minimum: number;
1949
+ };
1950
+ };
1951
+ };
1952
+ };
1953
+ };
1954
+ };
1955
+ };
1956
+ };
1957
+ post: {
1958
+ operationId: string;
1959
+ summary: string;
1960
+ requestBody: {
1961
+ required: boolean;
1962
+ content: {
1963
+ "application/json": {
1964
+ schema: {
1965
+ $ref: string;
1966
+ };
1967
+ };
1968
+ };
1969
+ };
1970
+ responses: {
1971
+ "201": {
1972
+ content: {
1973
+ "application/json": {
1974
+ schema: {
1975
+ type: string;
1976
+ properties: {
1977
+ task: {
1978
+ $ref: string;
1979
+ };
1980
+ };
1981
+ };
1982
+ };
1983
+ };
1984
+ };
1985
+ };
1986
+ };
1987
+ };
1988
+ "/v1/tasks/{id}": {
1989
+ get: {
1990
+ operationId: string;
1991
+ summary: string;
1992
+ parameters: {
1993
+ name: string;
1994
+ in: string;
1995
+ required: boolean;
1996
+ schema: {
1997
+ type: string;
1998
+ };
1999
+ }[];
2000
+ responses: {
2001
+ "200": {
2002
+ content: {
2003
+ "application/json": {
2004
+ schema: {
2005
+ type: string;
2006
+ properties: {
2007
+ task: {
2008
+ $ref: string;
2009
+ };
2010
+ };
2011
+ };
2012
+ };
2013
+ };
2014
+ };
2015
+ };
2016
+ };
2017
+ patch: {
2018
+ operationId: string;
2019
+ summary: string;
2020
+ parameters: {
2021
+ name: string;
2022
+ in: string;
2023
+ required: boolean;
2024
+ schema: {
2025
+ type: string;
2026
+ };
2027
+ }[];
2028
+ requestBody: {
2029
+ required: boolean;
2030
+ content: {
2031
+ "application/json": {
2032
+ schema: {
2033
+ $ref: string;
2034
+ };
2035
+ };
2036
+ };
2037
+ };
2038
+ responses: {
2039
+ "200": {
2040
+ content: {
2041
+ "application/json": {
2042
+ schema: {
2043
+ type: string;
2044
+ properties: {
2045
+ task: {
2046
+ $ref: string;
2047
+ };
2048
+ };
2049
+ };
2050
+ };
2051
+ };
2052
+ };
2053
+ };
2054
+ };
2055
+ delete: {
2056
+ operationId: string;
2057
+ summary: string;
2058
+ parameters: {
2059
+ name: string;
2060
+ in: string;
2061
+ required: boolean;
2062
+ schema: {
2063
+ type: string;
2064
+ };
2065
+ }[];
2066
+ responses: {
2067
+ "200": {
2068
+ content: {
2069
+ "application/json": {
2070
+ schema: {
2071
+ type: string;
2072
+ properties: {
2073
+ deleted: {
2074
+ type: string;
2075
+ };
2076
+ id: {
2077
+ type: string;
2078
+ };
2079
+ };
2080
+ };
2081
+ };
2082
+ };
2083
+ };
2084
+ };
2085
+ };
2086
+ };
2087
+ "/v1/tasks/{id}/comments": {
2088
+ get: {
2089
+ operationId: string;
2090
+ summary: string;
2091
+ description: string;
2092
+ parameters: ({
2093
+ name: string;
2094
+ in: string;
2095
+ required: boolean;
2096
+ schema: {
2097
+ type: string;
2098
+ minimum?: undefined;
2099
+ maximum?: undefined;
2100
+ default?: undefined;
2101
+ };
2102
+ } | {
2103
+ name: string;
2104
+ in: string;
2105
+ required: boolean;
2106
+ schema: {
2107
+ type: string;
2108
+ minimum: number;
2109
+ maximum: number;
2110
+ default: number;
2111
+ };
2112
+ } | {
2113
+ name: string;
2114
+ in: string;
2115
+ schema: {
2116
+ type: string;
2117
+ minimum?: undefined;
2118
+ maximum?: undefined;
2119
+ default?: undefined;
2120
+ };
2121
+ required?: undefined;
2122
+ })[];
2123
+ responses: {
2124
+ "200": {
2125
+ content: {
2126
+ "application/json": {
2127
+ schema: {
2128
+ type: string;
2129
+ required: string[];
2130
+ properties: {
2131
+ comments: {
2132
+ type: string;
2133
+ maxItems: number;
2134
+ items: {
2135
+ $ref: string;
2136
+ };
2137
+ };
2138
+ count: {
2139
+ type: string;
2140
+ minimum: number;
2141
+ maximum: number;
2142
+ };
2143
+ has_more: {
2144
+ type: string;
2145
+ };
2146
+ next_cursor: {
2147
+ type: string;
2148
+ nullable: boolean;
2149
+ };
2150
+ };
2151
+ };
2152
+ };
2153
+ };
2154
+ };
2155
+ "426": {
2156
+ description: string;
2157
+ };
2158
+ };
2159
+ };
2160
+ post: {
2161
+ operationId: string;
2162
+ summary: string;
2163
+ parameters: {
2164
+ name: string;
2165
+ in: string;
2166
+ required: boolean;
2167
+ schema: {
2168
+ type: string;
2169
+ };
2170
+ }[];
2171
+ requestBody: {
2172
+ required: boolean;
2173
+ content: {
2174
+ "application/json": {
2175
+ schema: {
2176
+ $ref: string;
2177
+ };
2178
+ };
2179
+ };
2180
+ };
2181
+ responses: {
2182
+ "201": {
2183
+ content: {
2184
+ "application/json": {
2185
+ schema: {
2186
+ type: string;
2187
+ required: string[];
2188
+ properties: {
2189
+ comment: {
2190
+ $ref: string;
2191
+ };
2192
+ };
2193
+ };
2194
+ };
2195
+ };
2196
+ };
2197
+ };
2198
+ };
2199
+ };
2200
+ "/v1/tasks/{id}/start": {
2201
+ post: {
2202
+ operationId: string;
2203
+ summary: string;
2204
+ parameters: {
2205
+ name: string;
2206
+ in: string;
2207
+ required: boolean;
2208
+ schema: {
2209
+ type: string;
2210
+ };
2211
+ }[];
2212
+ responses: {
2213
+ "200": {
2214
+ content: {
2215
+ "application/json": {
2216
+ schema: {
2217
+ type: string;
2218
+ properties: {
2219
+ task: {
2220
+ $ref: string;
2221
+ };
2222
+ };
2223
+ };
2224
+ };
2225
+ };
2226
+ };
2227
+ };
2228
+ };
2229
+ };
2230
+ "/v1/tasks/{id}/complete": {
2231
+ post: {
2232
+ operationId: string;
2233
+ summary: string;
2234
+ parameters: {
2235
+ name: string;
2236
+ in: string;
2237
+ required: boolean;
2238
+ schema: {
2239
+ type: string;
2240
+ };
2241
+ }[];
2242
+ requestBody: {
2243
+ required: boolean;
2244
+ content: {
2245
+ "application/json": {
2246
+ schema: {
2247
+ $ref: string;
2248
+ };
2249
+ };
2250
+ };
2251
+ };
2252
+ responses: {
2253
+ "200": {
2254
+ content: {
2255
+ "application/json": {
2256
+ schema: {
2257
+ type: string;
2258
+ properties: {
2259
+ task: {
2260
+ $ref: string;
2261
+ };
2262
+ };
2263
+ };
2264
+ };
621
2265
  };
622
2266
  };
623
2267
  };
624
2268
  };
625
2269
  };
626
- "/v1/tasks/{id}": {
2270
+ "/v1/projects": {
2271
+ get: {
2272
+ operationId: string;
2273
+ summary: string;
2274
+ responses: {
2275
+ "200": {
2276
+ content: {
2277
+ "application/json": {
2278
+ schema: {
2279
+ type: string;
2280
+ properties: {
2281
+ projects: {
2282
+ type: string;
2283
+ items: {
2284
+ $ref: string;
2285
+ };
2286
+ };
2287
+ count: {
2288
+ type: string;
2289
+ };
2290
+ };
2291
+ };
2292
+ };
2293
+ };
2294
+ };
2295
+ };
2296
+ };
2297
+ post: {
2298
+ operationId: string;
2299
+ summary: string;
2300
+ requestBody: {
2301
+ required: boolean;
2302
+ content: {
2303
+ "application/json": {
2304
+ schema: {
2305
+ $ref: string;
2306
+ };
2307
+ };
2308
+ };
2309
+ };
2310
+ responses: {
2311
+ "201": {
2312
+ content: {
2313
+ "application/json": {
2314
+ schema: {
2315
+ type: string;
2316
+ properties: {
2317
+ project: {
2318
+ $ref: string;
2319
+ };
2320
+ };
2321
+ };
2322
+ };
2323
+ };
2324
+ };
2325
+ "409": {
2326
+ content: {
2327
+ "application/json": {
2328
+ schema: {
2329
+ $ref: string;
2330
+ };
2331
+ };
2332
+ };
2333
+ };
2334
+ };
2335
+ };
2336
+ };
2337
+ "/v1/projects/{id}": {
627
2338
  get: {
628
2339
  operationId: string;
629
2340
  summary: string;
@@ -642,7 +2353,7 @@ export declare function buildV1OpenApiDocument(version?: string): {
642
2353
  schema: {
643
2354
  type: string;
644
2355
  properties: {
645
- task: {
2356
+ project: {
646
2357
  $ref: string;
647
2358
  };
648
2359
  };
@@ -680,7 +2391,7 @@ export declare function buildV1OpenApiDocument(version?: string): {
680
2391
  schema: {
681
2392
  type: string;
682
2393
  properties: {
683
- task: {
2394
+ project: {
684
2395
  $ref: string;
685
2396
  };
686
2397
  };
@@ -722,90 +2433,95 @@ export declare function buildV1OpenApiDocument(version?: string): {
722
2433
  };
723
2434
  };
724
2435
  };
725
- "/v1/tasks/{id}/comments": {
726
- get: {
2436
+ "/v1/projects/{id}/rename": {
2437
+ post: {
727
2438
  operationId: string;
728
2439
  summary: string;
729
- description: string;
730
- parameters: ({
2440
+ parameters: {
731
2441
  name: string;
732
2442
  in: string;
733
2443
  required: boolean;
734
2444
  schema: {
735
2445
  type: string;
736
- minimum?: undefined;
737
- maximum?: undefined;
738
- default?: undefined;
739
2446
  };
740
- } | {
741
- name: string;
742
- in: string;
2447
+ }[];
2448
+ requestBody: {
743
2449
  required: boolean;
744
- schema: {
745
- type: string;
746
- minimum: number;
747
- maximum: number;
748
- default: number;
2450
+ content: {
2451
+ "application/json": {
2452
+ schema: {
2453
+ $ref: string;
2454
+ };
2455
+ };
749
2456
  };
750
- } | {
2457
+ };
2458
+ responses: {
2459
+ "200": {
2460
+ content: {
2461
+ "application/json": {
2462
+ schema: {
2463
+ type: string;
2464
+ properties: {
2465
+ project: {
2466
+ $ref: string;
2467
+ };
2468
+ task_lists_updated: {
2469
+ type: string;
2470
+ };
2471
+ };
2472
+ };
2473
+ };
2474
+ };
2475
+ };
2476
+ "409": {
2477
+ content: {
2478
+ "application/json": {
2479
+ schema: {
2480
+ $ref: string;
2481
+ };
2482
+ };
2483
+ };
2484
+ };
2485
+ };
2486
+ };
2487
+ };
2488
+ "/v1/plans": {
2489
+ get: {
2490
+ operationId: string;
2491
+ summary: string;
2492
+ parameters: {
751
2493
  name: string;
752
2494
  in: string;
753
2495
  schema: {
754
2496
  type: string;
755
- minimum?: undefined;
756
- maximum?: undefined;
757
- default?: undefined;
758
2497
  };
759
- required?: undefined;
760
- })[];
2498
+ }[];
761
2499
  responses: {
762
2500
  "200": {
763
2501
  content: {
764
2502
  "application/json": {
765
2503
  schema: {
766
2504
  type: string;
767
- required: string[];
768
2505
  properties: {
769
- comments: {
2506
+ plans: {
770
2507
  type: string;
771
- maxItems: number;
772
2508
  items: {
773
2509
  $ref: string;
774
2510
  };
775
2511
  };
776
2512
  count: {
777
2513
  type: string;
778
- minimum: number;
779
- maximum: number;
780
- };
781
- has_more: {
782
- type: string;
783
- };
784
- next_cursor: {
785
- type: string;
786
- nullable: boolean;
787
2514
  };
788
2515
  };
789
2516
  };
790
2517
  };
791
2518
  };
792
2519
  };
793
- "426": {
794
- description: string;
795
- };
796
2520
  };
797
2521
  };
798
2522
  post: {
799
2523
  operationId: string;
800
2524
  summary: string;
801
- parameters: {
802
- name: string;
803
- in: string;
804
- required: boolean;
805
- schema: {
806
- type: string;
807
- };
808
- }[];
809
2525
  requestBody: {
810
2526
  required: boolean;
811
2527
  content: {
@@ -822,9 +2538,8 @@ export declare function buildV1OpenApiDocument(version?: string): {
822
2538
  "application/json": {
823
2539
  schema: {
824
2540
  type: string;
825
- required: string[];
826
2541
  properties: {
827
- comment: {
2542
+ plan: {
828
2543
  $ref: string;
829
2544
  };
830
2545
  };
@@ -832,11 +2547,20 @@ export declare function buildV1OpenApiDocument(version?: string): {
832
2547
  };
833
2548
  };
834
2549
  };
2550
+ "409": {
2551
+ content: {
2552
+ "application/json": {
2553
+ schema: {
2554
+ $ref: string;
2555
+ };
2556
+ };
2557
+ };
2558
+ };
835
2559
  };
836
2560
  };
837
2561
  };
838
- "/v1/tasks/{id}/start": {
839
- post: {
2562
+ "/v1/plans/{id}": {
2563
+ get: {
840
2564
  operationId: string;
841
2565
  summary: string;
842
2566
  parameters: {
@@ -854,7 +2578,7 @@ export declare function buildV1OpenApiDocument(version?: string): {
854
2578
  schema: {
855
2579
  type: string;
856
2580
  properties: {
857
- task: {
2581
+ plan: {
858
2582
  $ref: string;
859
2583
  };
860
2584
  };
@@ -864,9 +2588,7 @@ export declare function buildV1OpenApiDocument(version?: string): {
864
2588
  };
865
2589
  };
866
2590
  };
867
- };
868
- "/v1/tasks/{id}/complete": {
869
- post: {
2591
+ patch: {
870
2592
  operationId: string;
871
2593
  summary: string;
872
2594
  parameters: {
@@ -886,7 +2608,44 @@ export declare function buildV1OpenApiDocument(version?: string): {
886
2608
  };
887
2609
  };
888
2610
  };
889
- };
2611
+ };
2612
+ responses: {
2613
+ "200": {
2614
+ content: {
2615
+ "application/json": {
2616
+ schema: {
2617
+ type: string;
2618
+ properties: {
2619
+ plan: {
2620
+ $ref: string;
2621
+ };
2622
+ };
2623
+ };
2624
+ };
2625
+ };
2626
+ };
2627
+ "409": {
2628
+ content: {
2629
+ "application/json": {
2630
+ schema: {
2631
+ $ref: string;
2632
+ };
2633
+ };
2634
+ };
2635
+ };
2636
+ };
2637
+ };
2638
+ delete: {
2639
+ operationId: string;
2640
+ summary: string;
2641
+ parameters: {
2642
+ name: string;
2643
+ in: string;
2644
+ required: boolean;
2645
+ schema: {
2646
+ type: string;
2647
+ };
2648
+ }[];
890
2649
  responses: {
891
2650
  "200": {
892
2651
  content: {
@@ -894,8 +2653,11 @@ export declare function buildV1OpenApiDocument(version?: string): {
894
2653
  schema: {
895
2654
  type: string;
896
2655
  properties: {
897
- task: {
898
- $ref: string;
2656
+ deleted: {
2657
+ type: string;
2658
+ };
2659
+ id: {
2660
+ type: string;
899
2661
  };
900
2662
  };
901
2663
  };
@@ -905,10 +2667,17 @@ export declare function buildV1OpenApiDocument(version?: string): {
905
2667
  };
906
2668
  };
907
2669
  };
908
- "/v1/projects": {
2670
+ "/v1/templates": {
909
2671
  get: {
910
2672
  operationId: string;
911
2673
  summary: string;
2674
+ parameters: {
2675
+ name: string;
2676
+ in: string;
2677
+ schema: {
2678
+ type: string;
2679
+ };
2680
+ }[];
912
2681
  responses: {
913
2682
  "200": {
914
2683
  content: {
@@ -916,7 +2685,7 @@ export declare function buildV1OpenApiDocument(version?: string): {
916
2685
  schema: {
917
2686
  type: string;
918
2687
  properties: {
919
- projects: {
2688
+ templates: {
920
2689
  type: string;
921
2690
  items: {
922
2691
  $ref: string;
@@ -952,7 +2721,7 @@ export declare function buildV1OpenApiDocument(version?: string): {
952
2721
  schema: {
953
2722
  type: string;
954
2723
  properties: {
955
- project: {
2724
+ template: {
956
2725
  $ref: string;
957
2726
  };
958
2727
  };
@@ -960,19 +2729,10 @@ export declare function buildV1OpenApiDocument(version?: string): {
960
2729
  };
961
2730
  };
962
2731
  };
963
- "409": {
964
- content: {
965
- "application/json": {
966
- schema: {
967
- $ref: string;
968
- };
969
- };
970
- };
971
- };
972
2732
  };
973
2733
  };
974
2734
  };
975
- "/v1/projects/{id}": {
2735
+ "/v1/templates/{id}": {
976
2736
  get: {
977
2737
  operationId: string;
978
2738
  summary: string;
@@ -991,7 +2751,7 @@ export declare function buildV1OpenApiDocument(version?: string): {
991
2751
  schema: {
992
2752
  type: string;
993
2753
  properties: {
994
- project: {
2754
+ template: {
995
2755
  $ref: string;
996
2756
  };
997
2757
  };
@@ -1029,7 +2789,7 @@ export declare function buildV1OpenApiDocument(version?: string): {
1029
2789
  schema: {
1030
2790
  type: string;
1031
2791
  properties: {
1032
- project: {
2792
+ template: {
1033
2793
  $ref: string;
1034
2794
  };
1035
2795
  };
@@ -1071,59 +2831,7 @@ export declare function buildV1OpenApiDocument(version?: string): {
1071
2831
  };
1072
2832
  };
1073
2833
  };
1074
- "/v1/projects/{id}/rename": {
1075
- post: {
1076
- operationId: string;
1077
- summary: string;
1078
- parameters: {
1079
- name: string;
1080
- in: string;
1081
- required: boolean;
1082
- schema: {
1083
- type: string;
1084
- };
1085
- }[];
1086
- requestBody: {
1087
- required: boolean;
1088
- content: {
1089
- "application/json": {
1090
- schema: {
1091
- $ref: string;
1092
- };
1093
- };
1094
- };
1095
- };
1096
- responses: {
1097
- "200": {
1098
- content: {
1099
- "application/json": {
1100
- schema: {
1101
- type: string;
1102
- properties: {
1103
- project: {
1104
- $ref: string;
1105
- };
1106
- task_lists_updated: {
1107
- type: string;
1108
- };
1109
- };
1110
- };
1111
- };
1112
- };
1113
- };
1114
- "409": {
1115
- content: {
1116
- "application/json": {
1117
- schema: {
1118
- $ref: string;
1119
- };
1120
- };
1121
- };
1122
- };
1123
- };
1124
- };
1125
- };
1126
- "/v1/plans": {
2834
+ "/v1/task-lists": {
1127
2835
  get: {
1128
2836
  operationId: string;
1129
2837
  summary: string;
@@ -1141,7 +2849,7 @@ export declare function buildV1OpenApiDocument(version?: string): {
1141
2849
  schema: {
1142
2850
  type: string;
1143
2851
  properties: {
1144
- plans: {
2852
+ task_lists: {
1145
2853
  type: string;
1146
2854
  items: {
1147
2855
  $ref: string;
@@ -1177,7 +2885,7 @@ export declare function buildV1OpenApiDocument(version?: string): {
1177
2885
  schema: {
1178
2886
  type: string;
1179
2887
  properties: {
1180
- plan: {
2888
+ task_list: {
1181
2889
  $ref: string;
1182
2890
  };
1183
2891
  };
@@ -1197,7 +2905,7 @@ export declare function buildV1OpenApiDocument(version?: string): {
1197
2905
  };
1198
2906
  };
1199
2907
  };
1200
- "/v1/plans/{id}": {
2908
+ "/v1/task-lists/{id}": {
1201
2909
  get: {
1202
2910
  operationId: string;
1203
2911
  summary: string;
@@ -1216,7 +2924,7 @@ export declare function buildV1OpenApiDocument(version?: string): {
1216
2924
  schema: {
1217
2925
  type: string;
1218
2926
  properties: {
1219
- plan: {
2927
+ task_list: {
1220
2928
  $ref: string;
1221
2929
  };
1222
2930
  };
@@ -1254,7 +2962,7 @@ export declare function buildV1OpenApiDocument(version?: string): {
1254
2962
  schema: {
1255
2963
  type: string;
1256
2964
  properties: {
1257
- plan: {
2965
+ task_list: {
1258
2966
  $ref: string;
1259
2967
  };
1260
2968
  };
@@ -1305,40 +3013,7 @@ export declare function buildV1OpenApiDocument(version?: string): {
1305
3013
  };
1306
3014
  };
1307
3015
  };
1308
- "/v1/task-lists": {
1309
- get: {
1310
- operationId: string;
1311
- summary: string;
1312
- parameters: {
1313
- name: string;
1314
- in: string;
1315
- schema: {
1316
- type: string;
1317
- };
1318
- }[];
1319
- responses: {
1320
- "200": {
1321
- content: {
1322
- "application/json": {
1323
- schema: {
1324
- type: string;
1325
- properties: {
1326
- task_lists: {
1327
- type: string;
1328
- items: {
1329
- $ref: string;
1330
- };
1331
- };
1332
- count: {
1333
- type: string;
1334
- };
1335
- };
1336
- };
1337
- };
1338
- };
1339
- };
1340
- };
1341
- };
3016
+ "/v1/pr-groups/admit": {
1342
3017
  post: {
1343
3018
  operationId: string;
1344
3019
  summary: string;
@@ -1357,12 +3032,7 @@ export declare function buildV1OpenApiDocument(version?: string): {
1357
3032
  content: {
1358
3033
  "application/json": {
1359
3034
  schema: {
1360
- type: string;
1361
- properties: {
1362
- task_list: {
1363
- $ref: string;
1364
- };
1365
- };
3035
+ $ref: string;
1366
3036
  };
1367
3037
  };
1368
3038
  };
@@ -1379,7 +3049,7 @@ export declare function buildV1OpenApiDocument(version?: string): {
1379
3049
  };
1380
3050
  };
1381
3051
  };
1382
- "/v1/task-lists/{id}": {
3052
+ "/v1/pr-groups/{id}": {
1383
3053
  get: {
1384
3054
  operationId: string;
1385
3055
  summary: string;
@@ -1396,19 +3066,77 @@ export declare function buildV1OpenApiDocument(version?: string): {
1396
3066
  content: {
1397
3067
  "application/json": {
1398
3068
  schema: {
1399
- type: string;
1400
- properties: {
1401
- task_list: {
1402
- $ref: string;
1403
- };
1404
- };
3069
+ $ref: string;
3070
+ };
3071
+ };
3072
+ };
3073
+ };
3074
+ "404": {
3075
+ content: {
3076
+ "application/json": {
3077
+ schema: {
3078
+ $ref: string;
1405
3079
  };
1406
3080
  };
1407
3081
  };
1408
3082
  };
1409
3083
  };
1410
3084
  };
1411
- patch: {
3085
+ };
3086
+ "/v1/pr-groups/{id}/events": {
3087
+ get: {
3088
+ operationId: string;
3089
+ summary: string;
3090
+ parameters: ({
3091
+ name: string;
3092
+ in: string;
3093
+ required: boolean;
3094
+ schema: {
3095
+ type: string;
3096
+ minimum?: undefined;
3097
+ maximum?: undefined;
3098
+ };
3099
+ } | {
3100
+ name: string;
3101
+ in: string;
3102
+ schema: {
3103
+ type: string;
3104
+ minimum: number;
3105
+ maximum?: undefined;
3106
+ };
3107
+ required?: undefined;
3108
+ } | {
3109
+ name: string;
3110
+ in: string;
3111
+ schema: {
3112
+ type: string;
3113
+ minimum: number;
3114
+ maximum: number;
3115
+ };
3116
+ required?: undefined;
3117
+ })[];
3118
+ responses: {
3119
+ "200": {
3120
+ content: {
3121
+ "application/json": {
3122
+ schema: {
3123
+ $ref: string;
3124
+ };
3125
+ };
3126
+ };
3127
+ };
3128
+ "404": {
3129
+ content: {
3130
+ "application/json": {
3131
+ schema: {
3132
+ $ref: string;
3133
+ };
3134
+ };
3135
+ };
3136
+ };
3137
+ };
3138
+ };
3139
+ post: {
1412
3140
  operationId: string;
1413
3141
  summary: string;
1414
3142
  parameters: {
@@ -1430,16 +3158,11 @@ export declare function buildV1OpenApiDocument(version?: string): {
1430
3158
  };
1431
3159
  };
1432
3160
  responses: {
1433
- "200": {
3161
+ "201": {
1434
3162
  content: {
1435
3163
  "application/json": {
1436
3164
  schema: {
1437
- type: string;
1438
- properties: {
1439
- task_list: {
1440
- $ref: string;
1441
- };
1442
- };
3165
+ $ref: string;
1443
3166
  };
1444
3167
  };
1445
3168
  };
@@ -1455,7 +3178,9 @@ export declare function buildV1OpenApiDocument(version?: string): {
1455
3178
  };
1456
3179
  };
1457
3180
  };
1458
- delete: {
3181
+ };
3182
+ "/v1/pr-groups/{id}/recover": {
3183
+ post: {
1459
3184
  operationId: string;
1460
3185
  summary: string;
1461
3186
  parameters: {
@@ -1466,20 +3191,31 @@ export declare function buildV1OpenApiDocument(version?: string): {
1466
3191
  type: string;
1467
3192
  };
1468
3193
  }[];
3194
+ requestBody: {
3195
+ required: boolean;
3196
+ content: {
3197
+ "application/json": {
3198
+ schema: {
3199
+ $ref: string;
3200
+ };
3201
+ };
3202
+ };
3203
+ };
1469
3204
  responses: {
1470
- "200": {
3205
+ "201": {
1471
3206
  content: {
1472
3207
  "application/json": {
1473
3208
  schema: {
1474
- type: string;
1475
- properties: {
1476
- deleted: {
1477
- type: string;
1478
- };
1479
- id: {
1480
- type: string;
1481
- };
1482
- };
3209
+ $ref: string;
3210
+ };
3211
+ };
3212
+ };
3213
+ };
3214
+ "409": {
3215
+ content: {
3216
+ "application/json": {
3217
+ schema: {
3218
+ $ref: string;
1483
3219
  };
1484
3220
  };
1485
3221
  };
@@ -1572,6 +3308,12 @@ export declare function buildV1OpenApiDocument(version?: string): {
1572
3308
  type: string;
1573
3309
  };
1574
3310
  };
3311
+ templateTasks: {
3312
+ type: string;
3313
+ items: {
3314
+ $ref: string;
3315
+ };
3316
+ };
1575
3317
  auditHistory: {
1576
3318
  type: string;
1577
3319
  items: {