@yuntijs/arcadia-bff-sdk 1.2.56 → 1.2.58

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/cjs/sdk.d.ts CHANGED
@@ -6720,6 +6720,7 @@ export type GetVersionQuery = {
6720
6720
  creator?: string | null;
6721
6721
  createdAt: any;
6722
6722
  updatedAt: any;
6723
+ contentCount?: number | null;
6723
6724
  files: {
6724
6725
  __typename?: 'PaginatedResult';
6725
6726
  totalCount: number;
package/dist/cjs/sdk.js CHANGED
@@ -2227,6 +2227,7 @@ var GetVersionDocument = import_graphql_tag.default`
2227
2227
  creator
2228
2228
  createdAt
2229
2229
  updatedAt
2230
+ contentCount
2230
2231
  files {
2231
2232
  totalCount
2232
2233
  nodes {
package/dist/esm/sdk.d.ts CHANGED
@@ -6720,6 +6720,7 @@ export type GetVersionQuery = {
6720
6720
  creator?: string | null;
6721
6721
  createdAt: any;
6722
6722
  updatedAt: any;
6723
+ contentCount?: number | null;
6723
6724
  files: {
6724
6725
  __typename?: 'PaginatedResult';
6725
6726
  totalCount: number;
package/dist/esm/sdk.js CHANGED
@@ -251,7 +251,7 @@ export var ListRerankersDocument = gql(_templateObject75 || (_templateObject75 =
251
251
  export var GetRerankerDocument = gql(_templateObject76 || (_templateObject76 = _taggedTemplateLiteral(["\n query getReranker($name: String!, $namespace: String!) {\n Reranker {\n getReranker(name: $name, namespace: $namespace) {\n name\n namespace\n labels\n annotations\n displayName\n description\n baseUrl\n models\n type\n provider\n updateTimestamp\n }\n }\n}\n "])));
252
252
  export var ListTuningDataSetDocument = gql(_templateObject77 || (_templateObject77 = _taggedTemplateLiteral(["\n query listTuningDataSet($namespace: String!, $options: ListOptionInput) {\n TuningDataSet {\n listTuningDataSet(namespace: $namespace, options: $options) {\n totalCount\n nodes {\n ... on TuningDataSet {\n ID\n name\n namespace\n creator\n type\n createdAt\n updatedAt\n versions {\n totalCount\n nodes {\n ... on TuningVersionedDataset {\n ID\n description\n version\n creator\n createdAt\n updatedAt\n contentCount\n }\n }\n }\n }\n }\n }\n }\n}\n "])));
253
253
  export var GetTuningDataSetDocument = gql(_templateObject78 || (_templateObject78 = _taggedTemplateLiteral(["\n query getTuningDataSet($id: String!) {\n TuningDataSet {\n getTuningDataSet(id: $id) {\n ID\n name\n namespace\n creator\n type\n createdAt\n updatedAt\n versions {\n totalCount\n nodes {\n ... on TuningVersionedDataset {\n ID\n description\n version\n creator\n createdAt\n updatedAt\n contentCount\n }\n }\n }\n }\n }\n}\n "])));
254
- export var GetVersionDocument = gql(_templateObject79 || (_templateObject79 = _taggedTemplateLiteral(["\n query getVersion($id: String!) {\n TuningDataSet {\n getVersion(id: $id) {\n ID\n description\n version\n creator\n createdAt\n updatedAt\n files {\n totalCount\n nodes {\n ... on TuningVersionedDatasetFiles {\n ID\n fileName\n size\n count\n status\n createdAt\n msg\n }\n }\n }\n }\n }\n}\n "])));
254
+ export var GetVersionDocument = gql(_templateObject79 || (_templateObject79 = _taggedTemplateLiteral(["\n query getVersion($id: String!) {\n TuningDataSet {\n getVersion(id: $id) {\n ID\n description\n version\n creator\n createdAt\n updatedAt\n contentCount\n files {\n totalCount\n nodes {\n ... on TuningVersionedDatasetFiles {\n ID\n fileName\n size\n count\n status\n createdAt\n msg\n }\n }\n }\n }\n }\n}\n "])));
255
255
  export var GetVersionContentDocument = gql(_templateObject80 || (_templateObject80 = _taggedTemplateLiteral(["\n query getVersionContent($id: String!, $input: ListCommonInput) {\n TuningDataSet {\n getVersionContent(id: $id, input: $input) {\n totalCount\n nodes {\n ... on TuningVersionedDatasetContent {\n ID\n data {\n instruction\n output\n input\n system\n history\n }\n }\n }\n }\n }\n}\n "])));
256
256
  export var CreateTuningDataSetDocument = gql(_templateObject81 || (_templateObject81 = _taggedTemplateLiteral(["\n mutation createTuningDataSet($input: CreateTuningDataSetInput!) {\n TuningDataSet {\n createTuningDataSet(input: $input)\n }\n}\n "])));
257
257
  export var UpdateTuningDataSetDocument = gql(_templateObject82 || (_templateObject82 = _taggedTemplateLiteral(["\n mutation updateTuningDataSet($id: String!, $newName: String!) {\n TuningDataSet {\n updateTuningDataSet(id: $id, newName: $newName)\n }\n}\n "])));