@authrim/setup 0.1.37 → 0.1.38

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -24,7 +24,7 @@ function printBanner() {
24
24
  console.log('');
25
25
  console.log(chalk.blue('╔═══════════════════════════════════════════════════════════╗'));
26
26
  console.log(chalk.blue('║') +
27
- chalk.bold.white(' 🔐 Authrim Setup v0.1.37 ') +
27
+ chalk.bold.white(' 🔐 Authrim Setup v0.1.38 ') +
28
28
  chalk.blue('║'));
29
29
  console.log(chalk.blue('║') +
30
30
  chalk.gray(' OIDC Provider on Cloudflare Workers ') +
package/dist/index.js CHANGED
@@ -17,7 +17,7 @@ const program = new Command();
17
17
  program
18
18
  .name('authrim-setup')
19
19
  .description('CLI tool for setting up Authrim OIDC Provider on Cloudflare Workers')
20
- .version('0.1.37');
20
+ .version('0.1.38');
21
21
  program
22
22
  .command('init', { isDefault: true })
23
23
  .description('Initialize a new Authrim setup')
@@ -1 +1 @@
1
- {"version":3,"file":"ui.d.ts","sourceRoot":"","sources":["../../src/web/ui.ts"],"names":[],"mappings":"AAAA;;;;;GAKG;AAEH,wBAAgB,eAAe,CAAC,YAAY,CAAC,EAAE,MAAM,EAAE,UAAU,CAAC,EAAE,OAAO,GAAG,MAAM,CAgiFnF"}
1
+ {"version":3,"file":"ui.d.ts","sourceRoot":"","sources":["../../src/web/ui.ts"],"names":[],"mappings":"AAAA;;;;;GAKG;AAEH,wBAAgB,eAAe,CAAC,YAAY,CAAC,EAAE,MAAM,EAAE,UAAU,CAAC,EAAE,OAAO,GAAG,MAAM,CA+kFnF"}
package/dist/web/ui.js CHANGED
@@ -567,11 +567,14 @@ export function getHtmlTemplate(sessionToken, manageOnly) {
567
567
  display: flex;
568
568
  justify-content: space-between;
569
569
  align-items: center;
570
+ cursor: pointer;
571
+ transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
570
572
  }
571
573
 
572
574
  .env-card:hover {
573
575
  border-color: var(--primary);
574
576
  background: #f8fafc;
577
+ box-shadow: 0 2px 8px rgba(59, 130, 246, 0.1);
575
578
  }
576
579
 
577
580
  .env-card-info {
@@ -979,6 +982,10 @@ export function getHtmlTemplate(sessionToken, manageOnly) {
979
982
  <!-- 4. Preview Section (at the bottom) -->
980
983
  <div class="infra-section" id="config-preview">
981
984
  <h4>📋 Configuration Preview</h4>
985
+ <div class="infra-item">
986
+ <span class="infra-label">Components:</span>
987
+ <span class="infra-value" id="preview-components">API, Login UI, Admin UI</span>
988
+ </div>
982
989
  <div class="infra-item">
983
990
  <span class="infra-label">Workers:</span>
984
991
  <span class="infra-value" id="preview-workers">{env}-ar-router, {env}-ar-auth, ...</span>
@@ -1589,24 +1596,41 @@ export function getHtmlTemplate(sessionToken, manageOnly) {
1589
1596
  const loginDomain = document.getElementById('login-domain').value.trim();
1590
1597
  const adminDomain = document.getElementById('admin-domain').value.trim();
1591
1598
 
1599
+ // Components - build list based on mode and selections
1600
+ const components = ['API'];
1601
+ if (setupMode === 'quick') {
1602
+ components.push('Login UI', 'Admin UI');
1603
+ } else {
1604
+ if (document.getElementById('comp-login-ui').checked) components.push('Login UI');
1605
+ if (document.getElementById('comp-admin-ui').checked) components.push('Admin UI');
1606
+ if (document.getElementById('comp-saml').checked) components.push('SAML IdP');
1607
+ if (document.getElementById('comp-async').checked) components.push('Device Flow/CIBA');
1608
+ if (document.getElementById('comp-vc').checked) components.push('Verifiable Credentials');
1609
+ }
1610
+ document.getElementById('preview-components').textContent = components.join(', ');
1611
+
1592
1612
  // Workers
1593
1613
  document.getElementById('preview-workers').textContent = env + '-ar-router, ' + env + '-ar-auth, ...';
1594
1614
 
1595
1615
  // Issuer URL
1596
- if (baseDomain) {
1597
- if (nakedDomain) {
1598
- // Naked domain: https://example.com
1616
+ const workersDomain = workersSubdomain
1617
+ ? env + '-ar-router.' + workersSubdomain + '.workers.dev'
1618
+ : env + '-ar-router.workers.dev';
1619
+
1620
+ if (nakedDomain) {
1621
+ // Naked domain: no tenant prefix
1622
+ if (baseDomain) {
1599
1623
  document.getElementById('preview-issuer').textContent = 'https://' + baseDomain;
1600
1624
  } else {
1601
- // Subdomain: https://tenant.example.com
1602
- document.getElementById('preview-issuer').textContent = 'https://' + tenantName + '.' + baseDomain;
1625
+ document.getElementById('preview-issuer').textContent = 'https://' + workersDomain;
1603
1626
  }
1604
1627
  } else {
1605
- // No custom domain - use workers.dev with account subdomain
1606
- const workersDomain = workersSubdomain
1607
- ? env + '-ar-router.' + workersSubdomain + '.workers.dev'
1608
- : env + '-ar-router.workers.dev';
1609
- document.getElementById('preview-issuer').textContent = 'https://' + workersDomain;
1628
+ // With tenant prefix
1629
+ if (baseDomain) {
1630
+ document.getElementById('preview-issuer').textContent = 'https://' + tenantName + '.' + baseDomain;
1631
+ } else {
1632
+ document.getElementById('preview-issuer').textContent = 'https://' + tenantName + '.' + workersDomain;
1633
+ }
1610
1634
  }
1611
1635
 
1612
1636
  // Login UI - check if component is enabled (in custom mode)
@@ -1641,7 +1665,7 @@ export function getHtmlTemplate(sessionToken, manageOnly) {
1641
1665
  }
1642
1666
 
1643
1667
  // Attach event listeners to all inputs
1644
- ['env', 'base-domain', 'naked-domain', 'tenant-name', 'login-domain', 'admin-domain', 'comp-login-ui', 'comp-admin-ui'].forEach(id => {
1668
+ ['env', 'base-domain', 'naked-domain', 'tenant-name', 'login-domain', 'admin-domain', 'comp-login-ui', 'comp-admin-ui', 'comp-saml', 'comp-async', 'comp-vc'].forEach(id => {
1645
1669
  const el = document.getElementById(id);
1646
1670
  if (el) {
1647
1671
  el.addEventListener('input', updatePreview);
@@ -1979,7 +2003,22 @@ export function getHtmlTemplate(sessionToken, manageOnly) {
1979
2003
  const workersDomain = workersSubdomain
1980
2004
  ? config.env + '-ar-router.' + workersSubdomain + '.workers.dev'
1981
2005
  : config.env + '-ar-router.workers.dev';
1982
- const apiUrl = config.apiDomain ? 'https://' + config.apiDomain : 'https://' + workersDomain;
2006
+ // Build API URL with tenant prefix if not naked domain
2007
+ let apiUrl;
2008
+ if (config.apiDomain) {
2009
+ // Custom domain - add tenant prefix if not naked domain
2010
+ if (config.tenant && config.tenant.name && !config.tenant.nakedDomain) {
2011
+ apiUrl = 'https://' + config.tenant.name + '.' + config.apiDomain;
2012
+ } else {
2013
+ apiUrl = 'https://' + config.apiDomain;
2014
+ }
2015
+ } else if (config.tenant && config.tenant.name && !config.tenant.nakedDomain) {
2016
+ // Workers.dev with tenant prefix
2017
+ apiUrl = 'https://' + config.tenant.name + '.' + workersDomain;
2018
+ } else {
2019
+ // Workers.dev without tenant prefix (naked domain or no tenant)
2020
+ apiUrl = 'https://' + workersDomain;
2021
+ }
1983
2022
  const adminSetupResult = await api('/admin/setup', {
1984
2023
  method: 'POST',
1985
2024
  body: {
@@ -2021,7 +2060,23 @@ export function getHtmlTemplate(sessionToken, manageOnly) {
2021
2060
  const workersDomain = workersSubdomain
2022
2061
  ? env + '-ar-router.' + workersSubdomain + '.workers.dev'
2023
2062
  : env + '-ar-router.workers.dev';
2024
- const apiUrl = config.apiDomain ? 'https://' + config.apiDomain : 'https://' + workersDomain;
2063
+
2064
+ // Build API URL with tenant prefix if not naked domain
2065
+ let apiUrl;
2066
+ if (config.apiDomain) {
2067
+ // Custom domain - add tenant prefix if not naked domain
2068
+ if (config.tenant && config.tenant.name && !config.tenant.nakedDomain) {
2069
+ apiUrl = 'https://' + config.tenant.name + '.' + config.apiDomain;
2070
+ } else {
2071
+ apiUrl = 'https://' + config.apiDomain;
2072
+ }
2073
+ } else if (config.tenant && config.tenant.name && !config.tenant.nakedDomain) {
2074
+ // Workers.dev with tenant prefix
2075
+ apiUrl = 'https://' + config.tenant.name + '.' + workersDomain;
2076
+ } else {
2077
+ // Workers.dev without tenant prefix (naked domain or no tenant)
2078
+ apiUrl = 'https://' + workersDomain;
2079
+ }
2025
2080
  const loginUrl = config.loginUiDomain ? 'https://' + config.loginUiDomain : 'https://' + env + '-ar-ui.pages.dev';
2026
2081
  const adminUrl = config.adminUiDomain ? 'https://' + config.adminUiDomain : 'https://' + env + '-ar-ui.pages.dev/admin';
2027
2082
 
@@ -2265,16 +2320,8 @@ export function getHtmlTemplate(sessionToken, manageOnly) {
2265
2320
  info.appendChild(stats);
2266
2321
  card.appendChild(info);
2267
2322
 
2268
- const actions = document.createElement('div');
2269
- actions.className = 'env-card-actions';
2270
-
2271
- const detailBtn = document.createElement('button');
2272
- detailBtn.className = 'btn-info';
2273
- detailBtn.textContent = '📋 Details';
2274
- detailBtn.addEventListener('click', () => showEnvDetail(env));
2275
- actions.appendChild(detailBtn);
2276
-
2277
- card.appendChild(actions);
2323
+ // Make entire card clickable
2324
+ card.addEventListener('click', () => showEnvDetail(env));
2278
2325
  container.appendChild(card);
2279
2326
  }
2280
2327
  }
@@ -1 +1 @@
1
- {"version":3,"file":"ui.js","sourceRoot":"","sources":["../../src/web/ui.ts"],"names":[],"mappings":"AAAA;;;;;GAKG;AAEH,MAAM,UAAU,eAAe,CAAC,YAAqB,EAAE,UAAoB;IACzE,gDAAgD;IAChD,MAAM,SAAS,GAAG,YAAY,CAAC,CAAC,CAAC,YAAY,CAAC,OAAO,CAAC,SAAS,EAAE,EAAE,CAAC,CAAC,CAAC,CAAC,EAAE,CAAC;IAC1E,MAAM,cAAc,GAAG,UAAU,CAAC,CAAC,CAAC,MAAM,CAAC,CAAC,CAAC,OAAO,CAAC;IAErD,OAAO;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6BAkuCoB,SAAS;0BACZ,cAAc;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;QAuzChC,CAAC;AACT,CAAC"}
1
+ {"version":3,"file":"ui.js","sourceRoot":"","sources":["../../src/web/ui.ts"],"names":[],"mappings":"AAAA;;;;;GAKG;AAEH,MAAM,UAAU,eAAe,CAAC,YAAqB,EAAE,UAAoB;IACzE,gDAAgD;IAChD,MAAM,SAAS,GAAG,YAAY,CAAC,CAAC,CAAC,YAAY,CAAC,OAAO,CAAC,SAAS,EAAE,EAAE,CAAC,CAAC,CAAC,CAAC,EAAE,CAAC;IAC1E,MAAM,cAAc,GAAG,UAAU,CAAC,CAAC,CAAC,MAAM,CAAC,CAAC,CAAC,OAAO,CAAC;IAErD,OAAO;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6BAyuCoB,SAAS;0BACZ,cAAc;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;QA+1ChC,CAAC;AACT,CAAC"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@authrim/setup",
3
- "version": "0.1.37",
3
+ "version": "0.1.38",
4
4
  "description": "CLI tool for setting up Authrim OIDC Provider on Cloudflare Workers",
5
5
  "type": "module",
6
6
  "bin": {