Skip to content

Commit 81a005a

Browse files
committed
VDX-308: || or ?? as option separator
1 parent 52e40fc commit 81a005a

22 files changed

Lines changed: 48 additions & 49 deletions

File tree

packages/agent/conf/demos/dbc/oid4vci_metadata/dbc.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
{
2-
"correlationId": "${AGENT_ENDPOINT_DBC | AGENT_ENDPOINT | 'http://localhost:5000'}",
2+
"correlationId": "${AGENT_ENDPOINT_DBC ?? AGENT_ENDPOINT ?? 'http://localhost:5000'}",
33
"overwriteExisting": true,
44
"metadata": {
5-
"credential_issuer": "${AGENT_ENDPOINT_DBC | AGENT_ENDPOINT | 'http://localhost:5000'}",
6-
"credential_endpoint": "${AGENT_ENDPOINT_DBC | AGENT_ENDPOINT | 'http://localhost:5000'}/credentials",
5+
"credential_issuer": "${AGENT_ENDPOINT_DBC ?? AGENT_ENDPOINT ?? 'http://localhost:5000'}",
6+
"credential_endpoint": "${AGENT_ENDPOINT_DBC ?? AGENT_ENDPOINT ?? 'http://localhost:5000'}/credentials",
77
"display": [
88
{
99
"name": "Dutch Blockchain Coalition",

packages/agent/conf/demos/dbc/oid4vci_options/dbc.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"definitionId": "dbc2023",
3-
"correlationId": "${AGENT_ENDPOINT_DBC | AGENT_ENDPOINT | 'http://localhost:5000'}",
3+
"correlationId": "${AGENT_ENDPOINT_DBC ?? AGENT_ENDPOINT ?? 'http://localhost:5000'}",
44
"issuerOpts": {
55
"didOpts": {
66
"checkLinkedDomains": "if_present"

packages/agent/conf/demos/energy-shr/oid4vci_metadata/energyshr.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
{
2-
"correlationId": "${AGENT_ENDPOINT_ESHR | AGENT_ENDPOINT | 'http://localhost:5000'}",
2+
"correlationId": "${AGENT_ENDPOINT_ESHR ?? AGENT_ENDPOINT ?? 'http://localhost:5000'}",
33
"overwriteExisting": true,
44
"metadata": {
5-
"credential_issuer": "${AGENT_ENDPOINT_ESHR | AGENT_ENDPOINT | 'http://localhost:5000'}",
6-
"credential_endpoint": "${AGENT_ENDPOINT_ESHR | AGENT_ENDPOINT | 'http://localhost:5000'}/credentials",
5+
"credential_issuer": "${AGENT_ENDPOINT_ESHR ?? AGENT_ENDPOINT ?? 'http://localhost:5000'}",
6+
"credential_endpoint": "${AGENT_ENDPOINT_ESHR ?? AGENT_ENDPOINT ?? 'http://localhost:5000'}/credentials",
77
"display": [
88
{
99
"name": "EnergySHR",

packages/agent/conf/demos/energy-shr/oid4vci_options/energyshr.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"definitionId": "energySHR",
3-
"correlationId": "${AGENT_ENDPOINT_ESHR | AGENT_ENDPOINT | 'http://localhost:5000'}",
3+
"correlationId": "${AGENT_ENDPOINT_ESHR ?? AGENT_ENDPOINT ?? 'http://localhost:5000'}",
44
"issuerOpts": {
55
"didOpts": {
66
"checkLinkedDomains": "if_present"

packages/agent/conf/demos/fmdm/oid4vci_metadata/fmdm.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
{
2-
"correlationId": "${AGENT_ENDPOINT_FMDM | AGENT_ENDPOINT | 'http://localhost:5000'}",
2+
"correlationId": "${AGENT_ENDPOINT_FMDM ?? AGENT_ENDPOINT ?? 'http://localhost:5000'}",
33
"overwriteExisting": true,
44
"metadata": {
5-
"credential_issuer": "${AGENT_ENDPOINT_FMDM | AGENT_ENDPOINT | 'http://localhost:5000'}",
6-
"credential_endpoint": "${AGENT_ENDPOINT_FMDM | AGENT_ENDPOINT | 'http://localhost:5000'}/credentials",
5+
"credential_issuer": "${AGENT_ENDPOINT_FMDM ?? AGENT_ENDPOINT ?? 'http://localhost:5000'}",
6+
"credential_endpoint": "${AGENT_ENDPOINT_FMDM ?? AGENT_ENDPOINT ?? 'http://localhost:5000'}/credentials",
77
"display": [
88
{
99
"name": "Future Mobility Alliance",

packages/agent/conf/demos/fmdm/oid4vci_options/fmdm.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"definitionId": "fmdm2023",
3-
"correlationId": "${AGENT_ENDPOINT_FMDM | AGENT_ENDPOINT | 'http://localhost:5000'}",
3+
"correlationId": "${AGENT_ENDPOINT_FMDM ?? AGENT_ENDPOINT ?? 'http://localhost:5000'}",
44
"issuerOpts": {
55
"didOpts": {
66
"checkLinkedDomains": "if_present"

packages/agent/conf/demos/knb/auckland/oid4vci_metadata/knb_van_auckland.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
{
2-
"correlationId": "${AGENT_ENDPOINT_NOTARY | AGENT_ENDPOINT | http://localhost:5000'}",
2+
"correlationId": "${AGENT_ENDPOINT_NOTARY ?? AGENT_ENDPOINT ?? http://localhost:5000'}",
33
"overwriteExisting": true,
44
"metadata": {
5-
"credential_issuer": "${AGENT_ENDPOINT_NOTARY | AGENT_ENDPOINT | http://localhost:5000'}",
6-
"credential_endpoint": "${AGENT_ENDPOINT_NOTARY | AGENT_ENDPOINT | http://localhost:5000'}/credentials",
5+
"credential_issuer": "${AGENT_ENDPOINT_NOTARY ?? AGENT_ENDPOINT ?? http://localhost:5000'}",
6+
"credential_endpoint": "${AGENT_ENDPOINT_NOTARY ?? AGENT_ENDPOINT ?? http://localhost:5000'}/credentials",
77
"display": [
88
{
99
"name": "Van Auckland notaries",

packages/agent/conf/demos/knb/auckland/oid4vci_options/knb_van_auckland.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"definitionId": "knb-auckland",
3-
"correlationId": "${AGENT_ENDPOINT_NOTARY | AGENT_ENDPOINT | http://localhost:5000'}",
3+
"correlationId": "${AGENT_ENDPOINT_NOTARY ?? AGENT_ENDPOINT ?? http://localhost:5000'}",
44
"issuerOpts": {
55
"didOpts": {
66
"checkLinkedDomains": "if_present"

packages/agent/conf/demos/knb/bank/oid4vci_metadata/knb_bank.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
{
2-
"correlationId": "${AGENT_ENDPOINT_BANK | AGENT_ENDPOINT | http://localhost:5000'}",
2+
"correlationId": "${AGENT_ENDPOINT_BANK ?? AGENT_ENDPOINT ?? http://localhost:5000'}",
33
"overwriteExisting": true,
44
"metadata": {
5-
"credential_issuer": "${AGENT_ENDPOINT_BANK | AGENT_ENDPOINT | http://localhost:5000'}",
6-
"credential_endpoint": "${AGENT_ENDPOINT_BANK | AGENT_ENDPOINT | http://localhost:5000'}/credentials",
5+
"credential_issuer": "${AGENT_ENDPOINT_BANK ?? AGENT_ENDPOINT ?? http://localhost:5000'}",
6+
"credential_endpoint": "${AGENT_ENDPOINT_BANK ?? AGENT_ENDPOINT ?? http://localhost:5000'}/credentials",
77
"display": [
88
{
99
"name": "Babylon Bank",

packages/agent/conf/demos/knb/bank/oid4vci_options/knb_bank.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"definitionId": "knb-bank",
3-
"correlationId": "${AGENT_ENDPOINT_BANK | AGENT_ENDPOINT | http://localhost:5000'}",
3+
"correlationId": "${AGENT_ENDPOINT_BANK ?? AGENT_ENDPOINT ?? http://localhost:5000'}",
44
"issuerOpts": {
55
"didOpts": {
66
"checkLinkedDomains": "if_present"

0 commit comments

Comments
 (0)