@yuntijs/arcadia-bff-sdk 1.2.19 → 1.2.20
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 +4 -4
- package/dist/cjs/sdk.d.ts +3 -3
- package/dist/cjs/sdk.js +2 -2
- package/dist/cjs/taro.d.ts +3 -3
- package/dist/esm/index.d.ts +4 -4
- package/dist/esm/sdk.d.ts +3 -3
- package/dist/esm/sdk.js +1 -1
- package/dist/esm/taro.d.ts +3 -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
|
@@ -159,7 +159,7 @@ export declare const sdk: {
|
|
|
159
159
|
releaseApplication(variables: import("./sdk").Exact<{
|
|
160
160
|
name: string;
|
|
161
161
|
namespace: string;
|
|
162
|
-
|
|
162
|
+
isPublic: boolean;
|
|
163
163
|
}>, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<import("./sdk").ReleaseApplicationMutation>;
|
|
164
164
|
getApplication(variables: import("./sdk").Exact<{
|
|
165
165
|
name: string;
|
|
@@ -421,7 +421,7 @@ export declare const initSdk: (options?: SdkOptions) => {
|
|
|
421
421
|
releaseApplication(variables: import("./sdk").Exact<{
|
|
422
422
|
name: string;
|
|
423
423
|
namespace: string;
|
|
424
|
-
|
|
424
|
+
isPublic: boolean;
|
|
425
425
|
}>, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<import("./sdk").ReleaseApplicationMutation>;
|
|
426
426
|
getApplication(variables: import("./sdk").Exact<{
|
|
427
427
|
name: string;
|
|
@@ -798,7 +798,7 @@ export declare const initSdkWithHooks: (options?: SdkOptions) => {
|
|
|
798
798
|
releaseApplication(variables: import("./sdk").Exact<{
|
|
799
799
|
name: string;
|
|
800
800
|
namespace: string;
|
|
801
|
-
|
|
801
|
+
isPublic: boolean;
|
|
802
802
|
}>, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<import("./sdk").ReleaseApplicationMutation>;
|
|
803
803
|
getApplication(variables: import("./sdk").Exact<{
|
|
804
804
|
name: string;
|
|
@@ -1175,7 +1175,7 @@ export declare const useSdk: (options?: SdkOptions) => {
|
|
|
1175
1175
|
releaseApplication(variables: import("./sdk").Exact<{
|
|
1176
1176
|
name: string;
|
|
1177
1177
|
namespace: string;
|
|
1178
|
-
|
|
1178
|
+
isPublic: boolean;
|
|
1179
1179
|
}>, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<import("./sdk").ReleaseApplicationMutation>;
|
|
1180
1180
|
getApplication(variables: import("./sdk").Exact<{
|
|
1181
1181
|
name: string;
|
package/dist/cjs/sdk.d.ts
CHANGED
|
@@ -215,9 +215,9 @@ export type ApplicationMutationDeleteApplicationArgs = {
|
|
|
215
215
|
input: DeleteCommonInput;
|
|
216
216
|
};
|
|
217
217
|
export type ApplicationMutationReleaseApplicationArgs = {
|
|
218
|
+
isPublic: Scalars['Boolean']['input'];
|
|
218
219
|
name: Scalars['String']['input'];
|
|
219
220
|
namespace: Scalars['String']['input'];
|
|
220
|
-
released: Scalars['Boolean']['input'];
|
|
221
221
|
};
|
|
222
222
|
export type ApplicationMutationUpdateApplicationArgs = {
|
|
223
223
|
input: UpdateApplicationMetadataInput;
|
|
@@ -2848,7 +2848,7 @@ export type UpdateApplicationConfigMutation = {
|
|
|
2848
2848
|
export type ReleaseApplicationMutationVariables = Exact<{
|
|
2849
2849
|
name: Scalars['String']['input'];
|
|
2850
2850
|
namespace: Scalars['String']['input'];
|
|
2851
|
-
|
|
2851
|
+
isPublic: Scalars['Boolean']['input'];
|
|
2852
2852
|
}>;
|
|
2853
2853
|
export type ReleaseApplicationMutation = {
|
|
2854
2854
|
__typename?: 'Mutation';
|
|
@@ -5951,7 +5951,7 @@ export declare function getSdkWithHooks(client: GraphQLClient, withWrapper?: Sdk
|
|
|
5951
5951
|
releaseApplication(variables: Exact<{
|
|
5952
5952
|
name: string;
|
|
5953
5953
|
namespace: string;
|
|
5954
|
-
|
|
5954
|
+
isPublic: boolean;
|
|
5955
5955
|
}>, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<ReleaseApplicationMutation>;
|
|
5956
5956
|
getApplication(variables: Exact<{
|
|
5957
5957
|
name: string;
|
package/dist/cjs/sdk.js
CHANGED
|
@@ -217,9 +217,9 @@ var UpdateApplicationConfigDocument = import_graphql_tag.default`
|
|
|
217
217
|
}
|
|
218
218
|
`;
|
|
219
219
|
var ReleaseApplicationDocument = import_graphql_tag.default`
|
|
220
|
-
mutation releaseApplication($name: String!, $namespace: String!, $
|
|
220
|
+
mutation releaseApplication($name: String!, $namespace: String!, $isPublic: Boolean!) {
|
|
221
221
|
Application {
|
|
222
|
-
releaseApplication(name: $name, namespace: $namespace,
|
|
222
|
+
releaseApplication(name: $name, namespace: $namespace, isPublic: $isPublic) {
|
|
223
223
|
name
|
|
224
224
|
namespace
|
|
225
225
|
id
|
package/dist/cjs/taro.d.ts
CHANGED
|
@@ -47,7 +47,7 @@ export declare const initSdk: (options?: SdkOptions) => {
|
|
|
47
47
|
releaseApplication(variables: import("./sdk").Exact<{
|
|
48
48
|
name: string;
|
|
49
49
|
namespace: string;
|
|
50
|
-
|
|
50
|
+
isPublic: boolean;
|
|
51
51
|
}>, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<import("./sdk").ReleaseApplicationMutation>;
|
|
52
52
|
getApplication(variables: import("./sdk").Exact<{
|
|
53
53
|
name: string;
|
|
@@ -424,7 +424,7 @@ export declare const initSdkWithHooks: (options?: SdkOptions) => {
|
|
|
424
424
|
releaseApplication(variables: import("./sdk").Exact<{
|
|
425
425
|
name: string;
|
|
426
426
|
namespace: string;
|
|
427
|
-
|
|
427
|
+
isPublic: boolean;
|
|
428
428
|
}>, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<import("./sdk").ReleaseApplicationMutation>;
|
|
429
429
|
getApplication(variables: import("./sdk").Exact<{
|
|
430
430
|
name: string;
|
|
@@ -801,7 +801,7 @@ export declare const useSdk: (options?: SdkOptions) => {
|
|
|
801
801
|
releaseApplication(variables: import("./sdk").Exact<{
|
|
802
802
|
name: string;
|
|
803
803
|
namespace: string;
|
|
804
|
-
|
|
804
|
+
isPublic: boolean;
|
|
805
805
|
}>, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<import("./sdk").ReleaseApplicationMutation>;
|
|
806
806
|
getApplication(variables: import("./sdk").Exact<{
|
|
807
807
|
name: string;
|
package/dist/esm/index.d.ts
CHANGED
|
@@ -159,7 +159,7 @@ export declare const sdk: {
|
|
|
159
159
|
releaseApplication(variables: import("./sdk").Exact<{
|
|
160
160
|
name: string;
|
|
161
161
|
namespace: string;
|
|
162
|
-
|
|
162
|
+
isPublic: boolean;
|
|
163
163
|
}>, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<import("./sdk").ReleaseApplicationMutation>;
|
|
164
164
|
getApplication(variables: import("./sdk").Exact<{
|
|
165
165
|
name: string;
|
|
@@ -421,7 +421,7 @@ export declare const initSdk: (options?: SdkOptions) => {
|
|
|
421
421
|
releaseApplication(variables: import("./sdk").Exact<{
|
|
422
422
|
name: string;
|
|
423
423
|
namespace: string;
|
|
424
|
-
|
|
424
|
+
isPublic: boolean;
|
|
425
425
|
}>, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<import("./sdk").ReleaseApplicationMutation>;
|
|
426
426
|
getApplication(variables: import("./sdk").Exact<{
|
|
427
427
|
name: string;
|
|
@@ -798,7 +798,7 @@ export declare const initSdkWithHooks: (options?: SdkOptions) => {
|
|
|
798
798
|
releaseApplication(variables: import("./sdk").Exact<{
|
|
799
799
|
name: string;
|
|
800
800
|
namespace: string;
|
|
801
|
-
|
|
801
|
+
isPublic: boolean;
|
|
802
802
|
}>, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<import("./sdk").ReleaseApplicationMutation>;
|
|
803
803
|
getApplication(variables: import("./sdk").Exact<{
|
|
804
804
|
name: string;
|
|
@@ -1175,7 +1175,7 @@ export declare const useSdk: (options?: SdkOptions) => {
|
|
|
1175
1175
|
releaseApplication(variables: import("./sdk").Exact<{
|
|
1176
1176
|
name: string;
|
|
1177
1177
|
namespace: string;
|
|
1178
|
-
|
|
1178
|
+
isPublic: boolean;
|
|
1179
1179
|
}>, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<import("./sdk").ReleaseApplicationMutation>;
|
|
1180
1180
|
getApplication(variables: import("./sdk").Exact<{
|
|
1181
1181
|
name: string;
|
package/dist/esm/sdk.d.ts
CHANGED
|
@@ -215,9 +215,9 @@ export type ApplicationMutationDeleteApplicationArgs = {
|
|
|
215
215
|
input: DeleteCommonInput;
|
|
216
216
|
};
|
|
217
217
|
export type ApplicationMutationReleaseApplicationArgs = {
|
|
218
|
+
isPublic: Scalars['Boolean']['input'];
|
|
218
219
|
name: Scalars['String']['input'];
|
|
219
220
|
namespace: Scalars['String']['input'];
|
|
220
|
-
released: Scalars['Boolean']['input'];
|
|
221
221
|
};
|
|
222
222
|
export type ApplicationMutationUpdateApplicationArgs = {
|
|
223
223
|
input: UpdateApplicationMetadataInput;
|
|
@@ -2848,7 +2848,7 @@ export type UpdateApplicationConfigMutation = {
|
|
|
2848
2848
|
export type ReleaseApplicationMutationVariables = Exact<{
|
|
2849
2849
|
name: Scalars['String']['input'];
|
|
2850
2850
|
namespace: Scalars['String']['input'];
|
|
2851
|
-
|
|
2851
|
+
isPublic: Scalars['Boolean']['input'];
|
|
2852
2852
|
}>;
|
|
2853
2853
|
export type ReleaseApplicationMutation = {
|
|
2854
2854
|
__typename?: 'Mutation';
|
|
@@ -5951,7 +5951,7 @@ export declare function getSdkWithHooks(client: GraphQLClient, withWrapper?: Sdk
|
|
|
5951
5951
|
releaseApplication(variables: Exact<{
|
|
5952
5952
|
name: string;
|
|
5953
5953
|
namespace: string;
|
|
5954
|
-
|
|
5954
|
+
isPublic: boolean;
|
|
5955
5955
|
}>, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<ReleaseApplicationMutation>;
|
|
5956
5956
|
getApplication(variables: Exact<{
|
|
5957
5957
|
name: string;
|
package/dist/esm/sdk.js
CHANGED
|
@@ -177,7 +177,7 @@ export var CreateApplicationDocument = gql(_templateObject || (_templateObject =
|
|
|
177
177
|
export var UpdateApplicationDocument = gql(_templateObject2 || (_templateObject2 = _taggedTemplateLiteral(["\n mutation updateApplication($input: UpdateApplicationMetadataInput!) {\n Application {\n updateApplication(input: $input) {\n name\n namespace\n id\n labels\n annotations\n displayName\n description\n icon\n creator\n creationTimestamp\n updateTimestamp\n isPublic\n isRecommended\n status\n category\n notReadyReasonCode\n }\n }\n}\n "])));
|
|
178
178
|
export var DeleteApplicationDocument = gql(_templateObject3 || (_templateObject3 = _taggedTemplateLiteral(["\n mutation deleteApplication($input: DeleteCommonInput!) {\n Application {\n deleteApplication(input: $input)\n }\n}\n "])));
|
|
179
179
|
export var UpdateApplicationConfigDocument = gql(_templateObject4 || (_templateObject4 = _taggedTemplateLiteral(["\n mutation updateApplicationConfig($input: UpdateApplicationConfigInput!) {\n Application {\n updateApplicationConfig(input: $input) {\n metadata {\n name\n namespace\n id\n labels\n annotations\n displayName\n description\n icon\n creator\n creationTimestamp\n updateTimestamp\n isPublic\n isRecommended\n status\n category\n notReadyReasonCode\n }\n prologue\n model\n llm\n temperature\n maxLength\n maxTokens\n conversionWindowSize\n knowledgebase\n scoreThreshold\n numDocuments\n docNullReturn\n userPrompt\n systemPrompt\n showRespInfo\n showRetrievalInfo\n showNextGuide\n tools {\n name\n params\n }\n enableRerank\n rerankModel\n enableMultiQuery\n chatTimeout\n enableUploadFile\n chunkSize\n chunkOverlap\n batchSize\n }\n }\n}\n "])));
|
|
180
|
-
export var ReleaseApplicationDocument = gql(_templateObject5 || (_templateObject5 = _taggedTemplateLiteral(["\n mutation releaseApplication($name: String!, $namespace: String!, $
|
|
180
|
+
export var ReleaseApplicationDocument = gql(_templateObject5 || (_templateObject5 = _taggedTemplateLiteral(["\n mutation releaseApplication($name: String!, $namespace: String!, $isPublic: Boolean!) {\n Application {\n releaseApplication(name: $name, namespace: $namespace, isPublic: $isPublic) {\n name\n namespace\n id\n labels\n annotations\n displayName\n description\n icon\n creator\n creationTimestamp\n updateTimestamp\n isPublic\n isRecommended\n status\n category\n notReadyReasonCode\n }\n }\n}\n "])));
|
|
181
181
|
export var GetApplicationDocument = gql(_templateObject6 || (_templateObject6 = _taggedTemplateLiteral(["\n query getApplication($name: String!, $namespace: String!) {\n Application {\n getApplication(name: $name, namespace: $namespace) {\n metadata {\n name\n namespace\n id\n labels\n annotations\n displayName\n description\n icon\n creator\n creationTimestamp\n updateTimestamp\n isPublic\n isRecommended\n status\n category\n notReadyReasonCode\n }\n prologue\n model\n llm\n temperature\n maxLength\n maxTokens\n conversionWindowSize\n knowledgebase\n scoreThreshold\n numDocuments\n docNullReturn\n userPrompt\n systemPrompt\n showRespInfo\n showRetrievalInfo\n showNextGuide\n tools {\n name\n params\n }\n enableRerank\n rerankModel\n enableMultiQuery\n chatTimeout\n enableUploadFile\n chunkSize\n chunkOverlap\n batchSize\n }\n }\n}\n "])));
|
|
182
182
|
export var ListApplicationsDocument = gql(_templateObject7 || (_templateObject7 = _taggedTemplateLiteral(["\n query listApplications($input: ListCommonInput!) {\n Application {\n listApplicationMetadata(input: $input) {\n page\n pageSize\n totalCount\n hasNextPage\n nodes {\n ... on ApplicationMetadata {\n name\n namespace\n id\n labels\n annotations\n displayName\n description\n icon\n creator\n creationTimestamp\n updateTimestamp\n isPublic\n isRecommended\n status\n category\n notReadyReasonCode\n }\n }\n }\n }\n}\n "])));
|
|
183
183
|
export var AllDataProcessListByPageDocument = gql(_templateObject8 || (_templateObject8 = _taggedTemplateLiteral(["\n query allDataProcessListByPage($input: AllDataProcessListByPageInput!) {\n dataProcess {\n allDataProcessListByPage(input: $input) {\n status\n data {\n id\n name\n status\n pre_data_set_name\n pre_data_set_version\n post_data_set_name\n post_data_set_version\n start_datetime\n end_datetime\n error_msg\n }\n message\n }\n }\n}\n "])));
|
package/dist/esm/taro.d.ts
CHANGED
|
@@ -47,7 +47,7 @@ export declare const initSdk: (options?: SdkOptions) => {
|
|
|
47
47
|
releaseApplication(variables: import("./sdk").Exact<{
|
|
48
48
|
name: string;
|
|
49
49
|
namespace: string;
|
|
50
|
-
|
|
50
|
+
isPublic: boolean;
|
|
51
51
|
}>, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<import("./sdk").ReleaseApplicationMutation>;
|
|
52
52
|
getApplication(variables: import("./sdk").Exact<{
|
|
53
53
|
name: string;
|
|
@@ -424,7 +424,7 @@ export declare const initSdkWithHooks: (options?: SdkOptions) => {
|
|
|
424
424
|
releaseApplication(variables: import("./sdk").Exact<{
|
|
425
425
|
name: string;
|
|
426
426
|
namespace: string;
|
|
427
|
-
|
|
427
|
+
isPublic: boolean;
|
|
428
428
|
}>, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<import("./sdk").ReleaseApplicationMutation>;
|
|
429
429
|
getApplication(variables: import("./sdk").Exact<{
|
|
430
430
|
name: string;
|
|
@@ -801,7 +801,7 @@ export declare const useSdk: (options?: SdkOptions) => {
|
|
|
801
801
|
releaseApplication(variables: import("./sdk").Exact<{
|
|
802
802
|
name: string;
|
|
803
803
|
namespace: string;
|
|
804
|
-
|
|
804
|
+
isPublic: boolean;
|
|
805
805
|
}>, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<import("./sdk").ReleaseApplicationMutation>;
|
|
806
806
|
getApplication(variables: import("./sdk").Exact<{
|
|
807
807
|
name: string;
|