Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
with:
generator: openapi-yaml
openapi-file: api.yaml
generator-tag: v7.20.0
generator-tag: v7.21.0
- name: check if api.yaml are equals
run: |
if diff -q _build/api.yaml openapi-yaml-client/openapi/openapi.yaml >/dev/null; then
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM public.ecr.aws/docker/library/node:20 as builder

Check warning on line 1 in Dockerfile

View workflow job for this annotation

GitHub Actions / OpenAPI (Docker)

The 'as' keyword should match the case of the 'from' keyword

FromAsCasing: 'as' and 'FROM' keywords' casing do not match More info: https://docs.docker.com/go/dockerfile/rule/from-as-casing/

# Install OpenJDK-11
RUN apt-get update && \
Expand All @@ -6,7 +6,7 @@
apt-get clean;

RUN npm install @openapitools/openapi-generator-cli -g
RUN openapi-generator-cli version-manager set 7.20.0
RUN openapi-generator-cli version-manager set 7.21.0
WORKDIR /app

COPY parameters/ parameters/
Expand Down
2 changes: 2 additions & 0 deletions _build/api.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16530,6 +16530,8 @@ components:
\ method to know the product type"
enum:
- aplazo_bnpl
- azteca_bnpl
- coppel_bnpl
- creditea_bnpl
example: aplazo_bnpl
type: string
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,8 @@ payment_method_bnpl_payment:
description: "Product type of the charge"
examples:
- value: "aplazo_bnpl"
- value: "azteca_bnpl"
- value: "coppel_bnpl"
- value: "creditea_bnpl"
redirect_url:
type: string
Expand Down
2 changes: 2 additions & 0 deletions schemas/customers/payment_method_bnpl_request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,8 @@ allOf:
description: "Product type of the payment method, use for the payment method to know the product type"
enum:
- aplazo_bnpl
- azteca_bnpl
- coppel_bnpl
- creditea_bnpl
success_url:
type: string
Expand Down
Loading