File tree Expand file tree Collapse file tree
packages/cma-client/src/generated Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -8422,11 +8422,37 @@ export type Upload = {
84228422 | UserData
84238423 | SsoUserData
84248424 | OrganizationData ;
8425+ meta : UploadMeta ;
84258426} ;
84268427export type UploadCreateJobSchema = Upload ;
84278428export type UploadSelfTargetSchema = Upload ;
84288429export type UploadDestroyTargetSchema = Upload ;
84298430export type UploadUpdateJobSchema = Upload ;
8431+ /**
8432+ * Meta attributes
8433+ *
8434+ * This interface was referenced by `Upload`'s JSON-Schema
8435+ * via the `definition` "meta".
8436+ */
8437+ export type UploadMeta = {
8438+ /**
8439+ * Antivirus scan information
8440+ */
8441+ antivirus : {
8442+ /**
8443+ * Antivirus scan status of the asset
8444+ */
8445+ status : 'pending' | 'clean' | 'infected' | 'failed' | 'skipped' ;
8446+ /**
8447+ * Date of the last antivirus scan
8448+ */
8449+ checked_at : string | null ;
8450+ /**
8451+ * Name of the threat detected by the antivirus scan, if any
8452+ */
8453+ threat_name : string | null ;
8454+ } ;
8455+ } ;
84308456/**
84318457 * JSON API data
84328458 *
Original file line number Diff line number Diff line change @@ -8437,6 +8437,7 @@ export type Upload = {
84378437 id : UploadIdentity ;
84388438 attributes : UploadAttributes ;
84398439 relationships : UploadRelationships ;
8440+ meta : UploadMeta ;
84408441} ;
84418442/**
84428443 * JSON API attributes
@@ -8632,6 +8633,31 @@ export type UploadRelationships = {
86328633 | OrganizationData ;
86338634 } ;
86348635} ;
8636+ /**
8637+ * Meta attributes
8638+ *
8639+ * This interface was referenced by `Upload`'s JSON-Schema
8640+ * via the `definition` "meta".
8641+ */
8642+ export type UploadMeta = {
8643+ /**
8644+ * Antivirus scan information
8645+ */
8646+ antivirus : {
8647+ /**
8648+ * Antivirus scan status of the asset
8649+ */
8650+ status : 'pending' | 'clean' | 'infected' | 'failed' | 'skipped' ;
8651+ /**
8652+ * Date of the last antivirus scan
8653+ */
8654+ checked_at : string | null ;
8655+ /**
8656+ * Name of the threat detected by the antivirus scan, if any
8657+ */
8658+ threat_name : string | null ;
8659+ } ;
8660+ } ;
86358661/**
86368662 * JSON API data
86378663 *
You can’t perform that action at this time.
0 commit comments