@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/index.d.ts +42 -84
- package/dist/cjs/sdk.d.ts +45 -261
- package/dist/cjs/sdk.js +33 -101
- package/dist/cjs/taro.d.ts +30 -60
- package/dist/esm/index.d.ts +42 -84
- package/dist/esm/sdk.d.ts +45 -261
- package/dist/esm/sdk.js +84 -111
- package/dist/esm/taro.d.ts +30 -60
- package/dist/umd/index.min.js +1 -1
- package/dist/umd/index.min.js.map +1 -1
- package/package.json +1 -1
package/dist/esm/taro.d.ts
CHANGED
|
@@ -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>;
|