backend.ai-ui 25.18.0 → 25.18.2
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/dist/__generated__/BAIAdminResourceGroupSelectPaginationQuery.graphql.d.ts +39 -0
- package/dist/__generated__/BAIAdminResourceGroupSelectStoriesQuery.graphql.d.ts +11 -0
- package/dist/__generated__/BAIAdminResourceGroupSelect_scalingGroupsV2Fragment.graphql.d.ts +19 -0
- package/dist/__generated__/BAIImportArtifactModalImportArtifactsMutation.graphql.d.ts +1 -1
- package/dist/backend.ai-ui.js +5934 -5580
- package/dist/backend.ai-ui.js.map +1 -1
- package/dist/components/BAISelect.d.ts +2 -1
- package/dist/components/fragments/BAIAdminResourceGroupSelect.d.ts +7 -0
- package/dist/components/fragments/index.d.ts +2 -0
- package/package.json +1 -1
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
import { ConcreteRequest, FragmentRefs } from 'relay-runtime';
|
|
2
|
+
export type ScalingGroupFilter = {
|
|
3
|
+
AND?: ReadonlyArray<ScalingGroupFilter> | null | undefined;
|
|
4
|
+
NOT?: ReadonlyArray<ScalingGroupFilter> | null | undefined;
|
|
5
|
+
OR?: ReadonlyArray<ScalingGroupFilter> | null | undefined;
|
|
6
|
+
description?: StringFilter | null | undefined;
|
|
7
|
+
driver?: string | null | undefined;
|
|
8
|
+
isActive?: boolean | null | undefined;
|
|
9
|
+
isPublic?: boolean | null | undefined;
|
|
10
|
+
name?: StringFilter | null | undefined;
|
|
11
|
+
scheduler?: string | null | undefined;
|
|
12
|
+
useHostNetwork?: boolean | null | undefined;
|
|
13
|
+
};
|
|
14
|
+
export type StringFilter = {
|
|
15
|
+
contains?: string | null | undefined;
|
|
16
|
+
endsWith?: string | null | undefined;
|
|
17
|
+
equals?: string | null | undefined;
|
|
18
|
+
iContains?: string | null | undefined;
|
|
19
|
+
iEndsWith?: string | null | undefined;
|
|
20
|
+
iEquals?: string | null | undefined;
|
|
21
|
+
iNotEquals?: string | null | undefined;
|
|
22
|
+
iStartsWith?: string | null | undefined;
|
|
23
|
+
notEquals?: string | null | undefined;
|
|
24
|
+
startsWith?: string | null | undefined;
|
|
25
|
+
};
|
|
26
|
+
export type BAIAdminResourceGroupSelectPaginationQuery$variables = {
|
|
27
|
+
after?: string | null | undefined;
|
|
28
|
+
filter?: ScalingGroupFilter | null | undefined;
|
|
29
|
+
first?: number | null | undefined;
|
|
30
|
+
};
|
|
31
|
+
export type BAIAdminResourceGroupSelectPaginationQuery$data = {
|
|
32
|
+
readonly " $fragmentSpreads": FragmentRefs<"BAIAdminResourceGroupSelect_scalingGroupsV2Fragment">;
|
|
33
|
+
};
|
|
34
|
+
export type BAIAdminResourceGroupSelectPaginationQuery = {
|
|
35
|
+
response: BAIAdminResourceGroupSelectPaginationQuery$data;
|
|
36
|
+
variables: BAIAdminResourceGroupSelectPaginationQuery$variables;
|
|
37
|
+
};
|
|
38
|
+
declare const node: ConcreteRequest;
|
|
39
|
+
export default node;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { ConcreteRequest, FragmentRefs } from 'relay-runtime';
|
|
2
|
+
export type BAIAdminResourceGroupSelectStoriesQuery$variables = Record<PropertyKey, never>;
|
|
3
|
+
export type BAIAdminResourceGroupSelectStoriesQuery$data = {
|
|
4
|
+
readonly " $fragmentSpreads": FragmentRefs<"BAIAdminResourceGroupSelect_scalingGroupsV2Fragment">;
|
|
5
|
+
};
|
|
6
|
+
export type BAIAdminResourceGroupSelectStoriesQuery = {
|
|
7
|
+
response: BAIAdminResourceGroupSelectStoriesQuery$data;
|
|
8
|
+
variables: BAIAdminResourceGroupSelectStoriesQuery$variables;
|
|
9
|
+
};
|
|
10
|
+
declare const node: ConcreteRequest;
|
|
11
|
+
export default node;
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import { ReaderFragment, FragmentRefs } from 'relay-runtime';
|
|
2
|
+
export type BAIAdminResourceGroupSelect_scalingGroupsV2Fragment$data = {
|
|
3
|
+
readonly allScalingGroupsV2: {
|
|
4
|
+
readonly count: number;
|
|
5
|
+
readonly edges: ReadonlyArray<{
|
|
6
|
+
readonly node: {
|
|
7
|
+
readonly id: string;
|
|
8
|
+
readonly name: string;
|
|
9
|
+
};
|
|
10
|
+
}>;
|
|
11
|
+
};
|
|
12
|
+
readonly " $fragmentType": "BAIAdminResourceGroupSelect_scalingGroupsV2Fragment";
|
|
13
|
+
};
|
|
14
|
+
export type BAIAdminResourceGroupSelect_scalingGroupsV2Fragment$key = {
|
|
15
|
+
readonly " $data"?: BAIAdminResourceGroupSelect_scalingGroupsV2Fragment$data;
|
|
16
|
+
readonly " $fragmentSpreads": FragmentRefs<"BAIAdminResourceGroupSelect_scalingGroupsV2Fragment">;
|
|
17
|
+
};
|
|
18
|
+
declare const node: ReaderFragment;
|
|
19
|
+
export default node;
|