You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/snapshots/crates_io__openapi__tests__openapi_snapshot.snap
+67Lines changed: 67 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -23,6 +23,73 @@ snapshot_kind: text
23
23
"/api/private/crate_owner_invitations": {
24
24
"get": {
25
25
"operationId": "list_crate_owner_invitations",
26
+
"parameters": [
27
+
{
28
+
"description": "Filter crate owner invitations by crate name.\n\nOnly crate owners can query pending invitations for their crate.",
29
+
"in": "query",
30
+
"name": "crate_name",
31
+
"required": false,
32
+
"schema": {
33
+
"type": [
34
+
"string",
35
+
"null"
36
+
]
37
+
}
38
+
},
39
+
{
40
+
"description": "The ID of the user who was invited to be a crate owner.\n\nThis parameter needs to match the authenticated user's ID.",
41
+
"in": "query",
42
+
"name": "invitee_id",
43
+
"required": false,
44
+
"schema": {
45
+
"format": "int32",
46
+
"type": [
47
+
"integer",
48
+
"null"
49
+
]
50
+
}
51
+
},
52
+
{
53
+
"description": "The page number to request.\n\nThis parameter is mutually exclusive with `seek` and not supported for\nall requests.",
54
+
"in": "query",
55
+
"name": "page",
56
+
"required": false,
57
+
"schema": {
58
+
"format": "int32",
59
+
"minimum": 1,
60
+
"type": [
61
+
"integer",
62
+
"null"
63
+
]
64
+
}
65
+
},
66
+
{
67
+
"description": "The number of items to request per page.",
68
+
"in": "query",
69
+
"name": "per_page",
70
+
"required": false,
71
+
"schema": {
72
+
"format": "int32",
73
+
"minimum": 1,
74
+
"type": [
75
+
"integer",
76
+
"null"
77
+
]
78
+
}
79
+
},
80
+
{
81
+
"description": "The seek key to request.\n\nThis parameter is mutually exclusive with `page` and not supported for\nall requests.\n\nThe seek key can usually be found in the `meta.next_page` field of\npaginated responses.",
0 commit comments