diff --git a/src/main/webui/src/app/components/content/remote/RemoteList.jsx b/src/main/webui/src/app/components/content/remote/RemoteList.jsx index 91af495..e4ffdbc 100644 --- a/src/main/webui/src/app/components/content/remote/RemoteList.jsx +++ b/src/main/webui/src/app/components/content/remote/RemoteList.jsx @@ -15,6 +15,8 @@ */ import React, {useEffect, useState} from 'react'; +import {useParams} from 'react-router'; +import {PropTypes} from 'prop-types'; import {ListJsonDebugger} from '../common/Debugger.jsx'; import ListControl from "../common/ListControl.jsx"; import {remoteOptionLegend as options, STORE_API_BASE_URL} from "../../ComponentConstants.js"; @@ -22,10 +24,11 @@ import {StoreListingWidget} from '../common/StoreListingWidget.jsx'; import {Utils} from '#utils/AppUtils.js'; import {jsonRest} from '#utils/RestClient.js'; -const init = (state, setState) => { + +const init = (packageType, setState) => { useEffect(()=>{ const fetchdData = async ()=>{ - const response = await jsonRest.get(`${STORE_API_BASE_URL}/_all/remote`); + const response = await jsonRest.get(`${STORE_API_BASE_URL}/${packageType}/remote`); if (response.ok){ const timeoutResponse = await jsonRest.get('/api/admin/schedule/store/all/disable-timeout'); let disabledMap = {}; @@ -40,7 +43,6 @@ const init = (state, setState) => { const data = await response.json(); setState({ listing: data.items, - rawListing: data.items, disabledMap }); }else{ @@ -52,13 +54,10 @@ const init = (state, setState) => { } }; fetchdData(); - }, []); + }, [packageType]); }; const handlers = { - createNew: () => { - // mock - }, handleDebug: (event, setState) => { setState({ enableDebug: event.target.checked @@ -72,16 +71,15 @@ const handlers = { }; export default function RemoteList() { + const {packageType} = useParams(); const [state, setState] = useState({ listing: [], - rawListing: [], disabledMap: {}, enableDebug: false, message: '' }); - init(state, setState); - // Utils.logMessage(state); + init(packageType,setState); const listing = state.listing; const disMap = state.disabledMap; return ( @@ -89,7 +87,7 @@ export default function RemoteList() { handlers.handleSearch(event, state.rawListing, setState)} + handleSearch={event => handlers.handleSearch(event, state.listing, setState)} handleDebug={event => handlers.handleDebug(event, setState)} /> { diff --git a/src/main/webui/src/server/app.js b/src/main/webui/src/server/app.js index 1380840..e81d3e3 100644 --- a/src/main/webui/src/server/app.js +++ b/src/main/webui/src/server/app.js @@ -36,19 +36,18 @@ app.get('/api/stats/version-info', (req, res) => { }); }); -app.get(`${STORE_API_BASE}/_all/remote`, (req, res) => { - const remoteList = require('./mock/list/FakeRemoteList.json'); - res.status(200).json(remoteList); -}); - -app.get(`${STORE_API_BASE}/_all/hosted`, (req, res) => { - const hostedList = require('./mock/list/FakeHostedList.json'); - res.status(200).json(hostedList); -}); - -app.get(`${STORE_API_BASE}/_all/group`, (req, res) => { - const groupList = require('./mock/list/FakeGroupList.json'); - res.status(200).json(groupList); +// For store listing +app.get(`${STORE_API_BASE}/:packageType/:type`, (req, res) => { + const [pkgType, type] = [req.params.packageType, req.params.type]; + const pkgToFileMapping = {"maven": "Maven", "npm": "NPM"}; + const typeToFileMapping = {"remote": "Remote", "hosted": "Hosted", "group": "Group"}; + let list = []; + if(pkgType==="_all"){ + // TODO: do all packageType for type handling here + } + const mockFile = `./mock/list/Fake${pkgToFileMapping[pkgType]}${typeToFileMapping[type]}List.json`; + list = require(mockFile); + res.status(200).json(list); }); app.get('/api/admin/schedule/store/all/disable-timeout', (req, res) => { @@ -72,7 +71,7 @@ app.get('/api/admin/schedule/store/:packageType/:type/:name/disable-timeout', (r app.get(`${STORE_API_BASE}/maven/remote/:name`, (req, res) => { const name = req.params.name; if(name){ - const remoteList = require('./mock/list/FakeRemoteList.json'); + const remoteList = require('./mock/list/FakeMavenRemoteList.json'); const result = remoteList.items.find(item=>item.name===name); if(result){ res.status(200).json(result); @@ -87,7 +86,7 @@ app.get(`${STORE_API_BASE}/maven/remote/:name`, (req, res) => { app.get(`${STORE_API_BASE}/maven/hosted/:name`, (req, res) => { const name=req.params.name; if(name){ - const remoteList = require('./mock/list/FakeHostedList.json'); + const remoteList = require('./mock/list/FakeMavenHostedList.json'); const result = remoteList.items.find(item=>item.name===name); if(result){ res.status(200).json(result); @@ -102,7 +101,7 @@ app.get(`${STORE_API_BASE}/maven/hosted/:name`, (req, res) => { app.get(`${STORE_API_BASE}/maven/group/:name`, (req, res) => { const name=req.params.name; if(name){ - const remoteList = require('./mock/list/FakeGroupList.json'); + const remoteList = require('./mock/list/FakeMavenGroupList.json'); const result = remoteList.items.find(item=>item.name===name); if(result){ res.status(200).json(result); @@ -135,7 +134,7 @@ app.post(`${STORE_API_BASE}/:packageType/:type/:name`, (req, res) => { const newRepo = req.body; if(req.headers['content-type']==="application/json"){ if (newRepo.packageType&&newRepo.type&&newRepo.name){ - // res.status(204); + console.log(`${req.method} ${req.path}\n ${JSON.stringify(newRepo)}`); res.sendStatus(204); }else{ res.status(400).json({error: "Bad repo request: missing packageType or type or name for repo!"}); @@ -149,6 +148,7 @@ app.put(`${STORE_API_BASE}/:packageType/:type/:name`, (req, res) => { const updatedRepo = req.body; if(req.headers['content-type']==="application/json"){ if (updatedRepo.packageType&&updatedRepo.type&&updatedRepo.name){ + console.log(`${req.method} ${req.path}\n ${JSON.stringify(updatedRepo)}`); res.status(200).json(updatedRepo); }else{ res.status(400).json({error: "Bad repo request: missing packageType or type or name for repo!"}); diff --git a/src/main/webui/src/server/mock/list/FakeGroupList.json b/src/main/webui/src/server/mock/list/FakeMavenGroupList.json similarity index 100% rename from src/main/webui/src/server/mock/list/FakeGroupList.json rename to src/main/webui/src/server/mock/list/FakeMavenGroupList.json diff --git a/src/main/webui/src/server/mock/list/FakeHostedList.json b/src/main/webui/src/server/mock/list/FakeMavenHostedList.json similarity index 100% rename from src/main/webui/src/server/mock/list/FakeHostedList.json rename to src/main/webui/src/server/mock/list/FakeMavenHostedList.json diff --git a/src/main/webui/src/server/mock/list/FakeRemoteList.json b/src/main/webui/src/server/mock/list/FakeMavenRemoteList.json similarity index 100% rename from src/main/webui/src/server/mock/list/FakeRemoteList.json rename to src/main/webui/src/server/mock/list/FakeMavenRemoteList.json diff --git a/src/main/webui/src/server/mock/list/FakeNPMGroupList.json b/src/main/webui/src/server/mock/list/FakeNPMGroupList.json new file mode 100644 index 0000000..67dbbbc --- /dev/null +++ b/src/main/webui/src/server/mock/list/FakeNPMGroupList.json @@ -0,0 +1,287 @@ +{ + "items" : [ { + "type" : "group", + "key" : "npm:group:DA-temporary-builds", + "metadata" : { + "changelog" : "Initial setup" + }, + "disabled" : false, + "constituents" : [ "npm:group:temporary-builds", "npm:group:DA" ], + "name" : "DA-temporary-builds", + "packageType" : "npm", + "disable_timeout" : 0, + "path_style" : "plain", + "authoritative_index" : false, + "create_time" : "2021-03-25 08:14:58 +0000", + "prepend_constituent" : false + }, { + "type" : "group", + "key" : "npm:group:build-172077677927211008", + "description" : "Aggregation group for PNC build #172077677927211008", + "metadata" : { + "changelog" : "Creating repository group for resolving artifacts in build: 172077677927211008 (repo: build-172077677927211008)", + "koji-pull" : "false" + }, + "disabled" : false, + "constituents" : [ "npm:hosted:build-172077677927211008", "npm:group:builds-untested+shared-imports+public" ], + "name" : "build-172077677927211008", + "packageType" : "npm", + "disable_timeout" : 0, + "path_style" : "plain", + "authoritative_index" : false, + "create_time" : "2021-06-02 01:27:31 +0000", + "prepend_constituent" : false + }, { + "type" : "group", + "key" : "npm:group:DA", + "metadata" : { + "changelog" : "Initial setup" + }, + "disabled" : false, + "constituents" : [ "npm:hosted:pnc-builds" ], + "name" : "DA", + "packageType" : "npm", + "disable_timeout" : 0, + "path_style" : "plain", + "authoritative_index" : false, + "create_time" : "2021-03-25 08:14:58 +0000", + "prepend_constituent" : false + }, { + "type" : "group", + "key" : "npm:group:builds-untested+shared-imports", + "metadata" : { + "changelog" : "Initial setup" + }, + "disabled" : false, + "constituents" : [ "npm:group:builds-untested", "npm:hosted:shared-imports" ], + "name" : "builds-untested+shared-imports", + "packageType" : "npm", + "disable_timeout" : 0, + "path_style" : "plain", + "authoritative_index" : false, + "create_time" : "2021-03-25 08:14:56 +0000", + "prepend_constituent" : false + }, { + "type" : "group", + "key" : "npm:group:builds-untested+shared-imports+public", + "metadata" : { + "changelog" : "Initial setup" + }, + "disabled" : false, + "constituents" : [ "npm:group:builds-untested+shared-imports", "npm:group:public" ], + "name" : "builds-untested+shared-imports+public", + "packageType" : "npm", + "disable_timeout" : 0, + "path_style" : "plain", + "authoritative_index" : false, + "create_time" : "2021-03-25 08:14:57 +0000", + "prepend_constituent" : false + }, { + "type" : "group", + "key" : "npm:group:DApublic", + "metadata" : { + "changelog" : "Initial setup" + }, + "disabled" : false, + "constituents" : [ "npm:group:DA", "npm:group:public" ], + "name" : "DApublic", + "packageType" : "npm", + "disable_timeout" : 0, + "path_style" : "plain", + "authoritative_index" : false, + "create_time" : "2021-03-25 08:14:59 +0000", + "prepend_constituent" : false + }, { + "type" : "group", + "key" : "npm:group:build-A4RWJFXAWIAAA", + "description" : "Aggregation group for PNC build #build-A4RWJFXAWIAAA", + "metadata" : { + "changelog" : "Creating repository group for resolving artifacts (repo: build-A4RWJFXAWIAAA), with tempBuild: false and brewPullAcitve: false.", + "koji-pull" : "false" + }, + "disabled" : false, + "constituents" : [ "npm:hosted:build-A4RWJFXAWIAAA", "npm:group:builds-untested+shared-imports+public" ], + "name" : "build-A4RWJFXAWIAAA", + "packageType" : "npm", + "disable_timeout" : 0, + "path_style" : "plain", + "authoritative_index" : false, + "create_time" : "2023-11-20 09:04:29 +0000", + "prepend_constituent" : false + }, { + "type" : "group", + "key" : "npm:group:public", + "metadata" : { + "changelog" : "Initial setup" + }, + "disabled" : false, + "constituents" : [ "npm:remote:npmjs" ], + "name" : "public", + "packageType" : "npm", + "disable_timeout" : 0, + "path_style" : "plain", + "authoritative_index" : false, + "create_time" : "2021-03-15 18:02:06 +0000", + "prepend_constituent" : false + }, { + "type" : "group", + "key" : "npm:group:shared-imports+public", + "metadata" : { + "changelog" : "add consituents" + }, + "disabled" : false, + "constituents" : [ "npm:hosted:shared-imports", "npm:group:public" ], + "name" : "shared-imports+public", + "packageType" : "npm", + "disable_timeout" : 0, + "path_style" : "plain", + "authoritative_index" : false, + "create_time" : "2021-09-28 18:44:01 +0000", + "prepend_constituent" : false + }, { + "type" : "group", + "key" : "npm:group:build-A4SLH57TGIAAA", + "description" : "Aggregation group for PNC build #build-A4SLH57TGIAAA", + "metadata" : { + "changelog" : "Creating repository group for resolving artifacts (repo: build-A4SLH57TGIAAA), with tempBuild: false and brewPullAcitve: false.", + "koji-pull" : "false" + }, + "disabled" : false, + "constituents" : [ "npm:hosted:build-A4SLH57TGIAAA", "npm:group:builds-untested+shared-imports+public" ], + "name" : "build-A4SLH57TGIAAA", + "packageType" : "npm", + "disable_timeout" : 0, + "path_style" : "plain", + "authoritative_index" : false, + "create_time" : "2023-11-21 09:29:49 +0000", + "prepend_constituent" : false + }, { + "type" : "group", + "key" : "npm:group:temporary-builds", + "metadata" : { + "changelog" : "update npm group temporary-builds" + }, + "disabled" : false, + "constituents" : [ "npm:hosted:temporary-builds" ], + "name" : "temporary-builds", + "packageType" : "npm", + "disable_timeout" : 0, + "path_style" : "plain", + "authoritative_index" : false, + "create_time" : "2021-06-02 01:27:31 +0000", + "prepend_constituent" : false + }, { + "type" : "group", + "key" : "npm:group:build-175689795468152832", + "description" : "Aggregation group for PNC temporary build #175689795468152832", + "metadata" : { + "changelog" : "Creating repository group for resolving artifacts in build: 175689795468152832 (repo: build-175689795468152832)", + "koji-pull" : "false" + }, + "disabled" : false, + "constituents" : [ "npm:hosted:build-175689795468152832", "npm:hosted:temporary-builds", "npm:group:builds-untested+shared-imports+public" ], + "name" : "build-175689795468152832", + "packageType" : "npm", + "disable_timeout" : 0, + "path_style" : "plain", + "authoritative_index" : false, + "create_time" : "2021-06-02 01:27:31 +0000", + "prepend_constituent" : false + }, { + "type" : "group", + "key" : "npm:group:build-175645950118350848", + "description" : "Aggregation group for PNC temporary build #175645950118350848", + "metadata" : { + "changelog" : "Creating repository group for resolving artifacts in build: 175645950118350848 (repo: build-175645950118350848)", + "koji-pull" : "false" + }, + "disabled" : false, + "constituents" : [ "npm:hosted:build-175645950118350848", "npm:hosted:temporary-builds", "npm:group:builds-untested+shared-imports+public" ], + "name" : "build-175645950118350848", + "packageType" : "npm", + "disable_timeout" : 0, + "path_style" : "plain", + "authoritative_index" : false, + "create_time" : "2021-06-02 01:27:31 +0000", + "prepend_constituent" : false + }, { + "type" : "group", + "key" : "npm:group:build-A4SLDYLJGIAAA", + "description" : "Aggregation group for PNC build #build-A4SLDYLJGIAAA", + "metadata" : { + "changelog" : "Creating repository group for resolving artifacts (repo: build-A4SLDYLJGIAAA), with tempBuild: false and brewPullAcitve: false.", + "koji-pull" : "false" + }, + "disabled" : false, + "constituents" : [ "npm:hosted:build-A4SLDYLJGIAAA", "npm:group:builds-untested+shared-imports+public" ], + "name" : "build-A4SLDYLJGIAAA", + "packageType" : "npm", + "disable_timeout" : 0, + "path_style" : "plain", + "authoritative_index" : false, + "create_time" : "2023-11-21 09:20:39 +0000", + "prepend_constituent" : false + }, { + "type" : "group", + "key" : "npm:group:shared-imports+yarn-public", + "metadata" : { + "changelog" : "add consituents" + }, + "disabled" : false, + "constituents" : [ "npm:hosted:shared-imports", "npm:group:yarn-public" ], + "name" : "shared-imports+yarn-public", + "packageType" : "npm", + "disable_timeout" : 0, + "path_style" : "plain", + "authoritative_index" : false, + "create_time" : "2021-10-04 19:31:44 +0000", + "prepend_constituent" : false + }, { + "type" : "group", + "key" : "npm:group:build-172056280052015104", + "description" : "Aggregation group for PNC build #172056280052015104", + "metadata" : { + "changelog" : "Creating repository group for resolving artifacts in build: 172056280052015104 (repo: build-172056280052015104)", + "koji-pull" : "false" + }, + "disabled" : false, + "constituents" : [ "npm:hosted:build-172056280052015104", "npm:group:builds-untested+shared-imports+public" ], + "name" : "build-172056280052015104", + "packageType" : "npm", + "disable_timeout" : 0, + "path_style" : "plain", + "authoritative_index" : false, + "create_time" : "2021-06-02 01:27:31 +0000", + "prepend_constituent" : false + }, { + "type" : "group", + "key" : "npm:group:builds-untested", + "metadata" : { + "changelog" : "Initial setup" + }, + "disabled" : false, + "constituents" : [ "npm:hosted:pnc-builds" ], + "name" : "builds-untested", + "packageType" : "npm", + "disable_timeout" : 0, + "path_style" : "plain", + "authoritative_index" : false, + "create_time" : "2021-03-25 08:14:56 +0000", + "prepend_constituent" : false + }, { + "type" : "group", + "key" : "npm:group:yarn-public", + "metadata" : { + "changelog" : "add yarn remote to yarn-public" + }, + "disabled" : false, + "constituents" : [ "npm:remote:yarnpkg" ], + "name" : "yarn-public", + "packageType" : "npm", + "disable_timeout" : 0, + "path_style" : "plain", + "authoritative_index" : false, + "create_time" : "2021-10-04 19:31:37 +0000", + "prepend_constituent" : false + } ] +} \ No newline at end of file diff --git a/src/main/webui/src/server/mock/list/FakeNPMHostedList.json b/src/main/webui/src/server/mock/list/FakeNPMHostedList.json new file mode 100644 index 0000000..cb4891e --- /dev/null +++ b/src/main/webui/src/server/mock/list/FakeNPMHostedList.json @@ -0,0 +1,2898 @@ +{ + "items" : [ { + "type" : "hosted", + "key" : "npm:hosted:build-1039", + "description" : "Build output for PNC npm build #1039", + "metadata" : { + "changelog" : "Setting readonly after successful build and promotion." + }, + "disabled" : false, + "snapshotTimeoutSeconds" : 0, + "readonly" : true, + "name" : "build-1039", + "packageType" : "npm", + "disable_timeout" : 0, + "path_style" : "plain", + "authoritative_index" : true, + "create_time" : "2021-06-02 01:27:31 +0000", + "allow_snapshots" : false, + "allow_releases" : true + }, { + "type" : "hosted", + "key" : "npm:hosted:build-1545", + "description" : "Build output for PNC npm build #1545", + "metadata" : { + "changelog" : "Setting readonly after successful build and promotion." + }, + "disabled" : false, + "snapshotTimeoutSeconds" : 0, + "readonly" : true, + "name" : "build-1545", + "packageType" : "npm", + "disable_timeout" : 0, + "path_style" : "plain", + "authoritative_index" : true, + "create_time" : "2021-06-02 01:27:31 +0000", + "allow_snapshots" : false, + "allow_releases" : true + }, { + "type" : "hosted", + "key" : "npm:hosted:build-ARH4LMNVUVQAA", + "description" : "Build output for PNC npm build #build-ARH4LMNVUVQAA", + "metadata" : { + "changelog" : "Setting readonly after successful build and promotion." + }, + "disabled" : false, + "snapshotTimeoutSeconds" : 0, + "readonly" : true, + "name" : "build-ARH4LMNVUVQAA", + "packageType" : "npm", + "disable_timeout" : 0, + "path_style" : "plain", + "authoritative_index" : true, + "create_time" : "2022-05-07 07:48:31 +0000", + "allow_snapshots" : false, + "allow_releases" : true + }, { + "type" : "hosted", + "key" : "npm:hosted:build-ATMXTBCK2JIAA", + "description" : "Build output for PNC npm build #build-ATMXTBCK2JIAA", + "metadata" : { + "changelog" : "Creating hosted repository for npm build: build-ATMXTBCK2JIAA (repo: build-ATMXTBCK2JIAA)" + }, + "disabled" : false, + "snapshotTimeoutSeconds" : 0, + "readonly" : false, + "name" : "build-ATMXTBCK2JIAA", + "packageType" : "npm", + "disable_timeout" : 0, + "path_style" : "plain", + "authoritative_index" : false, + "create_time" : "2022-08-22 06:45:57 +0000", + "allow_snapshots" : false, + "allow_releases" : true + }, { + "type" : "hosted", + "key" : "npm:hosted:build-ATKLVX3EKJIAA", + "description" : "Build output for PNC npm build #build-ATKLVX3EKJIAA", + "metadata" : { + "changelog" : "Creating hosted repository for npm build: build-ATKLVX3EKJIAA (repo: build-ATKLVX3EKJIAA)" + }, + "disabled" : false, + "snapshotTimeoutSeconds" : 0, + "readonly" : false, + "name" : "build-ATKLVX3EKJIAA", + "packageType" : "npm", + "disable_timeout" : 0, + "path_style" : "plain", + "authoritative_index" : false, + "create_time" : "2022-08-18 14:19:06 +0000", + "allow_snapshots" : false, + "allow_releases" : true + }, { + "type" : "hosted", + "key" : "npm:hosted:build-1751", + "description" : "Build output for PNC npm build #1751", + "metadata" : { + "changelog" : "Setting readonly after successful build and promotion." + }, + "disabled" : false, + "snapshotTimeoutSeconds" : 0, + "readonly" : true, + "name" : "build-1751", + "packageType" : "npm", + "disable_timeout" : 0, + "path_style" : "plain", + "authoritative_index" : true, + "create_time" : "2021-06-02 01:27:31 +0000", + "allow_snapshots" : false, + "allow_releases" : true + }, { + "type" : "hosted", + "key" : "npm:hosted:build-172056280052015104", + "description" : "Build output for PNC npm build #172056280052015104", + "metadata" : { + "changelog" : "Creating hosted repository for npm build: 172056280052015104 (repo: build-172056280052015104)" + }, + "disabled" : false, + "snapshotTimeoutSeconds" : 0, + "readonly" : false, + "name" : "build-172056280052015104", + "packageType" : "npm", + "disable_timeout" : 0, + "path_style" : "plain", + "authoritative_index" : false, + "create_time" : "2021-06-02 01:27:31 +0000", + "allow_snapshots" : false, + "allow_releases" : true + }, { + "type" : "hosted", + "key" : "npm:hosted:build-ATIPTNJS4TIAA", + "description" : "Build output for PNC npm build #build-ATIPTNJS4TIAA", + "metadata" : { + "changelog" : "Setting readonly after successful build and promotion." + }, + "disabled" : false, + "snapshotTimeoutSeconds" : 0, + "readonly" : true, + "name" : "build-ATIPTNJS4TIAA", + "packageType" : "npm", + "disable_timeout" : 0, + "path_style" : "plain", + "authoritative_index" : true, + "create_time" : "2022-08-15 16:20:03 +0000", + "allow_snapshots" : false, + "allow_releases" : true + }, { + "type" : "hosted", + "key" : "npm:hosted:build-A4RWJFXAWIAAA", + "description" : "Build output for PNC npm build #build-A4RWJFXAWIAAA", + "metadata" : { + "changelog" : "Creating hosted repository for npm build: build-A4RWJFXAWIAAA (repo: build-A4RWJFXAWIAAA)" + }, + "disabled" : false, + "snapshotTimeoutSeconds" : 0, + "readonly" : false, + "name" : "build-A4RWJFXAWIAAA", + "packageType" : "npm", + "disable_timeout" : 0, + "path_style" : "plain", + "authoritative_index" : false, + "create_time" : "2023-11-20 09:04:29 +0000", + "allow_snapshots" : false, + "allow_releases" : true + }, { + "type" : "hosted", + "key" : "npm:hosted:build-1318", + "description" : "Build output for PNC npm build #1318", + "metadata" : { + "changelog" : "Creating hosted repository for npm build: 1318 (repo: build-1318)" + }, + "disabled" : false, + "snapshotTimeoutSeconds" : 0, + "readonly" : false, + "name" : "build-1318", + "packageType" : "npm", + "disable_timeout" : 0, + "path_style" : "plain", + "authoritative_index" : false, + "create_time" : "2021-06-02 01:27:31 +0000", + "allow_snapshots" : false, + "allow_releases" : true + }, { + "type" : "hosted", + "key" : "npm:hosted:shared-imports", + "metadata" : { + "changelog" : "Initial setup" + }, + "disabled" : false, + "snapshotTimeoutSeconds" : 0, + "readonly" : false, + "name" : "shared-imports", + "packageType" : "npm", + "disable_timeout" : 0, + "path_style" : "plain", + "authoritative_index" : false, + "create_time" : "2021-03-10 10:27:00 +0000", + "allow_snapshots" : true, + "allow_releases" : true + }, { + "type" : "hosted", + "key" : "npm:hosted:build-ATJMS5VM2JIAA", + "description" : "Build output for PNC npm build #build-ATJMS5VM2JIAA", + "metadata" : { + "changelog" : "Creating hosted repository for npm build: build-ATJMS5VM2JIAA (repo: build-ATJMS5VM2JIAA)" + }, + "disabled" : false, + "snapshotTimeoutSeconds" : 0, + "readonly" : false, + "name" : "build-ATJMS5VM2JIAA", + "packageType" : "npm", + "disable_timeout" : 0, + "path_style" : "plain", + "authoritative_index" : false, + "create_time" : "2022-08-17 02:05:53 +0000", + "allow_snapshots" : false, + "allow_releases" : true + }, { + "type" : "hosted", + "key" : "npm:hosted:build-ATJVTFPY2JIAA", + "description" : "Build output for PNC npm build #build-ATJVTFPY2JIAA", + "metadata" : { + "changelog" : "Setting readonly after successful build and promotion." + }, + "disabled" : false, + "snapshotTimeoutSeconds" : 0, + "readonly" : true, + "name" : "build-ATJVTFPY2JIAA", + "packageType" : "npm", + "disable_timeout" : 0, + "path_style" : "plain", + "authoritative_index" : true, + "create_time" : "2022-08-17 12:35:35 +0000", + "allow_snapshots" : false, + "allow_releases" : true + }, { + "type" : "hosted", + "key" : "npm:hosted:build-1892", + "description" : "Build output for PNC npm build #1892", + "metadata" : { + "changelog" : "Setting readonly after successful build and promotion." + }, + "disabled" : false, + "snapshotTimeoutSeconds" : 0, + "readonly" : true, + "name" : "build-1892", + "packageType" : "npm", + "disable_timeout" : 0, + "path_style" : "plain", + "authoritative_index" : true, + "create_time" : "2021-06-02 01:27:31 +0000", + "allow_snapshots" : false, + "allow_releases" : true + }, { + "type" : "hosted", + "key" : "npm:hosted:build-ANSJXFPXWUIAA", + "description" : "Build output for PNC npm build #build-ANSJXFPXWUIAA", + "metadata" : { + "changelog" : "Setting readonly after successful build and promotion." + }, + "disabled" : false, + "snapshotTimeoutSeconds" : 0, + "readonly" : true, + "name" : "build-ANSJXFPXWUIAA", + "packageType" : "npm", + "disable_timeout" : 0, + "path_style" : "plain", + "authoritative_index" : true, + "create_time" : "2021-11-05 16:02:21 +0000", + "allow_snapshots" : false, + "allow_releases" : true + }, { + "type" : "hosted", + "key" : "npm:hosted:build-ATM6LQ22CJIAA", + "description" : "Build output for PNC npm build #build-ATM6LQ22CJIAA", + "metadata" : { + "changelog" : "Setting readonly after successful build and promotion." + }, + "disabled" : false, + "snapshotTimeoutSeconds" : 0, + "readonly" : true, + "name" : "build-ATM6LQ22CJIAA", + "packageType" : "npm", + "disable_timeout" : 0, + "path_style" : "plain", + "authoritative_index" : true, + "create_time" : "2022-08-22 14:39:45 +0000", + "allow_snapshots" : false, + "allow_releases" : true + }, { + "type" : "hosted", + "key" : "npm:hosted:build-ATJEAVIZYHIAA", + "description" : "Build output for PNC npm build #build-ATJEAVIZYHIAA", + "metadata" : { + "changelog" : "Creating hosted repository for npm build: build-ATJEAVIZYHIAA (repo: build-ATJEAVIZYHIAA)" + }, + "disabled" : false, + "snapshotTimeoutSeconds" : 0, + "readonly" : false, + "name" : "build-ATJEAVIZYHIAA", + "packageType" : "npm", + "disable_timeout" : 0, + "path_style" : "plain", + "authoritative_index" : false, + "create_time" : "2022-08-16 16:06:46 +0000", + "allow_snapshots" : false, + "allow_releases" : true + }, { + "type" : "hosted", + "key" : "npm:hosted:build-ANW6HFU3Y3AAA", + "description" : "Build output for PNC npm build #build-ANW6HFU3Y3AAA", + "metadata" : { + "changelog" : "Setting readonly after successful build and promotion." + }, + "disabled" : false, + "snapshotTimeoutSeconds" : 0, + "readonly" : true, + "name" : "build-ANW6HFU3Y3AAA", + "packageType" : "npm", + "disable_timeout" : 0, + "path_style" : "plain", + "authoritative_index" : true, + "create_time" : "2021-11-12 21:19:20 +0000", + "allow_snapshots" : false, + "allow_releases" : true + }, { + "type" : "hosted", + "key" : "npm:hosted:build-A4SK7ID3WIAAA", + "description" : "Build output for PNC npm build #build-A4SK7ID3WIAAA", + "metadata" : { + "changelog" : "Setting readonly after successful build and promotion." + }, + "disabled" : false, + "snapshotTimeoutSeconds" : 0, + "readonly" : true, + "name" : "build-A4SK7ID3WIAAA", + "packageType" : "npm", + "disable_timeout" : 0, + "path_style" : "plain", + "authoritative_index" : true, + "create_time" : "2023-11-21 09:10:53 +0000", + "allow_snapshots" : false, + "allow_releases" : true + }, { + "type" : "hosted", + "key" : "npm:hosted:build-ASJNWOAV2MQAA", + "description" : "Build output for PNC npm build #build-ASJNWOAV2MQAA", + "metadata" : { + "changelog" : "Setting readonly after successful build and promotion." + }, + "disabled" : false, + "snapshotTimeoutSeconds" : 0, + "readonly" : true, + "name" : "build-ASJNWOAV2MQAA", + "packageType" : "npm", + "disable_timeout" : 0, + "path_style" : "plain", + "authoritative_index" : true, + "create_time" : "2022-06-28 10:21:02 +0000", + "allow_snapshots" : false, + "allow_releases" : true + }, { + "type" : "hosted", + "key" : "npm:hosted:build-177728051542118400", + "description" : "Build output for PNC npm build #177728051542118400", + "metadata" : { + "changelog" : "Creating hosted repository for npm build: 177728051542118400 (repo: build-177728051542118400)" + }, + "disabled" : false, + "snapshotTimeoutSeconds" : 0, + "readonly" : false, + "name" : "build-177728051542118400", + "packageType" : "npm", + "disable_timeout" : 0, + "path_style" : "plain", + "authoritative_index" : false, + "create_time" : "2021-06-02 01:27:31 +0000", + "allow_snapshots" : false, + "allow_releases" : true + }, { + "type" : "hosted", + "key" : "npm:hosted:build-ASE5VFCHXYIAA", + "description" : "Build output for PNC npm build #build-ASE5VFCHXYIAA", + "metadata" : { + "changelog" : "Setting readonly after successful build and promotion." + }, + "disabled" : false, + "snapshotTimeoutSeconds" : 0, + "readonly" : true, + "name" : "build-ASE5VFCHXYIAA", + "packageType" : "npm", + "disable_timeout" : 0, + "path_style" : "plain", + "authoritative_index" : true, + "create_time" : "2022-06-21 10:31:38 +0000", + "allow_snapshots" : false, + "allow_releases" : true + }, { + "type" : "hosted", + "key" : "npm:hosted:build-1915", + "description" : "Build output for PNC npm build #1915", + "metadata" : { + "changelog" : "Setting readonly after successful build and promotion." + }, + "disabled" : false, + "snapshotTimeoutSeconds" : 0, + "readonly" : true, + "name" : "build-1915", + "packageType" : "npm", + "disable_timeout" : 0, + "path_style" : "plain", + "authoritative_index" : true, + "create_time" : "2021-06-02 01:27:31 +0000", + "allow_snapshots" : false, + "allow_releases" : true + }, { + "type" : "hosted", + "key" : "npm:hosted:build-AUS2H4JNNWIAA", + "description" : "Build output for PNC npm build #build-AUS2H4JNNWIAA", + "metadata" : { + "changelog" : "Creating hosted repository for npm build: build-AUS2H4JNNWIAA (repo: build-AUS2H4JNNWIAA)" + }, + "disabled" : false, + "snapshotTimeoutSeconds" : 0, + "readonly" : false, + "name" : "build-AUS2H4JNNWIAA", + "packageType" : "npm", + "disable_timeout" : 0, + "path_style" : "plain", + "authoritative_index" : false, + "create_time" : "2022-10-20 10:35:53 +0000", + "allow_snapshots" : false, + "allow_releases" : true + }, { + "type" : "hosted", + "key" : "npm:hosted:build-1726", + "description" : "Build output for PNC npm build #1726", + "metadata" : { + "changelog" : "Creating hosted repository for npm build: 1726 (repo: build-1726)" + }, + "disabled" : false, + "snapshotTimeoutSeconds" : 0, + "readonly" : false, + "name" : "build-1726", + "packageType" : "npm", + "disable_timeout" : 0, + "path_style" : "plain", + "authoritative_index" : false, + "create_time" : "2021-06-02 01:27:31 +0000", + "allow_snapshots" : false, + "allow_releases" : true + }, { + "type" : "hosted", + "key" : "npm:hosted:build-1393", + "description" : "Build output for PNC npm build #1393", + "metadata" : { + "changelog" : "Creating hosted repository for npm build: 1393 (repo: build-1393)" + }, + "disabled" : false, + "snapshotTimeoutSeconds" : 0, + "readonly" : false, + "name" : "build-1393", + "packageType" : "npm", + "disable_timeout" : 0, + "path_style" : "plain", + "authoritative_index" : false, + "create_time" : "2021-06-02 01:27:31 +0000", + "allow_snapshots" : false, + "allow_releases" : true + }, { + "type" : "hosted", + "key" : "npm:hosted:build-1918", + "description" : "Build output for PNC npm build #1918", + "metadata" : { + "changelog" : "Setting readonly after successful build and promotion." + }, + "disabled" : false, + "snapshotTimeoutSeconds" : 0, + "readonly" : true, + "name" : "build-1918", + "packageType" : "npm", + "disable_timeout" : 0, + "path_style" : "plain", + "authoritative_index" : true, + "create_time" : "2021-06-02 01:27:31 +0000", + "allow_snapshots" : false, + "allow_releases" : true + }, { + "type" : "hosted", + "key" : "npm:hosted:build-ANSHZIJ2WUIAA", + "description" : "Build output for PNC npm build #build-ANSHZIJ2WUIAA", + "metadata" : { + "changelog" : "Creating hosted repository for npm build: build-ANSHZIJ2WUIAA (repo: build-ANSHZIJ2WUIAA)" + }, + "disabled" : false, + "snapshotTimeoutSeconds" : 0, + "readonly" : false, + "name" : "build-ANSHZIJ2WUIAA", + "packageType" : "npm", + "disable_timeout" : 0, + "path_style" : "plain", + "authoritative_index" : false, + "create_time" : "2021-11-05 13:46:17 +0000", + "allow_snapshots" : false, + "allow_releases" : true + }, { + "type" : "hosted", + "key" : "npm:hosted:build-ANSC3XNBIJYAA", + "description" : "Build output for PNC npm build #build-ANSC3XNBIJYAA", + "metadata" : { + "changelog" : "Setting readonly after successful build and promotion." + }, + "disabled" : false, + "snapshotTimeoutSeconds" : 0, + "readonly" : true, + "name" : "build-ANSC3XNBIJYAA", + "packageType" : "npm", + "disable_timeout" : 0, + "path_style" : "plain", + "authoritative_index" : true, + "create_time" : "2021-11-05 08:03:11 +0000", + "allow_snapshots" : false, + "allow_releases" : true + }, { + "type" : "hosted", + "key" : "npm:hosted:build-ATKLTMUYKJIAA", + "description" : "Build output for PNC npm build #build-ATKLTMUYKJIAA", + "metadata" : { + "changelog" : "Creating hosted repository for npm build: build-ATKLTMUYKJIAA (repo: build-ATKLTMUYKJIAA)" + }, + "disabled" : false, + "snapshotTimeoutSeconds" : 0, + "readonly" : false, + "name" : "build-ATKLTMUYKJIAA", + "packageType" : "npm", + "disable_timeout" : 0, + "path_style" : "plain", + "authoritative_index" : false, + "create_time" : "2022-08-18 14:13:58 +0000", + "allow_snapshots" : false, + "allow_releases" : true + }, { + "type" : "hosted", + "key" : "npm:hosted:build-ATJVZRQA2JIAA", + "description" : "Build output for PNC npm build #build-ATJVZRQA2JIAA", + "metadata" : { + "changelog" : "Setting readonly after successful build and promotion." + }, + "disabled" : false, + "snapshotTimeoutSeconds" : 0, + "readonly" : true, + "name" : "build-ATJVZRQA2JIAA", + "packageType" : "npm", + "disable_timeout" : 0, + "path_style" : "plain", + "authoritative_index" : true, + "create_time" : "2022-08-17 12:49:57 +0000", + "allow_snapshots" : false, + "allow_releases" : true + }, { + "type" : "hosted", + "key" : "npm:hosted:build-ANSDID7VAJYAA", + "description" : "Build output for PNC npm build #build-ANSDID7VAJYAA", + "metadata" : { + "changelog" : "Setting readonly after successful build and promotion." + }, + "disabled" : false, + "snapshotTimeoutSeconds" : 0, + "readonly" : true, + "name" : "build-ANSDID7VAJYAA", + "packageType" : "npm", + "disable_timeout" : 0, + "path_style" : "plain", + "authoritative_index" : true, + "create_time" : "2021-11-05 08:30:18 +0000", + "allow_snapshots" : false, + "allow_releases" : true + }, { + "type" : "hosted", + "key" : "npm:hosted:build-1753", + "description" : "Build output for PNC npm build #1753", + "metadata" : { + "changelog" : "Setting readonly after successful build and promotion." + }, + "disabled" : false, + "snapshotTimeoutSeconds" : 0, + "readonly" : true, + "name" : "build-1753", + "packageType" : "npm", + "disable_timeout" : 0, + "path_style" : "plain", + "authoritative_index" : true, + "create_time" : "2021-06-02 01:27:31 +0000", + "allow_snapshots" : false, + "allow_releases" : true + }, { + "type" : "hosted", + "key" : "npm:hosted:build-ANWPAJ33IEQAA", + "description" : "Build output for PNC npm build #build-ANWPAJ33IEQAA", + "metadata" : { + "changelog" : "Setting readonly after successful build and promotion." + }, + "disabled" : false, + "snapshotTimeoutSeconds" : 0, + "readonly" : true, + "name" : "build-ANWPAJ33IEQAA", + "packageType" : "npm", + "disable_timeout" : 0, + "path_style" : "plain", + "authoritative_index" : true, + "create_time" : "2021-11-12 03:35:34 +0000", + "allow_snapshots" : false, + "allow_releases" : true + }, { + "type" : "hosted", + "key" : "npm:hosted:build-ATSAZTZKHQAAA", + "description" : "Build output for PNC npm build #build-ATSAZTZKHQAAA", + "metadata" : { + "changelog" : "Creating hosted repository for npm build: build-ATSAZTZKHQAAA (repo: build-ATSAZTZKHQAAA)" + }, + "disabled" : false, + "snapshotTimeoutSeconds" : 0, + "readonly" : false, + "name" : "build-ATSAZTZKHQAAA", + "packageType" : "npm", + "disable_timeout" : 0, + "path_style" : "plain", + "authoritative_index" : false, + "create_time" : "2022-08-30 11:54:19 +0000", + "allow_snapshots" : false, + "allow_releases" : true + }, { + "type" : "hosted", + "key" : "npm:hosted:build-1325", + "description" : "Build output for PNC npm build #1325", + "metadata" : { + "changelog" : "Creating hosted repository for npm build: 1325 (repo: build-1325)" + }, + "disabled" : false, + "snapshotTimeoutSeconds" : 0, + "readonly" : false, + "name" : "build-1325", + "packageType" : "npm", + "disable_timeout" : 0, + "path_style" : "plain", + "authoritative_index" : false, + "create_time" : "2021-06-02 01:27:31 +0000", + "allow_snapshots" : false, + "allow_releases" : true + }, { + "type" : "hosted", + "key" : "npm:hosted:build-1403", + "description" : "Build output for PNC npm build #1403", + "metadata" : { + "changelog" : "Creating hosted repository for npm build: 1403 (repo: build-1403)" + }, + "disabled" : false, + "snapshotTimeoutSeconds" : 0, + "readonly" : false, + "name" : "build-1403", + "packageType" : "npm", + "disable_timeout" : 0, + "path_style" : "plain", + "authoritative_index" : false, + "create_time" : "2021-06-02 01:27:31 +0000", + "allow_snapshots" : false, + "allow_releases" : true + }, { + "type" : "hosted", + "key" : "npm:hosted:build-1908", + "description" : "Build output for PNC npm build #1908", + "metadata" : { + "changelog" : "Setting readonly after successful build and promotion." + }, + "disabled" : false, + "snapshotTimeoutSeconds" : 0, + "readonly" : true, + "name" : "build-1908", + "packageType" : "npm", + "disable_timeout" : 0, + "path_style" : "plain", + "authoritative_index" : true, + "create_time" : "2021-06-02 01:27:31 +0000", + "allow_snapshots" : false, + "allow_releases" : true + }, { + "type" : "hosted", + "key" : "npm:hosted:build-ATMXX5UNCJIAA", + "description" : "Build output for PNC npm build #build-ATMXX5UNCJIAA", + "metadata" : { + "changelog" : "Creating hosted repository for npm build: build-ATMXX5UNCJIAA (repo: build-ATMXX5UNCJIAA)" + }, + "disabled" : false, + "snapshotTimeoutSeconds" : 0, + "readonly" : false, + "name" : "build-ATMXX5UNCJIAA", + "packageType" : "npm", + "disable_timeout" : 0, + "path_style" : "plain", + "authoritative_index" : false, + "create_time" : "2022-08-22 06:58:35 +0000", + "allow_snapshots" : false, + "allow_releases" : true + }, { + "type" : "hosted", + "key" : "npm:hosted:build-ATJVZHAOSJIAA", + "description" : "Build output for PNC npm build #build-ATJVZHAOSJIAA", + "metadata" : { + "changelog" : "Creating hosted repository for npm build: build-ATJVZHAOSJIAA (repo: build-ATJVZHAOSJIAA)" + }, + "disabled" : false, + "snapshotTimeoutSeconds" : 0, + "readonly" : false, + "name" : "build-ATJVZHAOSJIAA", + "packageType" : "npm", + "disable_timeout" : 0, + "path_style" : "plain", + "authoritative_index" : false, + "create_time" : "2022-08-17 12:48:47 +0000", + "allow_snapshots" : false, + "allow_releases" : true + }, { + "type" : "hosted", + "key" : "npm:hosted:build-ATKLN4KE2JIAA", + "description" : "Build output for PNC npm build #build-ATKLN4KE2JIAA", + "metadata" : { + "changelog" : "Setting readonly after successful build and promotion." + }, + "disabled" : false, + "snapshotTimeoutSeconds" : 0, + "readonly" : true, + "name" : "build-ATKLN4KE2JIAA", + "packageType" : "npm", + "disable_timeout" : 0, + "path_style" : "plain", + "authoritative_index" : true, + "create_time" : "2022-08-18 14:03:00 +0000", + "allow_snapshots" : false, + "allow_releases" : true + }, { + "type" : "hosted", + "key" : "npm:hosted:build-ATJBPKAUIHIAA", + "description" : "Build output for PNC npm build #build-ATJBPKAUIHIAA", + "metadata" : { + "changelog" : "Creating hosted repository for npm build: build-ATJBPKAUIHIAA (repo: build-ATJBPKAUIHIAA)" + }, + "disabled" : false, + "snapshotTimeoutSeconds" : 0, + "readonly" : false, + "name" : "build-ATJBPKAUIHIAA", + "packageType" : "npm", + "disable_timeout" : 0, + "path_style" : "plain", + "authoritative_index" : false, + "create_time" : "2022-08-16 13:09:03 +0000", + "allow_snapshots" : false, + "allow_releases" : true + }, { + "type" : "hosted", + "key" : "npm:hosted:build-AUSSLL6X5WIAA", + "description" : "Build output for PNC npm build #build-AUSSLL6X5WIAA", + "metadata" : { + "changelog" : "Creating hosted repository for npm build: build-AUSSLL6X5WIAA (repo: build-AUSSLL6X5WIAA)" + }, + "disabled" : false, + "snapshotTimeoutSeconds" : 0, + "readonly" : false, + "name" : "build-AUSSLL6X5WIAA", + "packageType" : "npm", + "disable_timeout" : 0, + "path_style" : "plain", + "authoritative_index" : false, + "create_time" : "2022-10-20 01:26:38 +0000", + "allow_snapshots" : false, + "allow_releases" : true + }, { + "type" : "hosted", + "key" : "npm:hosted:build-ATJV3HRICJIAA", + "description" : "Build output for PNC npm build #build-ATJV3HRICJIAA", + "metadata" : { + "changelog" : "Creating hosted repository for npm build: build-ATJV3HRICJIAA (repo: build-ATJV3HRICJIAA)" + }, + "disabled" : false, + "snapshotTimeoutSeconds" : 0, + "readonly" : false, + "name" : "build-ATJV3HRICJIAA", + "packageType" : "npm", + "disable_timeout" : 0, + "path_style" : "plain", + "authoritative_index" : false, + "create_time" : "2022-08-17 12:53:11 +0000", + "allow_snapshots" : false, + "allow_releases" : true + }, { + "type" : "hosted", + "key" : "npm:hosted:build-1725", + "description" : "Build output for PNC npm build #1725", + "metadata" : { + "changelog" : "Setting readonly after successful build and promotion." + }, + "disabled" : false, + "snapshotTimeoutSeconds" : 0, + "readonly" : true, + "name" : "build-1725", + "packageType" : "npm", + "disable_timeout" : 0, + "path_style" : "plain", + "authoritative_index" : true, + "create_time" : "2021-06-02 01:27:31 +0000", + "allow_snapshots" : false, + "allow_releases" : true + }, { + "type" : "hosted", + "key" : "npm:hosted:build-162851312008671232", + "description" : "Build output for PNC npm build #162851312008671232", + "metadata" : { + "changelog" : "Creating hosted repository for npm build: 162851312008671232 (repo: build-162851312008671232)" + }, + "disabled" : false, + "snapshotTimeoutSeconds" : 0, + "readonly" : false, + "name" : "build-162851312008671232", + "packageType" : "npm", + "disable_timeout" : 0, + "path_style" : "plain", + "authoritative_index" : false, + "create_time" : "2021-06-02 01:27:31 +0000", + "allow_snapshots" : false, + "allow_releases" : true + }, { + "type" : "hosted", + "key" : "npm:hosted:build-ATIMRBRAMTIAA", + "description" : "Build output for PNC npm build #build-ATIMRBRAMTIAA", + "metadata" : { + "changelog" : "Setting readonly after successful build and promotion." + }, + "disabled" : false, + "snapshotTimeoutSeconds" : 0, + "readonly" : true, + "name" : "build-ATIMRBRAMTIAA", + "packageType" : "npm", + "disable_timeout" : 0, + "path_style" : "plain", + "authoritative_index" : true, + "create_time" : "2022-08-15 12:45:14 +0000", + "allow_snapshots" : false, + "allow_releases" : true + }, { + "type" : "hosted", + "key" : "npm:hosted:build-1255", + "description" : "Build output for PNC npm build #1255", + "metadata" : { + "changelog" : "Creating hosted repository for npm build: 1255 (repo: build-1255)" + }, + "disabled" : false, + "snapshotTimeoutSeconds" : 0, + "readonly" : false, + "name" : "build-1255", + "packageType" : "npm", + "disable_timeout" : 0, + "path_style" : "plain", + "authoritative_index" : false, + "create_time" : "2021-06-02 01:27:31 +0000", + "allow_snapshots" : false, + "allow_releases" : true + }, { + "type" : "hosted", + "key" : "npm:hosted:build-1471", + "description" : "Build output for PNC npm build #1471", + "metadata" : { + "changelog" : "Setting readonly after successful build and promotion." + }, + "disabled" : false, + "snapshotTimeoutSeconds" : 0, + "readonly" : true, + "name" : "build-1471", + "packageType" : "npm", + "disable_timeout" : 0, + "path_style" : "plain", + "authoritative_index" : true, + "create_time" : "2021-06-02 01:27:31 +0000", + "allow_snapshots" : false, + "allow_releases" : true + }, { + "type" : "hosted", + "key" : "npm:hosted:build-1537", + "description" : "Build output for PNC npm build #1537", + "metadata" : { + "changelog" : "Creating hosted repository for npm build: 1537 (repo: build-1537)" + }, + "disabled" : false, + "snapshotTimeoutSeconds" : 0, + "readonly" : false, + "name" : "build-1537", + "packageType" : "npm", + "disable_timeout" : 0, + "path_style" : "plain", + "authoritative_index" : false, + "create_time" : "2021-06-02 01:27:31 +0000", + "allow_snapshots" : false, + "allow_releases" : true + }, { + "type" : "hosted", + "key" : "npm:hosted:build-ALNRDMIQY7QAA", + "description" : "Build output for PNC npm build #ALNRDMIQY7QAA", + "metadata" : { + "changelog" : "Setting readonly after successful build and promotion." + }, + "disabled" : false, + "snapshotTimeoutSeconds" : 0, + "readonly" : true, + "name" : "build-ALNRDMIQY7QAA", + "packageType" : "npm", + "disable_timeout" : 0, + "path_style" : "plain", + "authoritative_index" : true, + "create_time" : "2021-07-21 20:08:05 +0000", + "allow_snapshots" : false, + "allow_releases" : true + }, { + "type" : "hosted", + "key" : "npm:hosted:build-ANSJXYBWOUIAA", + "description" : "Build output for PNC npm build #build-ANSJXYBWOUIAA", + "metadata" : { + "changelog" : "Creating hosted repository for npm build: build-ANSJXYBWOUIAA (repo: build-ANSJXYBWOUIAA)" + }, + "disabled" : false, + "snapshotTimeoutSeconds" : 0, + "readonly" : false, + "name" : "build-ANSJXYBWOUIAA", + "packageType" : "npm", + "disable_timeout" : 0, + "path_style" : "plain", + "authoritative_index" : false, + "create_time" : "2021-11-05 16:02:47 +0000", + "allow_snapshots" : false, + "allow_releases" : true + }, { + "type" : "hosted", + "key" : "npm:hosted:build-850", + "description" : "Build output for PNC npm build #850", + "metadata" : { + "changelog" : "Setting readonly after successful build and promotion." + }, + "disabled" : false, + "snapshotTimeoutSeconds" : 0, + "readonly" : true, + "name" : "build-850", + "packageType" : "npm", + "disable_timeout" : 0, + "path_style" : "plain", + "authoritative_index" : true, + "create_time" : "2021-06-02 01:27:31 +0000", + "allow_snapshots" : false, + "allow_releases" : true + }, { + "type" : "hosted", + "key" : "npm:hosted:build-ANSJYI4V6UIAA", + "description" : "Build output for PNC npm build #build-ANSJYI4V6UIAA", + "metadata" : { + "changelog" : "Creating hosted repository for npm build: build-ANSJYI4V6UIAA (repo: build-ANSJYI4V6UIAA)" + }, + "disabled" : false, + "snapshotTimeoutSeconds" : 0, + "readonly" : false, + "name" : "build-ANSJYI4V6UIAA", + "packageType" : "npm", + "disable_timeout" : 0, + "path_style" : "plain", + "authoritative_index" : false, + "create_time" : "2021-11-05 16:03:55 +0000", + "allow_snapshots" : false, + "allow_releases" : true + }, { + "type" : "hosted", + "key" : "npm:hosted:build-ATJVU4NKCJIAA", + "description" : "Build output for PNC npm build #build-ATJVU4NKCJIAA", + "metadata" : { + "changelog" : "Setting readonly after successful build and promotion." + }, + "disabled" : false, + "snapshotTimeoutSeconds" : 0, + "readonly" : true, + "name" : "build-ATJVU4NKCJIAA", + "packageType" : "npm", + "disable_timeout" : 0, + "path_style" : "plain", + "authoritative_index" : true, + "create_time" : "2022-08-17 12:39:21 +0000", + "allow_snapshots" : false, + "allow_releases" : true + }, { + "type" : "hosted", + "key" : "npm:hosted:build-1081", + "description" : "Build output for PNC npm build #1081", + "metadata" : { + "changelog" : "Setting readonly after successful build and promotion." + }, + "disabled" : false, + "snapshotTimeoutSeconds" : 0, + "readonly" : true, + "name" : "build-1081", + "packageType" : "npm", + "disable_timeout" : 0, + "path_style" : "plain", + "authoritative_index" : true, + "create_time" : "2021-06-02 01:27:31 +0000", + "allow_snapshots" : false, + "allow_releases" : true + }, { + "type" : "hosted", + "key" : "npm:hosted:build-ATSAH55UPQAAA", + "description" : "Build output for PNC npm build #build-ATSAH55UPQAAA", + "metadata" : { + "changelog" : "Setting readonly after successful build and promotion." + }, + "disabled" : false, + "snapshotTimeoutSeconds" : 0, + "readonly" : true, + "name" : "build-ATSAH55UPQAAA", + "packageType" : "npm", + "disable_timeout" : 0, + "path_style" : "plain", + "authoritative_index" : true, + "create_time" : "2022-08-30 11:15:41 +0000", + "allow_snapshots" : false, + "allow_releases" : true + }, { + "type" : "hosted", + "key" : "npm:hosted:build-1961", + "description" : "Build output for PNC npm build #1961", + "metadata" : { + "changelog" : "Setting readonly after successful build and promotion." + }, + "disabled" : false, + "snapshotTimeoutSeconds" : 0, + "readonly" : true, + "name" : "build-1961", + "packageType" : "npm", + "disable_timeout" : 0, + "path_style" : "plain", + "authoritative_index" : true, + "create_time" : "2021-06-02 01:27:31 +0000", + "allow_snapshots" : false, + "allow_releases" : true + }, { + "type" : "hosted", + "key" : "npm:hosted:build-1302", + "description" : "Build output for PNC npm build #1302", + "metadata" : { + "changelog" : "Creating hosted repository for npm build: 1302 (repo: build-1302)" + }, + "disabled" : false, + "snapshotTimeoutSeconds" : 0, + "readonly" : false, + "name" : "build-1302", + "packageType" : "npm", + "disable_timeout" : 0, + "path_style" : "plain", + "authoritative_index" : false, + "create_time" : "2021-06-02 01:27:31 +0000", + "allow_snapshots" : false, + "allow_releases" : true + }, { + "type" : "hosted", + "key" : "npm:hosted:build-1714", + "description" : "Build output for PNC npm build #1714", + "metadata" : { + "changelog" : "Setting readonly after successful build and promotion." + }, + "disabled" : false, + "snapshotTimeoutSeconds" : 0, + "readonly" : true, + "name" : "build-1714", + "packageType" : "npm", + "disable_timeout" : 0, + "path_style" : "plain", + "authoritative_index" : true, + "create_time" : "2021-06-02 01:27:31 +0000", + "allow_snapshots" : false, + "allow_releases" : true + }, { + "type" : "hosted", + "key" : "npm:hosted:build-1780", + "description" : "Build output for PNC npm build #1780", + "metadata" : { + "changelog" : "Setting readonly after successful build and promotion." + }, + "disabled" : false, + "snapshotTimeoutSeconds" : 0, + "readonly" : true, + "name" : "build-1780", + "packageType" : "npm", + "disable_timeout" : 0, + "path_style" : "plain", + "authoritative_index" : true, + "create_time" : "2021-06-02 01:27:31 +0000", + "allow_snapshots" : false, + "allow_releases" : true + }, { + "type" : "hosted", + "key" : "npm:hosted:build-1397", + "description" : "Build output for PNC npm build #1397", + "metadata" : { + "changelog" : "Creating hosted repository for npm build: 1397 (repo: build-1397)" + }, + "disabled" : false, + "snapshotTimeoutSeconds" : 0, + "readonly" : false, + "name" : "build-1397", + "packageType" : "npm", + "disable_timeout" : 0, + "path_style" : "plain", + "authoritative_index" : false, + "create_time" : "2021-06-02 01:27:31 +0000", + "allow_snapshots" : false, + "allow_releases" : true + }, { + "type" : "hosted", + "key" : "npm:hosted:build-1007", + "description" : "Build output for PNC npm build #1007", + "metadata" : { + "changelog" : "Setting readonly after successful build and promotion." + }, + "disabled" : false, + "snapshotTimeoutSeconds" : 0, + "readonly" : true, + "name" : "build-1007", + "packageType" : "npm", + "disable_timeout" : 0, + "path_style" : "plain", + "authoritative_index" : true, + "create_time" : "2021-06-02 01:27:31 +0000", + "allow_snapshots" : false, + "allow_releases" : true + }, { + "type" : "hosted", + "key" : "npm:hosted:build-1128", + "description" : "Build output for PNC npm build #1128", + "metadata" : { + "changelog" : "Setting readonly after successful build and promotion." + }, + "disabled" : false, + "snapshotTimeoutSeconds" : 0, + "readonly" : true, + "name" : "build-1128", + "packageType" : "npm", + "disable_timeout" : 0, + "path_style" : "plain", + "authoritative_index" : true, + "create_time" : "2021-06-02 01:27:31 +0000", + "allow_snapshots" : false, + "allow_releases" : true + }, { + "type" : "hosted", + "key" : "npm:hosted:build-174864544753614848", + "description" : "Build output for PNC npm build #174864544753614848", + "metadata" : { + "changelog" : "Creating hosted repository for npm build: 174864544753614848 (repo: build-174864544753614848)" + }, + "disabled" : false, + "snapshotTimeoutSeconds" : 0, + "readonly" : false, + "name" : "build-174864544753614848", + "packageType" : "npm", + "disable_timeout" : 0, + "path_style" : "plain", + "authoritative_index" : false, + "create_time" : "2021-06-02 01:27:31 +0000", + "allow_snapshots" : false, + "allow_releases" : true + }, { + "type" : "hosted", + "key" : "npm:hosted:build-1309", + "description" : "Build output for PNC npm build #1309", + "metadata" : { + "changelog" : "Creating hosted repository for npm build: 1309 (repo: build-1309)" + }, + "disabled" : false, + "snapshotTimeoutSeconds" : 0, + "readonly" : false, + "name" : "build-1309", + "packageType" : "npm", + "disable_timeout" : 0, + "path_style" : "plain", + "authoritative_index" : false, + "create_time" : "2021-06-02 01:27:31 +0000", + "allow_snapshots" : false, + "allow_releases" : true + }, { + "type" : "hosted", + "key" : "npm:hosted:build-ATI7SHYMQHIAA", + "description" : "Build output for PNC npm build #build-ATI7SHYMQHIAA", + "metadata" : { + "changelog" : "Creating hosted repository for npm build: build-ATI7SHYMQHIAA (repo: build-ATI7SHYMQHIAA)" + }, + "disabled" : false, + "snapshotTimeoutSeconds" : 0, + "readonly" : false, + "name" : "build-ATI7SHYMQHIAA", + "packageType" : "npm", + "disable_timeout" : 0, + "path_style" : "plain", + "authoritative_index" : false, + "create_time" : "2022-08-16 10:55:39 +0000", + "allow_snapshots" : false, + "allow_releases" : true + }, { + "type" : "hosted", + "key" : "npm:hosted:build-ALNRRNKMA7QAA", + "description" : "Build output for PNC npm build #ALNRRNKMA7QAA", + "metadata" : { + "changelog" : "Creating hosted repository for npm build: ALNRRNKMA7QAA (repo: build-ALNRRNKMA7QAA)" + }, + "disabled" : false, + "snapshotTimeoutSeconds" : 0, + "readonly" : false, + "name" : "build-ALNRRNKMA7QAA", + "packageType" : "npm", + "disable_timeout" : 0, + "path_style" : "plain", + "authoritative_index" : false, + "create_time" : "2021-07-21 20:37:44 +0000", + "allow_snapshots" : false, + "allow_releases" : true + }, { + "type" : "hosted", + "key" : "npm:hosted:build-1788", + "description" : "Build output for PNC npm build #1788", + "metadata" : { + "changelog" : "Setting readonly after successful build and promotion." + }, + "disabled" : false, + "snapshotTimeoutSeconds" : 0, + "readonly" : true, + "name" : "build-1788", + "packageType" : "npm", + "disable_timeout" : 0, + "path_style" : "plain", + "authoritative_index" : true, + "create_time" : "2021-06-02 01:27:31 +0000", + "allow_snapshots" : false, + "allow_releases" : true + }, { + "type" : "hosted", + "key" : "npm:hosted:build-ATKLUBI5KJIAA", + "description" : "Build output for PNC npm build #build-ATKLUBI5KJIAA", + "metadata" : { + "changelog" : "Setting readonly after successful build and promotion." + }, + "disabled" : false, + "snapshotTimeoutSeconds" : 0, + "readonly" : true, + "name" : "build-ATKLUBI5KJIAA", + "packageType" : "npm", + "disable_timeout" : 0, + "path_style" : "plain", + "authoritative_index" : true, + "create_time" : "2022-08-18 14:17:21 +0000", + "allow_snapshots" : false, + "allow_releases" : true + }, { + "type" : "hosted", + "key" : "npm:hosted:build-ATMUGZX4KJIAA", + "description" : "Build output for PNC npm build #build-ATMUGZX4KJIAA", + "metadata" : { + "changelog" : "Creating hosted repository for npm build: build-ATMUGZX4KJIAA (repo: build-ATMUGZX4KJIAA)" + }, + "disabled" : false, + "snapshotTimeoutSeconds" : 0, + "readonly" : false, + "name" : "build-ATMUGZX4KJIAA", + "packageType" : "npm", + "disable_timeout" : 0, + "path_style" : "plain", + "authoritative_index" : false, + "create_time" : "2022-08-22 03:01:10 +0000", + "allow_snapshots" : false, + "allow_releases" : true + }, { + "type" : "hosted", + "key" : "npm:hosted:build-A4RWOQJKGIAAA", + "description" : "Build output for PNC npm build #build-A4RWOQJKGIAAA", + "metadata" : { + "changelog" : "Creating hosted repository for npm build: build-A4RWOQJKGIAAA (repo: build-A4RWOQJKGIAAA)" + }, + "disabled" : false, + "snapshotTimeoutSeconds" : 0, + "readonly" : false, + "name" : "build-A4RWOQJKGIAAA", + "packageType" : "npm", + "disable_timeout" : 0, + "path_style" : "plain", + "authoritative_index" : false, + "create_time" : "2023-11-20 09:16:06 +0000", + "allow_snapshots" : false, + "allow_releases" : true + }, { + "type" : "hosted", + "key" : "npm:hosted:build-ATKLPKQC2JIAA", + "description" : "Build output for PNC npm build #build-ATKLPKQC2JIAA", + "metadata" : { + "changelog" : "Setting readonly after successful build and promotion." + }, + "disabled" : false, + "snapshotTimeoutSeconds" : 0, + "readonly" : true, + "name" : "build-ATKLPKQC2JIAA", + "packageType" : "npm", + "disable_timeout" : 0, + "path_style" : "plain", + "authoritative_index" : true, + "create_time" : "2022-08-18 14:05:06 +0000", + "allow_snapshots" : false, + "allow_releases" : true + }, { + "type" : "hosted", + "key" : "npm:hosted:build-1791", + "description" : "Build output for PNC npm build #1791", + "metadata" : { + "changelog" : "Setting readonly after successful build and promotion." + }, + "disabled" : false, + "snapshotTimeoutSeconds" : 0, + "readonly" : true, + "name" : "build-1791", + "packageType" : "npm", + "disable_timeout" : 0, + "path_style" : "plain", + "authoritative_index" : true, + "create_time" : "2021-06-02 01:27:31 +0000", + "allow_snapshots" : false, + "allow_releases" : true + }, { + "type" : "hosted", + "key" : "npm:hosted:build-1300", + "description" : "Build output for PNC npm build #1300", + "metadata" : { + "changelog" : "Creating hosted repository for npm build: 1300 (repo: build-1300)" + }, + "disabled" : false, + "snapshotTimeoutSeconds" : 0, + "readonly" : false, + "name" : "build-1300", + "packageType" : "npm", + "disable_timeout" : 0, + "path_style" : "plain", + "authoritative_index" : false, + "create_time" : "2021-06-02 01:27:31 +0000", + "allow_snapshots" : false, + "allow_releases" : true + }, { + "type" : "hosted", + "key" : "npm:hosted:build-ANWONZKHYEQAA", + "description" : "Build output for PNC npm build #build-ANWONZKHYEQAA", + "metadata" : { + "changelog" : "Creating hosted repository for npm build: build-ANWONZKHYEQAA (repo: build-ANWONZKHYEQAA)" + }, + "disabled" : false, + "snapshotTimeoutSeconds" : 0, + "readonly" : false, + "name" : "build-ANWONZKHYEQAA", + "packageType" : "npm", + "disable_timeout" : 0, + "path_style" : "plain", + "authoritative_index" : false, + "create_time" : "2021-11-12 02:38:23 +0000", + "allow_snapshots" : false, + "allow_releases" : true + }, { + "type" : "hosted", + "key" : "npm:hosted:build-ATSCG6OIXQAAA", + "description" : "Build output for PNC npm build #build-ATSCG6OIXQAAA", + "metadata" : { + "changelog" : "Setting readonly after successful build and promotion." + }, + "disabled" : false, + "snapshotTimeoutSeconds" : 0, + "readonly" : true, + "name" : "build-ATSCG6OIXQAAA", + "packageType" : "npm", + "disable_timeout" : 0, + "path_style" : "plain", + "authoritative_index" : true, + "create_time" : "2022-08-30 13:36:55 +0000", + "allow_snapshots" : false, + "allow_releases" : true + }, { + "type" : "hosted", + "key" : "npm:hosted:build-815", + "description" : "Build output for PNC npm build #815", + "metadata" : { + "changelog" : "Setting readonly after successful build and promotion." + }, + "disabled" : false, + "snapshotTimeoutSeconds" : 0, + "readonly" : true, + "name" : "build-815", + "packageType" : "npm", + "disable_timeout" : 0, + "path_style" : "plain", + "authoritative_index" : true, + "create_time" : "2021-06-02 01:27:31 +0000", + "allow_snapshots" : false, + "allow_releases" : true + }, { + "type" : "hosted", + "key" : "npm:hosted:build-ATI7SK7FAHIAA", + "description" : "Build output for PNC npm build #build-ATI7SK7FAHIAA", + "metadata" : { + "changelog" : "Creating hosted repository for npm build: build-ATI7SK7FAHIAA (repo: build-ATI7SK7FAHIAA)" + }, + "disabled" : false, + "snapshotTimeoutSeconds" : 0, + "readonly" : false, + "name" : "build-ATI7SK7FAHIAA", + "packageType" : "npm", + "disable_timeout" : 0, + "path_style" : "plain", + "authoritative_index" : false, + "create_time" : "2022-08-16 10:55:52 +0000", + "allow_snapshots" : false, + "allow_releases" : true + }, { + "type" : "hosted", + "key" : "npm:hosted:build-898", + "description" : "Build output for PNC npm build #898", + "metadata" : { + "changelog" : "Setting readonly after successful build and promotion." + }, + "disabled" : false, + "snapshotTimeoutSeconds" : 0, + "readonly" : true, + "name" : "build-898", + "packageType" : "npm", + "disable_timeout" : 0, + "path_style" : "plain", + "authoritative_index" : true, + "create_time" : "2021-06-02 01:27:31 +0000", + "allow_snapshots" : false, + "allow_releases" : true + }, { + "type" : "hosted", + "key" : "npm:hosted:build-ANSDHMTDYJYAA", + "description" : "Build output for PNC npm build #build-ANSDHMTDYJYAA", + "metadata" : { + "changelog" : "Setting readonly after successful build and promotion." + }, + "disabled" : false, + "snapshotTimeoutSeconds" : 0, + "readonly" : true, + "name" : "build-ANSDHMTDYJYAA", + "packageType" : "npm", + "disable_timeout" : 0, + "path_style" : "plain", + "authoritative_index" : true, + "create_time" : "2021-11-05 08:28:51 +0000", + "allow_snapshots" : false, + "allow_releases" : true + }, { + "type" : "hosted", + "key" : "npm:hosted:build-1321", + "description" : "Build output for PNC npm build #1321", + "metadata" : { + "changelog" : "Creating hosted repository for npm build: 1321 (repo: build-1321)" + }, + "disabled" : false, + "snapshotTimeoutSeconds" : 0, + "readonly" : false, + "name" : "build-1321", + "packageType" : "npm", + "disable_timeout" : 0, + "path_style" : "plain", + "authoritative_index" : false, + "create_time" : "2021-06-02 01:27:31 +0000", + "allow_snapshots" : false, + "allow_releases" : true + }, { + "type" : "hosted", + "key" : "npm:hosted:build-ATJVTBYBSJIAA", + "description" : "Build output for PNC npm build #build-ATJVTBYBSJIAA", + "metadata" : { + "changelog" : "Setting readonly after successful build and promotion." + }, + "disabled" : false, + "snapshotTimeoutSeconds" : 0, + "readonly" : true, + "name" : "build-ATJVTBYBSJIAA", + "packageType" : "npm", + "disable_timeout" : 0, + "path_style" : "plain", + "authoritative_index" : true, + "create_time" : "2022-08-17 12:35:20 +0000", + "allow_snapshots" : false, + "allow_releases" : true + }, { + "type" : "hosted", + "key" : "npm:hosted:build-1080", + "description" : "Build output for PNC npm build #1080", + "metadata" : { + "changelog" : "Setting readonly after successful build and promotion." + }, + "disabled" : false, + "snapshotTimeoutSeconds" : 0, + "readonly" : true, + "name" : "build-1080", + "packageType" : "npm", + "disable_timeout" : 0, + "path_style" : "plain", + "authoritative_index" : true, + "create_time" : "2021-06-02 01:27:31 +0000", + "allow_snapshots" : false, + "allow_releases" : true + }, { + "type" : "hosted", + "key" : "npm:hosted:build-AVWZQUIFB7YAA", + "description" : "Build output for PNC npm build #build-AVWZQUIFB7YAA", + "metadata" : { + "changelog" : "Creating hosted repository for npm build: build-AVWZQUIFB7YAA (repo: build-AVWZQUIFB7YAA)" + }, + "disabled" : false, + "snapshotTimeoutSeconds" : 0, + "readonly" : false, + "name" : "build-AVWZQUIFB7YAA", + "packageType" : "npm", + "disable_timeout" : 0, + "path_style" : "plain", + "authoritative_index" : false, + "create_time" : "2022-12-15 07:55:44 +0000", + "allow_snapshots" : false, + "allow_releases" : true + }, { + "type" : "hosted", + "key" : "npm:hosted:build-ATRRSYMTXQAAA", + "description" : "Build output for PNC npm build #build-ATRRSYMTXQAAA", + "metadata" : { + "changelog" : "Setting readonly after successful build and promotion." + }, + "disabled" : false, + "snapshotTimeoutSeconds" : 0, + "readonly" : true, + "name" : "build-ATRRSYMTXQAAA", + "packageType" : "npm", + "disable_timeout" : 0, + "path_style" : "plain", + "authoritative_index" : true, + "create_time" : "2022-08-29 18:11:05 +0000", + "allow_snapshots" : false, + "allow_releases" : true + }, { + "type" : "hosted", + "key" : "npm:hosted:build-A4SLDYLJGIAAA", + "description" : "Build output for PNC npm build #build-A4SLDYLJGIAAA", + "metadata" : { + "changelog" : "Creating hosted repository for npm build: build-A4SLDYLJGIAAA (repo: build-A4SLDYLJGIAAA)" + }, + "disabled" : false, + "snapshotTimeoutSeconds" : 0, + "readonly" : false, + "name" : "build-A4SLDYLJGIAAA", + "packageType" : "npm", + "disable_timeout" : 0, + "path_style" : "plain", + "authoritative_index" : false, + "create_time" : "2023-11-21 09:20:39 +0000", + "allow_snapshots" : false, + "allow_releases" : true + }, { + "type" : "hosted", + "key" : "npm:hosted:build-ALNRJQYOA7QAA", + "description" : "Build output for PNC npm build #ALNRJQYOA7QAA", + "metadata" : { + "changelog" : "Creating hosted repository for npm build: ALNRJQYOA7QAA (repo: build-ALNRJQYOA7QAA)" + }, + "disabled" : false, + "snapshotTimeoutSeconds" : 0, + "readonly" : false, + "name" : "build-ALNRJQYOA7QAA", + "packageType" : "npm", + "disable_timeout" : 0, + "path_style" : "plain", + "authoritative_index" : false, + "create_time" : "2021-07-21 20:20:33 +0000", + "allow_snapshots" : false, + "allow_releases" : true + }, { + "type" : "hosted", + "key" : "npm:hosted:build-ALNRIIWSY7QAA", + "description" : "Build output for PNC npm build #ALNRIIWSY7QAA", + "metadata" : { + "changelog" : "Creating hosted repository for npm build: ALNRIIWSY7QAA (repo: build-ALNRIIWSY7QAA)" + }, + "disabled" : false, + "snapshotTimeoutSeconds" : 0, + "readonly" : false, + "name" : "build-ALNRIIWSY7QAA", + "packageType" : "npm", + "disable_timeout" : 0, + "path_style" : "plain", + "authoritative_index" : false, + "create_time" : "2021-07-21 20:17:48 +0000", + "allow_snapshots" : false, + "allow_releases" : true + }, { + "type" : "hosted", + "key" : "npm:hosted:build-1588", + "description" : "Build output for PNC npm build #1588", + "metadata" : { + "changelog" : "Setting readonly after successful build and promotion." + }, + "disabled" : false, + "snapshotTimeoutSeconds" : 0, + "readonly" : true, + "name" : "build-1588", + "packageType" : "npm", + "disable_timeout" : 0, + "path_style" : "plain", + "authoritative_index" : true, + "create_time" : "2021-06-02 01:27:31 +0000", + "allow_snapshots" : false, + "allow_releases" : true + }, { + "type" : "hosted", + "key" : "npm:hosted:build-1888", + "description" : "Build output for PNC npm build #1888", + "metadata" : { + "changelog" : "Setting readonly after successful build and promotion." + }, + "disabled" : false, + "snapshotTimeoutSeconds" : 0, + "readonly" : true, + "name" : "build-1888", + "packageType" : "npm", + "disable_timeout" : 0, + "path_style" : "plain", + "authoritative_index" : true, + "create_time" : "2021-06-02 01:27:31 +0000", + "allow_snapshots" : false, + "allow_releases" : true + }, { + "type" : "hosted", + "key" : "npm:hosted:build-1768", + "description" : "Build output for PNC npm build #1768", + "metadata" : { + "changelog" : "Setting readonly after successful build and promotion." + }, + "disabled" : false, + "snapshotTimeoutSeconds" : 0, + "readonly" : true, + "name" : "build-1768", + "packageType" : "npm", + "disable_timeout" : 0, + "path_style" : "plain", + "authoritative_index" : true, + "create_time" : "2021-06-02 01:27:31 +0000", + "allow_snapshots" : false, + "allow_releases" : true + }, { + "type" : "hosted", + "key" : "npm:hosted:build-ATERVB5IMBIAA", + "description" : "Build output for PNC npm build #build-ATERVB5IMBIAA", + "metadata" : { + "changelog" : "Creating hosted repository for npm build: build-ATERVB5IMBIAA (repo: build-ATERVB5IMBIAA)" + }, + "disabled" : false, + "snapshotTimeoutSeconds" : 0, + "readonly" : false, + "name" : "build-ATERVB5IMBIAA", + "packageType" : "npm", + "disable_timeout" : 0, + "path_style" : "plain", + "authoritative_index" : false, + "create_time" : "2022-08-10 13:56:33 +0000", + "allow_snapshots" : false, + "allow_releases" : true + }, { + "type" : "hosted", + "key" : "npm:hosted:build-1777", + "description" : "Build output for PNC npm build #1777", + "metadata" : { + "changelog" : "Setting readonly after successful build and promotion." + }, + "disabled" : false, + "snapshotTimeoutSeconds" : 0, + "readonly" : true, + "name" : "build-1777", + "packageType" : "npm", + "disable_timeout" : 0, + "path_style" : "plain", + "authoritative_index" : true, + "create_time" : "2021-06-02 01:27:31 +0000", + "allow_snapshots" : false, + "allow_releases" : true + }, { + "type" : "hosted", + "key" : "npm:hosted:build-177141949236137984", + "description" : "Build output for PNC npm build #177141949236137984", + "metadata" : { + "changelog" : "Creating hosted repository for npm build: 177141949236137984 (repo: build-177141949236137984)" + }, + "disabled" : false, + "snapshotTimeoutSeconds" : 0, + "readonly" : false, + "name" : "build-177141949236137984", + "packageType" : "npm", + "disable_timeout" : 0, + "path_style" : "plain", + "authoritative_index" : false, + "create_time" : "2021-06-02 01:27:31 +0000", + "allow_snapshots" : false, + "allow_releases" : true + }, { + "type" : "hosted", + "key" : "npm:hosted:build-1201", + "description" : "Build output for PNC npm build #1201", + "metadata" : { + "changelog" : "Setting readonly after successful build and promotion." + }, + "disabled" : false, + "snapshotTimeoutSeconds" : 0, + "readonly" : true, + "name" : "build-1201", + "packageType" : "npm", + "disable_timeout" : 0, + "path_style" : "plain", + "authoritative_index" : true, + "create_time" : "2021-06-02 01:27:31 +0000", + "allow_snapshots" : false, + "allow_releases" : true + }, { + "type" : "hosted", + "key" : "npm:hosted:build-ATKLNQ54CJIAA", + "description" : "Build output for PNC npm build #build-ATKLNQ54CJIAA", + "metadata" : { + "changelog" : "Setting readonly after successful build and promotion." + }, + "disabled" : false, + "snapshotTimeoutSeconds" : 0, + "readonly" : true, + "name" : "build-ATKLNQ54CJIAA", + "packageType" : "npm", + "disable_timeout" : 0, + "path_style" : "plain", + "authoritative_index" : true, + "create_time" : "2022-08-18 14:01:11 +0000", + "allow_snapshots" : false, + "allow_releases" : true + }, { + "type" : "hosted", + "key" : "npm:hosted:build-1349", + "description" : "Build output for PNC npm build #1349", + "metadata" : { + "changelog" : "Creating hosted repository for npm build: 1349 (repo: build-1349)" + }, + "disabled" : false, + "snapshotTimeoutSeconds" : 0, + "readonly" : false, + "name" : "build-1349", + "packageType" : "npm", + "disable_timeout" : 0, + "path_style" : "plain", + "authoritative_index" : false, + "create_time" : "2021-06-02 01:27:31 +0000", + "allow_snapshots" : false, + "allow_releases" : true + }, { + "type" : "hosted", + "key" : "npm:hosted:build-899", + "description" : "Build output for PNC npm build #899", + "metadata" : { + "changelog" : "Setting readonly after successful build and promotion." + }, + "disabled" : false, + "snapshotTimeoutSeconds" : 0, + "readonly" : true, + "name" : "build-899", + "packageType" : "npm", + "disable_timeout" : 0, + "path_style" : "plain", + "authoritative_index" : true, + "create_time" : "2021-06-02 01:27:31 +0000", + "allow_snapshots" : false, + "allow_releases" : true + }, { + "type" : "hosted", + "key" : "npm:hosted:build-ALNQ7FCSA7QAA", + "description" : "Build output for PNC npm build #ALNQ7FCSA7QAA", + "metadata" : { + "changelog" : "Creating hosted repository for npm build: ALNQ7FCSA7QAA (repo: build-ALNQ7FCSA7QAA)" + }, + "disabled" : false, + "snapshotTimeoutSeconds" : 0, + "readonly" : false, + "name" : "build-ALNQ7FCSA7QAA", + "packageType" : "npm", + "disable_timeout" : 0, + "path_style" : "plain", + "authoritative_index" : false, + "create_time" : "2021-07-21 19:57:53 +0000", + "allow_snapshots" : false, + "allow_releases" : true + }, { + "type" : "hosted", + "key" : "npm:hosted:build-ALNRN7GQA7QAA", + "description" : "Build output for PNC npm build #ALNRN7GQA7QAA", + "metadata" : { + "changelog" : "Creating hosted repository for npm build: ALNRN7GQA7QAA (repo: build-ALNRN7GQA7QAA)" + }, + "disabled" : false, + "snapshotTimeoutSeconds" : 0, + "readonly" : false, + "name" : "build-ALNRN7GQA7QAA", + "packageType" : "npm", + "disable_timeout" : 0, + "path_style" : "plain", + "authoritative_index" : false, + "create_time" : "2021-07-21 20:30:21 +0000", + "allow_snapshots" : false, + "allow_releases" : true + }, { + "type" : "hosted", + "key" : "npm:hosted:build-1940", + "description" : "Build output for PNC npm build #1940", + "metadata" : { + "changelog" : "Creating hosted repository for npm build: 1940 (repo: build-1940)" + }, + "disabled" : false, + "snapshotTimeoutSeconds" : 0, + "readonly" : false, + "name" : "build-1940", + "packageType" : "npm", + "disable_timeout" : 0, + "path_style" : "plain", + "authoritative_index" : false, + "create_time" : "2021-06-02 01:27:31 +0000", + "allow_snapshots" : false, + "allow_releases" : true + }, { + "type" : "hosted", + "key" : "npm:hosted:build-AVWYYBKEB7YAA", + "description" : "Build output for PNC npm build #build-AVWYYBKEB7YAA", + "metadata" : { + "changelog" : "Creating hosted repository for npm build: build-AVWYYBKEB7YAA (repo: build-AVWYYBKEB7YAA)" + }, + "disabled" : false, + "snapshotTimeoutSeconds" : 0, + "readonly" : false, + "name" : "build-AVWYYBKEB7YAA", + "packageType" : "npm", + "disable_timeout" : 0, + "path_style" : "plain", + "authoritative_index" : false, + "create_time" : "2022-12-15 07:02:02 +0000", + "allow_snapshots" : false, + "allow_releases" : true + }, { + "type" : "hosted", + "key" : "npm:hosted:build-1746", + "description" : "Build output for PNC npm build #1746", + "metadata" : { + "changelog" : "Setting readonly after successful build and promotion." + }, + "disabled" : false, + "snapshotTimeoutSeconds" : 0, + "readonly" : true, + "name" : "build-1746", + "packageType" : "npm", + "disable_timeout" : 0, + "path_style" : "plain", + "authoritative_index" : true, + "create_time" : "2021-06-02 01:27:31 +0000", + "allow_snapshots" : false, + "allow_releases" : true + }, { + "type" : "hosted", + "key" : "npm:hosted:build-ALNZBOJ6XEAAA", + "description" : "Build output for PNC npm build #ALNZBOJ6XEAAA", + "metadata" : { + "changelog" : "Setting readonly after successful build and promotion." + }, + "disabled" : false, + "snapshotTimeoutSeconds" : 0, + "readonly" : true, + "name" : "build-ALNZBOJ6XEAAA", + "packageType" : "npm", + "disable_timeout" : 0, + "path_style" : "plain", + "authoritative_index" : true, + "create_time" : "2021-07-22 05:23:09 +0000", + "allow_snapshots" : false, + "allow_releases" : true + }, { + "type" : "hosted", + "key" : "npm:hosted:build-175002848044564480", + "description" : "Build output for PNC npm build #175002848044564480", + "metadata" : { + "changelog" : "Creating hosted repository for npm build: 175002848044564480 (repo: build-175002848044564480)" + }, + "disabled" : false, + "snapshotTimeoutSeconds" : 0, + "readonly" : false, + "name" : "build-175002848044564480", + "packageType" : "npm", + "disable_timeout" : 0, + "path_style" : "plain", + "authoritative_index" : false, + "create_time" : "2021-06-02 01:27:31 +0000", + "allow_snapshots" : false, + "allow_releases" : true + }, { + "type" : "hosted", + "key" : "npm:hosted:build-1723", + "description" : "Build output for PNC npm build #1723", + "metadata" : { + "changelog" : "Setting readonly after successful build and promotion." + }, + "disabled" : false, + "snapshotTimeoutSeconds" : 0, + "readonly" : true, + "name" : "build-1723", + "packageType" : "npm", + "disable_timeout" : 0, + "path_style" : "plain", + "authoritative_index" : true, + "create_time" : "2021-06-02 01:27:31 +0000", + "allow_snapshots" : false, + "allow_releases" : true + }, { + "type" : "hosted", + "key" : "npm:hosted:build-ATJ2HX732JIAA", + "description" : "Build output for PNC npm build #build-ATJ2HX732JIAA", + "metadata" : { + "changelog" : "Creating hosted repository for npm build: build-ATJ2HX732JIAA (repo: build-ATJ2HX732JIAA)" + }, + "disabled" : false, + "snapshotTimeoutSeconds" : 0, + "readonly" : false, + "name" : "build-ATJ2HX732JIAA", + "packageType" : "npm", + "disable_timeout" : 0, + "path_style" : "plain", + "authoritative_index" : false, + "create_time" : "2022-08-17 18:00:08 +0000", + "allow_snapshots" : false, + "allow_releases" : true + }, { + "type" : "hosted", + "key" : "npm:hosted:build-ATKLQVNBSJIAA", + "description" : "Build output for PNC npm build #build-ATKLQVNBSJIAA", + "metadata" : { + "changelog" : "Setting readonly after successful build and promotion." + }, + "disabled" : false, + "snapshotTimeoutSeconds" : 0, + "readonly" : true, + "name" : "build-ATKLQVNBSJIAA", + "packageType" : "npm", + "disable_timeout" : 0, + "path_style" : "plain", + "authoritative_index" : true, + "create_time" : "2022-08-18 14:08:01 +0000", + "allow_snapshots" : false, + "allow_releases" : true + }, { + "type" : "hosted", + "key" : "npm:hosted:build-ALNRYNBKI7QAA", + "description" : "Build output for PNC npm build #ALNRYNBKI7QAA", + "metadata" : { + "changelog" : "Setting readonly after successful build and promotion." + }, + "disabled" : false, + "snapshotTimeoutSeconds" : 0, + "readonly" : true, + "name" : "build-ALNRYNBKI7QAA", + "packageType" : "npm", + "disable_timeout" : 0, + "path_style" : "plain", + "authoritative_index" : true, + "create_time" : "2021-07-21 20:53:53 +0000", + "allow_snapshots" : false, + "allow_releases" : true + }, { + "type" : "hosted", + "key" : "npm:hosted:build-826", + "description" : "Build output for PNC npm build #826", + "metadata" : { + "changelog" : "Setting readonly after successful build and promotion." + }, + "disabled" : false, + "snapshotTimeoutSeconds" : 0, + "readonly" : true, + "name" : "build-826", + "packageType" : "npm", + "disable_timeout" : 0, + "path_style" : "plain", + "authoritative_index" : true, + "create_time" : "2021-06-02 01:27:31 +0000", + "allow_snapshots" : false, + "allow_releases" : true + }, { + "type" : "hosted", + "key" : "npm:hosted:build-172293563091640320", + "description" : "Build output for PNC npm build #172293563091640320", + "metadata" : { + "changelog" : "Setting readonly after successful build and promotion." + }, + "disabled" : false, + "snapshotTimeoutSeconds" : 0, + "readonly" : true, + "name" : "build-172293563091640320", + "packageType" : "npm", + "disable_timeout" : 0, + "path_style" : "plain", + "authoritative_index" : true, + "create_time" : "2021-06-02 01:27:31 +0000", + "allow_snapshots" : false, + "allow_releases" : true + }, { + "type" : "hosted", + "key" : "npm:hosted:build-1755", + "description" : "Build output for PNC npm build #1755", + "metadata" : { + "changelog" : "Setting readonly after successful build and promotion." + }, + "disabled" : false, + "snapshotTimeoutSeconds" : 0, + "readonly" : true, + "name" : "build-1755", + "packageType" : "npm", + "disable_timeout" : 0, + "path_style" : "plain", + "authoritative_index" : true, + "create_time" : "2021-06-02 01:27:31 +0000", + "allow_snapshots" : false, + "allow_releases" : true + }, { + "type" : "hosted", + "key" : "npm:hosted:build-AY7DGR2EPHAAA", + "description" : "Build output for PNC npm build #build-AY7DGR2EPHAAA", + "metadata" : { + "changelog" : "Creating hosted repository for npm build: build-AY7DGR2EPHAAA (repo: build-AY7DGR2EPHAAA)" + }, + "disabled" : false, + "snapshotTimeoutSeconds" : 0, + "readonly" : false, + "name" : "build-AY7DGR2EPHAAA", + "packageType" : "npm", + "disable_timeout" : 0, + "path_style" : "plain", + "authoritative_index" : false, + "create_time" : "2023-05-26 08:36:51 +0000", + "allow_snapshots" : false, + "allow_releases" : true + }, { + "type" : "hosted", + "key" : "npm:hosted:pnc-builds", + "metadata" : { + "changelog" : "Initial setup" + }, + "disabled" : false, + "snapshotTimeoutSeconds" : 0, + "readonly" : false, + "name" : "pnc-builds", + "packageType" : "npm", + "disable_timeout" : 0, + "path_style" : "plain", + "authoritative_index" : false, + "create_time" : "2021-03-10 10:27:30 +0000", + "allow_snapshots" : true, + "allow_releases" : true + }, { + "type" : "hosted", + "key" : "npm:hosted:build-1160", + "description" : "Build output for PNC npm build #1160", + "metadata" : { + "changelog" : "Setting readonly after successful build and promotion." + }, + "disabled" : false, + "snapshotTimeoutSeconds" : 0, + "readonly" : true, + "name" : "build-1160", + "packageType" : "npm", + "disable_timeout" : 0, + "path_style" : "plain", + "authoritative_index" : true, + "create_time" : "2021-06-02 01:27:31 +0000", + "allow_snapshots" : false, + "allow_releases" : true + }, { + "type" : "hosted", + "key" : "npm:hosted:build-1715", + "description" : "Build output for PNC npm build #1715", + "metadata" : { + "changelog" : "Setting readonly after successful build and promotion." + }, + "disabled" : false, + "snapshotTimeoutSeconds" : 0, + "readonly" : true, + "name" : "build-1715", + "packageType" : "npm", + "disable_timeout" : 0, + "path_style" : "plain", + "authoritative_index" : true, + "create_time" : "2021-06-02 01:27:31 +0000", + "allow_snapshots" : false, + "allow_releases" : true + }, { + "type" : "hosted", + "key" : "npm:hosted:build-A4SLH57TGIAAA", + "description" : "Build output for PNC npm build #build-A4SLH57TGIAAA", + "metadata" : { + "changelog" : "Creating hosted repository for npm build: build-A4SLH57TGIAAA (repo: build-A4SLH57TGIAAA)" + }, + "disabled" : false, + "snapshotTimeoutSeconds" : 0, + "readonly" : false, + "name" : "build-A4SLH57TGIAAA", + "packageType" : "npm", + "disable_timeout" : 0, + "path_style" : "plain", + "authoritative_index" : false, + "create_time" : "2023-11-21 09:29:48 +0000", + "allow_snapshots" : false, + "allow_releases" : true + }, { + "type" : "hosted", + "key" : "npm:hosted:build-ALN37FAJ6DQAA", + "description" : "Build output for PNC npm build #ALN37FAJ6DQAA", + "metadata" : { + "changelog" : "Setting readonly after successful build and promotion." + }, + "disabled" : false, + "snapshotTimeoutSeconds" : 0, + "readonly" : true, + "name" : "build-ALN37FAJ6DQAA", + "packageType" : "npm", + "disable_timeout" : 0, + "path_style" : "plain", + "authoritative_index" : true, + "create_time" : "2021-07-22 08:47:41 +0000", + "allow_snapshots" : false, + "allow_releases" : true + }, { + "type" : "hosted", + "key" : "npm:hosted:build-1200", + "description" : "Build output for PNC npm build #1200", + "metadata" : { + "changelog" : "Setting readonly after successful build and promotion." + }, + "disabled" : false, + "snapshotTimeoutSeconds" : 0, + "readonly" : true, + "name" : "build-1200", + "packageType" : "npm", + "disable_timeout" : 0, + "path_style" : "plain", + "authoritative_index" : true, + "create_time" : "2021-06-02 01:27:31 +0000", + "allow_snapshots" : false, + "allow_releases" : true + }, { + "type" : "hosted", + "key" : "npm:hosted:temporary-builds", + "metadata" : { + "changelog" : "Initial setup" + }, + "disabled" : false, + "snapshotTimeoutSeconds" : 0, + "readonly" : false, + "name" : "temporary-builds", + "packageType" : "npm", + "disable_timeout" : 0, + "path_style" : "plain", + "authoritative_index" : false, + "create_time" : "2021-03-10 10:28:01 +0000", + "allow_snapshots" : true, + "allow_releases" : true + }, { + "type" : "hosted", + "key" : "npm:hosted:build-1287", + "description" : "Build output for PNC npm build #1287", + "metadata" : { + "changelog" : "Creating hosted repository for npm build: 1287 (repo: build-1287)" + }, + "disabled" : false, + "snapshotTimeoutSeconds" : 0, + "readonly" : false, + "name" : "build-1287", + "packageType" : "npm", + "disable_timeout" : 0, + "path_style" : "plain", + "authoritative_index" : false, + "create_time" : "2021-06-02 01:27:31 +0000", + "allow_snapshots" : false, + "allow_releases" : true + }, { + "type" : "hosted", + "key" : "npm:hosted:build-1189", + "description" : "Build output for PNC npm build #1189", + "metadata" : { + "changelog" : "Setting readonly after successful build and promotion." + }, + "disabled" : false, + "snapshotTimeoutSeconds" : 0, + "readonly" : true, + "name" : "build-1189", + "packageType" : "npm", + "disable_timeout" : 0, + "path_style" : "plain", + "authoritative_index" : true, + "create_time" : "2021-06-02 01:27:31 +0000", + "allow_snapshots" : false, + "allow_releases" : true + }, { + "type" : "hosted", + "key" : "npm:hosted:build-ALNZDFZSHEAAA", + "description" : "Build output for PNC npm build #ALNZDFZSHEAAA", + "metadata" : { + "changelog" : "Setting readonly after successful build and promotion." + }, + "disabled" : false, + "snapshotTimeoutSeconds" : 0, + "readonly" : true, + "name" : "build-ALNZDFZSHEAAA", + "packageType" : "npm", + "disable_timeout" : 0, + "path_style" : "plain", + "authoritative_index" : true, + "create_time" : "2021-07-22 05:26:35 +0000", + "allow_snapshots" : false, + "allow_releases" : true + }, { + "type" : "hosted", + "key" : "npm:hosted:build-infinispan-js-client", + "description" : "test repo for http://orch-stage.psi.redhat.com/pnc-web/#/projects/406/build-configs/1901", + "metadata" : { + "changelog" : "test" + }, + "disabled" : false, + "snapshotTimeoutSeconds" : 0, + "readonly" : false, + "name" : "build-infinispan-js-client", + "packageType" : "npm", + "disable_timeout" : 0, + "path_style" : "plain", + "authoritative_index" : false, + "create_time" : "2021-06-02 01:27:31 +0000", + "allow_snapshots" : true, + "allow_releases" : true + }, { + "type" : "hosted", + "key" : "npm:hosted:build-1742", + "description" : "Build output for PNC npm build #1742", + "metadata" : { + "changelog" : "Setting readonly after successful build and promotion." + }, + "disabled" : false, + "snapshotTimeoutSeconds" : 0, + "readonly" : true, + "name" : "build-1742", + "packageType" : "npm", + "disable_timeout" : 0, + "path_style" : "plain", + "authoritative_index" : true, + "create_time" : "2021-06-02 01:27:31 +0000", + "allow_snapshots" : false, + "allow_releases" : true + }, { + "type" : "hosted", + "key" : "npm:hosted:build-1030", + "description" : "Build output for PNC npm build #1030", + "metadata" : { + "changelog" : "Setting readonly after successful build and promotion." + }, + "disabled" : false, + "snapshotTimeoutSeconds" : 0, + "readonly" : true, + "name" : "build-1030", + "packageType" : "npm", + "disable_timeout" : 0, + "path_style" : "plain", + "authoritative_index" : true, + "create_time" : "2021-06-02 01:27:31 +0000", + "allow_snapshots" : false, + "allow_releases" : true + }, { + "type" : "hosted", + "key" : "npm:hosted:build-ANSIHDLHGUIAA", + "description" : "Build output for PNC npm build #build-ANSIHDLHGUIAA", + "metadata" : { + "changelog" : "Setting readonly after successful build and promotion." + }, + "disabled" : false, + "snapshotTimeoutSeconds" : 0, + "readonly" : true, + "name" : "build-ANSIHDLHGUIAA", + "packageType" : "npm", + "disable_timeout" : 0, + "path_style" : "plain", + "authoritative_index" : true, + "create_time" : "2021-11-05 15:53:31 +0000", + "allow_snapshots" : false, + "allow_releases" : true + }, { + "type" : "hosted", + "key" : "npm:hosted:build-1770", + "description" : "Build output for PNC npm build #1770", + "metadata" : { + "changelog" : "Setting readonly after successful build and promotion." + }, + "disabled" : false, + "snapshotTimeoutSeconds" : 0, + "readonly" : true, + "name" : "build-1770", + "packageType" : "npm", + "disable_timeout" : 0, + "path_style" : "plain", + "authoritative_index" : true, + "create_time" : "2021-06-02 01:27:31 +0000", + "allow_snapshots" : false, + "allow_releases" : true + }, { + "type" : "hosted", + "key" : "npm:hosted:build-ANSJWTPYOUIAA", + "description" : "Build output for PNC npm build #build-ANSJWTPYOUIAA", + "metadata" : { + "changelog" : "Setting readonly after successful build and promotion." + }, + "disabled" : false, + "snapshotTimeoutSeconds" : 0, + "readonly" : true, + "name" : "build-ANSJWTPYOUIAA", + "packageType" : "npm", + "disable_timeout" : 0, + "path_style" : "plain", + "authoritative_index" : true, + "create_time" : "2021-11-05 16:01:10 +0000", + "allow_snapshots" : false, + "allow_releases" : true + }, { + "type" : "hosted", + "key" : "npm:hosted:build-1400", + "description" : "Build output for PNC npm build #1400", + "metadata" : { + "changelog" : "Creating hosted repository for npm build: 1400 (repo: build-1400)" + }, + "disabled" : false, + "snapshotTimeoutSeconds" : 0, + "readonly" : false, + "name" : "build-1400", + "packageType" : "npm", + "disable_timeout" : 0, + "path_style" : "plain", + "authoritative_index" : false, + "create_time" : "2021-06-02 01:27:31 +0000", + "allow_snapshots" : false, + "allow_releases" : true + }, { + "type" : "hosted", + "key" : "npm:hosted:build-1526", + "description" : "Build output for PNC npm build #1526", + "metadata" : { + "changelog" : "Setting readonly after successful build and promotion." + }, + "disabled" : false, + "snapshotTimeoutSeconds" : 0, + "readonly" : true, + "name" : "build-1526", + "packageType" : "npm", + "disable_timeout" : 0, + "path_style" : "plain", + "authoritative_index" : true, + "create_time" : "2021-06-02 01:27:31 +0000", + "allow_snapshots" : false, + "allow_releases" : true + }, { + "type" : "hosted", + "key" : "npm:hosted:build-172077677927211008", + "description" : "Build output for PNC npm build #172077677927211008", + "metadata" : { + "changelog" : "Creating hosted repository for npm build: 172077677927211008 (repo: build-172077677927211008)" + }, + "disabled" : false, + "snapshotTimeoutSeconds" : 0, + "readonly" : false, + "name" : "build-172077677927211008", + "packageType" : "npm", + "disable_timeout" : 0, + "path_style" : "plain", + "authoritative_index" : false, + "create_time" : "2021-06-02 01:27:31 +0000", + "allow_snapshots" : false, + "allow_releases" : true + }, { + "type" : "hosted", + "key" : "npm:hosted:build-590", + "description" : "Build output for PNC npm build #590", + "metadata" : { + "changelog" : "Creating hosted repository for npm build: 590 (repo: build-590)" + }, + "disabled" : false, + "snapshotTimeoutSeconds" : 0, + "readonly" : false, + "name" : "build-590", + "packageType" : "npm", + "disable_timeout" : 0, + "path_style" : "plain", + "authoritative_index" : false, + "create_time" : "2021-06-02 01:27:31 +0000", + "allow_snapshots" : false, + "allow_releases" : true + }, { + "type" : "hosted", + "key" : "npm:hosted:build-1728", + "description" : "Build output for PNC npm build #1728", + "metadata" : { + "changelog" : "Setting readonly after successful build and promotion." + }, + "disabled" : false, + "snapshotTimeoutSeconds" : 0, + "readonly" : true, + "name" : "build-1728", + "packageType" : "npm", + "disable_timeout" : 0, + "path_style" : "plain", + "authoritative_index" : true, + "create_time" : "2021-06-02 01:27:31 +0000", + "allow_snapshots" : false, + "allow_releases" : true + }, { + "type" : "hosted", + "key" : "npm:hosted:build-ALNRSR4LQ7QAA", + "description" : "Build output for PNC npm build #ALNRSR4LQ7QAA", + "metadata" : { + "changelog" : "Creating hosted repository for npm build: ALNRSR4LQ7QAA (repo: build-ALNRSR4LQ7QAA)" + }, + "disabled" : false, + "snapshotTimeoutSeconds" : 0, + "readonly" : false, + "name" : "build-ALNRSR4LQ7QAA", + "packageType" : "npm", + "disable_timeout" : 0, + "path_style" : "plain", + "authoritative_index" : false, + "create_time" : "2021-07-21 20:40:14 +0000", + "allow_snapshots" : false, + "allow_releases" : true + }, { + "type" : "hosted", + "key" : "npm:hosted:build-ANSDJOOKAJYAA", + "description" : "Build output for PNC npm build #build-ANSDJOOKAJYAA", + "metadata" : { + "changelog" : "Creating hosted repository for npm build: build-ANSDJOOKAJYAA (repo: build-ANSDJOOKAJYAA)" + }, + "disabled" : false, + "snapshotTimeoutSeconds" : 0, + "readonly" : false, + "name" : "build-ANSDJOOKAJYAA", + "packageType" : "npm", + "disable_timeout" : 0, + "path_style" : "plain", + "authoritative_index" : false, + "create_time" : "2021-11-05 08:32:05 +0000", + "allow_snapshots" : false, + "allow_releases" : true + }, { + "type" : "hosted", + "key" : "npm:hosted:build-1745", + "description" : "Build output for PNC npm build #1745", + "metadata" : { + "changelog" : "Setting readonly after successful build and promotion." + }, + "disabled" : false, + "snapshotTimeoutSeconds" : 0, + "readonly" : true, + "name" : "build-1745", + "packageType" : "npm", + "disable_timeout" : 0, + "path_style" : "plain", + "authoritative_index" : true, + "create_time" : "2021-06-02 01:27:31 +0000", + "allow_snapshots" : false, + "allow_releases" : true + }, { + "type" : "hosted", + "key" : "npm:hosted:build-ALNRWOK2I7QAA", + "description" : "Build output for PNC npm build #ALNRWOK2I7QAA", + "metadata" : { + "changelog" : "Creating hosted repository for npm build: ALNRWOK2I7QAA (repo: build-ALNRWOK2I7QAA)" + }, + "disabled" : false, + "snapshotTimeoutSeconds" : 0, + "readonly" : false, + "name" : "build-ALNRWOK2I7QAA", + "packageType" : "npm", + "disable_timeout" : 0, + "path_style" : "plain", + "authoritative_index" : false, + "create_time" : "2021-07-21 20:48:45 +0000", + "allow_snapshots" : false, + "allow_releases" : true + }, { + "type" : "hosted", + "key" : "npm:hosted:build-1832", + "description" : "Build output for PNC npm build #1832", + "metadata" : { + "changelog" : "Creating hosted repository for npm build: 1832 (repo: build-1832)" + }, + "disabled" : false, + "snapshotTimeoutSeconds" : 0, + "readonly" : false, + "name" : "build-1832", + "packageType" : "npm", + "disable_timeout" : 0, + "path_style" : "plain", + "authoritative_index" : false, + "create_time" : "2021-06-02 01:27:31 +0000", + "allow_snapshots" : false, + "allow_releases" : true + }, { + "type" : "hosted", + "key" : "npm:hosted:build-1774", + "description" : "Build output for PNC npm build #1774", + "metadata" : { + "changelog" : "Setting readonly after successful build and promotion." + }, + "disabled" : false, + "snapshotTimeoutSeconds" : 0, + "readonly" : true, + "name" : "build-1774", + "packageType" : "npm", + "disable_timeout" : 0, + "path_style" : "plain", + "authoritative_index" : true, + "create_time" : "2021-06-02 01:27:31 +0000", + "allow_snapshots" : false, + "allow_releases" : true + }, { + "type" : "hosted", + "key" : "npm:hosted:build-1036", + "description" : "Build output for PNC npm build #1036", + "metadata" : { + "changelog" : "Setting readonly after successful build and promotion." + }, + "disabled" : false, + "snapshotTimeoutSeconds" : 0, + "readonly" : true, + "name" : "build-1036", + "packageType" : "npm", + "disable_timeout" : 0, + "path_style" : "plain", + "authoritative_index" : true, + "create_time" : "2021-06-02 01:27:31 +0000", + "allow_snapshots" : false, + "allow_releases" : true + }, { + "type" : "hosted", + "key" : "npm:hosted:build-1402", + "description" : "Build output for PNC npm build #1402", + "metadata" : { + "changelog" : "Creating hosted repository for npm build: 1402 (repo: build-1402)" + }, + "disabled" : false, + "snapshotTimeoutSeconds" : 0, + "readonly" : false, + "name" : "build-1402", + "packageType" : "npm", + "disable_timeout" : 0, + "path_style" : "plain", + "authoritative_index" : false, + "create_time" : "2021-06-02 01:27:31 +0000", + "allow_snapshots" : false, + "allow_releases" : true + }, { + "type" : "hosted", + "key" : "npm:hosted:build-1957", + "description" : "Build output for PNC npm build #1957", + "metadata" : { + "changelog" : "Setting readonly after successful build and promotion." + }, + "disabled" : false, + "snapshotTimeoutSeconds" : 0, + "readonly" : true, + "name" : "build-1957", + "packageType" : "npm", + "disable_timeout" : 0, + "path_style" : "plain", + "authoritative_index" : true, + "create_time" : "2021-06-02 01:27:31 +0000", + "allow_snapshots" : false, + "allow_releases" : true + }, { + "type" : "hosted", + "key" : "npm:hosted:build-1747", + "description" : "Build output for PNC npm build #1747", + "metadata" : { + "changelog" : "Setting readonly after successful build and promotion." + }, + "disabled" : false, + "snapshotTimeoutSeconds" : 0, + "readonly" : true, + "name" : "build-1747", + "packageType" : "npm", + "disable_timeout" : 0, + "path_style" : "plain", + "authoritative_index" : true, + "create_time" : "2021-06-02 01:27:31 +0000", + "allow_snapshots" : false, + "allow_releases" : true + }, { + "type" : "hosted", + "key" : "npm:hosted:build-ATI7OKHBYHIAA", + "description" : "Build output for PNC npm build #build-ATI7OKHBYHIAA", + "metadata" : { + "changelog" : "Creating hosted repository for npm build: build-ATI7OKHBYHIAA (repo: build-ATI7OKHBYHIAA)" + }, + "disabled" : false, + "snapshotTimeoutSeconds" : 0, + "readonly" : false, + "name" : "build-ATI7OKHBYHIAA", + "packageType" : "npm", + "disable_timeout" : 0, + "path_style" : "plain", + "authoritative_index" : false, + "create_time" : "2022-08-16 10:47:05 +0000", + "allow_snapshots" : false, + "allow_releases" : true + }, { + "type" : "hosted", + "key" : "npm:hosted:build-831", + "description" : "Build output for PNC npm build #831", + "metadata" : { + "changelog" : "Setting readonly after successful build and promotion." + }, + "disabled" : false, + "snapshotTimeoutSeconds" : 0, + "readonly" : true, + "name" : "build-831", + "packageType" : "npm", + "disable_timeout" : 0, + "path_style" : "plain", + "authoritative_index" : true, + "create_time" : "2021-06-02 01:27:31 +0000", + "allow_snapshots" : false, + "allow_releases" : true + }, { + "type" : "hosted", + "key" : "npm:hosted:build-1716", + "description" : "Build output for PNC npm build #1716", + "metadata" : { + "changelog" : "Setting readonly after successful build and promotion." + }, + "disabled" : false, + "snapshotTimeoutSeconds" : 0, + "readonly" : true, + "name" : "build-1716", + "packageType" : "npm", + "disable_timeout" : 0, + "path_style" : "plain", + "authoritative_index" : true, + "create_time" : "2021-06-02 01:27:31 +0000", + "allow_snapshots" : false, + "allow_releases" : true + }, { + "type" : "hosted", + "key" : "npm:hosted:build-1086", + "description" : "Build output for PNC npm build #1086", + "metadata" : { + "changelog" : "Setting readonly after successful build and promotion." + }, + "disabled" : false, + "snapshotTimeoutSeconds" : 0, + "readonly" : true, + "name" : "build-1086", + "packageType" : "npm", + "disable_timeout" : 0, + "path_style" : "plain", + "authoritative_index" : true, + "create_time" : "2021-06-02 01:27:31 +0000", + "allow_snapshots" : false, + "allow_releases" : true + }, { + "type" : "hosted", + "key" : "npm:hosted:build-ATM6P7AOSJIAA", + "description" : "Build output for PNC npm build #build-ATM6P7AOSJIAA", + "metadata" : { + "changelog" : "Setting readonly after successful build and promotion." + }, + "disabled" : false, + "snapshotTimeoutSeconds" : 0, + "readonly" : true, + "name" : "build-ATM6P7AOSJIAA", + "packageType" : "npm", + "disable_timeout" : 0, + "path_style" : "plain", + "authoritative_index" : true, + "create_time" : "2022-08-22 14:49:04 +0000", + "allow_snapshots" : false, + "allow_releases" : true + }, { + "type" : "hosted", + "key" : "npm:hosted:build-1916", + "description" : "Build output for PNC npm build #1916", + "metadata" : { + "changelog" : "Setting readonly after successful build and promotion." + }, + "disabled" : false, + "snapshotTimeoutSeconds" : 0, + "readonly" : true, + "name" : "build-1916", + "packageType" : "npm", + "disable_timeout" : 0, + "path_style" : "plain", + "authoritative_index" : true, + "create_time" : "2021-06-02 01:27:31 +0000", + "allow_snapshots" : false, + "allow_releases" : true + }, { + "type" : "hosted", + "key" : "npm:hosted:build-ATJMWZV2SJIAA", + "description" : "Build output for PNC npm build #build-ATJMWZV2SJIAA", + "metadata" : { + "changelog" : "Creating hosted repository for npm build: build-ATJMWZV2SJIAA (repo: build-ATJMWZV2SJIAA)" + }, + "disabled" : false, + "snapshotTimeoutSeconds" : 0, + "readonly" : false, + "name" : "build-ATJMWZV2SJIAA", + "packageType" : "npm", + "disable_timeout" : 0, + "path_style" : "plain", + "authoritative_index" : false, + "create_time" : "2022-08-17 02:16:16 +0000", + "allow_snapshots" : false, + "allow_releases" : true + }, { + "type" : "hosted", + "key" : "npm:hosted:build-ATJL6BNJKJIAA", + "description" : "Build output for PNC npm build #build-ATJL6BNJKJIAA", + "metadata" : { + "changelog" : "Creating hosted repository for npm build: build-ATJL6BNJKJIAA (repo: build-ATJL6BNJKJIAA)" + }, + "disabled" : false, + "snapshotTimeoutSeconds" : 0, + "readonly" : false, + "name" : "build-ATJL6BNJKJIAA", + "packageType" : "npm", + "disable_timeout" : 0, + "path_style" : "plain", + "authoritative_index" : false, + "create_time" : "2022-08-17 01:23:03 +0000", + "allow_snapshots" : false, + "allow_releases" : true + }, { + "type" : "hosted", + "key" : "npm:hosted:build-ALNRLW24Y7QAA", + "description" : "Build output for PNC npm build #ALNRLW24Y7QAA", + "metadata" : { + "changelog" : "Creating hosted repository for npm build: ALNRLW24Y7QAA (repo: build-ALNRLW24Y7QAA)" + }, + "disabled" : false, + "snapshotTimeoutSeconds" : 0, + "readonly" : false, + "name" : "build-ALNRLW24Y7QAA", + "packageType" : "npm", + "disable_timeout" : 0, + "path_style" : "plain", + "authoritative_index" : false, + "create_time" : "2021-07-21 20:25:20 +0000", + "allow_snapshots" : false, + "allow_releases" : true + }, { + "type" : "hosted", + "key" : "npm:hosted:build-175716749567217664", + "description" : "Build output for PNC npm build #175716749567217664", + "metadata" : { + "changelog" : "Creating hosted repository for npm build: 175716749567217664 (repo: build-175716749567217664)" + }, + "disabled" : false, + "snapshotTimeoutSeconds" : 0, + "readonly" : false, + "name" : "build-175716749567217664", + "packageType" : "npm", + "disable_timeout" : 0, + "path_style" : "plain", + "authoritative_index" : false, + "create_time" : "2021-06-02 01:27:31 +0000", + "allow_snapshots" : false, + "allow_releases" : true + }, { + "type" : "hosted", + "key" : "npm:hosted:build-ATJCSYAPAHIAA", + "description" : "Build output for PNC npm build #build-ATJCSYAPAHIAA", + "metadata" : { + "changelog" : "Creating hosted repository for npm build: build-ATJCSYAPAHIAA (repo: build-ATJCSYAPAHIAA)" + }, + "disabled" : false, + "snapshotTimeoutSeconds" : 0, + "readonly" : false, + "name" : "build-ATJCSYAPAHIAA", + "packageType" : "npm", + "disable_timeout" : 0, + "path_style" : "plain", + "authoritative_index" : false, + "create_time" : "2022-08-16 14:26:28 +0000", + "allow_snapshots" : false, + "allow_releases" : true + }, { + "type" : "hosted", + "key" : "npm:hosted:build-ANSDI2U7QJYAA", + "description" : "Build output for PNC npm build #build-ANSDI2U7QJYAA", + "metadata" : { + "changelog" : "Creating hosted repository for npm build: build-ANSDI2U7QJYAA (repo: build-ANSDI2U7QJYAA)" + }, + "disabled" : false, + "snapshotTimeoutSeconds" : 0, + "readonly" : false, + "name" : "build-ANSDI2U7QJYAA", + "packageType" : "npm", + "disable_timeout" : 0, + "path_style" : "plain", + "authoritative_index" : false, + "create_time" : "2021-11-05 08:30:45 +0000", + "allow_snapshots" : false, + "allow_releases" : true + }, { + "type" : "hosted", + "key" : "npm:hosted:build-1914", + "description" : "Build output for PNC npm build #1914", + "metadata" : { + "changelog" : "Setting readonly after successful build and promotion." + }, + "disabled" : false, + "snapshotTimeoutSeconds" : 0, + "readonly" : true, + "name" : "build-1914", + "packageType" : "npm", + "disable_timeout" : 0, + "path_style" : "plain", + "authoritative_index" : true, + "create_time" : "2021-06-02 01:27:31 +0000", + "allow_snapshots" : false, + "allow_releases" : true + }, { + "type" : "hosted", + "key" : "npm:hosted:build-ATJVVTBOKJIAA", + "description" : "Build output for PNC npm build #build-ATJVVTBOKJIAA", + "metadata" : { + "changelog" : "Setting readonly after successful build and promotion." + }, + "disabled" : false, + "snapshotTimeoutSeconds" : 0, + "readonly" : true, + "name" : "build-ATJVVTBOKJIAA", + "packageType" : "npm", + "disable_timeout" : 0, + "path_style" : "plain", + "authoritative_index" : true, + "create_time" : "2022-08-17 12:42:51 +0000", + "allow_snapshots" : false, + "allow_releases" : true + }, { + "type" : "hosted", + "key" : "npm:hosted:build-ATMVKBEFCJIAA", + "description" : "Build output for PNC npm build #build-ATMVKBEFCJIAA", + "metadata" : { + "changelog" : "Creating hosted repository for npm build: build-ATMVKBEFCJIAA (repo: build-ATMVKBEFCJIAA)" + }, + "disabled" : false, + "snapshotTimeoutSeconds" : 0, + "readonly" : false, + "name" : "build-ATMVKBEFCJIAA", + "packageType" : "npm", + "disable_timeout" : 0, + "path_style" : "plain", + "authoritative_index" : false, + "create_time" : "2022-08-22 04:08:30 +0000", + "allow_snapshots" : false, + "allow_releases" : true + }, { + "type" : "hosted", + "key" : "npm:hosted:build-175699223500181504", + "description" : "Build output for PNC npm build #175699223500181504", + "metadata" : { + "changelog" : "Creating hosted repository for npm build: 175699223500181504 (repo: build-175699223500181504)" + }, + "disabled" : false, + "snapshotTimeoutSeconds" : 0, + "readonly" : false, + "name" : "build-175699223500181504", + "packageType" : "npm", + "disable_timeout" : 0, + "path_style" : "plain", + "authoritative_index" : false, + "create_time" : "2021-06-02 01:27:31 +0000", + "allow_snapshots" : false, + "allow_releases" : true + } ] +} \ No newline at end of file diff --git a/src/main/webui/src/server/mock/list/FakeNPMRemoteList.json b/src/main/webui/src/server/mock/list/FakeNPMRemoteList.json new file mode 100644 index 0000000..dbbd72a --- /dev/null +++ b/src/main/webui/src/server/mock/list/FakeNPMRemoteList.json @@ -0,0 +1,90 @@ +{ + "items" : [ { + "type" : "remote", + "key" : "npm:remote:test-npmjs", + "metadata" : { + "changelog" : "Enabling via UI" + }, + "disabled" : false, + "host" : "registry.npmjs.org", + "port" : 443, + "name" : "test-npmjs", + "packageType" : "npm", + "disable_timeout" : 0, + "path_style" : "plain", + "authoritative_index" : false, + "create_time" : "2021-06-02 01:27:31 +0000", + "allow_snapshots" : false, + "allow_releases" : true, + "url" : "https://registry.npmjs.org/", + "timeout_seconds" : 0, + "max_connections" : 30, + "ignore_hostname_verification" : false, + "nfc_timeout_seconds" : 0, + "is_passthrough" : false, + "cache_timeout_seconds" : 0, + "metadata_timeout_seconds" : 0, + "proxy_port" : 0, + "prefetch_priority" : 0, + "prefetch_rescan" : false, + "prefetch_listing_type" : "html" + }, { + "type" : "remote", + "key" : "npm:remote:yarnpkg", + "metadata" : { + "changelog" : "Initial setup" + }, + "disabled" : false, + "host" : "registry.yarnpkg.com", + "port" : 443, + "name" : "yarnpkg", + "packageType" : "npm", + "disable_timeout" : -1, + "path_style" : "plain", + "authoritative_index" : false, + "create_time" : "2021-03-25 08:14:54 +0000", + "allow_snapshots" : true, + "allow_releases" : true, + "url" : "https://registry.yarnpkg.com/", + "timeout_seconds" : 0, + "max_connections" : 30, + "ignore_hostname_verification" : false, + "nfc_timeout_seconds" : 0, + "is_passthrough" : false, + "cache_timeout_seconds" : 0, + "metadata_timeout_seconds" : 86400, + "proxy_port" : 0, + "prefetch_priority" : 0, + "prefetch_rescan" : false, + "prefetch_listing_type" : "html" + }, { + "type" : "remote", + "key" : "npm:remote:npmjs", + "metadata" : { + "changelog" : "Initial setup" + }, + "disabled" : false, + "host" : "registry.npmjs.org", + "port" : 443, + "name" : "npmjs", + "packageType" : "npm", + "disable_timeout" : -1, + "path_style" : "plain", + "authoritative_index" : false, + "create_time" : "2021-03-25 08:14:53 +0000", + "allow_snapshots" : true, + "allow_releases" : true, + "url" : "https://registry.npmjs.org/", + "timeout_seconds" : 0, + "max_connections" : 30, + "ignore_hostname_verification" : false, + "nfc_timeout_seconds" : 0, + "is_passthrough" : false, + "cache_timeout_seconds" : 0, + "metadata_timeout_seconds" : 43200, + "proxy_port" : 0, + "prefetch_priority" : 0, + "prefetch_rescan" : false, + "prefetch_listing_type" : "html" + } ] +} \ No newline at end of file