@stackone/core 1.63.0 → 1.65.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 +7 -2
- package/dist/index.d.ts +7 -2
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -394,6 +394,7 @@ type Connector = {
|
|
|
394
394
|
version: string;
|
|
395
395
|
key: string;
|
|
396
396
|
assets: Assets;
|
|
397
|
+
context?: string;
|
|
397
398
|
description?: string;
|
|
398
399
|
categories?: Category[];
|
|
399
400
|
authentication?: Authentication;
|
|
@@ -406,7 +407,7 @@ type Connector = {
|
|
|
406
407
|
type Assets = {
|
|
407
408
|
icon: string;
|
|
408
409
|
};
|
|
409
|
-
type OperationType = 'list' | 'get' | 'create' | 'update' | 'delete' | 'custom' | 'refresh_token' | 'unknown';
|
|
410
|
+
type OperationType = 'list' | 'get' | 'create' | 'update' | 'delete' | 'custom' | 'refresh_token' | 'test' | 'unknown';
|
|
410
411
|
type InputLocation = 'body' | 'query' | 'path' | 'headers';
|
|
411
412
|
type Input = {
|
|
412
413
|
name: string;
|
|
@@ -418,9 +419,13 @@ type Input = {
|
|
|
418
419
|
type Operation = {
|
|
419
420
|
id: string;
|
|
420
421
|
categories: Category[];
|
|
422
|
+
label: string;
|
|
421
423
|
description: string;
|
|
422
424
|
schema?: Schema;
|
|
425
|
+
schemaType: 'native' | 'unified';
|
|
426
|
+
context?: string;
|
|
423
427
|
operationType: OperationType;
|
|
428
|
+
tags?: string[];
|
|
424
429
|
entrypointUrl?: string;
|
|
425
430
|
entrypointHttpMethod?: HttpMethod;
|
|
426
431
|
inputs?: Input[];
|
|
@@ -657,4 +662,4 @@ type Account = {
|
|
|
657
662
|
projectSecureId: string;
|
|
658
663
|
};
|
|
659
664
|
//#endregion
|
|
660
|
-
export { AUTHENTICATION_SCHEMA, type Account, 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 FieldConfig, type Input, type InputLocation, type Operation, type OperationResponse, type OperationType, type Schema, type SchemaField, type Step, type StepFunction, StepFunctionName, type StepFunctionOutput, type StepFunctionParams, StepFunctionsFactory, type StepsSnapshots, type SupportConfig, areCursorsEqual, decodeCompositeId, encodeCompositeId, expandCursor, getCategoryDetails, isCompositeId, isCoreError, isCursorEmpty, isValidCategory, minifyCursor, updateCursor };
|
|
665
|
+
export { AUTHENTICATION_SCHEMA, type Account, 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 FieldConfig, type Input, type InputLocation, type Operation, type OperationResponse, type OperationType, type Schema, type SchemaField, type Step, type StepFunction, StepFunctionName, type StepFunctionOutput, type StepFunctionParams, StepFunctionsFactory, type StepsSnapshots, type SupportConfig, type TestOperationConfig, areCursorsEqual, decodeCompositeId, encodeCompositeId, expandCursor, getCategoryDetails, isCompositeId, isCoreError, isCursorEmpty, isValidCategory, minifyCursor, updateCursor };
|
package/dist/index.d.ts
CHANGED
|
@@ -394,6 +394,7 @@ type Connector = {
|
|
|
394
394
|
version: string;
|
|
395
395
|
key: string;
|
|
396
396
|
assets: Assets;
|
|
397
|
+
context?: string;
|
|
397
398
|
description?: string;
|
|
398
399
|
categories?: Category[];
|
|
399
400
|
authentication?: Authentication;
|
|
@@ -406,7 +407,7 @@ type Connector = {
|
|
|
406
407
|
type Assets = {
|
|
407
408
|
icon: string;
|
|
408
409
|
};
|
|
409
|
-
type OperationType = 'list' | 'get' | 'create' | 'update' | 'delete' | 'custom' | 'refresh_token' | 'unknown';
|
|
410
|
+
type OperationType = 'list' | 'get' | 'create' | 'update' | 'delete' | 'custom' | 'refresh_token' | 'test' | 'unknown';
|
|
410
411
|
type InputLocation = 'body' | 'query' | 'path' | 'headers';
|
|
411
412
|
type Input = {
|
|
412
413
|
name: string;
|
|
@@ -418,9 +419,13 @@ type Input = {
|
|
|
418
419
|
type Operation = {
|
|
419
420
|
id: string;
|
|
420
421
|
categories: Category[];
|
|
422
|
+
label: string;
|
|
421
423
|
description: string;
|
|
422
424
|
schema?: Schema;
|
|
425
|
+
schemaType: 'native' | 'unified';
|
|
426
|
+
context?: string;
|
|
423
427
|
operationType: OperationType;
|
|
428
|
+
tags?: string[];
|
|
424
429
|
entrypointUrl?: string;
|
|
425
430
|
entrypointHttpMethod?: HttpMethod;
|
|
426
431
|
inputs?: Input[];
|
|
@@ -657,4 +662,4 @@ type Account = {
|
|
|
657
662
|
projectSecureId: string;
|
|
658
663
|
};
|
|
659
664
|
//#endregion
|
|
660
|
-
export { AUTHENTICATION_SCHEMA, type Account, 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 FieldConfig, type Input, type InputLocation, type Operation, type OperationResponse, type OperationType, type Schema, type SchemaField, type Step, type StepFunction, StepFunctionName, type StepFunctionOutput, type StepFunctionParams, StepFunctionsFactory, type StepsSnapshots, type SupportConfig, areCursorsEqual, decodeCompositeId, encodeCompositeId, expandCursor, getCategoryDetails, isCompositeId, isCoreError, isCursorEmpty, isValidCategory, minifyCursor, updateCursor };
|
|
665
|
+
export { AUTHENTICATION_SCHEMA, type Account, 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 FieldConfig, type Input, type InputLocation, type Operation, type OperationResponse, type OperationType, type Schema, type SchemaField, type Step, type StepFunction, StepFunctionName, type StepFunctionOutput, type StepFunctionParams, StepFunctionsFactory, type StepsSnapshots, type SupportConfig, type TestOperationConfig, areCursorsEqual, decodeCompositeId, encodeCompositeId, expandCursor, getCategoryDetails, isCompositeId, isCoreError, isCursorEmpty, isValidCategory, minifyCursor, updateCursor };
|