@stackone/core 1.24.0 → 1.25.1
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.
|
@@ -36,7 +36,7 @@ export type Operation = {
|
|
|
36
36
|
};
|
|
37
37
|
result?: string;
|
|
38
38
|
};
|
|
39
|
-
type AuthenticationField = {
|
|
39
|
+
export type AuthenticationField = {
|
|
40
40
|
key: string;
|
|
41
41
|
label: string;
|
|
42
42
|
type: 'text' | 'password';
|
|
@@ -46,7 +46,7 @@ type AuthenticationField = {
|
|
|
46
46
|
description?: string;
|
|
47
47
|
tooltip?: string;
|
|
48
48
|
};
|
|
49
|
-
type SupportConfig = {
|
|
49
|
+
export type SupportConfig = {
|
|
50
50
|
link: string;
|
|
51
51
|
description?: string;
|
|
52
52
|
};
|
|
@@ -62,6 +62,7 @@ export type AuthenticationConfig = {
|
|
|
62
62
|
support?: SupportConfig;
|
|
63
63
|
configFields?: AuthenticationField[];
|
|
64
64
|
setupFields?: AuthenticationField[];
|
|
65
|
+
testOperationsIds?: string[];
|
|
65
66
|
};
|
|
66
67
|
export type Authentication = {
|
|
67
68
|
[authType: string]: {
|
|
@@ -69,4 +70,3 @@ export type Authentication = {
|
|
|
69
70
|
[envKey: string]: AuthenticationConfig;
|
|
70
71
|
};
|
|
71
72
|
};
|
|
72
|
-
export {};
|
package/dist/types/index.d.ts
CHANGED
|
@@ -6,7 +6,6 @@ export { StepFunctionsFactory } from './stepFunctions/factory';
|
|
|
6
6
|
export { Schema, SchemaField } from './schema/types';
|
|
7
7
|
export { Category } from './categories/types';
|
|
8
8
|
export { getCategoryDetails, isValidCategory } from './categories';
|
|
9
|
-
export { Connector, Operation, OperationType, Authentication } from './connector/types';
|
|
9
|
+
export { Connector, Operation, OperationType, Authentication, Input, InputLocation, AuthenticationField, SupportConfig, AuthenticationConfig, } from './connector/types';
|
|
10
10
|
export { AUTHENTICATION_SCHEMA } from './stepFunctions/request/schemas';
|
|
11
|
-
export { Input } from './connector/types';
|
|
12
11
|
export { ILogger } from './logger/types';
|