Skip to content

Commit 45f5cd4

Browse files
Bump to version 1.1.2-3-PAGOPA-2700-fd-r-3-assistenza-aggiunta-filtri-api [skip ci]
1 parent a47d4d3 commit 45f5cd4

File tree

6 files changed

+14
-22
lines changed

6 files changed

+14
-22
lines changed

helm/Chart.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ apiVersion: v2
22
name: pagopa-fdr-tech-support-api
33
description: Technical support api
44
type: application
5-
version: "0.54.0"
6-
appVersion: "1.1.2-2-PAGOPA-2700-fd-r-3-assistenza-aggiunta-filtri-api"
5+
version: "0.55.0"
6+
appVersion: "1.1.2-3-PAGOPA-2700-fd-r-3-assistenza-aggiunta-filtri-api"
77
dependencies:
88
- name: microservice-chart
99
version: 7.5.0

helm/values-dev.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ microservice-chart:
22
namespace: "fdr"
33
image:
44
repository: ghcr.io/pagopa/pagopa-fdr-technical-support
5-
tag: '1.1.2-2-PAGOPA-2700-fd-r-3-assistenza-aggiunta-filtri-api'
5+
tag: '1.1.2-3-PAGOPA-2700-fd-r-3-assistenza-aggiunta-filtri-api'
66
readinessProbe:
77
httpGet:
88
path: /q/health/ready

helm/values-prod.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ microservice-chart:
22
namespace: "fdr"
33
image:
44
repository: ghcr.io/pagopa/pagopa-fdr-technical-support
5-
tag: '1.1.2-2-PAGOPA-2700-fd-r-3-assistenza-aggiunta-filtri-api'
5+
tag: '1.1.2-3-PAGOPA-2700-fd-r-3-assistenza-aggiunta-filtri-api'
66
readinessProbe:
77
httpGet:
88
path: /q/health/ready

helm/values-uat.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ microservice-chart:
22
namespace: "fdr"
33
image:
44
repository: ghcr.io/pagopa/pagopa-fdr-technical-support
5-
tag: '1.1.2-2-PAGOPA-2700-fd-r-3-assistenza-aggiunta-filtri-api'
5+
tag: '1.1.2-3-PAGOPA-2700-fd-r-3-assistenza-aggiunta-filtri-api'
66
readinessProbe:
77
httpGet:
88
path: /q/health/ready

openapi/openapi.yaml

Lines changed: 8 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -73,24 +73,20 @@ components:
7373
properties:
7474
title:
7575
type: string
76-
description: "A short, summary of the problem type. Written in english and\
77-
\ readable for engineers (usually not suited for non technical stakeholders\
78-
\ and not localized); example: Service Unavailable"
76+
description: "A short, summary of the problem type. Written in english and readable for engineers (usually not suited for non technical stakeholders and not localized); example: Service Unavailable"
7977
status:
8078
type: integer
8179
format: int32
8280
examples:
8381
- 200
84-
description: The HTTP status code generated by the origin server for this
85-
occurrence of the problem.
82+
description: The HTTP status code generated by the origin server for this occurrence of the problem.
8683
maximum: 600
8784
minimum: 100
8885
details:
8986
type: string
9087
examples:
9188
- There was an error processing the request
92-
description: A human readable explanation specific to this occurrence of
93-
the problem.
89+
description: A human readable explanation specific to this occurrence of the problem.
9490
responses:
9591
ErrorResponse400:
9692
description: Default app exception for status 400
@@ -157,7 +153,7 @@ info:
157153
**FDR-3000** | *UNAUTHORIZED_CLIENT* | An unexpected error has occurred. Please contact support | An error occurred while invoking external services
158154
termsOfService: https://www.pagopa.gov.it/
159155
title: Fdr technical support - Api (DEV)
160-
version: 1.1.2-1-PAGOPA-2700-fd-r-3-assistenza-aggiunta-filtri-api
156+
version: 1.1.2-3-PAGOPA-2700-fd-r-3-assistenza-aggiunta-filtri-api
161157
servers:
162158
- url: http://localhost:8080
163159
description: Localhost base URL
@@ -269,8 +265,7 @@ paths:
269265
$ref: "#/components/responses/ErrorResponse500"
270266
/organizations/{organizationId}/psps/{pspId}/download:
271267
get:
272-
summary: This API allow to retrieve a list of download tentative of FdR for
273-
a specific date
268+
summary: This API allow to retrieve a list of download tentative of FdR for a specific date
274269
description: |
275270
## Description:
276271
Retrieves a list of download tentative of FdR for a given Creditor Institution (CI) and Payment Service Provider (PSP) within the specified date. If no date is specified, data from previous day is returned.
@@ -340,8 +335,7 @@ paths:
340335
$ref: "#/components/responses/ErrorResponse500"
341336
/organizations/{organizationId}/psps/{pspId}/flows/{flowId}/revisions/{revision}:
342337
get:
343-
summary: This API allow to retrieve a revision of a FdR for a specific CI and
344-
PSP
338+
summary: This API allow to retrieve a revision of a FdR for a specific CI and PSP
345339
description: |
346340
## Description:
347341
Retrieves a specific revision of a FdR for a given Creditor Institution (CI), Payment Service Provider (PSP), flow name, and revision number within a specified date range. If no dates are specified, data from the last 7 days is returned.
@@ -411,8 +405,7 @@ paths:
411405
in: query
412406
schema:
413407
$ref: "#/components/schemas/LocalDate"
414-
- description: "The expected FdR format, based of this parameter the flow is\
415-
\ retrieved from FdR-1 (xml) or FdR-3 (json)"
408+
- description: "The expected FdR format, based of this parameter the flow is retrieved from FdR-1 (xml) or FdR-3 (json)"
416409
example: xml
417410
name: fileType
418411
in: query
@@ -434,8 +427,7 @@ paths:
434427
$ref: "#/components/responses/ErrorResponse500"
435428
/organizations/{organizationId}/psps/{pspId}/upload:
436429
get:
437-
summary: This API allow to retrieve a list of upload tentative of FdR for a
438-
specific date
430+
summary: This API allow to retrieve a list of upload tentative of FdR for a specific date
439431
description: |
440432
## Description:
441433
Retrieves a list of upload tentative of FdR for a given Creditor Institution (CI) and Payment Service Provider (PSP) within the specified date. If no date is specified, data from previous day is returned.

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
<groupId>it.gov.pagopa</groupId>
88
<artifactId>fdr-techical-support</artifactId>
9-
<version>1.1.2-2-PAGOPA-2700-fd-r-3-assistenza-aggiunta-filtri-api</version>
9+
<version>1.1.2-3-PAGOPA-2700-fd-r-3-assistenza-aggiunta-filtri-api</version>
1010

1111
<properties>
1212
<compiler-plugin.version>3.12.1</compiler-plugin.version>

0 commit comments

Comments
 (0)