@wildix/wim-knowledge-base-client 0.0.21 → 0.0.23
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.
|
@@ -45,7 +45,7 @@ declare const DescribeDataSourceCommand_base: {
|
|
|
45
45
|
* pages: { // DescribeDataSourceConfluencePagesParameters
|
|
46
46
|
* spaceId: "STRING_VALUE", // required
|
|
47
47
|
* parentId: "STRING_VALUE",
|
|
48
|
-
*
|
|
48
|
+
* enabled: [ // StringList
|
|
49
49
|
* "STRING_VALUE",
|
|
50
50
|
* ],
|
|
51
51
|
* },
|
|
@@ -56,6 +56,9 @@ declare const DescribeDataSourceCommand_base: {
|
|
|
56
56
|
* },
|
|
57
57
|
* folders: { // DescribeDataSourceGDriveFoldersParameters
|
|
58
58
|
* parentId: "STRING_VALUE", // required
|
|
59
|
+
* enabled: [
|
|
60
|
+
* "STRING_VALUE",
|
|
61
|
+
* ],
|
|
59
62
|
* },
|
|
60
63
|
* },
|
|
61
64
|
* proxy: "DOCUMENT_VALUE",
|
|
@@ -71,6 +74,7 @@ declare const DescribeDataSourceCommand_base: {
|
|
|
71
74
|
* // { // DescribeDataSourceConfluenceSpaceResult
|
|
72
75
|
* // id: "STRING_VALUE", // required
|
|
73
76
|
* // name: "STRING_VALUE", // required
|
|
77
|
+
* // key: "STRING_VALUE",
|
|
74
78
|
* // },
|
|
75
79
|
* // ],
|
|
76
80
|
* // pages: [ // DescribeDataSourceConfluencePagesList
|
|
@@ -710,10 +710,10 @@ export interface DescribeDataSourceConfluencePagesParameters {
|
|
|
710
710
|
*/
|
|
711
711
|
parentId?: string | undefined;
|
|
712
712
|
/**
|
|
713
|
-
*
|
|
713
|
+
* List of page IDs to describe.
|
|
714
714
|
* @public
|
|
715
715
|
*/
|
|
716
|
-
|
|
716
|
+
enabled?: (string)[] | undefined;
|
|
717
717
|
}
|
|
718
718
|
/**
|
|
719
719
|
* @public
|
|
@@ -749,6 +749,11 @@ export interface DescribeDataSourceGDriveFoldersParameters {
|
|
|
749
749
|
* @public
|
|
750
750
|
*/
|
|
751
751
|
parentId: string;
|
|
752
|
+
/**
|
|
753
|
+
* List of folder IDs to describe.
|
|
754
|
+
* @public
|
|
755
|
+
*/
|
|
756
|
+
enabled?: (string)[] | undefined;
|
|
752
757
|
}
|
|
753
758
|
/**
|
|
754
759
|
* @public
|
|
@@ -839,6 +844,11 @@ export interface DescribeDataSourceConfluenceSpaceResult {
|
|
|
839
844
|
* @public
|
|
840
845
|
*/
|
|
841
846
|
name: string;
|
|
847
|
+
/**
|
|
848
|
+
* The key of the space.
|
|
849
|
+
* @public
|
|
850
|
+
*/
|
|
851
|
+
key?: string | undefined;
|
|
842
852
|
}
|
|
843
853
|
/**
|
|
844
854
|
* @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.23",
|
|
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",
|