@yuntijs/arcadia-bff-sdk 1.2.42 → 1.2.43
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/index.d.ts +21 -72
- package/dist/cjs/sdk.d.ts +69 -413
- package/dist/cjs/sdk.js +29 -133
- package/dist/cjs/taro.d.ts +15 -54
- package/dist/esm/index.d.ts +21 -72
- package/dist/esm/sdk.d.ts +69 -413
- package/dist/esm/sdk.js +63 -88
- package/dist/esm/taro.d.ts +15 -54
- package/dist/umd/index.min.js +1 -1
- package/dist/umd/index.min.js.map +1 -1
- package/package.json +1 -1
package/dist/cjs/index.d.ts
CHANGED
|
@@ -125,6 +125,9 @@ export declare const sdk: {
|
|
|
125
125
|
useListModelServices(variables?: import("./sdk").Exact<{
|
|
126
126
|
input?: import("./sdk").InputMaybe<import("./sdk").ListModelServiceInput> | undefined;
|
|
127
127
|
}> | undefined, config?: Partial<import("swr/_internal").PublicConfiguration<import("./sdk").ListModelServicesQuery, import("graphql-request/src/types").ClientError, import("swr/_internal").BareFetcher<any>>> | undefined): import("./useSWR").SWRResponsePro<import("./sdk").ListModelServicesQuery, import("graphql-request/src/types").ClientError>;
|
|
128
|
+
useListModelServiceProviders(variables?: import("./sdk").Exact<{
|
|
129
|
+
[key: string]: never;
|
|
130
|
+
}> | undefined, config?: Partial<import("swr/_internal").PublicConfiguration<import("./sdk").ListModelServiceProvidersQuery, import("graphql-request/src/types").ClientError, import("swr/_internal").BareFetcher<any>>> | undefined): import("./useSWR").SWRResponsePro<import("./sdk").ListModelServiceProvidersQuery, import("graphql-request/src/types").ClientError>;
|
|
128
131
|
useCheckModelService(variables: import("./sdk").Exact<{
|
|
129
132
|
input: import("./sdk").CreateModelServiceInput;
|
|
130
133
|
}>, config?: Partial<import("swr/_internal").PublicConfiguration<import("./sdk").CheckModelServiceQuery, import("graphql-request/src/types").ClientError, import("swr/_internal").BareFetcher<any>>> | undefined): import("./useSWR").SWRResponsePro<import("./sdk").CheckModelServiceQuery, import("graphql-request/src/types").ClientError>;
|
|
@@ -319,15 +322,6 @@ export declare const sdk: {
|
|
|
319
322
|
checkDatasource(variables: import("./sdk").Exact<{
|
|
320
323
|
input: import("./sdk").CreateDatasourceInput;
|
|
321
324
|
}>, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<import("./sdk").CheckDatasourceQuery>;
|
|
322
|
-
createEmbedder(variables: import("./sdk").Exact<{
|
|
323
|
-
input: import("./sdk").CreateEmbedderInput;
|
|
324
|
-
}>, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<import("./sdk").CreateEmbedderMutation>;
|
|
325
|
-
updateEmbedder(variables?: import("./sdk").Exact<{
|
|
326
|
-
input?: import("./sdk").InputMaybe<import("./sdk").UpdateEmbedderInput> | undefined;
|
|
327
|
-
}> | undefined, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<import("./sdk").UpdateEmbedderMutation>;
|
|
328
|
-
deleteEmbedders(variables: import("./sdk").Exact<{
|
|
329
|
-
input: import("./sdk").DeleteCommonInput;
|
|
330
|
-
}>, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<import("./sdk").DeleteEmbeddersMutation>;
|
|
331
325
|
listEmbedders(variables: import("./sdk").Exact<{
|
|
332
326
|
input: import("./sdk").ListCommonInput;
|
|
333
327
|
}>, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<import("./sdk").ListEmbeddersQuery>;
|
|
@@ -392,6 +386,9 @@ export declare const sdk: {
|
|
|
392
386
|
listModelServices(variables?: import("./sdk").Exact<{
|
|
393
387
|
input?: import("./sdk").InputMaybe<import("./sdk").ListModelServiceInput> | undefined;
|
|
394
388
|
}> | undefined, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<import("./sdk").ListModelServicesQuery>;
|
|
389
|
+
listModelServiceProviders(variables?: import("./sdk").Exact<{
|
|
390
|
+
[key: string]: never;
|
|
391
|
+
}> | undefined, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<import("./sdk").ListModelServiceProvidersQuery>;
|
|
395
392
|
checkModelService(variables: import("./sdk").Exact<{
|
|
396
393
|
input: import("./sdk").CreateModelServiceInput;
|
|
397
394
|
}>, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<import("./sdk").CheckModelServiceQuery>;
|
|
@@ -436,15 +433,6 @@ export declare const sdk: {
|
|
|
436
433
|
listRayClusters(variables: import("./sdk").Exact<{
|
|
437
434
|
input: import("./sdk").ListCommonInput;
|
|
438
435
|
}>, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<import("./sdk").ListRayClustersQuery>;
|
|
439
|
-
createReranker(variables: import("./sdk").Exact<{
|
|
440
|
-
input: import("./sdk").CreateRerankerInput;
|
|
441
|
-
}>, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<import("./sdk").CreateRerankerMutation>;
|
|
442
|
-
updateReranker(variables?: import("./sdk").Exact<{
|
|
443
|
-
input?: import("./sdk").InputMaybe<import("./sdk").UpdateRerankerInput> | undefined;
|
|
444
|
-
}> | undefined, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<import("./sdk").UpdateRerankerMutation>;
|
|
445
|
-
deleteRerankers(variables: import("./sdk").Exact<{
|
|
446
|
-
input: import("./sdk").DeleteCommonInput;
|
|
447
|
-
}>, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<import("./sdk").DeleteRerankersMutation>;
|
|
448
436
|
listRerankers(variables: import("./sdk").Exact<{
|
|
449
437
|
input: import("./sdk").ListCommonInput;
|
|
450
438
|
}>, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<import("./sdk").ListRerankersQuery>;
|
|
@@ -668,15 +656,6 @@ export declare const initSdk: (options?: SdkOptions) => {
|
|
|
668
656
|
checkDatasource(variables: import("./sdk").Exact<{
|
|
669
657
|
input: import("./sdk").CreateDatasourceInput;
|
|
670
658
|
}>, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<import("./sdk").CheckDatasourceQuery>;
|
|
671
|
-
createEmbedder(variables: import("./sdk").Exact<{
|
|
672
|
-
input: import("./sdk").CreateEmbedderInput;
|
|
673
|
-
}>, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<import("./sdk").CreateEmbedderMutation>;
|
|
674
|
-
updateEmbedder(variables?: import("./sdk").Exact<{
|
|
675
|
-
input?: import("./sdk").InputMaybe<import("./sdk").UpdateEmbedderInput> | undefined;
|
|
676
|
-
}> | undefined, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<import("./sdk").UpdateEmbedderMutation>;
|
|
677
|
-
deleteEmbedders(variables: import("./sdk").Exact<{
|
|
678
|
-
input: import("./sdk").DeleteCommonInput;
|
|
679
|
-
}>, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<import("./sdk").DeleteEmbeddersMutation>;
|
|
680
659
|
listEmbedders(variables: import("./sdk").Exact<{
|
|
681
660
|
input: import("./sdk").ListCommonInput;
|
|
682
661
|
}>, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<import("./sdk").ListEmbeddersQuery>;
|
|
@@ -741,6 +720,9 @@ export declare const initSdk: (options?: SdkOptions) => {
|
|
|
741
720
|
listModelServices(variables?: import("./sdk").Exact<{
|
|
742
721
|
input?: import("./sdk").InputMaybe<import("./sdk").ListModelServiceInput> | undefined;
|
|
743
722
|
}> | undefined, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<import("./sdk").ListModelServicesQuery>;
|
|
723
|
+
listModelServiceProviders(variables?: import("./sdk").Exact<{
|
|
724
|
+
[key: string]: never;
|
|
725
|
+
}> | undefined, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<import("./sdk").ListModelServiceProvidersQuery>;
|
|
744
726
|
checkModelService(variables: import("./sdk").Exact<{
|
|
745
727
|
input: import("./sdk").CreateModelServiceInput;
|
|
746
728
|
}>, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<import("./sdk").CheckModelServiceQuery>;
|
|
@@ -785,15 +767,6 @@ export declare const initSdk: (options?: SdkOptions) => {
|
|
|
785
767
|
listRayClusters(variables: import("./sdk").Exact<{
|
|
786
768
|
input: import("./sdk").ListCommonInput;
|
|
787
769
|
}>, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<import("./sdk").ListRayClustersQuery>;
|
|
788
|
-
createReranker(variables: import("./sdk").Exact<{
|
|
789
|
-
input: import("./sdk").CreateRerankerInput;
|
|
790
|
-
}>, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<import("./sdk").CreateRerankerMutation>;
|
|
791
|
-
updateReranker(variables?: import("./sdk").Exact<{
|
|
792
|
-
input?: import("./sdk").InputMaybe<import("./sdk").UpdateRerankerInput> | undefined;
|
|
793
|
-
}> | undefined, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<import("./sdk").UpdateRerankerMutation>;
|
|
794
|
-
deleteRerankers(variables: import("./sdk").Exact<{
|
|
795
|
-
input: import("./sdk").DeleteCommonInput;
|
|
796
|
-
}>, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<import("./sdk").DeleteRerankersMutation>;
|
|
797
770
|
listRerankers(variables: import("./sdk").Exact<{
|
|
798
771
|
input: import("./sdk").ListCommonInput;
|
|
799
772
|
}>, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<import("./sdk").ListRerankersQuery>;
|
|
@@ -975,6 +948,9 @@ export declare const initSdkWithHooks: (options?: SdkOptions) => {
|
|
|
975
948
|
useListModelServices(variables?: import("./sdk").Exact<{
|
|
976
949
|
input?: import("./sdk").InputMaybe<import("./sdk").ListModelServiceInput> | undefined;
|
|
977
950
|
}> | undefined, config?: Partial<import("swr/_internal").PublicConfiguration<import("./sdk").ListModelServicesQuery, import("graphql-request/src/types").ClientError, import("swr/_internal").BareFetcher<any>>> | undefined): import("./useSWR").SWRResponsePro<import("./sdk").ListModelServicesQuery, import("graphql-request/src/types").ClientError>;
|
|
951
|
+
useListModelServiceProviders(variables?: import("./sdk").Exact<{
|
|
952
|
+
[key: string]: never;
|
|
953
|
+
}> | undefined, config?: Partial<import("swr/_internal").PublicConfiguration<import("./sdk").ListModelServiceProvidersQuery, import("graphql-request/src/types").ClientError, import("swr/_internal").BareFetcher<any>>> | undefined): import("./useSWR").SWRResponsePro<import("./sdk").ListModelServiceProvidersQuery, import("graphql-request/src/types").ClientError>;
|
|
978
954
|
useCheckModelService(variables: import("./sdk").Exact<{
|
|
979
955
|
input: import("./sdk").CreateModelServiceInput;
|
|
980
956
|
}>, config?: Partial<import("swr/_internal").PublicConfiguration<import("./sdk").CheckModelServiceQuery, import("graphql-request/src/types").ClientError, import("swr/_internal").BareFetcher<any>>> | undefined): import("./useSWR").SWRResponsePro<import("./sdk").CheckModelServiceQuery, import("graphql-request/src/types").ClientError>;
|
|
@@ -1169,15 +1145,6 @@ export declare const initSdkWithHooks: (options?: SdkOptions) => {
|
|
|
1169
1145
|
checkDatasource(variables: import("./sdk").Exact<{
|
|
1170
1146
|
input: import("./sdk").CreateDatasourceInput;
|
|
1171
1147
|
}>, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<import("./sdk").CheckDatasourceQuery>;
|
|
1172
|
-
createEmbedder(variables: import("./sdk").Exact<{
|
|
1173
|
-
input: import("./sdk").CreateEmbedderInput;
|
|
1174
|
-
}>, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<import("./sdk").CreateEmbedderMutation>;
|
|
1175
|
-
updateEmbedder(variables?: import("./sdk").Exact<{
|
|
1176
|
-
input?: import("./sdk").InputMaybe<import("./sdk").UpdateEmbedderInput> | undefined;
|
|
1177
|
-
}> | undefined, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<import("./sdk").UpdateEmbedderMutation>;
|
|
1178
|
-
deleteEmbedders(variables: import("./sdk").Exact<{
|
|
1179
|
-
input: import("./sdk").DeleteCommonInput;
|
|
1180
|
-
}>, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<import("./sdk").DeleteEmbeddersMutation>;
|
|
1181
1148
|
listEmbedders(variables: import("./sdk").Exact<{
|
|
1182
1149
|
input: import("./sdk").ListCommonInput;
|
|
1183
1150
|
}>, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<import("./sdk").ListEmbeddersQuery>;
|
|
@@ -1242,6 +1209,9 @@ export declare const initSdkWithHooks: (options?: SdkOptions) => {
|
|
|
1242
1209
|
listModelServices(variables?: import("./sdk").Exact<{
|
|
1243
1210
|
input?: import("./sdk").InputMaybe<import("./sdk").ListModelServiceInput> | undefined;
|
|
1244
1211
|
}> | undefined, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<import("./sdk").ListModelServicesQuery>;
|
|
1212
|
+
listModelServiceProviders(variables?: import("./sdk").Exact<{
|
|
1213
|
+
[key: string]: never;
|
|
1214
|
+
}> | undefined, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<import("./sdk").ListModelServiceProvidersQuery>;
|
|
1245
1215
|
checkModelService(variables: import("./sdk").Exact<{
|
|
1246
1216
|
input: import("./sdk").CreateModelServiceInput;
|
|
1247
1217
|
}>, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<import("./sdk").CheckModelServiceQuery>;
|
|
@@ -1286,15 +1256,6 @@ export declare const initSdkWithHooks: (options?: SdkOptions) => {
|
|
|
1286
1256
|
listRayClusters(variables: import("./sdk").Exact<{
|
|
1287
1257
|
input: import("./sdk").ListCommonInput;
|
|
1288
1258
|
}>, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<import("./sdk").ListRayClustersQuery>;
|
|
1289
|
-
createReranker(variables: import("./sdk").Exact<{
|
|
1290
|
-
input: import("./sdk").CreateRerankerInput;
|
|
1291
|
-
}>, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<import("./sdk").CreateRerankerMutation>;
|
|
1292
|
-
updateReranker(variables?: import("./sdk").Exact<{
|
|
1293
|
-
input?: import("./sdk").InputMaybe<import("./sdk").UpdateRerankerInput> | undefined;
|
|
1294
|
-
}> | undefined, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<import("./sdk").UpdateRerankerMutation>;
|
|
1295
|
-
deleteRerankers(variables: import("./sdk").Exact<{
|
|
1296
|
-
input: import("./sdk").DeleteCommonInput;
|
|
1297
|
-
}>, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<import("./sdk").DeleteRerankersMutation>;
|
|
1298
1259
|
listRerankers(variables: import("./sdk").Exact<{
|
|
1299
1260
|
input: import("./sdk").ListCommonInput;
|
|
1300
1261
|
}>, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<import("./sdk").ListRerankersQuery>;
|
|
@@ -1476,6 +1437,9 @@ export declare const useSdk: (options?: SdkOptions) => {
|
|
|
1476
1437
|
useListModelServices(variables?: import("./sdk").Exact<{
|
|
1477
1438
|
input?: import("./sdk").InputMaybe<import("./sdk").ListModelServiceInput> | undefined;
|
|
1478
1439
|
}> | undefined, config?: Partial<import("swr/_internal").PublicConfiguration<import("./sdk").ListModelServicesQuery, import("graphql-request/src/types").ClientError, import("swr/_internal").BareFetcher<any>>> | undefined): import("./useSWR").SWRResponsePro<import("./sdk").ListModelServicesQuery, import("graphql-request/src/types").ClientError>;
|
|
1440
|
+
useListModelServiceProviders(variables?: import("./sdk").Exact<{
|
|
1441
|
+
[key: string]: never;
|
|
1442
|
+
}> | undefined, config?: Partial<import("swr/_internal").PublicConfiguration<import("./sdk").ListModelServiceProvidersQuery, import("graphql-request/src/types").ClientError, import("swr/_internal").BareFetcher<any>>> | undefined): import("./useSWR").SWRResponsePro<import("./sdk").ListModelServiceProvidersQuery, import("graphql-request/src/types").ClientError>;
|
|
1479
1443
|
useCheckModelService(variables: import("./sdk").Exact<{
|
|
1480
1444
|
input: import("./sdk").CreateModelServiceInput;
|
|
1481
1445
|
}>, config?: Partial<import("swr/_internal").PublicConfiguration<import("./sdk").CheckModelServiceQuery, import("graphql-request/src/types").ClientError, import("swr/_internal").BareFetcher<any>>> | undefined): import("./useSWR").SWRResponsePro<import("./sdk").CheckModelServiceQuery, import("graphql-request/src/types").ClientError>;
|
|
@@ -1670,15 +1634,6 @@ export declare const useSdk: (options?: SdkOptions) => {
|
|
|
1670
1634
|
checkDatasource(variables: import("./sdk").Exact<{
|
|
1671
1635
|
input: import("./sdk").CreateDatasourceInput;
|
|
1672
1636
|
}>, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<import("./sdk").CheckDatasourceQuery>;
|
|
1673
|
-
createEmbedder(variables: import("./sdk").Exact<{
|
|
1674
|
-
input: import("./sdk").CreateEmbedderInput;
|
|
1675
|
-
}>, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<import("./sdk").CreateEmbedderMutation>;
|
|
1676
|
-
updateEmbedder(variables?: import("./sdk").Exact<{
|
|
1677
|
-
input?: import("./sdk").InputMaybe<import("./sdk").UpdateEmbedderInput> | undefined;
|
|
1678
|
-
}> | undefined, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<import("./sdk").UpdateEmbedderMutation>;
|
|
1679
|
-
deleteEmbedders(variables: import("./sdk").Exact<{
|
|
1680
|
-
input: import("./sdk").DeleteCommonInput;
|
|
1681
|
-
}>, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<import("./sdk").DeleteEmbeddersMutation>;
|
|
1682
1637
|
listEmbedders(variables: import("./sdk").Exact<{
|
|
1683
1638
|
input: import("./sdk").ListCommonInput;
|
|
1684
1639
|
}>, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<import("./sdk").ListEmbeddersQuery>;
|
|
@@ -1743,6 +1698,9 @@ export declare const useSdk: (options?: SdkOptions) => {
|
|
|
1743
1698
|
listModelServices(variables?: import("./sdk").Exact<{
|
|
1744
1699
|
input?: import("./sdk").InputMaybe<import("./sdk").ListModelServiceInput> | undefined;
|
|
1745
1700
|
}> | undefined, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<import("./sdk").ListModelServicesQuery>;
|
|
1701
|
+
listModelServiceProviders(variables?: import("./sdk").Exact<{
|
|
1702
|
+
[key: string]: never;
|
|
1703
|
+
}> | undefined, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<import("./sdk").ListModelServiceProvidersQuery>;
|
|
1746
1704
|
checkModelService(variables: import("./sdk").Exact<{
|
|
1747
1705
|
input: import("./sdk").CreateModelServiceInput;
|
|
1748
1706
|
}>, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<import("./sdk").CheckModelServiceQuery>;
|
|
@@ -1787,15 +1745,6 @@ export declare const useSdk: (options?: SdkOptions) => {
|
|
|
1787
1745
|
listRayClusters(variables: import("./sdk").Exact<{
|
|
1788
1746
|
input: import("./sdk").ListCommonInput;
|
|
1789
1747
|
}>, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<import("./sdk").ListRayClustersQuery>;
|
|
1790
|
-
createReranker(variables: import("./sdk").Exact<{
|
|
1791
|
-
input: import("./sdk").CreateRerankerInput;
|
|
1792
|
-
}>, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<import("./sdk").CreateRerankerMutation>;
|
|
1793
|
-
updateReranker(variables?: import("./sdk").Exact<{
|
|
1794
|
-
input?: import("./sdk").InputMaybe<import("./sdk").UpdateRerankerInput> | undefined;
|
|
1795
|
-
}> | undefined, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<import("./sdk").UpdateRerankerMutation>;
|
|
1796
|
-
deleteRerankers(variables: import("./sdk").Exact<{
|
|
1797
|
-
input: import("./sdk").DeleteCommonInput;
|
|
1798
|
-
}>, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<import("./sdk").DeleteRerankersMutation>;
|
|
1799
1748
|
listRerankers(variables: import("./sdk").Exact<{
|
|
1800
1749
|
input: import("./sdk").ListCommonInput;
|
|
1801
1750
|
}>, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<import("./sdk").ListRerankersQuery>;
|