@takagaki/cortex-decisions-viewer 0.4.50 → 0.4.51
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/build.js +5 -0
- package/package.json +1 -1
package/dist/build.js
CHANGED
|
@@ -167,6 +167,11 @@ async function readFleetSources(repoRoot) {
|
|
|
167
167
|
ingestState: s.ingestState != null ? String(s.ingestState) : undefined,
|
|
168
168
|
driveState: s.driveState != null ? String(s.driveState) : undefined,
|
|
169
169
|
driveFolderCount: typeof s.driveFolderCount === "number" ? s.driveFolderCount : undefined,
|
|
170
|
+
// 登録済みDriveフォルダのID。**1件ずつ外せるようにするために要る**
|
|
171
|
+
// (件数だけでは、どれを外すか選べない)
|
|
172
|
+
driveFolderIds: Array.isArray(s.driveFolderIds)
|
|
173
|
+
? s.driveFolderIds.map((x) => String(x)).filter(Boolean)
|
|
174
|
+
: undefined,
|
|
170
175
|
// 登録済みFigmaファイルの一覧。**1件ずつ外せるようにするために要る**
|
|
171
176
|
// (先頭1件のURLしか無かった頃は、6ファイル持つ案件でどれも選べなかった)。
|
|
172
177
|
figmaFiles: Array.isArray(s.figmaFiles)
|
package/package.json
CHANGED