@wildix/wim-knowledge-base-client 0.0.20 → 0.0.22
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.
|
@@ -67,20 +67,21 @@ declare const DescribeDataSourceCommand_base: {
|
|
|
67
67
|
* // { // DescribeDataSourceOutput
|
|
68
68
|
* // result: { // DescribeDataSourceResult
|
|
69
69
|
* // confluence: { // DescribeDataSourceConfluenceResult
|
|
70
|
-
* // spaces:
|
|
71
|
-
* //
|
|
70
|
+
* // spaces: [ // DescribeDataSourceConfluenceSpacesList
|
|
71
|
+
* // { // DescribeDataSourceConfluenceSpaceResult
|
|
72
72
|
* // id: "STRING_VALUE", // required
|
|
73
73
|
* // name: "STRING_VALUE", // required
|
|
74
|
+
* // key: "STRING_VALUE",
|
|
74
75
|
* // },
|
|
75
|
-
* //
|
|
76
|
-
* // pages:
|
|
77
|
-
* //
|
|
76
|
+
* // ],
|
|
77
|
+
* // pages: [ // DescribeDataSourceConfluencePagesList
|
|
78
|
+
* // { // DescribeDataSourceConfluencePageResult
|
|
78
79
|
* // id: "STRING_VALUE", // required
|
|
79
80
|
* // parentId: "STRING_VALUE", // required
|
|
80
81
|
* // title: "STRING_VALUE", // required
|
|
81
82
|
* // position: Number("int"),
|
|
82
83
|
* // },
|
|
83
|
-
* //
|
|
84
|
+
* // ],
|
|
84
85
|
* // },
|
|
85
86
|
* // gdrive: { // DescribeDataSourceGDriveResult
|
|
86
87
|
* // sessionId: "STRING_VALUE",
|
|
@@ -825,12 +825,6 @@ export interface DescribeDataSourceConfluencePageResult {
|
|
|
825
825
|
*/
|
|
826
826
|
position?: number | undefined;
|
|
827
827
|
}
|
|
828
|
-
/**
|
|
829
|
-
* @public
|
|
830
|
-
*/
|
|
831
|
-
export interface DescribeDataSourceConfluencePagesList {
|
|
832
|
-
member?: DescribeDataSourceConfluencePageResult | undefined;
|
|
833
|
-
}
|
|
834
828
|
/**
|
|
835
829
|
* @public
|
|
836
830
|
*/
|
|
@@ -845,12 +839,11 @@ export interface DescribeDataSourceConfluenceSpaceResult {
|
|
|
845
839
|
* @public
|
|
846
840
|
*/
|
|
847
841
|
name: string;
|
|
848
|
-
|
|
849
|
-
|
|
850
|
-
|
|
851
|
-
|
|
852
|
-
|
|
853
|
-
member?: DescribeDataSourceConfluenceSpaceResult | undefined;
|
|
842
|
+
/**
|
|
843
|
+
* The key of the space.
|
|
844
|
+
* @public
|
|
845
|
+
*/
|
|
846
|
+
key?: string | undefined;
|
|
854
847
|
}
|
|
855
848
|
/**
|
|
856
849
|
* @public
|
|
@@ -860,12 +853,12 @@ export interface DescribeDataSourceConfluenceResult {
|
|
|
860
853
|
* Returns confluence spaces for selected type. Example: global, personal
|
|
861
854
|
* @public
|
|
862
855
|
*/
|
|
863
|
-
spaces?:
|
|
856
|
+
spaces?: (DescribeDataSourceConfluenceSpaceResult)[] | undefined;
|
|
864
857
|
/**
|
|
865
858
|
* Returns confluence pages for selected space.
|
|
866
859
|
* @public
|
|
867
860
|
*/
|
|
868
|
-
pages?:
|
|
861
|
+
pages?: (DescribeDataSourceConfluencePageResult)[] | undefined;
|
|
869
862
|
}
|
|
870
863
|
/**
|
|
871
864
|
* @public
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wildix/wim-knowledge-base-client",
|
|
3
3
|
"description": "@wildix/wim-knowledge-base-client client",
|
|
4
|
-
"version": "0.0.
|
|
4
|
+
"version": "0.0.22",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|