@stackone/core 2.13.0 → 2.14.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.
- package/dist/index.d.cts +21 -1
- package/dist/index.d.mts +21 -1
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -1320,12 +1320,32 @@ type AuthenticationField = {
|
|
|
1320
1320
|
type SupportConfig = {
|
|
1321
1321
|
link?: string;
|
|
1322
1322
|
description?: string;
|
|
1323
|
+
guides?: AuthenticationGuides;
|
|
1323
1324
|
};
|
|
1324
1325
|
type TestActionConfig = {
|
|
1325
1326
|
action: Action;
|
|
1326
1327
|
condition?: string;
|
|
1327
1328
|
required: boolean;
|
|
1328
1329
|
};
|
|
1330
|
+
type GuideStep = {
|
|
1331
|
+
title: string;
|
|
1332
|
+
content: string;
|
|
1333
|
+
list?: string[];
|
|
1334
|
+
};
|
|
1335
|
+
type GuideSection = {
|
|
1336
|
+
title: string;
|
|
1337
|
+
content: string;
|
|
1338
|
+
list?: string[];
|
|
1339
|
+
steps?: GuideStep[];
|
|
1340
|
+
};
|
|
1341
|
+
type Guide = {
|
|
1342
|
+
warning?: string;
|
|
1343
|
+
sections: GuideSection[];
|
|
1344
|
+
};
|
|
1345
|
+
type AuthenticationGuides = {
|
|
1346
|
+
config?: Guide;
|
|
1347
|
+
setup?: Guide;
|
|
1348
|
+
};
|
|
1329
1349
|
type AuthenticationConfig = {
|
|
1330
1350
|
envKey: string;
|
|
1331
1351
|
envName: string;
|
|
@@ -1459,4 +1479,4 @@ type Account = {
|
|
|
1459
1479
|
originOwnerName?: string;
|
|
1460
1480
|
};
|
|
1461
1481
|
//#endregion
|
|
1462
|
-
export { AUTHORIZATION_SCHEMA, type Account, type Action, type ActionExample, type ActionResponse, type ActionType, type Assets, type Authentication, type AuthenticationConfig, type AuthenticationField, type Block, type BlockContext, type BlockIndexedRecord, COMPOSITE_ID_LATEST_VERSION, type Category, type CompositeIdentifier, type CompositeIdentifierConfig, type CompositeIdentifierConnectorConfig, type Connector, CoreError, type Cursor, type EnumOneOf, type FieldConfig, INPUT_ENUM_REGISTRY, type Input, type InputLocation, type ReleaseStage, ReleaseStages, type Schema, type SchemaField, type ScopeDefinition, type Settings, type Source, type Step, type StepFunction, StepFunctionName, type StepFunctionOutput, type StepFunctionParams, StepFunctionsFactory, stepFunctions as StepFunctionsRegistry, type StepsSnapshots, type SupportConfig, type TestActionConfig, areCursorsEqual, decodeCompositeId, encodeCompositeId, expandCursor, getCategoryDetails, getInputEnumValues, isCompositeId, isCoreError, isCursorEmpty, isValidCategory, isValidEnumRef, minifyCursor, updateCursor };
|
|
1482
|
+
export { AUTHORIZATION_SCHEMA, type Account, type Action, type ActionExample, type ActionResponse, type ActionType, type Assets, type Authentication, type AuthenticationConfig, type AuthenticationField, type AuthenticationGuides, type Block, type BlockContext, type BlockIndexedRecord, COMPOSITE_ID_LATEST_VERSION, type Category, type CompositeIdentifier, type CompositeIdentifierConfig, type CompositeIdentifierConnectorConfig, type Connector, CoreError, type Cursor, type EnumOneOf, type FieldConfig, type Guide, type GuideSection, type GuideStep, INPUT_ENUM_REGISTRY, type Input, type InputLocation, type ReleaseStage, ReleaseStages, type Schema, type SchemaField, type ScopeDefinition, type Settings, type Source, type Step, type StepFunction, StepFunctionName, type StepFunctionOutput, type StepFunctionParams, StepFunctionsFactory, stepFunctions as StepFunctionsRegistry, type StepsSnapshots, type SupportConfig, type TestActionConfig, areCursorsEqual, decodeCompositeId, encodeCompositeId, expandCursor, getCategoryDetails, getInputEnumValues, isCompositeId, isCoreError, isCursorEmpty, isValidCategory, isValidEnumRef, minifyCursor, updateCursor };
|
package/dist/index.d.mts
CHANGED
|
@@ -1320,12 +1320,32 @@ type AuthenticationField = {
|
|
|
1320
1320
|
type SupportConfig = {
|
|
1321
1321
|
link?: string;
|
|
1322
1322
|
description?: string;
|
|
1323
|
+
guides?: AuthenticationGuides;
|
|
1323
1324
|
};
|
|
1324
1325
|
type TestActionConfig = {
|
|
1325
1326
|
action: Action;
|
|
1326
1327
|
condition?: string;
|
|
1327
1328
|
required: boolean;
|
|
1328
1329
|
};
|
|
1330
|
+
type GuideStep = {
|
|
1331
|
+
title: string;
|
|
1332
|
+
content: string;
|
|
1333
|
+
list?: string[];
|
|
1334
|
+
};
|
|
1335
|
+
type GuideSection = {
|
|
1336
|
+
title: string;
|
|
1337
|
+
content: string;
|
|
1338
|
+
list?: string[];
|
|
1339
|
+
steps?: GuideStep[];
|
|
1340
|
+
};
|
|
1341
|
+
type Guide = {
|
|
1342
|
+
warning?: string;
|
|
1343
|
+
sections: GuideSection[];
|
|
1344
|
+
};
|
|
1345
|
+
type AuthenticationGuides = {
|
|
1346
|
+
config?: Guide;
|
|
1347
|
+
setup?: Guide;
|
|
1348
|
+
};
|
|
1329
1349
|
type AuthenticationConfig = {
|
|
1330
1350
|
envKey: string;
|
|
1331
1351
|
envName: string;
|
|
@@ -1459,4 +1479,4 @@ type Account = {
|
|
|
1459
1479
|
originOwnerName?: string;
|
|
1460
1480
|
};
|
|
1461
1481
|
//#endregion
|
|
1462
|
-
export { AUTHORIZATION_SCHEMA, type Account, type Action, type ActionExample, type ActionResponse, type ActionType, type Assets, type Authentication, type AuthenticationConfig, type AuthenticationField, type Block, type BlockContext, type BlockIndexedRecord, COMPOSITE_ID_LATEST_VERSION, type Category, type CompositeIdentifier, type CompositeIdentifierConfig, type CompositeIdentifierConnectorConfig, type Connector, CoreError, type Cursor, type EnumOneOf, type FieldConfig, INPUT_ENUM_REGISTRY, type Input, type InputLocation, type ReleaseStage, ReleaseStages, type Schema, type SchemaField, type ScopeDefinition, type Settings, type Source, type Step, type StepFunction, StepFunctionName, type StepFunctionOutput, type StepFunctionParams, StepFunctionsFactory, stepFunctions as StepFunctionsRegistry, type StepsSnapshots, type SupportConfig, type TestActionConfig, areCursorsEqual, decodeCompositeId, encodeCompositeId, expandCursor, getCategoryDetails, getInputEnumValues, isCompositeId, isCoreError, isCursorEmpty, isValidCategory, isValidEnumRef, minifyCursor, updateCursor };
|
|
1482
|
+
export { AUTHORIZATION_SCHEMA, type Account, type Action, type ActionExample, type ActionResponse, type ActionType, type Assets, type Authentication, type AuthenticationConfig, type AuthenticationField, type AuthenticationGuides, type Block, type BlockContext, type BlockIndexedRecord, COMPOSITE_ID_LATEST_VERSION, type Category, type CompositeIdentifier, type CompositeIdentifierConfig, type CompositeIdentifierConnectorConfig, type Connector, CoreError, type Cursor, type EnumOneOf, type FieldConfig, type Guide, type GuideSection, type GuideStep, INPUT_ENUM_REGISTRY, type Input, type InputLocation, type ReleaseStage, ReleaseStages, type Schema, type SchemaField, type ScopeDefinition, type Settings, type Source, type Step, type StepFunction, StepFunctionName, type StepFunctionOutput, type StepFunctionParams, StepFunctionsFactory, stepFunctions as StepFunctionsRegistry, type StepsSnapshots, type SupportConfig, type TestActionConfig, areCursorsEqual, decodeCompositeId, encodeCompositeId, expandCursor, getCategoryDetails, getInputEnumValues, isCompositeId, isCoreError, isCursorEmpty, isValidCategory, isValidEnumRef, minifyCursor, updateCursor };
|