archal 0.9.18 → 0.9.19

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,70 +1,6 @@
1
1
  {
2
2
  "clone": "apify",
3
3
  "tools": [
4
- {
5
- "name": "apify_list_acts",
6
- "description": "Lists actors created during the session.",
7
- "inputSchema": {
8
- "type": "object",
9
- "properties": {},
10
- "additionalProperties": true
11
- },
12
- "hidden": false
13
- },
14
- {
15
- "name": "apify_post_v2_acts",
16
- "description": "Creates an actor persisted in session state.",
17
- "inputSchema": {
18
- "type": "object",
19
- "properties": {},
20
- "additionalProperties": true
21
- },
22
- "hidden": false
23
- },
24
- {
25
- "name": "apify_get_act",
26
- "description": "Gets an actor by id from session state.",
27
- "inputSchema": {
28
- "type": "object",
29
- "properties": {
30
- "actorId": {
31
- "type": "string"
32
- }
33
- },
34
- "required": [
35
- "actorId"
36
- ],
37
- "additionalProperties": true
38
- },
39
- "hidden": false
40
- },
41
- {
42
- "name": "apify_update_act",
43
- "description": "Updates an actor persisted in session state.",
44
- "inputSchema": {
45
- "type": "object",
46
- "properties": {
47
- "actorId": {
48
- "type": "string"
49
- }
50
- },
51
- "required": [
52
- "actorId"
53
- ],
54
- "additionalProperties": true
55
- },
56
- "hidden": false
57
- },
58
- {
59
- "name": "apify_get_v2_actor_builds",
60
- "description": "Lists actor builds in an Apify-shaped empty collection.",
61
- "inputSchema": {
62
- "type": "object",
63
- "properties": {},
64
- "additionalProperties": true
65
- },
66
- "hidden": false
67
- },
68
4
  {
69
5
  "name": "apify_stateful_list_datasets",
70
6
  "description": "Lists datasets including datasets created during the session.",
@@ -584,6 +520,36 @@
584
520
  },
585
521
  "hidden": false
586
522
  },
523
+ {
524
+ "name": "apify_list_acts",
525
+ "description": "Returns the recorded REST response for apify_list_acts.",
526
+ "inputSchema": {
527
+ "type": "object",
528
+ "properties": {},
529
+ "additionalProperties": true
530
+ },
531
+ "hidden": false
532
+ },
533
+ {
534
+ "name": "apify_get_act",
535
+ "description": "Returns the recorded REST response for apify_get_act.",
536
+ "inputSchema": {
537
+ "type": "object",
538
+ "properties": {},
539
+ "additionalProperties": true
540
+ },
541
+ "hidden": false
542
+ },
543
+ {
544
+ "name": "apify_update_act",
545
+ "description": "Returns the recorded REST response for apify_update_act.",
546
+ "inputSchema": {
547
+ "type": "object",
548
+ "properties": {},
549
+ "additionalProperties": true
550
+ },
551
+ "hidden": false
552
+ },
587
553
  {
588
554
  "name": "apify_abort_build",
589
555
  "description": "Returns the recorded REST response for apify_abort_build.",
@@ -1080,6 +1080,12 @@
1080
1080
  "get_sub_issues",
1081
1081
  "get_labels"
1082
1082
  ]
1083
+ },
1084
+ "per_page": {
1085
+ "type": "number"
1086
+ },
1087
+ "page": {
1088
+ "type": "number"
1083
1089
  }
1084
1090
  },
1085
1091
  "required": [
@@ -219,15 +219,14 @@
219
219
  "type": "string"
220
220
  },
221
221
  "confirm_cost_id": {
222
- "type": "string",
223
- "description": "The cost confirmation ID. Call `confirm_cost` first."
222
+ "description": "The cost confirmation ID. Call `confirm_cost` first.",
223
+ "type": "string"
224
224
  }
225
225
  },
226
226
  "required": [
227
227
  "name",
228
228
  "region",
229
- "organization_id",
230
- "confirm_cost_id"
229
+ "organization_id"
231
230
  ],
232
231
  "additionalProperties": false
233
232
  },
@@ -681,18 +680,19 @@
681
680
  "description": "The name of the function"
682
681
  },
683
682
  "entrypoint_path": {
684
- "type": "string",
685
- "description": "The entrypoint of the function"
683
+ "description": "The entrypoint of the function",
684
+ "type": "string"
686
685
  },
