@stackone/core 1.64.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 +5 -0
- package/dist/index.d.ts +5 -0
- 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;
|
|
@@ -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[];
|
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;
|
|
@@ -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[];
|