@yuntijs/arcadia-bff-sdk 1.2.106 → 1.2.108
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 +28 -0
- package/dist/cjs/sdk.d.ts +62 -6
- package/dist/cjs/sdk.js +24 -0
- package/dist/cjs/taro.d.ts +20 -0
- package/dist/esm/index.d.ts +28 -0
- package/dist/esm/sdk.d.ts +62 -6
- package/dist/esm/sdk.js +130 -119
- package/dist/esm/taro.d.ts +20 -0
- 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
|
@@ -43,6 +43,10 @@ export declare const sdk: {
|
|
|
43
43
|
useGetGptStore(variables?: import("./sdk").Exact<{
|
|
44
44
|
[key: string]: never;
|
|
45
45
|
}> | 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>;
|
|
46
|
+
useGetWeiXinAuthorizerUrl(variables: import("./sdk").Exact<{
|
|
47
|
+
name: string;
|
|
48
|
+
namespace: string;
|
|
49
|
+
}>, config?: Partial<import("swr/_internal").PublicConfiguration<import("./sdk").GetWeiXinAuthorizerUrlQuery, import("graphql-request/src/types").ClientError, import("swr/_internal").BareFetcher<any>>> | undefined): import("./useSWR").SWRResponsePro<import("./sdk").GetWeiXinAuthorizerUrlQuery, import("graphql-request/src/types").ClientError>;
|
|
46
50
|
useAllDataProcessListByPage(variables: import("./sdk").Exact<{
|
|
47
51
|
input: import("./sdk").AllDataProcessListByPageInput;
|
|
48
52
|
}>, 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>;
|
|
@@ -327,6 +331,10 @@ export declare const sdk: {
|
|
|
327
331
|
getGPTStore(variables?: import("./sdk").Exact<{
|
|
328
332
|
[key: string]: never;
|
|
329
333
|
}> | undefined, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<import("./sdk").GetGptStoreQuery>;
|
|
334
|
+
getWeiXinAuthorizerURL(variables: import("./sdk").Exact<{
|
|
335
|
+
name: string;
|
|
336
|
+
namespace: string;
|
|
337
|
+
}>, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<import("./sdk").GetWeiXinAuthorizerUrlQuery>;
|
|
330
338
|
allDataProcessListByPage(variables: import("./sdk").Exact<{
|
|
331
339
|
input: import("./sdk").AllDataProcessListByPageInput;
|
|
332
340
|
}>, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<import("./sdk").AllDataProcessListByPageQuery>;
|
|
@@ -820,6 +828,10 @@ export declare const initSdk: (options?: SdkOptions) => {
|
|
|
820
828
|
getGPTStore(variables?: import("./sdk").Exact<{
|
|
821
829
|
[key: string]: never;
|
|
822
830
|
}> | undefined, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<import("./sdk").GetGptStoreQuery>;
|
|
831
|
+
getWeiXinAuthorizerURL(variables: import("./sdk").Exact<{
|
|
832
|
+
name: string;
|
|
833
|
+
namespace: string;
|
|
834
|
+
}>, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<import("./sdk").GetWeiXinAuthorizerUrlQuery>;
|
|
823
835
|
allDataProcessListByPage(variables: import("./sdk").Exact<{
|
|
824
836
|
input: import("./sdk").AllDataProcessListByPageInput;
|
|
825
837
|
}>, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<import("./sdk").AllDataProcessListByPageQuery>;
|
|
@@ -1241,6 +1253,10 @@ export declare const initSdkWithHooks: (options?: SdkOptions) => {
|
|
|
1241
1253
|
useGetGptStore(variables?: import("./sdk").Exact<{
|
|
1242
1254
|
[key: string]: never;
|
|
1243
1255
|
}> | 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>;
|
|
1256
|
+
useGetWeiXinAuthorizerUrl(variables: import("./sdk").Exact<{
|
|
1257
|
+
name: string;
|
|
1258
|
+
namespace: string;
|
|
1259
|
+
}>, config?: Partial<import("swr/_internal").PublicConfiguration<import("./sdk").GetWeiXinAuthorizerUrlQuery, import("graphql-request/src/types").ClientError, import("swr/_internal").BareFetcher<any>>> | undefined): import("./useSWR").SWRResponsePro<import("./sdk").GetWeiXinAuthorizerUrlQuery, import("graphql-request/src/types").ClientError>;
|
|
1244
1260
|
useAllDataProcessListByPage(variables: import("./sdk").Exact<{
|
|
1245
1261
|
input: import("./sdk").AllDataProcessListByPageInput;
|
|
1246
1262
|
}>, 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>;
|
|
@@ -1525,6 +1541,10 @@ export declare const initSdkWithHooks: (options?: SdkOptions) => {
|
|
|
1525
1541
|
getGPTStore(variables?: import("./sdk").Exact<{
|
|
1526
1542
|
[key: string]: never;
|
|
1527
1543
|
}> | undefined, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<import("./sdk").GetGptStoreQuery>;
|
|
1544
|
+
getWeiXinAuthorizerURL(variables: import("./sdk").Exact<{
|
|
1545
|
+
name: string;
|
|
1546
|
+
namespace: string;
|
|
1547
|
+
}>, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<import("./sdk").GetWeiXinAuthorizerUrlQuery>;
|
|
1528
1548
|
allDataProcessListByPage(variables: import("./sdk").Exact<{
|
|
1529
1549
|
input: import("./sdk").AllDataProcessListByPageInput;
|
|
1530
1550
|
}>, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<import("./sdk").AllDataProcessListByPageQuery>;
|
|
@@ -1946,6 +1966,10 @@ export declare const useSdk: (options?: SdkOptions) => {
|
|
|
1946
1966
|
useGetGptStore(variables?: import("./sdk").Exact<{
|
|
1947
1967
|
[key: string]: never;
|
|
1948
1968
|
}> | 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>;
|
|
1969
|
+
useGetWeiXinAuthorizerUrl(variables: import("./sdk").Exact<{
|
|
1970
|
+
name: string;
|
|
1971
|
+
namespace: string;
|
|
1972
|
+
}>, config?: Partial<import("swr/_internal").PublicConfiguration<import("./sdk").GetWeiXinAuthorizerUrlQuery, import("graphql-request/src/types").ClientError, import("swr/_internal").BareFetcher<any>>> | undefined): import("./useSWR").SWRResponsePro<import("./sdk").GetWeiXinAuthorizerUrlQuery, import("graphql-request/src/types").ClientError>;
|
|
1949
1973
|
useAllDataProcessListByPage(variables: import("./sdk").Exact<{
|
|
1950
1974
|
input: import("./sdk").AllDataProcessListByPageInput;
|
|
1951
1975
|
}>, 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>;
|
|
@@ -2230,6 +2254,10 @@ export declare const useSdk: (options?: SdkOptions) => {
|
|
|
2230
2254
|
getGPTStore(variables?: import("./sdk").Exact<{
|
|
2231
2255
|
[key: string]: never;
|
|
2232
2256
|
}> | undefined, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<import("./sdk").GetGptStoreQuery>;
|
|
2257
|
+
getWeiXinAuthorizerURL(variables: import("./sdk").Exact<{
|
|
2258
|
+
name: string;
|
|
2259
|
+
namespace: string;
|
|
2260
|
+
}>, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<import("./sdk").GetWeiXinAuthorizerUrlQuery>;
|
|
2233
2261
|
allDataProcessListByPage(variables: import("./sdk").Exact<{
|
|
2234
2262
|
input: import("./sdk").AllDataProcessListByPageInput;
|
|
2235
2263
|
}>, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<import("./sdk").AllDataProcessListByPageQuery>;
|
package/dist/cjs/sdk.d.ts
CHANGED
|
@@ -304,6 +304,7 @@ export type AgentQuery = {
|
|
|
304
304
|
getAgentLatestReleaseInEachPlatform: PaginatedResult;
|
|
305
305
|
getAgentReleaseHistory: PaginatedResult;
|
|
306
306
|
getGPTStore: GptStore;
|
|
307
|
+
getWeiXinAuthorizerURL: Scalars['String']['output'];
|
|
307
308
|
listAgentMetadata: PaginatedResult;
|
|
308
309
|
listAgentPrompt: PaginatedResult;
|
|
309
310
|
/** migrated from GPT */
|
|
@@ -323,6 +324,10 @@ export type AgentQueryGetAgentReleaseHistoryArgs = {
|
|
|
323
324
|
page?: InputMaybe<Scalars['Int']['input']>;
|
|
324
325
|
pageSize?: InputMaybe<Scalars['Int']['input']>;
|
|
325
326
|
};
|
|
327
|
+
export type AgentQueryGetWeiXinAuthorizerUrlArgs = {
|
|
328
|
+
name: Scalars['String']['input'];
|
|
329
|
+
namespace: Scalars['String']['input'];
|
|
330
|
+
};
|
|
326
331
|
export type AgentQueryListAgentMetadataArgs = {
|
|
327
332
|
input: ListCommonInput;
|
|
328
333
|
};
|
|
@@ -335,6 +340,8 @@ export type AgentRelease = {
|
|
|
335
340
|
__typename?: 'AgentRelease';
|
|
336
341
|
/** 发布时间 */
|
|
337
342
|
createdAt?: Maybe<Scalars['Time']['output']>;
|
|
343
|
+
/** extra 用来记录一些其他的可能会展示的一个字符串信息,例如名字或者某个链接地址 */
|
|
344
|
+
extra: Scalars['Map']['output'];
|
|
338
345
|
/** 发布记录的id */
|
|
339
346
|
id: Scalars['String']['output'];
|
|
340
347
|
/** 发布日志 */
|
|
@@ -345,8 +352,16 @@ export type AgentRelease = {
|
|
|
345
352
|
namesapce: Scalars['String']['output'];
|
|
346
353
|
/** 发布到的平台 */
|
|
347
354
|
platform: Scalars['String']['output'];
|
|
348
|
-
/**
|
|
349
|
-
|
|
355
|
+
/**
|
|
356
|
+
* 智能体在平台的发布状态
|
|
357
|
+
* 0 未发布过
|
|
358
|
+
* 1 授权成功 ,但是没有发布
|
|
359
|
+
* 2 发布成功,但是没有授权
|
|
360
|
+
* 3 发布成功
|
|
361
|
+
* 4 下架
|
|
362
|
+
* 5 发布失败
|
|
363
|
+
*/
|
|
364
|
+
status: Scalars['Int']['output'];
|
|
350
365
|
/** 发布用户 */
|
|
351
366
|
username?: Maybe<Scalars['String']['output']>;
|
|
352
367
|
};
|
|
@@ -2660,6 +2675,8 @@ export type ReleaseAgentInputItem = {
|
|
|
2660
2675
|
IsPublic: Scalars['Boolean']['input'];
|
|
2661
2676
|
/** 发布的平台 */
|
|
2662
2677
|
Platform: Scalars['String']['input'];
|
|
2678
|
+
/** authcode 发布到微信公众号需要 */
|
|
2679
|
+
authCode?: InputMaybe<Scalars['String']['input']>;
|
|
2663
2680
|
};
|
|
2664
2681
|
export type ReleaseWorkflowInput = {
|
|
2665
2682
|
/**
|
|
@@ -2792,6 +2809,17 @@ export type Sft = {
|
|
|
2792
2809
|
chatMatchExpressions?: Maybe<Array<Maybe<NodeSelectorRequirement>>>;
|
|
2793
2810
|
/** SFT 微调对话测试所使用的资源 */
|
|
2794
2811
|
chatResources?: Maybe<Resources>;
|
|
2812
|
+
/**
|
|
2813
|
+
* SFT 微调测试对话 Pod 状态
|
|
2814
|
+
* "notExist":测试对话未启动
|
|
2815
|
+
* "init":测试对话启动中
|
|
2816
|
+
* "pending":测试对话启动受阻
|
|
2817
|
+
* "running":测试对话正在运行
|
|
2818
|
+
* "failed":测试对话运行失败
|
|
2819
|
+
*/
|
|
2820
|
+
chatStatus?: Maybe<Scalars['String']['output']>;
|
|
2821
|
+
/** SFT 微淘测试对话状态的辅助信息 */
|
|
2822
|
+
chatStatusMessage?: Maybe<Scalars['String']['output']>;
|
|
2795
2823
|
/** 微调完成时间, 记录微调任务完成的时间(不包括合并导出,未完成则该字段为空) */
|
|
2796
2824
|
completeTimestamp?: Maybe<Scalars['Time']['output']>;
|
|
2797
2825
|
/** 创建时间 */
|
|
@@ -2870,17 +2898,18 @@ export type Sft = {
|
|
|
2870
2898
|
* - "preparing":微调任务准备中
|
|
2871
2899
|
* - "processing":微调任务正在进行中
|
|
2872
2900
|
* - "standby":微调完成,可供测试对话或导出
|
|
2873
|
-
* - "exporting"
|
|
2901
|
+
* - "exporting": 微调后模型合并导出中
|
|
2874
2902
|
* - "closed":微调任务流程全部结束,已关闭
|
|
2875
2903
|
* - 异常:
|
|
2876
2904
|
* - "failed":微调失败
|
|
2877
|
-
* - "
|
|
2905
|
+
* - "pending":微调任务中断
|
|
2906
|
+
* - "suspended": 微调任务被终止
|
|
2878
2907
|
* - "unknown":未知状态
|
|
2879
2908
|
*/
|
|
2880
2909
|
status: Scalars['String']['output'];
|
|
2881
2910
|
/** SFT 微调阶段之间需要通过pvc传递数据 */
|
|
2882
2911
|
storage: PersistentVolumeClaimSpec;
|
|
2883
|
-
/** SFT
|
|
2912
|
+
/** SFT 微调任务是否被取消,true 表示已被取消,false 表示没有 */
|
|
2884
2913
|
suspend: Scalars['Boolean']['output'];
|
|
2885
2914
|
/**
|
|
2886
2915
|
* SFT 微调任务的类型:
|
|
@@ -4270,10 +4299,11 @@ export type GetAgentLatestReleaseInEachPlatformQuery = {
|
|
|
4270
4299
|
platform: string;
|
|
4271
4300
|
name: string;
|
|
4272
4301
|
namesapce: string;
|
|
4273
|
-
status
|
|
4302
|
+
status: number;
|
|
4274
4303
|
log?: string | null;
|
|
4275
4304
|
createdAt?: any | null;
|
|
4276
4305
|
username?: string | null;
|
|
4306
|
+
extra: any;
|
|
4277
4307
|
} | {
|
|
4278
4308
|
__typename?: 'AgentReleaseHistory';
|
|
4279
4309
|
} | {
|
|
@@ -4622,6 +4652,17 @@ export type GetGptStoreQuery = {
|
|
|
4622
4652
|
};
|
|
4623
4653
|
} | null;
|
|
4624
4654
|
};
|
|
4655
|
+
export type GetWeiXinAuthorizerUrlQueryVariables = Exact<{
|
|
4656
|
+
name: Scalars['String']['input'];
|
|
4657
|
+
namespace: Scalars['String']['input'];
|
|
4658
|
+
}>;
|
|
4659
|
+
export type GetWeiXinAuthorizerUrlQuery = {
|
|
4660
|
+
__typename?: 'Query';
|
|
4661
|
+
Agent?: {
|
|
4662
|
+
__typename?: 'AgentQuery';
|
|
4663
|
+
getWeiXinAuthorizerURL: string;
|
|
4664
|
+
} | null;
|
|
4665
|
+
};
|
|
4625
4666
|
export type AllDataProcessListByPageQueryVariables = Exact<{
|
|
4626
4667
|
input: AllDataProcessListByPageInput;
|
|
4627
4668
|
}>;
|
|
@@ -8605,6 +8646,8 @@ export type ListSftQuery = {
|
|
|
8605
8646
|
exportDescription?: string | null;
|
|
8606
8647
|
exportPartSize?: number | null;
|
|
8607
8648
|
chatAdditionalEnvs?: any | null;
|
|
8649
|
+
chatStatus?: string | null;
|
|
8650
|
+
chatStatusMessage?: string | null;
|
|
8608
8651
|
storage: {
|
|
8609
8652
|
__typename?: 'PersistentVolumeClaimSpec';
|
|
8610
8653
|
accessModes: Array<string>;
|
|
@@ -8742,6 +8785,8 @@ export type GetSftQuery = {
|
|
|
8742
8785
|
exportDescription?: string | null;
|
|
8743
8786
|
exportPartSize?: number | null;
|
|
8744
8787
|
chatAdditionalEnvs?: any | null;
|
|
8788
|
+
chatStatus?: string | null;
|
|
8789
|
+
chatStatusMessage?: string | null;
|
|
8745
8790
|
storage: {
|
|
8746
8791
|
__typename?: 'PersistentVolumeClaimSpec';
|
|
8747
8792
|
accessModes: Array<string>;
|
|
@@ -8922,6 +8967,8 @@ export type CreateSftMutation = {
|
|
|
8922
8967
|
exportDescription?: string | null;
|
|
8923
8968
|
exportPartSize?: number | null;
|
|
8924
8969
|
chatAdditionalEnvs?: any | null;
|
|
8970
|
+
chatStatus?: string | null;
|
|
8971
|
+
chatStatusMessage?: string | null;
|
|
8925
8972
|
storage: {
|
|
8926
8973
|
__typename?: 'PersistentVolumeClaimSpec';
|
|
8927
8974
|
accessModes: Array<string>;
|
|
@@ -9043,6 +9090,8 @@ export type UpdateSftMutation = {
|
|
|
9043
9090
|
exportDescription?: string | null;
|
|
9044
9091
|
exportPartSize?: number | null;
|
|
9045
9092
|
chatAdditionalEnvs?: any | null;
|
|
9093
|
+
chatStatus?: string | null;
|
|
9094
|
+
chatStatusMessage?: string | null;
|
|
9046
9095
|
storage: {
|
|
9047
9096
|
__typename?: 'PersistentVolumeClaimSpec';
|
|
9048
9097
|
accessModes: Array<string>;
|
|
@@ -9980,6 +10029,7 @@ export declare const ListAgentsDocument: import("../node_modules/.pnpm/graphql@1
|
|
|
9980
10029
|
export declare const ListAgentPromptDocument: import("../node_modules/.pnpm/graphql@16.8.1/node_modules/graphql/index.d.ts").DocumentNode;
|
|
9981
10030
|
export declare const ListGptCategoryDocument: import("../node_modules/.pnpm/graphql@16.8.1/node_modules/graphql/index.d.ts").DocumentNode;
|
|
9982
10031
|
export declare const GetGptStoreDocument: import("../node_modules/.pnpm/graphql@16.8.1/node_modules/graphql/index.d.ts").DocumentNode;
|
|
10032
|
+
export declare const GetWeiXinAuthorizerUrlDocument: import("../node_modules/.pnpm/graphql@16.8.1/node_modules/graphql/index.d.ts").DocumentNode;
|
|
9983
10033
|
export declare const AllDataProcessListByPageDocument: import("../node_modules/.pnpm/graphql@16.8.1/node_modules/graphql/index.d.ts").DocumentNode;
|
|
9984
10034
|
export declare const AllDataProcessListByCountDocument: import("../node_modules/.pnpm/graphql@16.8.1/node_modules/graphql/index.d.ts").DocumentNode;
|
|
9985
10035
|
export declare const DataProcessSupportTypeDocument: import("../node_modules/.pnpm/graphql@16.8.1/node_modules/graphql/index.d.ts").DocumentNode;
|
|
@@ -10123,6 +10173,7 @@ export declare function getSdk(client: GraphQLClient, withWrapper?: SdkFunctionW
|
|
|
10123
10173
|
listAgentPrompt(variables: ListAgentPromptQueryVariables, requestHeaders?: RequestConfig['headers']): Promise<ListAgentPromptQuery>;
|
|
10124
10174
|
listGPTCategory(variables?: ListGptCategoryQueryVariables, requestHeaders?: RequestConfig['headers']): Promise<ListGptCategoryQuery>;
|
|
10125
10175
|
getGPTStore(variables?: GetGptStoreQueryVariables, requestHeaders?: RequestConfig['headers']): Promise<GetGptStoreQuery>;
|
|
10176
|
+
getWeiXinAuthorizerURL(variables: GetWeiXinAuthorizerUrlQueryVariables, requestHeaders?: RequestConfig['headers']): Promise<GetWeiXinAuthorizerUrlQuery>;
|
|
10126
10177
|
allDataProcessListByPage(variables: AllDataProcessListByPageQueryVariables, requestHeaders?: RequestConfig['headers']): Promise<AllDataProcessListByPageQuery>;
|
|
10127
10178
|
allDataProcessListByCount(variables: AllDataProcessListByCountQueryVariables, requestHeaders?: RequestConfig['headers']): Promise<AllDataProcessListByCountQuery>;
|
|
10128
10179
|
dataProcessSupportType(variables?: DataProcessSupportTypeQueryVariables, requestHeaders?: RequestConfig['headers']): Promise<DataProcessSupportTypeQuery>;
|
|
@@ -10251,6 +10302,7 @@ export declare function getSdkWithHooks(client: GraphQLClient, withWrapper?: Sdk
|
|
|
10251
10302
|
useListAgentPrompt(variables: ListAgentPromptQueryVariables, config?: SWRConfigInterface<ListAgentPromptQuery, ClientError>): import("./useSWR").SWRResponsePro<ListAgentPromptQuery, ClientError>;
|
|
10252
10303
|
useListGptCategory(variables?: ListGptCategoryQueryVariables, config?: SWRConfigInterface<ListGptCategoryQuery, ClientError>): import("./useSWR").SWRResponsePro<ListGptCategoryQuery, ClientError>;
|
|
10253
10304
|
useGetGptStore(variables?: GetGptStoreQueryVariables, config?: SWRConfigInterface<GetGptStoreQuery, ClientError>): import("./useSWR").SWRResponsePro<GetGptStoreQuery, ClientError>;
|
|
10305
|
+
useGetWeiXinAuthorizerUrl(variables: GetWeiXinAuthorizerUrlQueryVariables, config?: SWRConfigInterface<GetWeiXinAuthorizerUrlQuery, ClientError>): import("./useSWR").SWRResponsePro<GetWeiXinAuthorizerUrlQuery, ClientError>;
|
|
10254
10306
|
useAllDataProcessListByPage(variables: AllDataProcessListByPageQueryVariables, config?: SWRConfigInterface<AllDataProcessListByPageQuery, ClientError>): import("./useSWR").SWRResponsePro<AllDataProcessListByPageQuery, ClientError>;
|
|
10255
10307
|
useAllDataProcessListByCount(variables: AllDataProcessListByCountQueryVariables, config?: SWRConfigInterface<AllDataProcessListByCountQuery, ClientError>): import("./useSWR").SWRResponsePro<AllDataProcessListByCountQuery, ClientError>;
|
|
10256
10308
|
useDataProcessSupportType(variables?: DataProcessSupportTypeQueryVariables, config?: SWRConfigInterface<DataProcessSupportTypeQuery, ClientError>): import("./useSWR").SWRResponsePro<DataProcessSupportTypeQuery, ClientError>;
|
|
@@ -10394,6 +10446,10 @@ export declare function getSdkWithHooks(client: GraphQLClient, withWrapper?: Sdk
|
|
|
10394
10446
|
getGPTStore(variables?: Exact<{
|
|
10395
10447
|
[key: string]: never;
|
|
10396
10448
|
}> | undefined, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<GetGptStoreQuery>;
|
|
10449
|
+
getWeiXinAuthorizerURL(variables: Exact<{
|
|
10450
|
+
name: string;
|
|
10451
|
+
namespace: string;
|
|
10452
|
+
}>, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<GetWeiXinAuthorizerUrlQuery>;
|
|
10397
10453
|
allDataProcessListByPage(variables: Exact<{
|
|
10398
10454
|
input: AllDataProcessListByPageInput;
|
|
10399
10455
|
}>, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<AllDataProcessListByPageQuery>;
|
package/dist/cjs/sdk.js
CHANGED
|
@@ -113,6 +113,7 @@ __export(sdk_exports, {
|
|
|
113
113
|
GetVersionContentDocument: () => GetVersionContentDocument,
|
|
114
114
|
GetVersionDocument: () => GetVersionDocument,
|
|
115
115
|
GetVersionedDatasetDocument: () => GetVersionedDatasetDocument,
|
|
116
|
+
GetWeiXinAuthorizerUrlDocument: () => GetWeiXinAuthorizerUrlDocument,
|
|
116
117
|
GetWorkerDocument: () => GetWorkerDocument,
|
|
117
118
|
GetWorkflowDocument: () => GetWorkflowDocument,
|
|
118
119
|
ListAgentPromptDocument: () => ListAgentPromptDocument,
|
|
@@ -473,6 +474,7 @@ var GetAgentLatestReleaseInEachPlatformDocument = import_graphql_tag.default`
|
|
|
473
474
|
log
|
|
474
475
|
createdAt
|
|
475
476
|
username
|
|
477
|
+
extra
|
|
476
478
|
}
|
|
477
479
|
}
|
|
478
480
|
}
|
|
@@ -584,6 +586,13 @@ var GetGptStoreDocument = import_graphql_tag.default`
|
|
|
584
586
|
}
|
|
585
587
|
}
|
|
586
588
|
`;
|
|
589
|
+
var GetWeiXinAuthorizerUrlDocument = import_graphql_tag.default`
|
|
590
|
+
query getWeiXinAuthorizerURL($name: String!, $namespace: String!) {
|
|
591
|
+
Agent {
|
|
592
|
+
getWeiXinAuthorizerURL(name: $name, namespace: $namespace)
|
|
593
|
+
}
|
|
594
|
+
}
|
|
595
|
+
`;
|
|
587
596
|
var AllDataProcessListByPageDocument = import_graphql_tag.default`
|
|
588
597
|
query allDataProcessListByPage($input: AllDataProcessListByPageInput!) {
|
|
589
598
|
dataProcess {
|
|
@@ -2780,6 +2789,8 @@ var ListSftDocument = import_graphql_tag.default`
|
|
|
2780
2789
|
values
|
|
2781
2790
|
}
|
|
2782
2791
|
chatAdditionalEnvs
|
|
2792
|
+
chatStatus
|
|
2793
|
+
chatStatusMessage
|
|
2783
2794
|
}
|
|
2784
2795
|
}
|
|
2785
2796
|
}
|
|
@@ -2888,6 +2899,8 @@ var GetSftDocument = import_graphql_tag.default`
|
|
|
2888
2899
|
values
|
|
2889
2900
|
}
|
|
2890
2901
|
chatAdditionalEnvs
|
|
2902
|
+
chatStatus
|
|
2903
|
+
chatStatusMessage
|
|
2891
2904
|
}
|
|
2892
2905
|
}
|
|
2893
2906
|
}
|
|
@@ -3038,6 +3051,8 @@ var CreateSftDocument = import_graphql_tag.default`
|
|
|
3038
3051
|
values
|
|
3039
3052
|
}
|
|
3040
3053
|
chatAdditionalEnvs
|
|
3054
|
+
chatStatus
|
|
3055
|
+
chatStatusMessage
|
|
3041
3056
|
}
|
|
3042
3057
|
}
|
|
3043
3058
|
}
|
|
@@ -3144,6 +3159,8 @@ var UpdateSftDocument = import_graphql_tag.default`
|
|
|
3144
3159
|
values
|
|
3145
3160
|
}
|
|
3146
3161
|
chatAdditionalEnvs
|
|
3162
|
+
chatStatus
|
|
3163
|
+
chatStatusMessage
|
|
3147
3164
|
}
|
|
3148
3165
|
}
|
|
3149
3166
|
}
|
|
@@ -3679,6 +3696,9 @@ function getSdk(client, withWrapper = defaultWrapper) {
|
|
|
3679
3696
|
getGPTStore(variables, requestHeaders) {
|
|
3680
3697
|
return withWrapper((wrappedRequestHeaders) => client.request(GetGptStoreDocument, variables, { ...requestHeaders, ...wrappedRequestHeaders }), "getGPTStore", "query", variables);
|
|
3681
3698
|
},
|
|
3699
|
+
getWeiXinAuthorizerURL(variables, requestHeaders) {
|
|
3700
|
+
return withWrapper((wrappedRequestHeaders) => client.request(GetWeiXinAuthorizerUrlDocument, variables, { ...requestHeaders, ...wrappedRequestHeaders }), "getWeiXinAuthorizerURL", "query", variables);
|
|
3701
|
+
},
|
|
3682
3702
|
allDataProcessListByPage(variables, requestHeaders) {
|
|
3683
3703
|
return withWrapper((wrappedRequestHeaders) => client.request(AllDataProcessListByPageDocument, variables, { ...requestHeaders, ...wrappedRequestHeaders }), "allDataProcessListByPage", "query", variables);
|
|
3684
3704
|
},
|
|
@@ -4061,6 +4081,9 @@ function getSdkWithHooks(client, withWrapper = defaultWrapper) {
|
|
|
4061
4081
|
useGetGptStore(variables, config) {
|
|
4062
4082
|
return (0, import_useSWR.default)(genKey("GetGptStore", variables), () => sdk.getGPTStore(variables), config);
|
|
4063
4083
|
},
|
|
4084
|
+
useGetWeiXinAuthorizerUrl(variables, config) {
|
|
4085
|
+
return (0, import_useSWR.default)(genKey("GetWeiXinAuthorizerUrl", variables), () => sdk.getWeiXinAuthorizerURL(variables), config);
|
|
4086
|
+
},
|
|
4064
4087
|
useAllDataProcessListByPage(variables, config) {
|
|
4065
4088
|
return (0, import_useSWR.default)(genKey("AllDataProcessListByPage", variables), () => sdk.allDataProcessListByPage(variables), config);
|
|
4066
4089
|
},
|
|
@@ -4320,6 +4343,7 @@ function getSdkWithHooks(client, withWrapper = defaultWrapper) {
|
|
|
4320
4343
|
GetVersionContentDocument,
|
|
4321
4344
|
GetVersionDocument,
|
|
4322
4345
|
GetVersionedDatasetDocument,
|
|
4346
|
+
GetWeiXinAuthorizerUrlDocument,
|
|
4323
4347
|
GetWorkerDocument,
|
|
4324
4348
|
GetWorkflowDocument,
|
|
4325
4349
|
ListAgentPromptDocument,
|
package/dist/cjs/taro.d.ts
CHANGED
|
@@ -118,6 +118,10 @@ export declare const initSdk: (options?: SdkOptions) => {
|
|
|
118
118
|
getGPTStore(variables?: import("./sdk").Exact<{
|
|
119
119
|
[key: string]: never;
|
|
120
120
|
}> | undefined, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<import("./sdk").GetGptStoreQuery>;
|
|
121
|
+
getWeiXinAuthorizerURL(variables: import("./sdk").Exact<{
|
|
122
|
+
name: string;
|
|
123
|
+
namespace: string;
|
|
124
|
+
}>, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<import("./sdk").GetWeiXinAuthorizerUrlQuery>;
|
|
121
125
|
allDataProcessListByPage(variables: import("./sdk").Exact<{
|
|
122
126
|
input: import("./sdk").AllDataProcessListByPageInput;
|
|
123
127
|
}>, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<import("./sdk").AllDataProcessListByPageQuery>;
|
|
@@ -539,6 +543,10 @@ export declare const initSdkWithHooks: (options?: SdkOptions) => {
|
|
|
539
543
|
useGetGptStore(variables?: import("./sdk").Exact<{
|
|
540
544
|
[key: string]: never;
|
|
541
545
|
}> | 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>;
|
|
546
|
+
useGetWeiXinAuthorizerUrl(variables: import("./sdk").Exact<{
|
|
547
|
+
name: string;
|
|
548
|
+
namespace: string;
|
|
549
|
+
}>, config?: Partial<import("swr/_internal").PublicConfiguration<import("./sdk").GetWeiXinAuthorizerUrlQuery, import("graphql-request/src/types").ClientError, import("swr/_internal").BareFetcher<any>>> | undefined): import("./useSWR").SWRResponsePro<import("./sdk").GetWeiXinAuthorizerUrlQuery, import("graphql-request/src/types").ClientError>;
|
|
542
550
|
useAllDataProcessListByPage(variables: import("./sdk").Exact<{
|
|
543
551
|
input: import("./sdk").AllDataProcessListByPageInput;
|
|
544
552
|
}>, 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>;
|
|
@@ -823,6 +831,10 @@ export declare const initSdkWithHooks: (options?: SdkOptions) => {
|
|
|
823
831
|
getGPTStore(variables?: import("./sdk").Exact<{
|
|
824
832
|
[key: string]: never;
|
|
825
833
|
}> | undefined, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<import("./sdk").GetGptStoreQuery>;
|
|
834
|
+
getWeiXinAuthorizerURL(variables: import("./sdk").Exact<{
|
|
835
|
+
name: string;
|
|
836
|
+
namespace: string;
|
|
837
|
+
}>, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<import("./sdk").GetWeiXinAuthorizerUrlQuery>;
|
|
826
838
|
allDataProcessListByPage(variables: import("./sdk").Exact<{
|
|
827
839
|
input: import("./sdk").AllDataProcessListByPageInput;
|
|
828
840
|
}>, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<import("./sdk").AllDataProcessListByPageQuery>;
|
|
@@ -1244,6 +1256,10 @@ export declare const useSdk: (options?: SdkOptions) => {
|
|
|
1244
1256
|
useGetGptStore(variables?: import("./sdk").Exact<{
|
|
1245
1257
|
[key: string]: never;
|
|
1246
1258
|
}> | 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>;
|
|
1259
|
+
useGetWeiXinAuthorizerUrl(variables: import("./sdk").Exact<{
|
|
1260
|
+
name: string;
|
|
1261
|
+
namespace: string;
|
|
1262
|
+
}>, config?: Partial<import("swr/_internal").PublicConfiguration<import("./sdk").GetWeiXinAuthorizerUrlQuery, import("graphql-request/src/types").ClientError, import("swr/_internal").BareFetcher<any>>> | undefined): import("./useSWR").SWRResponsePro<import("./sdk").GetWeiXinAuthorizerUrlQuery, import("graphql-request/src/types").ClientError>;
|
|
1247
1263
|
useAllDataProcessListByPage(variables: import("./sdk").Exact<{
|
|
1248
1264
|
input: import("./sdk").AllDataProcessListByPageInput;
|
|
1249
1265
|
}>, 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>;
|
|
@@ -1528,6 +1544,10 @@ export declare const useSdk: (options?: SdkOptions) => {
|
|
|
1528
1544
|
getGPTStore(variables?: import("./sdk").Exact<{
|
|
1529
1545
|
[key: string]: never;
|
|
1530
1546
|
}> | undefined, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<import("./sdk").GetGptStoreQuery>;
|
|
1547
|
+
getWeiXinAuthorizerURL(variables: import("./sdk").Exact<{
|
|
1548
|
+
name: string;
|
|
1549
|
+
namespace: string;
|
|
1550
|
+
}>, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<import("./sdk").GetWeiXinAuthorizerUrlQuery>;
|
|
1531
1551
|
allDataProcessListByPage(variables: import("./sdk").Exact<{
|
|
1532
1552
|
input: import("./sdk").AllDataProcessListByPageInput;
|
|
1533
1553
|
}>, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<import("./sdk").AllDataProcessListByPageQuery>;
|
package/dist/esm/index.d.ts
CHANGED
|
@@ -43,6 +43,10 @@ export declare const sdk: {
|
|
|
43
43
|
useGetGptStore(variables?: import("./sdk").Exact<{
|
|
44
44
|
[key: string]: never;
|
|
45
45
|
}> | 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>;
|
|
46
|
+
useGetWeiXinAuthorizerUrl(variables: import("./sdk").Exact<{
|
|
47
|
+
name: string;
|
|
48
|
+
namespace: string;
|
|
49
|
+
}>, config?: Partial<import("swr/_internal").PublicConfiguration<import("./sdk").GetWeiXinAuthorizerUrlQuery, import("graphql-request/src/types").ClientError, import("swr/_internal").BareFetcher<any>>> | undefined): import("./useSWR").SWRResponsePro<import("./sdk").GetWeiXinAuthorizerUrlQuery, import("graphql-request/src/types").ClientError>;
|
|
46
50
|
useAllDataProcessListByPage(variables: import("./sdk").Exact<{
|
|
47
51
|
input: import("./sdk").AllDataProcessListByPageInput;
|
|
48
52
|
}>, 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>;
|
|
@@ -327,6 +331,10 @@ export declare const sdk: {
|
|
|
327
331
|
getGPTStore(variables?: import("./sdk").Exact<{
|
|
328
332
|
[key: string]: never;
|
|
329
333
|
}> | undefined, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<import("./sdk").GetGptStoreQuery>;
|
|
334
|
+
getWeiXinAuthorizerURL(variables: import("./sdk").Exact<{
|
|
335
|
+
name: string;
|
|
336
|
+
namespace: string;
|
|
337
|
+
}>, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<import("./sdk").GetWeiXinAuthorizerUrlQuery>;
|
|
330
338
|
allDataProcessListByPage(variables: import("./sdk").Exact<{
|
|
331
339
|
input: import("./sdk").AllDataProcessListByPageInput;
|
|
332
340
|
}>, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<import("./sdk").AllDataProcessListByPageQuery>;
|
|
@@ -820,6 +828,10 @@ export declare const initSdk: (options?: SdkOptions) => {
|
|
|
820
828
|
getGPTStore(variables?: import("./sdk").Exact<{
|
|
821
829
|
[key: string]: never;
|
|
822
830
|
}> | undefined, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<import("./sdk").GetGptStoreQuery>;
|
|
831
|
+
getWeiXinAuthorizerURL(variables: import("./sdk").Exact<{
|
|
832
|
+
name: string;
|
|
833
|
+
namespace: string;
|
|
834
|
+
}>, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<import("./sdk").GetWeiXinAuthorizerUrlQuery>;
|
|
823
835
|
allDataProcessListByPage(variables: import("./sdk").Exact<{
|
|
824
836
|
input: import("./sdk").AllDataProcessListByPageInput;
|
|
825
837
|
}>, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<import("./sdk").AllDataProcessListByPageQuery>;
|
|
@@ -1241,6 +1253,10 @@ export declare const initSdkWithHooks: (options?: SdkOptions) => {
|
|
|
1241
1253
|
useGetGptStore(variables?: import("./sdk").Exact<{
|
|
1242
1254
|
[key: string]: never;
|
|
1243
1255
|
}> | 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>;
|
|
1256
|
+
useGetWeiXinAuthorizerUrl(variables: import("./sdk").Exact<{
|
|
1257
|
+
name: string;
|
|
1258
|
+
namespace: string;
|
|
1259
|
+
}>, config?: Partial<import("swr/_internal").PublicConfiguration<import("./sdk").GetWeiXinAuthorizerUrlQuery, import("graphql-request/src/types").ClientError, import("swr/_internal").BareFetcher<any>>> | undefined): import("./useSWR").SWRResponsePro<import("./sdk").GetWeiXinAuthorizerUrlQuery, import("graphql-request/src/types").ClientError>;
|
|
1244
1260
|
useAllDataProcessListByPage(variables: import("./sdk").Exact<{
|
|
1245
1261
|
input: import("./sdk").AllDataProcessListByPageInput;
|
|
1246
1262
|
}>, 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>;
|
|
@@ -1525,6 +1541,10 @@ export declare const initSdkWithHooks: (options?: SdkOptions) => {
|
|
|
1525
1541
|
getGPTStore(variables?: import("./sdk").Exact<{
|
|
1526
1542
|
[key: string]: never;
|
|
1527
1543
|
}> | undefined, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<import("./sdk").GetGptStoreQuery>;
|
|
1544
|
+
getWeiXinAuthorizerURL(variables: import("./sdk").Exact<{
|
|
1545
|
+
name: string;
|
|
1546
|
+
namespace: string;
|
|
1547
|
+
}>, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<import("./sdk").GetWeiXinAuthorizerUrlQuery>;
|
|
1528
1548
|
allDataProcessListByPage(variables: import("./sdk").Exact<{
|
|
1529
1549
|
input: import("./sdk").AllDataProcessListByPageInput;
|
|
1530
1550
|
}>, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<import("./sdk").AllDataProcessListByPageQuery>;
|
|
@@ -1946,6 +1966,10 @@ export declare const useSdk: (options?: SdkOptions) => {
|
|
|
1946
1966
|
useGetGptStore(variables?: import("./sdk").Exact<{
|
|
1947
1967
|
[key: string]: never;
|
|
1948
1968
|
}> | 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>;
|
|
1969
|
+
useGetWeiXinAuthorizerUrl(variables: import("./sdk").Exact<{
|
|
1970
|
+
name: string;
|
|
1971
|
+
namespace: string;
|
|
1972
|
+
}>, config?: Partial<import("swr/_internal").PublicConfiguration<import("./sdk").GetWeiXinAuthorizerUrlQuery, import("graphql-request/src/types").ClientError, import("swr/_internal").BareFetcher<any>>> | undefined): import("./useSWR").SWRResponsePro<import("./sdk").GetWeiXinAuthorizerUrlQuery, import("graphql-request/src/types").ClientError>;
|
|
1949
1973
|
useAllDataProcessListByPage(variables: import("./sdk").Exact<{
|
|
1950
1974
|
input: import("./sdk").AllDataProcessListByPageInput;
|
|
1951
1975
|
}>, 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>;
|
|
@@ -2230,6 +2254,10 @@ export declare const useSdk: (options?: SdkOptions) => {
|
|
|
2230
2254
|
getGPTStore(variables?: import("./sdk").Exact<{
|
|
2231
2255
|
[key: string]: never;
|
|
2232
2256
|
}> | undefined, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<import("./sdk").GetGptStoreQuery>;
|
|
2257
|
+
getWeiXinAuthorizerURL(variables: import("./sdk").Exact<{
|
|
2258
|
+
name: string;
|
|
2259
|
+
namespace: string;
|
|
2260
|
+
}>, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<import("./sdk").GetWeiXinAuthorizerUrlQuery>;
|
|
2233
2261
|
allDataProcessListByPage(variables: import("./sdk").Exact<{
|
|
2234
2262
|
input: import("./sdk").AllDataProcessListByPageInput;
|
|
2235
2263
|
}>, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<import("./sdk").AllDataProcessListByPageQuery>;
|