@connectedxm/admin-sdk 7.0.9 → 7.0.10
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.
- package/api.ts +2 -1
- package/dist/api.d.ts +2 -1
- package/dist/api.js +1 -0
- package/dist/esm/api.d.ts +2 -1
- package/dist/esm/api.js +1 -0
- package/docs/FileSource.md +2 -0
- package/package.json +1 -1
package/api.ts
CHANGED
package/dist/api.d.ts
CHANGED
|
@@ -6075,7 +6075,8 @@ export interface FaqTranslation {
|
|
|
6075
6075
|
export declare enum FileSource {
|
|
6076
6076
|
Admin = "admin",
|
|
6077
6077
|
Response = "response",
|
|
6078
|
-
Content = "content"
|
|
6078
|
+
Content = "content",
|
|
6079
|
+
Thread = "thread"
|
|
6079
6080
|
}
|
|
6080
6081
|
export interface FileUpdateInputs {
|
|
6081
6082
|
'name'?: string;
|
package/dist/api.js
CHANGED
|
@@ -695,6 +695,7 @@ var FileSource;
|
|
|
695
695
|
FileSource["Admin"] = "admin";
|
|
696
696
|
FileSource["Response"] = "response";
|
|
697
697
|
FileSource["Content"] = "content";
|
|
698
|
+
FileSource["Thread"] = "thread";
|
|
698
699
|
})(FileSource || (exports.FileSource = FileSource = {}));
|
|
699
700
|
var GetAPILog200ResponseStatusEnum;
|
|
700
701
|
(function (GetAPILog200ResponseStatusEnum) {
|
package/dist/esm/api.d.ts
CHANGED
|
@@ -6075,7 +6075,8 @@ export interface FaqTranslation {
|
|
|
6075
6075
|
export declare enum FileSource {
|
|
6076
6076
|
Admin = "admin",
|
|
6077
6077
|
Response = "response",
|
|
6078
|
-
Content = "content"
|
|
6078
|
+
Content = "content",
|
|
6079
|
+
Thread = "thread"
|
|
6079
6080
|
}
|
|
6080
6081
|
export interface FileUpdateInputs {
|
|
6081
6082
|
'name'?: string;
|
package/dist/esm/api.js
CHANGED
|
@@ -666,6 +666,7 @@ export var FileSource;
|
|
|
666
666
|
FileSource["Admin"] = "admin";
|
|
667
667
|
FileSource["Response"] = "response";
|
|
668
668
|
FileSource["Content"] = "content";
|
|
669
|
+
FileSource["Thread"] = "thread";
|
|
669
670
|
})(FileSource || (FileSource = {}));
|
|
670
671
|
export var GetAPILog200ResponseStatusEnum;
|
|
671
672
|
(function (GetAPILog200ResponseStatusEnum) {
|
package/docs/FileSource.md
CHANGED