@stackone/core 2.1.0 → 2.2.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 -2
- package/dist/index.d.ts +5 -2
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -759,8 +759,9 @@ type Connector = {
|
|
|
759
759
|
version: string;
|
|
760
760
|
key: string;
|
|
761
761
|
assets: Assets;
|
|
762
|
-
|
|
762
|
+
resources?: string;
|
|
763
763
|
description: string;
|
|
764
|
+
details?: string;
|
|
764
765
|
categories?: Category[];
|
|
765
766
|
authentication?: Authentication;
|
|
766
767
|
actions?: {
|
|
@@ -789,10 +790,12 @@ type Action = {
|
|
|
789
790
|
categories: Category[];
|
|
790
791
|
label: string;
|
|
791
792
|
description: string;
|
|
793
|
+
details?: string;
|
|
794
|
+
examples?: Record<string, unknown>[];
|
|
792
795
|
schema?: Schema;
|
|
793
796
|
schemaType: 'native' | 'unified';
|
|
794
797
|
endpoint?: string;
|
|
795
|
-
|
|
798
|
+
resources?: string;
|
|
796
799
|
actionType: ActionType;
|
|
797
800
|
tags?: string[];
|
|
798
801
|
releaseStage?: ReleaseStage;
|
package/dist/index.d.ts
CHANGED
|
@@ -759,8 +759,9 @@ type Connector = {
|
|
|
759
759
|
version: string;
|
|
760
760
|
key: string;
|
|
761
761
|
assets: Assets;
|
|
762
|
-
|
|
762
|
+
resources?: string;
|
|
763
763
|
description: string;
|
|
764
|
+
details?: string;
|
|
764
765
|
categories?: Category[];
|
|
765
766
|
authentication?: Authentication;
|
|
766
767
|
actions?: {
|
|
@@ -789,10 +790,12 @@ type Action = {
|
|
|
789
790
|
categories: Category[];
|
|
790
791
|
label: string;
|
|
791
792
|
description: string;
|
|
793
|
+
details?: string;
|
|
794
|
+
examples?: Record<string, unknown>[];
|
|
792
795
|
schema?: Schema;
|
|
793
796
|
schemaType: 'native' | 'unified';
|
|
794
797
|
endpoint?: string;
|
|
795
|
-
|
|
798
|
+
resources?: string;
|
|
796
799
|
actionType: ActionType;
|
|
797
800
|
tags?: string[];
|
|
798
801
|
releaseStage?: ReleaseStage;
|