@wildix/wim-knowledge-base-client 0.0.20 → 0.0.21
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,20 @@ 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
74
|
* // },
|
|
75
|
-
* //
|
|
76
|
-
* // pages:
|
|
77
|
-
* //
|
|
75
|
+
* // ],
|
|
76
|
+
* // pages: [ // DescribeDataSourceConfluencePagesList
|
|
77
|
+
* // { // DescribeDataSourceConfluencePageResult
|
|
78
78
|
* // id: "STRING_VALUE", // required
|
|
79
79
|
* // parentId: "STRING_VALUE", // required
|
|
80
80
|
* // title: "STRING_VALUE", // required
|
|
81
81
|
* // position: Number("int"),
|
|
82
82
|
* // },
|
|
83
|
-
* //
|
|
83
|
+
* // ],
|
|
84
84
|
* // },
|
|
85
85
|
* // gdrive: { // DescribeDataSourceGDriveResult
|
|
86
86
|
* // 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
|
*/
|
|
@@ -846,12 +840,6 @@ export interface DescribeDataSourceConfluenceSpaceResult {
|
|
|
846
840
|
*/
|
|
847
841
|
name: string;
|
|
848
842
|
}
|
|
849
|
-
/**
|
|
850
|
-
* @public
|
|
851
|
-
*/
|
|
852
|
-
export interface DescribeDataSourceConfluenceSpacesList {
|
|
853
|
-
member?: DescribeDataSourceConfluenceSpaceResult | undefined;
|
|
854
|
-
}
|
|
855
843
|
/**
|
|
856
844
|
* @public
|
|
857
845
|
*/
|
|
@@ -860,12 +848,12 @@ export interface DescribeDataSourceConfluenceResult {
|
|
|
860
848
|
* Returns confluence spaces for selected type. Example: global, personal
|
|
861
849
|
* @public
|
|
862
850
|
*/
|
|
863
|
-
spaces?:
|
|
851
|
+
spaces?: (DescribeDataSourceConfluenceSpaceResult)[] | undefined;
|
|
864
852
|
/**
|
|
865
853
|
* Returns confluence pages for selected space.
|
|
866
854
|
* @public
|
|
867
855
|
*/
|
|
868
|
-
pages?:
|
|
856
|
+
pages?: (DescribeDataSourceConfluencePageResult)[] | undefined;
|
|
869
857
|
}
|
|
870
858
|
/**
|
|
871
859
|
* @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.21",
|
|
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",
|