@stackone/core 1.25.0 → 1.26.0
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.
|
@@ -22,7 +22,8 @@ export type Block = {
|
|
|
22
22
|
export type BlockContext = {
|
|
23
23
|
projectSecureId: string;
|
|
24
24
|
accountSecureId: string;
|
|
25
|
-
|
|
25
|
+
connectorKey: string;
|
|
26
|
+
connectorVersion: string;
|
|
26
27
|
category: Category;
|
|
27
28
|
schema?: string;
|
|
28
29
|
operationType: OperationType;
|
|
@@ -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
|
};
|
|
@@ -70,4 +70,3 @@ export type Authentication = {
|
|
|
70
70
|
[envKey: string]: AuthenticationConfig;
|
|
71
71
|
};
|
|
72
72
|
};
|
|
73
|
-
export {};
|
package/dist/types/index.d.ts
CHANGED
|
@@ -6,7 +6,7 @@ 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';
|
|
12
|
+
export type { Account } from './accounts/types';
|