File tree Expand file tree Collapse file tree 2 files changed +11
-3
lines changed Expand file tree Collapse file tree 2 files changed +11
-3
lines changed Original file line number Diff line number Diff line change @@ -104,13 +104,14 @@ export interface StudioCacheContext {
104
104
*/
105
105
readonly studioId : StudioId
106
106
/**
107
- * The Studio the job belongs to
107
+ * The Studio the job belongs to.
108
+ * This has any ObjectWithOverrides in their computed/flattened form
108
109
*/
109
110
readonly studio : ReadonlyDeep < JobStudio >
110
111
111
112
/**
112
- * // nocommit: so whats the difference between studio and rawStudio?
113
113
* The Studio the job belongs to
114
+ * This has any ObjectWithOverrides in their original form
114
115
*/
115
116
readonly rawStudio : ReadonlyDeep < DBStudio >
116
117
Original file line number Diff line number Diff line change @@ -100,8 +100,15 @@ export class WorkerDataCacheWrapperImpl implements WorkerDataCacheWrapper {
100
100
* This is a reusable cache of these properties
101
101
*/
102
102
export interface WorkerDataCache {
103
+ /**
104
+ * The Studio the cache belongs to
105
+ * This has any ObjectWithOverrides in their original form
106
+ */
103
107
rawStudio : ReadonlyDeep < DBStudio >
104
- // nocommit: maybe add description of what this is, why is it different from rawStudio
108
+ /**
109
+ * The Studio the cache belongs to.
110
+ * This has any ObjectWithOverrides in their computed/flattened form
111
+ */
105
112
jobStudio : ReadonlyDeep < JobStudio >
106
113
studioBlueprint : ReadonlyDeep < WrappedStudioBlueprint >
107
114
studioBlueprintConfig : ProcessedStudioConfig | undefined
You can’t perform that action at this time.
0 commit comments