@databutton/firebase-types 1.71.49 → 1.71.50
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.
|
@@ -391,10 +391,15 @@ export interface Job {
|
|
|
391
391
|
category: string | null;
|
|
392
392
|
codeBlockRef: string;
|
|
393
393
|
}
|
|
394
|
+
export declare enum AgentAccess {
|
|
395
|
+
READ_WRITE = "read-write",
|
|
396
|
+
READ_ONLY = "read-only"
|
|
397
|
+
}
|
|
394
398
|
export interface CodeBlockBase {
|
|
395
399
|
createdAtUtc: Timestamp;
|
|
396
400
|
componentId: string;
|
|
397
401
|
controlTakenBy?: PerformedBy | null;
|
|
402
|
+
agentAccess?: AgentAccess | null;
|
|
398
403
|
}
|
|
399
404
|
/**
|
|
400
405
|
* @deprecated No longer in product, but might still exist in the firebase
|
|
@@ -19,6 +19,11 @@ export var CapabilityBuildStage;
|
|
|
19
19
|
})(CapabilityBuildStage = CapabilityBuildStage || (CapabilityBuildStage = {}));
|
|
20
20
|
// @deprecated should not be used
|
|
21
21
|
export const DefaultBackendName = "functions";
|
|
22
|
+
export var AgentAccess;
|
|
23
|
+
(function (AgentAccess) {
|
|
24
|
+
AgentAccess["READ_WRITE"] = "read-write";
|
|
25
|
+
AgentAccess["READ_ONLY"] = "read-only";
|
|
26
|
+
})(AgentAccess = AgentAccess || (AgentAccess = {}));
|
|
22
27
|
export var ScheduleState;
|
|
23
28
|
(function (ScheduleState) {
|
|
24
29
|
ScheduleState["ACTIVE"] = "ACTIVE";
|