@flashbacktech/flashbackclient 0.2.16 → 0.2.18
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/dist/api/index.d.ts
CHANGED
|
@@ -19,4 +19,5 @@ import * as UserTypes from './types/platform/user';
|
|
|
19
19
|
import * as AiApiKeyTypes from './types/ai/aiapikey';
|
|
20
20
|
import * as AiLlmTypes from './types/ai/aillm';
|
|
21
21
|
import * as PolicyTypes from './types/ai/policy';
|
|
22
|
-
|
|
22
|
+
import * as ConversationTypes from './types/ai/conversation';
|
|
23
|
+
export { ApiClient, ApiTypes, AuthTypes, StatsTypes, ApiInterfaces, HttpError, BridgeTypes, EmailTypes, QuotaTypes, SubscriptionTypes, DeviceTypes, MFATypes, SettingsTypes, RolesTypes, WorkspaceTypes, OrganizationTypes, NodeRegistrationTypes, SystemEventTypes, UserTypes, AiApiKeyTypes, AiLlmTypes, PolicyTypes, ConversationTypes };
|
package/dist/api/index.js
CHANGED
|
@@ -33,7 +33,7 @@ var __importStar = (this && this.__importStar) || (function () {
|
|
|
33
33
|
};
|
|
34
34
|
})();
|
|
35
35
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
36
|
-
exports.PolicyTypes = exports.AiLlmTypes = exports.AiApiKeyTypes = exports.UserTypes = exports.SystemEventTypes = exports.NodeRegistrationTypes = exports.OrganizationTypes = exports.WorkspaceTypes = exports.RolesTypes = exports.SettingsTypes = exports.MFATypes = exports.DeviceTypes = exports.SubscriptionTypes = exports.QuotaTypes = exports.EmailTypes = exports.BridgeTypes = exports.HttpError = exports.ApiInterfaces = exports.StatsTypes = exports.AuthTypes = exports.ApiTypes = exports.ApiClient = void 0;
|
|
36
|
+
exports.ConversationTypes = exports.PolicyTypes = exports.AiLlmTypes = exports.AiApiKeyTypes = exports.UserTypes = exports.SystemEventTypes = exports.NodeRegistrationTypes = exports.OrganizationTypes = exports.WorkspaceTypes = exports.RolesTypes = exports.SettingsTypes = exports.MFATypes = exports.DeviceTypes = exports.SubscriptionTypes = exports.QuotaTypes = exports.EmailTypes = exports.BridgeTypes = exports.HttpError = exports.ApiInterfaces = exports.StatsTypes = exports.AuthTypes = exports.ApiTypes = exports.ApiClient = void 0;
|
|
37
37
|
const client_1 = require("./client");
|
|
38
38
|
Object.defineProperty(exports, "ApiClient", { enumerable: true, get: function () { return client_1.ApiClient; } });
|
|
39
39
|
Object.defineProperty(exports, "HttpError", { enumerable: true, get: function () { return client_1.HttpError; } });
|
|
@@ -77,3 +77,5 @@ const AiLlmTypes = __importStar(require("./types/ai/aillm"));
|
|
|
77
77
|
exports.AiLlmTypes = AiLlmTypes;
|
|
78
78
|
const PolicyTypes = __importStar(require("./types/ai/policy"));
|
|
79
79
|
exports.PolicyTypes = PolicyTypes;
|
|
80
|
+
const ConversationTypes = __importStar(require("./types/ai/conversation"));
|
|
81
|
+
exports.ConversationTypes = ConversationTypes;
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { NodeStatusInfo, NodeStatusType } from './bridge';
|
|
2
2
|
import { RepoAiLlmInfo } from '../ai/aillm';
|
|
3
|
+
import { RepoAiApiKeyDTO } from '../ai/aiapikey';
|
|
3
4
|
export declare enum StorageType {
|
|
4
5
|
S3 = "S3",
|
|
5
6
|
GCS = "GCS",
|
|
@@ -240,6 +241,7 @@ export interface StorageRepoWithBuckets {
|
|
|
240
241
|
buckets: RepoBucketInfo[];
|
|
241
242
|
aiLlms?: RepoAiLlmInfo[];
|
|
242
243
|
apiKeys?: ApiKey[];
|
|
244
|
+
aiApiKeys?: RepoAiApiKeyDTO[];
|
|
243
245
|
createdAt: string;
|
|
244
246
|
disabled?: boolean;
|
|
245
247
|
}
|