@databutton/firebase-types 1.95.2 → 1.95.3
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.
|
@@ -137,7 +137,8 @@ type UseIntegrationApprovalConfig = {
|
|
|
137
137
|
};
|
|
138
138
|
export type UseIntegrationApprovalRequest = ApprovalRequestBase<"use-integration", UseIntegrationApprovalConfig>;
|
|
139
139
|
type DeployProjectApprovalConfig = {
|
|
140
|
-
|
|
140
|
+
projectId: string;
|
|
141
|
+
deploymentId: string;
|
|
141
142
|
};
|
|
142
143
|
export type DeployProjectApprovalRequest = ApprovalRequestBase<"deploy-project", DeployProjectApprovalConfig>;
|
|
143
144
|
export type ApprovalRequest = AddPermissionApprovalRequest | UseIntegrationApprovalRequest | DeployProjectApprovalRequest;
|
|
@@ -420,4 +420,13 @@ export type UpsertGatingConfigRequest = {
|
|
|
420
420
|
export type UpsertGatingConfigResponse = {
|
|
421
421
|
success: boolean;
|
|
422
422
|
};
|
|
423
|
+
export type ReviewApprovalRequestRequest = {
|
|
424
|
+
accountId: string;
|
|
425
|
+
approvalRequestId: string;
|
|
426
|
+
approved: boolean;
|
|
427
|
+
comment: string;
|
|
428
|
+
};
|
|
429
|
+
export type ReviewApprovalRequestResponse = {
|
|
430
|
+
success: boolean;
|
|
431
|
+
};
|
|
423
432
|
export {};
|