|
3 | 3 | from kleinkram._version import __version__ |
4 | 4 | from kleinkram.wrappers import create_mission |
5 | 5 | from kleinkram.wrappers import create_project |
| 6 | +from kleinkram.wrappers import create_template |
| 7 | +from kleinkram.wrappers import create_template_version |
| 8 | +from kleinkram.wrappers import launch_execution |
6 | 9 | from kleinkram.wrappers import delete_file |
7 | 10 | from kleinkram.wrappers import delete_files |
8 | 11 | from kleinkram.wrappers import delete_mission |
9 | 12 | from kleinkram.wrappers import delete_project |
| 13 | +from kleinkram.wrappers import delete_template |
| 14 | +from kleinkram.wrappers import delete_execution |
10 | 15 | from kleinkram.wrappers import download |
| 16 | +from kleinkram.wrappers import download_artifact |
| 17 | +from kleinkram.wrappers import get_execution |
11 | 18 | from kleinkram.wrappers import get_file |
12 | 19 | from kleinkram.wrappers import get_mission |
13 | 20 | from kleinkram.wrappers import get_project |
| 21 | +from kleinkram.wrappers import get_template |
| 22 | +from kleinkram.wrappers import get_template_revisions |
| 23 | +from kleinkram.wrappers import list_executions |
14 | 24 | from kleinkram.wrappers import list_files |
15 | 25 | from kleinkram.wrappers import list_missions |
16 | 26 | from kleinkram.wrappers import list_projects |
| 27 | +from kleinkram.wrappers import list_templates |
17 | 28 | from kleinkram.wrappers import update_file |
18 | 29 | from kleinkram.wrappers import update_mission |
19 | 30 | from kleinkram.wrappers import update_project |
|
25 | 36 | "upload", |
26 | 37 | "verify", |
27 | 38 | "download", |
| 39 | + "download_artifact", |
| 40 | + "get_execution", |
28 | 41 | "get_file", |
29 | 42 | "get_mission", |
30 | 43 | "get_project", |
| 44 | + "get_template", |
| 45 | + "get_template_revisions", |
31 | 46 | "list_files", |
32 | 47 | "list_missions", |
33 | 48 | "list_projects", |
| 49 | + "list_templates", |
| 50 | + "list_executions", |
34 | 51 | "update_file", |
35 | 52 | "update_mission", |
36 | 53 | "update_project", |
37 | 54 | "delete_files", |
38 | 55 | "delete_file", |
39 | 56 | "delete_mission", |
40 | 57 | "delete_project", |
| 58 | + "delete_template", |
| 59 | + "delete_execution", |
41 | 60 | "create_mission", |
42 | 61 | "create_project", |
| 62 | + "create_template", |
| 63 | + "create_template_version", |
| 64 | + "launch_execution", |
43 | 65 | ] |
0 commit comments