@yuntijs/arcadia-bff-sdk 1.2.34 → 1.2.35
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 +102 -4
- package/dist/cjs/sdk.d.ts +375 -4
- package/dist/cjs/sdk.js +115 -2
- package/dist/cjs/taro.d.ts +73 -3
- package/dist/esm/index.d.ts +102 -4
- package/dist/esm/sdk.d.ts +375 -4
- package/dist/esm/sdk.js +108 -75
- package/dist/esm/taro.d.ts +73 -3
- 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
|
@@ -11,10 +11,24 @@ export declare const responseMiddleware: (response: Response<any> | Error) => vo
|
|
|
11
11
|
export declare let endpoint: string;
|
|
12
12
|
export declare const client: GraphQLClient;
|
|
13
13
|
export declare const sdk: {
|
|
14
|
+
useGetAgentReleaseStatus(variables: import("./sdk").Exact<{
|
|
15
|
+
name: string;
|
|
16
|
+
namespace: string;
|
|
17
|
+
}>, config?: Partial<import("swr/_internal").PublicConfiguration<import("./sdk").GetAgentReleaseStatusQuery, import("graphql-request/src/types").ClientError, import("swr/_internal").BareFetcher<any>>> | undefined): import("./useSWR").SWRResponsePro<import("./sdk").GetAgentReleaseStatusQuery, import("graphql-request/src/types").ClientError>;
|
|
14
18
|
useGetAgent(variables: import("./sdk").Exact<{
|
|
15
19
|
name: string;
|
|
16
20
|
namespace: string;
|
|
17
21
|
}>, config?: Partial<import("swr/_internal").PublicConfiguration<import("./sdk").GetAgentQuery, import("graphql-request/src/types").ClientError, import("swr/_internal").BareFetcher<any>>> | undefined): import("./useSWR").SWRResponsePro<import("./sdk").GetAgentQuery, import("graphql-request/src/types").ClientError>;
|
|
22
|
+
useGetAgentLatestReleaseInEachPlatform(variables: import("./sdk").Exact<{
|
|
23
|
+
name: string;
|
|
24
|
+
namespace: string;
|
|
25
|
+
}>, config?: Partial<import("swr/_internal").PublicConfiguration<import("./sdk").GetAgentLatestReleaseInEachPlatformQuery, import("graphql-request/src/types").ClientError, import("swr/_internal").BareFetcher<any>>> | undefined): import("./useSWR").SWRResponsePro<import("./sdk").GetAgentLatestReleaseInEachPlatformQuery, import("graphql-request/src/types").ClientError>;
|
|
26
|
+
useGetAgentReleaseHistory(variables: import("./sdk").Exact<{
|
|
27
|
+
name: string;
|
|
28
|
+
namespace: string;
|
|
29
|
+
page?: import("./sdk").InputMaybe<number> | undefined;
|
|
30
|
+
pageSize?: import("./sdk").InputMaybe<number> | undefined;
|
|
31
|
+
}>, config?: Partial<import("swr/_internal").PublicConfiguration<import("./sdk").GetAgentReleaseHistoryQuery, import("graphql-request/src/types").ClientError, import("swr/_internal").BareFetcher<any>>> | undefined): import("./useSWR").SWRResponsePro<import("./sdk").GetAgentReleaseHistoryQuery, import("graphql-request/src/types").ClientError>;
|
|
18
32
|
useListAgents(variables: import("./sdk").Exact<{
|
|
19
33
|
input: import("./sdk").ListCommonInput;
|
|
20
34
|
}>, config?: Partial<import("swr/_internal").PublicConfiguration<import("./sdk").ListAgentsQuery, import("graphql-request/src/types").ClientError, import("swr/_internal").BareFetcher<any>>> | undefined): import("./useSWR").SWRResponsePro<import("./sdk").ListAgentsQuery, import("graphql-request/src/types").ClientError>;
|
|
@@ -165,7 +179,7 @@ export declare const sdk: {
|
|
|
165
179
|
releaseAgent(variables: import("./sdk").Exact<{
|
|
166
180
|
name: string;
|
|
167
181
|
namespace: string;
|
|
168
|
-
|
|
182
|
+
input: import("./sdk").ReleaseAgentInput;
|
|
169
183
|
}>, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<import("./sdk").ReleaseAgentMutation>;
|
|
170
184
|
createOrUpdateAgentPrompt(variables: import("./sdk").Exact<{
|
|
171
185
|
namespacedname: string;
|
|
@@ -187,10 +201,24 @@ export declare const sdk: {
|
|
|
187
201
|
namespacedname: string;
|
|
188
202
|
ids?: import("./sdk").InputMaybe<string | string[]> | undefined;
|
|
189
203
|
}>, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<import("./sdk").DeleteAgentPromptMutation>;
|
|
204
|
+
getAgentReleaseStatus(variables: import("./sdk").Exact<{
|
|
205
|
+
name: string;
|
|
206
|
+
namespace: string;
|
|
207
|
+
}>, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<import("./sdk").GetAgentReleaseStatusQuery>;
|
|
190
208
|
getAgent(variables: import("./sdk").Exact<{
|
|
191
209
|
name: string;
|
|
192
210
|
namespace: string;
|
|
193
211
|
}>, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<import("./sdk").GetAgentQuery>;
|
|
212
|
+
getAgentLatestReleaseInEachPlatform(variables: import("./sdk").Exact<{
|
|
213
|
+
name: string;
|
|
214
|
+
namespace: string;
|
|
215
|
+
}>, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<import("./sdk").GetAgentLatestReleaseInEachPlatformQuery>;
|
|
216
|
+
getAgentReleaseHistory(variables: import("./sdk").Exact<{
|
|
217
|
+
name: string;
|
|
218
|
+
namespace: string;
|
|
219
|
+
page?: import("./sdk").InputMaybe<number> | undefined;
|
|
220
|
+
pageSize?: import("./sdk").InputMaybe<number> | undefined;
|
|
221
|
+
}>, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<import("./sdk").GetAgentReleaseHistoryQuery>;
|
|
194
222
|
listAgents(variables: import("./sdk").Exact<{
|
|
195
223
|
input: import("./sdk").ListCommonInput;
|
|
196
224
|
}>, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<import("./sdk").ListAgentsQuery>;
|
|
@@ -462,7 +490,7 @@ export declare const initSdk: (options?: SdkOptions) => {
|
|
|
462
490
|
releaseAgent(variables: import("./sdk").Exact<{
|
|
463
491
|
name: string;
|
|
464
492
|
namespace: string;
|
|
465
|
-
|
|
493
|
+
input: import("./sdk").ReleaseAgentInput;
|
|
466
494
|
}>, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<import("./sdk").ReleaseAgentMutation>;
|
|
467
495
|
createOrUpdateAgentPrompt(variables: import("./sdk").Exact<{
|
|
468
496
|
namespacedname: string;
|
|
@@ -484,10 +512,24 @@ export declare const initSdk: (options?: SdkOptions) => {
|
|
|
484
512
|
namespacedname: string;
|
|
485
513
|
ids?: import("./sdk").InputMaybe<string | string[]> | undefined;
|
|
486
514
|
}>, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<import("./sdk").DeleteAgentPromptMutation>;
|
|
515
|
+
getAgentReleaseStatus(variables: import("./sdk").Exact<{
|
|
516
|
+
name: string;
|
|
517
|
+
namespace: string;
|
|
518
|
+
}>, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<import("./sdk").GetAgentReleaseStatusQuery>;
|
|
487
519
|
getAgent(variables: import("./sdk").Exact<{
|
|
488
520
|
name: string;
|
|
489
521
|
namespace: string;
|
|
490
522
|
}>, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<import("./sdk").GetAgentQuery>;
|
|
523
|
+
getAgentLatestReleaseInEachPlatform(variables: import("./sdk").Exact<{
|
|
524
|
+
name: string;
|
|
525
|
+
namespace: string;
|
|
526
|
+
}>, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<import("./sdk").GetAgentLatestReleaseInEachPlatformQuery>;
|
|
527
|
+
getAgentReleaseHistory(variables: import("./sdk").Exact<{
|
|
528
|
+
name: string;
|
|
529
|
+
namespace: string;
|
|
530
|
+
page?: import("./sdk").InputMaybe<number> | undefined;
|
|
531
|
+
pageSize?: import("./sdk").InputMaybe<number> | undefined;
|
|
532
|
+
}>, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<import("./sdk").GetAgentReleaseHistoryQuery>;
|
|
491
533
|
listAgents(variables: import("./sdk").Exact<{
|
|
492
534
|
input: import("./sdk").ListCommonInput;
|
|
493
535
|
}>, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<import("./sdk").ListAgentsQuery>;
|
|
@@ -729,10 +771,24 @@ export declare const initSdk: (options?: SdkOptions) => {
|
|
|
729
771
|
* @param {SdkOptions} options 配置项
|
|
730
772
|
*/
|
|
731
773
|
export declare const initSdkWithHooks: (options?: SdkOptions) => {
|
|
774
|
+
useGetAgentReleaseStatus(variables: import("./sdk").Exact<{
|
|
775
|
+
name: string;
|
|
776
|
+
namespace: string;
|
|
777
|
+
}>, config?: Partial<import("swr/_internal").PublicConfiguration<import("./sdk").GetAgentReleaseStatusQuery, import("graphql-request/src/types").ClientError, import("swr/_internal").BareFetcher<any>>> | undefined): import("./useSWR").SWRResponsePro<import("./sdk").GetAgentReleaseStatusQuery, import("graphql-request/src/types").ClientError>;
|
|
732
778
|
useGetAgent(variables: import("./sdk").Exact<{
|
|
733
779
|
name: string;
|
|
734
780
|
namespace: string;
|
|
735
781
|
}>, config?: Partial<import("swr/_internal").PublicConfiguration<import("./sdk").GetAgentQuery, import("graphql-request/src/types").ClientError, import("swr/_internal").BareFetcher<any>>> | undefined): import("./useSWR").SWRResponsePro<import("./sdk").GetAgentQuery, import("graphql-request/src/types").ClientError>;
|
|
782
|
+
useGetAgentLatestReleaseInEachPlatform(variables: import("./sdk").Exact<{
|
|
783
|
+
name: string;
|
|
784
|
+
namespace: string;
|
|
785
|
+
}>, config?: Partial<import("swr/_internal").PublicConfiguration<import("./sdk").GetAgentLatestReleaseInEachPlatformQuery, import("graphql-request/src/types").ClientError, import("swr/_internal").BareFetcher<any>>> | undefined): import("./useSWR").SWRResponsePro<import("./sdk").GetAgentLatestReleaseInEachPlatformQuery, import("graphql-request/src/types").ClientError>;
|
|
786
|
+
useGetAgentReleaseHistory(variables: import("./sdk").Exact<{
|
|
787
|
+
name: string;
|
|
788
|
+
namespace: string;
|
|
789
|
+
page?: import("./sdk").InputMaybe<number> | undefined;
|
|
790
|
+
pageSize?: import("./sdk").InputMaybe<number> | undefined;
|
|
791
|
+
}>, config?: Partial<import("swr/_internal").PublicConfiguration<import("./sdk").GetAgentReleaseHistoryQuery, import("graphql-request/src/types").ClientError, import("swr/_internal").BareFetcher<any>>> | undefined): import("./useSWR").SWRResponsePro<import("./sdk").GetAgentReleaseHistoryQuery, import("graphql-request/src/types").ClientError>;
|
|
736
792
|
useListAgents(variables: import("./sdk").Exact<{
|
|
737
793
|
input: import("./sdk").ListCommonInput;
|
|
738
794
|
}>, config?: Partial<import("swr/_internal").PublicConfiguration<import("./sdk").ListAgentsQuery, import("graphql-request/src/types").ClientError, import("swr/_internal").BareFetcher<any>>> | undefined): import("./useSWR").SWRResponsePro<import("./sdk").ListAgentsQuery, import("graphql-request/src/types").ClientError>;
|
|
@@ -883,7 +939,7 @@ export declare const initSdkWithHooks: (options?: SdkOptions) => {
|
|
|
883
939
|
releaseAgent(variables: import("./sdk").Exact<{
|
|
884
940
|
name: string;
|
|
885
941
|
namespace: string;
|
|
886
|
-
|
|
942
|
+
input: import("./sdk").ReleaseAgentInput;
|
|
887
943
|
}>, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<import("./sdk").ReleaseAgentMutation>;
|
|
888
944
|
createOrUpdateAgentPrompt(variables: import("./sdk").Exact<{
|
|
889
945
|
namespacedname: string;
|
|
@@ -905,10 +961,24 @@ export declare const initSdkWithHooks: (options?: SdkOptions) => {
|
|
|
905
961
|
namespacedname: string;
|
|
906
962
|
ids?: import("./sdk").InputMaybe<string | string[]> | undefined;
|
|
907
963
|
}>, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<import("./sdk").DeleteAgentPromptMutation>;
|
|
964
|
+
getAgentReleaseStatus(variables: import("./sdk").Exact<{
|
|
965
|
+
name: string;
|
|
966
|
+
namespace: string;
|
|
967
|
+
}>, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<import("./sdk").GetAgentReleaseStatusQuery>;
|
|
908
968
|
getAgent(variables: import("./sdk").Exact<{
|
|
909
969
|
name: string;
|
|
910
970
|
namespace: string;
|
|
911
971
|
}>, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<import("./sdk").GetAgentQuery>;
|
|
972
|
+
getAgentLatestReleaseInEachPlatform(variables: import("./sdk").Exact<{
|
|
973
|
+
name: string;
|
|
974
|
+
namespace: string;
|
|
975
|
+
}>, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<import("./sdk").GetAgentLatestReleaseInEachPlatformQuery>;
|
|
976
|
+
getAgentReleaseHistory(variables: import("./sdk").Exact<{
|
|
977
|
+
name: string;
|
|
978
|
+
namespace: string;
|
|
979
|
+
page?: import("./sdk").InputMaybe<number> | undefined;
|
|
980
|
+
pageSize?: import("./sdk").InputMaybe<number> | undefined;
|
|
981
|
+
}>, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<import("./sdk").GetAgentReleaseHistoryQuery>;
|
|
912
982
|
listAgents(variables: import("./sdk").Exact<{
|
|
913
983
|
input: import("./sdk").ListCommonInput;
|
|
914
984
|
}>, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<import("./sdk").ListAgentsQuery>;
|
|
@@ -1150,10 +1220,24 @@ export declare const initSdkWithHooks: (options?: SdkOptions) => {
|
|
|
1150
1220
|
* @param {SdkOptions} options 配置项
|
|
1151
1221
|
*/
|
|
1152
1222
|
export declare const useSdk: (options?: SdkOptions) => {
|
|
1223
|
+
useGetAgentReleaseStatus(variables: import("./sdk").Exact<{
|
|
1224
|
+
name: string;
|
|
1225
|
+
namespace: string;
|
|
1226
|
+
}>, config?: Partial<import("swr/_internal").PublicConfiguration<import("./sdk").GetAgentReleaseStatusQuery, import("graphql-request/src/types").ClientError, import("swr/_internal").BareFetcher<any>>> | undefined): import("./useSWR").SWRResponsePro<import("./sdk").GetAgentReleaseStatusQuery, import("graphql-request/src/types").ClientError>;
|
|
1153
1227
|
useGetAgent(variables: import("./sdk").Exact<{
|
|
1154
1228
|
name: string;
|
|
1155
1229
|
namespace: string;
|
|
1156
1230
|
}>, config?: Partial<import("swr/_internal").PublicConfiguration<import("./sdk").GetAgentQuery, import("graphql-request/src/types").ClientError, import("swr/_internal").BareFetcher<any>>> | undefined): import("./useSWR").SWRResponsePro<import("./sdk").GetAgentQuery, import("graphql-request/src/types").ClientError>;
|
|
1231
|
+
useGetAgentLatestReleaseInEachPlatform(variables: import("./sdk").Exact<{
|
|
1232
|
+
name: string;
|
|
1233
|
+
namespace: string;
|
|
1234
|
+
}>, config?: Partial<import("swr/_internal").PublicConfiguration<import("./sdk").GetAgentLatestReleaseInEachPlatformQuery, import("graphql-request/src/types").ClientError, import("swr/_internal").BareFetcher<any>>> | undefined): import("./useSWR").SWRResponsePro<import("./sdk").GetAgentLatestReleaseInEachPlatformQuery, import("graphql-request/src/types").ClientError>;
|
|
1235
|
+
useGetAgentReleaseHistory(variables: import("./sdk").Exact<{
|
|
1236
|
+
name: string;
|
|
1237
|
+
namespace: string;
|
|
1238
|
+
page?: import("./sdk").InputMaybe<number> | undefined;
|
|
1239
|
+
pageSize?: import("./sdk").InputMaybe<number> | undefined;
|
|
1240
|
+
}>, config?: Partial<import("swr/_internal").PublicConfiguration<import("./sdk").GetAgentReleaseHistoryQuery, import("graphql-request/src/types").ClientError, import("swr/_internal").BareFetcher<any>>> | undefined): import("./useSWR").SWRResponsePro<import("./sdk").GetAgentReleaseHistoryQuery, import("graphql-request/src/types").ClientError>;
|
|
1157
1241
|
useListAgents(variables: import("./sdk").Exact<{
|
|
1158
1242
|
input: import("./sdk").ListCommonInput;
|
|
1159
1243
|
}>, config?: Partial<import("swr/_internal").PublicConfiguration<import("./sdk").ListAgentsQuery, import("graphql-request/src/types").ClientError, import("swr/_internal").BareFetcher<any>>> | undefined): import("./useSWR").SWRResponsePro<import("./sdk").ListAgentsQuery, import("graphql-request/src/types").ClientError>;
|
|
@@ -1304,7 +1388,7 @@ export declare const useSdk: (options?: SdkOptions) => {
|
|
|
1304
1388
|
releaseAgent(variables: import("./sdk").Exact<{
|
|
1305
1389
|
name: string;
|
|
1306
1390
|
namespace: string;
|
|
1307
|
-
|
|
1391
|
+
input: import("./sdk").ReleaseAgentInput;
|
|
1308
1392
|
}>, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<import("./sdk").ReleaseAgentMutation>;
|
|
1309
1393
|
createOrUpdateAgentPrompt(variables: import("./sdk").Exact<{
|
|
1310
1394
|
namespacedname: string;
|
|
@@ -1326,10 +1410,24 @@ export declare const useSdk: (options?: SdkOptions) => {
|
|
|
1326
1410
|
namespacedname: string;
|
|
1327
1411
|
ids?: import("./sdk").InputMaybe<string | string[]> | undefined;
|
|
1328
1412
|
}>, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<import("./sdk").DeleteAgentPromptMutation>;
|
|
1413
|
+
getAgentReleaseStatus(variables: import("./sdk").Exact<{
|
|
1414
|
+
name: string;
|
|
1415
|
+
namespace: string;
|
|
1416
|
+
}>, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<import("./sdk").GetAgentReleaseStatusQuery>;
|
|
1329
1417
|
getAgent(variables: import("./sdk").Exact<{
|
|
1330
1418
|
name: string;
|
|
1331
1419
|
namespace: string;
|
|
1332
1420
|
}>, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<import("./sdk").GetAgentQuery>;
|
|
1421
|
+
getAgentLatestReleaseInEachPlatform(variables: import("./sdk").Exact<{
|
|
1422
|
+
name: string;
|
|
1423
|
+
namespace: string;
|
|
1424
|
+
}>, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<import("./sdk").GetAgentLatestReleaseInEachPlatformQuery>;
|
|
1425
|
+
getAgentReleaseHistory(variables: import("./sdk").Exact<{
|
|
1426
|
+
name: string;
|
|
1427
|
+
namespace: string;
|
|
1428
|
+
page?: import("./sdk").InputMaybe<number> | undefined;
|
|
1429
|
+
pageSize?: import("./sdk").InputMaybe<number> | undefined;
|
|
1430
|
+
}>, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<import("./sdk").GetAgentReleaseHistoryQuery>;
|
|
1333
1431
|
listAgents(variables: import("./sdk").Exact<{
|
|
1334
1432
|
input: import("./sdk").ListCommonInput;
|
|
1335
1433
|
}>, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<import("./sdk").ListAgentsQuery>;
|