Skip to content

Commit c64fdd0

Browse files
committed
remove services
1 parent 60d816b commit c64fdd0

File tree

11 files changed

+1
-718
lines changed

11 files changed

+1
-718
lines changed

docs/examples/account/create-key.md

Lines changed: 0 additions & 16 deletions
This file was deleted.

docs/examples/account/delete-key.md

Lines changed: 0 additions & 14 deletions
This file was deleted.

docs/examples/account/get-key.md

Lines changed: 0 additions & 14 deletions
This file was deleted.

docs/examples/account/list-keys.md

Lines changed: 0 additions & 14 deletions
This file was deleted.

docs/examples/account/update-key.md

Lines changed: 0 additions & 17 deletions
This file was deleted.

docs/examples/organizations/delete.md

Lines changed: 0 additions & 14 deletions
This file was deleted.

docs/examples/organizations/estimation-delete-organization.md

Lines changed: 0 additions & 14 deletions
This file was deleted.

src/index.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@ export { Graphql } from './services/graphql';
88
export { Health } from './services/health';
99
export { Locale } from './services/locale';
1010
export { Messaging } from './services/messaging';
11-
export { Organizations } from './services/organizations';
1211
export { Sites } from './services/sites';
1312
export { Storage } from './services/storage';
1413
export { TablesDB } from './services/tables-db';
@@ -21,7 +20,6 @@ export { Permission } from './permission';
2120
export { Role } from './role';
2221
export { ID } from './id';
2322
export { Operator, Condition } from './operator';
24-
export { Scopes } from './enums/scopes';
2523
export { AuthenticatorType } from './enums/authenticator-type';
2624
export { AuthenticationFactor } from './enums/authentication-factor';
2725
export { OAuthProvider } from './enums/o-auth-provider';
@@ -38,6 +36,7 @@ export { RelationMutate } from './enums/relation-mutate';
3836
export { IndexType } from './enums/index-type';
3937
export { OrderBy } from './enums/order-by';
4038
export { Runtime } from './enums/runtime';
39+
export { Scopes } from './enums/scopes';
4140
export { TemplateReferenceType } from './enums/template-reference-type';
4241
export { VCSReferenceType } from './enums/vcs-reference-type';
4342
export { DeploymentDownloadType } from './enums/deployment-download-type';

src/models.ts

Lines changed: 0 additions & 190 deletions
Original file line numberDiff line numberDiff line change
@@ -324,20 +324,6 @@ export namespace Models {
324324
executions: Execution[];
325325
}
326326

327-
/**
328-
* API Keys List
329-
*/
330-
export type KeyList = {
331-
/**
332-
* Total number of keys that matched your query.
333-
*/
334-
total: number;
335-
/**
336-
* List of keys.
337-
*/
338-
keys: Key[];
339-
}
340-
341327
/**
342328
* Countries List
343329
*/
@@ -3777,48 +3763,6 @@ export namespace Models {
37773763
scheduledAt?: string;
37783764
}
37793765

3780-
/**
3781-
* Key
3782-
*/
3783-
export type Key = {
3784-
/**
3785-
* Key ID.
3786-
*/
3787-
$id: string;
3788-
/**
3789-
* Key creation date in ISO 8601 format.
3790-
*/
3791-
$createdAt: string;
3792-
/**
3793-
* Key update date in ISO 8601 format.
3794-
*/
3795-
$updatedAt: string;
3796-
/**
3797-
* Key name.
3798-
*/
3799-
name: string;
3800-
/**
3801-
* Key expiration date in ISO 8601 format.
3802-
*/
3803-
expire: string;
3804-
/**
3805-
* Allowed permission scopes.
3806-
*/
3807-
scopes: string[];
3808-
/**
3809-
* Secret key.
3810-
*/
3811-
secret: string;
3812-
/**
3813-
* Most recent access date in ISO 8601 format. This attribute is only updated again after 24 hours.
3814-
*/
3815-
accessedAt: string;
3816-
/**
3817-
* List of SDK user agents that used this key.
3818-
*/
3819-
sdks: string[];
3820-
}
3821-
38223766
/**
38233767
* Variable
38243768
*/
@@ -4455,100 +4399,6 @@ export namespace Models {
44554399
resourceType?: string;
44564400
}
44574401

