@stackone/core 2.25.0 → 2.27.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 +7 -1
- package/dist/index.d.mts +7 -1
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -1534,10 +1534,15 @@ type TestActionConfig = {
|
|
|
1534
1534
|
condition?: string;
|
|
1535
1535
|
required: boolean;
|
|
1536
1536
|
};
|
|
1537
|
+
type GuideImage = {
|
|
1538
|
+
src: string;
|
|
1539
|
+
alt: string;
|
|
1540
|
+
};
|
|
1537
1541
|
type GuideStep = {
|
|
1538
1542
|
title: string;
|
|
1539
1543
|
content: string;
|
|
1540
1544
|
list?: string[];
|
|
1545
|
+
image?: GuideImage;
|
|
1541
1546
|
displayScopes?: boolean;
|
|
1542
1547
|
applicableScopes?: string[];
|
|
1543
1548
|
};
|
|
@@ -1545,6 +1550,7 @@ type GuideSection = {
|
|
|
1545
1550
|
title: string;
|
|
1546
1551
|
content: string;
|
|
1547
1552
|
list?: string[];
|
|
1553
|
+
image?: GuideImage;
|
|
1548
1554
|
steps?: GuideStep[];
|
|
1549
1555
|
applicableScopes?: string[];
|
|
1550
1556
|
};
|
|
@@ -1693,4 +1699,4 @@ type Account = {
|
|
|
1693
1699
|
originOwnerName?: string;
|
|
1694
1700
|
};
|
|
1695
1701
|
//#endregion
|
|
1696
|
-
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 DefenderSettings, type EnumOneOf, type FieldConfig, type ForeachStep, type Guide, type GuideSection, type GuideStep, INPUT_ENUM_REGISTRY, type Input, type InputLocation, type IntermediateStepSnapshot, type ReleaseStage, ReleaseStages, type Schema, type SchemaField, type ScopeDefinition, type Settings, type SimpleStep, type Source, type Step, type StepFunction, type StepFunctionMeta, StepFunctionName, type StepFunctionOutput, type StepFunctionParams, StepFunctionsFactory, stepFunctions as StepFunctionsRegistry, type StepsSnapshots, type StreamOutputData, type SupportConfig, type TestActionConfig, areCursorsEqual, decodeCompositeId, encodeCompositeId, expandCursor, getCategoryDetails, getInputEnumValues, isCompositeId, isCoreError, isCursorEmpty, isForeachStep, isValidCategory, isValidEnumRef, minifyCursor, updateCursor };
|
|
1702
|
+
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 DefenderMetadata, type DefenderSettings, type EnumOneOf, type FieldConfig, type ForeachStep, type Guide, type GuideImage, type GuideSection, type GuideStep, INPUT_ENUM_REGISTRY, type Input, type InputLocation, type IntermediateStepSnapshot, type ReleaseStage, ReleaseStages, type Schema, type SchemaField, type ScopeDefinition, type Settings, type SimpleStep, type Source, type Step, type StepFunction, type StepFunctionMeta, StepFunctionName, type StepFunctionOutput, type StepFunctionParams, StepFunctionsFactory, stepFunctions as StepFunctionsRegistry, type StepsSnapshots, type StreamOutputData, type SupportConfig, type TestActionConfig, areCursorsEqual, decodeCompositeId, encodeCompositeId, expandCursor, getCategoryDetails, getInputEnumValues, isCompositeId, isCoreError, isCursorEmpty, isForeachStep, isValidCategory, isValidEnumRef, minifyCursor, updateCursor };
|
package/dist/index.d.mts
CHANGED
|
@@ -1533,10 +1533,15 @@ type TestActionConfig = {
|
|
|
1533
1533
|
condition?: string;
|
|
1534
1534
|
required: boolean;
|
|
1535
1535
|
};
|
|
1536
|
+
type GuideImage = {
|
|
1537
|
+
src: string;
|
|
1538
|
+
alt: string;
|
|
1539
|
+
};
|
|
1536
1540
|
type GuideStep = {
|
|
1537
1541
|
title: string;
|
|
1538
1542
|
content: string;
|
|
1539
1543
|
list?: string[];
|
|
1544
|
+
image?: GuideImage;
|
|
1540
1545
|
displayScopes?: boolean;
|
|
1541
1546
|
applicableScopes?: string[];
|
|
1542
1547
|
};
|
|
@@ -1544,6 +1549,7 @@ type GuideSection = {
|
|
|
1544
1549
|
title: string;
|
|
1545
1550
|
content: string;
|
|
1546
1551
|
list?: string[];
|
|
1552
|
+
image?: GuideImage;
|
|
1547
1553
|
steps?: GuideStep[];
|
|
1548
1554
|
applicableScopes?: string[];
|
|
1549
1555
|
};
|
|
@@ -1692,4 +1698,4 @@ type Account = {
|
|
|
1692
1698
|
originOwnerName?: string;
|
|
1693
1699
|
};
|
|
1694
1700
|
//#endregion
|
|
1695
|
-
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 DefenderSettings, type EnumOneOf, type FieldConfig, type ForeachStep, type Guide, type GuideSection, type GuideStep, INPUT_ENUM_REGISTRY, type Input, type InputLocation, type IntermediateStepSnapshot, type ReleaseStage, ReleaseStages, type Schema, type SchemaField, type ScopeDefinition, type Settings, type SimpleStep, type Source, type Step, type StepFunction, type StepFunctionMeta, StepFunctionName, type StepFunctionOutput, type StepFunctionParams, StepFunctionsFactory, stepFunctions as StepFunctionsRegistry, type StepsSnapshots, type StreamOutputData, type SupportConfig, type TestActionConfig, areCursorsEqual, decodeCompositeId, encodeCompositeId, expandCursor, getCategoryDetails, getInputEnumValues, isCompositeId, isCoreError, isCursorEmpty, isForeachStep, isValidCategory, isValidEnumRef, minifyCursor, updateCursor };
|
|
1701
|
+
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 DefenderMetadata, type DefenderSettings, type EnumOneOf, type FieldConfig, type ForeachStep, type Guide, type GuideImage, type GuideSection, type GuideStep, INPUT_ENUM_REGISTRY, type Input, type InputLocation, type IntermediateStepSnapshot, type ReleaseStage, ReleaseStages, type Schema, type SchemaField, type ScopeDefinition, type Settings, type SimpleStep, type Source, type Step, type StepFunction, type StepFunctionMeta, StepFunctionName, type StepFunctionOutput, type StepFunctionParams, StepFunctionsFactory, stepFunctions as StepFunctionsRegistry, type StepsSnapshots, type StreamOutputData, type SupportConfig, type TestActionConfig, areCursorsEqual, decodeCompositeId, encodeCompositeId, expandCursor, getCategoryDetails, getInputEnumValues, isCompositeId, isCoreError, isCursorEmpty, isForeachStep, isValidCategory, isValidEnumRef, minifyCursor, updateCursor };
|