|
1 | 1 | openapi: 3.0.1 |
2 | 2 | info: |
3 | 3 | title: Aries Cloud Agent |
4 | | - version: v0.8.1 |
| 4 | + version: v0.8.2 |
5 | 5 | servers: |
6 | 6 | - url: / |
7 | 7 | security: |
@@ -105,6 +105,8 @@ tags: |
105 | 105 | externalDocs: |
106 | 106 | description: Specification |
107 | 107 | url: https://github.com/hyperledger/indy-node/blob/master/design/anoncreds.md#schema |
| 108 | +- name: settings |
| 109 | + description: Agent settings interface. |
108 | 110 | - name: trustping |
109 | 111 | description: Trust-ping over connection |
110 | 112 | externalDocs: |
@@ -273,14 +275,14 @@ paths: |
273 | 275 | schema: |
274 | 276 | type: string |
275 | 277 | enum: |
| 278 | + - invitation |
| 279 | + - start |
| 280 | + - abandoned |
276 | 281 | - init |
277 | 282 | - request |
278 | 283 | - response |
279 | 284 | - error |
280 | 285 | - active |
281 | | - - abandoned |
282 | | - - start |
283 | | - - invitation |
284 | 286 | - completed |
285 | 287 | - name: their_did |
286 | 288 | in: query |
@@ -3936,6 +3938,36 @@ paths: |
3936 | 3938 | schema: |
3937 | 3939 | $ref: '#/components/schemas/SchemaGetResult' |
3938 | 3940 | operationId: write_record |
| 3941 | + /settings: |
| 3942 | + get: |
| 3943 | + tags: |
| 3944 | + - settings |
| 3945 | + summary: Get the configurable settings associated with the profile. |
| 3946 | + responses: |
| 3947 | + 200: |
| 3948 | + description: '' |
| 3949 | + content: |
| 3950 | + application/json: |
| 3951 | + schema: |
| 3952 | + $ref: '#/components/schemas/ProfileSettings' |
| 3953 | + put: |
| 3954 | + tags: |
| 3955 | + - settings |
| 3956 | + summary: Update configurable settings associated with the profile. |
| 3957 | + requestBody: |
| 3958 | + content: |
| 3959 | + application/json: |
| 3960 | + schema: |
| 3961 | + $ref: '#/components/schemas/UpdateProfileSettings' |
| 3962 | + required: false |
| 3963 | + responses: |
| 3964 | + 200: |
| 3965 | + description: '' |
| 3966 | + content: |
| 3967 | + application/json: |
| 3968 | + schema: |
| 3969 | + $ref: '#/components/schemas/ProfileSettings' |
| 3970 | + x-codegen-request-body-name: body |
3939 | 3971 | /shutdown: |
3940 | 3972 | get: |
3941 | 3973 | tags: |
@@ -5031,6 +5063,10 @@ components: |
5031 | 5063 | CreateWalletRequest: |
5032 | 5064 | type: object |
5033 | 5065 | properties: |
| 5066 | + extra_settings: |
| 5067 | + type: object |
| 5068 | + properties: {} |
| 5069 | + description: Agent config key-value pairs |
5034 | 5070 | image_url: |
5035 | 5071 | type: string |
5036 | 5072 | description: Image url for this wallet. This image url is publicized (self-attested) |
@@ -7771,6 +7807,17 @@ components: |
7771 | 7807 | type: array |
7772 | 7808 | items: |
7773 | 7809 | $ref: '#/components/schemas/AttachDecorator' |
| 7810 | + ProfileSettings: |
| 7811 | + type: object |
| 7812 | + properties: |
| 7813 | + settings: |
| 7814 | + type: object |
| 7815 | + properties: {} |
| 7816 | + description: Profile settings dict |
| 7817 | + example: |
| 7818 | + debug.invite_public: true |
| 7819 | + log.level: INFO |
| 7820 | + public_invites: false |
7774 | 7821 | ProtocolDescriptor: |
7775 | 7822 | required: |
7776 | 7823 | - pid |
@@ -8536,9 +8583,24 @@ components: |
8536 | 8583 | description: Schema transaction to endorse |
8537 | 8584 | allOf: |
8538 | 8585 | - $ref: '#/components/schemas/TransactionRecord' |
| 8586 | + UpdateProfileSettings: |
| 8587 | + type: object |
| 8588 | + properties: |
| 8589 | + extra_settings: |
| 8590 | + type: object |
| 8591 | + properties: {} |
| 8592 | + description: Agent config key-value pairs |
| 8593 | + example: |
| 8594 | + ACAPY_INVITE_PUBLIC: true |
| 8595 | + log-level: INFO |
| 8596 | + public-invites: false |
8539 | 8597 | UpdateWalletRequest: |
8540 | 8598 | type: object |
8541 | 8599 | properties: |
| 8600 | + extra_settings: |
| 8601 | + type: object |
| 8602 | + properties: {} |
| 8603 | + description: Agent config key-value pairs |
8542 | 8604 | image_url: |
8543 | 8605 | type: string |
8544 | 8606 | description: Image url for this wallet. This image url is publicized (self-attested) |
|
0 commit comments