@yuntijs/arcadia-bff-sdk 1.2.166 → 1.2.168
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 -0
- package/dist/cjs/sdk.d.ts +40 -0
- package/dist/cjs/sdk.js +21 -0
- package/dist/cjs/taro.d.ts +15 -0
- package/dist/esm/index.d.ts +21 -0
- package/dist/esm/sdk.d.ts +40 -0
- package/dist/esm/sdk.js +138 -127
- package/dist/esm/taro.d.ts +15 -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/esm/taro.d.ts
CHANGED
|
@@ -139,6 +139,9 @@ export declare const initSdk: (options?: SdkOptions) => {
|
|
|
139
139
|
listAgentInvocationLogs(variables?: import("./sdk").Exact<{
|
|
140
140
|
input?: import("./sdk").InputMaybe<import("./sdk").ListAgentInvocationLogsInput> | undefined;
|
|
141
141
|
}> | undefined, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<import("./sdk").ListAgentInvocationLogsQuery>;
|
|
142
|
+
listAgentInvocationLogTags(variables?: import("./sdk").Exact<{
|
|
143
|
+
input?: import("./sdk").InputMaybe<import("./sdk").ListAgentInvocationLogsInput> | undefined;
|
|
144
|
+
}> | undefined, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<import("./sdk").ListAgentInvocationLogTagsQuery>;
|
|
142
145
|
getAgentStats(variables?: import("./sdk").Exact<{
|
|
143
146
|
input?: import("./sdk").InputMaybe<import("./sdk").GetAgentStatsInput> | undefined;
|
|
144
147
|
}> | undefined, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<import("./sdk").GetAgentStatsQuery>;
|
|
@@ -598,6 +601,9 @@ export declare const initSdkWithHooks: (options?: SdkOptions) => {
|
|
|
598
601
|
useListAgentInvocationLogs(variables?: import("./sdk").Exact<{
|
|
599
602
|
input?: import("./sdk").InputMaybe<import("./sdk").ListAgentInvocationLogsInput> | undefined;
|
|
600
603
|
}> | undefined, config?: Partial<import("swr/_internal").PublicConfiguration<import("./sdk").ListAgentInvocationLogsQuery, import("graphql-request/src/types").ClientError, import("swr/_internal").BareFetcher<any>>> | undefined): import("./useSWR").SWRResponsePro<import("./sdk").ListAgentInvocationLogsQuery, import("graphql-request/src/types").ClientError>;
|
|
604
|
+
useListAgentInvocationLogTags(variables?: import("./sdk").Exact<{
|
|
605
|
+
input?: import("./sdk").InputMaybe<import("./sdk").ListAgentInvocationLogsInput> | undefined;
|
|
606
|
+
}> | undefined, config?: Partial<import("swr/_internal").PublicConfiguration<import("./sdk").ListAgentInvocationLogTagsQuery, import("graphql-request/src/types").ClientError, import("swr/_internal").BareFetcher<any>>> | undefined): import("./useSWR").SWRResponsePro<import("./sdk").ListAgentInvocationLogTagsQuery, import("graphql-request/src/types").ClientError>;
|
|
601
607
|
useGetAgentStats(variables?: import("./sdk").Exact<{
|
|
602
608
|
input?: import("./sdk").InputMaybe<import("./sdk").GetAgentStatsInput> | undefined;
|
|
603
609
|
}> | undefined, config?: Partial<import("swr/_internal").PublicConfiguration<import("./sdk").GetAgentStatsQuery, import("graphql-request/src/types").ClientError, import("swr/_internal").BareFetcher<any>>> | undefined): import("./useSWR").SWRResponsePro<import("./sdk").GetAgentStatsQuery, import("graphql-request/src/types").ClientError>;
|
|
@@ -901,6 +907,9 @@ export declare const initSdkWithHooks: (options?: SdkOptions) => {
|
|
|
901
907
|
listAgentInvocationLogs(variables?: import("./sdk").Exact<{
|
|
902
908
|
input?: import("./sdk").InputMaybe<import("./sdk").ListAgentInvocationLogsInput> | undefined;
|
|
903
909
|
}> | undefined, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<import("./sdk").ListAgentInvocationLogsQuery>;
|
|
910
|
+
listAgentInvocationLogTags(variables?: import("./sdk").Exact<{
|
|
911
|
+
input?: import("./sdk").InputMaybe<import("./sdk").ListAgentInvocationLogsInput> | undefined;
|
|
912
|
+
}> | undefined, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<import("./sdk").ListAgentInvocationLogTagsQuery>;
|
|
904
913
|
getAgentStats(variables?: import("./sdk").Exact<{
|
|
905
914
|
input?: import("./sdk").InputMaybe<import("./sdk").GetAgentStatsInput> | undefined;
|
|
906
915
|
}> | undefined, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<import("./sdk").GetAgentStatsQuery>;
|
|
@@ -1360,6 +1369,9 @@ export declare const useSdk: (options?: SdkOptions) => {
|
|
|
1360
1369
|
useListAgentInvocationLogs(variables?: import("./sdk").Exact<{
|
|
1361
1370
|
input?: import("./sdk").InputMaybe<import("./sdk").ListAgentInvocationLogsInput> | undefined;
|
|
1362
1371
|
}> | undefined, config?: Partial<import("swr/_internal").PublicConfiguration<import("./sdk").ListAgentInvocationLogsQuery, import("graphql-request/src/types").ClientError, import("swr/_internal").BareFetcher<any>>> | undefined): import("./useSWR").SWRResponsePro<import("./sdk").ListAgentInvocationLogsQuery, import("graphql-request/src/types").ClientError>;
|
|
1372
|
+
useListAgentInvocationLogTags(variables?: import("./sdk").Exact<{
|
|
1373
|
+
input?: import("./sdk").InputMaybe<import("./sdk").ListAgentInvocationLogsInput> | undefined;
|
|
1374
|
+
}> | undefined, config?: Partial<import("swr/_internal").PublicConfiguration<import("./sdk").ListAgentInvocationLogTagsQuery, import("graphql-request/src/types").ClientError, import("swr/_internal").BareFetcher<any>>> | undefined): import("./useSWR").SWRResponsePro<import("./sdk").ListAgentInvocationLogTagsQuery, import("graphql-request/src/types").ClientError>;
|
|
1363
1375
|
useGetAgentStats(variables?: import("./sdk").Exact<{
|
|
1364
1376
|
input?: import("./sdk").InputMaybe<import("./sdk").GetAgentStatsInput> | undefined;
|
|
1365
1377
|
}> | undefined, config?: Partial<import("swr/_internal").PublicConfiguration<import("./sdk").GetAgentStatsQuery, import("graphql-request/src/types").ClientError, import("swr/_internal").BareFetcher<any>>> | undefined): import("./useSWR").SWRResponsePro<import("./sdk").GetAgentStatsQuery, import("graphql-request/src/types").ClientError>;
|
|
@@ -1663,6 +1675,9 @@ export declare const useSdk: (options?: SdkOptions) => {
|
|
|
1663
1675
|
listAgentInvocationLogs(variables?: import("./sdk").Exact<{
|
|
1664
1676
|
input?: import("./sdk").InputMaybe<import("./sdk").ListAgentInvocationLogsInput> | undefined;
|
|
1665
1677
|
}> | undefined, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<import("./sdk").ListAgentInvocationLogsQuery>;
|
|
1678
|
+
listAgentInvocationLogTags(variables?: import("./sdk").Exact<{
|
|
1679
|
+
input?: import("./sdk").InputMaybe<import("./sdk").ListAgentInvocationLogsInput> | undefined;
|
|
1680
|
+
}> | undefined, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<import("./sdk").ListAgentInvocationLogTagsQuery>;
|
|
1666
1681
|
getAgentStats(variables?: import("./sdk").Exact<{
|
|
1667
1682
|
input?: import("./sdk").InputMaybe<import("./sdk").GetAgentStatsInput> | undefined;
|
|
1668
1683
|
}> | undefined, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<import("./sdk").GetAgentStatsQuery>;
|