-
Notifications
You must be signed in to change notification settings - Fork 0
/
references.ts
114 lines (96 loc) · 2.5 KB
/
references.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
import { APIResource } from '../../resource';
import * as Core from '../../core';
import { PageCursorURL, type PageCursorURLParams } from '../../pagination';
export class References extends APIResource {
/**
* Get vals that depend on any of the user's vals
*/
list(
query: ReferenceListParams,
options?: Core.RequestOptions,
): Core.PagePromise<ReferenceListResponsesPageCursorURL, ReferenceListResponse> {
return this._client.getAPIList('/v1/me/references', ReferenceListResponsesPageCursorURL, {
query,
...options,
});
}
}
export class ReferenceListResponsesPageCursorURL extends PageCursorURL<ReferenceListResponse> {}
/**
* A description of a dependency from one val (reference) to another (dependsOn)
* that was introduced at a particular time.
*/
export interface ReferenceListResponse {
/**
* A val in a dependency relationship
*/
dependsOn: ReferenceListResponse.DependsOn;
/**
* A val in a dependency relationship
*/
reference: ReferenceListResponse.Reference;
referencedAt: string;
}
export namespace ReferenceListResponse {
/**
* A val in a dependency relationship
*/
export interface DependsOn {
/**
* The id of this val
*/
id: string;
/**
* The ID of the person who authored this val
*/
author_id: string | null;
/**
* The name of this val
*/
name: string;
/**
* The username of the person who authored this val
*/
username: string | null;
}
/**
* A val in a dependency relationship
*/
export interface Reference {
/**
* The id of this val
*/
id: string;
/**
* The ID of the person who authored this val
*/
author_id: string | null;
/**
* The name of this val
*/
name: string;
/**
* The username of the person who authored this val
*/
username: string | null;
}
}
export interface ReferenceListParams extends PageCursorURLParams {
/**
* Include items created after this date
*/
since?: string;
/**
* Include items created before this date
*/
until?: string;
}
References.ReferenceListResponsesPageCursorURL = ReferenceListResponsesPageCursorURL;
export declare namespace References {
export {
type ReferenceListResponse as ReferenceListResponse,
ReferenceListResponsesPageCursorURL as ReferenceListResponsesPageCursorURL,
type ReferenceListParams as ReferenceListParams,
};
}