-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathaccount.ts
More file actions
180 lines (150 loc) · 3.94 KB
/
Copy pathaccount.ts
File metadata and controls
180 lines (150 loc) · 3.94 KB
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
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
// SPDX-FileCopyrightText: 2026 Xquik contributors
//
// SPDX-License-Identifier: Apache-2.0
// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
import { APIResource } from '../core/resource';
import { APIPromise } from '../core/api-promise';
import { RequestOptions } from '../internal/request-options';
/**
* Account info and settings
*/
export class Account extends APIResource {
/**
* Get account info
*
* @example
* ```ts
* const account = await client.account.retrieve();
* ```
*/
retrieve(options?: RequestOptions): APIPromise<AccountRetrieveResponse> {
return this._client.get('/account', options);
}
/**
* Set linked X username
*
* @example
* ```ts
* const response = await client.account.setXUsername({
* username: 'elonmusk',
* });
* ```
*/
setXUsername(
body: AccountSetXUsernameParams,
options?: RequestOptions,
): APIPromise<AccountSetXUsernameResponse> {
return this._client.put('/account/x-identity', { body, ...options });
}
/**
* Update account locale
*
* @example
* ```ts
* const response = await client.account.updateLocale({
* locale: 'en',
* });
* ```
*/
updateLocale(
body: AccountUpdateLocaleParams,
options?: RequestOptions,
): APIPromise<AccountUpdateLocaleResponse> {
return this._client.patch('/account', { body, ...options });
}
}
export interface AccountRetrieveResponse {
monitorBilling: AccountRetrieveResponse.MonitorBilling;
/**
* @deprecated Monitor slots are unlimited. Use monitorBilling.unlimitedSlots
* instead.
*/
monitorsAllowed: number;
monitorsUsed: number;
plan: 'active' | 'inactive';
creditInfo?: AccountRetrieveResponse.CreditInfo;
/**
* Linked X username, omitted when no X account is connected.
*/
xUsername?: string;
}
export namespace AccountRetrieveResponse {
export interface MonitorBilling {
/**
* Estimated daily usage for currently active monitors.
*/
activeDailyEstimate: string;
/**
* Usage charged each hour for currently active monitors.
*/
activeHourlyBurn: string;
/**
* Rounded daily estimate for 1 active monitor.
*/
creditsPerActiveMonitorDay: string;
/**
* Hourly credits charged for 1 active monitor.
*/
creditsPerActiveMonitorHour: string;
/**
* Webhook and event deliveries are included in monitor billing.
*/
eventsIncluded: boolean;
/**
* Active monitors check every 1 second.
*/
instantCheckIntervalSeconds: number;
/**
* Monitor slot count is unlimited.
*/
unlimitedSlots: boolean;
}
export interface CreditInfo {
/**
* Dollar amount charged when automatic top-up runs.
*/
autoTopupAmountDollars: number;
autoTopupEnabled: boolean;
/**
* Bigint string threshold that triggers automatic top-up when enabled.
*/
autoTopupThreshold: string;
/**
* Bigint string to preserve precision above Number.MAX_SAFE_INTEGER.
*/
balance: string;
/**
* Total purchased usage as a bigint string.
*/
lifetimePurchased: string;
/**
* Total consumed usage as a bigint string.
*/
lifetimeUsed: string;
}
}
export interface AccountSetXUsernameResponse {
success: true;
xUsername: string;
}
export interface AccountUpdateLocaleResponse {
success: true;
}
export interface AccountSetXUsernameParams {
/**
* X username without @
*/
username: string;
}
export interface AccountUpdateLocaleParams {
locale: 'en' | 'tr' | 'es';
}
export declare namespace Account {
export {
type AccountRetrieveResponse as AccountRetrieveResponse,
type AccountSetXUsernameResponse as AccountSetXUsernameResponse,
type AccountUpdateLocaleResponse as AccountUpdateLocaleResponse,
type AccountSetXUsernameParams as AccountSetXUsernameParams,
type AccountUpdateLocaleParams as AccountUpdateLocaleParams,
};
}