@wildix/wim-knowledge-base-client 0.0.32 → 0.0.33

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.
@@ -99,6 +99,7 @@ var DataSourceConfig;
99
99
  };
100
100
  })(DataSourceConfig || (exports.DataSourceConfig = DataSourceConfig = {}));
101
101
  exports.ScheduleConfiguration = {
102
+ DISABLED: "DISABLED",
102
103
  EVERY_DAY: "EVERY_DAY",
103
104
  EVERY_SIX_HOURS: "EVERY_SIX_HOURS",
104
105
  EVERY_TWELVE_HOURS: "EVERY_TWELVE_HOURS",
@@ -90,6 +90,7 @@ export var DataSourceConfig;
90
90
  };
91
91
  })(DataSourceConfig || (DataSourceConfig = {}));
92
92
  export const ScheduleConfiguration = {
93
+ DISABLED: "DISABLED",
93
94
  EVERY_DAY: "EVERY_DAY",
94
95
  EVERY_SIX_HOURS: "EVERY_SIX_HOURS",
95
96
  EVERY_TWELVE_HOURS: "EVERY_TWELVE_HOURS",
@@ -82,7 +82,7 @@ declare const ConfigureDataSourceCommand_base: {
82
82
  * ],
83
83
  * },
84
84
  * },
85
- * syncSchedule: "EVERY_SIX_HOURS" || "EVERY_TWELVE_HOURS" || "EVERY_DAY" || "EVERY_WEEK",
85
+ * syncSchedule: "DISABLED" || "EVERY_SIX_HOURS" || "EVERY_TWELVE_HOURS" || "EVERY_DAY" || "EVERY_WEEK",
86
86
  * companyId: "STRING_VALUE",
87
87
  * dataSourceId: "STRING_VALUE", // required
88
88
  * };
@@ -140,7 +140,7 @@ declare const ConfigureDataSourceCommand_base: {
140
140
  * // ],
141
141
  * // },
142
142
  * // },
143
- * // syncSchedule: "EVERY_SIX_HOURS" || "EVERY_TWELVE_HOURS" || "EVERY_DAY" || "EVERY_WEEK",
143
+ * // syncSchedule: "DISABLED" || "EVERY_SIX_HOURS" || "EVERY_TWELVE_HOURS" || "EVERY_DAY" || "EVERY_WEEK",
144
144
  * // id: "STRING_VALUE", // required
145
145
  * // companyId: "STRING_VALUE", // required
146
146
  * // documentsCount: Number("int"), // required
@@ -94,7 +94,7 @@ declare const CreateDataSourceCommand_base: {
94
94
  * // ],
95
95
  * // },
96
96
  * // },
97
- * // syncSchedule: "EVERY_SIX_HOURS" || "EVERY_TWELVE_HOURS" || "EVERY_DAY" || "EVERY_WEEK",
97
+ * // syncSchedule: "DISABLED" || "EVERY_SIX_HOURS" || "EVERY_TWELVE_HOURS" || "EVERY_DAY" || "EVERY_WEEK",
98
98
  * // id: "STRING_VALUE", // required
99
99
  * // companyId: "STRING_VALUE", // required
100
100
  * // documentsCount: Number("int"), // required
@@ -92,7 +92,7 @@ declare const GetDataSourceCommand_base: {
92
92
  * // ],
93
93
  * // },
94
94
  * // },
95
- * // syncSchedule: "EVERY_SIX_HOURS" || "EVERY_TWELVE_HOURS" || "EVERY_DAY" || "EVERY_WEEK",
95
+ * // syncSchedule: "DISABLED" || "EVERY_SIX_HOURS" || "EVERY_TWELVE_HOURS" || "EVERY_DAY" || "EVERY_WEEK",
96
96
  * // id: "STRING_VALUE", // required
97
97
  * // companyId: "STRING_VALUE", // required
98
98
  * // documentsCount: Number("int"), // required
@@ -92,7 +92,7 @@ declare const ListDataSourcesCommand_base: {
92
92
  * // ],
93
93
  * // },
94
94
  * // },
95
- * // syncSchedule: "EVERY_SIX_HOURS" || "EVERY_TWELVE_HOURS" || "EVERY_DAY" || "EVERY_WEEK",
95
+ * // syncSchedule: "DISABLED" || "EVERY_SIX_HOURS" || "EVERY_TWELVE_HOURS" || "EVERY_DAY" || "EVERY_WEEK",
96
96
  * // id: "STRING_VALUE", // required
97
97
  * // companyId: "STRING_VALUE", // required
98
98
  * // documentsCount: Number("int"), // required
@@ -94,7 +94,7 @@ declare const UpdateDataSourceCommand_base: {
94
94
  * // ],
95
95
  * // },
96
96
  * // },
97
- * // syncSchedule: "EVERY_SIX_HOURS" || "EVERY_TWELVE_HOURS" || "EVERY_DAY" || "EVERY_WEEK",
97
+ * // syncSchedule: "DISABLED" || "EVERY_SIX_HOURS" || "EVERY_TWELVE_HOURS" || "EVERY_DAY" || "EVERY_WEEK",
98
98
  * // id: "STRING_VALUE", // required
99
99
  * // companyId: "STRING_VALUE", // required
100
100
  * // documentsCount: Number("int"), // required
@@ -309,6 +309,7 @@ export declare namespace DataSourceConfig {
309
309
  * @enum
310
310
  */
311
311
  export declare const ScheduleConfiguration: {
312
+ readonly DISABLED: "DISABLED";
312
313
  readonly EVERY_DAY: "EVERY_DAY";
313
314
  readonly EVERY_SIX_HOURS: "EVERY_SIX_HOURS";
314
315
  readonly EVERY_TWELVE_HOURS: "EVERY_TWELVE_HOURS";
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.32",
4
+ "version": "0.0.33",
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",