@stackone/core 2.12.1 → 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 +23 -1
- package/dist/index.d.mts +23 -1
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -1218,6 +1218,8 @@ type Connector = {
|
|
|
1218
1218
|
rateLimit?: RateLimitConfig;
|
|
1219
1219
|
concurrency?: ConcurrencyConfig;
|
|
1220
1220
|
releaseStage?: ReleaseStage;
|
|
1221
|
+
forkedFrom?: string;
|
|
1222
|
+
owner?: string;
|
|
1221
1223
|
};
|
|
1222
1224
|
type Assets = {
|
|
1223
1225
|
icon: string;
|
|
@@ -1318,12 +1320,32 @@ type AuthenticationField = {
|
|
|
1318
1320
|
type SupportConfig = {
|
|
1319
1321
|
link?: string;
|
|
1320
1322
|
description?: string;
|
|
1323
|
+
guides?: AuthenticationGuides;
|
|
1321
1324
|
};
|
|
1322
1325
|
type TestActionConfig = {
|
|
1323
1326
|
action: Action;
|
|
1324
1327
|
condition?: string;
|
|
1325
1328
|
required: boolean;
|
|
1326
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
|
+
};
|
|
1327
1349
|
type AuthenticationConfig = {
|
|
1328
1350
|
envKey: string;
|
|
1329
1351
|
envName: string;
|
|
@@ -1457,4 +1479,4 @@ type Account = {
|
|
|
1457
1479
|
originOwnerName?: string;
|
|
1458
1480
|
};
|
|
1459
1481
|
//#endregion
|
|
1460
|
-
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
|
@@ -1218,6 +1218,8 @@ type Connector = {
|
|
|
1218
1218
|
rateLimit?: RateLimitConfig;
|
|
1219
1219
|
concurrency?: ConcurrencyConfig;
|
|
1220
1220
|
releaseStage?: ReleaseStage;
|
|
1221
|
+
forkedFrom?: string;
|
|
1222
|
+
owner?: string;
|
|
1221
1223
|
};
|
|
1222
1224
|
type Assets = {
|
|
1223
1225
|
icon: string;
|
|
@@ -1318,12 +1320,32 @@ type AuthenticationField = {
|
|
|
1318
1320
|
type SupportConfig = {
|
|
1319
1321
|
link?: string;
|
|
1320
1322
|
description?: string;
|
|
1323
|
+
guides?: AuthenticationGuides;
|
|
1321
1324
|
};
|
|
1322
1325
|
type TestActionConfig = {
|
|
1323
1326
|
action: Action;
|
|
1324
1327
|
condition?: string;
|
|
1325
1328
|
required: boolean;
|
|
1326
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
|
+
};
|
|
1327
1349
|
type AuthenticationConfig = {
|
|
1328
1350
|
envKey: string;
|
|
1329
1351
|
envName: string;
|
|
@@ -1457,4 +1479,4 @@ type Account = {
|
|
|
1457
1479
|
originOwnerName?: string;
|
|
1458
1480
|
};
|
|
1459
1481
|
//#endregion
|
|
1460
|
-
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 };
|