Use string instead of any type

Signed-off-by: Bryan Frimin <bryan@getprobo.com>
This commit is contained in:
Bryan Frimin
2026-01-02 11:22:58 +01:00
parent 4013b00841
commit de0e0b596d
168 changed files with 579 additions and 563 deletions

View File

@@ -7,7 +7,15 @@
"eagerEsModules": true, "eagerEsModules": true,
"noFutureProofEnums": true, "noFutureProofEnums": true,
"output": "apps/console/src/__generated__/iam", "output": "apps/console/src/__generated__/iam",
"relativizeJsModulePaths": false "relativizeJsModulePaths": false,
"customScalarTypes": {
"Datetime": "string",
"GID": "string",
"CursorKey": "string",
"Duration": "string",
"BigInt": "string",
"EmailAddr": "string"
}
}, },
"core": { "core": {
"schema": "pkg/server/api/console/v1/schema.graphql", "schema": "pkg/server/api/console/v1/schema.graphql",
@@ -15,7 +23,15 @@
"eagerEsModules": true, "eagerEsModules": true,
"noFutureProofEnums": true, "noFutureProofEnums": true,
"output": "apps/console/src/__generated__/core", "output": "apps/console/src/__generated__/core",
"relativizeJsModulePaths": false "relativizeJsModulePaths": false,
"customScalarTypes": {
"Datetime": "string",
"GID": "string",
"CursorKey": "string",
"Duration": "string",
"BigInt": "string",
"EmailAddr": "string"
}
} }
}, },
"sources": { "sources": {

View File

@@ -1,5 +1,5 @@
/** /**
* @generated SignedSource<<ea7d06a1fdefd4e76c3f7ee3ef27f8ec>> * @generated SignedSource<<9e2e93809320c103f393c0e1e0ae3e27>>
* @lightSyntaxTransform * @lightSyntaxTransform
* @nogrep * @nogrep
*/ */
@@ -31,7 +31,7 @@ export type AssetGraphCreateMutation$data = {
readonly assetType: AssetType; readonly assetType: AssetType;
readonly canDelete: boolean; readonly canDelete: boolean;
readonly canUpdate: boolean; readonly canUpdate: boolean;
readonly createdAt: any; readonly createdAt: string;
readonly dataTypesStored: string; readonly dataTypesStored: string;
readonly id: string; readonly id: string;
readonly name: string; readonly name: string;

View File

@@ -1,5 +1,5 @@
/** /**
* @generated SignedSource<<37dc142d4245fcbf81a63926cd6c1c0e>> * @generated SignedSource<<6da31497d94651dbbe2bbaa4da7f541b>>
* @lightSyntaxTransform * @lightSyntaxTransform
* @nogrep * @nogrep
*/ */
@@ -20,7 +20,7 @@ export type AssetGraphNodeQuery$data = {
readonly assetType?: AssetType; readonly assetType?: AssetType;
readonly canDelete?: boolean; readonly canDelete?: boolean;
readonly canUpdate?: boolean; readonly canUpdate?: boolean;
readonly createdAt?: any; readonly createdAt?: string;
readonly dataTypesStored?: string; readonly dataTypesStored?: string;
readonly id?: string; readonly id?: string;
readonly name?: string; readonly name?: string;
@@ -29,7 +29,7 @@ export type AssetGraphNodeQuery$data = {
readonly id: string; readonly id: string;
}; };
readonly snapshotId?: string | null | undefined; readonly snapshotId?: string | null | undefined;
readonly updatedAt?: any; readonly updatedAt?: string;
readonly vendors?: { readonly vendors?: {
readonly edges: ReadonlyArray<{ readonly edges: ReadonlyArray<{
readonly node: { readonly node: {

View File

@@ -1,5 +1,5 @@
/** /**
* @generated SignedSource<<0d663dac1f9d0086e52882297fbc8944>> * @generated SignedSource<<383e1cf1a7ebdac22de46fbc694566fe>>
* @lightSyntaxTransform * @lightSyntaxTransform
* @nogrep * @nogrep
*/ */
@@ -35,7 +35,7 @@ export type AssetGraphUpdateMutation$data = {
readonly id: string; readonly id: string;
}; };
readonly snapshotId: string | null | undefined; readonly snapshotId: string | null | undefined;
readonly updatedAt: any; readonly updatedAt: string;
readonly vendors: { readonly vendors: {
readonly edges: ReadonlyArray<{ readonly edges: ReadonlyArray<{
readonly node: { readonly node: {

View File

@@ -1,5 +1,5 @@
/** /**
* @generated SignedSource<<a18d99b6e4ee0b256a7391f30ea1dc4f>> * @generated SignedSource<<c063f17d5bc1815246a5e498700bfec9>>
* @lightSyntaxTransform * @lightSyntaxTransform
* @nogrep * @nogrep
*/ */
@@ -17,8 +17,8 @@ export type AssetOrder = {
field: AssetOrderField; field: AssetOrderField;
}; };
export type AssetsListQuery$variables = { export type AssetsListQuery$variables = {
after?: any | null | undefined; after?: string | null | undefined;
before?: any | null | undefined; before?: string | null | undefined;
first?: number | null | undefined; first?: number | null | undefined;
id: string; id: string;
last?: number | null | undefined; last?: number | null | undefined;

View File

@@ -1,5 +1,5 @@
/** /**
* @generated SignedSource<<f9b0ae27afd022a27fc3e8860ff72729>> * @generated SignedSource<<764aed3f20dfa64736dc42751e17de65>>
* @lightSyntaxTransform * @lightSyntaxTransform
* @nogrep * @nogrep
*/ */
@@ -20,7 +20,7 @@ export type AssetsPageFragment$data = {
readonly assetType: AssetType; readonly assetType: AssetType;
readonly canDelete: boolean; readonly canDelete: boolean;
readonly canUpdate: boolean; readonly canUpdate: boolean;
readonly createdAt: any; readonly createdAt: string;
readonly dataTypesStored: string; readonly dataTypesStored: string;
readonly id: string; readonly id: string;
readonly name: string; readonly name: string;

View File

@@ -1,5 +1,5 @@
/** /**
* @generated SignedSource<<5cef509d4e44e0e0064c79fc7c3bf2e3>> * @generated SignedSource<<5da72785f4532d069a59c8bb5f12101d>>
* @lightSyntaxTransform * @lightSyntaxTransform
* @nogrep * @nogrep
*/ */
@@ -17,8 +17,8 @@ export type CreateAuditInput = {
organizationId: string; organizationId: string;
state?: AuditState | null | undefined; state?: AuditState | null | undefined;
trustCenterVisibility?: TrustCenterVisibility | null | undefined; trustCenterVisibility?: TrustCenterVisibility | null | undefined;
validFrom?: any | null | undefined; validFrom?: string | null | undefined;
validUntil?: any | null | undefined; validUntil?: string | null | undefined;
}; };
export type AuditGraphCreateMutation$variables = { export type AuditGraphCreateMutation$variables = {
connections: ReadonlyArray<string>; connections: ReadonlyArray<string>;
@@ -30,7 +30,7 @@ export type AuditGraphCreateMutation$data = {
readonly node: { readonly node: {
readonly canDelete: boolean; readonly canDelete: boolean;
readonly canUpdate: boolean; readonly canUpdate: boolean;
readonly createdAt: any; readonly createdAt: string;
readonly framework: { readonly framework: {
readonly id: string; readonly id: string;
readonly name: string; readonly name: string;
@@ -42,8 +42,8 @@ export type AuditGraphCreateMutation$data = {
readonly id: string; readonly id: string;
} | null | undefined; } | null | undefined;
readonly state: AuditState; readonly state: AuditState;
readonly validFrom: any | null | undefined; readonly validFrom: string | null | undefined;
readonly validUntil: any | null | undefined; readonly validUntil: string | null | undefined;
}; };
}; };
}; };

View File

@@ -1,5 +1,5 @@
/** /**
* @generated SignedSource<<14b4821bc7eec6b85029d0aae3a3a271>> * @generated SignedSource<<39afab5f5f832b28f00e6bd7469fa4f3>>
* @lightSyntaxTransform * @lightSyntaxTransform
* @nogrep * @nogrep
*/ */
@@ -20,12 +20,12 @@ export type AuditGraphDeleteReportMutation$data = {
readonly audit: { readonly audit: {
readonly id: string; readonly id: string;
readonly report: { readonly report: {
readonly createdAt: any; readonly createdAt: string;
readonly downloadUrl: string | null | undefined; readonly downloadUrl: string | null | undefined;
readonly filename: string; readonly filename: string;
readonly id: string; readonly id: string;
} | null | undefined; } | null | undefined;
readonly updatedAt: any; readonly updatedAt: string;
}; };
}; };
}; };

View File

@@ -1,5 +1,5 @@
/** /**
* @generated SignedSource<<c8e8bf84dd8523199ec6e0d1eed7eb01>> * @generated SignedSource<<8ce0dfdad4c98f5fa9fbbd2162a28778>>
* @lightSyntaxTransform * @lightSyntaxTransform
* @nogrep * @nogrep
*/ */
@@ -17,7 +17,7 @@ export type AuditGraphNodeQuery$data = {
readonly node: { readonly node: {
readonly canDelete?: boolean; readonly canDelete?: boolean;
readonly canUpdate?: boolean; readonly canUpdate?: boolean;
readonly createdAt?: any; readonly createdAt?: string;
readonly framework?: { readonly framework?: {
readonly darkLogoURL: string | null | undefined; readonly darkLogoURL: string | null | undefined;
readonly id: string; readonly id: string;
@@ -31,7 +31,7 @@ export type AuditGraphNodeQuery$data = {
readonly name: string; readonly name: string;
}; };
readonly report?: { readonly report?: {
readonly createdAt: any; readonly createdAt: string;
readonly downloadUrl: string | null | undefined; readonly downloadUrl: string | null | undefined;
readonly filename: string; readonly filename: string;
readonly id: string; readonly id: string;
@@ -40,9 +40,9 @@ export type AuditGraphNodeQuery$data = {
} | null | undefined; } | null | undefined;
readonly reportUrl?: string | null | undefined; readonly reportUrl?: string | null | undefined;
readonly state?: AuditState; readonly state?: AuditState;
readonly updatedAt?: any; readonly updatedAt?: string;
readonly validFrom?: any | null | undefined; readonly validFrom?: string | null | undefined;
readonly validUntil?: any | null | undefined; readonly validUntil?: string | null | undefined;
}; };
}; };
export type AuditGraphNodeQuery = { export type AuditGraphNodeQuery = {

View File

@@ -1,5 +1,5 @@
/** /**
* @generated SignedSource<<014a8f33bc7d6674a2a93e8b3dde8edf>> * @generated SignedSource<<1b9fd2fad98545d0e1ca4440a6a8936a>>
* @lightSyntaxTransform * @lightSyntaxTransform
* @nogrep * @nogrep
*/ */
@@ -16,8 +16,8 @@ export type UpdateAuditInput = {
name?: string | null | undefined; name?: string | null | undefined;
state?: AuditState | null | undefined; state?: AuditState | null | undefined;
trustCenterVisibility?: TrustCenterVisibility | null | undefined; trustCenterVisibility?: TrustCenterVisibility | null | undefined;
validFrom?: any | null | undefined; validFrom?: string | null | undefined;
validUntil?: any | null | undefined; validUntil?: string | null | undefined;
}; };
export type AuditGraphUpdateMutation$variables = { export type AuditGraphUpdateMutation$variables = {
input: UpdateAuditInput; input: UpdateAuditInput;
@@ -36,9 +36,9 @@ export type AuditGraphUpdateMutation$data = {
readonly id: string; readonly id: string;
} | null | undefined; } | null | undefined;
readonly state: AuditState; readonly state: AuditState;
readonly updatedAt: any; readonly updatedAt: string;
readonly validFrom: any | null | undefined; readonly validFrom: string | null | undefined;
readonly validUntil: any | null | undefined; readonly validUntil: string | null | undefined;
}; };
}; };
}; };

View File

@@ -1,5 +1,5 @@
/** /**
* @generated SignedSource<<39001f4e110ade4633319d2e71f1377f>> * @generated SignedSource<<497a7821f6c5e32068e495ccb8489075>>
* @lightSyntaxTransform * @lightSyntaxTransform
* @nogrep * @nogrep
*/ */
@@ -21,12 +21,12 @@ export type AuditGraphUploadReportMutation$data = {
readonly audit: { readonly audit: {
readonly id: string; readonly id: string;
readonly report: { readonly report: {
readonly createdAt: any; readonly createdAt: string;
readonly downloadUrl: string | null | undefined; readonly downloadUrl: string | null | undefined;
readonly filename: string; readonly filename: string;
readonly id: string; readonly id: string;
} | null | undefined; } | null | undefined;
readonly updatedAt: any; readonly updatedAt: string;
}; };
}; };
}; };

View File

@@ -1,5 +1,5 @@
/** /**
* @generated SignedSource<<21026731cd2ebaf80c8c2e251b9a57f8>> * @generated SignedSource<<b1303e995857ee0207b8a09f76e2ed2a>>
* @lightSyntaxTransform * @lightSyntaxTransform
* @nogrep * @nogrep
*/ */
@@ -25,8 +25,8 @@ export type AuditSelectFieldQuery$data = {
readonly id: string; readonly id: string;
readonly name: string | null | undefined; readonly name: string | null | undefined;
readonly state: AuditState; readonly state: AuditState;
readonly validFrom: any | null | undefined; readonly validFrom: string | null | undefined;
readonly validUntil: any | null | undefined; readonly validUntil: string | null | undefined;
}; };
}>; }>;
}; };

View File

@@ -1,5 +1,5 @@
/** /**
* @generated SignedSource<<36758d66ccb0304442a2a59898fe95a0>> * @generated SignedSource<<4cd493e5c45c274b8d7aabdac8c62f95>>
* @lightSyntaxTransform * @lightSyntaxTransform
* @nogrep * @nogrep
*/ */
@@ -17,8 +17,8 @@ export type AuditOrder = {
field: AuditOrderField; field: AuditOrderField;
}; };
export type AuditsListQuery$variables = { export type AuditsListQuery$variables = {
after?: any | null | undefined; after?: string | null | undefined;
before?: any | null | undefined; before?: string | null | undefined;
first?: number | null | undefined; first?: number | null | undefined;
id: string; id: string;
last?: number | null | undefined; last?: number | null | undefined;

View File

@@ -1,5 +1,5 @@
/** /**
* @generated SignedSource<<075733c8694be657990e9fb8399c1ae6>> * @generated SignedSource<<eb5012ba560d977fd2d9c44a5e567c7c>>
* @lightSyntaxTransform * @lightSyntaxTransform
* @nogrep * @nogrep
*/ */
@@ -18,7 +18,7 @@ export type AuditsPageFragment$data = {
readonly node: { readonly node: {
readonly canDelete: boolean; readonly canDelete: boolean;
readonly canUpdate: boolean; readonly canUpdate: boolean;
readonly createdAt: any; readonly createdAt: string;
readonly framework: { readonly framework: {
readonly id: string; readonly id: string;
readonly name: string; readonly name: string;
@@ -30,8 +30,8 @@ export type AuditsPageFragment$data = {
readonly id: string; readonly id: string;
} | null | undefined; } | null | undefined;
readonly state: AuditState; readonly state: AuditState;
readonly validFrom: any | null | undefined; readonly validFrom: string | null | undefined;
readonly validUntil: any | null | undefined; readonly validUntil: string | null | undefined;
}; };
}>; }>;
}; };

