Fix: Remove remaining billing query (#3517)
* Fix: Remove remaining billing query * fix types
This commit is contained in:
@@ -864,12 +864,6 @@ export type CreateVersionInput = {
|
||||
totalChildrenCount?: InputMaybe<Scalars['Int']['input']>;
|
||||
};
|
||||
|
||||
export enum Currency {
|
||||
Eur = 'EUR',
|
||||
Gbp = 'GBP',
|
||||
Usd = 'USD'
|
||||
}
|
||||
|
||||
export type DeleteModelInput = {
|
||||
id: Scalars['ID']['input'];
|
||||
projectId: Scalars['ID']['input'];
|
||||
@@ -4112,33 +4106,6 @@ export type WorkspaceCollection = {
|
||||
totalCount: Scalars['Int']['output'];
|
||||
};
|
||||
|
||||
export type WorkspaceCost = {
|
||||
__typename?: 'WorkspaceCost';
|
||||
/** Currency of the price */
|
||||
currency: Currency;
|
||||
/** Discount applied to the total */
|
||||
discount?: Maybe<WorkspaceCostDiscount>;
|
||||
items: Array<WorkspaceCostItem>;
|
||||
/** Estimated cost of the workspace with no discount applied */
|
||||
subTotal: Scalars['Float']['output'];
|
||||
/** Total cost with discount applied */
|
||||
total: Scalars['Float']['output'];
|
||||
};
|
||||
|
||||
export type WorkspaceCostDiscount = {
|
||||
__typename?: 'WorkspaceCostDiscount';
|
||||
amount: Scalars['Float']['output'];
|
||||
name: Scalars['String']['output'];
|
||||
};
|
||||
|
||||
export type WorkspaceCostItem = {
|
||||
__typename?: 'WorkspaceCostItem';
|
||||
cost: Scalars['Float']['output'];
|
||||
count: Scalars['Int']['output'];
|
||||
label: Scalars['String']['output'];
|
||||
name: Scalars['String']['output'];
|
||||
};
|
||||
|
||||
export type WorkspaceCreateInput = {
|
||||
defaultLogoIndex?: InputMaybe<Scalars['Int']['input']>;
|
||||
description?: InputMaybe<Scalars['String']['input']>;
|
||||
@@ -4162,7 +4129,6 @@ export type WorkspaceDomainDeleteInput = {
|
||||
export enum WorkspaceFeatureName {
|
||||
DomainBasedSecurityPolicies = 'domainBasedSecurityPolicies',
|
||||
OidcSso = 'oidcSso',
|
||||
Workspace = 'workspace',
|
||||
WorkspaceDataRegionSpecificity = 'workspaceDataRegionSpecificity'
|
||||
}
|
||||
|
||||
@@ -4441,14 +4407,6 @@ export type WorkspaceUpdateInput = {
|
||||
slug?: InputMaybe<Scalars['String']['input']>;
|
||||
};
|
||||
|
||||
export type WorkspaceVersionsCount = {
|
||||
__typename?: 'WorkspaceVersionsCount';
|
||||
/** Total number of versions of all projects in the workspace */
|
||||
current: Scalars['Int']['output'];
|
||||
/** Maximum number of version of all projects in the workspace with no additional cost */
|
||||
max: Scalars['Int']['output'];
|
||||
};
|
||||
|
||||
export type CrossSyncCommitBranchMetadataQueryVariables = Exact<{
|
||||
streamId: Scalars['String']['input'];
|
||||
commitId: Scalars['String']['input'];
|
||||
|
||||
Reference in New Issue
Block a user