@contractspec/lib.contracts 0.0.0-canary-20260113162409 → 0.0.0-canary-20260113173657

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.
@@ -29,14 +29,14 @@ declare const OpenApiSourceConfigSchema: z$2.ZodObject<{
29
29
  include: z$2.ZodOptional<z$2.ZodArray<z$2.ZodString>>;
30
30
  prefix: z$2.ZodOptional<z$2.ZodString>;
31
31
  defaultStability: z$2.ZodOptional<z$2.ZodEnum<{
32
- deprecated: "deprecated";
33
32
  experimental: "experimental";
34
33
  beta: "beta";
35
34
  stable: "stable";
35
+ deprecated: "deprecated";
36
36
  }>>;
37
37
  defaultAuth: z$2.ZodOptional<z$2.ZodEnum<{
38
- user: "user";
39
38
  anonymous: "anonymous";
39
+ user: "user";
40
40
  admin: "admin";
41
41
  }>>;
42
42
  defaultOwners: z$2.ZodOptional<z$2.ZodArray<z$2.ZodString>>;
@@ -79,14 +79,14 @@ declare const OpenApiConfigSchema: z$2.ZodObject<{
79
79
  include: z$2.ZodOptional<z$2.ZodArray<z$2.ZodString>>;
80
80
  prefix: z$2.ZodOptional<z$2.ZodString>;
81
81
  defaultStability: z$2.ZodOptional<z$2.ZodEnum<{
82
- deprecated: "deprecated";
83
82
  experimental: "experimental";
84
83
  beta: "beta";
85
84
  stable: "stable";
85
+ deprecated: "deprecated";
86
86
  }>>;
87
87
  defaultAuth: z$2.ZodOptional<z$2.ZodEnum<{
88
- user: "user";
89
88
  anonymous: "anonymous";
89
+ user: "user";
90
90
  admin: "admin";
91
91
  }>>;
92
92
  defaultOwners: z$2.ZodOptional<z$2.ZodArray<z$2.ZodString>>;
@@ -313,8 +313,8 @@ declare const ChangelogFormatSchema: z$2.ZodEnum<{
313
313
  * Changelog tier configuration.
314
314
  */
315
315
  declare const ChangelogTierSchema: z$2.ZodEnum<{
316
- library: "library";
317
316
  spec: "spec";
317
+ library: "library";
318
318
  monorepo: "monorepo";
319
319
  }>;
320
320
  /**
@@ -328,8 +328,8 @@ declare const VersioningConfigSchema: z$2.ZodObject<{
328
328
  }>>;
329
329
  integrateWithChangesets: z$2.ZodDefault<z$2.ZodBoolean>;
330
330
  changelogTiers: z$2.ZodDefault<z$2.ZodArray<z$2.ZodEnum<{
331
- library: "library";
332
331
  spec: "spec";
332
+ library: "library";
333
333
  monorepo: "monorepo";
334
334
  }>>>;
335
335
  format: z$2.ZodDefault<z$2.ZodEnum<{
@@ -348,10 +348,10 @@ declare const VersioningConfigSchema: z$2.ZodObject<{
348
348
  * Supported rule synchronization targets.
349
349
  */
350
350
  declare const RuleSyncTargetSchema: z$2.ZodEnum<{
351
- "claude-code": "claude-code";
352
351
  cursor: "cursor";
353
352
  windsurf: "windsurf";
354
353
  cline: "cline";
354
+ "claude-code": "claude-code";
355
355
  copilot: "copilot";
356
356
  subagent: "subagent";
357
357
  skill: "skill";
@@ -364,10 +364,10 @@ declare const RuleSyncConfigSchema: z$2.ZodObject<{
364
364
  rulesDir: z$2.ZodDefault<z$2.ZodString>;
365
365
  rules: z$2.ZodDefault<z$2.ZodArray<z$2.ZodString>>;
366
366
  targets: z$2.ZodDefault<z$2.ZodArray<z$2.ZodEnum<{
367
- "claude-code": "claude-code";
368
367
  cursor: "cursor";
369
368
  windsurf: "windsurf";
370
369
  cline: "cline";
370
+ "claude-code": "claude-code";
371
371
  copilot: "copilot";
372
372
  subagent: "subagent";
373
373
  skill: "skill";
@@ -428,88 +428,88 @@ declare const ExternalAgentsConfigSchema: z$2.ZodObject<{
428
428
  * Rule severity levels (inspired by ESLint).
429
429
  */
430
430
  declare const RuleSeveritySchema: z$2.ZodEnum<{
431
- error: "error";
432
431
  off: "off";
433
432
  warn: "warn";
433
+ error: "error";
434
434
  }>;
435
435
  /**
436
436
  * Contract kinds for per-kind rule overrides.
437
437
  */
438
438
  declare const SpecKindSchema: z$2.ZodEnum<{
439
- telemetry: "telemetry";
440
- "data-view": "data-view";
441
- workflow: "workflow";
442
439
  operation: "operation";
443
- feature: "feature";
444
- "app-config": "app-config";
445
440
  event: "event";
446
441
  presentation: "presentation";
442
+ feature: "feature";
443
+ workflow: "workflow";
444
+ "data-view": "data-view";
447
445
  migration: "migration";
446
+ telemetry: "telemetry";
448
447
  experiment: "experiment";
448
+ "app-config": "app-config";
449
449
  }>;
450
450
  /**
451
451
  * Available lint rules with their severity.
452
452
  */
453
453
  declare const LintRulesSchema: z$2.ZodObject<{
454
454
  'require-acceptance': z$2.ZodOptional<z$2.ZodEnum<{
455
- error: "error";
456
455
  off: "off";
457
456
  warn: "warn";
457
+ error: "error";
458
458
  }>>;
459
459
  'require-examples': z$2.ZodOptional<z$2.ZodEnum<{
460
- error: "error";
461
460
  off: "off";
462
461
  warn: "warn";
462
+ error: "error";
463
463
  }>>;
464
464
  'require-stability': z$2.ZodOptional<z$2.ZodEnum<{
465
- error: "error";
466
465
  off: "off";
467
466
  warn: "warn";
467
+ error: "error";
468
468
  }>>;
469
469
  'require-owners-format': z$2.ZodOptional<z$2.ZodEnum<{
470
- error: "error";
471
470
  off: "off";
472
471
  warn: "warn";
472
+ error: "error";
473
473
  }>>;
474
474
  'event-past-tense': z$2.ZodOptional<z$2.ZodEnum<{
475
- error: "error";
476
475
  off: "off";
477
476
  warn: "warn";
477
+ error: "error";
478
478
  }>>;
479
479
  'no-todo': z$2.ZodOptional<z$2.ZodEnum<{
480
- error: "error";
481
480
  off: "off";
482
481
  warn: "warn";
482
+ error: "error";
483
483
  }>>;
484
484
  'workflow-transitions': z$2.ZodOptional<z$2.ZodEnum<{
485
- error: "error";
486
485
  off: "off";
487
486
  warn: "warn";
487
+ error: "error";
488
488
  }>>;
489
489
  'telemetry-privacy': z$2.ZodOptional<z$2.ZodEnum<{
490
- error: "error";
491
490
  off: "off";
492
491
  warn: "warn";
492
+ error: "error";
493
493
  }>>;
494
494
  'experiment-allocation': z$2.ZodOptional<z$2.ZodEnum<{
495
- error: "error";
496
495
  off: "off";
497
496
  warn: "warn";
497
+ error: "error";
498
498
  }>>;
499
499
  'app-config-appid': z$2.ZodOptional<z$2.ZodEnum<{
500
- error: "error";
501
500
  off: "off";
502
501
  warn: "warn";
502
+ error: "error";
503
503
  }>>;
504
504
  'app-config-capabilities': z$2.ZodOptional<z$2.ZodEnum<{
505
- error: "error";
506
505
  off: "off";
507
506
  warn: "warn";
507
+ error: "error";
508
508
  }>>;
509
509
  'data-view-fields': z$2.ZodOptional<z$2.ZodEnum<{
510
- error: "error";
511
510
  off: "off";
512
511
  warn: "warn";
512
+ error: "error";
513
513
  }>>;
514
514
  }, z$2.core.$strip>;
515
515
  /**
@@ -545,16 +545,16 @@ declare const TestingConfigSchema: z$2.ZodObject<{
545
545
  autoGenerate: z$2.ZodDefault<z$2.ZodBoolean>;
546
546
  integrity: z$2.ZodOptional<z$2.ZodObject<{
547
547
  requireTestsFor: z$2.ZodOptional<z$2.ZodArray<z$2.ZodEnum<{
548
- telemetry: "telemetry";
549
- "data-view": "data-view";
550
- workflow: "workflow";
551
548
  operation: "operation";
552
- feature: "feature";
553
- "app-config": "app-config";
554
549
  event: "event";
555
550
  presentation: "presentation";
551
+ feature: "feature";
552
+ workflow: "workflow";
553
+ "data-view": "data-view";
556
554
  migration: "migration";
555
+ telemetry: "telemetry";
557
556
  experiment: "experiment";
557
+ "app-config": "app-config";
558
558
  }>>>;
559
559
  minCoverage: z$2.ZodOptional<z$2.ZodNumber>;
560
560
  }, z$2.core.$strip>>;
@@ -573,137 +573,137 @@ declare const TestingConfigSchema: z$2.ZodObject<{
573
573
  declare const RulesConfigSchema: z$2.ZodObject<{
574
574
  defaults: z$2.ZodOptional<z$2.ZodObject<{
575
575
  'require-acceptance': z$2.ZodOptional<z$2.ZodEnum<{
576
- error: "error";
577
576
  off: "off";
578
577
  warn: "warn";
578
+ error: "error";
579
579
  }>>;
580
580
  'require-examples': z$2.ZodOptional<z$2.ZodEnum<{
581
- error: "error";
582
581
  off: "off";
583
582
  warn: "warn";
583
+ error: "error";
584
584
  }>>;
585
585
  'require-stability': z$2.ZodOptional<z$2.ZodEnum<{
586
- error: "error";
587
586
  off: "off";
588
587
  warn: "warn";
588
+ error: "error";
589
589
  }>>;
590
590
  'require-owners-format': z$2.ZodOptional<z$2.ZodEnum<{
591
- error: "error";
592
591
  off: "off";
593
592
  warn: "warn";
593
+ error: "error";
594
594
  }>>;
595
595
  'event-past-tense': z$2.ZodOptional<z$2.ZodEnum<{
596
- error: "error";
597
596
  off: "off";
598
597
  warn: "warn";
598
+ error: "error";
599
599
  }>>;
600
600
  'no-todo': z$2.ZodOptional<z$2.ZodEnum<{
601
- error: "error";
602
601
  off: "off";
603
602
  warn: "warn";
603
+ error: "error";
604
604
  }>>;
605
605
  'workflow-transitions': z$2.ZodOptional<z$2.ZodEnum<{
606
- error: "error";
607
606
  off: "off";
608
607
  warn: "warn";
608
+ error: "error";
609
609
  }>>;
610
610
  'telemetry-privacy': z$2.ZodOptional<z$2.ZodEnum<{
611
- error: "error";
612
611
  off: "off";
613
612
  warn: "warn";
613
+ error: "error";
614
614
  }>>;
615
615
  'experiment-allocation': z$2.ZodOptional<z$2.ZodEnum<{
616
- error: "error";
617
616
  off: "off";
618
617
  warn: "warn";
618
+ error: "error";
619
619
  }>>;
620
620
  'app-config-appid': z$2.ZodOptional<z$2.ZodEnum<{
621
- error: "error";
622
621
  off: "off";
623
622
  warn: "warn";
623
+ error: "error";
624
624
  }>>;
625
625
  'app-config-capabilities': z$2.ZodOptional<z$2.ZodEnum<{
626
- error: "error";
627
626
  off: "off";
628
627
  warn: "warn";
628
+ error: "error";
629
629
  }>>;
630
630
  'data-view-fields': z$2.ZodOptional<z$2.ZodEnum<{
631
- error: "error";
632
631
  off: "off";
633
632
  warn: "warn";
633
+ error: "error";
634
634
  }>>;
635
635
  }, z$2.core.$strip>>;
636
636
  overrides: z$2.ZodOptional<z$2.ZodRecord<z$2.ZodEnum<{
637
- telemetry: "telemetry";
638
- "data-view": "data-view";
639
- workflow: "workflow";
640
637
  operation: "operation";
641
- feature: "feature";
642
- "app-config": "app-config";
643
638
  event: "event";
644
639
  presentation: "presentation";
640
+ feature: "feature";
641
+ workflow: "workflow";
642
+ "data-view": "data-view";
645
643
  migration: "migration";
644
+ telemetry: "telemetry";
646
645
  experiment: "experiment";
646
+ "app-config": "app-config";
647
647
  }>, z$2.ZodObject<{
648
648
  'require-acceptance': z$2.ZodOptional<z$2.ZodEnum<{
649
- error: "error";
650
649
  off: "off";
651
650
  warn: "warn";
651
+ error: "error";
652
652
  }>>;
653
653
  'require-examples': z$2.ZodOptional<z$2.ZodEnum<{
654
- error: "error";
655
654
  off: "off";
656
655
  warn: "warn";
656
+ error: "error";
657
657
  }>>;
658
658
  'require-stability': z$2.ZodOptional<z$2.ZodEnum<{
659
- error: "error";
660
659
  off: "off";
661
660
  warn: "warn";
661
+ error: "error";
662
662
  }>>;
663
663
  'require-owners-format': z$2.ZodOptional<z$2.ZodEnum<{
664
- error: "error";
665
664
  off: "off";
666
665
  warn: "warn";
666
+ error: "error";
667
667
  }>>;
668
668
  'event-past-tense': z$2.ZodOptional<z$2.ZodEnum<{
669
- error: "error";
670
669
  off: "off";
671
670
  warn: "warn";
671
+ error: "error";
672
672
  }>>;
673
673
  'no-todo': z$2.ZodOptional<z$2.ZodEnum<{
674
- error: "error";
675
674
  off: "off";
676
675
  warn: "warn";
676
+ error: "error";
677
677
  }>>;
678
678
  'workflow-transitions': z$2.ZodOptional<z$2.ZodEnum<{
679
- error: "error";
680
679
  off: "off";
681
680
  warn: "warn";
681
+ error: "error";
682
682
  }>>;
683
683
  'telemetry-privacy': z$2.ZodOptional<z$2.ZodEnum<{
684
- error: "error";
685
684
  off: "off";
686
685
  warn: "warn";
686
+ error: "error";
687
687
  }>>;
688
688
  'experiment-allocation': z$2.ZodOptional<z$2.ZodEnum<{
689
- error: "error";
690
689
  off: "off";
691
690
  warn: "warn";
691
+ error: "error";
692
692
  }>>;
693
693
  'app-config-appid': z$2.ZodOptional<z$2.ZodEnum<{
694
- error: "error";
695
694
  off: "off";
696
695
  warn: "warn";
696
+ error: "error";
697
697
  }>>;
698
698
  'app-config-capabilities': z$2.ZodOptional<z$2.ZodEnum<{
699
- error: "error";
700
699
  off: "off";
701
700
  warn: "warn";
701
+ error: "error";
702
702
  }>>;
703
703
  'data-view-fields': z$2.ZodOptional<z$2.ZodEnum<{
704
- error: "error";
705
704
  off: "off";
706
705
  warn: "warn";
706
+ error: "error";
707
707
  }>>;
708
708
  }, z$2.core.$strip>>>;
709
709
  }, z$2.core.$strip>;
@@ -724,8 +724,8 @@ declare const ContractsrcSchema: z$2.ZodObject<{
724
724
  }>>;
725
725
  aiModel: z$2.ZodOptional<z$2.ZodString>;
726
726
  agentMode: z$2.ZodDefault<z$2.ZodEnum<{
727
- "claude-code": "claude-code";
728
727
  cursor: "cursor";
728
+ "claude-code": "claude-code";
729
729
  simple: "simple";
730
730
  "openai-codex": "openai-codex";
731
731
  "claude-agent-sdk": "claude-agent-sdk";
@@ -801,14 +801,14 @@ declare const ContractsrcSchema: z$2.ZodObject<{
801
801
  include: z$2.ZodOptional<z$2.ZodArray<z$2.ZodString>>;
802
802
  prefix: z$2.ZodOptional<z$2.ZodString>;
803
803
  defaultStability: z$2.ZodOptional<z$2.ZodEnum<{
804
- deprecated: "deprecated";
805
804
  experimental: "experimental";
806
805
  beta: "beta";
807
806
  stable: "stable";
807
+ deprecated: "deprecated";
808
808
  }>>;
809
809
  defaultAuth: z$2.ZodOptional<z$2.ZodEnum<{
810
- user: "user";
811
810
  anonymous: "anonymous";
811
+ user: "user";
812
812
  admin: "admin";
813
813
  }>>;
814
814
  defaultOwners: z$2.ZodOptional<z$2.ZodArray<z$2.ZodString>>;
@@ -872,137 +872,137 @@ declare const ContractsrcSchema: z$2.ZodObject<{
872
872
  rules: z$2.ZodOptional<z$2.ZodObject<{
873
873
  defaults: z$2.ZodOptional<z$2.ZodObject<{
874
874
  'require-acceptance': z$2.ZodOptional<z$2.ZodEnum<{
875
- error: "error";
876
875
  off: "off";
877
876
  warn: "warn";
877
+ error: "error";
878
878
  }>>;
879
879
  'require-examples': z$2.ZodOptional<z$2.ZodEnum<{
880
- error: "error";
881
880
  off: "off";
882
881
  warn: "warn";
882
+ error: "error";
883
883
  }>>;
884
884
  'require-stability': z$2.ZodOptional<z$2.ZodEnum<{
885
- error: "error";
886
885
  off: "off";
887
886
  warn: "warn";
887
+ error: "error";
888
888
  }>>;
889
889
  'require-owners-format': z$2.ZodOptional<z$2.ZodEnum<{
890
- error: "error";
891
890
  off: "off";
892
891
  warn: "warn";
892
+ error: "error";
893
893
  }>>;
894
894
  'event-past-tense': z$2.ZodOptional<z$2.ZodEnum<{
895
- error: "error";
896
895
  off: "off";
897
896
  warn: "warn";
897
+ error: "error";
898
898
  }>>;
899
899
  'no-todo': z$2.ZodOptional<z$2.ZodEnum<{
900
- error: "error";
901
900
  off: "off";
902
901
  warn: "warn";
902
+ error: "error";
903
903
  }>>;
904
904
  'workflow-transitions': z$2.ZodOptional<z$2.ZodEnum<{
905
- error: "error";
906
905
  off: "off";
907
906
  warn: "warn";
907
+ error: "error";
908
908
  }>>;
909
909
  'telemetry-privacy': z$2.ZodOptional<z$2.ZodEnum<{
910
- error: "error";
911
910
  off: "off";
912
911
  warn: "warn";
912
+ error: "error";
913
913
  }>>;
914
914
  'experiment-allocation': z$2.ZodOptional<z$2.ZodEnum<{
915
- error: "error";
916
915
  off: "off";
917
916
  warn: "warn";
917
+ error: "error";
918
918
  }>>;
919
919
  'app-config-appid': z$2.ZodOptional<z$2.ZodEnum<{
920
- error: "error";
921
920
  off: "off";
922
921
  warn: "warn";
922
+ error: "error";
923
923
  }>>;
924
924
  'app-config-capabilities': z$2.ZodOptional<z$2.ZodEnum<{
925
- error: "error";
926
925
  off: "off";
927
926
  warn: "warn";
927
+ error: "error";
928
928
  }>>;
929
929
  'data-view-fields': z$2.ZodOptional<z$2.ZodEnum<{
930
- error: "error";
931
930
  off: "off";
932
931
  warn: "warn";
932
+ error: "error";
933
933
  }>>;
934
934
  }, z$2.core.$strip>>;
935
935
  overrides: z$2.ZodOptional<z$2.ZodRecord<z$2.ZodEnum<{
936
- telemetry: "telemetry";
937
- "data-view": "data-view";
938
- workflow: "workflow";
939
936
  operation: "operation";
940
- feature: "feature";
941
- "app-config": "app-config";
942
937
  event: "event";
943
938
  presentation: "presentation";
939
+ feature: "feature";
940
+ workflow: "workflow";
941
+ "data-view": "data-view";
944
942
  migration: "migration";
943
+ telemetry: "telemetry";
945
944
  experiment: "experiment";
945
+ "app-config": "app-config";
946
946
  }>, z$2.ZodObject<{
947
947
  'require-acceptance': z$2.ZodOptional<z$2.ZodEnum<{
948
- error: "error";
949
948
  off: "off";
950
949
  warn: "warn";
950
+ error: "error";
951
951
  }>>;
952
952
  'require-examples': z$2.ZodOptional<z$2.ZodEnum<{
953
- error: "error";
954
953
  off: "off";
955
954
  warn: "warn";
955
+ error: "error";
956
956
  }>>;
957
957
  'require-stability': z$2.ZodOptional<z$2.ZodEnum<{
958
- error: "error";
959
958
  off: "off";
960
959
  warn: "warn";
960
+ error: "error";
961
961
  }>>;
962
962
  'require-owners-format': z$2.ZodOptional<z$2.ZodEnum<{
963
- error: "error";
964
963
  off: "off";
965
964
  warn: "warn";
965
+ error: "error";
966
966
  }>>;
967
967
  'event-past-tense': z$2.ZodOptional<z$2.ZodEnum<{
968
- error: "error";
969
968
  off: "off";
970
969
  warn: "warn";
970
+ error: "error";
971
971
  }>>;
972
972
  'no-todo': z$2.ZodOptional<z$2.ZodEnum<{
973
- error: "error";
974
973
  off: "off";
975
974
  warn: "warn";
975
+ error: "error";
976
976
  }>>;
977
977
  'workflow-transitions': z$2.ZodOptional<z$2.ZodEnum<{
978
- error: "error";
979
978
  off: "off";
980
979
  warn: "warn";
980
+ error: "error";
981
981
  }>>;
982
982
  'telemetry-privacy': z$2.ZodOptional<z$2.ZodEnum<{
983
- error: "error";
984
983
  off: "off";
985
984
  warn: "warn";
985
+ error: "error";
986
986
  }>>;
987
987
  'experiment-allocation': z$2.ZodOptional<z$2.ZodEnum<{
988
- error: "error";
989
988
  off: "off";
990
989
  warn: "warn";
990
+ error: "error";
991
991
  }>>;
992
992
  'app-config-appid': z$2.ZodOptional<z$2.ZodEnum<{
993
- error: "error";
994
993
  off: "off";
995
994
  warn: "warn";
995
+ error: "error";
996
996
  }>>;
997
997
  'app-config-capabilities': z$2.ZodOptional<z$2.ZodEnum<{
998
- error: "error";
999
998
  off: "off";
1000
999
  warn: "warn";
1000
+ error: "error";
1001
1001
  }>>;
1002
1002
  'data-view-fields': z$2.ZodOptional<z$2.ZodEnum<{
1003
- error: "error";
1004
1003
  off: "off";
1005
1004
  warn: "warn";
1005
+ error: "error";
1006
1006
  }>>;
1007
1007
  }, z$2.core.$strip>>>;
1008
1008
  }, z$2.core.$strip>>;
@@ -1017,16 +1017,16 @@ declare const ContractsrcSchema: z$2.ZodObject<{
1017
1017
  autoGenerate: z$2.ZodDefault<z$2.ZodBoolean>;
1018
1018
  integrity: z$2.ZodOptional<z$2.ZodObject<{
1019
1019
  requireTestsFor: z$2.ZodOptional<z$2.ZodArray<z$2.ZodEnum<{
1020
- telemetry: "telemetry";
1021
- "data-view": "data-view";
1022
- workflow: "workflow";
1023
1020
  operation: "operation";
1024
- feature: "feature";
1025
- "app-config": "app-config";
1026
1021
  event: "event";
1027
1022
  presentation: "presentation";
1023
+ feature: "feature";
1024
+ workflow: "workflow";
1025
+ "data-view": "data-view";
1028
1026
  migration: "migration";
1027
+ telemetry: "telemetry";
1029
1028
  experiment: "experiment";
1029
+ "app-config": "app-config";
1030
1030
  }>>>;
1031
1031
  minCoverage: z$2.ZodOptional<z$2.ZodNumber>;
1032
1032
  }, z$2.core.$strip>>;
@@ -1067,8 +1067,8 @@ declare const ContractsrcSchema: z$2.ZodObject<{
1067
1067
  }>>;
1068
1068
  integrateWithChangesets: z$2.ZodDefault<z$2.ZodBoolean>;
1069
1069
  changelogTiers: z$2.ZodDefault<z$2.ZodArray<z$2.ZodEnum<{
1070
- library: "library";
1071
1070
  spec: "spec";
1071
+ library: "library";
1072
1072
  monorepo: "monorepo";
1073
1073
  }>>>;
1074
1074
  format: z$2.ZodDefault<z$2.ZodEnum<{
@@ -1088,10 +1088,10 @@ declare const ContractsrcSchema: z$2.ZodObject<{
1088
1088
  rulesDir: z$2.ZodDefault<z$2.ZodString>;
1089
1089
  rules: z$2.ZodDefault<z$2.ZodArray<z$2.ZodString>>;
1090
1090
  targets: z$2.ZodDefault<z$2.ZodArray<z$2.ZodEnum<{
1091
- "claude-code": "claude-code";
1092
1091
  cursor: "cursor";
1093
1092
  windsurf: "windsurf";
1094
1093
  cline: "cline";
1094
+ "claude-code": "claude-code";
1095
1095
  copilot: "copilot";
1096
1096
  subagent: "subagent";
1097
1097
  skill: "skill";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@contractspec/lib.contracts",
3
- "version": "0.0.0-canary-20260113162409",
3
+ "version": "0.0.0-canary-20260113173657",
4
4
  "description": "Core contract specification definitions and runtime",
5
5
  "keywords": [
6
6
  "contractspec",
@@ -25,8 +25,8 @@
25
25
  "test": "bun test"
26
26
  },
27
27
  "devDependencies": {
28
- "@contractspec/tool.tsdown": "0.0.0-canary-20260113162409",
29
- "@contractspec/tool.typescript": "0.0.0-canary-20260113162409",
28
+ "@contractspec/tool.tsdown": "0.0.0-canary-20260113173657",
29
+ "@contractspec/tool.typescript": "0.0.0-canary-20260113173657",
30
30
  "@types/express": "^5.0.3",
31
31
  "@types/turndown": "^5.0.6",
32
32
  "tsdown": "^0.19.0",
@@ -35,8 +35,8 @@
35
35
  "dependencies": {
36
36
  "@aws-sdk/client-secrets-manager": "^3.966.0",
37
37
  "@aws-sdk/client-sqs": "^3.966.0",
38
- "@contractspec/lib.logger": "0.0.0-canary-20260113162409",
39
- "@contractspec/lib.schema": "0.0.0-canary-20260113162409",
38
+ "@contractspec/lib.logger": "0.0.0-canary-20260113173657",
39
+ "@contractspec/lib.schema": "0.0.0-canary-20260113173657",
40
40
  "@elevenlabs/elevenlabs-js": "^2.30.0",
41
41
  "@google-cloud/secret-manager": "^6.1.1",
42
42
  "@google-cloud/storage": "^7.18.0",