|
1 | | -// Generated by Obelisk 0.36.0 |
| 1 | +// Generated by Obelisk 0.40.0 |
2 | 2 | package stargazers:db-obelisk-ext; |
3 | 3 |
|
4 | 4 | interface user { |
5 | 5 | use stargazers:db/user.{stargazer, ordering}; |
6 | | - use obelisk:types/execution@4.2.0.{execution-id}; |
7 | | - use obelisk:types/join-set@4.2.0.{join-set}; |
8 | | - use obelisk:types/execution@4.2.0.{await-next-extension-error, get-extension-error}; |
| 6 | + use obelisk:types/execution@5.0.0.{execution-id}; |
| 7 | + use obelisk:types/join-set@5.0.0.{join-set}; |
| 8 | + use obelisk:types/execution@5.0.0.{await-next-extension-error, get-extension-error}; |
9 | 9 |
|
10 | 10 | add-star-get-description-submit: func(join-set: borrow<join-set>, login: string, repo: string) -> execution-id; |
11 | 11 |
|
12 | | - add-star-get-description-await-next: func(join-set: borrow<join-set>) -> result<tuple<execution-id, result<option<string>, string>>, await-next-extension-error>; |
| 12 | + add-star-get-description-await-next: func(join-set: borrow<join-set>) -> result<result<option<string>, string>, await-next-extension-error>; |
13 | 13 |
|
14 | 14 | add-star-get-description-get: func(execution-id: execution-id) -> result<result<option<string>, string>, get-extension-error>; |
15 | 15 |
|
16 | 16 | remove-star-submit: func(join-set: borrow<join-set>, login: string, repo: string) -> execution-id; |
17 | 17 |
|
18 | | - remove-star-await-next: func(join-set: borrow<join-set>) -> result<tuple<execution-id, result<_, string>>, await-next-extension-error>; |
| 18 | + remove-star-await-next: func(join-set: borrow<join-set>) -> result<result<_, string>, await-next-extension-error>; |
19 | 19 |
|
20 | 20 | remove-star-get: func(execution-id: execution-id) -> result<result<_, string>, get-extension-error>; |
21 | 21 |
|
22 | 22 | update-user-description-submit: func(join-set: borrow<join-set>, username: string, description: string) -> execution-id; |
23 | 23 |
|
24 | | - update-user-description-await-next: func(join-set: borrow<join-set>) -> result<tuple<execution-id, result<_, string>>, await-next-extension-error>; |
| 24 | + update-user-description-await-next: func(join-set: borrow<join-set>) -> result<result<_, string>, await-next-extension-error>; |
25 | 25 |
|
26 | 26 | update-user-description-get: func(execution-id: execution-id) -> result<result<_, string>, get-extension-error>; |
27 | 27 |
|
28 | 28 | list-stargazers-submit: func(join-set: borrow<join-set>, last: u8, repo: option<string>, ordering: ordering) -> execution-id; |
29 | 29 |
|
30 | | - list-stargazers-await-next: func(join-set: borrow<join-set>) -> result<tuple<execution-id, result<list<stargazer>, string>>, await-next-extension-error>; |
| 30 | + list-stargazers-await-next: func(join-set: borrow<join-set>) -> result<result<list<stargazer>, string>, await-next-extension-error>; |
31 | 31 |
|
32 | 32 | list-stargazers-get: func(execution-id: execution-id) -> result<result<list<stargazer>, string>, get-extension-error>; |
33 | 33 | } |
34 | 34 |
|
35 | 35 | interface llm { |
36 | | - use obelisk:types/execution@4.2.0.{execution-id}; |
37 | | - use obelisk:types/join-set@4.2.0.{join-set}; |
38 | | - use obelisk:types/execution@4.2.0.{await-next-extension-error, get-extension-error}; |
| 36 | + use obelisk:types/execution@5.0.0.{execution-id}; |
| 37 | + use obelisk:types/join-set@5.0.0.{join-set}; |
| 38 | + use obelisk:types/execution@5.0.0.{await-next-extension-error, get-extension-error}; |
39 | 39 |
|
40 | 40 | get-settings-json-submit: func(join-set: borrow<join-set>) -> execution-id; |
41 | 41 |
|
42 | | - get-settings-json-await-next: func(join-set: borrow<join-set>) -> result<tuple<execution-id, result<string, string>>, await-next-extension-error>; |
| 42 | + get-settings-json-await-next: func(join-set: borrow<join-set>) -> result<result<string, string>, await-next-extension-error>; |
43 | 43 |
|
44 | 44 | get-settings-json-get: func(execution-id: execution-id) -> result<result<string, string>, get-extension-error>; |
45 | 45 | } |
|
0 commit comments