@internetdata/internetdata 2.1.0 → 2.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +21 -0
- package/dist/client.d.ts +10 -3
- package/dist/client.js +16 -72
- package/dist/client.js.map +1 -1
- package/dist/errors.d.ts +28 -0
- package/dist/errors.js +50 -0
- package/dist/errors.js.map +1 -1
- package/dist/generated/index.d.ts +2 -2
- package/dist/generated/index.js +1 -1
- package/dist/generated/index.js.map +1 -1
- package/dist/generated/sdk.gen.d.ts +165 -3
- package/dist/generated/sdk.gen.js +224 -1
- package/dist/generated/sdk.gen.js.map +1 -1
- package/dist/generated/types.gen.d.ts +593 -11
- package/dist/index.d.ts +3 -1
- package/dist/index.js +2 -1
- package/dist/index.js.map +1 -1
- package/dist/oauth.d.ts +118 -0
- package/dist/oauth.js +240 -0
- package/dist/oauth.js.map +1 -0
- package/dist/transport.d.ts +18 -0
- package/dist/transport.js +82 -0
- package/dist/transport.js.map +1 -0
- package/package.json +4 -4
|
@@ -1,9 +1,10 @@
|
|
|
1
1
|
// This file is auto-generated by @hey-api/openapi-ts
|
|
2
2
|
import { client } from './client.gen.js';
|
|
3
|
+
import { urlSearchParamsBodySerializer } from './client/index.js';
|
|
3
4
|
/**
|
|
4
5
|
* List
|
|
5
6
|
*
|
|
6
|
-
* The whole published catalog, with your organization's
|
|
7
|
+
* The whole published catalog, with your organization's license beside
|
|
7
8
|
* each entry, so `standing` says whether a database is yours today
|
|
8
9
|
* (`licensed`), was (`expired`), or has never been bought (`unlicensed`).
|
|
9
10
|
*
|
|
@@ -161,4 +162,226 @@ export const databaseMetadata = (options) => (options.client ?? client).get({
|
|
|
161
162
|
url: '/api/v1/database/metadata',
|
|
162
163
|
...options
|
|
163
164
|
});
|
|
165
|
+
/**
|
|
166
|
+
* Identity
|
|
167
|
+
*
|
|
168
|
+
* The identity behind this credential: what it is, the organization it is
|
|
169
|
+
* scoped to, and the scopes it currently holds.
|
|
170
|
+
*
|
|
171
|
+
* `user` is present for an OAuth token and ABSENT for an API key, which
|
|
172
|
+
* has an organization but no person behind it. `credential.kind` says
|
|
173
|
+
* which you are holding, so a client can branch without guessing from a
|
|
174
|
+
* missing field.
|
|
175
|
+
*
|
|
176
|
+
* Narrower than what the console shows its own user on purpose: an
|
|
177
|
+
* integration needs a name to display and an organization to address, not
|
|
178
|
+
* a profile. The `scopes` array is what the credential may do RIGHT NOW,
|
|
179
|
+
* so a client can render its own capabilities rather than discovering
|
|
180
|
+
* them from a 403.
|
|
181
|
+
*
|
|
182
|
+
*/
|
|
183
|
+
export const accountIdentity = (options) => (options?.client ?? client).get({
|
|
184
|
+
security: [{ scheme: 'bearer', type: 'http' }],
|
|
185
|
+
url: '/api/v1/iam/identity',
|
|
186
|
+
...options
|
|
187
|
+
});
|
|
188
|
+
/**
|
|
189
|
+
* Organization
|
|
190
|
+
*
|
|
191
|
+
* The organization this credential is scoped to.
|
|
192
|
+
*
|
|
193
|
+
* There is no way to name a different one. A credential describes exactly
|
|
194
|
+
* one organization, so an identifier in the path could only ever be your
|
|
195
|
+
* own or a refusal.
|
|
196
|
+
*
|
|
197
|
+
*/
|
|
198
|
+
export const accountOrg = (options) => (options?.client ?? client).get({
|
|
199
|
+
security: [{ scheme: 'bearer', type: 'http' }],
|
|
200
|
+
url: '/api/v1/iam/org',
|
|
201
|
+
...options
|
|
202
|
+
});
|
|
203
|
+
/**
|
|
204
|
+
* Members
|
|
205
|
+
*
|
|
206
|
+
* Read-only. Adding or removing a member is an invitation flow with email
|
|
207
|
+
* in the middle rather than a POST, and modelling it as one here would
|
|
208
|
+
* promise something this API does not do.
|
|
209
|
+
*
|
|
210
|
+
*/
|
|
211
|
+
export const accountOrgMembers = (options) => (options?.client ?? client).get({
|
|
212
|
+
security: [{ scheme: 'bearer', type: 'http' }],
|
|
213
|
+
url: '/api/v1/iam/org/members',
|
|
214
|
+
...options
|
|
215
|
+
});
|
|
216
|
+
/**
|
|
217
|
+
* List
|
|
218
|
+
*
|
|
219
|
+
* Metadata only. A key's secret is never in a list - not here and not in
|
|
220
|
+
* the console - because a list is the response that ends up in logs,
|
|
221
|
+
* caches and support tickets.
|
|
222
|
+
*
|
|
223
|
+
* `retrievable` says whether the secret could still be read back at all.
|
|
224
|
+
* A key issued before this product stored secrets recoverably was never
|
|
225
|
+
* kept, so `reveal` will refuse it permanently; rotating produces one
|
|
226
|
+
* that can be read.
|
|
227
|
+
*
|
|
228
|
+
*/
|
|
229
|
+
export const accountListApikeys = (options) => (options?.client ?? client).get({
|
|
230
|
+
security: [{ scheme: 'bearer', type: 'http' }],
|
|
231
|
+
url: '/api/v1/iam/apikeys',
|
|
232
|
+
...options
|
|
233
|
+
});
|
|
234
|
+
/**
|
|
235
|
+
* Create
|
|
236
|
+
*
|
|
237
|
+
* Creates a key and returns its secret.
|
|
238
|
+
*
|
|
239
|
+
* This is the ONLY response that ever carries the secret, and only
|
|
240
|
+
* because this is the moment it comes into existence. Store it now.
|
|
241
|
+
*
|
|
242
|
+
*/
|
|
243
|
+
export const accountCreateApikey = (options) => (options.client ?? client).post({
|
|
244
|
+
security: [{ scheme: 'bearer', type: 'http' }],
|
|
245
|
+
url: '/api/v1/iam/apikeys',
|
|
246
|
+
...options,
|
|
247
|
+
headers: {
|
|
248
|
+
'Content-Type': 'application/json',
|
|
249
|
+
...options.headers
|
|
250
|
+
}
|
|
251
|
+
});
|
|
252
|
+
/**
|
|
253
|
+
* Rotate
|
|
254
|
+
*
|
|
255
|
+
* Replaces the secret behind a key, keeping its id, name and settings.
|
|
256
|
+
* The previous secret stops working immediately.
|
|
257
|
+
*
|
|
258
|
+
*/
|
|
259
|
+
export const accountRotateApikey = (options) => (options.client ?? client).post({
|
|
260
|
+
security: [{ scheme: 'bearer', type: 'http' }],
|
|
261
|
+
url: '/api/v1/iam/apikeys/{id}/rotate',
|
|
262
|
+
...options
|
|
263
|
+
});
|
|
264
|
+
/**
|
|
265
|
+
* Revoke
|
|
266
|
+
*
|
|
267
|
+
* Stops the key working. Revocation is soft: the key stays listed with a
|
|
268
|
+
* `revoked_at`, because the organization still owns whatever it did while
|
|
269
|
+
* it was alive.
|
|
270
|
+
*
|
|
271
|
+
*/
|
|
272
|
+
export const accountRevokeApikey = (options) => (options.client ?? client).post({
|
|
273
|
+
security: [{ scheme: 'bearer', type: 'http' }],
|
|
274
|
+
url: '/api/v1/iam/apikeys/{id}/revoke',
|
|
275
|
+
...options
|
|
276
|
+
});
|
|
277
|
+
/**
|
|
278
|
+
* Reveal
|
|
279
|
+
*
|
|
280
|
+
* Returns an existing key's secret.
|
|
281
|
+
*
|
|
282
|
+
* Its own scope rather than part of `apikeys.manage`, because the two are
|
|
283
|
+
* different acts: rotating replaces a secret you never see, while this
|
|
284
|
+
* hands one over.
|
|
285
|
+
*
|
|
286
|
+
* Refused with `NOT_RETRIEVABLE` for a key issued before this product
|
|
287
|
+
* stored secrets recoverably - that secret was never kept, so no retry
|
|
288
|
+
* will ever produce it. Rotate the key instead.
|
|
289
|
+
*
|
|
290
|
+
*/
|
|
291
|
+
export const accountRevealApikey = (options) => (options.client ?? client).post({
|
|
292
|
+
security: [{ scheme: 'bearer', type: 'http' }],
|
|
293
|
+
url: '/api/v1/iam/apikeys/{id}/reveal',
|
|
294
|
+
...options
|
|
295
|
+
});
|
|
296
|
+
/**
|
|
297
|
+
* Discovery
|
|
298
|
+
*
|
|
299
|
+
* RFC 8414 authorization server metadata: the endpoints, the grant types
|
|
300
|
+
* and the scopes this server supports.
|
|
301
|
+
*
|
|
302
|
+
* Read this rather than hardcoding endpoints. It is also served at
|
|
303
|
+
* `/.well-known/openid-configuration`, identically, because several
|
|
304
|
+
* clients probe that path first.
|
|
305
|
+
*
|
|
306
|
+
*/
|
|
307
|
+
export const oauthMetadata = (options) => (options?.client ?? client).get({ url: '/.well-known/oauth-authorization-server', ...options });
|
|
308
|
+
/**
|
|
309
|
+
* Device authorization
|
|
310
|
+
*
|
|
311
|
+
* Starts the device flow. Show the `user_code` to the person and send them
|
|
312
|
+
* to `verification_uri`; `verification_uri_complete` has the code already
|
|
313
|
+
* embedded, which is what to open if you can open a browser at all.
|
|
314
|
+
*
|
|
315
|
+
* Then poll `/oauth/token`, no faster than `interval` seconds.
|
|
316
|
+
*
|
|
317
|
+
*/
|
|
318
|
+
export const oauthDeviceAuthorization = (options) => (options.client ?? client).post({
|
|
319
|
+
...urlSearchParamsBodySerializer,
|
|
320
|
+
url: '/oauth/device_authorization',
|
|
321
|
+
...options,
|
|
322
|
+
headers: {
|
|
323
|
+
'Content-Type': 'application/x-www-form-urlencoded',
|
|
324
|
+
...options.headers
|
|
325
|
+
}
|
|
326
|
+
});
|
|
327
|
+
/**
|
|
328
|
+
* Authorize
|
|
329
|
+
*
|
|
330
|
+
* The browser entry point for the authorization-code flow. This is a
|
|
331
|
+
* redirect target, not something to call from code.
|
|
332
|
+
*
|
|
333
|
+
* An unknown `client_id` or an unregistered `redirect_uri` is shown to the
|
|
334
|
+
* USER and never redirected, because sending an error to an address we
|
|
335
|
+
* have not verified belongs to you is how an open redirector works.
|
|
336
|
+
* Everything else comes back to your `redirect_uri` with `error`, your
|
|
337
|
+
* `state`, and `iss`.
|
|
338
|
+
*
|
|
339
|
+
*/
|
|
340
|
+
export const oauthAuthorize = (options) => (options.client ?? client).get({ url: '/oauth/authorize', ...options });
|
|
341
|
+
/**
|
|
342
|
+
* Token
|
|
343
|
+
*
|
|
344
|
+
* Three grant types.
|
|
345
|
+
*
|
|
346
|
+
* `urn:ietf:params:oauth:grant-type:device_code` polls a device
|
|
347
|
+
* authorization. Until the person approves it answers
|
|
348
|
+
* `authorization_pending`; poll faster than `interval` and it answers
|
|
349
|
+
* `slow_down`, which means widen your interval and keep it widened.
|
|
350
|
+
*
|
|
351
|
+
* `authorization_code` exchanges a code from `/oauth/authorize`, with the
|
|
352
|
+
* `code_verifier` matching the challenge you sent.
|
|
353
|
+
*
|
|
354
|
+
* `refresh_token` exchanges a refresh token. The presented token is
|
|
355
|
+
* consumed whatever happens next, so store the new one before using it.
|
|
356
|
+
*
|
|
357
|
+
*/
|
|
358
|
+
export const oauthToken = (options) => (options.client ?? client).post({
|
|
359
|
+
...urlSearchParamsBodySerializer,
|
|
360
|
+
url: '/oauth/token',
|
|
361
|
+
...options,
|
|
362
|
+
headers: {
|
|
363
|
+
'Content-Type': 'application/x-www-form-urlencoded',
|
|
364
|
+
...options.headers
|
|
365
|
+
}
|
|
366
|
+
});
|
|
367
|
+
/**
|
|
368
|
+
* Revoke
|
|
369
|
+
*
|
|
370
|
+
* RFC 7009. Always answers 200, including for a token that was never
|
|
371
|
+
* valid - an endpoint that distinguished the two would be a way to test
|
|
372
|
+
* whether a stolen string is a live credential.
|
|
373
|
+
*
|
|
374
|
+
* Revoking a REFRESH token ends the whole authorization and takes its
|
|
375
|
+
* access tokens with it. Revoking an access token affects only that token.
|
|
376
|
+
*
|
|
377
|
+
*/
|
|
378
|
+
export const oauthRevoke = (options) => (options.client ?? client).post({
|
|
379
|
+
...urlSearchParamsBodySerializer,
|
|
380
|
+
url: '/oauth/revoke',
|
|
381
|
+
...options,
|
|
382
|
+
headers: {
|
|
383
|
+
'Content-Type': 'application/x-www-form-urlencoded',
|
|
384
|
+
...options.headers
|
|
385
|
+
}
|
|
386
|
+
});
|
|
164
387
|
//# sourceMappingURL=sdk.gen.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"sdk.gen.js","sourceRoot":"","sources":["../../src/generated/sdk.gen.ts"],"names":[],"mappings":"AAAA,qDAAqD;AAErD,OAAO,EAAE,MAAM,EAAE,MAAM,iBAAiB,CAAC;
|
|
1
|
+
{"version":3,"file":"sdk.gen.js","sourceRoot":"","sources":["../../src/generated/sdk.gen.ts"],"names":[],"mappings":"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"}
|