View File

@@ -1,5 +1,5 @@
/** /**
* @generated SignedSource<<5fd3a3293bd92112440eef3fd292fdc1>> * @generated SignedSource<<5c8614e9d015da9e6d79c806b556de1d>>
* @lightSyntaxTransform * @lightSyntaxTransform
* @nogrep * @nogrep
*/ */
@@ -17,8 +17,8 @@ export type VendorComplianceReportOrder = {
field: VendorComplianceReportOrderField; field: VendorComplianceReportOrderField;
}; };
export type ComplianceReportListQuery$variables = { export type ComplianceReportListQuery$variables = {
after?: any | null | undefined; after?: string | null | undefined;
before?: any | null | undefined; before?: string | null | undefined;
first?: number | null | undefined; first?: number | null | undefined;
id: string; id: string;
last?: number | null | undefined; last?: number | null | undefined;

View File

@@ -1,5 +1,5 @@
/** /**
* @generated SignedSource<<a63771cb94fb0efc99bb250d7cd8a052>> * @generated SignedSource<<26fe2860690fb0293c685dbc139eed04>>
* @lightSyntaxTransform * @lightSyntaxTransform
* @nogrep * @nogrep
*/ */
@@ -19,7 +19,7 @@ export type CreateContinualImprovementInput = {
referenceId: string; referenceId: string;
source?: string | null | undefined; source?: string | null | undefined;
status: ContinualImprovementStatus; status: ContinualImprovementStatus;
targetDate?: any | null | undefined; targetDate?: string | null | undefined;
}; };
export type ContinualImprovementGraphCreateMutation$variables = { export type ContinualImprovementGraphCreateMutation$variables = {
connections: ReadonlyArray<string>; connections: ReadonlyArray<string>;
@@ -31,7 +31,7 @@ export type ContinualImprovementGraphCreateMutation$data = {
readonly node: { readonly node: {
readonly canDelete: boolean; readonly canDelete: boolean;
readonly canUpdate: boolean; readonly canUpdate: boolean;
readonly createdAt: any; readonly createdAt: string;
readonly description: string | null | undefined; readonly description: string | null | undefined;
readonly id: string; readonly id: string;
readonly owner: { readonly owner: {
@@ -42,7 +42,7 @@ export type ContinualImprovementGraphCreateMutation$data = {
readonly referenceId: string; readonly referenceId: string;
readonly source: string | null | undefined; readonly source: string | null | undefined;
readonly status: ContinualImprovementStatus; readonly status: ContinualImprovementStatus;
readonly targetDate: any | null | undefined; readonly targetDate: string | null | undefined;
}; };
}; };
}; };

View File

@@ -1,5 +1,5 @@
/** /**
* @generated SignedSource<<eb936356e9504b1cd4eefb80b699987f>> * @generated SignedSource<<7b00b5b2a993258ddb345ad0ee9bbe35>>
* @lightSyntaxTransform * @lightSyntaxTransform
* @nogrep * @nogrep
*/ */
@@ -18,7 +18,7 @@ export type ContinualImprovementGraphNodeQuery$data = {
readonly node: { readonly node: {
readonly canDelete?: boolean; readonly canDelete?: boolean;
readonly canUpdate?: boolean; readonly canUpdate?: boolean;
readonly createdAt?: any; readonly createdAt?: string;
readonly description?: string | null | undefined; readonly description?: string | null | undefined;
readonly id?: string; readonly id?: string;
readonly organization?: { readonly organization?: {
@@ -35,8 +35,8 @@ export type ContinualImprovementGraphNodeQuery$data = {
readonly source?: string | null | undefined; readonly source?: string | null | undefined;
readonly sourceId?: string | null | undefined; readonly sourceId?: string | null | undefined;
readonly status?: ContinualImprovementStatus; readonly status?: ContinualImprovementStatus;
readonly targetDate?: any | null | undefined; readonly targetDate?: string | null | undefined;
readonly updatedAt?: any; readonly updatedAt?: string;
}; };
}; };
export type ContinualImprovementGraphNodeQuery = { export type ContinualImprovementGraphNodeQuery = {

View File

@@ -1,5 +1,5 @@
/** /**
* @generated SignedSource<<ee5765584398e50a4997f7cd1e75759d>> * @generated SignedSource<<8f25fa0f640847e45cf45de0028f51fe>>
* @lightSyntaxTransform * @lightSyntaxTransform
* @nogrep * @nogrep
*/ */
@@ -19,7 +19,7 @@ export type UpdateContinualImprovementInput = {
referenceId?: string | null | undefined; referenceId?: string | null | undefined;
source?: string | null | undefined; source?: string | null | undefined;
status?: ContinualImprovementStatus | null | undefined; status?: ContinualImprovementStatus | null | undefined;
targetDate?: any | null | undefined; targetDate?: string | null | undefined;
}; };
export type ContinualImprovementGraphUpdateMutation$variables = { export type ContinualImprovementGraphUpdateMutation$variables = {
input: UpdateContinualImprovementInput; input: UpdateContinualImprovementInput;
@@ -37,8 +37,8 @@ export type ContinualImprovementGraphUpdateMutation$data = {
readonly referenceId: string; readonly referenceId: string;
readonly source: string | null | undefined; readonly source: string | null | undefined;
readonly status: ContinualImprovementStatus; readonly status: ContinualImprovementStatus;
readonly targetDate: any | null | undefined; readonly targetDate: string | null | undefined;
readonly updatedAt: any; readonly updatedAt: string;
}; };
}; };
}; };

View File

@@ -1,5 +1,5 @@
/** /**
* @generated SignedSource<<0ddcefe367b8dfd3bb64b1891afc7e2e>> * @generated SignedSource<<96a4e00e0e084578f763cf56aa89de2e>>
* @lightSyntaxTransform * @lightSyntaxTransform
* @nogrep * @nogrep
*/ */
@@ -19,7 +19,7 @@ export type ContinualImprovementsPageFragment$data = {
readonly node: { readonly node: {
readonly canDelete: boolean; readonly canDelete: boolean;
readonly canUpdate: boolean; readonly canUpdate: boolean;
readonly createdAt: any; readonly createdAt: string;
readonly description: string | null | undefined; readonly description: string | null | undefined;
readonly id: string; readonly id: string;
readonly owner: { readonly owner: {
@@ -32,12 +32,12 @@ export type ContinualImprovementsPageFragment$data = {
readonly source: string | null | undefined; readonly source: string | null | undefined;
readonly sourceId: string | null | undefined; readonly sourceId: string | null | undefined;
readonly status: ContinualImprovementStatus; readonly status: ContinualImprovementStatus;
readonly targetDate: any | null | undefined; readonly targetDate: string | null | undefined;
readonly updatedAt: any; readonly updatedAt: string;
}; };
}>; }>;
readonly pageInfo: { readonly pageInfo: {
readonly endCursor: any | null | undefined; readonly endCursor: string | null | undefined;
readonly hasNextPage: boolean; readonly hasNextPage: boolean;
}; };
readonly totalCount: number; readonly totalCount: number;

View File

@@ -1,5 +1,5 @@
/** /**
* @generated SignedSource<<7c33b43cf4643af5c173b4cabd2047a8>> * @generated SignedSource<<a1caf481759576bb7bea347f130c3357>>
* @lightSyntaxTransform * @lightSyntaxTransform
* @nogrep * @nogrep
*/ */
@@ -11,7 +11,7 @@
import { ConcreteRequest } from 'relay-runtime'; import { ConcreteRequest } from 'relay-runtime';
import { FragmentRefs } from "relay-runtime"; import { FragmentRefs } from "relay-runtime";
export type ContinualImprovementsPageRefetchQuery$variables = { export type ContinualImprovementsPageRefetchQuery$variables = {
after?: any | null | undefined; after?: string | null | undefined;
first?: number | null | undefined; first?: number | null | undefined;
id: string; id: string;
snapshotId?: string | null | undefined; snapshotId?: string | null | undefined;

View File

@@ -1,5 +1,5 @@
/** /**
* @generated SignedSource<<ac1551146f55ada33ee647ca3985d467>> * @generated SignedSource<<843a80b3503ff276081e69b558dcce81>>
* @lightSyntaxTransform * @lightSyntaxTransform
* @nogrep * @nogrep
*/ */
@@ -11,7 +11,7 @@
import { ConcreteRequest } from 'relay-runtime'; import { ConcreteRequest } from 'relay-runtime';
import { FragmentRefs } from "relay-runtime"; import { FragmentRefs } from "relay-runtime";
export type CreateVendorContactInput = { export type CreateVendorContactInput = {
email?: any | null | undefined; email?: string | null | undefined;
fullName?: string | null | undefined; fullName?: string | null | undefined;
phone?: string | null | undefined; phone?: string | null | undefined;
role?: string | null | undefined; role?: string | null | undefined;

View File

@@ -1,5 +1,5 @@
/** /**
* @generated SignedSource<<6ed3e434ef2a7f39c1ccddb4c3ddd8b2>> * @generated SignedSource<<69b7a1ed2ab1c03ffa4c42638851e3bd>>
* @lightSyntaxTransform * @lightSyntaxTransform
* @nogrep * @nogrep
*/ */
@@ -11,7 +11,7 @@
import { ConcreteRequest } from 'relay-runtime'; import { ConcreteRequest } from 'relay-runtime';
export type CreateMeetingInput = { export type CreateMeetingInput = {
attendeeIds?: ReadonlyArray<string> | null | undefined; attendeeIds?: ReadonlyArray<string> | null | undefined;
date: any; date: string;
minutes?: string | null | undefined; minutes?: string | null | undefined;
name: string; name: string;
organizationId: string; organizationId: string;
@@ -29,7 +29,7 @@ export type CreateMeetingDialogCreateMutation$data = {
readonly id: string; readonly id: string;
}>; }>;
readonly canDelete: boolean; readonly canDelete: boolean;
readonly date: any; readonly date: string;
readonly id: string; readonly id: string;
readonly minutes: string | null | undefined; readonly minutes: string | null | undefined;
readonly name: string; readonly name: string;

View File

@@ -1,5 +1,5 @@
/** /**
* @generated SignedSource<<c70fdb86a6f2cb61e35c8231c79db02a>> * @generated SignedSource<<bcaedd6b49db8b0f1f39149e8c916c26>>
* @lightSyntaxTransform * @lightSyntaxTransform
* @nogrep * @nogrep
*/ */
@@ -11,14 +11,14 @@
import { ConcreteRequest } from 'relay-runtime'; import { ConcreteRequest } from 'relay-runtime';
export type PeopleKind = "CONTRACTOR" | "EMPLOYEE" | "SERVICE_ACCOUNT"; export type PeopleKind = "CONTRACTOR" | "EMPLOYEE" | "SERVICE_ACCOUNT";
export type CreatePeopleInput = { export type CreatePeopleInput = {
additionalEmailAddresses: ReadonlyArray<any>; additionalEmailAddresses: ReadonlyArray<string>;
contractEndDate?: any | null | undefined; contractEndDate?: string | null | undefined;
contractStartDate?: any | null | undefined; contractStartDate?: string | null | undefined;
fullName: string; fullName: string;
kind: PeopleKind; kind: PeopleKind;
organizationId: string; organizationId: string;
position?: string | null | undefined; position?: string | null | undefined;
primaryEmailAddress: any; primaryEmailAddress: string;
}; };
export type CreatePeopleDialogMutation$variables = { export type CreatePeopleDialogMutation$variables = {
connections: ReadonlyArray<string>; connections: ReadonlyArray<string>;
@@ -28,14 +28,14 @@ export type CreatePeopleDialogMutation$data = {
readonly createPeople: { readonly createPeople: {
readonly peopleEdge: { readonly peopleEdge: {
readonly node: { readonly node: {
readonly additionalEmailAddresses: ReadonlyArray<any>; readonly additionalEmailAddresses: ReadonlyArray<string>;
readonly canDelete: boolean; readonly canDelete: boolean;
readonly canUpdate: boolean; readonly canUpdate: boolean;
readonly fullName: string; readonly fullName: string;
readonly id: string; readonly id: string;
readonly kind: PeopleKind; readonly kind: PeopleKind;
readonly position: string | null | undefined; readonly position: string | null | undefined;
readonly primaryEmailAddress: any; readonly primaryEmailAddress: string;
}; };
}; };
}; };

View File

@@ -1,5 +1,5 @@
/** /**
* @generated SignedSource<<2cd3f372cc571cec881b9762e381f1d5>> * @generated SignedSource<<2271889b21f5a1f41c2e285a7a9ee1ca>>
* @lightSyntaxTransform * @lightSyntaxTransform
* @nogrep * @nogrep
*/ */
@@ -15,7 +15,7 @@ export type DataSensitivity = "CRITICAL" | "HIGH" | "LOW" | "MEDIUM" | "NONE";
export type CreateVendorRiskAssessmentInput = { export type CreateVendorRiskAssessmentInput = {
businessImpact: BusinessImpact; businessImpact: BusinessImpact;
dataSensitivity: DataSensitivity; dataSensitivity: DataSensitivity;
expiresAt: any; expiresAt: string;
notes?: string | null | undefined; notes?: string | null | undefined;
vendorId: string; vendorId: string;
}; };

View File

@@ -1,5 +1,5 @@
/** /**
* @generated SignedSource<<bfe5e85608cbcd0fd0db44ad909ac493>> * @generated SignedSource<<d7c683ae93252e6615c66851edf88d62>>
* @lightSyntaxTransform * @lightSyntaxTransform
* @nogrep * @nogrep
*/ */
@@ -17,8 +17,8 @@ export type DatumOrder = {
field: DatumOrderField; field: DatumOrderField;
}; };
export type DataListQuery$variables = { export type DataListQuery$variables = {
after?: any | null | undefined; after?: string | null | undefined;
before?: any | null | undefined; before?: string | null | undefined;
first?: number | null | undefined; first?: number | null | undefined;
id: string; id: string;
last?: number | null | undefined; last?: number | null | undefined;

View File

@@ -1,5 +1,5 @@
/** /**
* @generated SignedSource<<213dd4c7bd0e87ba0e64fa6ce8d2c37b>> * @generated SignedSource<<f35cab66f0cb7f4cc802c4f74db09164>>
* @lightSyntaxTransform * @lightSyntaxTransform
* @nogrep * @nogrep
*/ */
@@ -18,7 +18,7 @@ export type DataPageFragment$data = {
readonly node: { readonly node: {
readonly canDelete: boolean; readonly canDelete: boolean;
readonly canUpdate: boolean; readonly canUpdate: boolean;
readonly createdAt: any; readonly createdAt: string;
readonly dataClassification: DataClassification; readonly dataClassification: DataClassification;
readonly id: string; readonly id: string;
readonly name: string; readonly name: string;

View File

@@ -1,5 +1,5 @@
/** /**
* @generated SignedSource<<8106bb4a10940caebf1f523fb6136350>> * @generated SignedSource<<1ca264e989f4edf7a41ac69c09e014d6>>
* @lightSyntaxTransform * @lightSyntaxTransform
* @nogrep * @nogrep
*/ */
@@ -27,7 +27,7 @@ export type DatumGraphCreateMutation$data = {
readonly node: { readonly node: {
readonly canDelete: boolean; readonly canDelete: boolean;
readonly canUpdate: boolean; readonly canUpdate: boolean;
readonly createdAt: any; readonly createdAt: string;
readonly dataClassification: DataClassification; readonly dataClassification: DataClassification;
readonly id: string; readonly id: string;
readonly name: string; readonly name: string;

View File

@@ -1,5 +1,5 @@
/** /**
* @generated SignedSource<<e2ff7cc39a32a043a4d4c2ad4dac8411>> * @generated SignedSource<<8d632b2e4ce8734fd47c3b2251cd61b9>>
* @lightSyntaxTransform * @lightSyntaxTransform
* @nogrep * @nogrep
*/ */
@@ -18,7 +18,7 @@ export type DatumGraphNodeQuery$data = {
readonly node: { readonly node: {
readonly canDelete?: boolean; readonly canDelete?: boolean;
readonly canUpdate?: boolean; readonly canUpdate?: boolean;
readonly createdAt?: any; readonly createdAt?: string;
readonly dataClassification?: DataClassification; readonly dataClassification?: DataClassification;
readonly id?: string; readonly id?: string;
readonly name?: string; readonly name?: string;
@@ -30,7 +30,7 @@ export type DatumGraphNodeQuery$data = {
readonly id: string; readonly id: string;
}; };
readonly snapshotId?: string | null | undefined; readonly snapshotId?: string | null | undefined;
readonly updatedAt?: any; readonly updatedAt?: string;
readonly vendors?: { readonly vendors?: {
readonly edges: ReadonlyArray<{ readonly edges: ReadonlyArray<{
readonly node: { readonly node: {

View File

@@ -1,5 +1,5 @@
/** /**
* @generated SignedSource<<2fd708bf07a7c93afe66bd9d3e8031cc>> * @generated SignedSource<<34155e0367247c7503956fc623839d7f>>
* @lightSyntaxTransform * @lightSyntaxTransform
* @nogrep * @nogrep
*/ */
@@ -30,7 +30,7 @@ export type DatumGraphUpdateMutation$data = {
readonly fullName: string; readonly fullName: string;
readonly id: string; readonly id: string;
}; };
readonly updatedAt: any; readonly updatedAt: string;
readonly vendors: { readonly vendors: {
readonly edges: ReadonlyArray<{ readonly edges: ReadonlyArray<{
readonly node: { readonly node: {

View File

@@ -1,5 +1,5 @@
/** /**
* @generated SignedSource<<01a2b46af2246ccf2e27afc8a77805c8>> * @generated SignedSource<<9b0874e62bfe3cc79cbf2853e7571ae2>>
* @lightSyntaxTransform * @lightSyntaxTransform
* @nogrep * @nogrep
*/ */
@@ -20,8 +20,8 @@ export type ControlOrder = {
field: ControlOrderField; field: ControlOrderField;
}; };
export type DocumentControlsTabControlsQuery$variables = { export type DocumentControlsTabControlsQuery$variables = {
after?: any | null | undefined; after?: string | null | undefined;
before?: any | null | undefined; before?: string | null | undefined;
filter?: ControlFilter | null | undefined; filter?: ControlFilter | null | undefined;
first?: number | null | undefined; first?: number | null | undefined;
id: string; id: string;

View File

@@ -1,5 +1,5 @@
/** /**
* @generated SignedSource<<66ab14196c29af984b08f90039037dee>> * @generated SignedSource<<c37076bc09bec4e39571f14fe8aa6d74>>
* @lightSyntaxTransform * @lightSyntaxTransform
* @nogrep * @nogrep
*/ */
@@ -41,7 +41,7 @@ export type DocumentDetailPageDocumentFragment$data = {
readonly fullName: string; readonly fullName: string;
readonly id: string; readonly id: string;
}; };
readonly publishedAt: any | null | undefined; readonly publishedAt: string | null | undefined;
readonly signatures: { readonly signatures: {
readonly __id: string; readonly __id: string;
readonly edges: ReadonlyArray<{ readonly edges: ReadonlyArray<{
@@ -56,7 +56,7 @@ export type DocumentDetailPageDocumentFragment$data = {
}>; }>;
}; };
readonly status: DocumentStatus; readonly status: DocumentStatus;
readonly updatedAt: any; readonly updatedAt: string;
readonly version: number; readonly version: number;
readonly " $fragmentSpreads": FragmentRefs<"DocumentSignaturesTab_version">; readonly " $fragmentSpreads": FragmentRefs<"DocumentSignaturesTab_version">;
}; };

View File

@@ -1,5 +1,5 @@
/** /**
* @generated SignedSource<<3a082179d9ea9d47824b7ee925418b95>> * @generated SignedSource<<f860e097afe4111c629ecf78d873a84e>>
* @lightSyntaxTransform * @lightSyntaxTransform
* @nogrep * @nogrep
*/ */
@@ -11,7 +11,7 @@
import { ConcreteRequest } from 'relay-runtime'; import { ConcreteRequest } from 'relay-runtime';
export type ExportDocumentVersionPDFInput = { export type ExportDocumentVersionPDFInput = {
documentVersionId: string; documentVersionId: string;
watermarkEmail?: any | null | undefined; watermarkEmail?: string | null | undefined;
withSignatures: boolean; withSignatures: boolean;
withWatermark: boolean; withWatermark: boolean;
}; };

View File

@@ -1,5 +1,5 @@
/** /**
* @generated SignedSource<<f9018169cee4d71768fca395e5dd59a9>> * @generated SignedSource<<9b84adc0253186c6f0a5f47837d83d7f>>
* @lightSyntaxTransform * @lightSyntaxTransform
* @nogrep * @nogrep
*/ */
@@ -11,7 +11,7 @@
import { ConcreteRequest } from 'relay-runtime'; import { ConcreteRequest } from 'relay-runtime';
export type BulkExportDocumentsInput = { export type BulkExportDocumentsInput = {
documentIds: ReadonlyArray<string>; documentIds: ReadonlyArray<string>;
watermarkEmail?: any | null | undefined; watermarkEmail?: string | null | undefined;
withSignatures: boolean; withSignatures: boolean;
withWatermark: boolean; withWatermark: boolean;
}; };

View File

@@ -1,5 +1,5 @@
/** /**
* @generated SignedSource<<74a0df62fb3bfbd741d69cc1b7c023bb>> * @generated SignedSource<<c8b89765dcf362beef95c0f17902a77b>>
* @lightSyntaxTransform * @lightSyntaxTransform
* @nogrep * @nogrep
*/ */
@@ -18,7 +18,7 @@ export type DocumentRowFragment$data = {
readonly id: string; readonly id: string;
readonly signed: boolean; readonly signed: boolean;
readonly title: string; readonly title: string;
readonly updatedAt: any; readonly updatedAt: string;
readonly " $fragmentType": "DocumentRowFragment"; readonly " $fragmentType": "DocumentRowFragment";
}; };
export type DocumentRowFragment$key = { export type DocumentRowFragment$key = {

View File

@@ -1,5 +1,5 @@
/** /**
* @generated SignedSource<<b7fddd28abbffd86c8de3f8ecd3d794b>> * @generated SignedSource<<568018897f0db254b4d8c43c05abb7c6>>
* @lightSyntaxTransform * @lightSyntaxTransform
* @nogrep * @nogrep
*/ */
@@ -16,7 +16,7 @@ export type DocumentVersionSignatureFilter = {
}; };
export type DocumentSignaturesTabRefetchQuery$variables = { export type DocumentSignaturesTabRefetchQuery$variables = {
count?: number | null | undefined; count?: number | null | undefined;
cursor?: any | null | undefined; cursor?: string | null | undefined;
id: string; id: string;
signatureFilter?: DocumentVersionSignatureFilter | null | undefined; signatureFilter?: DocumentVersionSignatureFilter | null | undefined;
}; };

View File

@@ -1,5 +1,5 @@
/** /**
* @generated SignedSource<<02f9338b7a451ae446c87d09ea71a71d>> * @generated SignedSource<<b5228fc83f8259e864b7af631cc1a0c2>>
* @lightSyntaxTransform * @lightSyntaxTransform
* @nogrep * @nogrep
*/ */
@@ -14,11 +14,11 @@ import { FragmentRefs } from "relay-runtime";
export type DocumentSignaturesTab_signature$data = { export type DocumentSignaturesTab_signature$data = {
readonly canCancel: boolean; readonly canCancel: boolean;
readonly id: string; readonly id: string;
readonly requestedAt: any; readonly requestedAt: string;
readonly signedAt: any | null | undefined; readonly signedAt: string | null | undefined;
readonly signedBy: { readonly signedBy: {
readonly fullName: string; readonly fullName: string;
readonly primaryEmailAddress: any; readonly primaryEmailAddress: string;
}; };
readonly state: DocumentVersionSignatureState; readonly state: DocumentVersionSignatureState;
readonly " $fragmentType": "DocumentSignaturesTab_signature"; readonly " $fragmentType": "DocumentSignaturesTab_signature";

View File

@@ -1,5 +1,5 @@
/** /**
* @generated SignedSource<<ccb4ac21f5e94f16c4fa5ccff5898f99>> * @generated SignedSource<<51a0ef23951497b2d074fafbda0ea04b>>
* @lightSyntaxTransform * @lightSyntaxTransform
* @nogrep * @nogrep
*/ */
@@ -23,7 +23,7 @@ export type DocumentSignaturesTab_version$data = {
readonly signedBy: { readonly signedBy: {
readonly fullName: string; readonly fullName: string;
readonly id: string; readonly id: string;
readonly primaryEmailAddress: any; readonly primaryEmailAddress: string;
}; };
readonly state: DocumentVersionSignatureState; readonly state: DocumentVersionSignatureState;
readonly " $fragmentSpreads": FragmentRefs<"DocumentSignaturesTab_signature">; readonly " $fragmentSpreads": FragmentRefs<"DocumentSignaturesTab_signature">;

View File

@@ -1,5 +1,5 @@
/** /**
* @generated SignedSource<<2d64b7b84c435d26d97748081e1bb38e>> * @generated SignedSource<<ba35b8d51574d7e6b61987743636f5bb>>
* @lightSyntaxTransform * @lightSyntaxTransform
* @nogrep * @nogrep
*/ */
@@ -17,8 +17,8 @@ export type DocumentOrder = {
field: DocumentOrderField; field: DocumentOrderField;
}; };
export type DocumentsListQuery$variables = { export type DocumentsListQuery$variables = {
after?: any | null | undefined; after?: string | null | undefined;
before?: any | null | undefined; before?: string | null | undefined;
first?: number | null | undefined; first?: number | null | undefined;
id: string; id: string;
last?: number | null | undefined; last?: number | null | undefined;

View File

@@ -1,5 +1,5 @@
/** /**
* @generated SignedSource<<6aa146f2bf0d89cd8140da220a2c33d8>> * @generated SignedSource<<9d93eb8b8aedef57b8a20e267b61bc08>>
* @lightSyntaxTransform * @lightSyntaxTransform
* @nogrep * @nogrep
*/ */
@@ -25,7 +25,7 @@ export type DocumentsPageRowFragment$data = {
readonly id: string; readonly id: string;
}; };
readonly title: string; readonly title: string;
readonly updatedAt: any; readonly updatedAt: string;
readonly versions: { readonly versions: {
readonly edges: ReadonlyArray<{ readonly edges: ReadonlyArray<{
readonly node: { readonly node: {

View File

@@ -1,5 +1,5 @@
/** /**
* @generated SignedSource<<1ee5bd8001e3d48b51c2869cd1ff5771>> * @generated SignedSource<<1d007308b8b70962ddfe217cf3534dab>>
* @lightSyntaxTransform * @lightSyntaxTransform
* @nogrep * @nogrep
*/ */
@@ -12,7 +12,7 @@ import { ReaderFragment } from 'relay-runtime';
export type SSLStatus = "ACTIVE" | "EXPIRED" | "FAILED" | "PENDING" | "PROVISIONING" | "RENEWING"; export type SSLStatus = "ACTIVE" | "EXPIRED" | "FAILED" | "PENDING" | "PROVISIONING" | "RENEWING";
import { FragmentRefs } from "relay-runtime"; import { FragmentRefs } from "relay-runtime";
export type DomainDialogFragment$data = { export type DomainDialogFragment$data = {
readonly createdAt: any; readonly createdAt: string;
readonly dnsRecords: ReadonlyArray<{ readonly dnsRecords: ReadonlyArray<{
readonly name: string; readonly name: string;
readonly purpose: string; readonly purpose: string;
@@ -21,9 +21,9 @@ export type DomainDialogFragment$data = {
readonly value: string; readonly value: string;
}>; }>;
readonly domain: string; readonly domain: string;
readonly sslExpiresAt: any | null | undefined; readonly sslExpiresAt: string | null | undefined;
readonly sslStatus: SSLStatus; readonly sslStatus: SSLStatus;
readonly updatedAt: any; readonly updatedAt: string;
readonly " $fragmentType": "DomainDialogFragment"; readonly " $fragmentType": "DomainDialogFragment";
}; };
export type DomainDialogFragment$key = { export type DomainDialogFragment$key = {

View File

@@ -1,5 +1,5 @@
/** /**
* @generated SignedSource<<8d5961820ccfa705a899582a9a8ca953>> * @generated SignedSource<<803ae28abdfda756e8e4cdfba1e580c0>>
* @lightSyntaxTransform * @lightSyntaxTransform
* @nogrep * @nogrep
*/ */
@@ -10,8 +10,8 @@
import { ConcreteRequest } from 'relay-runtime'; import { ConcreteRequest } from 'relay-runtime';
export type UpdateVendorBusinessAssociateAgreementInput = { export type UpdateVendorBusinessAssociateAgreementInput = {
validFrom?: any | null | undefined; validFrom?: string | null | undefined;
validUntil?: any | null | undefined; validUntil?: string | null | undefined;
vendorId: string; vendorId: string;
}; };
export type EditBusinessAssociateAgreementDialogMutation$variables = { export type EditBusinessAssociateAgreementDialogMutation$variables = {
@@ -20,11 +20,11 @@ export type EditBusinessAssociateAgreementDialogMutation$variables = {
export type EditBusinessAssociateAgreementDialogMutation$data = { export type EditBusinessAssociateAgreementDialogMutation$data = {
readonly updateVendorBusinessAssociateAgreement: { readonly updateVendorBusinessAssociateAgreement: {
readonly vendorBusinessAssociateAgreement: { readonly vendorBusinessAssociateAgreement: {
readonly createdAt: any; readonly createdAt: string;
readonly fileUrl: string; readonly fileUrl: string;
readonly id: string; readonly id: string;
readonly validFrom: any | null | undefined; readonly validFrom: string | null | undefined;
readonly validUntil: any | null | undefined; readonly validUntil: string | null | undefined;
}; };
}; };
}; };

View File

@@ -1,5 +1,5 @@
/** /**
* @generated SignedSource<<00c307339357baa16c237c563b8f32bd>> * @generated SignedSource<<d22f20fafedcdddc50cd21917a8a5c28>>
* @lightSyntaxTransform * @lightSyntaxTransform
* @nogrep * @nogrep
*/ */
@@ -11,7 +11,7 @@
import { ConcreteRequest } from 'relay-runtime'; import { ConcreteRequest } from 'relay-runtime';
import { FragmentRefs } from "relay-runtime"; import { FragmentRefs } from "relay-runtime";
export type UpdateVendorContactInput = { export type UpdateVendorContactInput = {
email?: any | null | undefined; email?: string | null | undefined;
fullName?: string | null | undefined; fullName?: string | null | undefined;
id: string; id: string;
phone?: string | null | undefined; phone?: string | null | undefined;

View File

@@ -1,5 +1,5 @@
/** /**
* @generated SignedSource<<161930fef961066719e45ce1f899dd38>> * @generated SignedSource<<12863d17356b3d0f16a9c377cd95eb5b>>
* @lightSyntaxTransform * @lightSyntaxTransform
* @nogrep * @nogrep
*/ */
@@ -10,8 +10,8 @@
import { ConcreteRequest } from 'relay-runtime'; import { ConcreteRequest } from 'relay-runtime';
export type UpdateVendorDataPrivacyAgreementInput = { export type UpdateVendorDataPrivacyAgreementInput = {
validFrom?: any | null | undefined; validFrom?: string | null | undefined;
validUntil?: any | null | undefined; validUntil?: string | null | undefined;
vendorId: string; vendorId: string;
}; };
export type EditDataPrivacyAgreementDialogMutation$variables = { export type EditDataPrivacyAgreementDialogMutation$variables = {
@@ -20,11 +20,11 @@ export type EditDataPrivacyAgreementDialogMutation$variables = {
export type EditDataPrivacyAgreementDialogMutation$data = { export type EditDataPrivacyAgreementDialogMutation$data = {
readonly updateVendorDataPrivacyAgreement: { readonly updateVendorDataPrivacyAgreement: {
readonly vendorDataPrivacyAgreement: { readonly vendorDataPrivacyAgreement: {
readonly createdAt: any; readonly createdAt: string;
readonly fileUrl: string; readonly fileUrl: string;
readonly id: string; readonly id: string;
readonly validFrom: any | null | undefined; readonly validFrom: string | null | undefined;
readonly validUntil: any | null | undefined; readonly validUntil: string | null | undefined;
}; };
}; };
}; };

View File

@@ -1,5 +1,5 @@
/** /**
* @generated SignedSource<<843df409ed1ee9ba19760921dbd6e8df>> * @generated SignedSource<<ed36cb7e20499e431a51f06e456cc91e>>
* @lightSyntaxTransform * @lightSyntaxTransform
* @nogrep * @nogrep
*/ */
@@ -18,7 +18,7 @@ export type EvidenceGraphFileQuery$data = {
readonly downloadUrl: string; readonly downloadUrl: string;
readonly fileName: string; readonly fileName: string;
readonly mimeType: string; readonly mimeType: string;
readonly size: any; readonly size: string;
} | null | undefined; } | null | undefined;
readonly id?: string; readonly id?: string;
}; };

View File

@@ -1,5 +1,5 @@
/** /**
* @generated SignedSource<<eb9ce92b73884420f07e71096665149f>> * @generated SignedSource<<903698144cc9c26d698f573b64544e17>>
* @lightSyntaxTransform * @lightSyntaxTransform
* @nogrep * @nogrep
*/ */
@@ -12,7 +12,7 @@ import { ReaderFragment } from 'relay-runtime';
export type AuditState = "COMPLETED" | "IN_PROGRESS" | "NOT_STARTED" | "OUTDATED" | "REJECTED"; export type AuditState = "COMPLETED" | "IN_PROGRESS" | "NOT_STARTED" | "OUTDATED" | "REJECTED";
import { FragmentRefs } from "relay-runtime"; import { FragmentRefs } from "relay-runtime";
export type LinkedAuditsCardFragment$data = { export type LinkedAuditsCardFragment$data = {
readonly createdAt: any; readonly createdAt: string;
readonly framework: { readonly framework: {
readonly id: string; readonly id: string;
readonly name: string; readonly name: string;
@@ -20,8 +20,8 @@ export type LinkedAuditsCardFragment$data = {
readonly id: string; readonly id: string;
readonly name: string | null | undefined; readonly name: string | null | undefined;
readonly state: AuditState; readonly state: AuditState;
readonly validFrom: any | null | undefined; readonly validFrom: string | null | undefined;
readonly validUntil: any | null | undefined; readonly validUntil: string | null | undefined;
readonly " $fragmentType": "LinkedAuditsCardFragment"; readonly " $fragmentType": "LinkedAuditsCardFragment";
}; };
export type LinkedAuditsCardFragment$key = { export type LinkedAuditsCardFragment$key = {

View File

@@ -1,5 +1,5 @@
/** /**
* @generated SignedSource<<72efdb68c08c793ff724c9a16d91d29a>> * @generated SignedSource<<0ba30b05b62bf6a4b76a17fb1a6db467>>
* @lightSyntaxTransform * @lightSyntaxTransform
* @nogrep * @nogrep
*/ */
@@ -22,8 +22,8 @@ export type LinkedAuditsDialogFragment$data = {
readonly id: string; readonly id: string;
readonly name: string | null | undefined; readonly name: string | null | undefined;
readonly state: AuditState; readonly state: AuditState;
readonly validFrom: any | null | undefined; readonly validFrom: string | null | undefined;
readonly validUntil: any | null | undefined; readonly validUntil: string | null | undefined;
}; };
}>; }>;
}; };

View File

@@ -1,5 +1,5 @@
/** /**
* @generated SignedSource<<64f01ce9caaee3040df3df201bb608f8>> * @generated SignedSource<<87ff7faae25faa23e9832a7457605a2e>>
* @lightSyntaxTransform * @lightSyntaxTransform
* @nogrep * @nogrep
*/ */
@@ -17,8 +17,8 @@ export type AuditOrder = {
field: AuditOrderField; field: AuditOrderField;
}; };
export type LinkedAuditsDialogQuery_fragment$variables = { export type LinkedAuditsDialogQuery_fragment$variables = {
after?: any | null | undefined; after?: string | null | undefined;
before?: any | null | undefined; before?: string | null | undefined;
first?: number | null | undefined; first?: number | null | undefined;
id: string; id: string;
last?: number | null | undefined; last?: number | null | undefined;

View File

@@ -1,5 +1,5 @@
/** /**
* @generated SignedSource<<68d29ea810c69f34b0da8d3e66b4eb5e>> * @generated SignedSource<<22d3ddb8ba270ff44f043ccdd8bbdd7d>>
* @lightSyntaxTransform * @lightSyntaxTransform
* @nogrep * @nogrep
*/ */
@@ -20,8 +20,8 @@ export type ControlOrder = {
field: ControlOrderField; field: ControlOrderField;
}; };
export type LinkedControlsDialogControlsQuery$variables = { export type LinkedControlsDialogControlsQuery$variables = {
after?: any | null | undefined; after?: string | null | undefined;
before?: any | null | undefined; before?: string | null | undefined;
filter?: ControlFilter | null | undefined; filter?: ControlFilter | null | undefined;
first?: number | null | undefined; first?: number | null | undefined;
id: string; id: string;

View File

@@ -1,5 +1,5 @@
/** /**
* @generated SignedSource<<0f8cdaa2d7380a1128e7c42004b7d506>> * @generated SignedSource<<9fd60ce5ad80ada10eafed963ea0adb3>>
* @lightSyntaxTransform * @lightSyntaxTransform
* @nogrep * @nogrep
*/ */
@@ -13,7 +13,7 @@ export type DocumentStatus = "DRAFT" | "PUBLISHED";
export type DocumentType = "ISMS" | "OTHER" | "POLICY" | "PROCEDURE"; export type DocumentType = "ISMS" | "OTHER" | "POLICY" | "PROCEDURE";
import { FragmentRefs } from "relay-runtime"; import { FragmentRefs } from "relay-runtime";
export type LinkedDocumentsCardFragment$data = { export type LinkedDocumentsCardFragment$data = {
readonly createdAt: any; readonly createdAt: string;
readonly documentType: DocumentType; readonly documentType: DocumentType;
readonly id: string; readonly id: string;
readonly title: string; readonly title: string;

View File

@@ -1,5 +1,5 @@
/** /**
* @generated SignedSource<<25880ab79f8b6ae18f3ead4431a90329>> * @generated SignedSource<<54810545432d02fdcd0b3b02f47bf489>>
* @lightSyntaxTransform * @lightSyntaxTransform
* @nogrep * @nogrep
*/ */
@@ -17,8 +17,8 @@ export type DocumentOrder = {
field: DocumentOrderField; field: DocumentOrderField;
}; };
export type LinkedDocumentsDialogQuery_fragment$variables = { export type LinkedDocumentsDialogQuery_fragment$variables = {
after?: any | null | undefined; after?: string | null | undefined;
before?: any | null | undefined; before?: string | null | undefined;
first?: number | null | undefined; first?: number | null | undefined;
id: string; id: string;
last?: number | null | undefined; last?: number | null | undefined;

View File

@@ -1,5 +1,5 @@
/** /**
* @generated SignedSource<<3d2709f51866093bcc78ec14501dae31>> * @generated SignedSource<<18d4d04e3149486db39e2376613f845a>>
* @lightSyntaxTransform * @lightSyntaxTransform
* @nogrep * @nogrep
*/ */
@@ -17,8 +17,8 @@ export type ObligationOrder = {
field: ObligationOrderField; field: ObligationOrderField;
}; };
export type LinkedObligationsDialogQuery_fragment$variables = { export type LinkedObligationsDialogQuery_fragment$variables = {
after?: any | null | undefined; after?: string | null | undefined;
before?: any | null | undefined; before?: string | null | undefined;
first?: number | null | undefined; first?: number | null | undefined;
id: string; id: string;
last?: number | null | undefined; last?: number | null | undefined;

View File

@@ -1,5 +1,5 @@
/** /**
* @generated SignedSource<<18ad235cee2891b222acb016b8986050>> * @generated SignedSource<<659b07d2d3bf4c7527c44c7d1e830138>>
* @lightSyntaxTransform * @lightSyntaxTransform
* @nogrep * @nogrep
*/ */
@@ -12,7 +12,7 @@ import { ReaderFragment } from 'relay-runtime';
export type SnapshotsType = "ASSETS" | "CONTINUAL_IMPROVEMENTS" | "DATA" | "NONCONFORMITIES" | "OBLIGATIONS" | "PROCESSING_ACTIVITIES" | "RISKS" | "STATES_OF_APPLICABILITY" | "VENDORS"; export type SnapshotsType = "ASSETS" | "CONTINUAL_IMPROVEMENTS" | "DATA" | "NONCONFORMITIES" | "OBLIGATIONS" | "PROCESSING_ACTIVITIES" | "RISKS" | "STATES_OF_APPLICABILITY" | "VENDORS";
import { FragmentRefs } from "relay-runtime"; import { FragmentRefs } from "relay-runtime";
export type LinkedSnapshotsCardFragment$data = { export type LinkedSnapshotsCardFragment$data = {
readonly createdAt: any; readonly createdAt: string;
readonly description: string | null | undefined; readonly description: string | null | undefined;
readonly id: string; readonly id: string;
readonly name: string; readonly name: string;

View File

@@ -1,5 +1,5 @@
/** /**
* @generated SignedSource<<4b2fe0335336a1c3888d8da35ffd8e58>> * @generated SignedSource<<b4b4aeb13d7fb4b87a0a07ae5cf54aea>>
* @lightSyntaxTransform * @lightSyntaxTransform
* @nogrep * @nogrep
*/ */
@@ -16,7 +16,7 @@ export type LinkedSnapshotsDialogFragment$data = {
readonly snapshots: { readonly snapshots: {
readonly edges: ReadonlyArray<{ readonly edges: ReadonlyArray<{
readonly node: { readonly node: {
readonly createdAt: any; readonly createdAt: string;
readonly description: string | null | undefined; readonly description: string | null | undefined;
readonly id: string; readonly id: string;
readonly name: string; readonly name: string;

View File

@@ -1,5 +1,5 @@
/** /**
* @generated SignedSource<<da66b640f5bf710bb086e806a82b03e6>> * @generated SignedSource<<23f3f100c0665c79a15c78ddbe5284af>>
* @lightSyntaxTransform * @lightSyntaxTransform
* @nogrep * @nogrep
*/ */
@@ -17,8 +17,8 @@ export type SnapshotOrder = {
field: SnapshotOrderField; field: SnapshotOrderField;
}; };
export type LinkedSnapshotsDialogQuery_fragment$variables = { export type LinkedSnapshotsDialogQuery_fragment$variables = {
after?: any | null | undefined; after?: string | null | undefined;
before?: any | null | undefined; before?: string | null | undefined;
first?: number | null | undefined; first?: number | null | undefined;
id: string; id: string;
last?: number | null | undefined; last?: number | null | undefined;

View File

@@ -1,5 +1,5 @@
/** /**
* @generated SignedSource<<3afe17784c8b08b2dd0db14b26d0058f>> * @generated SignedSource<<dfac9f61dc942eb4d9fa426b09f98b10>>
* @lightSyntaxTransform * @lightSyntaxTransform
* @nogrep * @nogrep
*/ */
@@ -20,8 +20,8 @@ export type ControlOrder = {
field: ControlOrderField; field: ControlOrderField;
}; };
export type MeasureControlsTabControlsQuery$variables = { export type MeasureControlsTabControlsQuery$variables = {
after?: any | null | undefined; after?: string | null | undefined;
before?: any | null | undefined; before?: string | null | undefined;
filter?: ControlFilter | null | undefined; filter?: ControlFilter | null | undefined;
first?: number | null | undefined; first?: number | null | undefined;
id: string; id: string;

View File

@@ -1,5 +1,5 @@
/** /**
* @generated SignedSource<<d189402d5d6f47a0b2a3e303436e8a74>> * @generated SignedSource<<b07c2f8f2454f080854744ddcc60face>>
* @lightSyntaxTransform * @lightSyntaxTransform
* @nogrep * @nogrep
*/ */
@@ -19,7 +19,7 @@ export type MeasureEvidencesTabFragment$data = {
readonly file: { readonly file: {
readonly fileName: string; readonly fileName: string;
readonly mimeType: string; readonly mimeType: string;
readonly size: any; readonly size: string;
} | null | undefined; } | null | undefined;
readonly id: string; readonly id: string;
readonly " $fragmentSpreads": FragmentRefs<"MeasureEvidencesTabFragment_evidence">; readonly " $fragmentSpreads": FragmentRefs<"MeasureEvidencesTabFragment_evidence">;

View File

@@ -1,5 +1,5 @@
/** /**
* @generated SignedSource<<e4f324b614d93555afbc7055f63c534a>> * @generated SignedSource<<da6add401e8c1c2e8f049bcda4ad31aa>>
* @lightSyntaxTransform * @lightSyntaxTransform
* @nogrep * @nogrep
*/ */
@@ -13,11 +13,11 @@ export type EvidenceType = "FILE" | "LINK";
import { FragmentRefs } from "relay-runtime"; import { FragmentRefs } from "relay-runtime";
export type MeasureEvidencesTabFragment_evidence$data = { export type MeasureEvidencesTabFragment_evidence$data = {
readonly canDelete: boolean; readonly canDelete: boolean;
readonly createdAt: any; readonly createdAt: string;
readonly file: { readonly file: {
readonly fileName: string; readonly fileName: string;
readonly mimeType: string; readonly mimeType: string;
readonly size: any; readonly size: string;
} | null | undefined; } | null | undefined;
readonly id: string; readonly id: string;
readonly type: EvidenceType; readonly type: EvidenceType;

View File

@@ -1,5 +1,5 @@
/** /**
* @generated SignedSource<<3f6cce4a7258adac62eab83f233b1a80>> * @generated SignedSource<<b3796796f510af61420955a6fde12fe2>>
* @lightSyntaxTransform * @lightSyntaxTransform
* @nogrep * @nogrep
*/ */
@@ -17,8 +17,8 @@ export type EvidenceOrder = {
field: EvidenceOrderField; field: EvidenceOrderField;
}; };
export type MeasureEvidencesTabQuery$variables = { export type MeasureEvidencesTabQuery$variables = {
after?: any | null | undefined; after?: string | null | undefined;
before?: any | null | undefined; before?: string | null | undefined;
first?: number | null | undefined; first?: number | null | undefined;
id: string; id: string;
last?: number | null | undefined; last?: number | null | undefined;

View File

@@ -1,5 +1,5 @@
/** /**
* @generated SignedSource<<dfda77f468e3df0f5b1f0c4501739cca>> * @generated SignedSource<<02d4857a47adc2625d9cbdca077ea713>>
* @lightSyntaxTransform * @lightSyntaxTransform
* @nogrep * @nogrep
*/ */
@@ -17,7 +17,7 @@ export type MeetingDetailPageMeetingFragment$data = {
}>; }>;
readonly canDelete: boolean; readonly canDelete: boolean;
readonly canUpdate: boolean; readonly canUpdate: boolean;
readonly date: any; readonly date: string;
readonly id: string; readonly id: string;
readonly minutes: string | null | undefined; readonly minutes: string | null | undefined;
readonly name: string; readonly name: string;

View File

@@ -1,5 +1,5 @@
/** /**
* @generated SignedSource<<15692efdcfe280221e1be99acfbf206b>> * @generated SignedSource<<6e51f615961af796c6bd13eb3cf0b305>>
* @lightSyntaxTransform * @lightSyntaxTransform
* @nogrep * @nogrep
*/ */
@@ -11,7 +11,7 @@
import { ConcreteRequest } from 'relay-runtime'; import { ConcreteRequest } from 'relay-runtime';
export type CreateMeetingInput = { export type CreateMeetingInput = {
attendeeIds?: ReadonlyArray<string> | null | undefined; attendeeIds?: ReadonlyArray<string> | null | undefined;
date: any; date: string;
minutes?: string | null | undefined; minutes?: string | null | undefined;
name: string; name: string;
organizationId: string; organizationId: string;
@@ -28,7 +28,7 @@ export type MeetingGraphCreateMutation$data = {
readonly fullName: string; readonly fullName: string;
readonly id: string; readonly id: string;
}>; }>;
readonly date: any; readonly date: string;
readonly id: string; readonly id: string;
readonly minutes: string | null | undefined; readonly minutes: string | null | undefined;
readonly name: string; readonly name: string;

View File

@@ -1,5 +1,5 @@
/** /**
* @generated SignedSource<<3a5a992a984a073bb90922f29120be83>> * @generated SignedSource<<f2352b27b79021bcd62b36ef246bc084>>
* @lightSyntaxTransform * @lightSyntaxTransform
* @nogrep * @nogrep
*/ */
@@ -11,7 +11,7 @@
import { ConcreteRequest } from 'relay-runtime'; import { ConcreteRequest } from 'relay-runtime';
export type UpdateMeetingInput = { export type UpdateMeetingInput = {
attendeeIds?: ReadonlyArray<string> | null | undefined; attendeeIds?: ReadonlyArray<string> | null | undefined;
date?: any | null | undefined; date?: string | null | undefined;
meetingId: string; meetingId: string;
minutes?: string | null | undefined; minutes?: string | null | undefined;
name?: string | null | undefined; name?: string | null | undefined;
@@ -26,7 +26,7 @@ export type MeetingGraphUpdateMutation$data = {
readonly fullName: string; readonly fullName: string;
readonly id: string; readonly id: string;
}>; }>;
readonly date: any; readonly date: string;
readonly id: string; readonly id: string;
readonly minutes: string | null | undefined; readonly minutes: string | null | undefined;
readonly name: string; readonly name: string;

View File

@@ -1,5 +1,5 @@
/** /**
* @generated SignedSource<<c50d9a4ec082e190a0f0b3a9e1a7f5c2>> * @generated SignedSource<<6d71d2d88b695492ef93e2b213fc14d3>>
* @lightSyntaxTransform * @lightSyntaxTransform
* @nogrep * @nogrep
*/ */
@@ -17,8 +17,8 @@ export type MeetingOrder = {
field: MeetingOrderField; field: MeetingOrderField;
}; };
export type MeetingsListQuery$variables = { export type MeetingsListQuery$variables = {
after?: any | null | undefined; after?: string | null | undefined;
before?: any | null | undefined; before?: string | null | undefined;
first?: number | null | undefined; first?: number | null | undefined;
id: string; id: string;
last?: number | null | undefined; last?: number | null | undefined;

View File

@@ -1,5 +1,5 @@
/** /**
* @generated SignedSource<<2ca6c35e54eafa06ad04d91bfc555eed>> * @generated SignedSource<<e8de023c889edc6ca714311bf3249ddf>>
* @lightSyntaxTransform * @lightSyntaxTransform
* @nogrep * @nogrep
*/ */
@@ -16,7 +16,7 @@ export type MeetingsPageRowFragment$data = {
readonly id: string; readonly id: string;
}>; }>;
readonly canDelete: boolean; readonly canDelete: boolean;
readonly date: any; readonly date: string;
readonly id: string; readonly id: string;
readonly name: string; readonly name: string;
readonly " $fragmentType": "MeetingsPageRowFragment"; readonly " $fragmentType": "MeetingsPageRowFragment";

View File

@@ -1,5 +1,5 @@
/** /**
* @generated SignedSource<<e47b433cc9fb58392ff933788bbe3deb>> * @generated SignedSource<<098714fcfe212fae40bdad19b10f8a00>>
* @lightSyntaxTransform * @lightSyntaxTransform
* @nogrep * @nogrep
*/ */
@@ -20,7 +20,7 @@ export type NewDomainDialogMutation$variables = {
export type NewDomainDialogMutation$data = { export type NewDomainDialogMutation$data = {
readonly createCustomDomain: { readonly createCustomDomain: {
readonly customDomain: { readonly customDomain: {
readonly createdAt: any; readonly createdAt: string;
readonly dnsRecords: ReadonlyArray<{ readonly dnsRecords: ReadonlyArray<{
readonly name: string; readonly name: string;
readonly purpose: string; readonly purpose: string;
@@ -30,9 +30,9 @@ export type NewDomainDialogMutation$data = {
}>; }>;
readonly domain: string; readonly domain: string;
readonly id: string; readonly id: string;
readonly sslExpiresAt: any | null | undefined; readonly sslExpiresAt: string | null | undefined;
readonly sslStatus: SSLStatus; readonly sslStatus: SSLStatus;
readonly updatedAt: any; readonly updatedAt: string;
}; };
}; };
}; };

View File

@@ -1,5 +1,5 @@
/** /**
* @generated SignedSource<<8137b73b0ad40930966c6feb6370420b>> * @generated SignedSource<<995f84eb7ea5dddf0b3166230a9a969e>>
* @lightSyntaxTransform * @lightSyntaxTransform
* @nogrep * @nogrep
*/ */
@@ -28,10 +28,10 @@ export type NonconformitiesPageFragment$data = {
readonly canDelete: boolean; readonly canDelete: boolean;
readonly canUpdate: boolean; readonly canUpdate: boolean;
readonly correctiveAction: string | null | undefined; readonly correctiveAction: string | null | undefined;
readonly createdAt: any; readonly createdAt: string;
readonly dateIdentified: any | null | undefined; readonly dateIdentified: string | null | undefined;
readonly description: string | null | undefined; readonly description: string | null | undefined;
readonly dueDate: any | null | undefined; readonly dueDate: string | null | undefined;
readonly effectivenessCheck: string | null | undefined; readonly effectivenessCheck: string | null | undefined;
readonly id: string; readonly id: string;
readonly owner: { readonly owner: {
@@ -42,11 +42,11 @@ export type NonconformitiesPageFragment$data = {
readonly rootCause: string; readonly rootCause: string;
readonly snapshotId: string | null | undefined; readonly snapshotId: string | null | undefined;
readonly status: NonconformityStatus; readonly status: NonconformityStatus;
readonly updatedAt: any; readonly updatedAt: string;
}; };
}>; }>;
readonly pageInfo: { readonly pageInfo: {
readonly endCursor: any | null | undefined; readonly endCursor: string | null | undefined;
readonly hasNextPage: boolean; readonly hasNextPage: boolean;
}; };
readonly totalCount: number; readonly totalCount: number;

View File

@@ -1,5 +1,5 @@
/** /**
* @generated SignedSource<<c51c49b6699276336c3e5a4cc9a43998>> * @generated SignedSource<<464a73547f605ed418f7e4e87b65032b>>
* @lightSyntaxTransform * @lightSyntaxTransform
* @nogrep * @nogrep
*/ */
@@ -11,7 +11,7 @@
import { ConcreteRequest } from 'relay-runtime'; import { ConcreteRequest } from 'relay-runtime';
import { FragmentRefs } from "relay-runtime"; import { FragmentRefs } from "relay-runtime";
export type NonconformitiesPageRefetchQuery$variables = { export type NonconformitiesPageRefetchQuery$variables = {
after?: any | null | undefined; after?: string | null | undefined;
first?: number | null | undefined; first?: number | null | undefined;
id: string; id: string;
snapshotId?: string | null | undefined; snapshotId?: string | null | undefined;

View File

@@ -1,5 +1,5 @@
/** /**
* @generated SignedSource<<77c22921ec67a1fb75f743dba1685698>> * @generated SignedSource<<38092f8f7826b528d94c597c1edfb150>>
* @lightSyntaxTransform * @lightSyntaxTransform
* @nogrep * @nogrep
*/ */
@@ -13,9 +13,9 @@ export type NonconformityStatus = "CLOSED" | "IN_PROGRESS" | "OPEN";
export type CreateNonconformityInput = { export type CreateNonconformityInput = {
auditId?: string | null | undefined; auditId?: string | null | undefined;
correctiveAction?: string | null | undefined; correctiveAction?: string | null | undefined;
dateIdentified?: any | null | undefined; dateIdentified?: string | null | undefined;
description?: string | null | undefined; description?: string | null | undefined;
dueDate?: any | null | undefined; dueDate?: string | null | undefined;
effectivenessCheck?: string | null | undefined; effectivenessCheck?: string | null | undefined;
organizationId: string; organizationId: string;
ownerId: string; ownerId: string;
@@ -39,10 +39,10 @@ export type NonconformityGraphCreateMutation$data = {
} | null | undefined; } | null | undefined;
readonly canDelete: boolean; readonly canDelete: boolean;
readonly canUpdate: boolean; readonly canUpdate: boolean;
readonly createdAt: any; readonly createdAt: string;
readonly dateIdentified: any | null | undefined; readonly dateIdentified: string | null | undefined;
readonly description: string | null | undefined; readonly description: string | null | undefined;
readonly dueDate: any | null | undefined; readonly dueDate: string | null | undefined;
readonly id: string; readonly id: string;
readonly owner: { readonly owner: {
readonly fullName: string; readonly fullName: string;

View File

@@ -1,5 +1,5 @@
/** /**
* @generated SignedSource<<97f85a5e54306b3b401a123c1d0fc41c>> * @generated SignedSource<<6a3589d799bf9319227833a4356864b2>>
* @lightSyntaxTransform * @lightSyntaxTransform
* @nogrep * @nogrep
*/ */
@@ -25,10 +25,10 @@ export type NonconformityGraphNodeQuery$data = {
readonly canDelete?: boolean; readonly canDelete?: boolean;
readonly canUpdate?: boolean; readonly canUpdate?: boolean;
readonly correctiveAction?: string | null | undefined; readonly correctiveAction?: string | null | undefined;
readonly createdAt?: any; readonly createdAt?: string;
readonly dateIdentified?: any | null | undefined; readonly dateIdentified?: string | null | undefined;
readonly description?: string | null | undefined; readonly description?: string | null | undefined;
readonly dueDate?: any | null | undefined; readonly dueDate?: string | null | undefined;
readonly effectivenessCheck?: string | null | undefined; readonly effectivenessCheck?: string | null | undefined;
readonly id?: string; readonly id?: string;
readonly organization?: { readonly organization?: {
@@ -43,7 +43,7 @@ export type NonconformityGraphNodeQuery$data = {
readonly rootCause?: string; readonly rootCause?: string;
readonly snapshotId?: string | null | undefined; readonly snapshotId?: string | null | undefined;
readonly status?: NonconformityStatus; readonly status?: NonconformityStatus;
readonly updatedAt?: any; readonly updatedAt?: string;
}; };
}; };
export type NonconformityGraphNodeQuery = { export type NonconformityGraphNodeQuery = {

View File

@@ -1,5 +1,5 @@
/** /**
* @generated SignedSource<<2f4ca0549a2e01d68d9fb752298beb4c>> * @generated SignedSource<<b167add8ba44f61fd813e211d2d29c05>>
* @lightSyntaxTransform * @lightSyntaxTransform
* @nogrep * @nogrep
*/ */
@@ -13,9 +13,9 @@ export type NonconformityStatus = "CLOSED" | "IN_PROGRESS" | "OPEN";
export type UpdateNonconformityInput = { export type UpdateNonconformityInput = {
auditId?: string | null | undefined; auditId?: string | null | undefined;
correctiveAction?: string | null | undefined; correctiveAction?: string | null | undefined;
dateIdentified?: any | null | undefined; dateIdentified?: string | null | undefined;
description?: string | null | undefined; description?: string | null | undefined;
dueDate?: any | null | undefined; dueDate?: string | null | undefined;
effectivenessCheck?: string | null | undefined; effectivenessCheck?: string | null | undefined;
id: string; id: string;
ownerId?: string | null | undefined; ownerId?: string | null | undefined;
@@ -37,9 +37,9 @@ export type NonconformityGraphUpdateMutation$data = {
readonly id: string; readonly id: string;
} | null | undefined; } | null | undefined;
readonly correctiveAction: string | null | undefined; readonly correctiveAction: string | null | undefined;
readonly dateIdentified: any | null | undefined; readonly dateIdentified: string | null | undefined;
readonly description: string | null | undefined; readonly description: string | null | undefined;
readonly dueDate: any | null | undefined; readonly dueDate: string | null | undefined;
readonly effectivenessCheck: string | null | undefined; readonly effectivenessCheck: string | null | undefined;
readonly id: string; readonly id: string;
readonly owner: { readonly owner: {
@@ -49,7 +49,7 @@ export type NonconformityGraphUpdateMutation$data = {
readonly referenceId: string; readonly referenceId: string;
readonly rootCause: string; readonly rootCause: string;
readonly status: NonconformityStatus; readonly status: NonconformityStatus;
readonly updatedAt: any; readonly updatedAt: string;
}; };
}; };
}; };

View File

@@ -1,5 +1,5 @@
/** /**
* @generated SignedSource<<e1a92b055990a5c1e76e9750d51f0eb4>> * @generated SignedSource<<1f23de4809b353b4b807c3fa85146bf4>>
* @lightSyntaxTransform * @lightSyntaxTransform
* @nogrep * @nogrep
*/ */
@@ -14,8 +14,8 @@ export type ObligationType = "CONTRACTUAL" | "LEGAL";
export type CreateObligationInput = { export type CreateObligationInput = {
actionsToBeImplemented?: string | null | undefined; actionsToBeImplemented?: string | null | undefined;
area?: string | null | undefined; area?: string | null | undefined;
dueDate?: any | null | undefined; dueDate?: string | null | undefined;
lastReviewDate?: any | null | undefined; lastReviewDate?: string | null | undefined;
organizationId: string; organizationId: string;
ownerId: string; ownerId: string;
regulator?: string | null | undefined; regulator?: string | null | undefined;
@@ -36,10 +36,10 @@ export type ObligationGraphCreateMutation$data = {
readonly area: string | null | undefined; readonly area: string | null | undefined;
readonly canDelete: boolean; readonly canDelete: boolean;
readonly canUpdate: boolean; readonly canUpdate: boolean;
readonly createdAt: any; readonly createdAt: string;
readonly dueDate: any | null | undefined; readonly dueDate: string | null | undefined;
readonly id: string; readonly id: string;
readonly lastReviewDate: any | null | undefined; readonly lastReviewDate: string | null | undefined;
readonly owner: { readonly owner: {
readonly fullName: string; readonly fullName: string;
readonly id: string; readonly id: string;

View File

@@ -1,5 +1,5 @@
/** /**
* @generated SignedSource<<f3d356dcc5bfe10c9de6a79357ee8924>> * @generated SignedSource<<200a1aba470ed72c73e3542bdc907315>>
* @lightSyntaxTransform * @lightSyntaxTransform
* @nogrep * @nogrep
*/ */
@@ -20,10 +20,10 @@ export type ObligationGraphNodeQuery$data = {
readonly area?: string | null | undefined; readonly area?: string | null | undefined;
readonly canDelete?: boolean; readonly canDelete?: boolean;
readonly canUpdate?: boolean; readonly canUpdate?: boolean;
readonly createdAt?: any; readonly createdAt?: string;
readonly dueDate?: any | null | undefined; readonly dueDate?: string | null | undefined;
readonly id?: string; readonly id?: string;
readonly lastReviewDate?: any | null | undefined; readonly lastReviewDate?: string | null | undefined;
readonly organization?: { readonly organization?: {
readonly id: string; readonly id: string;
readonly name: string; readonly name: string;
@@ -39,7 +39,7 @@ export type ObligationGraphNodeQuery$data = {
readonly sourceId?: string | null | undefined; readonly sourceId?: string | null | undefined;
readonly status?: ObligationStatus; readonly status?: ObligationStatus;
readonly type?: ObligationType; readonly type?: ObligationType;
readonly updatedAt?: any; readonly updatedAt?: string;
}; };
}; };
export type ObligationGraphNodeQuery = { export type ObligationGraphNodeQuery = {

View File

@@ -1,5 +1,5 @@
/** /**
* @generated SignedSource<<879c7bec9540c7d9e46eecb2fd5243d7>> * @generated SignedSource<<a66add339f1e2e2d4b26b8c963ccd849>>
* @lightSyntaxTransform * @lightSyntaxTransform
* @nogrep * @nogrep
*/ */
@@ -14,9 +14,9 @@ export type ObligationType = "CONTRACTUAL" | "LEGAL";
export type UpdateObligationInput = { export type UpdateObligationInput = {
actionsToBeImplemented?: string | null | undefined; actionsToBeImplemented?: string | null | undefined;
area?: string | null | undefined; area?: string | null | undefined;
dueDate?: any | null | undefined; dueDate?: string | null | undefined;
id: string; id: string;
lastReviewDate?: any | null | undefined; lastReviewDate?: string | null | undefined;
ownerId?: string | null | undefined; ownerId?: string | null | undefined;
regulator?: string | null | undefined; regulator?: string | null | undefined;
requirement?: string | null | undefined; requirement?: string | null | undefined;
@@ -32,9 +32,9 @@ export type ObligationGraphUpdateMutation$data = {
readonly obligation: { readonly obligation: {
readonly actionsToBeImplemented: string | null | undefined; readonly actionsToBeImplemented: string | null | undefined;
readonly area: string | null | undefined; readonly area: string | null | undefined;
readonly dueDate: any | null | undefined; readonly dueDate: string | null | undefined;
readonly id: string; readonly id: string;
readonly lastReviewDate: any | null | undefined; readonly lastReviewDate: string | null | undefined;
readonly owner: { readonly owner: {
readonly fullName: string; readonly fullName: string;
readonly id: string; readonly id: string;
@@ -44,7 +44,7 @@ export type ObligationGraphUpdateMutation$data = {
readonly source: string | null | undefined; readonly source: string | null | undefined;
readonly status: ObligationStatus; readonly status: ObligationStatus;
readonly type: ObligationType; readonly type: ObligationType;
readonly updatedAt: any; readonly updatedAt: string;
}; };
}; };
}; };

View File

@@ -1,5 +1,5 @@
/** /**
* @generated SignedSource<<12b46e529db9caa863dc6f97eaee0c26>> * @generated SignedSource<<d603ca6d1736b916a464f3371df7024d>>
* @lightSyntaxTransform * @lightSyntaxTransform
* @nogrep * @nogrep
*/ */
@@ -21,10 +21,10 @@ export type ObligationsPageFragment$data = {
readonly area: string | null | undefined; readonly area: string | null | undefined;
readonly canDelete: boolean; readonly canDelete: boolean;
readonly canUpdate: boolean; readonly canUpdate: boolean;
readonly createdAt: any; readonly createdAt: string;
readonly dueDate: any | null | undefined; readonly dueDate: string | null | undefined;
readonly id: string; readonly id: string;
readonly lastReviewDate: any | null | undefined; readonly lastReviewDate: string | null | undefined;
readonly owner: { readonly owner: {
readonly fullName: string; readonly fullName: string;
readonly id: string; readonly id: string;
@@ -35,11 +35,11 @@ export type ObligationsPageFragment$data = {
readonly source: string | null | undefined; readonly source: string | null | undefined;
readonly sourceId: string | null | undefined; readonly sourceId: string | null | undefined;
readonly status: ObligationStatus; readonly status: ObligationStatus;
readonly updatedAt: any; readonly updatedAt: string;
}; };
}>; }>;
readonly pageInfo: { readonly pageInfo: {
readonly endCursor: any | null | undefined; readonly endCursor: string | null | undefined;
readonly hasNextPage: boolean; readonly hasNextPage: boolean;
}; };
readonly totalCount: number; readonly totalCount: number;

View File

@@ -1,5 +1,5 @@
/** /**
* @generated SignedSource<<70d87b06a0ba8d361312388f587e14a4>> * @generated SignedSource<<1ac1cfaaf7028d5f1a6f1daf69290cdc>>
* @lightSyntaxTransform * @lightSyntaxTransform
* @nogrep * @nogrep
*/ */
@@ -11,7 +11,7 @@
import { ConcreteRequest } from 'relay-runtime'; import { ConcreteRequest } from 'relay-runtime';
import { FragmentRefs } from "relay-runtime"; import { FragmentRefs } from "relay-runtime";
export type ObligationsPageRefetchQuery$variables = { export type ObligationsPageRefetchQuery$variables = {
after?: any | null | undefined; after?: string | null | undefined;
first?: number | null | undefined; first?: number | null | undefined;
id: string; id: string;
snapshotId?: string | null | undefined; snapshotId?: string | null | undefined;

View File

@@ -1,5 +1,5 @@
/** /**
* @generated SignedSource<<547fca558bc3b4667355cef5d830c9ca>> * @generated SignedSource<<9cdea24323a4e31f80ec9a2327d475d5>>
* @lightSyntaxTransform * @lightSyntaxTransform
* @nogrep * @nogrep
*/ */
@@ -15,16 +15,16 @@ export type PeopleGraphNodeQuery$variables = {
}; };
export type PeopleGraphNodeQuery$data = { export type PeopleGraphNodeQuery$data = {
readonly node: { readonly node: {
readonly additionalEmailAddresses?: ReadonlyArray<any>; readonly additionalEmailAddresses?: ReadonlyArray<string>;
readonly canDelete?: boolean; readonly canDelete?: boolean;
readonly canUpdate?: boolean; readonly canUpdate?: boolean;
readonly contractEndDate?: any | null | undefined; readonly contractEndDate?: string | null | undefined;
readonly contractStartDate?: any | null | undefined; readonly contractStartDate?: string | null | undefined;
readonly fullName?: string; readonly fullName?: string;
readonly id?: string; readonly id?: string;
readonly kind?: PeopleKind; readonly kind?: PeopleKind;
readonly position?: string | null | undefined; readonly position?: string | null | undefined;
readonly primaryEmailAddress?: any; readonly primaryEmailAddress?: string;
}; };
}; };
export type PeopleGraphNodeQuery = { export type PeopleGraphNodeQuery = {

View File

@@ -1,5 +1,5 @@
/** /**
* @generated SignedSource<<2f4336da58b8ec9db40d3b90a75a750f>> * @generated SignedSource<<59393bd95d26b50bb20f933e548497cb>>
* @lightSyntaxTransform * @lightSyntaxTransform
* @nogrep * @nogrep
*/ */
@@ -18,16 +18,16 @@ export type PeopleGraphPaginatedFragment$data = {
readonly __id: string; readonly __id: string;
readonly edges: ReadonlyArray<{ readonly edges: ReadonlyArray<{
readonly node: { readonly node: {
readonly additionalEmailAddresses: ReadonlyArray<any>; readonly additionalEmailAddresses: ReadonlyArray<string>;
readonly canDelete: boolean; readonly canDelete: boolean;
readonly canUpdate: boolean; readonly canUpdate: boolean;
readonly contractEndDate: any | null | undefined; readonly contractEndDate: string | null | undefined;
readonly contractStartDate: any | null | undefined; readonly contractStartDate: string | null | undefined;
readonly fullName: string; readonly fullName: string;
readonly id: string; readonly id: string;
readonly kind: PeopleKind; readonly kind: PeopleKind;
readonly position: string | null | undefined; readonly position: string | null | undefined;
readonly primaryEmailAddress: any; readonly primaryEmailAddress: string;
}; };
}>; }>;
}; };

View File

@@ -1,5 +1,5 @@
/** /**
* @generated SignedSource<<8d8fcf4db72f5417db8a4f32129a687a>> * @generated SignedSource<<3b196ff5779051fcd1ed9cca6b7be112>>
* @lightSyntaxTransform * @lightSyntaxTransform
* @nogrep * @nogrep
*/ */
@@ -23,7 +23,7 @@ export type PeopleGraphQuery$data = {
readonly node: { readonly node: {
readonly fullName: string; readonly fullName: string;
readonly id: string; readonly id: string;
readonly primaryEmailAddress: any; readonly primaryEmailAddress: string;
}; };
}>; }>;
}; };

View File

@@ -1,5 +1,5 @@
/** /**
* @generated SignedSource<<904f3388abab4e5e84dddf0528530a46>> * @generated SignedSource<<2118560efee5903bb0199e651ac49e2e>>
* @lightSyntaxTransform * @lightSyntaxTransform
* @nogrep * @nogrep
*/ */
@@ -11,14 +11,14 @@
import { ConcreteRequest } from 'relay-runtime'; import { ConcreteRequest } from 'relay-runtime';
export type PeopleKind = "CONTRACTOR" | "EMPLOYEE" | "SERVICE_ACCOUNT"; export type PeopleKind = "CONTRACTOR" | "EMPLOYEE" | "SERVICE_ACCOUNT";
export type UpdatePeopleInput = { export type UpdatePeopleInput = {
additionalEmailAddresses?: ReadonlyArray<any> | null | undefined; additionalEmailAddresses?: ReadonlyArray<string> | null | undefined;
contractEndDate?: any | null | undefined; contractEndDate?: string | null | undefined;
contractStartDate?: any | null | undefined; contractStartDate?: string | null | undefined;
fullName?: string | null | undefined; fullName?: string | null | undefined;
id: string; id: string;
kind?: PeopleKind | null | undefined; kind?: PeopleKind | null | undefined;
position?: string | null | undefined; position?: string | null | undefined;
primaryEmailAddress?: any | null | undefined; primaryEmailAddress?: string | null | undefined;
}; };
export type PeopleGraphUpdateMutation$variables = { export type PeopleGraphUpdateMutation$variables = {
input: UpdatePeopleInput; input: UpdatePeopleInput;
@@ -26,14 +26,14 @@ export type PeopleGraphUpdateMutation$variables = {
export type PeopleGraphUpdateMutation$data = { export type PeopleGraphUpdateMutation$data = {
readonly updatePeople: { readonly updatePeople: {
readonly people: { readonly people: {
readonly additionalEmailAddresses: ReadonlyArray<any>; readonly additionalEmailAddresses: ReadonlyArray<string>;
readonly contractEndDate: any | null | undefined; readonly contractEndDate: string | null | undefined;
readonly contractStartDate: any | null | undefined; readonly contractStartDate: string | null | undefined;
readonly fullName: string; readonly fullName: string;
readonly id: string; readonly id: string;
readonly kind: PeopleKind; readonly kind: PeopleKind;
readonly position: string | null | undefined; readonly position: string | null | undefined;
readonly primaryEmailAddress: any; readonly primaryEmailAddress: string;
}; };
}; };
}; };

View File

@@ -1,5 +1,5 @@
/** /**
* @generated SignedSource<<9f37a0466d956646c36ab3afe67a4664>> * @generated SignedSource<<a784f382bb38ee97a08852676bdf78c5>>
* @lightSyntaxTransform * @lightSyntaxTransform
* @nogrep * @nogrep
*/ */
@@ -20,8 +20,8 @@ export type PeopleOrder = {
field: PeopleOrderField; field: PeopleOrderField;
}; };
export type PeopleListQuery$variables = { export type PeopleListQuery$variables = {
after?: any | null | undefined; after?: string | null | undefined;
before?: any | null | undefined; before?: string | null | undefined;
filter?: PeopleFilter | null | undefined; filter?: PeopleFilter | null | undefined;
first?: number | null | undefined; first?: number | null | undefined;
id: string; id: string;

View File

@@ -1,5 +1,5 @@
/** /**
* @generated SignedSource<<5f8b1950dc00b28dac0ae08df590924e>> * @generated SignedSource<<f671b035c79f039c03362a0e6b8d485b>>
* @lightSyntaxTransform * @lightSyntaxTransform
* @nogrep * @nogrep
*/ */
@@ -16,7 +16,7 @@ export type ProcessingActivitiesPageDPIAFragment$data = {
readonly __id: string; readonly __id: string;
readonly edges: ReadonlyArray<{ readonly edges: ReadonlyArray<{
readonly node: { readonly node: {
readonly createdAt: any; readonly createdAt: string;
readonly description: string | null | undefined; readonly description: string | null | undefined;
readonly id: string; readonly id: string;
readonly potentialRisk: string | null | undefined; readonly potentialRisk: string | null | undefined;
@@ -25,11 +25,11 @@ export type ProcessingActivitiesPageDPIAFragment$data = {
readonly name: string; readonly name: string;
}; };
readonly residualRisk: DataProtectionImpactAssessmentResidualRisk | null | undefined; readonly residualRisk: DataProtectionImpactAssessmentResidualRisk | null | undefined;
readonly updatedAt: any; readonly updatedAt: string;
}; };
}>; }>;
readonly pageInfo: { readonly pageInfo: {
readonly endCursor: any | null | undefined; readonly endCursor: string | null | undefined;
readonly hasNextPage: boolean; readonly hasNextPage: boolean;
}; };
readonly totalCount: number; readonly totalCount: number;

View File

@@ -1,5 +1,5 @@
/** /**
* @generated SignedSource<<9bde8f385a0f31b1738122ca97cb02e9>> * @generated SignedSource<<f0bac674d8b20eb24762feabbfb4dc2e>>
* @lightSyntaxTransform * @lightSyntaxTransform
* @nogrep * @nogrep
*/ */
@@ -11,7 +11,7 @@
import { ConcreteRequest } from 'relay-runtime'; import { ConcreteRequest } from 'relay-runtime';
import { FragmentRefs } from "relay-runtime"; import { FragmentRefs } from "relay-runtime";
export type ProcessingActivitiesPageDPIARefetchQuery$variables = { export type ProcessingActivitiesPageDPIARefetchQuery$variables = {
after?: any | null | undefined; after?: string | null | undefined;
first?: number | null | undefined; first?: number | null | undefined;
id: string; id: string;
snapshotId?: string | null | undefined; snapshotId?: string | null | undefined;

View File

@@ -1,5 +1,5 @@
/** /**
* @generated SignedSource<<720ca14096de267a177e9f8e4b549036>> * @generated SignedSource<<d8293252572dc69148a45b6ce2fabafa>>
* @lightSyntaxTransform * @lightSyntaxTransform
* @nogrep * @nogrep
*/ */
@@ -17,7 +17,7 @@ export type ProcessingActivitiesPageFragment$data = {
readonly __id: string; readonly __id: string;
readonly edges: ReadonlyArray<{ readonly edges: ReadonlyArray<{
readonly node: { readonly node: {
readonly createdAt: any; readonly createdAt: string;
readonly dataSubjectCategory: string | null | undefined; readonly dataSubjectCategory: string | null | undefined;
readonly id: string; readonly id: string;
readonly internationalTransfers: boolean; readonly internationalTransfers: boolean;
@@ -28,11 +28,11 @@ export type ProcessingActivitiesPageFragment$data = {
readonly purpose: string | null | undefined; readonly purpose: string | null | undefined;
readonly snapshotId: string | null | undefined; readonly snapshotId: string | null | undefined;
readonly sourceId: string | null | undefined; readonly sourceId: string | null | undefined;
readonly updatedAt: any; readonly updatedAt: string;
}; };
}>; }>;
readonly pageInfo: { readonly pageInfo: {
readonly endCursor: any | null | undefined; readonly endCursor: string | null | undefined;
readonly hasNextPage: boolean; readonly hasNextPage: boolean;
}; };
readonly totalCount: number; readonly totalCount: number;

View File

@@ -1,5 +1,5 @@
/** /**
* @generated SignedSource<<38414e52b180db9b290d16231a2c69ef>> * @generated SignedSource<<0408262bc53f870212c3a87156f861f4>>
* @lightSyntaxTransform * @lightSyntaxTransform
* @nogrep * @nogrep
*/ */
@@ -11,7 +11,7 @@
import { ConcreteRequest } from 'relay-runtime'; import { ConcreteRequest } from 'relay-runtime';
import { FragmentRefs } from "relay-runtime"; import { FragmentRefs } from "relay-runtime";
export type ProcessingActivitiesPageRefetchQuery$variables = { export type ProcessingActivitiesPageRefetchQuery$variables = {
after?: any | null | undefined; after?: string | null | undefined;
first?: number | null | undefined; first?: number | null | undefined;
id: string; id: string;
snapshotId?: string | null | undefined; snapshotId?: string | null | undefined;

View File

@@ -1,5 +1,5 @@
/** /**
* @generated SignedSource<<cf12e9f66e77db986c29774df1519063>> * @generated SignedSource<<6f67465a1bac4f3cac9c891b9c4cc9a1>>
* @lightSyntaxTransform * @lightSyntaxTransform
* @nogrep * @nogrep
*/ */
@@ -16,7 +16,7 @@ export type ProcessingActivitiesPageTIAFragment$data = {
readonly __id: string; readonly __id: string;
readonly edges: ReadonlyArray<{ readonly edges: ReadonlyArray<{
readonly node: { readonly node: {
readonly createdAt: any; readonly createdAt: string;
readonly dataSubjects: string | null | undefined; readonly dataSubjects: string | null | undefined;
readonly id: string; readonly id: string;
readonly localLawRisk: string | null | undefined; readonly localLawRisk: string | null | undefined;
@@ -25,11 +25,11 @@ export type ProcessingActivitiesPageTIAFragment$data = {
readonly name: string; readonly name: string;
}; };
readonly transfer: string | null | undefined; readonly transfer: string | null | undefined;
readonly updatedAt: any; readonly updatedAt: string;
}; };
}>; }>;
readonly pageInfo: { readonly pageInfo: {
readonly endCursor: any | null | undefined; readonly endCursor: string | null | undefined;
readonly hasNextPage: boolean; readonly hasNextPage: boolean;
}; };
readonly totalCount: number; readonly totalCount: number;

View File

@@ -1,5 +1,5 @@
/** /**
* @generated SignedSource<<c95623d4195e8eef1ad809e57535397d>> * @generated SignedSource<<ee1abc6db9644da780dad4e73f52acf6>>
* @lightSyntaxTransform * @lightSyntaxTransform
* @nogrep * @nogrep
*/ */
@@ -11,7 +11,7 @@
import { ConcreteRequest } from 'relay-runtime'; import { ConcreteRequest } from 'relay-runtime';
import { FragmentRefs } from "relay-runtime"; import { FragmentRefs } from "relay-runtime";
export type ProcessingActivitiesPageTIARefetchQuery$variables = { export type ProcessingActivitiesPageTIARefetchQuery$variables = {
after?: any | null | undefined; after?: string | null | undefined;
first?: number | null | undefined; first?: number | null | undefined;
id: string; id: string;
snapshotId?: string | null | undefined; snapshotId?: string | null | undefined;

View File

@@ -1,5 +1,5 @@
/** /**
* @generated SignedSource<<93963be550c1cf4d590c0e7186b5d10f>> * @generated SignedSource<<d993bbef933d660af5aaac0a88d3c7f7>>
* @lightSyntaxTransform * @lightSyntaxTransform
* @nogrep * @nogrep
*/ */
@@ -24,14 +24,14 @@ export type ProcessingActivityGraphCreateDPIAMutation$variables = {
export type ProcessingActivityGraphCreateDPIAMutation$data = { export type ProcessingActivityGraphCreateDPIAMutation$data = {
readonly createDataProtectionImpactAssessment: { readonly createDataProtectionImpactAssessment: {
readonly dataProtectionImpactAssessment: { readonly dataProtectionImpactAssessment: {
readonly createdAt: any; readonly createdAt: string;
readonly description: string | null | undefined; readonly description: string | null | undefined;
readonly id: string; readonly id: string;
readonly mitigations: string | null | undefined; readonly mitigations: string | null | undefined;
readonly necessityAndProportionality: string | null | undefined; readonly necessityAndProportionality: string | null | undefined;
readonly potentialRisk: string | null | undefined; readonly potentialRisk: string | null | undefined;
readonly residualRisk: DataProtectionImpactAssessmentResidualRisk | null | undefined; readonly residualRisk: DataProtectionImpactAssessmentResidualRisk | null | undefined;
readonly updatedAt: any; readonly updatedAt: string;
}; };
}; };
}; };

View File

@@ -1,5 +1,5 @@
/** /**
* @generated SignedSource<<a6c5ecf296ecfda1ac7b2ec2f315af26>> * @generated SignedSource<<af15e0a3ab99f57152fbb4e9d23eca6b>>
* @lightSyntaxTransform * @lightSyntaxTransform
* @nogrep * @nogrep
*/ */
@@ -21,11 +21,11 @@ export type CreateProcessingActivityInput = {
dataProtectionOfficerId?: string | null | undefined; dataProtectionOfficerId?: string | null | undefined;
dataSubjectCategory?: string | null | undefined; dataSubjectCategory?: string | null | undefined;
internationalTransfers: boolean; internationalTransfers: boolean;
lastReviewDate?: any | null | undefined; lastReviewDate?: string | null | undefined;
lawfulBasis: ProcessingActivityLawfulBasis; lawfulBasis: ProcessingActivityLawfulBasis;
location?: string | null | undefined; location?: string | null | undefined;
name: string; name: string;
nextReviewDate?: any | null | undefined; nextReviewDate?: string | null | undefined;
organizationId: string; organizationId: string;
personalDataCategory?: string | null | undefined; personalDataCategory?: string | null | undefined;
purpose?: string | null | undefined; purpose?: string | null | undefined;
@@ -47,7 +47,7 @@ export type ProcessingActivityGraphCreateMutation$data = {
readonly processingActivityEdge: { readonly processingActivityEdge: {
readonly node: { readonly node: {
readonly consentEvidenceLink: string | null | undefined; readonly consentEvidenceLink: string | null | undefined;
readonly createdAt: any; readonly createdAt: string;
readonly dataProtectionImpactAssessmentNeeded: ProcessingActivityDataProtectionImpactAssessment; readonly dataProtectionImpactAssessmentNeeded: ProcessingActivityDataProtectionImpactAssessment;
readonly dataProtectionOfficer: { readonly dataProtectionOfficer: {
readonly fullName: string; readonly fullName: string;
@@ -56,11 +56,11 @@ export type ProcessingActivityGraphCreateMutation$data = {
readonly dataSubjectCategory: string | null | undefined; readonly dataSubjectCategory: string | null | undefined;
readonly id: string; readonly id: string;
readonly internationalTransfers: boolean; readonly internationalTransfers: boolean;
readonly lastReviewDate: any | null | undefined; readonly lastReviewDate: string | null | undefined;
readonly lawfulBasis: ProcessingActivityLawfulBasis; readonly lawfulBasis: ProcessingActivityLawfulBasis;
readonly location: string | null | undefined; readonly location: string | null | undefined;
readonly name: string; readonly name: string;
readonly nextReviewDate: any | null | undefined; readonly nextReviewDate: string | null | undefined;
readonly personalDataCategory: string | null | undefined; readonly personalDataCategory: string | null | undefined;
readonly purpose: string | null | undefined; readonly purpose: string | null | undefined;
readonly recipients: string | null | undefined; readonly recipients: string | null | undefined;

View File

@@ -1,5 +1,5 @@
/** /**
* @generated SignedSource<<d3c71290624f4f1394422723aba9d130>> * @generated SignedSource<<540f500784ebd0386ced3eb31a6afa49>>
* @lightSyntaxTransform * @lightSyntaxTransform
* @nogrep * @nogrep
*/ */
@@ -23,14 +23,14 @@ export type ProcessingActivityGraphCreateTIAMutation$variables = {
export type ProcessingActivityGraphCreateTIAMutation$data = { export type ProcessingActivityGraphCreateTIAMutation$data = {
readonly createTransferImpactAssessment: { readonly createTransferImpactAssessment: {
readonly transferImpactAssessment: { readonly transferImpactAssessment: {
readonly createdAt: any; readonly createdAt: string;
readonly dataSubjects: string | null | undefined; readonly dataSubjects: string | null | undefined;
readonly id: string; readonly id: string;
readonly legalMechanism: string | null | undefined; readonly legalMechanism: string | null | undefined;
readonly localLawRisk: string | null | undefined; readonly localLawRisk: string | null | undefined;
readonly supplementaryMeasures: string | null | undefined; readonly supplementaryMeasures: string | null | undefined;
readonly transfer: string | null | undefined; readonly transfer: string | null | undefined;
readonly updatedAt: any; readonly updatedAt: string;
}; };
}; };
}; };

View File

@@ -1,5 +1,5 @@
/** /**
* @generated SignedSource<<b7fdcb56199f74956910a6f14dbc6340>> * @generated SignedSource<<cf8cd15a7885212668ac995140192f12>>
* @lightSyntaxTransform * @lightSyntaxTransform
* @nogrep * @nogrep
*/ */
@@ -23,16 +23,16 @@ export type ProcessingActivityGraphNodeQuery$variables = {
export type ProcessingActivityGraphNodeQuery$data = { export type ProcessingActivityGraphNodeQuery$data = {
readonly node: { readonly node: {
readonly consentEvidenceLink?: string | null | undefined; readonly consentEvidenceLink?: string | null | undefined;
readonly createdAt?: any; readonly createdAt?: string;
readonly dataProtectionImpactAssessment?: { readonly dataProtectionImpactAssessment?: {
readonly createdAt: any; readonly createdAt: string;
readonly description: string | null | undefined; readonly description: string | null | undefined;
readonly id: string; readonly id: string;
readonly mitigations: string | null | undefined; readonly mitigations: string | null | undefined;
readonly necessityAndProportionality: string | null | undefined; readonly necessityAndProportionality: string | null | undefined;
readonly potentialRisk: string | null | undefined; readonly potentialRisk: string | null | undefined;
readonly residualRisk: DataProtectionImpactAssessmentResidualRisk | null | undefined; readonly residualRisk: DataProtectionImpactAssessmentResidualRisk | null | undefined;
readonly updatedAt: any; readonly updatedAt: string;
} | null | undefined; } | null | undefined;
readonly dataProtectionImpactAssessmentNeeded?: ProcessingActivityDataProtectionImpactAssessment; readonly dataProtectionImpactAssessmentNeeded?: ProcessingActivityDataProtectionImpactAssessment;
readonly dataProtectionOfficer?: { readonly dataProtectionOfficer?: {
@@ -42,11 +42,11 @@ export type ProcessingActivityGraphNodeQuery$data = {
readonly dataSubjectCategory?: string | null | undefined; readonly dataSubjectCategory?: string | null | undefined;
readonly id?: string; readonly id?: string;
readonly internationalTransfers?: boolean; readonly internationalTransfers?: boolean;
readonly lastReviewDate?: any | null | undefined; readonly lastReviewDate?: string | null | undefined;
readonly lawfulBasis?: ProcessingActivityLawfulBasis; readonly lawfulBasis?: ProcessingActivityLawfulBasis;
readonly location?: string | null | undefined; readonly location?: string | null | undefined;
readonly name?: string; readonly name?: string;
readonly nextReviewDate?: any | null | undefined; readonly nextReviewDate?: string | null | undefined;
readonly organization?: { readonly organization?: {
readonly id: string; readonly id: string;
readonly name: string; readonly name: string;
@@ -60,18 +60,18 @@ export type ProcessingActivityGraphNodeQuery$data = {
readonly snapshotId?: string | null | undefined; readonly snapshotId?: string | null | undefined;
readonly specialOrCriminalData?: ProcessingActivitySpecialOrCriminalDatum; readonly specialOrCriminalData?: ProcessingActivitySpecialOrCriminalDatum;
readonly transferImpactAssessment?: { readonly transferImpactAssessment?: {
readonly createdAt: any; readonly createdAt: string;
readonly dataSubjects: string | null | undefined; readonly dataSubjects: string | null | undefined;
readonly id: string; readonly id: string;
readonly legalMechanism: string | null | undefined; readonly legalMechanism: string | null | undefined;
readonly localLawRisk: string | null | undefined; readonly localLawRisk: string | null | undefined;
readonly supplementaryMeasures: string | null | undefined; readonly supplementaryMeasures: string | null | undefined;
readonly transfer: string | null | undefined; readonly transfer: string | null | undefined;
readonly updatedAt: any; readonly updatedAt: string;
} | null | undefined; } | null | undefined;
readonly transferImpactAssessmentNeeded?: ProcessingActivityTransferImpactAssessment; readonly transferImpactAssessmentNeeded?: ProcessingActivityTransferImpactAssessment;
readonly transferSafeguards?: ProcessingActivityTransferSafeguard | null | undefined; readonly transferSafeguards?: ProcessingActivityTransferSafeguard | null | undefined;
readonly updatedAt?: any; readonly updatedAt?: string;
readonly vendors?: { readonly vendors?: {
readonly edges: ReadonlyArray<{ readonly edges: ReadonlyArray<{
readonly node: { readonly node: {

View File

@@ -1,5 +1,5 @@
/** /**
* @generated SignedSource<<19aee9e171835b912cf2e241f2d4c984>> * @generated SignedSource<<9bd2a9a518e61ab378f74e7fd2521a01>>
* @lightSyntaxTransform * @lightSyntaxTransform
* @nogrep * @nogrep
*/ */
@@ -24,14 +24,14 @@ export type ProcessingActivityGraphUpdateDPIAMutation$variables = {
export type ProcessingActivityGraphUpdateDPIAMutation$data = { export type ProcessingActivityGraphUpdateDPIAMutation$data = {
readonly updateDataProtectionImpactAssessment: { readonly updateDataProtectionImpactAssessment: {
readonly dataProtectionImpactAssessment: { readonly dataProtectionImpactAssessment: {
readonly createdAt: any; readonly createdAt: string;
readonly description: string | null | undefined; readonly description: string | null | undefined;
readonly id: string; readonly id: string;
readonly mitigations: string | null | undefined; readonly mitigations: string | null | undefined;
readonly necessityAndProportionality: string | null | undefined; readonly necessityAndProportionality: string | null | undefined;
readonly potentialRisk: string | null | undefined; readonly potentialRisk: string | null | undefined;
readonly residualRisk: DataProtectionImpactAssessmentResidualRisk | null | undefined; readonly residualRisk: DataProtectionImpactAssessmentResidualRisk | null | undefined;
readonly updatedAt: any; readonly updatedAt: string;
}; };
}; };
}; };

View File

@@ -1,5 +1,5 @@
/** /**
* @generated SignedSource<<6eabaaaf48f838135b6b55f35a591b60>> * @generated SignedSource<<3c389bd21593ce8129cdfca360d3a89d>>
* @lightSyntaxTransform * @lightSyntaxTransform
* @nogrep * @nogrep
*/ */
@@ -22,11 +22,11 @@ export type UpdateProcessingActivityInput = {
dataSubjectCategory?: string | null | undefined; dataSubjectCategory?: string | null | undefined;
id: string; id: string;
internationalTransfers?: boolean | null | undefined; internationalTransfers?: boolean | null | undefined;
lastReviewDate?: any | null | undefined; lastReviewDate?: string | null | undefined;
lawfulBasis?: ProcessingActivityLawfulBasis | null | undefined; lawfulBasis?: ProcessingActivityLawfulBasis | null | undefined;
location?: string | null | undefined; location?: string | null | undefined;
name?: string | null | undefined; name?: string | null | undefined;
nextReviewDate?: any | null | undefined; nextReviewDate?: string | null | undefined;
personalDataCategory?: string | null | undefined; personalDataCategory?: string | null | undefined;
purpose?: string | null | undefined; purpose?: string | null | undefined;
recipients?: string | null | undefined; recipients?: string | null | undefined;
@@ -53,11 +53,11 @@ export type ProcessingActivityGraphUpdateMutation$data = {
readonly dataSubjectCategory: string | null | undefined; readonly dataSubjectCategory: string | null | undefined;
readonly id: string; readonly id: string;
readonly internationalTransfers: boolean; readonly internationalTransfers: boolean;
readonly lastReviewDate: any | null | undefined; readonly lastReviewDate: string | null | undefined;
readonly lawfulBasis: ProcessingActivityLawfulBasis; readonly lawfulBasis: ProcessingActivityLawfulBasis;
readonly location: string | null | undefined; readonly location: string | null | undefined;
readonly name: string; readonly name: string;
readonly nextReviewDate: any | null | undefined; readonly nextReviewDate: string | null | undefined;
readonly personalDataCategory: string | null | undefined; readonly personalDataCategory: string | null | undefined;
readonly purpose: string | null | undefined; readonly purpose: string | null | undefined;
readonly recipients: string | null | undefined; readonly recipients: string | null | undefined;
@@ -67,7 +67,7 @@ export type ProcessingActivityGraphUpdateMutation$data = {
readonly specialOrCriminalData: ProcessingActivitySpecialOrCriminalDatum; readonly specialOrCriminalData: ProcessingActivitySpecialOrCriminalDatum;
readonly transferImpactAssessmentNeeded: ProcessingActivityTransferImpactAssessment; readonly transferImpactAssessmentNeeded: ProcessingActivityTransferImpactAssessment;
readonly transferSafeguards: ProcessingActivityTransferSafeguard | null | undefined; readonly transferSafeguards: ProcessingActivityTransferSafeguard | null | undefined;
readonly updatedAt: any; readonly updatedAt: string;
readonly vendors: { readonly vendors: {
readonly edges: ReadonlyArray<{ readonly edges: ReadonlyArray<{
readonly node: { readonly node: {

View File

@@ -1,5 +1,5 @@
/** /**
* @generated SignedSource<<65e2c220baf8f50b789a91479ff1c328>> * @generated SignedSource<<d4281ff7f3648b044caa41cf643f2838>>
* @lightSyntaxTransform * @lightSyntaxTransform
* @nogrep * @nogrep
*/ */
@@ -23,14 +23,14 @@ export type ProcessingActivityGraphUpdateTIAMutation$variables = {
export type ProcessingActivityGraphUpdateTIAMutation$data = { export type ProcessingActivityGraphUpdateTIAMutation$data = {
readonly updateTransferImpactAssessment: { readonly updateTransferImpactAssessment: {
readonly transferImpactAssessment: { readonly transferImpactAssessment: {
readonly createdAt: any; readonly createdAt: string;
readonly dataSubjects: string | null | undefined; readonly dataSubjects: string | null | undefined;
readonly id: string; readonly id: string;
readonly legalMechanism: string | null | undefined; readonly legalMechanism: string | null | undefined;
readonly localLawRisk: string | null | undefined; readonly localLawRisk: string | null | undefined;
readonly supplementaryMeasures: string | null | undefined; readonly supplementaryMeasures: string | null | undefined;
readonly transfer: string | null | undefined; readonly transfer: string | null | undefined;
readonly updatedAt: any; readonly updatedAt: string;
}; };
}; };
}; };

View File

@@ -1,5 +1,5 @@
/** /**
* @generated SignedSource<<630d2ddf409889a6c1632063d18a2545>> * @generated SignedSource<<77e3b75def25c670d0c069140d111507>>
* @lightSyntaxTransform * @lightSyntaxTransform
* @nogrep * @nogrep
*/ */
@@ -15,7 +15,7 @@ export type CreateRightsRequestInput = {
actionTaken?: string | null | undefined; actionTaken?: string | null | undefined;
contact?: string | null | undefined; contact?: string | null | undefined;
dataSubject?: string | null | undefined; dataSubject?: string | null | undefined;
deadline?: any | null | undefined; deadline?: string | null | undefined;
details?: string | null | undefined; details?: string | null | undefined;
organizationId: string; organizationId: string;
requestState: RightsRequestState; requestState: RightsRequestState;
@@ -31,9 +31,9 @@ export type RightsRequestGraphCreateMutation$data = {
readonly node: { readonly node: {
readonly actionTaken: string | null | undefined; readonly actionTaken: string | null | undefined;
readonly contact: string | null | undefined; readonly contact: string | null | undefined;
readonly createdAt: any; readonly createdAt: string;
readonly dataSubject: string | null | undefined; readonly dataSubject: string | null | undefined;
readonly deadline: any | null | undefined; readonly deadline: string | null | undefined;
readonly details: string | null | undefined; readonly details: string | null | undefined;
readonly id: string; readonly id: string;
readonly requestState: RightsRequestState; readonly requestState: RightsRequestState;

View File

@@ -1,5 +1,5 @@
/** /**
* @generated SignedSource<<7314c67aea13775f772b81880c524a60>> * @generated SignedSource<<23949230cfdefa0c2a321d4fa38e3ace>>
* @lightSyntaxTransform * @lightSyntaxTransform
* @nogrep * @nogrep
*/ */
@@ -18,9 +18,9 @@ export type RightsRequestGraphNodeQuery$data = {
readonly node: { readonly node: {
readonly actionTaken?: string | null | undefined; readonly actionTaken?: string | null | undefined;
readonly contact?: string | null | undefined; readonly contact?: string | null | undefined;
readonly createdAt?: any; readonly createdAt?: string;
readonly dataSubject?: string | null | undefined; readonly dataSubject?: string | null | undefined;
readonly deadline?: any | null | undefined; readonly deadline?: string | null | undefined;
readonly details?: string | null | undefined; readonly details?: string | null | undefined;
readonly id?: string; readonly id?: string;
readonly organization?: { readonly organization?: {
@@ -29,7 +29,7 @@ export type RightsRequestGraphNodeQuery$data = {
}; };
readonly requestState?: RightsRequestState; readonly requestState?: RightsRequestState;
readonly requestType?: RightsRequestType; readonly requestType?: RightsRequestType;
readonly updatedAt?: any; readonly updatedAt?: string;
}; };
}; };
export type RightsRequestGraphNodeQuery = { export type RightsRequestGraphNodeQuery = {

View File

@@ -1,5 +1,5 @@
/** /**
* @generated SignedSource<<df8070312cba4b83a8f30231ac7b7fde>> * @generated SignedSource<<be978f367e58cceaa6d2d3d581dadd53>>
* @lightSyntaxTransform * @lightSyntaxTransform
* @nogrep * @nogrep
*/ */
@@ -15,7 +15,7 @@ export type UpdateRightsRequestInput = {
actionTaken?: string | null | undefined; actionTaken?: string | null | undefined;
contact?: string | null | undefined; contact?: string | null | undefined;
dataSubject?: string | null | undefined; dataSubject?: string | null | undefined;
deadline?: any | null | undefined; deadline?: string | null | undefined;
details?: string | null | undefined; details?: string | null | undefined;
id: string; id: string;
requestState?: RightsRequestState | null | undefined; requestState?: RightsRequestState | null | undefined;
@@ -30,12 +30,12 @@ export type RightsRequestGraphUpdateMutation$data = {
readonly actionTaken: string | null | undefined; readonly actionTaken: string | null | undefined;
readonly contact: string | null | undefined; readonly contact: string | null | undefined;
readonly dataSubject: string | null | undefined; readonly dataSubject: string | null | undefined;
readonly deadline: any | null | undefined; readonly deadline: string | null | undefined;
readonly details: string | null | undefined; readonly details: string | null | undefined;
readonly id: string; readonly id: string;
readonly requestState: RightsRequestState; readonly requestState: RightsRequestState;
readonly requestType: RightsRequestType; readonly requestType: RightsRequestType;
readonly updatedAt: any; readonly updatedAt: string;
}; };
}; };
}; };

View File

@@ -1,5 +1,5 @@
/** /**
* @generated SignedSource<<4b94130573ce20c5879e717c00128fbb>> * @generated SignedSource<<10add82cf941c1776c712d87451b6da1>>
* @lightSyntaxTransform * @lightSyntaxTransform
* @nogrep * @nogrep
*/ */
@@ -20,18 +20,18 @@ export type RightsRequestsPageFragment$data = {
readonly node: { readonly node: {
readonly actionTaken: string | null | undefined; readonly actionTaken: string | null | undefined;
readonly contact: string | null | undefined; readonly contact: string | null | undefined;
readonly createdAt: any; readonly createdAt: string;
readonly dataSubject: string | null | undefined; readonly dataSubject: string | null | undefined;
readonly deadline: any | null | undefined; readonly deadline: string | null | undefined;
readonly details: string | null | undefined; readonly details: string | null | undefined;
readonly id: string; readonly id: string;
readonly requestState: RightsRequestState; readonly requestState: RightsRequestState;
readonly requestType: RightsRequestType; readonly requestType: RightsRequestType;
readonly updatedAt: any; readonly updatedAt: string;
}; };
}>; }>;
readonly pageInfo: { readonly pageInfo: {
readonly endCursor: any | null | undefined; readonly endCursor: string | null | undefined;
readonly hasNextPage: boolean; readonly hasNextPage: boolean;
}; };
readonly totalCount: number; readonly totalCount: number;

View File

@@ -1,5 +1,5 @@
/** /**
* @generated SignedSource<<dddf70832ae8eecef831e8832a782f20>> * @generated SignedSource<<47e719a83abc9c6cb5f5e1140f70cf70>>
* @lightSyntaxTransform * @lightSyntaxTransform
* @nogrep * @nogrep
*/ */
@@ -11,7 +11,7 @@
import { ConcreteRequest } from 'relay-runtime'; import { ConcreteRequest } from 'relay-runtime';
import { FragmentRefs } from "relay-runtime"; import { FragmentRefs } from "relay-runtime";
export type RightsRequestsPageRefetchQuery$variables = { export type RightsRequestsPageRefetchQuery$variables = {
after?: any | null | undefined; after?: string | null | undefined;
first?: number | null | undefined; first?: number | null | undefined;
id: string; id: string;
}; };

View File

@@ -1,5 +1,5 @@
/** /**
* @generated SignedSource<<082144ec3a6a9a4afe38398cdc3e84ed>> * @generated SignedSource<<d20219178e2a97048e01cc7bedc206a0>>
* @lightSyntaxTransform * @lightSyntaxTransform
* @nogrep * @nogrep
*/ */
@@ -20,8 +20,8 @@ export type ControlOrder = {
field: ControlOrderField; field: ControlOrderField;
}; };
export type RiskControlsTabControlsQuery$variables = { export type RiskControlsTabControlsQuery$variables = {
after?: any | null | undefined; after?: string | null | undefined;
before?: any | null | undefined; before?: string | null | undefined;
filter?: ControlFilter | null | undefined; filter?: ControlFilter | null | undefined;
first?: number | null | undefined; first?: number | null | undefined;
id: string; id: string;

View File

@@ -1,5 +1,5 @@
/** /**
* @generated SignedSource<<29125e9f2562c96a6076ed8b0504a4b1>> * @generated SignedSource<<8c69925ff6e0312b590896229c9bc688>>
* @lightSyntaxTransform * @lightSyntaxTransform
* @nogrep * @nogrep
*/ */
@@ -17,8 +17,8 @@ export type RiskOrder = {
field: RiskOrderField; field: RiskOrderField;
}; };
export type RisksListQuery$variables = { export type RisksListQuery$variables = {
after?: any | null | undefined; after?: string | null | undefined;
before?: any | null | undefined; before?: string | null | undefined;
first?: number | null | undefined; first?: number | null | undefined;
id: string; id: string;
last?: number | null | undefined; last?: number | null | undefined;

View File

@@ -1,5 +1,5 @@
/** /**
* @generated SignedSource<<a62993ad367f0d977f346e507dd6b572>> * @generated SignedSource<<2b49935877fd64d39d0cfd649f3f01a5>>
* @lightSyntaxTransform * @lightSyntaxTransform
* @nogrep * @nogrep
*/ */
@@ -15,7 +15,7 @@ export type SnapshotBannerQuery$variables = {
}; };
export type SnapshotBannerQuery$data = { export type SnapshotBannerQuery$data = {
readonly node: { readonly node: {
readonly createdAt?: any; readonly createdAt?: string;
readonly id?: string; readonly id?: string;
readonly name?: string; readonly name?: string;
readonly type?: SnapshotsType; readonly type?: SnapshotsType;

Some files were not shown because too many files have changed in this diff Show More