|
1 |
| -/* |
2 |
| - * Copyright 2025 Clidey, Inc. |
3 |
| - * |
4 |
| - * Licensed under the Apache License, Version 2.0 (the "License"); |
5 |
| - * you may not use this file except in compliance with the License. |
6 |
| - * You may obtain a copy of the License at |
7 |
| - * |
8 |
| - * http://www.apache.org/licenses/LICENSE-2.0 |
9 |
| - * |
10 |
| - * Unless required by applicable law or agreed to in writing, software |
11 |
| - * distributed under the License is distributed on an "AS IS" BASIS, |
12 |
| - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
13 |
| - * See the License for the specific language governing permissions and |
14 |
| - * limitations under the License. |
15 |
| - */ |
16 |
| - |
17 | 1 | import { gql } from '@apollo/client';
|
18 | 2 | import * as Apollo from '@apollo/client';
|
19 | 3 | export type Maybe<T> = T | null;
|
@@ -299,7 +283,7 @@ export enum WhereConditionType {
|
299 | 283 | export type GetProfilesQueryVariables = Exact<{ [key: string]: never; }>;
|
300 | 284 |
|
301 | 285 |
|
302 |
| -export type GetProfilesQuery = { __typename?: 'Query', Profiles: Array<{ __typename?: 'LoginProfile', Alias?: string | null, Id: string, Type: DatabaseType, Database?: string | null }> }; |
| 286 | +export type GetProfilesQuery = { __typename?: 'Query', Profiles: Array<{ __typename?: 'LoginProfile', Alias?: string | null, Id: string, Type: DatabaseType, Database?: string | null, IsEnvironmentDefined: boolean }> }; |
303 | 287 |
|
304 | 288 | export type GetSchemaQueryVariables = Exact<{ [key: string]: never; }>;
|
305 | 289 |
|
@@ -340,7 +324,7 @@ export type LogoutMutation = { __typename?: 'Mutation', Logout: { __typename?: '
|
340 | 324 | export type GetAiProvidersQueryVariables = Exact<{ [key: string]: never; }>;
|
341 | 325 |
|
342 | 326 |
|
343 |
| -export type GetAiProvidersQuery = { __typename?: 'Query', AIProviders: Array<{ __typename?: 'AIProvider', Type: string, ProviderId: string }> }; |
| 327 | +export type GetAiProvidersQuery = { __typename?: 'Query', AIProviders: Array<{ __typename?: 'AIProvider', Type: string, ProviderId: string, IsEnvironmentDefined: boolean }> }; |
344 | 328 |
|
345 | 329 | export type GetAiChatQueryVariables = Exact<{
|
346 | 330 | providerId?: InputMaybe<Scalars['String']['input']>;
|
@@ -453,6 +437,7 @@ export const GetProfilesDocument = gql`
|
453 | 437 | Id
|
454 | 438 | Type
|
455 | 439 | Database
|
| 440 | + IsEnvironmentDefined |
456 | 441 | }
|
457 | 442 | }
|
458 | 443 | `;
|
@@ -703,6 +688,7 @@ export const GetAiProvidersDocument = gql`
|
703 | 688 | AIProviders {
|
704 | 689 | Type
|
705 | 690 | ProviderId
|
| 691 | + IsEnvironmentDefined |
706 | 692 | }
|
707 | 693 | }
|
708 | 694 | `;
|
|
0 commit comments