@flashbacktech/flashbackclient 0.2.82 → 0.2.83
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.
|
@@ -273,10 +273,12 @@ export interface StorageBucketStatusResponse {
|
|
|
273
273
|
bucketId: string;
|
|
274
274
|
nodeStatus: NodeStatusInfo[];
|
|
275
275
|
}
|
|
276
|
-
/** Capability bitmask for filtering API keys by provider support (backend Provider.capabilities). */
|
|
276
|
+
/** Capability bitmask for filtering API keys by provider support (backend Provider.capabilities). Shared by client and backend. */
|
|
277
277
|
export declare enum ProviderCapability {
|
|
278
278
|
Storage = 1,
|
|
279
|
-
AI = 2
|
|
279
|
+
AI = 2,
|
|
280
|
+
/** General / all (e.g. OTHER provider). */
|
|
281
|
+
All = 255
|
|
280
282
|
}
|
|
281
283
|
/** Query params for GET /apikeys. When capability is set, only keys whose provider supports that capability are returned. */
|
|
282
284
|
export interface GetProviderApiKeysParams {
|
|
@@ -31,9 +31,11 @@ var RepoErrorCodes;
|
|
|
31
31
|
RepoErrorCodes["NORMAL_UNIT_CANNOT_EDIT_FOLDER"] = "NORMAL_UNIT_CANNOT_EDIT_FOLDER";
|
|
32
32
|
RepoErrorCodes["QUOTA_EXCEEDED"] = "QUOTA_EXCEEDED";
|
|
33
33
|
})(RepoErrorCodes || (exports.RepoErrorCodes = RepoErrorCodes = {}));
|
|
34
|
-
/** Capability bitmask for filtering API keys by provider support (backend Provider.capabilities). */
|
|
34
|
+
/** Capability bitmask for filtering API keys by provider support (backend Provider.capabilities). Shared by client and backend. */
|
|
35
35
|
var ProviderCapability;
|
|
36
36
|
(function (ProviderCapability) {
|
|
37
37
|
ProviderCapability[ProviderCapability["Storage"] = 1] = "Storage";
|
|
38
38
|
ProviderCapability[ProviderCapability["AI"] = 2] = "AI";
|
|
39
|
+
/** General / all (e.g. OTHER provider). */
|
|
40
|
+
ProviderCapability[ProviderCapability["All"] = 255] = "All";
|
|
39
41
|
})(ProviderCapability || (exports.ProviderCapability = ProviderCapability = {}));
|