@stackone/core 2.6.0 → 2.7.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 CHANGED
@@ -994,13 +994,17 @@ type Input = {
994
994
  properties?: Omit<Input, 'in'>[];
995
995
  oneOf?: EnumOneOf;
996
996
  };
997
+ type ActionExample = {
998
+ exampleDescription?: string;
999
+ [key: string]: unknown;
1000
+ };
997
1001
  type Action = {
998
1002
  id: string;
999
1003
  categories: Category[];
1000
1004
  label: string;
1001
1005
  description: string;
1002
1006
  details?: string;
1003
- examples?: Record<string, unknown>[];
1007
+ examples?: ActionExample[];
1004
1008
  schema?: Schema;
1005
1009
  schemaType: 'native' | 'unified';
1006
1010
  endpoint?: string;
@@ -1208,4 +1212,4 @@ type Account = {
1208
1212
  originOwnerName?: string;
1209
1213
  };
1210
1214
  //#endregion
1211
- export { AUTHORIZATION_SCHEMA, type Account, type Action, 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 };
1215
+ 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 };
package/dist/index.d.mts CHANGED
@@ -994,13 +994,17 @@ type Input = {
994
994
  properties?: Omit<Input, 'in'>[];
995
995
  oneOf?: EnumOneOf;
996
996
  };
997
+ type ActionExample = {
998
+ exampleDescription?: string;
999
+ [key: string]: unknown;
1000
+ };
997
1001
  type Action = {
998
1002
  id: string;
999
1003
  categories: Category[];
1000
1004
  label: string;
1001
1005
  description: string;
1002
1006
  details?: string;
1003
- examples?: Record<string, unknown>[];
1007
+ examples?: ActionExample[];
1004
1008
  schema?: Schema;
1005
1009
  schemaType: 'native' | 'unified';
1006
1010
  endpoint?: string;
@@ -1208,4 +1212,4 @@ type Account = {
1208
1212
  originOwnerName?: string;
1209
1213
  };
1210
1214
  //#endregion
1211
- export { AUTHORIZATION_SCHEMA, type Account, type Action, 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 };
1215
+ 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 };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@stackone/core",
3
- "version": "2.6.0",
3
+ "version": "2.7.0",
4
4
  "description": "",
5
5
  "main": "dist/index.cjs",
6
6
  "module": "dist/index.mjs",