Skip to content

Commit

Permalink
Fix frontend types properly
Browse files Browse the repository at this point in the history
  • Loading branch information
erosselli committed Sep 26, 2024
1 parent 685ca07 commit bf1cc0e
Show file tree
Hide file tree
Showing 5 changed files with 37 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
/* istanbul ignore file */
/* tslint:disable */
/* eslint-disable */

import type { BulkUpdateFailed } from "./BulkUpdateFailed";

export type BulkSoftDeletePrivacyRequests = {
succeeded: Array<string>;
failed: Array<BulkUpdateFailed>;
};
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
/* istanbul ignore file */
/* tslint:disable */
/* eslint-disable */

import type { AdvancedSettings } from "./AdvancedSettings";
import type { FidesDatasetReference } from "./FidesDatasetReference";

/**
* DynamicErasureEmailDocsSchema Secrets Schema for API Docs
*/
export type DynamicErasureEmailDocsSchema = {
test_email_address?: string | null;
advanced_settings?: AdvancedSettings;
/**
* Dataset reference to the field containing the third party vendor name. Both third_party_vendor_name and recipient_email_address must reference the same dataset and collection.
*/
third_party_vendor_name: FidesDatasetReference;
/**
* Dataset reference to the field containing the recipient email address. Both third_party_vendor_name and recipient_email_address must reference the same dataset and collection.
*/
recipient_email_address: FidesDatasetReference;
};
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ export type PrivacyRequestFilter = {
verbose?: boolean | null;
include_identities?: boolean | null;
include_custom_privacy_request_fields?: boolean | null;
include_deleted_requests?: boolean | null;
download_csv?: boolean | null;
sort_field?: string;
sort_direction?: ColumnSort;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,4 +32,6 @@ export type PrivacyRequestResponse = {
custom_privacy_request_fields_approved_by?: string | null;
custom_privacy_request_fields_approved_at?: string | null;
source?: PrivacyRequestSource | null;
deleted_at?: string | null;
deleted_by?: string | null;
};
Original file line number Diff line number Diff line change
Expand Up @@ -34,5 +34,7 @@ export type PrivacyRequestVerboseResponse = {
custom_privacy_request_fields_approved_by?: string | null;
custom_privacy_request_fields_approved_at?: string | null;
source?: PrivacyRequestSource | null;
deleted_at?: string | null;
deleted_by?: string | null;
results: Record<string, Array<ExecutionAndAuditLogResponse>>;
};

0 comments on commit bf1cc0e

Please sign in to comment.