687
686
  "import_map_path": {
688
687
  "description": "The import map for the function.",
689
688
  "type": "string"
690
689
  },
691
690
  "verify_jwt": {
692
- "type": "boolean",
693
- "description": "Whether to require a valid JWT in the Authorization header. You SHOULD ALWAYS enable this to ensure authorized access. ONLY disable if the function previously had it disabled OR you've confirmed the function body implements custom authentication (e.g., API keys, webhooks) OR the user explicitly requested it be disabled."
691
+ "description": "Whether to require a valid JWT in the Authorization header. You SHOULD ALWAYS enable this to ensure authorized access. ONLY disable if the function previously had it disabled OR you've confirmed the function body implements custom authentication (e.g., API keys, webhooks) OR the user explicitly requested it be disabled.",
692
+ "type": "boolean"
694
693
  },
695
694
  "files": {
695
+ "description": "The files to upload. This should include the entrypoint, deno.json, and any relative dependencies. Include the deno.json and deno.jsonc files to configure the Deno runtime (e.g., compiler options, imports) if they exist.",
696
696
  "type": "array",
697
697
  "items": {
698
698
  "type": "object",
@@ -709,16 +709,12 @@
709
709
  "content"
710
710
  ],
711
711
  "additionalProperties": false
712
- },
713
- "description": "The files to upload. This should include the entrypoint, deno.json, and any relative dependencies. Include the deno.json and deno.jsonc files to configure the Deno runtime (e.g., compiler options, imports) if they exist."
712
+ }
714
713
  }
715
714
  },
716
715
  "required": [
717
716
  "project_id",
718
- "name",
719
- "entrypoint_path",
720
- "verify_jwt",
721
- "files"
717
+ "name"
722
718
  ],
723
719
  "additionalProperties": false
724
720
  },
@@ -731,6 +727,67 @@
731
727
  "openWorldHint": false
732
728
  }
733
729
  },
730
+ {
731
+ "name": "create_edge_function",
732
+ "description": "REST-only: create a new Edge Function (POST behavior — 400 on duplicate slug).",
733
+ "inputSchema": {
734
+ "type": "object",
735
+ "properties": {
736
+ "project_id": {
737
+ "type": "string"
738
+ },
739
+ "name": {
740
+ "type": "string",
741
+ "description": "The name of the function"
742
+ },
743
+ "entrypoint_path": {
744
+ "description": "The entrypoint of the function",
745
+ "type": "string"
746
+ },
747
+ "import_map_path": {
748
+ "description": "The import map for the function.",
749
+ "type": "string"
750
+ },
751
+ "verify_jwt": {
752
+ "description": "Whether to require a valid JWT in the Authorization header. You SHOULD ALWAYS enable this to ensure authorized access. ONLY disable if the function previously had it disabled OR you've confirmed the function body implements custom authentication (e.g., API keys, webhooks) OR the user explicitly requested it be disabled.",
753
+ "type": "boolean"
754
+ },
755
+ "files": {
756
+ "description": "The files to upload. This should include the entrypoint, deno.json, and any relative dependencies. Include the deno.json and deno.jsonc files to configure the Deno runtime (e.g., compiler options, imports) if they exist.",
757
+ "type": "array",
758
+ "items": {
759
+ "type": "object",
760
+ "properties": {
761
+ "name": {
762
+ "type": "string"
763
+ },
764
+ "content": {
765
+ "type": "string"
766
+ }
767
+ },
768
+ "required": [
769
+ "name",
770
+ "content"
771
+ ],
772
+ "additionalProperties": false
773
+ }
774
+ }
775
+ },
776
+ "required": [
777
+ "project_id",
778
+ "name"
779
+ ],
780
+ "additionalProperties": false
781
+ },
782
+ "hidden": true,
783
+ "annotations": {
784
+ "title": "Create Edge Function (REST)",
785
+ "readOnlyHint": false,
786
+ "destructiveHint": false,
787
+ "idempotentHint": false,
788
+ "openWorldHint": false
789
+ }
790
+ },
734
791
  {
735
792
  "name": "delete_edge_function",
736
793
  "description": "Deletes an Edge Function from a Supabase project.",
@@ -2953,6 +3010,9 @@
2953
3010
  },
2954
3011
  "path": {
2955
3012
  "type": "string"
3013
+ },
3014
+ "message": {
3015
+ "type": "string"
2956
3016
  }
2957
3017
  },
2958
3018
  "required": [