Skip to content

Commit fc543a6

Browse files
committed
update wallet-gateway to 0.6.0
1 parent 074fd78 commit fc543a6

File tree

3 files changed

+52
-24
lines changed

3 files changed

+52
-24
lines changed

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.5.0
1+
0.6.0

charts/wallet-gateway/values.schema.json

Lines changed: 46 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -55,26 +55,35 @@
5555
},
5656
"additionalProperties": false
5757
},
58+
"idps": {
59+
"type": "array",
60+
"items": {
61+
"type": "object",
62+
"properties": {
63+
"configUrl": {
64+
"type": "string"
65+
},
66+
"id": {
67+
"type": "string"
68+
},
69+
"issuer": {
70+
"type": "string"
71+
},
72+
"type": {
73+
"type": "string"
74+
}
75+
},
76+
"additionalProperties": false
77+
}
78+
},
5879
"networks": {
5980
"type": "array",
6081
"items": {
6182
"type": "object",
6283
"properties": {
63-
"auth": {
84+
"adminAuth": {
6485
"type": "object",
6586
"properties": {
66-
"admin": {
67-
"type": "object",
68-
"properties": {
69-
"clientId": {
70-
"type": "string"
71-
},
72-
"clientSecret": {
73-
"type": "string"
74-
}
75-
},
76-
"additionalProperties": false
77-
},
7887
"audience": {
7988
"type": "string"
8089
},
@@ -84,34 +93,49 @@
8493
"clientSecret": {
8594
"type": "string"
8695
},
87-
"configUrl": {
96+
"issuer": {
8897
"type": "string"
8998
},
90-
"grantType": {
99+
"method": {
91100
"type": "string"
92101
},
93-
"identityProviderId": {
102+
"scope": {
103+
"type": "string"
104+
}
105+
},
106+
"additionalProperties": false
107+
},
108+
"auth": {
109+
"type": "object",
110+
"properties": {
111+
"audience": {
94112
"type": "string"
95113
},
96-
"issuer": {
114+
"clientId": {
97115
"type": "string"
98116
},
99-
"scope": {
117+
"clientSecret": {
118+
"type": "string"
119+
},
120+
"issuer": {
100121
"type": "string"
101122
},
102-
"tokenUrl": {
123+
"method": {
103124
"type": "string"
104125
},
105-
"type": {
126+
"scope": {
106127
"type": "string"
107128
}
108129
},
109130
"additionalProperties": false
110131
},
111-
"chainId": {
132+
"description": {
112133
"type": "string"
113134
},
114-
"description": {
135+
"id": {
136+
"type": "string"
137+
},
138+
"identityProviderId": {
115139
"type": "string"
116140
},
117141
"ledgerApi": {

charts/wallet-gateway/values.yaml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,5 +10,9 @@ store:
1010
connection:
1111
type: sqlite
1212
database: store.sqlite
13-
# @schema item: object; itemProperties:{"auth":{"type":"object","properties":{"admin":{"type":"object","properties":{"clientId":{"type":"string"},"clientSecret":{"type":"string"}},"additionalProperties":false},"audience":{"type":"string"},"clientId":{"type":"string"},"clientSecret":{"type":"string"},"configUrl":{"type":"string"},"grantType":{"type":"string"},"identityProviderId":{"type":"string"},"issuer":{"type":"string"},"scope":{"type":"string"},"tokenUrl":{"type":"string"},"type":{"type":"string"}},"additionalProperties":false},"chainId":{"type":"string"},"description":{"type":"string"},"ledgerApi":{"type":"object","properties":{"baseUrl":{"type":"string"}},"additionalProperties":false},"name":{"type":"string"},"synchronizerId":{"type":"string"}}
13+
14+
# @schema item: object; itemProperties:{"id":{"type":"string"},"type":{"type":"string"},"issuer":{"type":"string"},"configUrl":{"type":"string"}}
15+
idps: []
16+
17+
# @schema item: object; itemProperties:{"auth":{"type":"object","properties":{"audience":{"type":"string"},"clientId":{"type":"string"},"clientSecret":{"type":"string"},"issuer":{"type":"string"},"scope":{"type":"string"},"method":{"type":"string"}},"additionalProperties":false},"adminAuth":{"type":"object","properties":{"audience":{"type":"string"},"clientId":{"type":"string"},"clientSecret":{"type":"string"},"issuer":{"type":"string"},"scope":{"type":"string"},"method":{"type":"string"}},"additionalProperties":false},"identityProviderId":{"type":"string"},"id":{"type":"string"},"description":{"type":"string"},"ledgerApi":{"type":"object","properties":{"baseUrl":{"type":"string"}},"additionalProperties":false},"name":{"type":"string"},"synchronizerId":{"type":"string"}}
1418
networks: []

0 commit comments

Comments
 (0)