@wildix/wim-knowledge-base-client 0.0.22 → 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",
|
|
@@ -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
|
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",
|