4458-
/**
4459-
* Invoice
4460-
*/
4461-
export type Invoice = {
4462-
/**
4463-
* Invoice ID.
4464-
*/
4465-
$id: string;
4466-
/**
4467-
* Invoice creation time in ISO 8601 format.
4468-
*/
4469-
$createdAt: string;
4470-
/**
4471-
* Invoice update date in ISO 8601 format.
4472-
*/
4473-
$updatedAt: string;
4474-
/**
4475-
* Invoice permissions. [Learn more about permissions](/docs/permissions).
4476-
*/
4477-
$permissions: string[];
4478-
/**
4479-
* Project ID
4480-
*/
4481-
teamId: string;
4482-
/**
4483-
* Aggregation ID
4484-
*/
4485-
aggregationId: string;
4486-
/**
4487-
* Billing plan selected. Can be one of `tier-0`, `tier-1` or `tier-2`.
4488-
*/
4489-
plan: string;
4490-
/**
4491-
* Usage breakdown per resource
4492-
*/
4493-
usage: UsageResources[];
4494-
/**
4495-
* Invoice Amount
4496-
*/
4497-
amount: number;
4498-
/**
4499-
* Tax percentage
4500-
*/
4501-
tax: number;
4502-
/**
4503-
* Tax amount
4504-
*/
4505-
taxAmount: number;
4506-
/**
4507-
* VAT percentage
4508-
*/
4509-
vat: number;
4510-
/**
4511-
* VAT amount
4512-
*/
4513-
vatAmount: number;
4514-
/**
4515-
* Gross amount after vat, tax, and discounts applied.
4516-
*/
4517-
grossAmount: number;
4518-
/**
4519-
* Credits used.
4520-
*/
4521-
creditsUsed: number;
4522-
/**
4523-
* Currency the invoice is in
4524-
*/
4525-
currency: string;
4526-
/**
4527-
* Client secret for processing failed payments in front-end
4528-
*/
4529-
clientSecret: string;
4530-
/**
4531-
* Invoice status
4532-
*/
4533-
status: string;
4534-
/**
4535-
* Last payment error associated with the invoice
4536-
*/
4537-
lastError: string;
4538-
/**
4539-
* Invoice due date.
4540-
*/
4541-
dueAt: string;
4542-
/**
4543-
* Beginning date of the invoice
4544-
*/
4545-
from: string;
4546-
/**
4547-
* End date of the invoice
4548-
*/
4549-
to: string;
4550-
}
4551-
45524402
/**
45534403
* backup
45544404
*/
@@ -4649,46 +4499,6 @@ export namespace Models {
46494499
options: string;
46504500
}
46514501

4652-
/**
4653-
* UsageResource
4654-
*/
4655-
export type UsageResources = {
4656-
/**
4657-
* Invoice name
4658-
*/
4659-
name: string;
4660-
/**
4661-
* Invoice value
4662-
*/
4663-
value: number;
4664-
/**
4665-
* Invoice amount
4666-
*/
4667-
amount: number;
4668-
/**
4669-
* Invoice rate
4670-
*/
4671-
rate: number;
4672-
/**
4673-
* Invoice description
4674-
*/
4675-
desc: string;
4676-
/**
4677-
* Resource ID
4678-
*/
4679-
resourceId: string;
4680-
}
4681-
4682-
/**
4683-
* EstimationDeleteOrganization
4684-
*/
4685-
export type EstimationDeleteOrganization = {
4686-
/**
4687-
* List of unpaid invoices
4688-
*/
4689-
unpaidInvoices: Invoice[];
4690-
}
4691-
46924502
/**
46934503
* Backup archive list
46944504
*/

0 commit comments

Comments
 (0)