@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
- deploymentRef: string;
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 {};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@databutton/firebase-types",
3
- "version": "1.95.2",
3
+ "version": "1.95.3",
4
4
  "main": "lib/types/published/index.js",
5
5
  "type": "module",
6
6
  "engines": {