Skip to content

Commit

Permalink
fix: added settings api
Browse files Browse the repository at this point in the history
  • Loading branch information
emajo authored Oct 12, 2021
1 parent 51cd14b commit 5873114
Show file tree
Hide file tree
Showing 13 changed files with 396 additions and 3 deletions.
18 changes: 18 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# Changelog

All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.

### 2.0.1 (2021-10-11)


### Bug Fixes

* fixed VerifyEInvoiceXml response model ([ed2f266](https://github.com/fattureincloud/openapi-fattureincloud/commit/ed2f266f295dce7b4e7068bdf01b9dedcd262929))
* fixed VerifyEInvoiceXml response model ([4591389](https://github.com/fattureincloud/openapi-fattureincloud/commit/4591389d1668981c47eeab3484e8e1abcf5406df))
* fixed verifyInvoiceXml ([8f4a032](https://github.com/fattureincloud/openapi-fattureincloud/commit/8f4a0329f6c63dcd7334c8ec9ec86563f387d61a))
* fixed verifyInvoiceXml ([51cd14b](https://github.com/fattureincloud/openapi-fattureincloud/commit/51cd14b90c14cfc1a0b87940c947236740efeeeb))
* fixed verifyInvoiceXml ([2080420](https://github.com/fattureincloud/openapi-fattureincloud/commit/2080420bb078294c0a00ff73f76497cf23a10c6e))
* fixing merge error ([4685f63](https://github.com/fattureincloud/openapi-fattureincloud/commit/4685f63b147048424c96515f4c87ddbe55733b1f))
* fixing merge error ([9796d5a](https://github.com/fattureincloud/openapi-fattureincloud/commit/9796d5a93e5204cc10545583e4418aef34e07d80))
* realign to master ([2db7971](https://github.com/fattureincloud/openapi-fattureincloud/commit/2db79716282b713571103c8657123bace0cb30cf))
* realign to master ([#64](https://github.com/fattureincloud/openapi-fattureincloud/issues/64)) ([c18c9ed](https://github.com/fattureincloud/openapi-fattureincloud/commit/c18c9ed09e592b6485e73f6afd813391cbfe7975))
5 changes: 5 additions & 0 deletions models/requests/CreatePaymentAccountRequest.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
title: CreatePaymentAccountRequest
type: object
properties:
data:
$ref: ../schemas/PaymentAccount.yaml
5 changes: 5 additions & 0 deletions models/requests/CreatePaymentMethodRequest.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
title: CreatePaymentMethodRequest
type: object
properties:
data:
$ref: ../schemas/PaymentMethod.yaml
5 changes: 5 additions & 0 deletions models/requests/ModifyPaymentAccountRequest.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
title: ModifyPaymentAccountRequest
type: object
properties:
data:
$ref: ../schemas/PaymentAccount.yaml
5 changes: 5 additions & 0 deletions models/requests/ModifyPaymentMethodRequest.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
title: ModifyPaymentMethodRequest
type: object
properties:
data:
$ref: ../schemas/PaymentMethod.yaml
5 changes: 5 additions & 0 deletions models/responses/CreatePaymentAccountResponse.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
title: CreatePaymentAccountResponse
type: object
properties:
data:
$ref: ../schemas/PaymentAccount.yaml
5 changes: 5 additions & 0 deletions models/responses/CreatePaymentMethodResponse.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
title: CreatePaymentMethodResponse
type: object
properties:
data:
$ref: ../schemas/PaymentMethod.yaml
5 changes: 5 additions & 0 deletions models/responses/GetPaymentAccountResponse.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
title: GetPaymentAccountResponse
type: object
properties:
data:
$ref: ../schemas/PaymentAccount.yaml
5 changes: 5 additions & 0 deletions models/responses/GetPaymentMethodResponse.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
title: GetPaymentMethodResponse
type: object
properties:
data:
$ref: ../schemas/PaymentMethod.yaml
5 changes: 5 additions & 0 deletions models/responses/ModifyPaymentAccountResponse.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
title: ModifyPaymentAccountResponse
type: object
properties:
data:
$ref: ../schemas/PaymentAccount.yaml
5 changes: 5 additions & 0 deletions models/responses/ModifyPaymentMethodResponse.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
title: ModifyPaymentMethodResponse
type: object
properties:
data:
$ref: ../schemas/PaymentMethod.yaml
15 changes: 15 additions & 0 deletions models/schemas/PaymentMethod.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -33,5 +33,20 @@ properties:
description:
type: string
description: Details description.
bank_iban:
type: string
description: Bank iban
nullable: true
bank_name:
type: string
description: Bank name
nullable: true
bank_beneficiary:
type: string
description: Bank beneficiary
nullable: true
ei_payment_method:
type: integer
description: EInvoice payment method
required:
- name
Loading

0 comments on commit 5873114

Please sign in to comment.