@yuntijs/arcadia-bff-sdk 1.2.60 → 1.2.61

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
@@ -2691,8 +2691,10 @@ export type TuningVersionedDatasetContent = {
2691
2691
  __typename?: 'TuningVersionedDatasetContent';
2692
2692
  /** 训练数据集版本内容的ID */
2693
2693
  ID: Scalars['ID']['output'];
2694
+ createdAt: Scalars['Time']['output'];
2694
2695
  /** 训练数据集版本的具体数据 */
2695
2696
  data: ContentTemplate;
2697
+ updatedAt: Scalars['Time']['output'];
2696
2698
  };
2697
2699
  export type TuningVersionedDatasetFiles = {
2698
2700
  __typename?: 'TuningVersionedDatasetFiles';
@@ -2708,6 +2710,7 @@ export type TuningVersionedDatasetFiles = {
2708
2710
  size?: Maybe<Scalars['Int']['output']>;
2709
2711
  /** 文件导入状态 */
2710
2712
  status?: Maybe<Scalars['Int']['output']>;
2713
+ updatedAt: Scalars['Time']['output'];
2711
2714
  };
2712
2715
  export type TypedObjectReference = {
2713
2716
  __typename?: 'TypedObjectReference';
@@ -7248,6 +7251,7 @@ export type GetVersionQuery = {
7248
7251
  count?: number | null;
7249
7252
  status?: number | null;
7250
7253
  createdAt: any;
7254
+ updatedAt: any;
7251
7255
  msg?: string | null;
7252
7256
  } | {
7253
7257
  __typename?: 'VersionedDataset';
@@ -7318,6 +7322,8 @@ export type GetVersionContentQuery = {
7318
7322
  } | {
7319
7323
  __typename?: 'TuningVersionedDatasetContent';
7320
7324
  ID: string;
7325
+ createdAt: any;
7326
+ updatedAt: any;
7321
7327
  data: {
7322
7328
  __typename?: 'ContentTemplate';
7323
7329
  instruction: string;
package/dist/cjs/sdk.js CHANGED
@@ -2261,6 +2261,7 @@ var GetVersionDocument = import_graphql_tag.default`
2261
2261
  count
2262
2262
  status
2263
2263
  createdAt
2264
+ updatedAt
2264
2265
  msg
2265
2266
  }
2266
2267
  }
@@ -2284,6 +2285,8 @@ var GetVersionContentDocument = import_graphql_tag.default`
2284
2285
  system
2285
2286
  history
2286
2287
  }
2288
+ createdAt
2289
+ updatedAt
2287
2290
  }
2288
2291
  }
2289
2292
  }
package/dist/esm/sdk.d.ts CHANGED
@@ -2691,8 +2691,10 @@ export type TuningVersionedDatasetContent = {
2691
2691
  __typename?: 'TuningVersionedDatasetContent';
2692
2692
  /** 训练数据集版本内容的ID */
2693
2693
  ID: Scalars['ID']['output'];
2694
+ createdAt: Scalars['Time']['output'];
2694
2695
  /** 训练数据集版本的具体数据 */
2695
2696
  data: ContentTemplate;
2697
+ updatedAt: Scalars['Time']['output'];
2696
2698
  };
2697
2699
  export type TuningVersionedDatasetFiles = {
2698
2700
  __typename?: 'TuningVersionedDatasetFiles';
@@ -2708,6 +2710,7 @@ export type TuningVersionedDatasetFiles = {
2708
2710
  size?: Maybe<Scalars['Int']['output']>;
2709
2711
  /** 文件导入状态 */
2710
2712
  status?: Maybe<Scalars['Int']['output']>;
2713
+ updatedAt: Scalars['Time']['output'];
2711
2714
  };
2712
2715
  export type TypedObjectReference = {
2713
2716
  __typename?: 'TypedObjectReference';
@@ -7248,6 +7251,7 @@ export type GetVersionQuery = {
7248
7251
  count?: number | null;
7249
7252
  status?: number | null;
7250
7253
  createdAt: any;
7254
+ updatedAt: any;
7251
7255
  msg?: string | null;
7252
7256
  } | {
7253
7257
  __typename?: 'VersionedDataset';
@@ -7318,6 +7322,8 @@ export type GetVersionContentQuery = {
7318
7322
  } | {
7319
7323
  __typename?: 'TuningVersionedDatasetContent';
7320
7324
  ID: string;
7325
+ createdAt: any;
7326
+ updatedAt: any;
7321
7327
  data: {
7322
7328
  __typename?: 'ContentTemplate';
7323
7329
  instruction: string;
package/dist/esm/sdk.js CHANGED
@@ -240,8 +240,8 @@ export var ListRerankersDocument = gql(_templateObject82 || (_templateObject82 =
240
240
  export var GetRerankerDocument = gql(_templateObject83 || (_templateObject83 = _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 "])));
241
241
  export var ListTuningDataSetDocument = gql(_templateObject84 || (_templateObject84 = _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 "])));
242
242
  export var GetTuningDataSetDocument = gql(_templateObject85 || (_templateObject85 = _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 "])));
243
- export var GetVersionDocument = gql(_templateObject86 || (_templateObject86 = _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 "])));
244
- export var GetVersionContentDocument = gql(_templateObject87 || (_templateObject87 = _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 "])));
243
+ export var GetVersionDocument = gql(_templateObject86 || (_templateObject86 = _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 updatedAt\n msg\n }\n }\n }\n }\n }\n}\n "])));
244
+ export var GetVersionContentDocument = gql(_templateObject87 || (_templateObject87 = _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 createdAt\n updatedAt\n }\n }\n }\n }\n}\n "])));
245
245
  export var CreateTuningDataSetDocument = gql(_templateObject88 || (_templateObject88 = _taggedTemplateLiteral(["\n mutation createTuningDataSet($input: CreateTuningDataSetInput!) {\n TuningDataSet {\n createTuningDataSet(input: $input)\n }\n}\n "])));
246
246
  export var UpdateTuningDataSetDocument = gql(_templateObject89 || (_templateObject89 = _taggedTemplateLiteral(["\n mutation updateTuningDataSet($id: String!, $newName: String!) {\n TuningDataSet {\n updateTuningDataSet(id: $id, newName: $newName)\n }\n}\n "])));
247
247
  export var DeleteTuningDataSetDocument = gql(_templateObject90 || (_templateObject90 = _taggedTemplateLiteral(["\n mutation deleteTuningDataSet($id: [String!]) {\n TuningDataSet {\n deleteTuningDataSet(id: $id)\n }\n}\n "])));