@stackone/core 1.52.7 → 1.53.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.mts CHANGED
@@ -175,6 +175,7 @@ type Connector = {
175
175
  title: string;
176
176
  version: string;
177
177
  key: string;
178
+ assets: Assets;
178
179
  description?: string;
179
180
  categories?: Category[];
180
181
  authentication?: Authentication;
@@ -182,6 +183,9 @@ type Connector = {
182
183
  [entrypointUrl: string]: Operation;
183
184
  };
184
185
  };
186
+ type Assets = {
187
+ icon: string;
188
+ };
185
189
  type OperationType = 'list' | 'get' | 'create' | 'update' | 'delete' | 'custom' | 'unknown';
186
190
  type InputLocation = 'body' | 'query' | 'path' | 'headers';
187
191
  type Input = {
@@ -407,4 +411,4 @@ type Account = {
407
411
  projectSecureId: string;
408
412
  };
409
413
  //#endregion
410
- export { AUTHENTICATION_SCHEMA, Account, Authentication, AuthenticationConfig, AuthenticationField, Block, BlockContext, BlockIndexedRecord, COMPOSITE_ID_LATEST_VERSION, Category, CompositeIdentifier, CompositeIdentifierConfig, CompositeIdentifierConnectorConfig, Connector, CoreError, Cursor, FieldConfig, Input, InputLocation, Operation, OperationResponse, OperationType, Schema, SchemaField, Step, StepFunction, StepFunctionName, StepFunctionOutput, StepFunctionParams, StepFunctionsFactory, StepsSnapshots, SupportConfig, areCursorsEqual, decodeCompositeId, encodeCompositeId, expandCursor, getCategoryDetails, isCompositeId, isCoreError, isCursorEmpty, isValidCategory, minifyCursor, updateCursor };
414
+ export { AUTHENTICATION_SCHEMA, Account, Assets, Authentication, AuthenticationConfig, AuthenticationField, Block, BlockContext, BlockIndexedRecord, COMPOSITE_ID_LATEST_VERSION, Category, CompositeIdentifier, CompositeIdentifierConfig, CompositeIdentifierConnectorConfig, Connector, CoreError, Cursor, FieldConfig, Input, InputLocation, Operation, OperationResponse, OperationType, Schema, SchemaField, Step, StepFunction, StepFunctionName, StepFunctionOutput, StepFunctionParams, StepFunctionsFactory, StepsSnapshots, SupportConfig, areCursorsEqual, decodeCompositeId, encodeCompositeId, expandCursor, getCategoryDetails, isCompositeId, isCoreError, isCursorEmpty, isValidCategory, minifyCursor, updateCursor };
package/dist/index.d.ts CHANGED
@@ -175,6 +175,7 @@ type Connector = {
175
175
  title: string;
176
176
  version: string;
177
177
  key: string;
178
+ assets: Assets;
178
179
  description?: string;
179
180
  categories?: Category[];
180
181
  authentication?: Authentication;
@@ -182,6 +183,9 @@ type Connector = {
182
183
  [entrypointUrl: string]: Operation;
183
184
  };
184
185
  };
186
+ type Assets = {
187
+ icon: string;
188
+ };
185
189
  type OperationType = 'list' | 'get' | 'create' | 'update' | 'delete' | 'custom' | 'unknown';
186
190
  type InputLocation = 'body' | 'query' | 'path' | 'headers';
187
191
  type Input = {
@@ -407,4 +411,4 @@ type Account = {
407
411
  projectSecureId: string;
408
412
  };
409
413
  //#endregion
410
- export { AUTHENTICATION_SCHEMA, Account, Authentication, AuthenticationConfig, AuthenticationField, Block, BlockContext, BlockIndexedRecord, COMPOSITE_ID_LATEST_VERSION, Category, CompositeIdentifier, CompositeIdentifierConfig, CompositeIdentifierConnectorConfig, Connector, CoreError, Cursor, FieldConfig, Input, InputLocation, Operation, OperationResponse, OperationType, Schema, SchemaField, Step, StepFunction, StepFunctionName, StepFunctionOutput, StepFunctionParams, StepFunctionsFactory, StepsSnapshots, SupportConfig, areCursorsEqual, decodeCompositeId, encodeCompositeId, expandCursor, getCategoryDetails, isCompositeId, isCoreError, isCursorEmpty, isValidCategory, minifyCursor, updateCursor };
414
+ export { AUTHENTICATION_SCHEMA, Account, Assets, Authentication, AuthenticationConfig, AuthenticationField, Block, BlockContext, BlockIndexedRecord, COMPOSITE_ID_LATEST_VERSION, Category, CompositeIdentifier, CompositeIdentifierConfig, CompositeIdentifierConnectorConfig, Connector, CoreError, Cursor, FieldConfig, Input, InputLocation, Operation, OperationResponse, OperationType, Schema, SchemaField, Step, StepFunction, StepFunctionName, StepFunctionOutput, StepFunctionParams, StepFunctionsFactory, StepsSnapshots, SupportConfig, areCursorsEqual, decodeCompositeId, encodeCompositeId, expandCursor, getCategoryDetails, isCompositeId, isCoreError, isCursorEmpty, isValidCategory, minifyCursor, updateCursor };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@stackone/core",
3
- "version": "1.52.7",
3
+ "version": "1.53.0",
4
4
  "description": "",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",
@@ -34,6 +34,7 @@
34
34
  "lint:fix": "npm run code:check:fix",
35
35
  "test": "FORCE_COLOR=1 vitest run",
36
36
  "test:watch": "FORCE_COLOR=1 vitest watch --silent",
37
+ "test:typecheck": "tsc --noEmit --project tsconfig.tests.json",
37
38
  "publish-release": "npm publish --access=public"
38
39
  },
39
40
  "keywords": [],