@almadar/patterns 2.21.0 → 2.23.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.
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "version": "1.0.0",
3
- "exportedAt": "2026-05-05T13:33:44.073Z",
3
+ "exportedAt": "2026-05-05T16:04:13.902Z",
4
4
  "patterns": {
5
5
  "entity-table": {
6
6
  "type": "entity-table",
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "version": "1.0.0",
3
- "exportedAt": "2026-05-05T13:33:44.073Z",
3
+ "exportedAt": "2026-05-05T16:04:13.902Z",
4
4
  "patterns": {
5
5
  "entity-table": {
6
6
  "type": "entity-table",
@@ -887,6 +887,108 @@
887
887
  "body": "string",
888
888
  "state": "string"
889
889
  }
890
+ },
891
+ {
892
+ "name": "getFile",
893
+ "description": "Read a file from a repository at a given ref",
894
+ "params": [
895
+ {
896
+ "name": "owner",
897
+ "type": "string",
898
+ "required": true,
899
+ "description": "Repository owner"
900
+ },
901
+ {
902
+ "name": "repo",
903
+ "type": "string",
904
+ "required": true,
905
+ "description": "Repository name"
906
+ },
907
+ {
908
+ "name": "path",
909
+ "type": "string",
910
+ "required": true,
911
+ "description": "Path to file within the repo"
912
+ },
913
+ {
914
+ "name": "ref",
915
+ "type": "string",
916
+ "required": false,
917
+ "description": "Branch, tag, or commit SHA"
918
+ }
919
+ ],
920
+ "responseShape": {
921
+ "id": "string",
922
+ "result": "object"
923
+ }
924
+ },
925
+ {
926
+ "name": "listCommits",
927
+ "description": "List commits on a branch or path",
928
+ "params": [
929
+ {
930
+ "name": "owner",
931
+ "type": "string",
932
+ "required": true,
933
+ "description": "Repository owner"
934
+ },
935
+ {
936
+ "name": "repo",
937
+ "type": "string",
938
+ "required": true,
939
+ "description": "Repository name"
940
+ },
941
+ {
942
+ "name": "path",
943
+ "type": "string",
944
+ "required": false,
945
+ "description": "Restrict to commits touching this path"
946
+ },
947
+ {
948
+ "name": "ref",
949
+ "type": "string",
950
+ "required": false,
951
+ "description": "Branch or tag"
952
+ }
953
+ ],
954
+ "responseShape": {
955
+ "id": "string",
956
+ "result": "object"
957
+ }
958
+ },
959
+ {
960
+ "name": "createIssue",
961
+ "description": "Create a new issue",
962
+ "params": [
963
+ {
964
+ "name": "owner",
965
+ "type": "string",
966
+ "required": true,
967
+ "description": "Repository owner"
968
+ },
969
+ {
970
+ "name": "repo",
971
+ "type": "string",
972
+ "required": true,
973
+ "description": "Repository name"
974
+ },
975
+ {
976
+ "name": "path",
977
+ "type": "string",
978
+ "required": false,
979
+ "description": "Reserved for op uniformity"
980
+ },
981
+ {
982
+ "name": "ref",
983
+ "type": "string",
984
+ "required": false,
985
+ "description": "Reserved for op uniformity"
986
+ }
987
+ ],
988
+ "responseShape": {
989
+ "id": "string",
990
+ "result": "object"
991
+ }
890
992
  }
891
993
  ],
892
994
  "credentials": [
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@almadar/patterns",
3
- "version": "2.21.0",
3
+ "version": "2.23.0",
4
4
  "description": "Pattern registry and component mappings for Almadar",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",