-
Notifications
You must be signed in to change notification settings - Fork 72
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
37 additions
and
0 deletions.
There are no files selected for viewing
10 changes: 10 additions & 0 deletions
10
clients/admin-ui/src/types/api/models/BulkSoftDeletePrivacyRequests.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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>; | ||
}; |
22 changes: 22 additions & 0 deletions
22
clients/admin-ui/src/types/api/models/DynamicErasureEmailDocsSchema.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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; | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters