@yuntijs/arcadia-bff-sdk 1.2.22 → 1.2.23

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.js CHANGED
@@ -66,7 +66,6 @@ __export(sdk_exports, {
66
66
  GetDatasetDocument: () => GetDatasetDocument,
67
67
  GetDatasourceDocument: () => GetDatasourceDocument,
68
68
  GetEmbedderDocument: () => GetEmbedderDocument,
69
- GetGptDocument: () => GetGptDocument,
70
69
  GetGptStoreDocument: () => GetGptStoreDocument,
71
70
  GetKnowledgeBaseDocument: () => GetKnowledgeBaseDocument,
72
71
  GetLlmDocument: () => GetLlmDocument,
@@ -81,7 +80,6 @@ __export(sdk_exports, {
81
80
  ListDatasetsDocument: () => ListDatasetsDocument,
82
81
  ListDatasourcesDocument: () => ListDatasourcesDocument,
83
82
  ListEmbeddersDocument: () => ListEmbeddersDocument,
84
- ListGpTsDocument: () => ListGpTsDocument,
85
83
  ListGptCategoryDocument: () => ListGptCategoryDocument,
86
84
  ListKnowledgeBasesDocument: () => ListKnowledgeBasesDocument,
87
85
  ListLlMsDocument: () => ListLlMsDocument,
@@ -363,6 +361,27 @@ var ListApplicationPromptDocument = import_graphql_tag.default`
363
361
  }
364
362
  }
365
363
  `;
364
+ var ListGptCategoryDocument = import_graphql_tag.default`
365
+ query listGPTCategory {
366
+ Application {
367
+ listGPTCategory {
368
+ id
369
+ name
370
+ nameEn
371
+ }
372
+ }
373
+ }
374
+ `;
375
+ var GetGptStoreDocument = import_graphql_tag.default`
376
+ query getGPTStore {
377
+ Application {
378
+ getGPTStore {
379
+ url
380
+ public_namespace
381
+ }
382
+ }
383
+ }
384
+ `;
366
385
  var AllDataProcessListByPageDocument = import_graphql_tag.default`
367
386
  query allDataProcessListByPage($input: AllDataProcessListByPageInput!) {
368
387
  dataProcess {
@@ -949,79 +968,6 @@ var GetEmbedderDocument = import_graphql_tag.default`
949
968
  }
950
969
  }
951
970
  `;
952
- var GetGptDocument = import_graphql_tag.default`
953
- query getGPT($name: String!) {
954
- GPT {
955
- getGPT(name: $name) {
956
- name
957
- displayName
958
- description
959
- hot
960
- creator
961
- isRecommended
962
- category
963
- icon
964
- prologue
965
- showRespInfo
966
- showRetrievalInfo
967
- showNextGuide
968
- enableUploadFile
969
- notReadyReasonCode
970
- }
971
- }
972
- }
973
- `;
974
- var ListGpTsDocument = import_graphql_tag.default`
975
- query listGPTs($input: ListGPTInput!) {
976
- GPT {
977
- listGPT(input: $input) {
978
- page
979
- pageSize
980
- totalCount
981
- hasNextPage
982
- nodes {
983
- ... on GPT {
984
- name
985
- displayName
986
- description
987
- hot
988
- creator
989
- isRecommended
990
- category
991
- icon
992
- prologue
993
- showRespInfo
994
- showRetrievalInfo
995
- showNextGuide
996
- enableUploadFile
997
- notReadyReasonCode
998
- }
999
- }
1000
- }
1001
- }
1002
- }
1003
- `;
1004
- var ListGptCategoryDocument = import_graphql_tag.default`
1005
- query listGPTCategory {
1006
- GPT {
1007
- listGPTCategory {
1008
- id
1009
- name
1010
- nameEn
1011
- }
1012
- }
1013
- }
1014
- `;
1015
- var GetGptStoreDocument = import_graphql_tag.default`
1016
- query getGPTStore {
1017
- GPT {
1018
- getGPTStore {
1019
- url
1020
- public_namespace
1021
- }
1022
- }
1023
- }
1024
- `;
1025
971
  var ListKnowledgeBasesDocument = import_graphql_tag.default`
1026
972
  query listKnowledgeBases($input: ListKnowledgeBaseInput!) {
1027
973
  KnowledgeBase {
@@ -2257,6 +2203,12 @@ function getSdk(client, withWrapper = defaultWrapper) {
2257
2203
  listApplicationPrompt(variables, requestHeaders) {
2258
2204
  return withWrapper((wrappedRequestHeaders) => client.request(ListApplicationPromptDocument, variables, { ...requestHeaders, ...wrappedRequestHeaders }), "listApplicationPrompt", "query", variables);
2259
2205
  },
2206
+ listGPTCategory(variables, requestHeaders) {
2207
+ return withWrapper((wrappedRequestHeaders) => client.request(ListGptCategoryDocument, variables, { ...requestHeaders, ...wrappedRequestHeaders }), "listGPTCategory", "query", variables);
2208
+ },
2209
+ getGPTStore(variables, requestHeaders) {
2210
+ return withWrapper((wrappedRequestHeaders) => client.request(GetGptStoreDocument, variables, { ...requestHeaders, ...wrappedRequestHeaders }), "getGPTStore", "query", variables);
2211
+ },
2260
2212
  allDataProcessListByPage(variables, requestHeaders) {
2261
2213
  return withWrapper((wrappedRequestHeaders) => client.request(AllDataProcessListByPageDocument, variables, { ...requestHeaders, ...wrappedRequestHeaders }), "allDataProcessListByPage", "query", variables);
2262
2214
  },
@@ -2335,18 +2287,6 @@ function getSdk(client, withWrapper = defaultWrapper) {
2335
2287
  getEmbedder(variables, requestHeaders) {
2336
2288
  return withWrapper((wrappedRequestHeaders) => client.request(GetEmbedderDocument, variables, { ...requestHeaders, ...wrappedRequestHeaders }), "getEmbedder", "query", variables);
2337
2289
  },
2338
- getGPT(variables, requestHeaders) {
2339
- return withWrapper((wrappedRequestHeaders) => client.request(GetGptDocument, variables, { ...requestHeaders, ...wrappedRequestHeaders }), "getGPT", "query", variables);
2340
- },
2341
- listGPTs(variables, requestHeaders) {
2342
- return withWrapper((wrappedRequestHeaders) => client.request(ListGpTsDocument, variables, { ...requestHeaders, ...wrappedRequestHeaders }), "listGPTs", "query", variables);
2343
- },
2344
- listGPTCategory(variables, requestHeaders) {
2345
- return withWrapper((wrappedRequestHeaders) => client.request(ListGptCategoryDocument, variables, { ...requestHeaders, ...wrappedRequestHeaders }), "listGPTCategory", "query", variables);
2346
- },
2347
- getGPTStore(variables, requestHeaders) {
2348
- return withWrapper((wrappedRequestHeaders) => client.request(GetGptStoreDocument, variables, { ...requestHeaders, ...wrappedRequestHeaders }), "getGPTStore", "query", variables);
2349
- },
2350
2290
  listKnowledgeBases(variables, requestHeaders) {
2351
2291
  return withWrapper((wrappedRequestHeaders) => client.request(ListKnowledgeBasesDocument, variables, { ...requestHeaders, ...wrappedRequestHeaders }), "listKnowledgeBases", "query", variables);
2352
2292
  },
@@ -2468,6 +2408,12 @@ function getSdkWithHooks(client, withWrapper = defaultWrapper) {
2468
2408
  useListApplicationPrompt(variables, config) {
2469
2409
  return (0, import_useSWR.default)(genKey("ListApplicationPrompt", variables), () => sdk.listApplicationPrompt(variables), config);
2470
2410
  },
2411
+ useListGptCategory(variables, config) {
2412
+ return (0, import_useSWR.default)(genKey("ListGptCategory", variables), () => sdk.listGPTCategory(variables), config);
2413
+ },
2414
+ useGetGptStore(variables, config) {
2415
+ return (0, import_useSWR.default)(genKey("GetGptStore", variables), () => sdk.getGPTStore(variables), config);
2416
+ },
2471
2417
  useAllDataProcessListByPage(variables, config) {
2472
2418
  return (0, import_useSWR.default)(genKey("AllDataProcessListByPage", variables), () => sdk.allDataProcessListByPage(variables), config);
2473
2419
  },
@@ -2513,18 +2459,6 @@ function getSdkWithHooks(client, withWrapper = defaultWrapper) {
2513
2459
  useGetEmbedder(variables, config) {
2514
2460
  return (0, import_useSWR.default)(genKey("GetEmbedder", variables), () => sdk.getEmbedder(variables), config);
2515
2461
  },
2516
- useGetGpt(variables, config) {
2517
- return (0, import_useSWR.default)(genKey("GetGpt", variables), () => sdk.getGPT(variables), config);
2518
- },
2519
- useListGpTs(variables, config) {
2520
- return (0, import_useSWR.default)(genKey("ListGpTs", variables), () => sdk.listGPTs(variables), config);
2521
- },
2522
- useListGptCategory(variables, config) {
2523
- return (0, import_useSWR.default)(genKey("ListGptCategory", variables), () => sdk.listGPTCategory(variables), config);
2524
- },
2525
- useGetGptStore(variables, config) {
2526
- return (0, import_useSWR.default)(genKey("GetGptStore", variables), () => sdk.getGPTStore(variables), config);
2527
- },
2528
2462
  useListKnowledgeBases(variables, config) {
2529
2463
  return (0, import_useSWR.default)(genKey("ListKnowledgeBases", variables), () => sdk.listKnowledgeBases(variables), config);
2530
2464
  },
@@ -2617,7 +2551,6 @@ function getSdkWithHooks(client, withWrapper = defaultWrapper) {
2617
2551
  GetDatasetDocument,
2618
2552
  GetDatasourceDocument,
2619
2553
  GetEmbedderDocument,
2620
- GetGptDocument,
2621
2554
  GetGptStoreDocument,
2622
2555
  GetKnowledgeBaseDocument,
2623
2556
  GetLlmDocument,
@@ -2632,7 +2565,6 @@ function getSdkWithHooks(client, withWrapper = defaultWrapper) {
2632
2565
  ListDatasetsDocument,
2633
2566
  ListDatasourcesDocument,
2634
2567
  ListEmbeddersDocument,
2635
- ListGpTsDocument,
2636
2568
  ListGptCategoryDocument,
2637
2569
  ListKnowledgeBasesDocument,
2638
2570
  ListLlMsDocument,
@@ -69,6 +69,12 @@ export declare const initSdk: (options?: SdkOptions) => {
69
69
  page?: import("./sdk").InputMaybe<number> | undefined;
70
70
  size?: import("./sdk").InputMaybe<number> | undefined;
71
71
  }>, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<import("./sdk").ListApplicationPromptQuery>;
72
+ listGPTCategory(variables?: import("./sdk").Exact<{
73
+ [key: string]: never;
74
+ }> | undefined, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<import("./sdk").ListGptCategoryQuery>;
75
+ getGPTStore(variables?: import("./sdk").Exact<{
76
+ [key: string]: never;
77
+ }> | undefined, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<import("./sdk").GetGptStoreQuery>;
72
78
  allDataProcessListByPage(variables: import("./sdk").Exact<{
73
79
  input: import("./sdk").AllDataProcessListByPageInput;
74
80
  }>, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<import("./sdk").AllDataProcessListByPageQuery>;
@@ -154,18 +160,6 @@ export declare const initSdk: (options?: SdkOptions) => {
154
160
  name: string;
155
161
  namespace: string;
156
162
  }>, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<import("./sdk").GetEmbedderQuery>;
157
- getGPT(variables: import("./sdk").Exact<{
158
- name: string;
159
- }>, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<import("./sdk").GetGptQuery>;
160
- listGPTs(variables: import("./sdk").Exact<{
161
- input: import("./sdk").ListGptInput;
162
- }>, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<import("./sdk").ListGpTsQuery>;
163
- listGPTCategory(variables?: import("./sdk").Exact<{
164
- [key: string]: never;
165
- }> | undefined, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<import("./sdk").ListGptCategoryQuery>;
166
- getGPTStore(variables?: import("./sdk").Exact<{
167
- [key: string]: never;
168
- }> | undefined, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<import("./sdk").GetGptStoreQuery>;
169
163
  listKnowledgeBases(variables: import("./sdk").Exact<{
170
164
  input: import("./sdk").ListKnowledgeBaseInput;
171
165
  }>, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<import("./sdk").ListKnowledgeBasesQuery>;
@@ -301,6 +295,12 @@ export declare const initSdkWithHooks: (options?: SdkOptions) => {
301
295
  page?: import("./sdk").InputMaybe<number> | undefined;
302
296
  size?: import("./sdk").InputMaybe<number> | undefined;
303
297
  }>, config?: Partial<import("swr/_internal").PublicConfiguration<import("./sdk").ListApplicationPromptQuery, import("graphql-request/src/types").ClientError, import("swr/_internal").BareFetcher<any>>> | undefined): import("./useSWR").SWRResponsePro<import("./sdk").ListApplicationPromptQuery, import("graphql-request/src/types").ClientError>;
298
+ useListGptCategory(variables?: import("./sdk").Exact<{
299
+ [key: string]: never;
300
+ }> | undefined, config?: Partial<import("swr/_internal").PublicConfiguration<import("./sdk").ListGptCategoryQuery, import("graphql-request/src/types").ClientError, import("swr/_internal").BareFetcher<any>>> | undefined): import("./useSWR").SWRResponsePro<import("./sdk").ListGptCategoryQuery, import("graphql-request/src/types").ClientError>;
301
+ useGetGptStore(variables?: import("./sdk").Exact<{
302
+ [key: string]: never;
303
+ }> | undefined, config?: Partial<import("swr/_internal").PublicConfiguration<import("./sdk").GetGptStoreQuery, import("graphql-request/src/types").ClientError, import("swr/_internal").BareFetcher<any>>> | undefined): import("./useSWR").SWRResponsePro<import("./sdk").GetGptStoreQuery, import("graphql-request/src/types").ClientError>;
304
304
  useAllDataProcessListByPage(variables: import("./sdk").Exact<{
305
305
  input: import("./sdk").AllDataProcessListByPageInput;
306
306
  }>, config?: Partial<import("swr/_internal").PublicConfiguration<import("./sdk").AllDataProcessListByPageQuery, import("graphql-request/src/types").ClientError, import("swr/_internal").BareFetcher<any>>> | undefined): import("./useSWR").SWRResponsePro<import("./sdk").AllDataProcessListByPageQuery, import("graphql-request/src/types").ClientError>;
@@ -353,18 +353,6 @@ export declare const initSdkWithHooks: (options?: SdkOptions) => {
353
353
  name: string;
354
354
  namespace: string;
355
355
  }>, config?: Partial<import("swr/_internal").PublicConfiguration<import("./sdk").GetEmbedderQuery, import("graphql-request/src/types").ClientError, import("swr/_internal").BareFetcher<any>>> | undefined): import("./useSWR").SWRResponsePro<import("./sdk").GetEmbedderQuery, import("graphql-request/src/types").ClientError>;
356
- useGetGpt(variables: import("./sdk").Exact<{
357
- name: string;
358
- }>, config?: Partial<import("swr/_internal").PublicConfiguration<import("./sdk").GetGptQuery, import("graphql-request/src/types").ClientError, import("swr/_internal").BareFetcher<any>>> | undefined): import("./useSWR").SWRResponsePro<import("./sdk").GetGptQuery, import("graphql-request/src/types").ClientError>;
359
- useListGpTs(variables: import("./sdk").Exact<{
360
- input: import("./sdk").ListGptInput;
361
- }>, config?: Partial<import("swr/_internal").PublicConfiguration<import("./sdk").ListGpTsQuery, import("graphql-request/src/types").ClientError, import("swr/_internal").BareFetcher<any>>> | undefined): import("./useSWR").SWRResponsePro<import("./sdk").ListGpTsQuery, import("graphql-request/src/types").ClientError>;
362
- useListGptCategory(variables?: import("./sdk").Exact<{
363
- [key: string]: never;
364
- }> | undefined, config?: Partial<import("swr/_internal").PublicConfiguration<import("./sdk").ListGptCategoryQuery, import("graphql-request/src/types").ClientError, import("swr/_internal").BareFetcher<any>>> | undefined): import("./useSWR").SWRResponsePro<import("./sdk").ListGptCategoryQuery, import("graphql-request/src/types").ClientError>;
365
- useGetGptStore(variables?: import("./sdk").Exact<{
366
- [key: string]: never;
367
- }> | undefined, config?: Partial<import("swr/_internal").PublicConfiguration<import("./sdk").GetGptStoreQuery, import("graphql-request/src/types").ClientError, import("swr/_internal").BareFetcher<any>>> | undefined): import("./useSWR").SWRResponsePro<import("./sdk").GetGptStoreQuery, import("graphql-request/src/types").ClientError>;
368
356
  useListKnowledgeBases(variables: import("./sdk").Exact<{
369
357
  input: import("./sdk").ListKnowledgeBaseInput;
370
358
  }>, config?: Partial<import("swr/_internal").PublicConfiguration<import("./sdk").ListKnowledgeBasesQuery, import("graphql-request/src/types").ClientError, import("swr/_internal").BareFetcher<any>>> | undefined): import("./useSWR").SWRResponsePro<import("./sdk").ListKnowledgeBasesQuery, import("graphql-request/src/types").ClientError>;
@@ -464,6 +452,12 @@ export declare const initSdkWithHooks: (options?: SdkOptions) => {
464
452
  page?: import("./sdk").InputMaybe<number> | undefined;
465
453
  size?: import("./sdk").InputMaybe<number> | undefined;
466
454
  }>, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<import("./sdk").ListApplicationPromptQuery>;
455
+ listGPTCategory(variables?: import("./sdk").Exact<{
456
+ [key: string]: never;
457
+ }> | undefined, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<import("./sdk").ListGptCategoryQuery>;
458
+ getGPTStore(variables?: import("./sdk").Exact<{
459
+ [key: string]: never;
460
+ }> | undefined, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<import("./sdk").GetGptStoreQuery>;
467
461
  allDataProcessListByPage(variables: import("./sdk").Exact<{
468
462
  input: import("./sdk").AllDataProcessListByPageInput;
469
463
  }>, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<import("./sdk").AllDataProcessListByPageQuery>;
@@ -549,18 +543,6 @@ export declare const initSdkWithHooks: (options?: SdkOptions) => {
549
543
  name: string;
550
544
  namespace: string;
551
545
  }>, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<import("./sdk").GetEmbedderQuery>;
552
- getGPT(variables: import("./sdk").Exact<{
553
- name: string;
554
- }>, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<import("./sdk").GetGptQuery>;
555
- listGPTs(variables: import("./sdk").Exact<{
556
- input: import("./sdk").ListGptInput;
557
- }>, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<import("./sdk").ListGpTsQuery>;
558
- listGPTCategory(variables?: import("./sdk").Exact<{
559
- [key: string]: never;
560
- }> | undefined, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<import("./sdk").ListGptCategoryQuery>;
561
- getGPTStore(variables?: import("./sdk").Exact<{
562
- [key: string]: never;
563
- }> | undefined, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<import("./sdk").GetGptStoreQuery>;
564
546
  listKnowledgeBases(variables: import("./sdk").Exact<{
565
547
  input: import("./sdk").ListKnowledgeBaseInput;
566
548
  }>, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<import("./sdk").ListKnowledgeBasesQuery>;
@@ -696,6 +678,12 @@ export declare const useSdk: (options?: SdkOptions) => {
696
678
  page?: import("./sdk").InputMaybe<number> | undefined;
697
679
  size?: import("./sdk").InputMaybe<number> | undefined;
698
680
  }>, config?: Partial<import("swr/_internal").PublicConfiguration<import("./sdk").ListApplicationPromptQuery, import("graphql-request/src/types").ClientError, import("swr/_internal").BareFetcher<any>>> | undefined): import("./useSWR").SWRResponsePro<import("./sdk").ListApplicationPromptQuery, import("graphql-request/src/types").ClientError>;
681
+ useListGptCategory(variables?: import("./sdk").Exact<{
682
+ [key: string]: never;
683
+ }> | undefined, config?: Partial<import("swr/_internal").PublicConfiguration<import("./sdk").ListGptCategoryQuery, import("graphql-request/src/types").ClientError, import("swr/_internal").BareFetcher<any>>> | undefined): import("./useSWR").SWRResponsePro<import("./sdk").ListGptCategoryQuery, import("graphql-request/src/types").ClientError>;
684
+ useGetGptStore(variables?: import("./sdk").Exact<{
685
+ [key: string]: never;
686
+ }> | undefined, config?: Partial<import("swr/_internal").PublicConfiguration<import("./sdk").GetGptStoreQuery, import("graphql-request/src/types").ClientError, import("swr/_internal").BareFetcher<any>>> | undefined): import("./useSWR").SWRResponsePro<import("./sdk").GetGptStoreQuery, import("graphql-request/src/types").ClientError>;
699
687
  useAllDataProcessListByPage(variables: import("./sdk").Exact<{
700
688
  input: import("./sdk").AllDataProcessListByPageInput;
701
689
  }>, config?: Partial<import("swr/_internal").PublicConfiguration<import("./sdk").AllDataProcessListByPageQuery, import("graphql-request/src/types").ClientError, import("swr/_internal").BareFetcher<any>>> | undefined): import("./useSWR").SWRResponsePro<import("./sdk").AllDataProcessListByPageQuery, import("graphql-request/src/types").ClientError>;
@@ -748,18 +736,6 @@ export declare const useSdk: (options?: SdkOptions) => {
748
736
  name: string;
749
737
  namespace: string;
750
738
  }>, config?: Partial<import("swr/_internal").PublicConfiguration<import("./sdk").GetEmbedderQuery, import("graphql-request/src/types").ClientError, import("swr/_internal").BareFetcher<any>>> | undefined): import("./useSWR").SWRResponsePro<import("./sdk").GetEmbedderQuery, import("graphql-request/src/types").ClientError>;
751
- useGetGpt(variables: import("./sdk").Exact<{
752
- name: string;
753
- }>, config?: Partial<import("swr/_internal").PublicConfiguration<import("./sdk").GetGptQuery, import("graphql-request/src/types").ClientError, import("swr/_internal").BareFetcher<any>>> | undefined): import("./useSWR").SWRResponsePro<import("./sdk").GetGptQuery, import("graphql-request/src/types").ClientError>;
754
- useListGpTs(variables: import("./sdk").Exact<{
755
- input: import("./sdk").ListGptInput;
756
- }>, config?: Partial<import("swr/_internal").PublicConfiguration<import("./sdk").ListGpTsQuery, import("graphql-request/src/types").ClientError, import("swr/_internal").BareFetcher<any>>> | undefined): import("./useSWR").SWRResponsePro<import("./sdk").ListGpTsQuery, import("graphql-request/src/types").ClientError>;
757
- useListGptCategory(variables?: import("./sdk").Exact<{
758
- [key: string]: never;
759
- }> | undefined, config?: Partial<import("swr/_internal").PublicConfiguration<import("./sdk").ListGptCategoryQuery, import("graphql-request/src/types").ClientError, import("swr/_internal").BareFetcher<any>>> | undefined): import("./useSWR").SWRResponsePro<import("./sdk").ListGptCategoryQuery, import("graphql-request/src/types").ClientError>;
760
- useGetGptStore(variables?: import("./sdk").Exact<{
761
- [key: string]: never;
762
- }> | undefined, config?: Partial<import("swr/_internal").PublicConfiguration<import("./sdk").GetGptStoreQuery, import("graphql-request/src/types").ClientError, import("swr/_internal").BareFetcher<any>>> | undefined): import("./useSWR").SWRResponsePro<import("./sdk").GetGptStoreQuery, import("graphql-request/src/types").ClientError>;
763
739
  useListKnowledgeBases(variables: import("./sdk").Exact<{
764
740
  input: import("./sdk").ListKnowledgeBaseInput;
765
741
  }>, config?: Partial<import("swr/_internal").PublicConfiguration<import("./sdk").ListKnowledgeBasesQuery, import("graphql-request/src/types").ClientError, import("swr/_internal").BareFetcher<any>>> | undefined): import("./useSWR").SWRResponsePro<import("./sdk").ListKnowledgeBasesQuery, import("graphql-request/src/types").ClientError>;
@@ -859,6 +835,12 @@ export declare const useSdk: (options?: SdkOptions) => {
859
835
  page?: import("./sdk").InputMaybe<number> | undefined;
860
836
  size?: import("./sdk").InputMaybe<number> | undefined;
861
837
  }>, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<import("./sdk").ListApplicationPromptQuery>;
838
+ listGPTCategory(variables?: import("./sdk").Exact<{
839
+ [key: string]: never;
840
+ }> | undefined, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<import("./sdk").ListGptCategoryQuery>;
841
+ getGPTStore(variables?: import("./sdk").Exact<{
842
+ [key: string]: never;
843
+ }> | undefined, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<import("./sdk").GetGptStoreQuery>;
862
844
  allDataProcessListByPage(variables: import("./sdk").Exact<{
863
845
  input: import("./sdk").AllDataProcessListByPageInput;
864
846
  }>, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<import("./sdk").AllDataProcessListByPageQuery>;
@@ -944,18 +926,6 @@ export declare const useSdk: (options?: SdkOptions) => {
944
926
  name: string;
945
927
  namespace: string;
946
928
  }>, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<import("./sdk").GetEmbedderQuery>;
947
- getGPT(variables: import("./sdk").Exact<{
948
- name: string;
949
- }>, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<import("./sdk").GetGptQuery>;
950
- listGPTs(variables: import("./sdk").Exact<{
951
- input: import("./sdk").ListGptInput;
952
- }>, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<import("./sdk").ListGpTsQuery>;
953
- listGPTCategory(variables?: import("./sdk").Exact<{
954
- [key: string]: never;
955
- }> | undefined, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<import("./sdk").ListGptCategoryQuery>;
956
- getGPTStore(variables?: import("./sdk").Exact<{
957
- [key: string]: never;
958
- }> | undefined, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<import("./sdk").GetGptStoreQuery>;
959
929
  listKnowledgeBases(variables: import("./sdk").Exact<{
960
930
  input: import("./sdk").ListKnowledgeBaseInput;
961
931
  }>, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<import("./sdk").ListKnowledgeBasesQuery>;
@@ -23,6 +23,12 @@ export declare const sdk: {
23
23
  page?: import("./sdk").InputMaybe<number> | undefined;
24
24
  size?: import("./sdk").InputMaybe<number> | undefined;
25
25
  }>, config?: Partial<import("swr/_internal").PublicConfiguration<import("./sdk").ListApplicationPromptQuery, import("graphql-request/src/types").ClientError, import("swr/_internal").BareFetcher<any>>> | undefined): import("./useSWR").SWRResponsePro<import("./sdk").ListApplicationPromptQuery, import("graphql-request/src/types").ClientError>;
26
+ useListGptCategory(variables?: import("./sdk").Exact<{
27
+ [key: string]: never;
28
+ }> | undefined, config?: Partial<import("swr/_internal").PublicConfiguration<import("./sdk").ListGptCategoryQuery, import("graphql-request/src/types").ClientError, import("swr/_internal").BareFetcher<any>>> | undefined): import("./useSWR").SWRResponsePro<import("./sdk").ListGptCategoryQuery, import("graphql-request/src/types").ClientError>;
29
+ useGetGptStore(variables?: import("./sdk").Exact<{
30
+ [key: string]: never;
31
+ }> | undefined, config?: Partial<import("swr/_internal").PublicConfiguration<import("./sdk").GetGptStoreQuery, import("graphql-request/src/types").ClientError, import("swr/_internal").BareFetcher<any>>> | undefined): import("./useSWR").SWRResponsePro<import("./sdk").GetGptStoreQuery, import("graphql-request/src/types").ClientError>;
26
32
  useAllDataProcessListByPage(variables: import("./sdk").Exact<{
27
33
  input: import("./sdk").AllDataProcessListByPageInput;
28
34
  }>, config?: Partial<import("swr/_internal").PublicConfiguration<import("./sdk").AllDataProcessListByPageQuery, import("graphql-request/src/types").ClientError, import("swr/_internal").BareFetcher<any>>> | undefined): import("./useSWR").SWRResponsePro<import("./sdk").AllDataProcessListByPageQuery, import("graphql-request/src/types").ClientError>;
@@ -75,18 +81,6 @@ export declare const sdk: {
75
81
  name: string;
76
82
  namespace: string;
77
83
  }>, config?: Partial<import("swr/_internal").PublicConfiguration<import("./sdk").GetEmbedderQuery, import("graphql-request/src/types").ClientError, import("swr/_internal").BareFetcher<any>>> | undefined): import("./useSWR").SWRResponsePro<import("./sdk").GetEmbedderQuery, import("graphql-request/src/types").ClientError>;
78
- useGetGpt(variables: import("./sdk").Exact<{
79
- name: string;
80
- }>, config?: Partial<import("swr/_internal").PublicConfiguration<import("./sdk").GetGptQuery, import("graphql-request/src/types").ClientError, import("swr/_internal").BareFetcher<any>>> | undefined): import("./useSWR").SWRResponsePro<import("./sdk").GetGptQuery, import("graphql-request/src/types").ClientError>;
81
- useListGpTs(variables: import("./sdk").Exact<{
82
- input: import("./sdk").ListGptInput;
83
- }>, config?: Partial<import("swr/_internal").PublicConfiguration<import("./sdk").ListGpTsQuery, import("graphql-request/src/types").ClientError, import("swr/_internal").BareFetcher<any>>> | undefined): import("./useSWR").SWRResponsePro<import("./sdk").ListGpTsQuery, import("graphql-request/src/types").ClientError>;
84
- useListGptCategory(variables?: import("./sdk").Exact<{
85
- [key: string]: never;
86
- }> | undefined, config?: Partial<import("swr/_internal").PublicConfiguration<import("./sdk").ListGptCategoryQuery, import("graphql-request/src/types").ClientError, import("swr/_internal").BareFetcher<any>>> | undefined): import("./useSWR").SWRResponsePro<import("./sdk").ListGptCategoryQuery, import("graphql-request/src/types").ClientError>;
87
- useGetGptStore(variables?: import("./sdk").Exact<{
88
- [key: string]: never;
89
- }> | undefined, config?: Partial<import("swr/_internal").PublicConfiguration<import("./sdk").GetGptStoreQuery, import("graphql-request/src/types").ClientError, import("swr/_internal").BareFetcher<any>>> | undefined): import("./useSWR").SWRResponsePro<import("./sdk").GetGptStoreQuery, import("graphql-request/src/types").ClientError>;
90
84
  useListKnowledgeBases(variables: import("./sdk").Exact<{
91
85
  input: import("./sdk").ListKnowledgeBaseInput;
92
86
  }>, config?: Partial<import("swr/_internal").PublicConfiguration<import("./sdk").ListKnowledgeBasesQuery, import("graphql-request/src/types").ClientError, import("swr/_internal").BareFetcher<any>>> | undefined): import("./useSWR").SWRResponsePro<import("./sdk").ListKnowledgeBasesQuery, import("graphql-request/src/types").ClientError>;
@@ -186,6 +180,12 @@ export declare const sdk: {
186
180
  page?: import("./sdk").InputMaybe<number> | undefined;
187
181
  size?: import("./sdk").InputMaybe<number> | undefined;
188
182
  }>, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<import("./sdk").ListApplicationPromptQuery>;
183
+ listGPTCategory(variables?: import("./sdk").Exact<{
184
+ [key: string]: never;
185
+ }> | undefined, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<import("./sdk").ListGptCategoryQuery>;
186
+ getGPTStore(variables?: import("./sdk").Exact<{
187
+ [key: string]: never;
188
+ }> | undefined, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<import("./sdk").GetGptStoreQuery>;
189
189
  allDataProcessListByPage(variables: import("./sdk").Exact<{
190
190
  input: import("./sdk").AllDataProcessListByPageInput;
191
191
  }>, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<import("./sdk").AllDataProcessListByPageQuery>;
@@ -271,18 +271,6 @@ export declare const sdk: {
271
271
  name: string;
272
272
  namespace: string;
273
273
  }>, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<import("./sdk").GetEmbedderQuery>;
274
- getGPT(variables: import("./sdk").Exact<{
275
- name: string;
276
- }>, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<import("./sdk").GetGptQuery>;
277
- listGPTs(variables: import("./sdk").Exact<{
278
- input: import("./sdk").ListGptInput;
279
- }>, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<import("./sdk").ListGpTsQuery>;
280
- listGPTCategory(variables?: import("./sdk").Exact<{
281
- [key: string]: never;
282
- }> | undefined, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<import("./sdk").ListGptCategoryQuery>;
283
- getGPTStore(variables?: import("./sdk").Exact<{
284
- [key: string]: never;
285
- }> | undefined, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<import("./sdk").GetGptStoreQuery>;
286
274
  listKnowledgeBases(variables: import("./sdk").Exact<{
287
275
  input: import("./sdk").ListKnowledgeBaseInput;
288
276
  }>, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<import("./sdk").ListKnowledgeBasesQuery>;
@@ -461,6 +449,12 @@ export declare const initSdk: (options?: SdkOptions) => {
461
449
  page?: import("./sdk").InputMaybe<number> | undefined;
462
450
  size?: import("./sdk").InputMaybe<number> | undefined;
463
451
  }>, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<import("./sdk").ListApplicationPromptQuery>;
452
+ listGPTCategory(variables?: import("./sdk").Exact<{
453
+ [key: string]: never;
454
+ }> | undefined, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<import("./sdk").ListGptCategoryQuery>;
455
+ getGPTStore(variables?: import("./sdk").Exact<{
456
+ [key: string]: never;
457
+ }> | undefined, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<import("./sdk").GetGptStoreQuery>;
464
458
  allDataProcessListByPage(variables: import("./sdk").Exact<{
465
459
  input: import("./sdk").AllDataProcessListByPageInput;
466
460
  }>, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<import("./sdk").AllDataProcessListByPageQuery>;
@@ -546,18 +540,6 @@ export declare const initSdk: (options?: SdkOptions) => {
546
540
  name: string;
547
541
  namespace: string;
548
542
  }>, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<import("./sdk").GetEmbedderQuery>;
549
- getGPT(variables: import("./sdk").Exact<{
550
- name: string;
551
- }>, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<import("./sdk").GetGptQuery>;
552
- listGPTs(variables: import("./sdk").Exact<{
553
- input: import("./sdk").ListGptInput;
554
- }>, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<import("./sdk").ListGpTsQuery>;
555
- listGPTCategory(variables?: import("./sdk").Exact<{
556
- [key: string]: never;
557
- }> | undefined, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<import("./sdk").ListGptCategoryQuery>;
558
- getGPTStore(variables?: import("./sdk").Exact<{
559
- [key: string]: never;
560
- }> | undefined, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<import("./sdk").GetGptStoreQuery>;
561
543
  listKnowledgeBases(variables: import("./sdk").Exact<{
562
544
  input: import("./sdk").ListKnowledgeBaseInput;
563
545
  }>, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<import("./sdk").ListKnowledgeBasesQuery>;
@@ -693,6 +675,12 @@ export declare const initSdkWithHooks: (options?: SdkOptions) => {
693
675
  page?: import("./sdk").InputMaybe<number> | undefined;
694
676
  size?: import("./sdk").InputMaybe<number> | undefined;
695
677
  }>, config?: Partial<import("swr/_internal").PublicConfiguration<import("./sdk").ListApplicationPromptQuery, import("graphql-request/src/types").ClientError, import("swr/_internal").BareFetcher<any>>> | undefined): import("./useSWR").SWRResponsePro<import("./sdk").ListApplicationPromptQuery, import("graphql-request/src/types").ClientError>;
678
+ useListGptCategory(variables?: import("./sdk").Exact<{
679
+ [key: string]: never;
680
+ }> | undefined, config?: Partial<import("swr/_internal").PublicConfiguration<import("./sdk").ListGptCategoryQuery, import("graphql-request/src/types").ClientError, import("swr/_internal").BareFetcher<any>>> | undefined): import("./useSWR").SWRResponsePro<import("./sdk").ListGptCategoryQuery, import("graphql-request/src/types").ClientError>;
681
+ useGetGptStore(variables?: import("./sdk").Exact<{
682
+ [key: string]: never;
683
+ }> | undefined, config?: Partial<import("swr/_internal").PublicConfiguration<import("./sdk").GetGptStoreQuery, import("graphql-request/src/types").ClientError, import("swr/_internal").BareFetcher<any>>> | undefined): import("./useSWR").SWRResponsePro<import("./sdk").GetGptStoreQuery, import("graphql-request/src/types").ClientError>;
696
684
  useAllDataProcessListByPage(variables: import("./sdk").Exact<{
697
685
  input: import("./sdk").AllDataProcessListByPageInput;
698
686
  }>, config?: Partial<import("swr/_internal").PublicConfiguration<import("./sdk").AllDataProcessListByPageQuery, import("graphql-request/src/types").ClientError, import("swr/_internal").BareFetcher<any>>> | undefined): import("./useSWR").SWRResponsePro<import("./sdk").AllDataProcessListByPageQuery, import("graphql-request/src/types").ClientError>;
@@ -745,18 +733,6 @@ export declare const initSdkWithHooks: (options?: SdkOptions) => {
745
733
  name: string;
746
734
  namespace: string;
747
735
  }>, config?: Partial<import("swr/_internal").PublicConfiguration<import("./sdk").GetEmbedderQuery, import("graphql-request/src/types").ClientError, import("swr/_internal").BareFetcher<any>>> | undefined): import("./useSWR").SWRResponsePro<import("./sdk").GetEmbedderQuery, import("graphql-request/src/types").ClientError>;
748
- useGetGpt(variables: import("./sdk").Exact<{
749
- name: string;
750
- }>, config?: Partial<import("swr/_internal").PublicConfiguration<import("./sdk").GetGptQuery, import("graphql-request/src/types").ClientError, import("swr/_internal").BareFetcher<any>>> | undefined): import("./useSWR").SWRResponsePro<import("./sdk").GetGptQuery, import("graphql-request/src/types").ClientError>;
751
- useListGpTs(variables: import("./sdk").Exact<{
752
- input: import("./sdk").ListGptInput;
753
- }>, config?: Partial<import("swr/_internal").PublicConfiguration<import("./sdk").ListGpTsQuery, import("graphql-request/src/types").ClientError, import("swr/_internal").BareFetcher<any>>> | undefined): import("./useSWR").SWRResponsePro<import("./sdk").ListGpTsQuery, import("graphql-request/src/types").ClientError>;
754
- useListGptCategory(variables?: import("./sdk").Exact<{
755
- [key: string]: never;
756
- }> | undefined, config?: Partial<import("swr/_internal").PublicConfiguration<import("./sdk").ListGptCategoryQuery, import("graphql-request/src/types").ClientError, import("swr/_internal").BareFetcher<any>>> | undefined): import("./useSWR").SWRResponsePro<import("./sdk").ListGptCategoryQuery, import("graphql-request/src/types").ClientError>;
757
- useGetGptStore(variables?: import("./sdk").Exact<{
758
- [key: string]: never;
759
- }> | undefined, config?: Partial<import("swr/_internal").PublicConfiguration<import("./sdk").GetGptStoreQuery, import("graphql-request/src/types").ClientError, import("swr/_internal").BareFetcher<any>>> | undefined): import("./useSWR").SWRResponsePro<import("./sdk").GetGptStoreQuery, import("graphql-request/src/types").ClientError>;
760
736
  useListKnowledgeBases(variables: import("./sdk").Exact<{
761
737
  input: import("./sdk").ListKnowledgeBaseInput;
762
738
  }>, config?: Partial<import("swr/_internal").PublicConfiguration<import("./sdk").ListKnowledgeBasesQuery, import("graphql-request/src/types").ClientError, import("swr/_internal").BareFetcher<any>>> | undefined): import("./useSWR").SWRResponsePro<import("./sdk").ListKnowledgeBasesQuery, import("graphql-request/src/types").ClientError>;
@@ -856,6 +832,12 @@ export declare const initSdkWithHooks: (options?: SdkOptions) => {
856
832
  page?: import("./sdk").InputMaybe<number> | undefined;
857
833
  size?: import("./sdk").InputMaybe<number> | undefined;
858
834
  }>, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<import("./sdk").ListApplicationPromptQuery>;
835
+ listGPTCategory(variables?: import("./sdk").Exact<{
836
+ [key: string]: never;
837
+ }> | undefined, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<import("./sdk").ListGptCategoryQuery>;
838
+ getGPTStore(variables?: import("./sdk").Exact<{
839
+ [key: string]: never;
840
+ }> | undefined, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<import("./sdk").GetGptStoreQuery>;
859
841
  allDataProcessListByPage(variables: import("./sdk").Exact<{
860
842
  input: import("./sdk").AllDataProcessListByPageInput;
861
843
  }>, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<import("./sdk").AllDataProcessListByPageQuery>;
@@ -941,18 +923,6 @@ export declare const initSdkWithHooks: (options?: SdkOptions) => {
941
923
  name: string;
942
924
  namespace: string;
943
925
  }>, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<import("./sdk").GetEmbedderQuery>;
944
- getGPT(variables: import("./sdk").Exact<{
945
- name: string;
946
- }>, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<import("./sdk").GetGptQuery>;
947
- listGPTs(variables: import("./sdk").Exact<{
948
- input: import("./sdk").ListGptInput;
949
- }>, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<import("./sdk").ListGpTsQuery>;
950
- listGPTCategory(variables?: import("./sdk").Exact<{
951
- [key: string]: never;
952
- }> | undefined, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<import("./sdk").ListGptCategoryQuery>;
953
- getGPTStore(variables?: import("./sdk").Exact<{
954
- [key: string]: never;
955
- }> | undefined, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<import("./sdk").GetGptStoreQuery>;
956
926
  listKnowledgeBases(variables: import("./sdk").Exact<{
957
927
  input: import("./sdk").ListKnowledgeBaseInput;
958
928
  }>, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<import("./sdk").ListKnowledgeBasesQuery>;
@@ -1088,6 +1058,12 @@ export declare const useSdk: (options?: SdkOptions) => {
1088
1058
  page?: import("./sdk").InputMaybe<number> | undefined;
1089
1059
  size?: import("./sdk").InputMaybe<number> | undefined;
1090
1060
  }>, config?: Partial<import("swr/_internal").PublicConfiguration<import("./sdk").ListApplicationPromptQuery, import("graphql-request/src/types").ClientError, import("swr/_internal").BareFetcher<any>>> | undefined): import("./useSWR").SWRResponsePro<import("./sdk").ListApplicationPromptQuery, import("graphql-request/src/types").ClientError>;
1061
+ useListGptCategory(variables?: import("./sdk").Exact<{
1062
+ [key: string]: never;
1063
+ }> | undefined, config?: Partial<import("swr/_internal").PublicConfiguration<import("./sdk").ListGptCategoryQuery, import("graphql-request/src/types").ClientError, import("swr/_internal").BareFetcher<any>>> | undefined): import("./useSWR").SWRResponsePro<import("./sdk").ListGptCategoryQuery, import("graphql-request/src/types").ClientError>;
1064
+ useGetGptStore(variables?: import("./sdk").Exact<{
1065
+ [key: string]: never;
1066
+ }> | undefined, config?: Partial<import("swr/_internal").PublicConfiguration<import("./sdk").GetGptStoreQuery, import("graphql-request/src/types").ClientError, import("swr/_internal").BareFetcher<any>>> | undefined): import("./useSWR").SWRResponsePro<import("./sdk").GetGptStoreQuery, import("graphql-request/src/types").ClientError>;
1091
1067
  useAllDataProcessListByPage(variables: import("./sdk").Exact<{
1092
1068
  input: import("./sdk").AllDataProcessListByPageInput;
1093
1069
  }>, config?: Partial<import("swr/_internal").PublicConfiguration<import("./sdk").AllDataProcessListByPageQuery, import("graphql-request/src/types").ClientError, import("swr/_internal").BareFetcher<any>>> | undefined): import("./useSWR").SWRResponsePro<import("./sdk").AllDataProcessListByPageQuery, import("graphql-request/src/types").ClientError>;
@@ -1140,18 +1116,6 @@ export declare const useSdk: (options?: SdkOptions) => {
1140
1116
  name: string;
1141
1117
  namespace: string;
1142
1118
  }>, config?: Partial<import("swr/_internal").PublicConfiguration<import("./sdk").GetEmbedderQuery, import("graphql-request/src/types").ClientError, import("swr/_internal").BareFetcher<any>>> | undefined): import("./useSWR").SWRResponsePro<import("./sdk").GetEmbedderQuery, import("graphql-request/src/types").ClientError>;
1143
- useGetGpt(variables: import("./sdk").Exact<{
1144
- name: string;
1145
- }>, config?: Partial<import("swr/_internal").PublicConfiguration<import("./sdk").GetGptQuery, import("graphql-request/src/types").ClientError, import("swr/_internal").BareFetcher<any>>> | undefined): import("./useSWR").SWRResponsePro<import("./sdk").GetGptQuery, import("graphql-request/src/types").ClientError>;
1146
- useListGpTs(variables: import("./sdk").Exact<{
1147
- input: import("./sdk").ListGptInput;
1148
- }>, config?: Partial<import("swr/_internal").PublicConfiguration<import("./sdk").ListGpTsQuery, import("graphql-request/src/types").ClientError, import("swr/_internal").BareFetcher<any>>> | undefined): import("./useSWR").SWRResponsePro<import("./sdk").ListGpTsQuery, import("graphql-request/src/types").ClientError>;
1149
- useListGptCategory(variables?: import("./sdk").Exact<{
1150
- [key: string]: never;
1151
- }> | undefined, config?: Partial<import("swr/_internal").PublicConfiguration<import("./sdk").ListGptCategoryQuery, import("graphql-request/src/types").ClientError, import("swr/_internal").BareFetcher<any>>> | undefined): import("./useSWR").SWRResponsePro<import("./sdk").ListGptCategoryQuery, import("graphql-request/src/types").ClientError>;
1152
- useGetGptStore(variables?: import("./sdk").Exact<{
1153
- [key: string]: never;
1154
- }> | undefined, config?: Partial<import("swr/_internal").PublicConfiguration<import("./sdk").GetGptStoreQuery, import("graphql-request/src/types").ClientError, import("swr/_internal").BareFetcher<any>>> | undefined): import("./useSWR").SWRResponsePro<import("./sdk").GetGptStoreQuery, import("graphql-request/src/types").ClientError>;
1155
1119
  useListKnowledgeBases(variables: import("./sdk").Exact<{
1156
1120
  input: import("./sdk").ListKnowledgeBaseInput;
1157
1121
  }>, config?: Partial<import("swr/_internal").PublicConfiguration<import("./sdk").ListKnowledgeBasesQuery, import("graphql-request/src/types").ClientError, import("swr/_internal").BareFetcher<any>>> | undefined): import("./useSWR").SWRResponsePro<import("./sdk").ListKnowledgeBasesQuery, import("graphql-request/src/types").ClientError>;
@@ -1251,6 +1215,12 @@ export declare const useSdk: (options?: SdkOptions) => {
1251
1215
  page?: import("./sdk").InputMaybe<number> | undefined;
1252
1216
  size?: import("./sdk").InputMaybe<number> | undefined;
1253
1217
  }>, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<import("./sdk").ListApplicationPromptQuery>;
1218
+ listGPTCategory(variables?: import("./sdk").Exact<{
1219
+ [key: string]: never;
1220
+ }> | undefined, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<import("./sdk").ListGptCategoryQuery>;
1221
+ getGPTStore(variables?: import("./sdk").Exact<{
1222
+ [key: string]: never;
1223
+ }> | undefined, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<import("./sdk").GetGptStoreQuery>;
1254
1224
  allDataProcessListByPage(variables: import("./sdk").Exact<{
1255
1225
  input: import("./sdk").AllDataProcessListByPageInput;
1256
1226
  }>, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<import("./sdk").AllDataProcessListByPageQuery>;
@@ -1336,18 +1306,6 @@ export declare const useSdk: (options?: SdkOptions) => {
1336
1306
  name: string;
1337
1307
  namespace: string;
1338
1308
  }>, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<import("./sdk").GetEmbedderQuery>;
1339
- getGPT(variables: import("./sdk").Exact<{
1340
- name: string;
1341
- }>, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<import("./sdk").GetGptQuery>;
1342
- listGPTs(variables: import("./sdk").Exact<{
1343
- input: import("./sdk").ListGptInput;
1344
- }>, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<import("./sdk").ListGpTsQuery>;
1345
- listGPTCategory(variables?: import("./sdk").Exact<{
1346
- [key: string]: never;
1347
- }> | undefined, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<import("./sdk").ListGptCategoryQuery>;
1348
- getGPTStore(variables?: import("./sdk").Exact<{
1349
- [key: string]: never;
1350
- }> | undefined, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<import("./sdk").GetGptStoreQuery>;
1351
1309
  listKnowledgeBases(variables: import("./sdk").Exact<{
1352
1310
  input: import("./sdk").ListKnowledgeBaseInput;
1353
1311
  }>, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<import("./sdk").ListKnowledgeBasesQuery>;