pcp-server-ruby-sdk 0.1.0 → 1.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +30 -0
- data/PCP-server-Ruby-SDK.gemspec +0 -11
- data/README.md +16 -13
- data/Rakefile +2 -4
- data/api-definition.yaml +4737 -0
- data/example-app/commerce_case_api_example.rb +9 -7
- data/example-app/example.rb +4 -4
- data/lib/PCP-server-Ruby-SDK/communicator_configuration.rb +14 -7
- data/lib/PCP-server-Ruby-SDK/endpoints/base_api_client.rb +111 -0
- data/lib/PCP-server-Ruby-SDK/endpoints/checkout_api_client.rb +153 -0
- data/lib/PCP-server-Ruby-SDK/endpoints/commerce_case_api_client.rb +99 -0
- data/lib/PCP-server-Ruby-SDK/endpoints/order_management_checkout_actions_api_client.rb +110 -0
- data/lib/PCP-server-Ruby-SDK/endpoints/payment_execution_api_client.rb +189 -0
- data/lib/PCP-server-Ruby-SDK/endpoints/payment_information_api_client.rb +94 -0
- data/lib/PCP-server-Ruby-SDK/errors/api_error_response_exception.rb +19 -8
- data/lib/PCP-server-Ruby-SDK/errors/api_exception.rb +30 -20
- data/lib/PCP-server-Ruby-SDK/errors/api_response_retrieval_exception.rb +12 -3
- data/lib/PCP-server-Ruby-SDK/models/address.rb +219 -425
- data/lib/PCP-server-Ruby-SDK/models/address_personal.rb +227 -411
- data/lib/PCP-server-Ruby-SDK/models/allowed_payment_actions.rb +23 -33
- data/lib/PCP-server-Ruby-SDK/models/amount_of_money.rb +171 -262
- data/lib/PCP-server-Ruby-SDK/models/api_error.rb +199 -229
- data/lib/PCP-server-Ruby-SDK/models/apple_payment_data_token_header_information.rb +164 -189
- data/lib/PCP-server-Ruby-SDK/models/apple_payment_data_token_information.rb +187 -224
- data/lib/PCP-server-Ruby-SDK/models/apple_payment_token_version.rb +20 -0
- data/lib/PCP-server-Ruby-SDK/models/applepay/apple_pay_payment.rb +62 -0
- data/lib/PCP-server-Ruby-SDK/models/applepay/apple_pay_payment_contact.rb +42 -0
- data/lib/PCP-server-Ruby-SDK/models/applepay/apple_pay_payment_data.rb +21 -0
- data/lib/PCP-server-Ruby-SDK/models/applepay/apple_pay_payment_data_header.rb +22 -0
- data/lib/PCP-server-Ruby-SDK/models/applepay/apple_pay_payment_method.rb +21 -0
- data/lib/PCP-server-Ruby-SDK/models/applepay/apple_pay_payment_method_type.rb +19 -0
- data/lib/PCP-server-Ruby-SDK/models/applepay/apple_pay_payment_token.rb +17 -0
- data/lib/PCP-server-Ruby-SDK/models/authorization_mode.rb +23 -33
- data/lib/PCP-server-Ruby-SDK/models/bank_account_information.rb +173 -234
- data/lib/PCP-server-Ruby-SDK/models/bank_payout_method_specific_input.rb +198 -0
- data/lib/PCP-server-Ruby-SDK/models/cancel_item.rb +162 -225
- data/lib/PCP-server-Ruby-SDK/models/cancel_payment_request.rb +163 -196
- data/lib/PCP-server-Ruby-SDK/models/cancel_payment_response.rb +153 -178
- data/lib/PCP-server-Ruby-SDK/models/cancel_request.rb +188 -213
- data/lib/PCP-server-Ruby-SDK/models/cancel_response.rb +160 -185
- data/lib/PCP-server-Ruby-SDK/models/cancel_type.rb +23 -33
- data/lib/PCP-server-Ruby-SDK/models/cancellation_reason.rb +27 -37
- data/lib/PCP-server-Ruby-SDK/models/capture_output.rb +178 -218
- data/lib/PCP-server-Ruby-SDK/models/capture_payment_request.rb +211 -264
- data/lib/PCP-server-Ruby-SDK/models/capture_payment_response.rb +193 -218
- data/lib/PCP-server-Ruby-SDK/models/card_fraud_results.rb +155 -180
- data/lib/PCP-server-Ruby-SDK/models/card_info.rb +155 -180
- data/lib/PCP-server-Ruby-SDK/models/card_payment_details.rb +181 -282
- data/lib/PCP-server-Ruby-SDK/models/card_payment_method_specific_input.rb +262 -414
- data/lib/PCP-server-Ruby-SDK/models/card_payment_method_specific_output.rb +175 -228
- data/lib/PCP-server-Ruby-SDK/models/card_recurrence_details.rb +155 -180
- data/lib/PCP-server-Ruby-SDK/models/cart_item_input.rb +162 -187
- data/lib/PCP-server-Ruby-SDK/models/cart_item_invoice_data.rb +155 -180
- data/lib/PCP-server-Ruby-SDK/models/cart_item_order_status.rb +175 -228
- data/lib/PCP-server-Ruby-SDK/models/cart_item_patch.rb +162 -187
- data/lib/PCP-server-Ruby-SDK/models/cart_item_result.rb +162 -187
- data/lib/PCP-server-Ruby-SDK/models/cart_item_status.rb +26 -36
- data/lib/PCP-server-Ruby-SDK/models/checkout_references.rb +158 -220
- data/lib/PCP-server-Ruby-SDK/models/checkout_response.rb +257 -301
- data/lib/PCP-server-Ruby-SDK/models/checkouts_response.rb +162 -206
- data/lib/PCP-server-Ruby-SDK/models/commerce_case_response.rb +186 -230
- data/lib/PCP-server-Ruby-SDK/models/company_information.rb +155 -180
- data/lib/PCP-server-Ruby-SDK/models/complete_financing_payment_method_specific_input.rb +167 -220
- data/lib/PCP-server-Ruby-SDK/models/complete_payment_method_specific_input.rb +154 -179
- data/lib/PCP-server-Ruby-SDK/models/complete_payment_request.rb +169 -194
- data/lib/PCP-server-Ruby-SDK/models/complete_payment_response.rb +166 -191
- data/lib/PCP-server-Ruby-SDK/models/contact_details.rb +164 -189
- data/lib/PCP-server-Ruby-SDK/models/create_checkout_request.rb +199 -224
- data/lib/PCP-server-Ruby-SDK/models/create_checkout_response.rb +249 -274
- data/lib/PCP-server-Ruby-SDK/models/create_commerce_case_request.rb +176 -220
- data/lib/PCP-server-Ruby-SDK/models/create_commerce_case_response.rb +186 -230
- data/lib/PCP-server-Ruby-SDK/models/create_payment_response.rb +176 -201
- data/lib/PCP-server-Ruby-SDK/models/customer.rb +209 -291
- data/lib/PCP-server-Ruby-SDK/models/customer_device.rb +158 -221
- data/lib/PCP-server-Ruby-SDK/models/deliver_item.rb +162 -225
- data/lib/PCP-server-Ruby-SDK/models/deliver_request.rb +195 -218
- data/lib/PCP-server-Ruby-SDK/models/deliver_response.rb +160 -184
- data/lib/PCP-server-Ruby-SDK/models/deliver_type.rb +24 -32
- data/lib/PCP-server-Ruby-SDK/models/delivery_information.rb +156 -180
- data/lib/PCP-server-Ruby-SDK/models/error_response.rb +163 -187
- data/lib/PCP-server-Ruby-SDK/models/extended_checkout_status.rb +30 -39
- data/lib/PCP-server-Ruby-SDK/models/financing_payment_method_specific_input.rb +167 -219
- data/lib/PCP-server-Ruby-SDK/models/financing_payment_method_specific_output.rb +162 -211
- data/lib/PCP-server-Ruby-SDK/models/installment_option.rb +238 -337
- data/lib/PCP-server-Ruby-SDK/models/link_information.rb +166 -200
- data/lib/PCP-server-Ruby-SDK/models/mandate_recurrence_type.rb +23 -32
- data/lib/PCP-server-Ruby-SDK/models/merchant_action.rb +163 -187
- data/lib/PCP-server-Ruby-SDK/models/mobile_payment_method_specific_input.rb +209 -276
- data/lib/PCP-server-Ruby-SDK/models/mobile_payment_method_specific_output.rb +184 -236
- data/lib/PCP-server-Ruby-SDK/models/mobile_payment_three_dsecure.rb +185 -0
- data/lib/PCP-server-Ruby-SDK/models/network.rb +24 -0
- data/lib/PCP-server-Ruby-SDK/models/order.rb +182 -211
- data/lib/PCP-server-Ruby-SDK/models/order_item.rb +163 -225
- data/lib/PCP-server-Ruby-SDK/models/order_line_details_input.rb +255 -422
- data/lib/PCP-server-Ruby-SDK/models/order_line_details_patch.rb +273 -445
- data/lib/PCP-server-Ruby-SDK/models/order_line_details_result.rb +273 -445
- data/lib/PCP-server-Ruby-SDK/models/order_request.rb +192 -214
- data/lib/PCP-server-Ruby-SDK/models/order_response.rb +162 -186
- data/lib/PCP-server-Ruby-SDK/models/order_type.rb +23 -32
- data/lib/PCP-server-Ruby-SDK/models/patch_checkout_request.rb +188 -212
- data/lib/PCP-server-Ruby-SDK/models/patch_commerce_case_request.rb +154 -178
- data/lib/PCP-server-Ruby-SDK/models/pause_payment_request.rb +204 -0
- data/lib/PCP-server-Ruby-SDK/models/pause_payment_response.rb +192 -0
- data/lib/PCP-server-Ruby-SDK/models/payee.rb +212 -0
- data/lib/PCP-server-Ruby-SDK/models/payment_channel.rb +23 -32
- data/lib/PCP-server-Ruby-SDK/models/payment_creation_output.rb +155 -179
- data/lib/PCP-server-Ruby-SDK/models/payment_event.rb +197 -238
- data/lib/PCP-server-Ruby-SDK/models/payment_execution.rb +268 -256
- data/lib/PCP-server-Ruby-SDK/models/payment_execution_request.rb +162 -187
- data/lib/PCP-server-Ruby-SDK/models/payment_execution_specific_input.rb +168 -197
- data/lib/PCP-server-Ruby-SDK/models/payment_information_refund_request.rb +212 -0
- data/lib/PCP-server-Ruby-SDK/models/payment_information_refund_response.rb +202 -0
- data/lib/PCP-server-Ruby-SDK/models/payment_information_request.rb +214 -306
- data/lib/PCP-server-Ruby-SDK/models/payment_information_response.rb +286 -407
- data/lib/PCP-server-Ruby-SDK/models/payment_instructions.rb +222 -0
- data/lib/PCP-server-Ruby-SDK/models/payment_method_specific_input.rb +212 -234
- data/lib/PCP-server-Ruby-SDK/models/payment_output.rb +208 -251
- data/lib/PCP-server-Ruby-SDK/models/payment_product302_specific_input.rb +232 -0
- data/lib/PCP-server-Ruby-SDK/models/payment_product3391_specific_input.rb +165 -199
- data/lib/PCP-server-Ruby-SDK/models/payment_product3391_specific_output.rb +156 -180
- data/lib/PCP-server-Ruby-SDK/models/payment_product3392_specific_input.rb +155 -184
- data/lib/PCP-server-Ruby-SDK/models/payment_product771_specific_output.rb +155 -179
- data/lib/PCP-server-Ruby-SDK/models/payment_product840_customer_account.rb +182 -206
- data/lib/PCP-server-Ruby-SDK/models/payment_product840_specific_output.rb +167 -191
- data/lib/PCP-server-Ruby-SDK/models/payment_references.rb +152 -195
- data/lib/PCP-server-Ruby-SDK/models/payment_response.rb +192 -214
- data/lib/PCP-server-Ruby-SDK/models/payment_status_output.rb +194 -216
- data/lib/PCP-server-Ruby-SDK/models/payment_type.rb +29 -38
- data/lib/PCP-server-Ruby-SDK/models/payout_output.rb +175 -195
- data/lib/PCP-server-Ruby-SDK/models/payout_response.rb +178 -219
- data/lib/PCP-server-Ruby-SDK/models/personal_information.rb +190 -254
- data/lib/PCP-server-Ruby-SDK/models/personal_name.rb +173 -197
- data/lib/PCP-server-Ruby-SDK/models/positive_amount_of_money.rb +169 -259
- data/lib/PCP-server-Ruby-SDK/models/processing_mandate_information.rb +214 -351
- data/lib/PCP-server-Ruby-SDK/models/product_type.rb +25 -34
- data/lib/PCP-server-Ruby-SDK/models/redirect_data.rb +155 -179
- data/lib/PCP-server-Ruby-SDK/models/redirect_payment_method_specific_input.rb +203 -293
- data/lib/PCP-server-Ruby-SDK/models/redirect_payment_method_specific_output.rb +180 -270
- data/lib/PCP-server-Ruby-SDK/models/redirect_payment_product840_specific_input.rb +155 -179
- data/lib/PCP-server-Ruby-SDK/models/redirection_data.rb +153 -201
- data/lib/PCP-server-Ruby-SDK/models/references.rb +175 -261
- data/lib/PCP-server-Ruby-SDK/models/refresh_payment_request.rb +192 -0
- data/lib/PCP-server-Ruby-SDK/models/refresh_type.rb +30 -0
- data/lib/PCP-server-Ruby-SDK/models/refund_error_response.rb +163 -187
- data/lib/PCP-server-Ruby-SDK/models/refund_output.rb +177 -220
- data/lib/PCP-server-Ruby-SDK/models/refund_payment_response.rb +192 -214
- data/lib/PCP-server-Ruby-SDK/models/refund_request.rb +167 -191
- data/lib/PCP-server-Ruby-SDK/models/return_information.rb +162 -205
- data/lib/PCP-server-Ruby-SDK/models/return_item.rb +162 -224
- data/lib/PCP-server-Ruby-SDK/models/return_request.rb +179 -226
- data/lib/PCP-server-Ruby-SDK/models/return_response.rb +160 -184
- data/lib/PCP-server-Ruby-SDK/models/return_type.rb +23 -32
- data/lib/PCP-server-Ruby-SDK/models/sepa_direct_debit_payment_method_specific_input.rb +158 -210
- data/lib/PCP-server-Ruby-SDK/models/sepa_direct_debit_payment_method_specific_output.rb +158 -210
- data/lib/PCP-server-Ruby-SDK/models/sepa_direct_debit_payment_product771_specific_input.rb +163 -187
- data/lib/PCP-server-Ruby-SDK/models/sepa_transfer_payment_product_772_specific_input.rb +192 -0
- data/lib/PCP-server-Ruby-SDK/models/shipping.rb +154 -178
- data/lib/PCP-server-Ruby-SDK/models/shopping_cart_input.rb +155 -179
- data/lib/PCP-server-Ruby-SDK/models/shopping_cart_patch.rb +155 -179
- data/lib/PCP-server-Ruby-SDK/models/shopping_cart_result.rb +155 -179
- data/lib/PCP-server-Ruby-SDK/models/status_category_value.rb +29 -38
- data/lib/PCP-server-Ruby-SDK/models/status_checkout.rb +27 -36
- data/lib/PCP-server-Ruby-SDK/models/status_output.rb +230 -404
- data/lib/PCP-server-Ruby-SDK/models/status_value.rb +47 -54
- data/lib/PCP-server-Ruby-SDK/models/three_d_secure_results.rb +184 -237
- data/lib/PCP-server-Ruby-SDK/models/transaction_channel.rb +23 -32
- data/lib/PCP-server-Ruby-SDK/models/unscheduled_card_on_file_requestor.rb +23 -32
- data/lib/PCP-server-Ruby-SDK/models/unscheduled_card_on_file_sequence_indicator.rb +23 -32
- data/lib/PCP-server-Ruby-SDK/queries/get_checkouts_query.rb +64 -56
- data/lib/PCP-server-Ruby-SDK/queries/get_commerce_cases_query.rb +61 -56
- data/lib/PCP-server-Ruby-SDK/request_header_generator.rb +63 -54
- data/lib/PCP-server-Ruby-SDK/transformer/apple_pay_transformer.rb +42 -0
- data/lib/PCP-server-Ruby-SDK/utils/server_meta_info.rb +22 -16
- data/lib/PCP-server-Ruby-SDK/version.rb +1 -12
- data/lib/PCP-server-Ruby-SDK.rb +32 -8
- data/package-lock.json +221 -237
- data/package.json +1 -1
- data/scripts.sh +29 -26
- data/spec/communicator_configuration_spec.rb +3 -3
- data/spec/endpoints/checkout_api_client_spec.rb +308 -0
- data/spec/endpoints/commerce_case_api_client_spec.rb +206 -0
- data/spec/endpoints/order_management_checkout_actions_api_client_spec.rb +215 -0
- data/spec/endpoints/payment_execution_api_client_spec.rb +371 -0
- data/spec/endpoints/payment_information_api_client_spec.rb +167 -0
- data/spec/errors/api_error_response_exception_spec.rb +6 -6
- data/spec/errors/api_exception_spec.rb +6 -6
- data/spec/errors/api_response_retrieval_exception_spec.rb +6 -6
- data/spec/queries/get_checkouts_query_spec.rb +4 -4
- data/spec/queries/get_commerce_cases_query_spec.rb +3 -3
- data/spec/request_header_generator_spec.rb +17 -17
- data/spec/spec_helper.rb +7 -1
- data/spec/transformer/apple_pay_transformer_spec.rb +73 -0
- data/spec/utils/server_meta_info_spec.rb +5 -5
- metadata +38 -2973
- data/Gemfile.lock +0 -91
- data/coverage/.last_run.json +0 -5
- data/coverage/.resultset.json +0 -325
- data/coverage/.resultset.json.lock +0 -0
- data/coverage/assets/0.12.3/DataTables-1.10.20/images/sort_asc.png +0 -0
- data/coverage/assets/0.12.3/DataTables-1.10.20/images/sort_asc_disabled.png +0 -0
- data/coverage/assets/0.12.3/DataTables-1.10.20/images/sort_both.png +0 -0
- data/coverage/assets/0.12.3/DataTables-1.10.20/images/sort_desc.png +0 -0
- data/coverage/assets/0.12.3/DataTables-1.10.20/images/sort_desc_disabled.png +0 -0
- data/coverage/assets/0.12.3/application.css +0 -1
- data/coverage/assets/0.12.3/application.js +0 -7
- data/coverage/assets/0.12.3/colorbox/border.png +0 -0
- data/coverage/assets/0.12.3/colorbox/controls.png +0 -0
- data/coverage/assets/0.12.3/colorbox/loading.gif +0 -0
- data/coverage/assets/0.12.3/colorbox/loading_background.png +0 -0
- data/coverage/assets/0.12.3/favicon_green.png +0 -0
- data/coverage/assets/0.12.3/favicon_red.png +0 -0
- data/coverage/assets/0.12.3/favicon_yellow.png +0 -0
- data/coverage/assets/0.12.3/images/ui-bg_flat_0_aaaaaa_40x100.png +0 -0
- data/coverage/assets/0.12.3/images/ui-bg_flat_75_ffffff_40x100.png +0 -0
- data/coverage/assets/0.12.3/images/ui-bg_glass_55_fbf9ee_1x400.png +0 -0
- data/coverage/assets/0.12.3/images/ui-bg_glass_65_ffffff_1x400.png +0 -0
- data/coverage/assets/0.12.3/images/ui-bg_glass_75_dadada_1x400.png +0 -0
- data/coverage/assets/0.12.3/images/ui-bg_glass_75_e6e6e6_1x400.png +0 -0
- data/coverage/assets/0.12.3/images/ui-bg_glass_95_fef1ec_1x400.png +0 -0
- data/coverage/assets/0.12.3/images/ui-bg_highlight-soft_75_cccccc_1x100.png +0 -0
- data/coverage/assets/0.12.3/images/ui-icons_222222_256x240.png +0 -0
- data/coverage/assets/0.12.3/images/ui-icons_2e83ff_256x240.png +0 -0
- data/coverage/assets/0.12.3/images/ui-icons_454545_256x240.png +0 -0
- data/coverage/assets/0.12.3/images/ui-icons_888888_256x240.png +0 -0
- data/coverage/assets/0.12.3/images/ui-icons_cd0a0a_256x240.png +0 -0
- data/coverage/assets/0.12.3/loading.gif +0 -0
- data/coverage/assets/0.12.3/magnify.png +0 -0
- data/coverage/coverage.json +0 -352
- data/coverage/index.html +0 -3953
- data/docs/APIError.md +0 -28
- data/docs/Address.md +0 -30
- data/docs/AddressPersonal.md +0 -32
- data/docs/AllowedPaymentActions.md +0 -15
- data/docs/AmountOfMoney.md +0 -20
- data/docs/ApplePaymentDataTokenHeaderInformation.md +0 -20
- data/docs/ApplePaymentDataTokenInformation.md +0 -22
- data/docs/AuthorizationMode.md +0 -15
- data/docs/BankAccountInformation.md +0 -20
- data/docs/CancelItem.md +0 -20
- data/docs/CancelPaymentRequest.md +0 -18
- data/docs/CancelPaymentResponse.md +0 -18
- data/docs/CancelRequest.md +0 -22
- data/docs/CancelResponse.md +0 -20
- data/docs/CancelType.md +0 -15
- data/docs/CancellationReason.md +0 -15
- data/docs/CaptureOutput.md +0 -24
- data/docs/CapturePaymentRequest.md +0 -26
- data/docs/CapturePaymentResponse.md +0 -24
- data/docs/CardFraudResults.md +0 -18
- data/docs/CardInfo.md +0 -18
- data/docs/CardPaymentDetails.md +0 -24
- data/docs/CardPaymentMethodSpecificInput.md +0 -40
- data/docs/CardPaymentMethodSpecificOutput.md +0 -24
- data/docs/CardRecurrenceDetails.md +0 -18
- data/docs/CartItemInput.md +0 -20
- data/docs/CartItemInvoiceData.md +0 -18
- data/docs/CartItemOrderStatus.md +0 -20
- data/docs/CartItemPatch.md +0 -20
- data/docs/CartItemResult.md +0 -20
- data/docs/CartItemStatus.md +0 -15
- data/docs/CheckoutApi.md +0 -412
- data/docs/CheckoutReferences.md +0 -20
- data/docs/CheckoutResponse.md +0 -42
- data/docs/CheckoutsResponse.md +0 -20
- data/docs/CommerceCaseApi.md +0 -294
- data/docs/CommerceCaseResponse.md +0 -26
- data/docs/CompanyInformation.md +0 -18
- data/docs/CompleteFinancingPaymentMethodSpecificInput.md +0 -22
- data/docs/CompletePaymentMethodSpecificInput.md +0 -18
- data/docs/CompletePaymentRequest.md +0 -22
- data/docs/CompletePaymentResponse.md +0 -22
- data/docs/ContactDetails.md +0 -20
- data/docs/CreateCheckoutRequest.md +0 -30
- data/docs/CreateCheckoutResponse.md +0 -40
- data/docs/CreateCommerceCaseRequest.md +0 -24
- data/docs/CreateCommerceCaseResponse.md +0 -26
- data/docs/CreatePaymentResponse.md +0 -24
- data/docs/Customer.md +0 -32
- data/docs/CustomerDevice.md +0 -20
- data/docs/DeliverItem.md +0 -20
- data/docs/DeliverRequest.md +0 -24
- data/docs/DeliverResponse.md +0 -20
- data/docs/DeliverType.md +0 -15
- data/docs/DeliveryInformation.md +0 -18
- data/docs/ErrorResponse.md +0 -20
- data/docs/ExtendedCheckoutStatus.md +0 -15
- data/docs/FinancingPaymentMethodSpecificInput.md +0 -22
- data/docs/FinancingPaymentMethodSpecificOutput.md +0 -20
- data/docs/InstallmentOption.md +0 -34
- data/docs/LinkInformation.md +0 -20
- data/docs/MandateRecurrenceType.md +0 -15
- data/docs/MerchantAction.md +0 -20
- data/docs/MobilePaymentMethodSpecificInput.md +0 -28
- data/docs/MobilePaymentMethodSpecificOutput.md +0 -26
- data/docs/Order.md +0 -26
- data/docs/OrderItem.md +0 -20
- data/docs/OrderLineDetailsInput.md +0 -34
- data/docs/OrderLineDetailsPatch.md +0 -38
- data/docs/OrderLineDetailsResult.md +0 -38
- data/docs/OrderManagementCheckoutActionsApi.md +0 -295
- data/docs/OrderRequest.md +0 -24
- data/docs/OrderResponse.md +0 -20
- data/docs/OrderType.md +0 -15
- data/docs/PatchCheckoutRequest.md +0 -28
- data/docs/PatchCommerceCaseRequest.md +0 -18
- data/docs/PaymentChannel.md +0 -15
- data/docs/PaymentCreationOutput.md +0 -18
- data/docs/PaymentEvent.md +0 -26
- data/docs/PaymentExecution.md +0 -36
- data/docs/PaymentExecutionApi.md +0 -370
- data/docs/PaymentExecutionRequest.md +0 -20
- data/docs/PaymentExecutionSpecificInput.md +0 -22
- data/docs/PaymentInformationApi.md +0 -149
- data/docs/PaymentInformationRequest.md +0 -26
- data/docs/PaymentInformationResponse.md +0 -38
- data/docs/PaymentMethodSpecificInput.md +0 -30
- data/docs/PaymentOutput.md +0 -34
- data/docs/PaymentProduct320SpecificInput.md +0 -20
- data/docs/PaymentProduct3391SpecificInput.md +0 -20
- data/docs/PaymentProduct3391SpecificOutput.md +0 -18
- data/docs/PaymentProduct3392SpecificInput.md +0 -18
- data/docs/PaymentProduct771SpecificOutput.md +0 -18
- data/docs/PaymentProduct840CustomerAccount.md +0 -24
- data/docs/PaymentProduct840SpecificOutput.md +0 -22
- data/docs/PaymentReferences.md +0 -18
- data/docs/PaymentResponse.md +0 -24
- data/docs/PaymentStatusOutput.md +0 -24
- data/docs/PaymentType.md +0 -15
- data/docs/PayoutOutput.md +0 -22
- data/docs/PayoutResponse.md +0 -24
- data/docs/PersonalInformation.md +0 -22
- data/docs/PersonalName.md +0 -22
- data/docs/PositiveAmountOfMoney.md +0 -20
- data/docs/ProcessingMandateInformation.md +0 -26
- data/docs/ProductType.md +0 -15
- data/docs/RedirectData.md +0 -18
- data/docs/RedirectPaymentMethodSpecificInput.md +0 -30
- data/docs/RedirectPaymentMethodSpecificOutput.md +0 -24
- data/docs/RedirectPaymentProduct840SpecificInput.md +0 -18
- data/docs/RedirectionData.md +0 -18
- data/docs/References.md +0 -22
- data/docs/RefundErrorResponse.md +0 -20
- data/docs/RefundOutput.md +0 -24
- data/docs/RefundPaymentResponse.md +0 -24
- data/docs/RefundRequest.md +0 -22
- data/docs/ReturnInformation.md +0 -20
- data/docs/ReturnItem.md +0 -20
- data/docs/ReturnRequest.md +0 -22
- data/docs/ReturnResponse.md +0 -20
- data/docs/ReturnType.md +0 -15
- data/docs/SepaDirectDebitPaymentMethodSpecificInput.md +0 -20
- data/docs/SepaDirectDebitPaymentMethodSpecificOutput.md +0 -20
- data/docs/SepaDirectDebitPaymentProduct771SpecificInput.md +0 -20
- data/docs/Shipping.md +0 -18
- data/docs/ShoppingCartInput.md +0 -18
- data/docs/ShoppingCartPatch.md +0 -18
- data/docs/ShoppingCartResult.md +0 -18
- data/docs/StatusCategoryValue.md +0 -15
- data/docs/StatusCheckout.md +0 -15
- data/docs/StatusOutput.md +0 -30
- data/docs/StatusValue.md +0 -15
- data/docs/ThreeDSecureResults.md +0 -22
- data/docs/TransactionChannel.md +0 -15
- data/docs/UnscheduledCardOnFileRequestor.md +0 -15
- data/docs/UnscheduledCardOnFileSequenceIndicator.md +0 -15
- data/lib/PCP-server-Ruby-SDK/api/base_api_client.rb +0 -105
- data/lib/PCP-server-Ruby-SDK/api/checkout_api_client.rb +0 -94
- data/lib/PCP-server-Ruby-SDK/api/commerce_case_api_client.rb +0 -75
- data/lib/PCP-server-Ruby-SDK/api/order_management_checkout_actions_api_client.rb +0 -82
- data/lib/PCP-server-Ruby-SDK/api/payment_execution_api_client.rb +0 -104
- data/lib/PCP-server-Ruby-SDK/api/payment_information_api_client.rb +0 -50
- data/lib/PCP-server-Ruby-SDK/models/payment_product320_specific_input.rb +0 -256
- data/node_modules/.bin/JSONStream +0 -1
- data/node_modules/.bin/commitlint +0 -1
- data/node_modules/.bin/conventional-changelog +0 -1
- data/node_modules/.bin/conventional-changelog-writer +0 -1
- data/node_modules/.bin/conventional-commits-parser +0 -1
- data/node_modules/.bin/git-raw-commits +0 -1
- data/node_modules/.bin/git-semver-tags +0 -1
- data/node_modules/.bin/handlebars +0 -1
- data/node_modules/.bin/jiti +0 -1
- data/node_modules/.bin/js-yaml +0 -1
- data/node_modules/.bin/lefthook +0 -1
- data/node_modules/.bin/node-which +0 -1
- data/node_modules/.bin/semver +0 -1
- data/node_modules/.bin/uglifyjs +0 -1
- data/node_modules/.package-lock.json +0 -2010
- data/node_modules/@babel/code-frame/LICENSE +0 -22
- data/node_modules/@babel/code-frame/README.md +0 -19
- data/node_modules/@babel/code-frame/lib/index.js +0 -156
- data/node_modules/@babel/code-frame/lib/index.js.map +0 -1
- data/node_modules/@babel/code-frame/package.json +0 -30
- data/node_modules/@babel/helper-validator-identifier/LICENSE +0 -22
- data/node_modules/@babel/helper-validator-identifier/README.md +0 -19
- data/node_modules/@babel/helper-validator-identifier/lib/identifier.js +0 -70
- data/node_modules/@babel/helper-validator-identifier/lib/identifier.js.map +0 -1
- data/node_modules/@babel/helper-validator-identifier/lib/index.js +0 -57
- data/node_modules/@babel/helper-validator-identifier/lib/index.js.map +0 -1
- data/node_modules/@babel/helper-validator-identifier/lib/keyword.js +0 -35
- data/node_modules/@babel/helper-validator-identifier/lib/keyword.js.map +0 -1
- data/node_modules/@babel/helper-validator-identifier/package.json +0 -31
- data/node_modules/@babel/helper-validator-identifier/scripts/generate-identifier-regex.js +0 -73
- data/node_modules/@babel/highlight/LICENSE +0 -22
- data/node_modules/@babel/highlight/README.md +0 -19
- data/node_modules/@babel/highlight/lib/index.js +0 -119
- data/node_modules/@babel/highlight/lib/index.js.map +0 -1
- data/node_modules/@babel/highlight/node_modules/ansi-styles/index.js +0 -165
- data/node_modules/@babel/highlight/node_modules/ansi-styles/license +0 -9
- data/node_modules/@babel/highlight/node_modules/ansi-styles/package.json +0 -56
- data/node_modules/@babel/highlight/node_modules/ansi-styles/readme.md +0 -147
- data/node_modules/@babel/highlight/node_modules/chalk/index.js +0 -228
- data/node_modules/@babel/highlight/node_modules/chalk/index.js.flow +0 -93
- data/node_modules/@babel/highlight/node_modules/chalk/license +0 -9
- data/node_modules/@babel/highlight/node_modules/chalk/package.json +0 -71
- data/node_modules/@babel/highlight/node_modules/chalk/readme.md +0 -314
- data/node_modules/@babel/highlight/node_modules/chalk/templates.js +0 -128
- data/node_modules/@babel/highlight/node_modules/chalk/types/index.d.ts +0 -97
- data/node_modules/@babel/highlight/node_modules/color-convert/CHANGELOG.md +0 -54
- data/node_modules/@babel/highlight/node_modules/color-convert/LICENSE +0 -21
- data/node_modules/@babel/highlight/node_modules/color-convert/README.md +0 -68
- data/node_modules/@babel/highlight/node_modules/color-convert/conversions.js +0 -868
- data/node_modules/@babel/highlight/node_modules/color-convert/index.js +0 -78
- data/node_modules/@babel/highlight/node_modules/color-convert/package.json +0 -46
- data/node_modules/@babel/highlight/node_modules/color-convert/route.js +0 -97
- data/node_modules/@babel/highlight/node_modules/color-name/.eslintrc.json +0 -43
- data/node_modules/@babel/highlight/node_modules/color-name/.npmignore +0 -107
- data/node_modules/@babel/highlight/node_modules/color-name/LICENSE +0 -8
- data/node_modules/@babel/highlight/node_modules/color-name/README.md +0 -11
- data/node_modules/@babel/highlight/node_modules/color-name/index.js +0 -152
- data/node_modules/@babel/highlight/node_modules/color-name/package.json +0 -25
- data/node_modules/@babel/highlight/node_modules/color-name/test.js +0 -7
- data/node_modules/@babel/highlight/package.json +0 -30
- data/node_modules/@commitlint/cli/README.md +0 -11
- data/node_modules/@commitlint/cli/cli.js +0 -2
- data/node_modules/@commitlint/cli/index.cjs +0 -3
- data/node_modules/@commitlint/cli/lib/cli-error.d.ts +0 -7
- data/node_modules/@commitlint/cli/lib/cli-error.d.ts.map +0 -1
- data/node_modules/@commitlint/cli/lib/cli-error.js +0 -12
- data/node_modules/@commitlint/cli/lib/cli-error.js.map +0 -1
- data/node_modules/@commitlint/cli/lib/cli.d.ts +0 -2
- data/node_modules/@commitlint/cli/lib/cli.d.ts.map +0 -1
- data/node_modules/@commitlint/cli/lib/cli.js +0 -386
- data/node_modules/@commitlint/cli/lib/cli.js.map +0 -1
- data/node_modules/@commitlint/cli/lib/types.d.ts +0 -26
- data/node_modules/@commitlint/cli/lib/types.d.ts.map +0 -1
- data/node_modules/@commitlint/cli/lib/types.js +0 -2
- data/node_modules/@commitlint/cli/lib/types.js.map +0 -1
- data/node_modules/@commitlint/cli/license.md +0 -21
- data/node_modules/@commitlint/cli/package.json +0 -60
- data/node_modules/@commitlint/config-conventional/README.md +0 -209
- data/node_modules/@commitlint/config-conventional/lib/index.d.ts +0 -111
- data/node_modules/@commitlint/config-conventional/lib/index.d.ts.map +0 -1
- data/node_modules/@commitlint/config-conventional/lib/index.js +0 -134
- data/node_modules/@commitlint/config-conventional/lib/index.js.map +0 -1
- data/node_modules/@commitlint/config-conventional/license.md +0 -21
- data/node_modules/@commitlint/config-conventional/package.json +0 -46
- data/node_modules/@commitlint/config-validator/lib/commitlint.schema.json +0 -105
- data/node_modules/@commitlint/config-validator/lib/formatErrors.d.ts +0 -9
- data/node_modules/@commitlint/config-validator/lib/formatErrors.d.ts.map +0 -1
- data/node_modules/@commitlint/config-validator/lib/formatErrors.js +0 -35
- data/node_modules/@commitlint/config-validator/lib/formatErrors.js.map +0 -1
- data/node_modules/@commitlint/config-validator/lib/validate.d.ts +0 -3
- data/node_modules/@commitlint/config-validator/lib/validate.d.ts.map +0 -1
- data/node_modules/@commitlint/config-validator/lib/validate.js +0 -39
- data/node_modules/@commitlint/config-validator/lib/validate.js.map +0 -1
- data/node_modules/@commitlint/config-validator/license.md +0 -21
- data/node_modules/@commitlint/config-validator/package.json +0 -46
- data/node_modules/@commitlint/ensure/lib/case.d.ts +0 -4
- data/node_modules/@commitlint/ensure/lib/case.d.ts.map +0 -1
- data/node_modules/@commitlint/ensure/lib/case.js +0 -15
- data/node_modules/@commitlint/ensure/lib/case.js.map +0 -1
- data/node_modules/@commitlint/ensure/lib/enum.d.ts +0 -3
- data/node_modules/@commitlint/ensure/lib/enum.d.ts.map +0 -1
- data/node_modules/@commitlint/ensure/lib/enum.js +0 -10
- data/node_modules/@commitlint/ensure/lib/enum.js.map +0 -1
- data/node_modules/@commitlint/ensure/lib/index.d.ts +0 -11
- data/node_modules/@commitlint/ensure/lib/index.d.ts.map +0 -1
- data/node_modules/@commitlint/ensure/lib/index.js +0 -11
- data/node_modules/@commitlint/ensure/lib/index.js.map +0 -1
- data/node_modules/@commitlint/ensure/lib/max-length.d.ts +0 -3
- data/node_modules/@commitlint/ensure/lib/max-length.d.ts.map +0 -1
- data/node_modules/@commitlint/ensure/lib/max-length.js +0 -2
- data/node_modules/@commitlint/ensure/lib/max-length.js.map +0 -1
- data/node_modules/@commitlint/ensure/lib/max-line-length.d.ts +0 -3
- data/node_modules/@commitlint/ensure/lib/max-line-length.d.ts.map +0 -1
- data/node_modules/@commitlint/ensure/lib/max-line-length.js +0 -4
- data/node_modules/@commitlint/ensure/lib/max-line-length.js.map +0 -1
- data/node_modules/@commitlint/ensure/lib/min-length.d.ts +0 -3
- data/node_modules/@commitlint/ensure/lib/min-length.d.ts.map +0 -1
- data/node_modules/@commitlint/ensure/lib/min-length.js +0 -2
- data/node_modules/@commitlint/ensure/lib/min-length.js.map +0 -1
- data/node_modules/@commitlint/ensure/lib/not-empty.d.ts +0 -3
- data/node_modules/@commitlint/ensure/lib/not-empty.d.ts.map +0 -1
- data/node_modules/@commitlint/ensure/lib/not-empty.js +0 -2
- data/node_modules/@commitlint/ensure/lib/not-empty.js.map +0 -1
- data/node_modules/@commitlint/ensure/lib/to-case.d.ts +0 -3
- data/node_modules/@commitlint/ensure/lib/to-case.d.ts.map +0 -1
- data/node_modules/@commitlint/ensure/lib/to-case.js +0 -32
- data/node_modules/@commitlint/ensure/lib/to-case.js.map +0 -1
- data/node_modules/@commitlint/ensure/license.md +0 -21
- data/node_modules/@commitlint/ensure/package.json +0 -56
- data/node_modules/@commitlint/execute-rule/lib/index.d.ts +0 -7
- data/node_modules/@commitlint/execute-rule/lib/index.d.ts.map +0 -1
- data/node_modules/@commitlint/execute-rule/lib/index.js +0 -13
- data/node_modules/@commitlint/execute-rule/lib/index.js.map +0 -1
- data/node_modules/@commitlint/execute-rule/license.md +0 -21
- data/node_modules/@commitlint/execute-rule/package.json +0 -42
- data/node_modules/@commitlint/format/README.md +0 -15
- data/node_modules/@commitlint/format/lib/format.d.ts +0 -5
- data/node_modules/@commitlint/format/lib/format.d.ts.map +0 -1
- data/node_modules/@commitlint/format/lib/format.js +0 -74
- data/node_modules/@commitlint/format/lib/format.js.map +0 -1
- data/node_modules/@commitlint/format/lib/index.d.ts +0 -3
- data/node_modules/@commitlint/format/lib/index.d.ts.map +0 -1
- data/node_modules/@commitlint/format/lib/index.js +0 -3
- data/node_modules/@commitlint/format/lib/index.js.map +0 -1
- data/node_modules/@commitlint/format/license.md +0 -21
- data/node_modules/@commitlint/format/package.json +0 -46
- data/node_modules/@commitlint/is-ignored/lib/defaults.d.ts +0 -3
- data/node_modules/@commitlint/is-ignored/lib/defaults.d.ts.map +0 -1
- data/node_modules/@commitlint/is-ignored/lib/defaults.js +0 -22
- data/node_modules/@commitlint/is-ignored/lib/defaults.js.map +0 -1
- data/node_modules/@commitlint/is-ignored/lib/index.d.ts +0 -3
- data/node_modules/@commitlint/is-ignored/lib/index.d.ts.map +0 -1
- data/node_modules/@commitlint/is-ignored/lib/index.js +0 -3
- data/node_modules/@commitlint/is-ignored/lib/index.js.map +0 -1
- data/node_modules/@commitlint/is-ignored/lib/is-ignored.d.ts +0 -3
- data/node_modules/@commitlint/is-ignored/lib/is-ignored.d.ts.map +0 -1
- data/node_modules/@commitlint/is-ignored/lib/is-ignored.js +0 -16
- data/node_modules/@commitlint/is-ignored/lib/is-ignored.js.map +0 -1
- data/node_modules/@commitlint/is-ignored/license.md +0 -21
- data/node_modules/@commitlint/is-ignored/package.json +0 -49
- data/node_modules/@commitlint/lint/README.md +0 -15
- data/node_modules/@commitlint/lint/lib/commit-message.d.ts +0 -7
- data/node_modules/@commitlint/lint/lib/commit-message.d.ts.map +0 -1
- data/node_modules/@commitlint/lint/lib/commit-message.js +0 -7
- data/node_modules/@commitlint/lint/lib/commit-message.js.map +0 -1
- data/node_modules/@commitlint/lint/lib/lint.d.ts +0 -3
- data/node_modules/@commitlint/lint/lib/lint.d.ts.map +0 -1
- data/node_modules/@commitlint/lint/lib/lint.js +0 -115
- data/node_modules/@commitlint/lint/lib/lint.js.map +0 -1
- data/node_modules/@commitlint/lint/license.md +0 -21
- data/node_modules/@commitlint/lint/package.json +0 -49
- data/node_modules/@commitlint/load/README.md +0 -15
- data/node_modules/@commitlint/load/lib/load.d.ts +0 -5
- data/node_modules/@commitlint/load/lib/load.d.ts.map +0 -1
- data/node_modules/@commitlint/load/lib/load.js +0 -97
- data/node_modules/@commitlint/load/lib/load.js.map +0 -1
- data/node_modules/@commitlint/load/lib/utils/load-config.d.ts +0 -9
- data/node_modules/@commitlint/load/lib/utils/load-config.d.ts.map +0 -1
- data/node_modules/@commitlint/load/lib/utils/load-config.js +0 -78
- data/node_modules/@commitlint/load/lib/utils/load-config.js.map +0 -1
- data/node_modules/@commitlint/load/lib/utils/load-parser-opts.d.ts +0 -5
- data/node_modules/@commitlint/load/lib/utils/load-parser-opts.d.ts.map +0 -1
- data/node_modules/@commitlint/load/lib/utils/load-parser-opts.js +0 -56
- data/node_modules/@commitlint/load/lib/utils/load-parser-opts.js.map +0 -1
- data/node_modules/@commitlint/load/lib/utils/load-plugin.d.ts +0 -3
- data/node_modules/@commitlint/load/lib/utils/load-plugin.d.ts.map +0 -1
- data/node_modules/@commitlint/load/lib/utils/load-plugin.js +0 -63
- data/node_modules/@commitlint/load/lib/utils/load-plugin.js.map +0 -1
- data/node_modules/@commitlint/load/lib/utils/plugin-errors.d.ts +0 -13
- data/node_modules/@commitlint/load/lib/utils/plugin-errors.d.ts.map +0 -1
- data/node_modules/@commitlint/load/lib/utils/plugin-errors.js +0 -21
- data/node_modules/@commitlint/load/lib/utils/plugin-errors.js.map +0 -1
- data/node_modules/@commitlint/load/lib/utils/plugin-naming.d.ts +0 -20
- data/node_modules/@commitlint/load/lib/utils/plugin-naming.d.ts.map +0 -1
- data/node_modules/@commitlint/load/lib/utils/plugin-naming.js +0 -80
- data/node_modules/@commitlint/load/lib/utils/plugin-naming.js.map +0 -1
- data/node_modules/@commitlint/load/license.md +0 -21
- data/node_modules/@commitlint/load/package.json +0 -60
- data/node_modules/@commitlint/message/lib/index.d.ts +0 -2
- data/node_modules/@commitlint/message/lib/index.d.ts.map +0 -1
- data/node_modules/@commitlint/message/lib/index.js +0 -4
- data/node_modules/@commitlint/message/lib/index.js.map +0 -1
- data/node_modules/@commitlint/message/license.md +0 -21
- data/node_modules/@commitlint/message/package.json +0 -43
- data/node_modules/@commitlint/parse/README.md +0 -29
- data/node_modules/@commitlint/parse/lib/index.d.ts +0 -5
- data/node_modules/@commitlint/parse/lib/index.d.ts.map +0 -1
- data/node_modules/@commitlint/parse/lib/index.js +0 -13
- data/node_modules/@commitlint/parse/lib/index.js.map +0 -1
- data/node_modules/@commitlint/parse/license.md +0 -21
- data/node_modules/@commitlint/parse/package.json +0 -49
- data/node_modules/@commitlint/read/README.md +0 -15
- data/node_modules/@commitlint/read/lib/get-edit-commit.d.ts +0 -2
- data/node_modules/@commitlint/read/lib/get-edit-commit.d.ts.map +0 -1
- data/node_modules/@commitlint/read/lib/get-edit-commit.js +0 -14
- data/node_modules/@commitlint/read/lib/get-edit-commit.js.map +0 -1
- data/node_modules/@commitlint/read/lib/get-edit-file-path.d.ts +0 -2
- data/node_modules/@commitlint/read/lib/get-edit-file-path.d.ts.map +0 -1
- data/node_modules/@commitlint/read/lib/get-edit-file-path.js +0 -19
- data/node_modules/@commitlint/read/lib/get-edit-file-path.js.map +0 -1
- data/node_modules/@commitlint/read/lib/get-history-commits.d.ts +0 -5
- data/node_modules/@commitlint/read/lib/get-history-commits.d.ts.map +0 -1
- data/node_modules/@commitlint/read/lib/get-history-commits.js +0 -7
- data/node_modules/@commitlint/read/lib/get-history-commits.js.map +0 -1
- data/node_modules/@commitlint/read/lib/read.d.ts +0 -12
- data/node_modules/@commitlint/read/lib/read.d.ts.map +0 -1
- data/node_modules/@commitlint/read/lib/read.js +0 -52
- data/node_modules/@commitlint/read/lib/read.js.map +0 -1
- data/node_modules/@commitlint/read/lib/stream-to-promise.d.ts +0 -3
- data/node_modules/@commitlint/read/lib/stream-to-promise.d.ts.map +0 -1
- data/node_modules/@commitlint/read/lib/stream-to-promise.js +0 -8
- data/node_modules/@commitlint/read/lib/stream-to-promise.js.map +0 -1
- data/node_modules/@commitlint/read/license.md +0 -21
- data/node_modules/@commitlint/read/package.json +0 -52
- data/node_modules/@commitlint/resolve-extends/lib/index.d.ts +0 -29
- data/node_modules/@commitlint/resolve-extends/lib/index.d.ts.map +0 -1
- data/node_modules/@commitlint/resolve-extends/lib/index.js +0 -182
- data/node_modules/@commitlint/resolve-extends/lib/index.js.map +0 -1
- data/node_modules/@commitlint/resolve-extends/license.md +0 -21
- data/node_modules/@commitlint/resolve-extends/package.json +0 -51
- data/node_modules/@commitlint/rules/lib/body-case.d.ts +0 -3
- data/node_modules/@commitlint/rules/lib/body-case.d.ts.map +0 -1
- data/node_modules/@commitlint/rules/lib/body-case.js +0 -28
- data/node_modules/@commitlint/rules/lib/body-case.js.map +0 -1
- data/node_modules/@commitlint/rules/lib/body-empty.d.ts +0 -3
- data/node_modules/@commitlint/rules/lib/body-empty.d.ts.map +0 -1
- data/node_modules/@commitlint/rules/lib/body-empty.js +0 -11
- data/node_modules/@commitlint/rules/lib/body-empty.js.map +0 -1
- data/node_modules/@commitlint/rules/lib/body-full-stop.d.ts +0 -3
- data/node_modules/@commitlint/rules/lib/body-full-stop.d.ts.map +0 -1
- data/node_modules/@commitlint/rules/lib/body-full-stop.js +0 -14
- data/node_modules/@commitlint/rules/lib/body-full-stop.js.map +0 -1
- data/node_modules/@commitlint/rules/lib/body-leading-blank.d.ts +0 -3
- data/node_modules/@commitlint/rules/lib/body-leading-blank.d.ts.map +0 -1
- data/node_modules/@commitlint/rules/lib/body-leading-blank.js +0 -17
- data/node_modules/@commitlint/rules/lib/body-leading-blank.js.map +0 -1
- data/node_modules/@commitlint/rules/lib/body-max-length.d.ts +0 -3
- data/node_modules/@commitlint/rules/lib/body-max-length.d.ts.map +0 -1
- data/node_modules/@commitlint/rules/lib/body-max-length.js +0 -12
- data/node_modules/@commitlint/rules/lib/body-max-length.js.map +0 -1
- data/node_modules/@commitlint/rules/lib/body-max-line-length.d.ts +0 -3
- data/node_modules/@commitlint/rules/lib/body-max-line-length.d.ts.map +0 -1
- data/node_modules/@commitlint/rules/lib/body-max-line-length.js +0 -12
- data/node_modules/@commitlint/rules/lib/body-max-line-length.js.map +0 -1
- data/node_modules/@commitlint/rules/lib/body-min-length.d.ts +0 -3
- data/node_modules/@commitlint/rules/lib/body-min-length.d.ts.map +0 -1
- data/node_modules/@commitlint/rules/lib/body-min-length.js +0 -11
- data/node_modules/@commitlint/rules/lib/body-min-length.js.map +0 -1
- data/node_modules/@commitlint/rules/lib/footer-empty.d.ts +0 -3
- data/node_modules/@commitlint/rules/lib/footer-empty.d.ts.map +0 -1
- data/node_modules/@commitlint/rules/lib/footer-empty.js +0 -11
- data/node_modules/@commitlint/rules/lib/footer-empty.js.map +0 -1
- data/node_modules/@commitlint/rules/lib/footer-leading-blank.d.ts +0 -3
- data/node_modules/@commitlint/rules/lib/footer-leading-blank.d.ts.map +0 -1
- data/node_modules/@commitlint/rules/lib/footer-leading-blank.js +0 -24
- data/node_modules/@commitlint/rules/lib/footer-leading-blank.js.map +0 -1
- data/node_modules/@commitlint/rules/lib/footer-max-length.d.ts +0 -3
- data/node_modules/@commitlint/rules/lib/footer-max-length.d.ts.map +0 -1
- data/node_modules/@commitlint/rules/lib/footer-max-length.js +0 -12
- data/node_modules/@commitlint/rules/lib/footer-max-length.js.map +0 -1
- data/node_modules/@commitlint/rules/lib/footer-max-line-length.d.ts +0 -3
- data/node_modules/@commitlint/rules/lib/footer-max-line-length.d.ts.map +0 -1
- data/node_modules/@commitlint/rules/lib/footer-max-line-length.js +0 -12
- data/node_modules/@commitlint/rules/lib/footer-max-line-length.js.map +0 -1
- data/node_modules/@commitlint/rules/lib/footer-min-length.d.ts +0 -3
- data/node_modules/@commitlint/rules/lib/footer-min-length.d.ts.map +0 -1
- data/node_modules/@commitlint/rules/lib/footer-min-length.js +0 -11
- data/node_modules/@commitlint/rules/lib/footer-min-length.js.map +0 -1
- data/node_modules/@commitlint/rules/lib/header-case.d.ts +0 -3
- data/node_modules/@commitlint/rules/lib/header-case.d.ts.map +0 -1
- data/node_modules/@commitlint/rules/lib/header-case.js +0 -28
- data/node_modules/@commitlint/rules/lib/header-case.js.map +0 -1
- data/node_modules/@commitlint/rules/lib/header-full-stop.d.ts +0 -3
- data/node_modules/@commitlint/rules/lib/header-full-stop.d.ts.map +0 -1
- data/node_modules/@commitlint/rules/lib/header-full-stop.js +0 -11
- data/node_modules/@commitlint/rules/lib/header-full-stop.js.map +0 -1
- data/node_modules/@commitlint/rules/lib/header-max-length.d.ts +0 -3
- data/node_modules/@commitlint/rules/lib/header-max-length.d.ts.map +0 -1
- data/node_modules/@commitlint/rules/lib/header-max-length.js +0 -8
- data/node_modules/@commitlint/rules/lib/header-max-length.js.map +0 -1
- data/node_modules/@commitlint/rules/lib/header-min-length.d.ts +0 -3
- data/node_modules/@commitlint/rules/lib/header-min-length.d.ts.map +0 -1
- data/node_modules/@commitlint/rules/lib/header-min-length.js +0 -8
- data/node_modules/@commitlint/rules/lib/header-min-length.js.map +0 -1
- data/node_modules/@commitlint/rules/lib/header-trim.d.ts +0 -3
- data/node_modules/@commitlint/rules/lib/header-trim.d.ts.map +0 -1
- data/node_modules/@commitlint/rules/lib/header-trim.js +0 -23
- data/node_modules/@commitlint/rules/lib/header-trim.js.map +0 -1
- data/node_modules/@commitlint/rules/lib/index.d.ts +0 -40
- data/node_modules/@commitlint/rules/lib/index.d.ts.map +0 -1
- data/node_modules/@commitlint/rules/lib/index.js +0 -75
- data/node_modules/@commitlint/rules/lib/index.js.map +0 -1
- data/node_modules/@commitlint/rules/lib/references-empty.d.ts +0 -3
- data/node_modules/@commitlint/rules/lib/references-empty.d.ts.map +0 -1
- data/node_modules/@commitlint/rules/lib/references-empty.js +0 -10
- data/node_modules/@commitlint/rules/lib/references-empty.js.map +0 -1
- data/node_modules/@commitlint/rules/lib/scope-case.d.ts +0 -3
- data/node_modules/@commitlint/rules/lib/scope-case.d.ts.map +0 -1
- data/node_modules/@commitlint/rules/lib/scope-case.js +0 -32
- data/node_modules/@commitlint/rules/lib/scope-case.js.map +0 -1
- data/node_modules/@commitlint/rules/lib/scope-empty.d.ts +0 -3
- data/node_modules/@commitlint/rules/lib/scope-empty.d.ts.map +0 -1
- data/node_modules/@commitlint/rules/lib/scope-empty.js +0 -11
- data/node_modules/@commitlint/rules/lib/scope-empty.js.map +0 -1
- data/node_modules/@commitlint/rules/lib/scope-enum.d.ts +0 -3
- data/node_modules/@commitlint/rules/lib/scope-enum.d.ts.map +0 -1
- data/node_modules/@commitlint/rules/lib/scope-enum.js +0 -23
- data/node_modules/@commitlint/rules/lib/scope-enum.js.map +0 -1
- data/node_modules/@commitlint/rules/lib/scope-max-length.d.ts +0 -3
- data/node_modules/@commitlint/rules/lib/scope-max-length.d.ts.map +0 -1
- data/node_modules/@commitlint/rules/lib/scope-max-length.js +0 -12
- data/node_modules/@commitlint/rules/lib/scope-max-length.js.map +0 -1
- data/node_modules/@commitlint/rules/lib/scope-min-length.d.ts +0 -3
- data/node_modules/@commitlint/rules/lib/scope-min-length.d.ts.map +0 -1
- data/node_modules/@commitlint/rules/lib/scope-min-length.js +0 -12
- data/node_modules/@commitlint/rules/lib/scope-min-length.js.map +0 -1
- data/node_modules/@commitlint/rules/lib/signed-off-by.d.ts +0 -3
- data/node_modules/@commitlint/rules/lib/signed-off-by.d.ts.map +0 -1
- data/node_modules/@commitlint/rules/lib/signed-off-by.js +0 -19
- data/node_modules/@commitlint/rules/lib/signed-off-by.js.map +0 -1
- data/node_modules/@commitlint/rules/lib/subject-case.d.ts +0 -3
- data/node_modules/@commitlint/rules/lib/subject-case.d.ts.map +0 -1
- data/node_modules/@commitlint/rules/lib/subject-case.js +0 -44
- data/node_modules/@commitlint/rules/lib/subject-case.js.map +0 -1
- data/node_modules/@commitlint/rules/lib/subject-empty.d.ts +0 -3
- data/node_modules/@commitlint/rules/lib/subject-empty.d.ts.map +0 -1
- data/node_modules/@commitlint/rules/lib/subject-empty.js +0 -11
- data/node_modules/@commitlint/rules/lib/subject-empty.js.map +0 -1
- data/node_modules/@commitlint/rules/lib/subject-exclamation-mark.d.ts +0 -3
- data/node_modules/@commitlint/rules/lib/subject-exclamation-mark.d.ts.map +0 -1
- data/node_modules/@commitlint/rules/lib/subject-exclamation-mark.js +0 -18
- data/node_modules/@commitlint/rules/lib/subject-exclamation-mark.js.map +0 -1
- data/node_modules/@commitlint/rules/lib/subject-full-stop.d.ts +0 -3
- data/node_modules/@commitlint/rules/lib/subject-full-stop.d.ts.map +0 -1
- data/node_modules/@commitlint/rules/lib/subject-full-stop.js +0 -18
- data/node_modules/@commitlint/rules/lib/subject-full-stop.js.map +0 -1
- data/node_modules/@commitlint/rules/lib/subject-max-length.d.ts +0 -3
- data/node_modules/@commitlint/rules/lib/subject-max-length.d.ts.map +0 -1
- data/node_modules/@commitlint/rules/lib/subject-max-length.js +0 -12
- data/node_modules/@commitlint/rules/lib/subject-max-length.js.map +0 -1
- data/node_modules/@commitlint/rules/lib/subject-min-length.d.ts +0 -3
- data/node_modules/@commitlint/rules/lib/subject-min-length.d.ts.map +0 -1
- data/node_modules/@commitlint/rules/lib/subject-min-length.js +0 -12
- data/node_modules/@commitlint/rules/lib/subject-min-length.js.map +0 -1
- data/node_modules/@commitlint/rules/lib/trailer-exists.d.ts +0 -3
- data/node_modules/@commitlint/rules/lib/trailer-exists.d.ts.map +0 -1
- data/node_modules/@commitlint/rules/lib/trailer-exists.js +0 -20
- data/node_modules/@commitlint/rules/lib/trailer-exists.js.map +0 -1
- data/node_modules/@commitlint/rules/lib/type-case.d.ts +0 -3
- data/node_modules/@commitlint/rules/lib/type-case.d.ts.map +0 -1
- data/node_modules/@commitlint/rules/lib/type-case.js +0 -28
- data/node_modules/@commitlint/rules/lib/type-case.js.map +0 -1
- data/node_modules/@commitlint/rules/lib/type-empty.d.ts +0 -3
- data/node_modules/@commitlint/rules/lib/type-empty.d.ts.map +0 -1
- data/node_modules/@commitlint/rules/lib/type-empty.js +0 -11
- data/node_modules/@commitlint/rules/lib/type-empty.js.map +0 -1
- data/node_modules/@commitlint/rules/lib/type-enum.d.ts +0 -3
- data/node_modules/@commitlint/rules/lib/type-enum.d.ts.map +0 -1
- data/node_modules/@commitlint/rules/lib/type-enum.js +0 -19
- data/node_modules/@commitlint/rules/lib/type-enum.js.map +0 -1
- data/node_modules/@commitlint/rules/lib/type-max-length.d.ts +0 -3
- data/node_modules/@commitlint/rules/lib/type-max-length.d.ts.map +0 -1
- data/node_modules/@commitlint/rules/lib/type-max-length.js +0 -12
- data/node_modules/@commitlint/rules/lib/type-max-length.js.map +0 -1
- data/node_modules/@commitlint/rules/lib/type-min-length.d.ts +0 -3
- data/node_modules/@commitlint/rules/lib/type-min-length.d.ts.map +0 -1
- data/node_modules/@commitlint/rules/lib/type-min-length.js +0 -12
- data/node_modules/@commitlint/rules/lib/type-min-length.js.map +0 -1
- data/node_modules/@commitlint/rules/license.md +0 -21
- data/node_modules/@commitlint/rules/package.json +0 -53
- data/node_modules/@commitlint/to-lines/lib/index.d.ts +0 -2
- data/node_modules/@commitlint/to-lines/lib/index.d.ts.map +0 -1
- data/node_modules/@commitlint/to-lines/lib/index.js +0 -7
- data/node_modules/@commitlint/to-lines/lib/index.js.map +0 -1
- data/node_modules/@commitlint/to-lines/license.md +0 -21
- data/node_modules/@commitlint/to-lines/package.json +0 -42
- data/node_modules/@commitlint/top-level/lib/index.d.ts +0 -6
- data/node_modules/@commitlint/top-level/lib/index.d.ts.map +0 -1
- data/node_modules/@commitlint/top-level/lib/index.js +0 -22
- data/node_modules/@commitlint/top-level/lib/index.js.map +0 -1
- data/node_modules/@commitlint/top-level/license.md +0 -21
- data/node_modules/@commitlint/top-level/package.json +0 -45
- data/node_modules/@commitlint/types/lib/ensure.d.ts +0 -2
- data/node_modules/@commitlint/types/lib/ensure.d.ts.map +0 -1
- data/node_modules/@commitlint/types/lib/ensure.js +0 -2
- data/node_modules/@commitlint/types/lib/ensure.js.map +0 -1
- data/node_modules/@commitlint/types/lib/format.d.ts +0 -28
- data/node_modules/@commitlint/types/lib/format.d.ts.map +0 -1
- data/node_modules/@commitlint/types/lib/format.js +0 -2
- data/node_modules/@commitlint/types/lib/format.js.map +0 -1
- data/node_modules/@commitlint/types/lib/index.d.ts +0 -9
- data/node_modules/@commitlint/types/lib/index.d.ts.map +0 -1
- data/node_modules/@commitlint/types/lib/index.js +0 -9
- data/node_modules/@commitlint/types/lib/index.js.map +0 -1
- data/node_modules/@commitlint/types/lib/is-ignored.d.ts +0 -6
- data/node_modules/@commitlint/types/lib/is-ignored.d.ts.map +0 -1
- data/node_modules/@commitlint/types/lib/is-ignored.js +0 -2
- data/node_modules/@commitlint/types/lib/is-ignored.js.map +0 -1
- data/node_modules/@commitlint/types/lib/lint.d.ts +0 -36
- data/node_modules/@commitlint/types/lib/lint.d.ts.map +0 -1
- data/node_modules/@commitlint/types/lib/lint.js +0 -2
- data/node_modules/@commitlint/types/lib/lint.js.map +0 -1
- data/node_modules/@commitlint/types/lib/load.d.ts +0 -42
- data/node_modules/@commitlint/types/lib/load.d.ts.map +0 -1
- data/node_modules/@commitlint/types/lib/load.js +0 -2
- data/node_modules/@commitlint/types/lib/load.js.map +0 -1
- data/node_modules/@commitlint/types/lib/parse.d.ts +0 -3
- data/node_modules/@commitlint/types/lib/parse.d.ts.map +0 -1
- data/node_modules/@commitlint/types/lib/parse.js +0 -2
- data/node_modules/@commitlint/types/lib/parse.js.map +0 -1
- data/node_modules/@commitlint/types/lib/prompt.d.ts +0 -39
- data/node_modules/@commitlint/types/lib/prompt.d.ts.map +0 -1
- data/node_modules/@commitlint/types/lib/prompt.js +0 -2
- data/node_modules/@commitlint/types/lib/prompt.js.map +0 -1
- data/node_modules/@commitlint/types/lib/rules.d.ts +0 -85
- data/node_modules/@commitlint/types/lib/rules.d.ts.map +0 -1
- data/node_modules/@commitlint/types/lib/rules.js +0 -19
- data/node_modules/@commitlint/types/lib/rules.js.map +0 -1
- data/node_modules/@commitlint/types/license.md +0 -21
- data/node_modules/@commitlint/types/package.json +0 -39
- data/node_modules/@hutson/parse-repository-url/license.md +0 -202
- data/node_modules/@hutson/parse-repository-url/package.json +0 -62
- data/node_modules/@hutson/parse-repository-url/readme.md +0 -130
- data/node_modules/@hutson/parse-repository-url/src/index.js +0 -62
- data/node_modules/@types/conventional-commits-parser/LICENSE +0 -21
- data/node_modules/@types/conventional-commits-parser/README.md +0 -15
- data/node_modules/@types/conventional-commits-parser/index.d.ts +0 -305
- data/node_modules/@types/conventional-commits-parser/package.json +0 -34
- data/node_modules/@types/conventional-commits-parser/ts4.9/index.d.ts +0 -305
- data/node_modules/@types/node/LICENSE +0 -21
- data/node_modules/@types/node/README.md +0 -15
- data/node_modules/@types/node/assert/strict.d.ts +0 -8
- data/node_modules/@types/node/assert.d.ts +0 -1040
- data/node_modules/@types/node/async_hooks.d.ts +0 -541
- data/node_modules/@types/node/buffer.d.ts +0 -2293
- data/node_modules/@types/node/child_process.d.ts +0 -1544
- data/node_modules/@types/node/cluster.d.ts +0 -578
- data/node_modules/@types/node/console.d.ts +0 -452
- data/node_modules/@types/node/constants.d.ts +0 -19
- data/node_modules/@types/node/crypto.d.ts +0 -4451
- data/node_modules/@types/node/dgram.d.ts +0 -596
- data/node_modules/@types/node/diagnostics_channel.d.ts +0 -554
- data/node_modules/@types/node/dns/promises.d.ts +0 -476
- data/node_modules/@types/node/dns.d.ts +0 -865
- data/node_modules/@types/node/dom-events.d.ts +0 -124
- data/node_modules/@types/node/domain.d.ts +0 -170
- data/node_modules/@types/node/events.d.ts +0 -931
- data/node_modules/@types/node/fs/promises.d.ts +0 -1264
- data/node_modules/@types/node/fs.d.ts +0 -4390
- data/node_modules/@types/node/globals.d.ts +0 -510
- data/node_modules/@types/node/globals.global.d.ts +0 -1
- data/node_modules/@types/node/http.d.ts +0 -1921
- data/node_modules/@types/node/http2.d.ts +0 -2418
- data/node_modules/@types/node/https.d.ts +0 -550
- data/node_modules/@types/node/index.d.ts +0 -90
- data/node_modules/@types/node/inspector.d.ts +0 -3696
- data/node_modules/@types/node/module.d.ts +0 -301
- data/node_modules/@types/node/net.d.ts +0 -999
- data/node_modules/@types/node/os.d.ts +0 -495
- data/node_modules/@types/node/package.json +0 -217
- data/node_modules/@types/node/path.d.ts +0 -200
- data/node_modules/@types/node/perf_hooks.d.ts +0 -941
- data/node_modules/@types/node/process.d.ts +0 -1912
- data/node_modules/@types/node/punycode.d.ts +0 -117
- data/node_modules/@types/node/querystring.d.ts +0 -153
- data/node_modules/@types/node/readline/promises.d.ts +0 -150
- data/node_modules/@types/node/readline.d.ts +0 -540
- data/node_modules/@types/node/repl.d.ts +0 -430
- data/node_modules/@types/node/sea.d.ts +0 -153
- data/node_modules/@types/node/sqlite.d.ts +0 -213
- data/node_modules/@types/node/stream/consumers.d.ts +0 -12
- data/node_modules/@types/node/stream/promises.d.ts +0 -83
- data/node_modules/@types/node/stream/web.d.ts +0 -367
- data/node_modules/@types/node/stream.d.ts +0 -1707
- data/node_modules/@types/node/string_decoder.d.ts +0 -67
- data/node_modules/@types/node/test.d.ts +0 -2006
- data/node_modules/@types/node/timers/promises.d.ts +0 -97
- data/node_modules/@types/node/timers.d.ts +0 -240
- data/node_modules/@types/node/tls.d.ts +0 -1220
- data/node_modules/@types/node/trace_events.d.ts +0 -197
- data/node_modules/@types/node/tty.d.ts +0 -208
- data/node_modules/@types/node/url.d.ts +0 -969
- data/node_modules/@types/node/util.d.ts +0 -2298
- data/node_modules/@types/node/v8.d.ts +0 -808
- data/node_modules/@types/node/vm.d.ts +0 -922
- data/node_modules/@types/node/wasi.d.ts +0 -181
- data/node_modules/@types/node/worker_threads.d.ts +0 -712
- data/node_modules/@types/node/zlib.d.ts +0 -539
- data/node_modules/@types/normalize-package-data/LICENSE +0 -21
- data/node_modules/@types/normalize-package-data/README.md +0 -62
- data/node_modules/@types/normalize-package-data/index.d.ts +0 -43
- data/node_modules/@types/normalize-package-data/package.json +0 -25
- data/node_modules/@types/semver/LICENSE +0 -21
- data/node_modules/@types/semver/README.md +0 -15
- data/node_modules/@types/semver/classes/comparator.d.ts +0 -17
- data/node_modules/@types/semver/classes/range.d.ts +0 -21
- data/node_modules/@types/semver/classes/semver.d.ts +0 -64
- data/node_modules/@types/semver/functions/clean.d.ts +0 -8
- data/node_modules/@types/semver/functions/cmp.d.ts +0 -16
- data/node_modules/@types/semver/functions/coerce.d.ts +0 -12
- data/node_modules/@types/semver/functions/compare-build.d.ts +0 -21
- data/node_modules/@types/semver/functions/compare-loose.d.ts +0 -5
- data/node_modules/@types/semver/functions/compare.d.ts +0 -20
- data/node_modules/@types/semver/functions/diff.d.ts +0 -9
- data/node_modules/@types/semver/functions/eq.d.ts +0 -9
- data/node_modules/@types/semver/functions/gt.d.ts +0 -9
- data/node_modules/@types/semver/functions/gte.d.ts +0 -9
- data/node_modules/@types/semver/functions/inc.d.ts +0 -25
- data/node_modules/@types/semver/functions/lt.d.ts +0 -9
- data/node_modules/@types/semver/functions/lte.d.ts +0 -8
- data/node_modules/@types/semver/functions/major.d.ts +0 -9
- data/node_modules/@types/semver/functions/minor.d.ts +0 -9
- data/node_modules/@types/semver/functions/neq.d.ts +0 -9
- data/node_modules/@types/semver/functions/parse.d.ts +0 -12
- data/node_modules/@types/semver/functions/patch.d.ts +0 -9
- data/node_modules/@types/semver/functions/prerelease.d.ts +0 -12
- data/node_modules/@types/semver/functions/rcompare.d.ts +0 -15
- data/node_modules/@types/semver/functions/rsort.d.ts +0 -9
- data/node_modules/@types/semver/functions/satisfies.d.ts +0 -14
- data/node_modules/@types/semver/functions/sort.d.ts +0 -9
- data/node_modules/@types/semver/functions/valid.d.ts +0 -11
- data/node_modules/@types/semver/index.d.ts +0 -129
- data/node_modules/@types/semver/internals/identifiers.d.ts +0 -13
- data/node_modules/@types/semver/package.json +0 -50
- data/node_modules/@types/semver/preload.d.ts +0 -2
- data/node_modules/@types/semver/ranges/gtr.d.ts +0 -14
- data/node_modules/@types/semver/ranges/intersects.d.ts +0 -13
- data/node_modules/@types/semver/ranges/ltr.d.ts +0 -14
- data/node_modules/@types/semver/ranges/max-satisfying.d.ts +0 -14
- data/node_modules/@types/semver/ranges/min-satisfying.d.ts +0 -14
- data/node_modules/@types/semver/ranges/min-version.d.ts +0 -10
- data/node_modules/@types/semver/ranges/outside.d.ts +0 -15
- data/node_modules/@types/semver/ranges/simplify.d.ts +0 -14
- data/node_modules/@types/semver/ranges/subset.d.ts +0 -9
- data/node_modules/@types/semver/ranges/to-comparators.d.ts +0 -9
- data/node_modules/@types/semver/ranges/valid.d.ts +0 -12
- data/node_modules/JSONStream/.travis.yml +0 -8
- data/node_modules/JSONStream/LICENSE.APACHE2 +0 -15
- data/node_modules/JSONStream/LICENSE.MIT +0 -24
- data/node_modules/JSONStream/bin.js +0 -12
- data/node_modules/JSONStream/examples/all_docs.js +0 -13
- data/node_modules/JSONStream/index.js +0 -247
- data/node_modules/JSONStream/package.json +0 -40
- data/node_modules/JSONStream/readme.markdown +0 -207
- data/node_modules/JSONStream/test/bool.js +0 -41
- data/node_modules/JSONStream/test/browser.js +0 -18
- data/node_modules/JSONStream/test/destroy_missing.js +0 -27
- data/node_modules/JSONStream/test/doubledot1.js +0 -29
- data/node_modules/JSONStream/test/doubledot2.js +0 -30
- data/node_modules/JSONStream/test/empty.js +0 -44
- data/node_modules/JSONStream/test/error_contents.js +0 -45
- data/node_modules/JSONStream/test/fixtures/all_npm.json +0 -4030
- data/node_modules/JSONStream/test/fixtures/couch_sample.json +0 -18
- data/node_modules/JSONStream/test/fixtures/depth.json +0 -15
- data/node_modules/JSONStream/test/fixtures/error.json +0 -1
- data/node_modules/JSONStream/test/fixtures/header_footer.json +0 -19
- data/node_modules/JSONStream/test/fn.js +0 -39
- data/node_modules/JSONStream/test/gen.js +0 -135
- data/node_modules/JSONStream/test/header_footer.js +0 -55
- data/node_modules/JSONStream/test/issues.js +0 -34
- data/node_modules/JSONStream/test/keys.js +0 -105
- data/node_modules/JSONStream/test/map.js +0 -40
- data/node_modules/JSONStream/test/multiple_objects.js +0 -36
- data/node_modules/JSONStream/test/multiple_objects_error.js +0 -29
- data/node_modules/JSONStream/test/null.js +0 -28
- data/node_modules/JSONStream/test/parsejson.js +0 -29
- data/node_modules/JSONStream/test/run.js +0 -13
- data/node_modules/JSONStream/test/stringify.js +0 -41
- data/node_modules/JSONStream/test/stringify_object.js +0 -47
- data/node_modules/JSONStream/test/test.js +0 -35
- data/node_modules/JSONStream/test/test2.js +0 -29
- data/node_modules/JSONStream/test/two-ways.js +0 -41
- data/node_modules/add-stream/.jshintrc +0 -25
- data/node_modules/add-stream/.npmignore +0 -7
- data/node_modules/add-stream/.travis.yml +0 -4
- data/node_modules/add-stream/README.md +0 -38
- data/node_modules/add-stream/index.js +0 -56
- data/node_modules/add-stream/package.json +0 -34
- data/node_modules/add-stream/test/spec.js +0 -64
- data/node_modules/ajv/.runkit_example.js +0 -23
- data/node_modules/ajv/LICENSE +0 -22
- data/node_modules/ajv/README.md +0 -207
- data/node_modules/ajv/dist/2019.d.ts +0 -19
- data/node_modules/ajv/dist/2019.js +0 -61
- data/node_modules/ajv/dist/2019.js.map +0 -1
- data/node_modules/ajv/dist/2020.d.ts +0 -19
- data/node_modules/ajv/dist/2020.js +0 -55
- data/node_modules/ajv/dist/2020.js.map +0 -1
- data/node_modules/ajv/dist/ajv.d.ts +0 -18
- data/node_modules/ajv/dist/ajv.js +0 -50
- data/node_modules/ajv/dist/ajv.js.map +0 -1
- data/node_modules/ajv/dist/compile/codegen/code.d.ts +0 -40
- data/node_modules/ajv/dist/compile/codegen/code.js +0 -156
- data/node_modules/ajv/dist/compile/codegen/code.js.map +0 -1
- data/node_modules/ajv/dist/compile/codegen/index.d.ts +0 -79
- data/node_modules/ajv/dist/compile/codegen/index.js +0 -697
- data/node_modules/ajv/dist/compile/codegen/index.js.map +0 -1
- data/node_modules/ajv/dist/compile/codegen/scope.d.ts +0 -79
- data/node_modules/ajv/dist/compile/codegen/scope.js +0 -143
- data/node_modules/ajv/dist/compile/codegen/scope.js.map +0 -1
- data/node_modules/ajv/dist/compile/errors.d.ts +0 -13
- data/node_modules/ajv/dist/compile/errors.js +0 -123
- data/node_modules/ajv/dist/compile/errors.js.map +0 -1
- data/node_modules/ajv/dist/compile/index.d.ts +0 -80
- data/node_modules/ajv/dist/compile/index.js +0 -242
- data/node_modules/ajv/dist/compile/index.js.map +0 -1
- data/node_modules/ajv/dist/compile/jtd/parse.d.ts +0 -4
- data/node_modules/ajv/dist/compile/jtd/parse.js +0 -350
- data/node_modules/ajv/dist/compile/jtd/parse.js.map +0 -1
- data/node_modules/ajv/dist/compile/jtd/serialize.d.ts +0 -4
- data/node_modules/ajv/dist/compile/jtd/serialize.js +0 -229
- data/node_modules/ajv/dist/compile/jtd/serialize.js.map +0 -1
- data/node_modules/ajv/dist/compile/jtd/types.d.ts +0 -6
- data/node_modules/ajv/dist/compile/jtd/types.js +0 -14
- data/node_modules/ajv/dist/compile/jtd/types.js.map +0 -1
- data/node_modules/ajv/dist/compile/names.d.ts +0 -20
- data/node_modules/ajv/dist/compile/names.js +0 -28
- data/node_modules/ajv/dist/compile/names.js.map +0 -1
- data/node_modules/ajv/dist/compile/ref_error.d.ts +0 -6
- data/node_modules/ajv/dist/compile/ref_error.js +0 -12
- data/node_modules/ajv/dist/compile/ref_error.js.map +0 -1
- data/node_modules/ajv/dist/compile/resolve.d.ts +0 -12
- data/node_modules/ajv/dist/compile/resolve.js +0 -155
- data/node_modules/ajv/dist/compile/resolve.js.map +0 -1
- data/node_modules/ajv/dist/compile/rules.d.ts +0 -28
- data/node_modules/ajv/dist/compile/rules.js +0 -26
- data/node_modules/ajv/dist/compile/rules.js.map +0 -1
- data/node_modules/ajv/dist/compile/util.d.ts +0 -40
- data/node_modules/ajv/dist/compile/util.js +0 -178
- data/node_modules/ajv/dist/compile/util.js.map +0 -1
- data/node_modules/ajv/dist/compile/validate/applicability.d.ts +0 -6
- data/node_modules/ajv/dist/compile/validate/applicability.js +0 -19
- data/node_modules/ajv/dist/compile/validate/applicability.js.map +0 -1
- data/node_modules/ajv/dist/compile/validate/boolSchema.d.ts +0 -4
- data/node_modules/ajv/dist/compile/validate/boolSchema.js +0 -50
- data/node_modules/ajv/dist/compile/validate/boolSchema.js.map +0 -1
- data/node_modules/ajv/dist/compile/validate/dataType.d.ts +0 -17
- data/node_modules/ajv/dist/compile/validate/dataType.js +0 -203
- data/node_modules/ajv/dist/compile/validate/dataType.js.map +0 -1
- data/node_modules/ajv/dist/compile/validate/defaults.d.ts +0 -2
- data/node_modules/ajv/dist/compile/validate/defaults.js +0 -35
- data/node_modules/ajv/dist/compile/validate/defaults.js.map +0 -1
- data/node_modules/ajv/dist/compile/validate/index.d.ts +0 -42
- data/node_modules/ajv/dist/compile/validate/index.js +0 -520
- data/node_modules/ajv/dist/compile/validate/index.js.map +0 -1
- data/node_modules/ajv/dist/compile/validate/keyword.d.ts +0 -8
- data/node_modules/ajv/dist/compile/validate/keyword.js +0 -124
- data/node_modules/ajv/dist/compile/validate/keyword.js.map +0 -1
- data/node_modules/ajv/dist/compile/validate/subschema.d.ts +0 -47
- data/node_modules/ajv/dist/compile/validate/subschema.js +0 -81
- data/node_modules/ajv/dist/compile/validate/subschema.js.map +0 -1
- data/node_modules/ajv/dist/core.d.ts +0 -173
- data/node_modules/ajv/dist/core.js +0 -618
- data/node_modules/ajv/dist/core.js.map +0 -1
- data/node_modules/ajv/dist/jtd.d.ts +0 -47
- data/node_modules/ajv/dist/jtd.js +0 -72
- data/node_modules/ajv/dist/jtd.js.map +0 -1
- data/node_modules/ajv/dist/refs/data.json +0 -13
- data/node_modules/ajv/dist/refs/json-schema-2019-09/index.d.ts +0 -2
- data/node_modules/ajv/dist/refs/json-schema-2019-09/index.js +0 -28
- data/node_modules/ajv/dist/refs/json-schema-2019-09/index.js.map +0 -1
- data/node_modules/ajv/dist/refs/json-schema-2019-09/meta/applicator.json +0 -53
- data/node_modules/ajv/dist/refs/json-schema-2019-09/meta/content.json +0 -17
- data/node_modules/ajv/dist/refs/json-schema-2019-09/meta/core.json +0 -57
- data/node_modules/ajv/dist/refs/json-schema-2019-09/meta/format.json +0 -14
- data/node_modules/ajv/dist/refs/json-schema-2019-09/meta/meta-data.json +0 -37
- data/node_modules/ajv/dist/refs/json-schema-2019-09/meta/validation.json +0 -90
- data/node_modules/ajv/dist/refs/json-schema-2019-09/schema.json +0 -39
- data/node_modules/ajv/dist/refs/json-schema-2020-12/index.d.ts +0 -2
- data/node_modules/ajv/dist/refs/json-schema-2020-12/index.js +0 -30
- data/node_modules/ajv/dist/refs/json-schema-2020-12/index.js.map +0 -1
- data/node_modules/ajv/dist/refs/json-schema-2020-12/meta/applicator.json +0 -48
- data/node_modules/ajv/dist/refs/json-schema-2020-12/meta/content.json +0 -17
- data/node_modules/ajv/dist/refs/json-schema-2020-12/meta/core.json +0 -51
- data/node_modules/ajv/dist/refs/json-schema-2020-12/meta/format-annotation.json +0 -14
- data/node_modules/ajv/dist/refs/json-schema-2020-12/meta/meta-data.json +0 -37
- data/node_modules/ajv/dist/refs/json-schema-2020-12/meta/unevaluated.json +0 -15
- data/node_modules/ajv/dist/refs/json-schema-2020-12/meta/validation.json +0 -90
- data/node_modules/ajv/dist/refs/json-schema-2020-12/schema.json +0 -55
- data/node_modules/ajv/dist/refs/json-schema-draft-06.json +0 -137
- data/node_modules/ajv/dist/refs/json-schema-draft-07.json +0 -151
- data/node_modules/ajv/dist/refs/json-schema-secure.json +0 -88
- data/node_modules/ajv/dist/refs/jtd-schema.d.ts +0 -3
- data/node_modules/ajv/dist/refs/jtd-schema.js +0 -118
- data/node_modules/ajv/dist/refs/jtd-schema.js.map +0 -1
- data/node_modules/ajv/dist/runtime/equal.d.ts +0 -6
- data/node_modules/ajv/dist/runtime/equal.js +0 -7
- data/node_modules/ajv/dist/runtime/equal.js.map +0 -1
- data/node_modules/ajv/dist/runtime/parseJson.d.ts +0 -18
- data/node_modules/ajv/dist/runtime/parseJson.js +0 -185
- data/node_modules/ajv/dist/runtime/parseJson.js.map +0 -1
- data/node_modules/ajv/dist/runtime/quote.d.ts +0 -5
- data/node_modules/ajv/dist/runtime/quote.js +0 -30
- data/node_modules/ajv/dist/runtime/quote.js.map +0 -1
- data/node_modules/ajv/dist/runtime/re2.d.ts +0 -6
- data/node_modules/ajv/dist/runtime/re2.js +0 -6
- data/node_modules/ajv/dist/runtime/re2.js.map +0 -1
- data/node_modules/ajv/dist/runtime/timestamp.d.ts +0 -5
- data/node_modules/ajv/dist/runtime/timestamp.js +0 -42
- data/node_modules/ajv/dist/runtime/timestamp.js.map +0 -1
- data/node_modules/ajv/dist/runtime/ucs2length.d.ts +0 -5
- data/node_modules/ajv/dist/runtime/ucs2length.js +0 -24
- data/node_modules/ajv/dist/runtime/ucs2length.js.map +0 -1
- data/node_modules/ajv/dist/runtime/uri.d.ts +0 -6
- data/node_modules/ajv/dist/runtime/uri.js +0 -6
- data/node_modules/ajv/dist/runtime/uri.js.map +0 -1
- data/node_modules/ajv/dist/runtime/validation_error.d.ts +0 -7
- data/node_modules/ajv/dist/runtime/validation_error.js +0 -11
- data/node_modules/ajv/dist/runtime/validation_error.js.map +0 -1
- data/node_modules/ajv/dist/standalone/index.d.ts +0 -6
- data/node_modules/ajv/dist/standalone/index.js +0 -90
- data/node_modules/ajv/dist/standalone/index.js.map +0 -1
- data/node_modules/ajv/dist/standalone/instance.d.ts +0 -12
- data/node_modules/ajv/dist/standalone/instance.js +0 -35
- data/node_modules/ajv/dist/standalone/instance.js.map +0 -1
- data/node_modules/ajv/dist/types/index.d.ts +0 -183
- data/node_modules/ajv/dist/types/index.js +0 -3
- data/node_modules/ajv/dist/types/index.js.map +0 -1
- data/node_modules/ajv/dist/types/json-schema.d.ts +0 -125
- data/node_modules/ajv/dist/types/json-schema.js +0 -3
- data/node_modules/ajv/dist/types/json-schema.js.map +0 -1
- data/node_modules/ajv/dist/types/jtd-schema.d.ts +0 -174
- data/node_modules/ajv/dist/types/jtd-schema.js +0 -3
- data/node_modules/ajv/dist/types/jtd-schema.js.map +0 -1
- data/node_modules/ajv/dist/vocabularies/applicator/additionalItems.d.ts +0 -8
- data/node_modules/ajv/dist/vocabularies/applicator/additionalItems.js +0 -49
- data/node_modules/ajv/dist/vocabularies/applicator/additionalItems.js.map +0 -1
- data/node_modules/ajv/dist/vocabularies/applicator/additionalProperties.d.ts +0 -6
- data/node_modules/ajv/dist/vocabularies/applicator/additionalProperties.js +0 -106
- data/node_modules/ajv/dist/vocabularies/applicator/additionalProperties.js.map +0 -1
- data/node_modules/ajv/dist/vocabularies/applicator/allOf.d.ts +0 -3
- data/node_modules/ajv/dist/vocabularies/applicator/allOf.js +0 -23
- data/node_modules/ajv/dist/vocabularies/applicator/allOf.js.map +0 -1
- data/node_modules/ajv/dist/vocabularies/applicator/anyOf.d.ts +0 -4
- data/node_modules/ajv/dist/vocabularies/applicator/anyOf.js +0 -12
- data/node_modules/ajv/dist/vocabularies/applicator/anyOf.js.map +0 -1
- data/node_modules/ajv/dist/vocabularies/applicator/contains.d.ts +0 -7
- data/node_modules/ajv/dist/vocabularies/applicator/contains.js +0 -95
- data/node_modules/ajv/dist/vocabularies/applicator/contains.js.map +0 -1
- data/node_modules/ajv/dist/vocabularies/applicator/dependencies.d.ts +0 -21
- data/node_modules/ajv/dist/vocabularies/applicator/dependencies.js +0 -85
- data/node_modules/ajv/dist/vocabularies/applicator/dependencies.js.map +0 -1
- data/node_modules/ajv/dist/vocabularies/applicator/dependentSchemas.d.ts +0 -3
- data/node_modules/ajv/dist/vocabularies/applicator/dependentSchemas.js +0 -11
- data/node_modules/ajv/dist/vocabularies/applicator/dependentSchemas.js.map +0 -1
- data/node_modules/ajv/dist/vocabularies/applicator/if.d.ts +0 -6
- data/node_modules/ajv/dist/vocabularies/applicator/if.js +0 -66
- data/node_modules/ajv/dist/vocabularies/applicator/if.js.map +0 -1
- data/node_modules/ajv/dist/vocabularies/applicator/index.d.ts +0 -13
- data/node_modules/ajv/dist/vocabularies/applicator/index.js +0 -44
- data/node_modules/ajv/dist/vocabularies/applicator/index.js.map +0 -1
- data/node_modules/ajv/dist/vocabularies/applicator/items.d.ts +0 -5
- data/node_modules/ajv/dist/vocabularies/applicator/items.js +0 -52
- data/node_modules/ajv/dist/vocabularies/applicator/items.js.map +0 -1
- data/node_modules/ajv/dist/vocabularies/applicator/items2020.d.ts +0 -6
- data/node_modules/ajv/dist/vocabularies/applicator/items2020.js +0 -30
- data/node_modules/ajv/dist/vocabularies/applicator/items2020.js.map +0 -1
- data/node_modules/ajv/dist/vocabularies/applicator/not.d.ts +0 -4
- data/node_modules/ajv/dist/vocabularies/applicator/not.js +0 -26
- data/node_modules/ajv/dist/vocabularies/applicator/not.js.map +0 -1
- data/node_modules/ajv/dist/vocabularies/applicator/oneOf.d.ts +0 -6
- data/node_modules/ajv/dist/vocabularies/applicator/oneOf.js +0 -60
- data/node_modules/ajv/dist/vocabularies/applicator/oneOf.js.map +0 -1
- data/node_modules/ajv/dist/vocabularies/applicator/patternProperties.d.ts +0 -3
- data/node_modules/ajv/dist/vocabularies/applicator/patternProperties.js +0 -75
- data/node_modules/ajv/dist/vocabularies/applicator/patternProperties.js.map +0 -1
- data/node_modules/ajv/dist/vocabularies/applicator/prefixItems.d.ts +0 -3
- data/node_modules/ajv/dist/vocabularies/applicator/prefixItems.js +0 -12
- data/node_modules/ajv/dist/vocabularies/applicator/prefixItems.js.map +0 -1
- data/node_modules/ajv/dist/vocabularies/applicator/properties.d.ts +0 -3
- data/node_modules/ajv/dist/vocabularies/applicator/properties.js +0 -54
- data/node_modules/ajv/dist/vocabularies/applicator/properties.js.map +0 -1
- data/node_modules/ajv/dist/vocabularies/applicator/propertyNames.d.ts +0 -6
- data/node_modules/ajv/dist/vocabularies/applicator/propertyNames.js +0 -38
- data/node_modules/ajv/dist/vocabularies/applicator/propertyNames.js.map +0 -1
- data/node_modules/ajv/dist/vocabularies/applicator/thenElse.d.ts +0 -3
- data/node_modules/ajv/dist/vocabularies/applicator/thenElse.js +0 -13
- data/node_modules/ajv/dist/vocabularies/applicator/thenElse.js.map +0 -1
- data/node_modules/ajv/dist/vocabularies/code.d.ts +0 -17
- data/node_modules/ajv/dist/vocabularies/code.js +0 -131
- data/node_modules/ajv/dist/vocabularies/code.js.map +0 -1
- data/node_modules/ajv/dist/vocabularies/core/id.d.ts +0 -3
- data/node_modules/ajv/dist/vocabularies/core/id.js +0 -10
- data/node_modules/ajv/dist/vocabularies/core/id.js.map +0 -1
- data/node_modules/ajv/dist/vocabularies/core/index.d.ts +0 -3
- data/node_modules/ajv/dist/vocabularies/core/index.js +0 -16
- data/node_modules/ajv/dist/vocabularies/core/index.js.map +0 -1
- data/node_modules/ajv/dist/vocabularies/core/ref.d.ts +0 -8
- data/node_modules/ajv/dist/vocabularies/core/ref.js +0 -122
- data/node_modules/ajv/dist/vocabularies/core/ref.js.map +0 -1
- data/node_modules/ajv/dist/vocabularies/discriminator/index.d.ts +0 -5
- data/node_modules/ajv/dist/vocabularies/discriminator/index.js +0 -104
- data/node_modules/ajv/dist/vocabularies/discriminator/index.js.map +0 -1
- data/node_modules/ajv/dist/vocabularies/discriminator/types.d.ts +0 -10
- data/node_modules/ajv/dist/vocabularies/discriminator/types.js +0 -9
- data/node_modules/ajv/dist/vocabularies/discriminator/types.js.map +0 -1
- data/node_modules/ajv/dist/vocabularies/draft2020.d.ts +0 -3
- data/node_modules/ajv/dist/vocabularies/draft2020.js +0 -23
- data/node_modules/ajv/dist/vocabularies/draft2020.js.map +0 -1
- data/node_modules/ajv/dist/vocabularies/draft7.d.ts +0 -3
- data/node_modules/ajv/dist/vocabularies/draft7.js +0 -17
- data/node_modules/ajv/dist/vocabularies/draft7.js.map +0 -1
- data/node_modules/ajv/dist/vocabularies/dynamic/dynamicAnchor.d.ts +0 -5
- data/node_modules/ajv/dist/vocabularies/dynamic/dynamicAnchor.js +0 -30
- data/node_modules/ajv/dist/vocabularies/dynamic/dynamicAnchor.js.map +0 -1
- data/node_modules/ajv/dist/vocabularies/dynamic/dynamicRef.d.ts +0 -5
- data/node_modules/ajv/dist/vocabularies/dynamic/dynamicRef.js +0 -51
- data/node_modules/ajv/dist/vocabularies/dynamic/dynamicRef.js.map +0 -1
- data/node_modules/ajv/dist/vocabularies/dynamic/index.d.ts +0 -3
- data/node_modules/ajv/dist/vocabularies/dynamic/index.js +0 -9
- data/node_modules/ajv/dist/vocabularies/dynamic/index.js.map +0 -1
- data/node_modules/ajv/dist/vocabularies/dynamic/recursiveAnchor.d.ts +0 -3
- data/node_modules/ajv/dist/vocabularies/dynamic/recursiveAnchor.js +0 -16
- data/node_modules/ajv/dist/vocabularies/dynamic/recursiveAnchor.js.map +0 -1
- data/node_modules/ajv/dist/vocabularies/dynamic/recursiveRef.d.ts +0 -3
- data/node_modules/ajv/dist/vocabularies/dynamic/recursiveRef.js +0 -10
- data/node_modules/ajv/dist/vocabularies/dynamic/recursiveRef.js.map +0 -1
- data/node_modules/ajv/dist/vocabularies/errors.d.ts +0 -9
- data/node_modules/ajv/dist/vocabularies/errors.js +0 -3
- data/node_modules/ajv/dist/vocabularies/errors.js.map +0 -1
- data/node_modules/ajv/dist/vocabularies/format/format.d.ts +0 -8
- data/node_modules/ajv/dist/vocabularies/format/format.js +0 -92
- data/node_modules/ajv/dist/vocabularies/format/format.js.map +0 -1
- data/node_modules/ajv/dist/vocabularies/format/index.d.ts +0 -3
- data/node_modules/ajv/dist/vocabularies/format/index.js +0 -6
- data/node_modules/ajv/dist/vocabularies/format/index.js.map +0 -1
- data/node_modules/ajv/dist/vocabularies/jtd/discriminator.d.ts +0 -6
- data/node_modules/ajv/dist/vocabularies/jtd/discriminator.js +0 -71
- data/node_modules/ajv/dist/vocabularies/jtd/discriminator.js.map +0 -1
- data/node_modules/ajv/dist/vocabularies/jtd/elements.d.ts +0 -5
- data/node_modules/ajv/dist/vocabularies/jtd/elements.js +0 -24
- data/node_modules/ajv/dist/vocabularies/jtd/elements.js.map +0 -1
- data/node_modules/ajv/dist/vocabularies/jtd/enum.d.ts +0 -6
- data/node_modules/ajv/dist/vocabularies/jtd/enum.js +0 -43
- data/node_modules/ajv/dist/vocabularies/jtd/enum.js.map +0 -1
- data/node_modules/ajv/dist/vocabularies/jtd/error.d.ts +0 -9
- data/node_modules/ajv/dist/vocabularies/jtd/error.js +0 -20
- data/node_modules/ajv/dist/vocabularies/jtd/error.js.map +0 -1
- data/node_modules/ajv/dist/vocabularies/jtd/index.d.ts +0 -10
- data/node_modules/ajv/dist/vocabularies/jtd/index.js +0 -29
- data/node_modules/ajv/dist/vocabularies/jtd/index.js.map +0 -1
- data/node_modules/ajv/dist/vocabularies/jtd/metadata.d.ts +0 -5
- data/node_modules/ajv/dist/vocabularies/jtd/metadata.js +0 -25
- data/node_modules/ajv/dist/vocabularies/jtd/metadata.js.map +0 -1
- data/node_modules/ajv/dist/vocabularies/jtd/nullable.d.ts +0 -4
- data/node_modules/ajv/dist/vocabularies/jtd/nullable.js +0 -22
- data/node_modules/ajv/dist/vocabularies/jtd/nullable.js.map +0 -1
- data/node_modules/ajv/dist/vocabularies/jtd/optionalProperties.d.ts +0 -3
- data/node_modules/ajv/dist/vocabularies/jtd/optionalProperties.js +0 -15
- data/node_modules/ajv/dist/vocabularies/jtd/optionalProperties.js.map +0 -1
- data/node_modules/ajv/dist/vocabularies/jtd/properties.d.ts +0 -22
- data/node_modules/ajv/dist/vocabularies/jtd/properties.js +0 -149
- data/node_modules/ajv/dist/vocabularies/jtd/properties.js.map +0 -1
- data/node_modules/ajv/dist/vocabularies/jtd/ref.d.ts +0 -4
- data/node_modules/ajv/dist/vocabularies/jtd/ref.js +0 -67
- data/node_modules/ajv/dist/vocabularies/jtd/ref.js.map +0 -1
- data/node_modules/ajv/dist/vocabularies/jtd/type.d.ts +0 -10
- data/node_modules/ajv/dist/vocabularies/jtd/type.js +0 -69
- data/node_modules/ajv/dist/vocabularies/jtd/type.js.map +0 -1
- data/node_modules/ajv/dist/vocabularies/jtd/union.d.ts +0 -3
- data/node_modules/ajv/dist/vocabularies/jtd/union.js +0 -12
- data/node_modules/ajv/dist/vocabularies/jtd/union.js.map +0 -1
- data/node_modules/ajv/dist/vocabularies/jtd/values.d.ts +0 -5
- data/node_modules/ajv/dist/vocabularies/jtd/values.js +0 -51
- data/node_modules/ajv/dist/vocabularies/jtd/values.js.map +0 -1
- data/node_modules/ajv/dist/vocabularies/metadata.d.ts +0 -3
- data/node_modules/ajv/dist/vocabularies/metadata.js +0 -18
- data/node_modules/ajv/dist/vocabularies/metadata.js.map +0 -1
- data/node_modules/ajv/dist/vocabularies/next.d.ts +0 -3
- data/node_modules/ajv/dist/vocabularies/next.js +0 -8
- data/node_modules/ajv/dist/vocabularies/next.js.map +0 -1
- data/node_modules/ajv/dist/vocabularies/unevaluated/index.d.ts +0 -3
- data/node_modules/ajv/dist/vocabularies/unevaluated/index.js +0 -7
- data/node_modules/ajv/dist/vocabularies/unevaluated/index.js.map +0 -1
- data/node_modules/ajv/dist/vocabularies/unevaluated/unevaluatedItems.d.ts +0 -6
- data/node_modules/ajv/dist/vocabularies/unevaluated/unevaluatedItems.js +0 -40
- data/node_modules/ajv/dist/vocabularies/unevaluated/unevaluatedItems.js.map +0 -1
- data/node_modules/ajv/dist/vocabularies/unevaluated/unevaluatedProperties.d.ts +0 -6
- data/node_modules/ajv/dist/vocabularies/unevaluated/unevaluatedProperties.js +0 -65
- data/node_modules/ajv/dist/vocabularies/unevaluated/unevaluatedProperties.js.map +0 -1
- data/node_modules/ajv/dist/vocabularies/validation/const.d.ts +0 -6
- data/node_modules/ajv/dist/vocabularies/validation/const.js +0 -25
- data/node_modules/ajv/dist/vocabularies/validation/const.js.map +0 -1
- data/node_modules/ajv/dist/vocabularies/validation/dependentRequired.d.ts +0 -5
- data/node_modules/ajv/dist/vocabularies/validation/dependentRequired.js +0 -12
- data/node_modules/ajv/dist/vocabularies/validation/dependentRequired.js.map +0 -1
- data/node_modules/ajv/dist/vocabularies/validation/enum.d.ts +0 -8
- data/node_modules/ajv/dist/vocabularies/validation/enum.js +0 -48
- data/node_modules/ajv/dist/vocabularies/validation/enum.js.map +0 -1
- data/node_modules/ajv/dist/vocabularies/validation/index.d.ts +0 -16
- data/node_modules/ajv/dist/vocabularies/validation/index.js +0 -33
- data/node_modules/ajv/dist/vocabularies/validation/index.js.map +0 -1
- data/node_modules/ajv/dist/vocabularies/validation/limitContains.d.ts +0 -3
- data/node_modules/ajv/dist/vocabularies/validation/limitContains.js +0 -15
- data/node_modules/ajv/dist/vocabularies/validation/limitContains.js.map +0 -1
- data/node_modules/ajv/dist/vocabularies/validation/limitItems.d.ts +0 -3
- data/node_modules/ajv/dist/vocabularies/validation/limitItems.js +0 -24
- data/node_modules/ajv/dist/vocabularies/validation/limitItems.js.map +0 -1
- data/node_modules/ajv/dist/vocabularies/validation/limitLength.d.ts +0 -3
- data/node_modules/ajv/dist/vocabularies/validation/limitLength.js +0 -27
- data/node_modules/ajv/dist/vocabularies/validation/limitLength.js.map +0 -1
- data/node_modules/ajv/dist/vocabularies/validation/limitNumber.d.ts +0 -11
- data/node_modules/ajv/dist/vocabularies/validation/limitNumber.js +0 -27
- data/node_modules/ajv/dist/vocabularies/validation/limitNumber.js.map +0 -1
- data/node_modules/ajv/dist/vocabularies/validation/limitProperties.d.ts +0 -3
- data/node_modules/ajv/dist/vocabularies/validation/limitProperties.js +0 -24
- data/node_modules/ajv/dist/vocabularies/validation/limitProperties.js.map +0 -1
- data/node_modules/ajv/dist/vocabularies/validation/multipleOf.d.ts +0 -8
- data/node_modules/ajv/dist/vocabularies/validation/multipleOf.js +0 -26
- data/node_modules/ajv/dist/vocabularies/validation/multipleOf.js.map +0 -1
- data/node_modules/ajv/dist/vocabularies/validation/pattern.d.ts +0 -8
- data/node_modules/ajv/dist/vocabularies/validation/pattern.js +0 -24
- data/node_modules/ajv/dist/vocabularies/validation/pattern.js.map +0 -1
- data/node_modules/ajv/dist/vocabularies/validation/required.d.ts +0 -8
- data/node_modules/ajv/dist/vocabularies/validation/required.js +0 -79
- data/node_modules/ajv/dist/vocabularies/validation/required.js.map +0 -1
- data/node_modules/ajv/dist/vocabularies/validation/uniqueItems.d.ts +0 -9
- data/node_modules/ajv/dist/vocabularies/validation/uniqueItems.js +0 -64
- data/node_modules/ajv/dist/vocabularies/validation/uniqueItems.js.map +0 -1
- data/node_modules/ajv/lib/2019.ts +0 -81
- data/node_modules/ajv/lib/2020.ts +0 -75
- data/node_modules/ajv/lib/ajv.ts +0 -70
- data/node_modules/ajv/lib/compile/codegen/code.ts +0 -169
- data/node_modules/ajv/lib/compile/codegen/index.ts +0 -852
- data/node_modules/ajv/lib/compile/codegen/scope.ts +0 -215
- data/node_modules/ajv/lib/compile/errors.ts +0 -184
- data/node_modules/ajv/lib/compile/index.ts +0 -324
- data/node_modules/ajv/lib/compile/jtd/parse.ts +0 -411
- data/node_modules/ajv/lib/compile/jtd/serialize.ts +0 -266
- data/node_modules/ajv/lib/compile/jtd/types.ts +0 -16
- data/node_modules/ajv/lib/compile/names.ts +0 -27
- data/node_modules/ajv/lib/compile/ref_error.ts +0 -13
- data/node_modules/ajv/lib/compile/resolve.ts +0 -149
- data/node_modules/ajv/lib/compile/rules.ts +0 -50
- data/node_modules/ajv/lib/compile/util.ts +0 -213
- data/node_modules/ajv/lib/compile/validate/applicability.ts +0 -22
- data/node_modules/ajv/lib/compile/validate/boolSchema.ts +0 -47
- data/node_modules/ajv/lib/compile/validate/dataType.ts +0 -230
- data/node_modules/ajv/lib/compile/validate/defaults.ts +0 -32
- data/node_modules/ajv/lib/compile/validate/index.ts +0 -582
- data/node_modules/ajv/lib/compile/validate/keyword.ts +0 -171
- data/node_modules/ajv/lib/compile/validate/subschema.ts +0 -135
- data/node_modules/ajv/lib/core.ts +0 -891
- data/node_modules/ajv/lib/jtd.ts +0 -132
- data/node_modules/ajv/lib/refs/data.json +0 -13
- data/node_modules/ajv/lib/refs/json-schema-2019-09/index.ts +0 -28
- data/node_modules/ajv/lib/refs/json-schema-2019-09/meta/applicator.json +0 -53
- data/node_modules/ajv/lib/refs/json-schema-2019-09/meta/content.json +0 -17
- data/node_modules/ajv/lib/refs/json-schema-2019-09/meta/core.json +0 -57
- data/node_modules/ajv/lib/refs/json-schema-2019-09/meta/format.json +0 -14
- data/node_modules/ajv/lib/refs/json-schema-2019-09/meta/meta-data.json +0 -37
- data/node_modules/ajv/lib/refs/json-schema-2019-09/meta/validation.json +0 -90
- data/node_modules/ajv/lib/refs/json-schema-2019-09/schema.json +0 -39
- data/node_modules/ajv/lib/refs/json-schema-2020-12/index.ts +0 -30
- data/node_modules/ajv/lib/refs/json-schema-2020-12/meta/applicator.json +0 -48
- data/node_modules/ajv/lib/refs/json-schema-2020-12/meta/content.json +0 -17
- data/node_modules/ajv/lib/refs/json-schema-2020-12/meta/core.json +0 -51
- data/node_modules/ajv/lib/refs/json-schema-2020-12/meta/format-annotation.json +0 -14
- data/node_modules/ajv/lib/refs/json-schema-2020-12/meta/meta-data.json +0 -37
- data/node_modules/ajv/lib/refs/json-schema-2020-12/meta/unevaluated.json +0 -15
- data/node_modules/ajv/lib/refs/json-schema-2020-12/meta/validation.json +0 -90
- data/node_modules/ajv/lib/refs/json-schema-2020-12/schema.json +0 -55
- data/node_modules/ajv/lib/refs/json-schema-draft-06.json +0 -137
- data/node_modules/ajv/lib/refs/json-schema-draft-07.json +0 -151
- data/node_modules/ajv/lib/refs/json-schema-secure.json +0 -88
- data/node_modules/ajv/lib/refs/jtd-schema.ts +0 -130
- data/node_modules/ajv/lib/runtime/equal.ts +0 -7
- data/node_modules/ajv/lib/runtime/parseJson.ts +0 -177
- data/node_modules/ajv/lib/runtime/quote.ts +0 -31
- data/node_modules/ajv/lib/runtime/re2.ts +0 -6
- data/node_modules/ajv/lib/runtime/timestamp.ts +0 -46
- data/node_modules/ajv/lib/runtime/ucs2length.ts +0 -20
- data/node_modules/ajv/lib/runtime/uri.ts +0 -6
- data/node_modules/ajv/lib/runtime/validation_error.ts +0 -13
- data/node_modules/ajv/lib/standalone/index.ts +0 -100
- data/node_modules/ajv/lib/standalone/instance.ts +0 -36
- data/node_modules/ajv/lib/types/index.ts +0 -244
- data/node_modules/ajv/lib/types/json-schema.ts +0 -187
- data/node_modules/ajv/lib/types/jtd-schema.ts +0 -273
- data/node_modules/ajv/lib/vocabularies/applicator/additionalItems.ts +0 -56
- data/node_modules/ajv/lib/vocabularies/applicator/additionalProperties.ts +0 -118
- data/node_modules/ajv/lib/vocabularies/applicator/allOf.ts +0 -22
- data/node_modules/ajv/lib/vocabularies/applicator/anyOf.ts +0 -14
- data/node_modules/ajv/lib/vocabularies/applicator/contains.ts +0 -109
- data/node_modules/ajv/lib/vocabularies/applicator/dependencies.ts +0 -112
- data/node_modules/ajv/lib/vocabularies/applicator/dependentSchemas.ts +0 -11
- data/node_modules/ajv/lib/vocabularies/applicator/if.ts +0 -80
- data/node_modules/ajv/lib/vocabularies/applicator/index.ts +0 -53
- data/node_modules/ajv/lib/vocabularies/applicator/items.ts +0 -59
- data/node_modules/ajv/lib/vocabularies/applicator/items2020.ts +0 -36
- data/node_modules/ajv/lib/vocabularies/applicator/not.ts +0 -38
- data/node_modules/ajv/lib/vocabularies/applicator/oneOf.ts +0 -82
- data/node_modules/ajv/lib/vocabularies/applicator/patternProperties.ts +0 -91
- data/node_modules/ajv/lib/vocabularies/applicator/prefixItems.ts +0 -12
- data/node_modules/ajv/lib/vocabularies/applicator/properties.ts +0 -57
- data/node_modules/ajv/lib/vocabularies/applicator/propertyNames.ts +0 -50
- data/node_modules/ajv/lib/vocabularies/applicator/thenElse.ts +0 -13
- data/node_modules/ajv/lib/vocabularies/code.ts +0 -168
- data/node_modules/ajv/lib/vocabularies/core/id.ts +0 -10
- data/node_modules/ajv/lib/vocabularies/core/index.ts +0 -16
- data/node_modules/ajv/lib/vocabularies/core/ref.ts +0 -129
- data/node_modules/ajv/lib/vocabularies/discriminator/index.ts +0 -113
- data/node_modules/ajv/lib/vocabularies/discriminator/types.ts +0 -12
- data/node_modules/ajv/lib/vocabularies/draft2020.ts +0 -23
- data/node_modules/ajv/lib/vocabularies/draft7.ts +0 -17
- data/node_modules/ajv/lib/vocabularies/dynamic/dynamicAnchor.ts +0 -31
- data/node_modules/ajv/lib/vocabularies/dynamic/dynamicRef.ts +0 -51
- data/node_modules/ajv/lib/vocabularies/dynamic/index.ts +0 -9
- data/node_modules/ajv/lib/vocabularies/dynamic/recursiveAnchor.ts +0 -14
- data/node_modules/ajv/lib/vocabularies/dynamic/recursiveRef.ts +0 -10
- data/node_modules/ajv/lib/vocabularies/errors.ts +0 -18
- data/node_modules/ajv/lib/vocabularies/format/format.ts +0 -120
- data/node_modules/ajv/lib/vocabularies/format/index.ts +0 -6
- data/node_modules/ajv/lib/vocabularies/jtd/discriminator.ts +0 -89
- data/node_modules/ajv/lib/vocabularies/jtd/elements.ts +0 -32
- data/node_modules/ajv/lib/vocabularies/jtd/enum.ts +0 -45
- data/node_modules/ajv/lib/vocabularies/jtd/error.ts +0 -23
- data/node_modules/ajv/lib/vocabularies/jtd/index.ts +0 -37
- data/node_modules/ajv/lib/vocabularies/jtd/metadata.ts +0 -24
- data/node_modules/ajv/lib/vocabularies/jtd/nullable.ts +0 -21
- data/node_modules/ajv/lib/vocabularies/jtd/optionalProperties.ts +0 -15
- data/node_modules/ajv/lib/vocabularies/jtd/properties.ts +0 -184
- data/node_modules/ajv/lib/vocabularies/jtd/ref.ts +0 -76
- data/node_modules/ajv/lib/vocabularies/jtd/type.ts +0 -75
- data/node_modules/ajv/lib/vocabularies/jtd/union.ts +0 -12
- data/node_modules/ajv/lib/vocabularies/jtd/values.ts +0 -58
- data/node_modules/ajv/lib/vocabularies/metadata.ts +0 -17
- data/node_modules/ajv/lib/vocabularies/next.ts +0 -8
- data/node_modules/ajv/lib/vocabularies/unevaluated/index.ts +0 -7
- data/node_modules/ajv/lib/vocabularies/unevaluated/unevaluatedItems.ts +0 -47
- data/node_modules/ajv/lib/vocabularies/unevaluated/unevaluatedProperties.ts +0 -85
- data/node_modules/ajv/lib/vocabularies/validation/const.ts +0 -28
- data/node_modules/ajv/lib/vocabularies/validation/dependentRequired.ts +0 -23
- data/node_modules/ajv/lib/vocabularies/validation/enum.ts +0 -54
- data/node_modules/ajv/lib/vocabularies/validation/index.ts +0 -49
- data/node_modules/ajv/lib/vocabularies/validation/limitContains.ts +0 -16
- data/node_modules/ajv/lib/vocabularies/validation/limitItems.ts +0 -26
- data/node_modules/ajv/lib/vocabularies/validation/limitLength.ts +0 -30
- data/node_modules/ajv/lib/vocabularies/validation/limitNumber.ts +0 -42
- data/node_modules/ajv/lib/vocabularies/validation/limitProperties.ts +0 -26
- data/node_modules/ajv/lib/vocabularies/validation/multipleOf.ts +0 -34
- data/node_modules/ajv/lib/vocabularies/validation/pattern.ts +0 -28
- data/node_modules/ajv/lib/vocabularies/validation/required.ts +0 -98
- data/node_modules/ajv/lib/vocabularies/validation/uniqueItems.ts +0 -79
- data/node_modules/ajv/package.json +0 -126
- data/node_modules/ansi-regex/index.d.ts +0 -37
- data/node_modules/ansi-regex/index.js +0 -10
- data/node_modules/ansi-regex/license +0 -9
- data/node_modules/ansi-regex/package.json +0 -55
- data/node_modules/ansi-regex/readme.md +0 -78
- data/node_modules/ansi-styles/index.d.ts +0 -345
- data/node_modules/ansi-styles/index.js +0 -163
- data/node_modules/ansi-styles/license +0 -9
- data/node_modules/ansi-styles/package.json +0 -56
- data/node_modules/ansi-styles/readme.md +0 -152
- data/node_modules/argparse/CHANGELOG.md +0 -216
- data/node_modules/argparse/LICENSE +0 -254
- data/node_modules/argparse/README.md +0 -84
- data/node_modules/argparse/argparse.js +0 -3707
- data/node_modules/argparse/lib/sub.js +0 -67
- data/node_modules/argparse/lib/textwrap.js +0 -440
- data/node_modules/argparse/package.json +0 -31
- data/node_modules/array-ify/README.md +0 -51
- data/node_modules/array-ify/index.js +0 -4
- data/node_modules/array-ify/package.json +0 -37
- data/node_modules/callsites/index.d.ts +0 -96
- data/node_modules/callsites/index.js +0 -13
- data/node_modules/callsites/license +0 -9
- data/node_modules/callsites/package.json +0 -39
- data/node_modules/callsites/readme.md +0 -48
- data/node_modules/chalk/license +0 -9
- data/node_modules/chalk/package.json +0 -83
- data/node_modules/chalk/readme.md +0 -325
- data/node_modules/chalk/source/index.d.ts +0 -320
- data/node_modules/chalk/source/index.js +0 -225
- data/node_modules/chalk/source/utilities.js +0 -33
- data/node_modules/chalk/source/vendor/ansi-styles/index.d.ts +0 -236
- data/node_modules/chalk/source/vendor/ansi-styles/index.js +0 -223
- data/node_modules/chalk/source/vendor/supports-color/browser.d.ts +0 -1
- data/node_modules/chalk/source/vendor/supports-color/browser.js +0 -30
- data/node_modules/chalk/source/vendor/supports-color/index.d.ts +0 -55
- data/node_modules/chalk/source/vendor/supports-color/index.js +0 -182
- data/node_modules/cliui/CHANGELOG.md +0 -139
- data/node_modules/cliui/LICENSE.txt +0 -14
- data/node_modules/cliui/README.md +0 -141
- data/node_modules/cliui/build/index.cjs +0 -302
- data/node_modules/cliui/build/index.d.cts +0 -43
- data/node_modules/cliui/build/lib/index.js +0 -287
- data/node_modules/cliui/build/lib/string-utils.js +0 -27
- data/node_modules/cliui/index.mjs +0 -13
- data/node_modules/cliui/package.json +0 -83
- data/node_modules/color-convert/CHANGELOG.md +0 -54
- data/node_modules/color-convert/LICENSE +0 -21
- data/node_modules/color-convert/README.md +0 -68
- data/node_modules/color-convert/conversions.js +0 -839
- data/node_modules/color-convert/index.js +0 -81
- data/node_modules/color-convert/package.json +0 -48
- data/node_modules/color-convert/route.js +0 -97
- data/node_modules/color-name/LICENSE +0 -8
- data/node_modules/color-name/README.md +0 -11
- data/node_modules/color-name/index.js +0 -152
- data/node_modules/color-name/package.json +0 -28
- data/node_modules/compare-func/LICENSE +0 -21
- data/node_modules/compare-func/README.md +0 -70
- data/node_modules/compare-func/index.js +0 -42
- data/node_modules/compare-func/package.json +0 -47
- data/node_modules/conventional-changelog/LICENSE.md +0 -21
- data/node_modules/conventional-changelog/README.md +0 -66
- data/node_modules/conventional-changelog/index.js +0 -22
- data/node_modules/conventional-changelog/node_modules/conventional-changelog-angular/LICENSE.md +0 -15
- data/node_modules/conventional-changelog/node_modules/conventional-changelog-angular/README.md +0 -134
- data/node_modules/conventional-changelog/node_modules/conventional-changelog-angular/package.json +0 -32
- data/node_modules/conventional-changelog/node_modules/conventional-changelog-angular/src/index.js +0 -11
- data/node_modules/conventional-changelog/node_modules/conventional-changelog-angular/src/parser.js +0 -13
- data/node_modules/conventional-changelog/node_modules/conventional-changelog-angular/src/templates/commit.hbs +0 -61
- data/node_modules/conventional-changelog/node_modules/conventional-changelog-angular/src/templates/footer.hbs +0 -11
- data/node_modules/conventional-changelog/node_modules/conventional-changelog-angular/src/templates/header.hbs +0 -25
- data/node_modules/conventional-changelog/node_modules/conventional-changelog-angular/src/templates/template.hbs +0 -16
- data/node_modules/conventional-changelog/node_modules/conventional-changelog-angular/src/whatBump.js +0 -24
- data/node_modules/conventional-changelog/node_modules/conventional-changelog-angular/src/writer.js +0 -114
- data/node_modules/conventional-changelog/node_modules/conventional-changelog-conventionalcommits/LICENSE.md +0 -15
- data/node_modules/conventional-changelog/node_modules/conventional-changelog-conventionalcommits/README.md +0 -80
- data/node_modules/conventional-changelog/node_modules/conventional-changelog-conventionalcommits/package.json +0 -32
- data/node_modules/conventional-changelog/node_modules/conventional-changelog-conventionalcommits/src/constants.js +0 -14
- data/node_modules/conventional-changelog/node_modules/conventional-changelog-conventionalcommits/src/index.js +0 -18
- data/node_modules/conventional-changelog/node_modules/conventional-changelog-conventionalcommits/src/parser.js +0 -17
- data/node_modules/conventional-changelog/node_modules/conventional-changelog-conventionalcommits/src/templates/commit.hbs +0 -30
- data/node_modules/conventional-changelog/node_modules/conventional-changelog-conventionalcommits/src/templates/footer.hbs +0 -0
- data/node_modules/conventional-changelog/node_modules/conventional-changelog-conventionalcommits/src/templates/header.hbs +0 -9
- data/node_modules/conventional-changelog/node_modules/conventional-changelog-conventionalcommits/src/templates/template.hbs +0 -21
- data/node_modules/conventional-changelog/node_modules/conventional-changelog-conventionalcommits/src/utils.js +0 -18
- data/node_modules/conventional-changelog/node_modules/conventional-changelog-conventionalcommits/src/whatBump.js +0 -36
- data/node_modules/conventional-changelog/node_modules/conventional-changelog-conventionalcommits/src/writer.js +0 -195
- data/node_modules/conventional-changelog/package.json +0 -54
- data/node_modules/conventional-changelog-angular/LICENSE.md +0 -15
- data/node_modules/conventional-changelog-angular/README.md +0 -126
- data/node_modules/conventional-changelog-angular/conventionalChangelog.js +0 -10
- data/node_modules/conventional-changelog-angular/conventionalRecommendedBump.js +0 -34
- data/node_modules/conventional-changelog-angular/index.js +0 -22
- data/node_modules/conventional-changelog-angular/package.json +0 -35
- data/node_modules/conventional-changelog-angular/parserOpts.js +0 -17
- data/node_modules/conventional-changelog-angular/templates/commit.hbs +0 -61
- data/node_modules/conventional-changelog-angular/templates/footer.hbs +0 -11
- data/node_modules/conventional-changelog-angular/templates/header.hbs +0 -25
- data/node_modules/conventional-changelog-angular/templates/template.hbs +0 -16
- data/node_modules/conventional-changelog-angular/writerOpts.js +0 -110
- data/node_modules/conventional-changelog-atom/LICENSE.md +0 -15
- data/node_modules/conventional-changelog-atom/README.md +0 -72
- data/node_modules/conventional-changelog-atom/package.json +0 -29
- data/node_modules/conventional-changelog-atom/src/index.js +0 -11
- data/node_modules/conventional-changelog-atom/src/parser.js +0 -9
- data/node_modules/conventional-changelog-atom/src/templates/commit.hbs +0 -5
- data/node_modules/conventional-changelog-atom/src/templates/header.hbs +0 -1
- data/node_modules/conventional-changelog-atom/src/templates/template.hbs +0 -15
- data/node_modules/conventional-changelog-atom/src/whatBump.js +0 -22
- data/node_modules/conventional-changelog-atom/src/writer.js +0 -48
- data/node_modules/conventional-changelog-cli/LICENSE +0 -21
- data/node_modules/conventional-changelog-cli/README.md +0 -128
- data/node_modules/conventional-changelog-cli/cli.js +0 -279
- data/node_modules/conventional-changelog-cli/package.json +0 -44
- data/node_modules/conventional-changelog-codemirror/LICENSE.md +0 -15
- data/node_modules/conventional-changelog-codemirror/README.md +0 -45
- data/node_modules/conventional-changelog-codemirror/package.json +0 -29
- data/node_modules/conventional-changelog-codemirror/src/index.js +0 -11
- data/node_modules/conventional-changelog-codemirror/src/parser.js +0 -10
- data/node_modules/conventional-changelog-codemirror/src/templates/commit.hbs +0 -5
- data/node_modules/conventional-changelog-codemirror/src/templates/header.hbs +0 -1
- data/node_modules/conventional-changelog-codemirror/src/templates/template.hbs +0 -15
- data/node_modules/conventional-changelog-codemirror/src/whatBump.js +0 -22
- data/node_modules/conventional-changelog-codemirror/src/writer.js +0 -41
- data/node_modules/conventional-changelog-conventionalcommits/LICENSE.md +0 -15
- data/node_modules/conventional-changelog-conventionalcommits/README.md +0 -72
- data/node_modules/conventional-changelog-conventionalcommits/constants.js +0 -18
- data/node_modules/conventional-changelog-conventionalcommits/conventionalChangelog.js +0 -10
- data/node_modules/conventional-changelog-conventionalcommits/conventionalRecommendedBump.js +0 -44
- data/node_modules/conventional-changelog-conventionalcommits/index.js +0 -29
- data/node_modules/conventional-changelog-conventionalcommits/package.json +0 -37
- data/node_modules/conventional-changelog-conventionalcommits/parserOpts.js +0 -21
- data/node_modules/conventional-changelog-conventionalcommits/templates/commit.hbs +0 -30
- data/node_modules/conventional-changelog-conventionalcommits/templates/footer.hbs +0 -0
- data/node_modules/conventional-changelog-conventionalcommits/templates/header.hbs +0 -9
- data/node_modules/conventional-changelog-conventionalcommits/templates/template.hbs +0 -23
- data/node_modules/conventional-changelog-conventionalcommits/utils.js +0 -15
- data/node_modules/conventional-changelog-conventionalcommits/writerOpts.js +0 -192
- data/node_modules/conventional-changelog-core/LICENSE.md +0 -21
- data/node_modules/conventional-changelog-core/README.md +0 -255
- data/node_modules/conventional-changelog-core/hosts/bitbucket.json +0 -21
- data/node_modules/conventional-changelog-core/hosts/github.json +0 -19
- data/node_modules/conventional-changelog-core/hosts/gitlab.json +0 -17
- data/node_modules/conventional-changelog-core/index.js +0 -156
- data/node_modules/conventional-changelog-core/lib/merge-config.js +0 -372
- data/node_modules/conventional-changelog-core/node_modules/.bin/conventional-commits-parser +0 -1
- data/node_modules/conventional-changelog-core/node_modules/.bin/git-raw-commits +0 -1
- data/node_modules/conventional-changelog-core/node_modules/@conventional-changelog/git-client/LICENSE.md +0 -21
- data/node_modules/conventional-changelog-core/node_modules/@conventional-changelog/git-client/README.md +0 -134
- data/node_modules/conventional-changelog-core/node_modules/@conventional-changelog/git-client/dist/ConventionalGitClient.d.ts +0 -49
- data/node_modules/conventional-changelog-core/node_modules/@conventional-changelog/git-client/dist/ConventionalGitClient.d.ts.map +0 -1
- data/node_modules/conventional-changelog-core/node_modules/@conventional-changelog/git-client/dist/ConventionalGitClient.js +0 -124
- data/node_modules/conventional-changelog-core/node_modules/@conventional-changelog/git-client/dist/GitClient.d.ts +0 -75
- data/node_modules/conventional-changelog-core/node_modules/@conventional-changelog/git-client/dist/GitClient.d.ts.map +0 -1
- data/node_modules/conventional-changelog-core/node_modules/@conventional-changelog/git-client/dist/GitClient.js +0 -160
- data/node_modules/conventional-changelog-core/node_modules/@conventional-changelog/git-client/dist/index.d.ts +0 -4
- data/node_modules/conventional-changelog-core/node_modules/@conventional-changelog/git-client/dist/index.d.ts.map +0 -1
- data/node_modules/conventional-changelog-core/node_modules/@conventional-changelog/git-client/dist/index.js +0 -4
- data/node_modules/conventional-changelog-core/node_modules/@conventional-changelog/git-client/dist/types.d.ts +0 -58
- data/node_modules/conventional-changelog-core/node_modules/@conventional-changelog/git-client/dist/types.d.ts.map +0 -1
- data/node_modules/conventional-changelog-core/node_modules/@conventional-changelog/git-client/dist/types.js +0 -2
- data/node_modules/conventional-changelog-core/node_modules/@conventional-changelog/git-client/dist/utils.d.ts +0 -34
- data/node_modules/conventional-changelog-core/node_modules/@conventional-changelog/git-client/dist/utils.d.ts.map +0 -1
- data/node_modules/conventional-changelog-core/node_modules/@conventional-changelog/git-client/dist/utils.js +0 -141
- data/node_modules/conventional-changelog-core/node_modules/@conventional-changelog/git-client/package.json +0 -53
- data/node_modules/conventional-changelog-core/node_modules/conventional-commits-parser/LICENSE.md +0 -21
- data/node_modules/conventional-changelog-core/node_modules/conventional-commits-parser/README.md +0 -437
- data/node_modules/conventional-changelog-core/node_modules/conventional-commits-parser/dist/CommitParser.d.ts +0 -40
- data/node_modules/conventional-changelog-core/node_modules/conventional-commits-parser/dist/CommitParser.d.ts.map +0 -1
- data/node_modules/conventional-changelog-core/node_modules/conventional-commits-parser/dist/CommitParser.js +0 -317
- data/node_modules/conventional-changelog-core/node_modules/conventional-commits-parser/dist/cli/index.d.ts +0 -3
- data/node_modules/conventional-changelog-core/node_modules/conventional-commits-parser/dist/cli/index.d.ts.map +0 -1
- data/node_modules/conventional-changelog-core/node_modules/conventional-commits-parser/dist/cli/index.js +0 -103
- data/node_modules/conventional-changelog-core/node_modules/conventional-commits-parser/dist/cli/options.d.ts +0 -3
- data/node_modules/conventional-changelog-core/node_modules/conventional-commits-parser/dist/cli/options.d.ts.map +0 -1
- data/node_modules/conventional-changelog-core/node_modules/conventional-commits-parser/dist/cli/options.js +0 -40
- data/node_modules/conventional-changelog-core/node_modules/conventional-commits-parser/dist/cli/utils.d.ts +0 -8
- data/node_modules/conventional-changelog-core/node_modules/conventional-commits-parser/dist/cli/utils.d.ts.map +0 -1
- data/node_modules/conventional-changelog-core/node_modules/conventional-commits-parser/dist/cli/utils.js +0 -64
- data/node_modules/conventional-changelog-core/node_modules/conventional-commits-parser/dist/index.d.ts +0 -4
- data/node_modules/conventional-changelog-core/node_modules/conventional-commits-parser/dist/index.d.ts.map +0 -1
- data/node_modules/conventional-changelog-core/node_modules/conventional-commits-parser/dist/index.js +0 -4
- data/node_modules/conventional-changelog-core/node_modules/conventional-commits-parser/dist/options.d.ts +0 -3
- data/node_modules/conventional-changelog-core/node_modules/conventional-commits-parser/dist/options.d.ts.map +0 -1
- data/node_modules/conventional-changelog-core/node_modules/conventional-commits-parser/dist/options.js +0 -25
- data/node_modules/conventional-changelog-core/node_modules/conventional-commits-parser/dist/regex.d.ts +0 -8
- data/node_modules/conventional-changelog-core/node_modules/conventional-commits-parser/dist/regex.d.ts.map +0 -1
- data/node_modules/conventional-changelog-core/node_modules/conventional-commits-parser/dist/regex.js +0 -49
- data/node_modules/conventional-changelog-core/node_modules/conventional-commits-parser/dist/stream.d.ts +0 -16
- data/node_modules/conventional-changelog-core/node_modules/conventional-commits-parser/dist/stream.d.ts.map +0 -1
- data/node_modules/conventional-changelog-core/node_modules/conventional-commits-parser/dist/stream.js +0 -38
- data/node_modules/conventional-changelog-core/node_modules/conventional-commits-parser/dist/types.d.ts +0 -98
- data/node_modules/conventional-changelog-core/node_modules/conventional-commits-parser/dist/types.d.ts.map +0 -1
- data/node_modules/conventional-changelog-core/node_modules/conventional-commits-parser/dist/types.js +0 -2
- data/node_modules/conventional-changelog-core/node_modules/conventional-commits-parser/dist/utils.d.ts +0 -32
- data/node_modules/conventional-changelog-core/node_modules/conventional-commits-parser/dist/utils.d.ts.map +0 -1
- data/node_modules/conventional-changelog-core/node_modules/conventional-commits-parser/dist/utils.js +0 -59
- data/node_modules/conventional-changelog-core/node_modules/conventional-commits-parser/package.json +0 -45
- data/node_modules/conventional-changelog-core/node_modules/git-raw-commits/LICENSE.md +0 -21
- data/node_modules/conventional-changelog-core/node_modules/git-raw-commits/README.md +0 -60
- data/node_modules/conventional-changelog-core/node_modules/git-raw-commits/package.json +0 -44
- data/node_modules/conventional-changelog-core/node_modules/git-raw-commits/src/cli.js +0 -37
- data/node_modules/conventional-changelog-core/node_modules/git-raw-commits/src/index.js +0 -59
- data/node_modules/conventional-changelog-core/package.json +0 -44
- data/node_modules/conventional-changelog-ember/LICENSE.md +0 -15
- data/node_modules/conventional-changelog-ember/README.md +0 -94
- data/node_modules/conventional-changelog-ember/package.json +0 -29
- data/node_modules/conventional-changelog-ember/src/index.js +0 -14
- data/node_modules/conventional-changelog-ember/src/parser.js +0 -12
- data/node_modules/conventional-changelog-ember/src/templates/commit.hbs +0 -3
- data/node_modules/conventional-changelog-ember/src/templates/header.hbs +0 -1
- data/node_modules/conventional-changelog-ember/src/templates/template.hbs +0 -15
- data/node_modules/conventional-changelog-ember/src/whatBump.js +0 -22
- data/node_modules/conventional-changelog-ember/src/writer.js +0 -58
- data/node_modules/conventional-changelog-eslint/LICENSE.md +0 -15
- data/node_modules/conventional-changelog-eslint/README.md +0 -84
- data/node_modules/conventional-changelog-eslint/package.json +0 -29
- data/node_modules/conventional-changelog-eslint/src/index.js +0 -11
- data/node_modules/conventional-changelog-eslint/src/parser.js +0 -9
- data/node_modules/conventional-changelog-eslint/src/templates/commit.hbs +0 -5
- data/node_modules/conventional-changelog-eslint/src/templates/header.hbs +0 -1
- data/node_modules/conventional-changelog-eslint/src/templates/template.hbs +0 -15
- data/node_modules/conventional-changelog-eslint/src/whatBump.js +0 -24
- data/node_modules/conventional-changelog-eslint/src/writer.js +0 -39
- data/node_modules/conventional-changelog-express/LICENSE.md +0 -15
- data/node_modules/conventional-changelog-express/README.md +0 -45
- data/node_modules/conventional-changelog-express/package.json +0 -29
- data/node_modules/conventional-changelog-express/src/index.js +0 -11
- data/node_modules/conventional-changelog-express/src/parser.js +0 -9
- data/node_modules/conventional-changelog-express/src/templates/commit.hbs +0 -9
- data/node_modules/conventional-changelog-express/src/templates/header.hbs +0 -2
- data/node_modules/conventional-changelog-express/src/templates/template.hbs +0 -14
- data/node_modules/conventional-changelog-express/src/whatBump.js +0 -22
- data/node_modules/conventional-changelog-express/src/writer.js +0 -43
- data/node_modules/conventional-changelog-jquery/LICENSE.md +0 -15
- data/node_modules/conventional-changelog-jquery/README.md +0 -83
- data/node_modules/conventional-changelog-jquery/package.json +0 -29
- data/node_modules/conventional-changelog-jquery/src/index.js +0 -11
- data/node_modules/conventional-changelog-jquery/src/parser.js +0 -9
- data/node_modules/conventional-changelog-jquery/src/templates/commit.hbs +0 -56
- data/node_modules/conventional-changelog-jquery/src/templates/header.hbs +0 -17
- data/node_modules/conventional-changelog-jquery/src/templates/template.hbs +0 -16
- data/node_modules/conventional-changelog-jquery/src/whatBump.js +0 -22
- data/node_modules/conventional-changelog-jquery/src/writer.js +0 -50
- data/node_modules/conventional-changelog-jshint/LICENSE.md +0 -15
- data/node_modules/conventional-changelog-jshint/README.md +0 -121
- data/node_modules/conventional-changelog-jshint/package.json +0 -32
- data/node_modules/conventional-changelog-jshint/src/index.js +0 -11
- data/node_modules/conventional-changelog-jshint/src/parser.js +0 -10
- data/node_modules/conventional-changelog-jshint/src/templates/commit.hbs +0 -5
- data/node_modules/conventional-changelog-jshint/src/templates/footer.hbs +0 -11
- data/node_modules/conventional-changelog-jshint/src/templates/header.hbs +0 -1
- data/node_modules/conventional-changelog-jshint/src/templates/template.hbs +0 -16
- data/node_modules/conventional-changelog-jshint/src/whatBump.js +0 -22
- data/node_modules/conventional-changelog-jshint/src/writer.js +0 -62
- data/node_modules/conventional-changelog-preset-loader/LICENSE.md +0 -21
- data/node_modules/conventional-changelog-preset-loader/README.md +0 -121
- data/node_modules/conventional-changelog-preset-loader/dist/index.d.ts +0 -3
- data/node_modules/conventional-changelog-preset-loader/dist/index.d.ts.map +0 -1
- data/node_modules/conventional-changelog-preset-loader/dist/index.js +0 -3
- data/node_modules/conventional-changelog-preset-loader/dist/presetLoader.d.ts +0 -12
- data/node_modules/conventional-changelog-preset-loader/dist/presetLoader.d.ts.map +0 -1
- data/node_modules/conventional-changelog-preset-loader/dist/presetLoader.js +0 -102
- data/node_modules/conventional-changelog-preset-loader/dist/types.d.ts +0 -15
- data/node_modules/conventional-changelog-preset-loader/dist/types.d.ts.map +0 -1
- data/node_modules/conventional-changelog-preset-loader/dist/types.js +0 -3
- data/node_modules/conventional-changelog-preset-loader/package.json +0 -32
- data/node_modules/conventional-changelog-writer/LICENSE.md +0 -21
- data/node_modules/conventional-changelog-writer/README.md +0 -383
- data/node_modules/conventional-changelog-writer/dist/cli/index.d.ts +0 -3
- data/node_modules/conventional-changelog-writer/dist/cli/index.d.ts.map +0 -1
- data/node_modules/conventional-changelog-writer/dist/cli/index.js +0 -70
- data/node_modules/conventional-changelog-writer/dist/cli/utils.d.ts +0 -7
- data/node_modules/conventional-changelog-writer/dist/cli/utils.d.ts.map +0 -1
- data/node_modules/conventional-changelog-writer/dist/cli/utils.js +0 -64
- data/node_modules/conventional-changelog-writer/dist/commit.d.ts +0 -11
- data/node_modules/conventional-changelog-writer/dist/commit.d.ts.map +0 -1
- data/node_modules/conventional-changelog-writer/dist/commit.js +0 -40
- data/node_modules/conventional-changelog-writer/dist/context.d.ts +0 -26
- data/node_modules/conventional-changelog-writer/dist/context.d.ts.map +0 -1
- data/node_modules/conventional-changelog-writer/dist/context.js +0 -114
- data/node_modules/conventional-changelog-writer/dist/index.d.ts +0 -4
- data/node_modules/conventional-changelog-writer/dist/index.d.ts.map +0 -1
- data/node_modules/conventional-changelog-writer/dist/index.js +0 -4
- data/node_modules/conventional-changelog-writer/dist/options.d.ts +0 -25
- data/node_modules/conventional-changelog-writer/dist/options.d.ts.map +0 -1
- data/node_modules/conventional-changelog-writer/dist/options.js +0 -75
- data/node_modules/conventional-changelog-writer/dist/template.d.ts +0 -21
- data/node_modules/conventional-changelog-writer/dist/template.d.ts.map +0 -1
- data/node_modules/conventional-changelog-writer/dist/template.js +0 -77
- data/node_modules/conventional-changelog-writer/dist/types/commit.d.ts +0 -26
- data/node_modules/conventional-changelog-writer/dist/types/commit.d.ts.map +0 -1
- data/node_modules/conventional-changelog-writer/dist/types/commit.js +0 -2
- data/node_modules/conventional-changelog-writer/dist/types/context.d.ts +0 -69
- data/node_modules/conventional-changelog-writer/dist/types/context.d.ts.map +0 -1
- data/node_modules/conventional-changelog-writer/dist/types/context.js +0 -2
- data/node_modules/conventional-changelog-writer/dist/types/index.d.ts +0 -10
- data/node_modules/conventional-changelog-writer/dist/types/index.d.ts.map +0 -1
- data/node_modules/conventional-changelog-writer/dist/types/index.js +0 -5
- data/node_modules/conventional-changelog-writer/dist/types/options.d.ts +0 -108
- data/node_modules/conventional-changelog-writer/dist/types/options.d.ts.map +0 -1
- data/node_modules/conventional-changelog-writer/dist/types/options.js +0 -2
- data/node_modules/conventional-changelog-writer/dist/types/utils.d.ts +0 -10
- data/node_modules/conventional-changelog-writer/dist/types/utils.d.ts.map +0 -1
- data/node_modules/conventional-changelog-writer/dist/types/utils.js +0 -2
- data/node_modules/conventional-changelog-writer/dist/utils.d.ts +0 -20
- data/node_modules/conventional-changelog-writer/dist/utils.d.ts.map +0 -1
- data/node_modules/conventional-changelog-writer/dist/utils.js +0 -70
- data/node_modules/conventional-changelog-writer/dist/writers.d.ts +0 -29
- data/node_modules/conventional-changelog-writer/dist/writers.d.ts.map +0 -1
- data/node_modules/conventional-changelog-writer/dist/writers.js +0 -102
- data/node_modules/conventional-changelog-writer/package.json +0 -52
- data/node_modules/conventional-changelog-writer/templates/commit.hbs +0 -54
- data/node_modules/conventional-changelog-writer/templates/footer.hbs +0 -10
- data/node_modules/conventional-changelog-writer/templates/header.hbs +0 -9
- data/node_modules/conventional-changelog-writer/templates/template.hbs +0 -11
- data/node_modules/conventional-commits-filter/LICENSE +0 -21
- data/node_modules/conventional-commits-filter/README.md +0 -235
- data/node_modules/conventional-commits-filter/dist/RevertedCommitsFilter.d.ts +0 -17
- data/node_modules/conventional-commits-filter/dist/RevertedCommitsFilter.d.ts.map +0 -1
- data/node_modules/conventional-commits-filter/dist/RevertedCommitsFilter.js +0 -46
- data/node_modules/conventional-commits-filter/dist/filters.d.ts +0 -20
- data/node_modules/conventional-commits-filter/dist/filters.d.ts.map +0 -1
- data/node_modules/conventional-commits-filter/dist/filters.js +0 -34
- data/node_modules/conventional-commits-filter/dist/index.d.ts +0 -4
- data/node_modules/conventional-commits-filter/dist/index.d.ts.map +0 -1
- data/node_modules/conventional-commits-filter/dist/index.js +0 -3
- data/node_modules/conventional-commits-filter/dist/types.d.ts +0 -6
- data/node_modules/conventional-commits-filter/dist/types.d.ts.map +0 -1
- data/node_modules/conventional-commits-filter/dist/types.js +0 -2
- data/node_modules/conventional-commits-filter/dist/utils.d.ts +0 -16
- data/node_modules/conventional-commits-filter/dist/utils.d.ts.map +0 -1
- data/node_modules/conventional-commits-filter/dist/utils.js +0 -43
- data/node_modules/conventional-commits-filter/package.json +0 -37
- data/node_modules/conventional-commits-parser/LICENSE.md +0 -21
- data/node_modules/conventional-commits-parser/README.md +0 -383
- data/node_modules/conventional-commits-parser/cli.mjs +0 -170
- data/node_modules/conventional-commits-parser/index.js +0 -105
- data/node_modules/conventional-commits-parser/lib/parser.js +0 -316
- data/node_modules/conventional-commits-parser/lib/regex.js +0 -61
- data/node_modules/conventional-commits-parser/node_modules/meow/build/dependencies.js +0 -11036
- data/node_modules/conventional-commits-parser/node_modules/meow/build/index.d.ts +0 -1416
- data/node_modules/conventional-commits-parser/node_modules/meow/build/index.js +0 -100
- data/node_modules/conventional-commits-parser/node_modules/meow/build/licenses.md +0 -1767
- data/node_modules/conventional-commits-parser/node_modules/meow/build/options.js +0 -92
- data/node_modules/conventional-commits-parser/node_modules/meow/build/parser.js +0 -84
- data/node_modules/conventional-commits-parser/node_modules/meow/build/utils.js +0 -7
- data/node_modules/conventional-commits-parser/node_modules/meow/build/validate.js +0 -122
- data/node_modules/conventional-commits-parser/node_modules/meow/license +0 -9
- data/node_modules/conventional-commits-parser/node_modules/meow/package.json +0 -107
- data/node_modules/conventional-commits-parser/node_modules/meow/readme.md +0 -314
- data/node_modules/conventional-commits-parser/package.json +0 -47
- data/node_modules/cosmiconfig/LICENSE +0 -22
- data/node_modules/cosmiconfig/README.md +0 -782
- data/node_modules/cosmiconfig/dist/Explorer.d.ts +0 -2
- data/node_modules/cosmiconfig/dist/Explorer.d.ts.map +0 -1
- data/node_modules/cosmiconfig/dist/Explorer.js +0 -170
- data/node_modules/cosmiconfig/dist/Explorer.js.map +0 -1
- data/node_modules/cosmiconfig/dist/ExplorerBase.d.ts +0 -2
- data/node_modules/cosmiconfig/dist/ExplorerBase.d.ts.map +0 -1
- data/node_modules/cosmiconfig/dist/ExplorerBase.js +0 -126
- data/node_modules/cosmiconfig/dist/ExplorerBase.js.map +0 -1
- data/node_modules/cosmiconfig/dist/ExplorerSync.d.ts +0 -2
- data/node_modules/cosmiconfig/dist/ExplorerSync.d.ts.map +0 -1
- data/node_modules/cosmiconfig/dist/ExplorerSync.js +0 -184
- data/node_modules/cosmiconfig/dist/ExplorerSync.js.map +0 -1
- data/node_modules/cosmiconfig/dist/cacheWrapper.d.ts +0 -5
- data/node_modules/cosmiconfig/dist/cacheWrapper.d.ts.map +0 -1
- data/node_modules/cosmiconfig/dist/cacheWrapper.js +0 -32
- data/node_modules/cosmiconfig/dist/cacheWrapper.js.map +0 -1
- data/node_modules/cosmiconfig/dist/canUseDynamicImport.d.ts +0 -3
- data/node_modules/cosmiconfig/dist/canUseDynamicImport.d.ts.map +0 -1
- data/node_modules/cosmiconfig/dist/canUseDynamicImport.js +0 -23
- data/node_modules/cosmiconfig/dist/canUseDynamicImport.js.map +0 -1
- data/node_modules/cosmiconfig/dist/defaults.d.ts +0 -25
- data/node_modules/cosmiconfig/dist/defaults.d.ts.map +0 -1
- data/node_modules/cosmiconfig/dist/defaults.js +0 -105
- data/node_modules/cosmiconfig/dist/defaults.js.map +0 -1
- data/node_modules/cosmiconfig/dist/getDirectory.d.ts +0 -4
- data/node_modules/cosmiconfig/dist/getDirectory.d.ts.map +0 -1
- data/node_modules/cosmiconfig/dist/getDirectory.js +0 -38
- data/node_modules/cosmiconfig/dist/getDirectory.js.map +0 -1
- data/node_modules/cosmiconfig/dist/getPropertyByPath.d.ts +0 -5
- data/node_modules/cosmiconfig/dist/getPropertyByPath.d.ts.map +0 -1
- data/node_modules/cosmiconfig/dist/getPropertyByPath.js +0 -28
- data/node_modules/cosmiconfig/dist/getPropertyByPath.js.map +0 -1
- data/node_modules/cosmiconfig/dist/index.d.ts +0 -6
- data/node_modules/cosmiconfig/dist/index.d.ts.map +0 -1
- data/node_modules/cosmiconfig/dist/index.js +0 -148
- data/node_modules/cosmiconfig/dist/index.js.map +0 -1
- data/node_modules/cosmiconfig/dist/loaders.d.ts +0 -8
- data/node_modules/cosmiconfig/dist/loaders.d.ts.map +0 -1
- data/node_modules/cosmiconfig/dist/loaders.js +0 -148
- data/node_modules/cosmiconfig/dist/loaders.js.map +0 -1
- data/node_modules/cosmiconfig/dist/merge.d.ts +0 -9
- data/node_modules/cosmiconfig/dist/merge.d.ts.map +0 -1
- data/node_modules/cosmiconfig/dist/merge.js +0 -40
- data/node_modules/cosmiconfig/dist/merge.js.map +0 -1
- data/node_modules/cosmiconfig/dist/readFile.d.ts +0 -7
- data/node_modules/cosmiconfig/dist/readFile.d.ts.map +0 -1
- data/node_modules/cosmiconfig/dist/readFile.js +0 -56
- data/node_modules/cosmiconfig/dist/readFile.js.map +0 -1
- data/node_modules/cosmiconfig/dist/types.d.ts +0 -98
- data/node_modules/cosmiconfig/dist/types.d.ts.map +0 -1
- data/node_modules/cosmiconfig/dist/types.js +0 -3
- data/node_modules/cosmiconfig/dist/types.js.map +0 -1
- data/node_modules/cosmiconfig/dist/util.d.ts +0 -2
- data/node_modules/cosmiconfig/dist/util.d.ts.map +0 -1
- data/node_modules/cosmiconfig/dist/util.js +0 -99
- data/node_modules/cosmiconfig/dist/util.js.map +0 -1
- data/node_modules/cosmiconfig/package.json +0 -102
- data/node_modules/cosmiconfig-typescript-loader/LICENCE +0 -21
- data/node_modules/cosmiconfig-typescript-loader/README.md +0 -64
- data/node_modules/cosmiconfig-typescript-loader/dist/cjs/index.cjs +0 -30
- data/node_modules/cosmiconfig-typescript-loader/dist/cjs/loader.cjs +0 -55
- data/node_modules/cosmiconfig-typescript-loader/dist/cjs/typescript-compile-error.cjs +0 -43
- data/node_modules/cosmiconfig-typescript-loader/dist/esm/index.mjs +0 -5
- data/node_modules/cosmiconfig-typescript-loader/dist/esm/loader.mjs +0 -20
- data/node_modules/cosmiconfig-typescript-loader/dist/esm/typescript-compile-error.mjs +0 -18
- data/node_modules/cosmiconfig-typescript-loader/dist/types/index.d.ts +0 -2
- data/node_modules/cosmiconfig-typescript-loader/dist/types/loader.d.ts +0 -3
- data/node_modules/cosmiconfig-typescript-loader/dist/types/typescript-compile-error.d.ts +0 -4
- data/node_modules/cosmiconfig-typescript-loader/package.json +0 -79
- data/node_modules/cross-spawn/CHANGELOG.md +0 -130
- data/node_modules/cross-spawn/LICENSE +0 -21
- data/node_modules/cross-spawn/README.md +0 -96
- data/node_modules/cross-spawn/index.js +0 -39
- data/node_modules/cross-spawn/lib/enoent.js +0 -59
- data/node_modules/cross-spawn/lib/parse.js +0 -91
- data/node_modules/cross-spawn/lib/util/escape.js +0 -45
- data/node_modules/cross-spawn/lib/util/readShebang.js +0 -23
- data/node_modules/cross-spawn/lib/util/resolveCommand.js +0 -52
- data/node_modules/cross-spawn/package.json +0 -73
- data/node_modules/dargs/index.d.ts +0 -159
- data/node_modules/dargs/index.js +0 -116
- data/node_modules/dargs/license +0 -9
- data/node_modules/dargs/package.json +0 -51
- data/node_modules/dargs/readme.md +0 -195
- data/node_modules/dot-prop/index.d.ts +0 -101
- data/node_modules/dot-prop/index.js +0 -142
- data/node_modules/dot-prop/license +0 -9
- data/node_modules/dot-prop/package.json +0 -45
- data/node_modules/dot-prop/readme.md +0 -117
- data/node_modules/emoji-regex/LICENSE-MIT.txt +0 -20
- data/node_modules/emoji-regex/README.md +0 -73
- data/node_modules/emoji-regex/es2015/index.js +0 -6
- data/node_modules/emoji-regex/es2015/text.js +0 -6
- data/node_modules/emoji-regex/index.d.ts +0 -23
- data/node_modules/emoji-regex/index.js +0 -6
- data/node_modules/emoji-regex/package.json +0 -50
- data/node_modules/emoji-regex/text.js +0 -6
- data/node_modules/env-paths/index.d.ts +0 -101
- data/node_modules/env-paths/index.js +0 -74
- data/node_modules/env-paths/license +0 -9
- data/node_modules/env-paths/package.json +0 -45
- data/node_modules/env-paths/readme.md +0 -115
- data/node_modules/error-ex/LICENSE +0 -21
- data/node_modules/error-ex/README.md +0 -144
- data/node_modules/error-ex/index.js +0 -141
- data/node_modules/error-ex/package.json +0 -46
- data/node_modules/escalade/dist/index.js +0 -22
- data/node_modules/escalade/dist/index.mjs +0 -22
- data/node_modules/escalade/index.d.ts +0 -3
- data/node_modules/escalade/license +0 -9
- data/node_modules/escalade/package.json +0 -63
- data/node_modules/escalade/readme.md +0 -211
- data/node_modules/escalade/sync/index.d.ts +0 -2
- data/node_modules/escalade/sync/index.js +0 -18
- data/node_modules/escalade/sync/index.mjs +0 -18
- data/node_modules/escape-string-regexp/index.js +0 -11
- data/node_modules/escape-string-regexp/license +0 -21
- data/node_modules/escape-string-regexp/package.json +0 -41
- data/node_modules/escape-string-regexp/readme.md +0 -27
- data/node_modules/execa/index.d.ts +0 -955
- data/node_modules/execa/index.js +0 -309
- data/node_modules/execa/lib/command.js +0 -119
- data/node_modules/execa/lib/error.js +0 -87
- data/node_modules/execa/lib/kill.js +0 -102
- data/node_modules/execa/lib/pipe.js +0 -42
- data/node_modules/execa/lib/promise.js +0 -36
- data/node_modules/execa/lib/stdio.js +0 -49
- data/node_modules/execa/lib/stream.js +0 -133
- data/node_modules/execa/lib/verbose.js +0 -19
- data/node_modules/execa/license +0 -9
- data/node_modules/execa/package.json +0 -90
- data/node_modules/execa/readme.md +0 -822
- data/node_modules/fast-deep-equal/LICENSE +0 -21
- data/node_modules/fast-deep-equal/README.md +0 -96
- data/node_modules/fast-deep-equal/es6/index.d.ts +0 -2
- data/node_modules/fast-deep-equal/es6/index.js +0 -72
- data/node_modules/fast-deep-equal/es6/react.d.ts +0 -2
- data/node_modules/fast-deep-equal/es6/react.js +0 -79
- data/node_modules/fast-deep-equal/index.d.ts +0 -4
- data/node_modules/fast-deep-equal/index.js +0 -46
- data/node_modules/fast-deep-equal/package.json +0 -61
- data/node_modules/fast-deep-equal/react.d.ts +0 -2
- data/node_modules/fast-deep-equal/react.js +0 -53
- data/node_modules/fast-uri/.gitattributes +0 -2
- data/node_modules/fast-uri/.github/.stale.yml +0 -21
- data/node_modules/fast-uri/.github/dependabot.yml +0 -13
- data/node_modules/fast-uri/.github/tests_checker.yml +0 -8
- data/node_modules/fast-uri/.github/workflows/ci.yml +0 -23
- data/node_modules/fast-uri/.github/workflows/package-manager-ci.yml +0 -20
- data/node_modules/fast-uri/.taprc +0 -3
- data/node_modules/fast-uri/LICENSE +0 -30
- data/node_modules/fast-uri/README.md +0 -125
- data/node_modules/fast-uri/benchmark.js +0 -105
- data/node_modules/fast-uri/index.js +0 -309
- data/node_modules/fast-uri/lib/schemes.js +0 -188
- data/node_modules/fast-uri/lib/scopedChars.js +0 -30
- data/node_modules/fast-uri/lib/utils.js +0 -242
- data/node_modules/fast-uri/package.json +0 -39
- data/node_modules/fast-uri/test/.gitkeep +0 -0
- data/node_modules/fast-uri/test/ajv.test.js +0 -39
- data/node_modules/fast-uri/test/compatibility.test.js +0 -130
- data/node_modules/fast-uri/test/equal.test.js +0 -104
- data/node_modules/fast-uri/test/parse.test.js +0 -319
- data/node_modules/fast-uri/test/resolve.test.js +0 -76
- data/node_modules/fast-uri/test/serialize.test.js +0 -144
- data/node_modules/fast-uri/test/uri-js.test.js +0 -940
- data/node_modules/fast-uri/test/util.test.js +0 -24
- data/node_modules/fast-uri/types/index.d.ts +0 -53
- data/node_modules/fast-uri/types/index.test-d.ts +0 -17
- data/node_modules/find-up/index.d.ts +0 -247
- data/node_modules/find-up/index.js +0 -107
- data/node_modules/find-up/license +0 -9
- data/node_modules/find-up/package.json +0 -61
- data/node_modules/find-up/readme.md +0 -160
- data/node_modules/find-up-simple/index.d.ts +0 -74
- data/node_modules/find-up-simple/index.js +0 -53
- data/node_modules/find-up-simple/license +0 -9
- data/node_modules/find-up-simple/package.json +0 -53
- data/node_modules/find-up-simple/readme.md +0 -93
- data/node_modules/get-caller-file/LICENSE.md +0 -6
- data/node_modules/get-caller-file/README.md +0 -41
- data/node_modules/get-caller-file/index.d.ts +0 -2
- data/node_modules/get-caller-file/index.js +0 -22
- data/node_modules/get-caller-file/index.js.map +0 -1
- data/node_modules/get-caller-file/package.json +0 -42
- data/node_modules/get-stream/license +0 -9
- data/node_modules/get-stream/package.json +0 -53
- data/node_modules/get-stream/readme.md +0 -291
- data/node_modules/get-stream/source/array-buffer.js +0 -84
- data/node_modules/get-stream/source/array.js +0 -32
- data/node_modules/get-stream/source/buffer.js +0 -20
- data/node_modules/get-stream/source/contents.js +0 -101
- data/node_modules/get-stream/source/index.d.ts +0 -119
- data/node_modules/get-stream/source/index.js +0 -5
- data/node_modules/get-stream/source/string.js +0 -36
- data/node_modules/get-stream/source/utils.js +0 -11
- data/node_modules/git-raw-commits/LICENSE.md +0 -21
- data/node_modules/git-raw-commits/README.md +0 -101
- data/node_modules/git-raw-commits/cli.mjs +0 -20
- data/node_modules/git-raw-commits/index.js +0 -110
- data/node_modules/git-raw-commits/node_modules/meow/build/dependencies.js +0 -11036
- data/node_modules/git-raw-commits/node_modules/meow/build/index.d.ts +0 -1416
- data/node_modules/git-raw-commits/node_modules/meow/build/index.js +0 -100
- data/node_modules/git-raw-commits/node_modules/meow/build/licenses.md +0 -1767
- data/node_modules/git-raw-commits/node_modules/meow/build/options.js +0 -92
- data/node_modules/git-raw-commits/node_modules/meow/build/parser.js +0 -84
- data/node_modules/git-raw-commits/node_modules/meow/build/utils.js +0 -7
- data/node_modules/git-raw-commits/node_modules/meow/build/validate.js +0 -122
- data/node_modules/git-raw-commits/node_modules/meow/license +0 -9
- data/node_modules/git-raw-commits/node_modules/meow/package.json +0 -107
- data/node_modules/git-raw-commits/node_modules/meow/readme.md +0 -314
- data/node_modules/git-raw-commits/package.json +0 -43
- data/node_modules/git-semver-tags/LICENSE.md +0 -21
- data/node_modules/git-semver-tags/README.md +0 -65
- data/node_modules/git-semver-tags/node_modules/@conventional-changelog/git-client/LICENSE.md +0 -21
- data/node_modules/git-semver-tags/node_modules/@conventional-changelog/git-client/README.md +0 -134
- data/node_modules/git-semver-tags/node_modules/@conventional-changelog/git-client/dist/ConventionalGitClient.d.ts +0 -49
- data/node_modules/git-semver-tags/node_modules/@conventional-changelog/git-client/dist/ConventionalGitClient.d.ts.map +0 -1
- data/node_modules/git-semver-tags/node_modules/@conventional-changelog/git-client/dist/ConventionalGitClient.js +0 -124
- data/node_modules/git-semver-tags/node_modules/@conventional-changelog/git-client/dist/GitClient.d.ts +0 -75
- data/node_modules/git-semver-tags/node_modules/@conventional-changelog/git-client/dist/GitClient.d.ts.map +0 -1
- data/node_modules/git-semver-tags/node_modules/@conventional-changelog/git-client/dist/GitClient.js +0 -160
- data/node_modules/git-semver-tags/node_modules/@conventional-changelog/git-client/dist/index.d.ts +0 -4
- data/node_modules/git-semver-tags/node_modules/@conventional-changelog/git-client/dist/index.d.ts.map +0 -1
- data/node_modules/git-semver-tags/node_modules/@conventional-changelog/git-client/dist/index.js +0 -4
- data/node_modules/git-semver-tags/node_modules/@conventional-changelog/git-client/dist/types.d.ts +0 -58
- data/node_modules/git-semver-tags/node_modules/@conventional-changelog/git-client/dist/types.d.ts.map +0 -1
- data/node_modules/git-semver-tags/node_modules/@conventional-changelog/git-client/dist/types.js +0 -2
- data/node_modules/git-semver-tags/node_modules/@conventional-changelog/git-client/dist/utils.d.ts +0 -34
- data/node_modules/git-semver-tags/node_modules/@conventional-changelog/git-client/dist/utils.d.ts.map +0 -1
- data/node_modules/git-semver-tags/node_modules/@conventional-changelog/git-client/dist/utils.js +0 -141
- data/node_modules/git-semver-tags/node_modules/@conventional-changelog/git-client/package.json +0 -53
- data/node_modules/git-semver-tags/package.json +0 -43
- data/node_modules/git-semver-tags/src/cli.js +0 -43
- data/node_modules/git-semver-tags/src/index.js +0 -42
- data/node_modules/global-directory/index.d.ts +0 -58
- data/node_modules/global-directory/index.js +0 -121
- data/node_modules/global-directory/license +0 -9
- data/node_modules/global-directory/package.json +0 -61
- data/node_modules/global-directory/readme.md +0 -60
- data/node_modules/handlebars/LICENSE +0 -19
- data/node_modules/handlebars/README.markdown +0 -169
- data/node_modules/handlebars/bin/.eslintrc.js +0 -6
- data/node_modules/handlebars/bin/handlebars +0 -176
- data/node_modules/handlebars/dist/amd/handlebars/base.js +0 -106
- data/node_modules/handlebars/dist/amd/handlebars/compiler/ast.js +0 -31
- data/node_modules/handlebars/dist/amd/handlebars/compiler/base.js +0 -45
- data/node_modules/handlebars/dist/amd/handlebars/compiler/code-gen.js +0 -165
- data/node_modules/handlebars/dist/amd/handlebars/compiler/compiler.js +0 -562
- data/node_modules/handlebars/dist/amd/handlebars/compiler/helpers.js +0 -228
- data/node_modules/handlebars/dist/amd/handlebars/compiler/javascript-compiler.js +0 -1150
- data/node_modules/handlebars/dist/amd/handlebars/compiler/parser.js +0 -737
- data/node_modules/handlebars/dist/amd/handlebars/compiler/printer.js +0 -186
- data/node_modules/handlebars/dist/amd/handlebars/compiler/visitor.js +0 -138
- data/node_modules/handlebars/dist/amd/handlebars/compiler/whitespace-control.js +0 -219
- data/node_modules/handlebars/dist/amd/handlebars/decorators/inline.js +0 -25
- data/node_modules/handlebars/dist/amd/handlebars/decorators.js +0 -16
- data/node_modules/handlebars/dist/amd/handlebars/exception.js +0 -64
- data/node_modules/handlebars/dist/amd/handlebars/helpers/block-helper-missing.js +0 -35
- data/node_modules/handlebars/dist/amd/handlebars/helpers/each.js +0 -99
- data/node_modules/handlebars/dist/amd/handlebars/helpers/helper-missing.js +0 -22
- data/node_modules/handlebars/dist/amd/handlebars/helpers/if.js +0 -41
- data/node_modules/handlebars/dist/amd/handlebars/helpers/log.js +0 -24
- data/node_modules/handlebars/dist/amd/handlebars/helpers/lookup.js +0 -14
- data/node_modules/handlebars/dist/amd/handlebars/helpers/with.js +0 -38
- data/node_modules/handlebars/dist/amd/handlebars/helpers.js +0 -44
- data/node_modules/handlebars/dist/amd/handlebars/internal/create-new-lookup-object.js +0 -22
- data/node_modules/handlebars/dist/amd/handlebars/internal/proto-access.js +0 -71
- data/node_modules/handlebars/dist/amd/handlebars/internal/wrapHelper.js +0 -21
- data/node_modules/handlebars/dist/amd/handlebars/logger.js +0 -44
- data/node_modules/handlebars/dist/amd/handlebars/no-conflict.js +0 -28
- data/node_modules/handlebars/dist/amd/handlebars/runtime.js +0 -356
- data/node_modules/handlebars/dist/amd/handlebars/safe-string.js +0 -15
- data/node_modules/handlebars/dist/amd/handlebars/utils.js +0 -126
- data/node_modules/handlebars/dist/amd/handlebars.js +0 -52
- data/node_modules/handlebars/dist/amd/handlebars.runtime.js +0 -44
- data/node_modules/handlebars/dist/amd/precompiler.js +0 -314
- data/node_modules/handlebars/dist/cjs/handlebars/base.js +0 -116
- data/node_modules/handlebars/dist/cjs/handlebars/compiler/ast.js +0 -31
- data/node_modules/handlebars/dist/cjs/handlebars/compiler/base.js +0 -57
- data/node_modules/handlebars/dist/cjs/handlebars/compiler/code-gen.js +0 -168
- data/node_modules/handlebars/dist/cjs/handlebars/compiler/compiler.js +0 -566
- data/node_modules/handlebars/dist/cjs/handlebars/compiler/helpers.js +0 -228
- data/node_modules/handlebars/dist/cjs/handlebars/compiler/javascript-compiler.js +0 -1158
- data/node_modules/handlebars/dist/cjs/handlebars/compiler/parser.js +0 -737
- data/node_modules/handlebars/dist/cjs/handlebars/compiler/printer.js +0 -186
- data/node_modules/handlebars/dist/cjs/handlebars/compiler/visitor.js +0 -140
- data/node_modules/handlebars/dist/cjs/handlebars/compiler/whitespace-control.js +0 -221
- data/node_modules/handlebars/dist/cjs/handlebars/decorators/inline.js +0 -29
- data/node_modules/handlebars/dist/cjs/handlebars/decorators.js +0 -16
- data/node_modules/handlebars/dist/cjs/handlebars/exception.js +0 -64
- data/node_modules/handlebars/dist/cjs/handlebars/helpers/block-helper-missing.js +0 -39
- data/node_modules/handlebars/dist/cjs/handlebars/helpers/each.js +0 -104
- data/node_modules/handlebars/dist/cjs/handlebars/helpers/helper-missing.js +0 -25
- data/node_modules/handlebars/dist/cjs/handlebars/helpers/if.js +0 -46
- data/node_modules/handlebars/dist/cjs/handlebars/helpers/log.js +0 -26
- data/node_modules/handlebars/dist/cjs/handlebars/helpers/lookup.js +0 -16
- data/node_modules/handlebars/dist/cjs/handlebars/helpers/with.js +0 -43
- data/node_modules/handlebars/dist/cjs/handlebars/helpers.js +0 -56
- data/node_modules/handlebars/dist/cjs/handlebars/internal/create-new-lookup-object.js +0 -22
- data/node_modules/handlebars/dist/cjs/handlebars/internal/proto-access.js +0 -73
- data/node_modules/handlebars/dist/cjs/handlebars/internal/wrapHelper.js +0 -19
- data/node_modules/handlebars/dist/cjs/handlebars/logger.js +0 -47
- data/node_modules/handlebars/dist/cjs/handlebars/no-conflict.js +0 -30
- data/node_modules/handlebars/dist/cjs/handlebars/runtime.js +0 -372
- data/node_modules/handlebars/dist/cjs/handlebars/safe-string.js +0 -15
- data/node_modules/handlebars/dist/cjs/handlebars/utils.js +0 -124
- data/node_modules/handlebars/dist/cjs/handlebars.js +0 -66
- data/node_modules/handlebars/dist/cjs/handlebars.runtime.js +0 -66
- data/node_modules/handlebars/dist/cjs/precompiler.js +0 -328
- data/node_modules/handlebars/dist/handlebars.amd.js +0 -4639
- data/node_modules/handlebars/dist/handlebars.amd.min.js +0 -29
- data/node_modules/handlebars/dist/handlebars.js +0 -5972
- data/node_modules/handlebars/dist/handlebars.min.js +0 -29
- data/node_modules/handlebars/dist/handlebars.runtime.amd.js +0 -1302
- data/node_modules/handlebars/dist/handlebars.runtime.amd.min.js +0 -27
- data/node_modules/handlebars/dist/handlebars.runtime.js +0 -2563
- data/node_modules/handlebars/dist/handlebars.runtime.min.js +0 -27
- data/node_modules/handlebars/lib/.eslintrc.js +0 -8
- data/node_modules/handlebars/lib/handlebars/base.js +0 -94
- data/node_modules/handlebars/lib/handlebars/compiler/ast.js +0 -32
- data/node_modules/handlebars/lib/handlebars/compiler/base.js +0 -34
- data/node_modules/handlebars/lib/handlebars/compiler/code-gen.js +0 -171
- data/node_modules/handlebars/lib/handlebars/compiler/compiler.js +0 -594
- data/node_modules/handlebars/lib/handlebars/compiler/helpers.js +0 -219
- data/node_modules/handlebars/lib/handlebars/compiler/javascript-compiler.js +0 -1293
- data/node_modules/handlebars/lib/handlebars/compiler/parser.js +0 -622
- data/node_modules/handlebars/lib/handlebars/compiler/printer.js +0 -178
- data/node_modules/handlebars/lib/handlebars/compiler/visitor.js +0 -136
- data/node_modules/handlebars/lib/handlebars/compiler/whitespace-control.js +0 -234
- data/node_modules/handlebars/lib/handlebars/decorators/inline.js +0 -22
- data/node_modules/handlebars/lib/handlebars/decorators.js +0 -5
- data/node_modules/handlebars/lib/handlebars/exception.js +0 -68
- data/node_modules/handlebars/lib/handlebars/helpers/block-helper-missing.js +0 -35
- data/node_modules/handlebars/lib/handlebars/helpers/each.js +0 -101
- data/node_modules/handlebars/lib/handlebars/helpers/helper-missing.js +0 -15
- data/node_modules/handlebars/lib/handlebars/helpers/if.js +0 -33
- data/node_modules/handlebars/lib/handlebars/helpers/log.js +0 -19
- data/node_modules/handlebars/lib/handlebars/helpers/lookup.js +0 -9
- data/node_modules/handlebars/lib/handlebars/helpers/with.js +0 -39
- data/node_modules/handlebars/lib/handlebars/helpers.js +0 -26
- data/node_modules/handlebars/lib/handlebars/internal/create-new-lookup-object.js +0 -11
- data/node_modules/handlebars/lib/handlebars/internal/proto-access.js +0 -70
- data/node_modules/handlebars/lib/handlebars/internal/wrapHelper.js +0 -13
- data/node_modules/handlebars/lib/handlebars/logger.js +0 -39
- data/node_modules/handlebars/lib/handlebars/no-conflict.js +0 -23
- data/node_modules/handlebars/lib/handlebars/runtime.js +0 -450
- data/node_modules/handlebars/lib/handlebars/safe-string.js +0 -10
- data/node_modules/handlebars/lib/handlebars/utils.js +0 -116
- data/node_modules/handlebars/lib/handlebars.js +0 -46
- data/node_modules/handlebars/lib/handlebars.runtime.js +0 -37
- data/node_modules/handlebars/lib/index.js +0 -26
- data/node_modules/handlebars/lib/precompiler.js +0 -341
- data/node_modules/handlebars/package.json +0 -135
- data/node_modules/handlebars/release-notes.md +0 -1102
- data/node_modules/handlebars/runtime.d.ts +0 -5
- data/node_modules/handlebars/runtime.js +0 -3
- data/node_modules/handlebars/types/index.d.ts +0 -422
- data/node_modules/has-flag/index.js +0 -8
- data/node_modules/has-flag/license +0 -9
- data/node_modules/has-flag/package.json +0 -44
- data/node_modules/has-flag/readme.md +0 -70
- data/node_modules/hosted-git-info/LICENSE +0 -13
- data/node_modules/hosted-git-info/README.md +0 -133
- data/node_modules/hosted-git-info/lib/from-url.js +0 -122
- data/node_modules/hosted-git-info/lib/hosts.js +0 -227
- data/node_modules/hosted-git-info/lib/index.js +0 -179
- data/node_modules/hosted-git-info/lib/parse-url.js +0 -78
- data/node_modules/hosted-git-info/package.json +0 -60
- data/node_modules/human-signals/LICENSE +0 -201
- data/node_modules/human-signals/README.md +0 -168
- data/node_modules/human-signals/build/src/core.js +0 -273
- data/node_modules/human-signals/build/src/main.d.ts +0 -73
- data/node_modules/human-signals/build/src/main.js +0 -70
- data/node_modules/human-signals/build/src/realtime.js +0 -16
- data/node_modules/human-signals/build/src/signals.js +0 -34
- data/node_modules/human-signals/package.json +0 -61
- data/node_modules/import-fresh/index.d.ts +0 -30
- data/node_modules/import-fresh/index.js +0 -33
- data/node_modules/import-fresh/license +0 -9
- data/node_modules/import-fresh/node_modules/resolve-from/index.js +0 -47
- data/node_modules/import-fresh/node_modules/resolve-from/license +0 -9
- data/node_modules/import-fresh/node_modules/resolve-from/package.json +0 -34
- data/node_modules/import-fresh/node_modules/resolve-from/readme.md +0 -72
- data/node_modules/import-fresh/package.json +0 -43
- data/node_modules/import-fresh/readme.md +0 -48
- data/node_modules/import-meta-resolve/index.d.ts +0 -18
- data/node_modules/import-meta-resolve/index.js +0 -47
- data/node_modules/import-meta-resolve/lib/errors.d.ts +0 -23
- data/node_modules/import-meta-resolve/lib/errors.js +0 -507
- data/node_modules/import-meta-resolve/lib/get-format.d.ts +0 -12
- data/node_modules/import-meta-resolve/lib/get-format.js +0 -159
- data/node_modules/import-meta-resolve/lib/package-json-reader.d.ts +0 -31
- data/node_modules/import-meta-resolve/lib/package-json-reader.js +0 -177
- data/node_modules/import-meta-resolve/lib/resolve.d.ts +0 -33
- data/node_modules/import-meta-resolve/lib/resolve.js +0 -1297
- data/node_modules/import-meta-resolve/lib/utils.d.ts +0 -5
- data/node_modules/import-meta-resolve/lib/utils.js +0 -47
- data/node_modules/import-meta-resolve/license +0 -74
- data/node_modules/import-meta-resolve/package.json +0 -95
- data/node_modules/import-meta-resolve/readme.md +0 -252
- data/node_modules/index-to-position/index.d.ts +0 -21
- data/node_modules/index-to-position/index.js +0 -29
- data/node_modules/index-to-position/license +0 -9
- data/node_modules/index-to-position/package.json +0 -47
- data/node_modules/index-to-position/readme.md +0 -45
- data/node_modules/ini/LICENSE +0 -15
- data/node_modules/ini/README.md +0 -125
- data/node_modules/ini/lib/ini.js +0 -278
- data/node_modules/ini/package.json +0 -45
- data/node_modules/is-arrayish/.editorconfig +0 -18
- data/node_modules/is-arrayish/.istanbul.yml +0 -4
- data/node_modules/is-arrayish/.npmignore +0 -5
- data/node_modules/is-arrayish/.travis.yml +0 -17
- data/node_modules/is-arrayish/LICENSE +0 -21
- data/node_modules/is-arrayish/README.md +0 -16
- data/node_modules/is-arrayish/index.js +0 -10
- data/node_modules/is-arrayish/package.json +0 -34
- data/node_modules/is-fullwidth-code-point/index.d.ts +0 -17
- data/node_modules/is-fullwidth-code-point/index.js +0 -50
- data/node_modules/is-fullwidth-code-point/license +0 -9
- data/node_modules/is-fullwidth-code-point/package.json +0 -42
- data/node_modules/is-fullwidth-code-point/readme.md +0 -39
- data/node_modules/is-obj/index.d.ts +0 -22
- data/node_modules/is-obj/index.js +0 -6
- data/node_modules/is-obj/license +0 -9
- data/node_modules/is-obj/package.json +0 -34
- data/node_modules/is-obj/readme.md +0 -39
- data/node_modules/is-stream/index.d.ts +0 -81
- data/node_modules/is-stream/index.js +0 -29
- data/node_modules/is-stream/license +0 -9
- data/node_modules/is-stream/package.json +0 -44
- data/node_modules/is-stream/readme.md +0 -60
- data/node_modules/is-text-path/index.d.ts +0 -17
- data/node_modules/is-text-path/index.js +0 -7
- data/node_modules/is-text-path/license +0 -9
- data/node_modules/is-text-path/package.json +0 -40
- data/node_modules/is-text-path/readme.md +0 -34
- data/node_modules/isexe/.npmignore +0 -2
- data/node_modules/isexe/LICENSE +0 -15
- data/node_modules/isexe/README.md +0 -51
- data/node_modules/isexe/index.js +0 -57
- data/node_modules/isexe/mode.js +0 -41
- data/node_modules/isexe/package.json +0 -31
- data/node_modules/isexe/test/basic.js +0 -221
- data/node_modules/isexe/windows.js +0 -42
- data/node_modules/jiti/LICENSE +0 -21
- data/node_modules/jiti/README.md +0 -164
- data/node_modules/jiti/bin/jiti.js +0 -16
- data/node_modules/jiti/dist/babel.d.ts +0 -2
- data/node_modules/jiti/dist/babel.js +0 -202
- data/node_modules/jiti/dist/jiti.d.ts +0 -22
- data/node_modules/jiti/dist/jiti.js +0 -1
- data/node_modules/jiti/dist/plugins/babel-plugin-transform-import-meta.d.ts +0 -4
- data/node_modules/jiti/dist/plugins/import-meta-env.d.ts +0 -5
- data/node_modules/jiti/dist/types.d.ts +0 -35
- data/node_modules/jiti/dist/utils.d.ts +0 -8
- data/node_modules/jiti/lib/index.js +0 -15
- data/node_modules/jiti/package.json +0 -81
- data/node_modules/jiti/register.js +0 -3
- data/node_modules/js-tokens/CHANGELOG.md +0 -151
- data/node_modules/js-tokens/LICENSE +0 -21
- data/node_modules/js-tokens/README.md +0 -240
- data/node_modules/js-tokens/index.js +0 -23
- data/node_modules/js-tokens/package.json +0 -30
- data/node_modules/js-yaml/CHANGELOG.md +0 -616
- data/node_modules/js-yaml/LICENSE +0 -21
- data/node_modules/js-yaml/README.md +0 -246
- data/node_modules/js-yaml/bin/js-yaml.js +0 -126
- data/node_modules/js-yaml/dist/js-yaml.js +0 -3874
- data/node_modules/js-yaml/dist/js-yaml.min.js +0 -2
- data/node_modules/js-yaml/dist/js-yaml.mjs +0 -3851
- data/node_modules/js-yaml/index.js +0 -47
- data/node_modules/js-yaml/lib/common.js +0 -59
- data/node_modules/js-yaml/lib/dumper.js +0 -965
- data/node_modules/js-yaml/lib/exception.js +0 -55
- data/node_modules/js-yaml/lib/loader.js +0 -1727
- data/node_modules/js-yaml/lib/schema/core.js +0 -11
- data/node_modules/js-yaml/lib/schema/default.js +0 -22
- data/node_modules/js-yaml/lib/schema/failsafe.js +0 -17
- data/node_modules/js-yaml/lib/schema/json.js +0 -19
- data/node_modules/js-yaml/lib/schema.js +0 -121
- data/node_modules/js-yaml/lib/snippet.js +0 -101
- data/node_modules/js-yaml/lib/type/binary.js +0 -125
- data/node_modules/js-yaml/lib/type/bool.js +0 -35
- data/node_modules/js-yaml/lib/type/float.js +0 -97
- data/node_modules/js-yaml/lib/type/int.js +0 -156
- data/node_modules/js-yaml/lib/type/map.js +0 -8
- data/node_modules/js-yaml/lib/type/merge.js +0 -12
- data/node_modules/js-yaml/lib/type/null.js +0 -35
- data/node_modules/js-yaml/lib/type/omap.js +0 -44
- data/node_modules/js-yaml/lib/type/pairs.js +0 -53
- data/node_modules/js-yaml/lib/type/seq.js +0 -8
- data/node_modules/js-yaml/lib/type/set.js +0 -29
- data/node_modules/js-yaml/lib/type/str.js +0 -8
- data/node_modules/js-yaml/lib/type/timestamp.js +0 -88
- data/node_modules/js-yaml/lib/type.js +0 -66
- data/node_modules/js-yaml/package.json +0 -66
- data/node_modules/json-parse-even-better-errors/CHANGELOG.md +0 -50
- data/node_modules/json-parse-even-better-errors/LICENSE.md +0 -25
- data/node_modules/json-parse-even-better-errors/README.md +0 -96
- data/node_modules/json-parse-even-better-errors/index.js +0 -121
- data/node_modules/json-parse-even-better-errors/package.json +0 -33
- data/node_modules/json-schema-traverse/.eslintrc.yml +0 -27
- data/node_modules/json-schema-traverse/.github/FUNDING.yml +0 -2
- data/node_modules/json-schema-traverse/.github/workflows/build.yml +0 -28
- data/node_modules/json-schema-traverse/.github/workflows/publish.yml +0 -27
- data/node_modules/json-schema-traverse/LICENSE +0 -21
- data/node_modules/json-schema-traverse/README.md +0 -95
- data/node_modules/json-schema-traverse/index.d.ts +0 -40
- data/node_modules/json-schema-traverse/index.js +0 -93
- data/node_modules/json-schema-traverse/package.json +0 -43
- data/node_modules/json-schema-traverse/spec/.eslintrc.yml +0 -6
- data/node_modules/json-schema-traverse/spec/fixtures/schema.js +0 -125
- data/node_modules/json-schema-traverse/spec/index.spec.js +0 -171
- data/node_modules/jsonparse/.npmignore +0 -1
- data/node_modules/jsonparse/LICENSE +0 -24
- data/node_modules/jsonparse/README.markdown +0 -11
- data/node_modules/jsonparse/bench.js +0 -26
- data/node_modules/jsonparse/examples/twitterfeed.js +0 -30
- data/node_modules/jsonparse/jsonparse.js +0 -413
- data/node_modules/jsonparse/package.json +0 -22
- data/node_modules/jsonparse/samplejson/basic.json +0 -167
- data/node_modules/jsonparse/samplejson/basic2.json +0 -180
- data/node_modules/jsonparse/test/big-token.js +0 -24
- data/node_modules/jsonparse/test/boundary.js +0 -110
- data/node_modules/jsonparse/test/offset.js +0 -67
- data/node_modules/jsonparse/test/primitives.js +0 -57
- data/node_modules/jsonparse/test/surrogate.js +0 -26
- data/node_modules/jsonparse/test/unvalid.js +0 -15
- data/node_modules/jsonparse/test/utf8.js +0 -38
- data/node_modules/lefthook/README.md +0 -243
- data/node_modules/lefthook/bin/index.js +0 -17
- data/node_modules/lefthook/get-exe.js +0 -20
- data/node_modules/lefthook/package.json +0 -40
- data/node_modules/lefthook/postinstall.js +0 -21
- data/node_modules/lefthook-darwin-arm64/README.md +0 -243
- data/node_modules/lefthook-darwin-arm64/bin/lefthook +0 -0
- data/node_modules/lefthook-darwin-arm64/package.json +0 -22
- data/node_modules/lines-and-columns/LICENSE +0 -21
- data/node_modules/lines-and-columns/README.md +0 -33
- data/node_modules/lines-and-columns/build/index.d.ts +0 -13
- data/node_modules/lines-and-columns/build/index.js +0 -62
- data/node_modules/lines-and-columns/package.json +0 -49
- data/node_modules/locate-path/index.d.ts +0 -92
- data/node_modules/locate-path/index.js +0 -77
- data/node_modules/locate-path/license +0 -9
- data/node_modules/locate-path/package.json +0 -48
- data/node_modules/locate-path/readme.md +0 -123
- data/node_modules/lodash.camelcase/LICENSE +0 -47
- data/node_modules/lodash.camelcase/README.md +0 -18
- data/node_modules/lodash.camelcase/index.js +0 -599
- data/node_modules/lodash.camelcase/package.json +0 -17
- data/node_modules/lodash.isplainobject/LICENSE +0 -47
- data/node_modules/lodash.isplainobject/README.md +0 -18
- data/node_modules/lodash.isplainobject/index.js +0 -139
- data/node_modules/lodash.isplainobject/package.json +0 -17
- data/node_modules/lodash.kebabcase/LICENSE +0 -47
- data/node_modules/lodash.kebabcase/README.md +0 -18
- data/node_modules/lodash.kebabcase/index.js +0 -435
- data/node_modules/lodash.kebabcase/package.json +0 -17
- data/node_modules/lodash.merge/LICENSE +0 -47
- data/node_modules/lodash.merge/README.md +0 -18
- data/node_modules/lodash.merge/index.js +0 -1977
- data/node_modules/lodash.merge/package.json +0 -16
- data/node_modules/lodash.mergewith/LICENSE +0 -47
- data/node_modules/lodash.mergewith/README.md +0 -18
- data/node_modules/lodash.mergewith/index.js +0 -1977
- data/node_modules/lodash.mergewith/package.json +0 -16
- data/node_modules/lodash.snakecase/LICENSE +0 -47
- data/node_modules/lodash.snakecase/README.md +0 -18
- data/node_modules/lodash.snakecase/index.js +0 -435
- data/node_modules/lodash.snakecase/package.json +0 -17
- data/node_modules/lodash.startcase/LICENSE +0 -47
- data/node_modules/lodash.startcase/README.md +0 -18
- data/node_modules/lodash.startcase/index.js +0 -580
- data/node_modules/lodash.startcase/package.json +0 -17
- data/node_modules/lodash.uniq/LICENSE +0 -47
- data/node_modules/lodash.uniq/README.md +0 -18
- data/node_modules/lodash.uniq/index.js +0 -896
- data/node_modules/lodash.uniq/package.json +0 -17
- data/node_modules/lodash.upperfirst/LICENSE +0 -47
- data/node_modules/lodash.upperfirst/README.md +0 -18
- data/node_modules/lodash.upperfirst/index.js +0 -303
- data/node_modules/lodash.upperfirst/package.json +0 -17
- data/node_modules/lru-cache/LICENSE +0 -15
- data/node_modules/lru-cache/README.md +0 -331
- data/node_modules/lru-cache/dist/commonjs/index.d.ts +0 -1277
- data/node_modules/lru-cache/dist/commonjs/index.d.ts.map +0 -1
- data/node_modules/lru-cache/dist/commonjs/index.js +0 -1546
- data/node_modules/lru-cache/dist/commonjs/index.js.map +0 -1
- data/node_modules/lru-cache/dist/commonjs/index.min.js +0 -2
- data/node_modules/lru-cache/dist/commonjs/index.min.js.map +0 -7
- data/node_modules/lru-cache/dist/commonjs/package.json +0 -3
- data/node_modules/lru-cache/dist/esm/index.d.ts +0 -1277
- data/node_modules/lru-cache/dist/esm/index.d.ts.map +0 -1
- data/node_modules/lru-cache/dist/esm/index.js +0 -1542
- data/node_modules/lru-cache/dist/esm/index.js.map +0 -1
- data/node_modules/lru-cache/dist/esm/index.min.js +0 -2
- data/node_modules/lru-cache/dist/esm/index.min.js.map +0 -7
- data/node_modules/lru-cache/dist/esm/package.json +0 -3
- data/node_modules/lru-cache/package.json +0 -116
- data/node_modules/meow/build/dependencies.js +0 -8828
- data/node_modules/meow/build/index.d.ts +0 -1425
- data/node_modules/meow/build/index.js +0 -95
- data/node_modules/meow/build/licenses.md +0 -1620
- data/node_modules/meow/build/options.js +0 -92
- data/node_modules/meow/build/parser.js +0 -84
- data/node_modules/meow/build/utils.js +0 -7
- data/node_modules/meow/build/validate.js +0 -122
- data/node_modules/meow/license +0 -9
- data/node_modules/meow/package.json +0 -105
- data/node_modules/meow/readme.md +0 -314
- data/node_modules/merge-stream/LICENSE +0 -21
- data/node_modules/merge-stream/README.md +0 -78
- data/node_modules/merge-stream/index.js +0 -41
- data/node_modules/merge-stream/package.json +0 -19
- data/node_modules/mimic-fn/index.d.ts +0 -52
- data/node_modules/mimic-fn/index.js +0 -71
- data/node_modules/mimic-fn/license +0 -9
- data/node_modules/mimic-fn/package.json +0 -45
- data/node_modules/mimic-fn/readme.md +0 -90
- data/node_modules/minimist/.eslintrc +0 -29
- data/node_modules/minimist/.github/FUNDING.yml +0 -12
- data/node_modules/minimist/.nycrc +0 -14
- data/node_modules/minimist/CHANGELOG.md +0 -298
- data/node_modules/minimist/LICENSE +0 -18
- data/node_modules/minimist/README.md +0 -121
- data/node_modules/minimist/example/parse.js +0 -4
- data/node_modules/minimist/index.js +0 -263
- data/node_modules/minimist/package.json +0 -75
- data/node_modules/minimist/test/all_bool.js +0 -34
- data/node_modules/minimist/test/bool.js +0 -177
- data/node_modules/minimist/test/dash.js +0 -43
- data/node_modules/minimist/test/default_bool.js +0 -37
- data/node_modules/minimist/test/dotted.js +0 -24
- data/node_modules/minimist/test/kv_short.js +0 -32
- data/node_modules/minimist/test/long.js +0 -33
- data/node_modules/minimist/test/num.js +0 -38
- data/node_modules/minimist/test/parse.js +0 -209
- data/node_modules/minimist/test/parse_modified.js +0 -11
- data/node_modules/minimist/test/proto.js +0 -64
- data/node_modules/minimist/test/short.js +0 -69
- data/node_modules/minimist/test/stop_early.js +0 -17
- data/node_modules/minimist/test/unknown.js +0 -104
- data/node_modules/minimist/test/whitespace.js +0 -10
- data/node_modules/neo-async/LICENSE +0 -22
- data/node_modules/neo-async/README.md +0 -273
- data/node_modules/neo-async/all.js +0 -3
- data/node_modules/neo-async/allLimit.js +0 -3
- data/node_modules/neo-async/allSeries.js +0 -3
- data/node_modules/neo-async/angelFall.js +0 -3
- data/node_modules/neo-async/any.js +0 -3
- data/node_modules/neo-async/anyLimit.js +0 -3
- data/node_modules/neo-async/anySeries.js +0 -3
- data/node_modules/neo-async/apply.js +0 -3
- data/node_modules/neo-async/applyEach.js +0 -3
- data/node_modules/neo-async/applyEachSeries.js +0 -3
- data/node_modules/neo-async/async.js +0 -9184
- data/node_modules/neo-async/async.min.js +0 -80
- data/node_modules/neo-async/asyncify.js +0 -3
- data/node_modules/neo-async/auto.js +0 -3
- data/node_modules/neo-async/autoInject.js +0 -3
- data/node_modules/neo-async/cargo.js +0 -3
- data/node_modules/neo-async/compose.js +0 -3
- data/node_modules/neo-async/concat.js +0 -3
- data/node_modules/neo-async/concatLimit.js +0 -3
- data/node_modules/neo-async/concatSeries.js +0 -3
- data/node_modules/neo-async/constant.js +0 -3
- data/node_modules/neo-async/createLogger.js +0 -3
- data/node_modules/neo-async/detect.js +0 -3
- data/node_modules/neo-async/detectLimit.js +0 -3
- data/node_modules/neo-async/detectSeries.js +0 -3
- data/node_modules/neo-async/dir.js +0 -3
- data/node_modules/neo-async/doDuring.js +0 -3
- data/node_modules/neo-async/doUntil.js +0 -3
- data/node_modules/neo-async/doWhilst.js +0 -3
- data/node_modules/neo-async/during.js +0 -3
- data/node_modules/neo-async/each.js +0 -3
- data/node_modules/neo-async/eachLimit.js +0 -3
- data/node_modules/neo-async/eachOf.js +0 -3
- data/node_modules/neo-async/eachOfLimit.js +0 -3
- data/node_modules/neo-async/eachOfSeries.js +0 -3
- data/node_modules/neo-async/eachSeries.js +0 -3
- data/node_modules/neo-async/ensureAsync.js +0 -3
- data/node_modules/neo-async/every.js +0 -3
- data/node_modules/neo-async/everyLimit.js +0 -3
- data/node_modules/neo-async/everySeries.js +0 -3
- data/node_modules/neo-async/fast.js +0 -3
- data/node_modules/neo-async/filter.js +0 -3
- data/node_modules/neo-async/filterLimit.js +0 -3
- data/node_modules/neo-async/filterSeries.js +0 -3
- data/node_modules/neo-async/find.js +0 -3
- data/node_modules/neo-async/findLimit.js +0 -3
- data/node_modules/neo-async/findSeries.js +0 -3
- data/node_modules/neo-async/foldl.js +0 -3
- data/node_modules/neo-async/foldr.js +0 -3
- data/node_modules/neo-async/forEach.js +0 -3
- data/node_modules/neo-async/forEachLimit.js +0 -3
- data/node_modules/neo-async/forEachOf.js +0 -3
- data/node_modules/neo-async/forEachOfLimit.js +0 -3
- data/node_modules/neo-async/forEachOfSeries.js +0 -3
- data/node_modules/neo-async/forEachSeries.js +0 -3
- data/node_modules/neo-async/forever.js +0 -3
- data/node_modules/neo-async/groupBy.js +0 -3
- data/node_modules/neo-async/groupByLimit.js +0 -3
- data/node_modules/neo-async/groupBySeries.js +0 -3
- data/node_modules/neo-async/inject.js +0 -3
- data/node_modules/neo-async/iterator.js +0 -3
- data/node_modules/neo-async/log.js +0 -3
- data/node_modules/neo-async/map.js +0 -3
- data/node_modules/neo-async/mapLimit.js +0 -3
- data/node_modules/neo-async/mapSeries.js +0 -3
- data/node_modules/neo-async/mapValues.js +0 -3
- data/node_modules/neo-async/mapValuesLimit.js +0 -3
- data/node_modules/neo-async/mapValuesSeries.js +0 -3
- data/node_modules/neo-async/memoize.js +0 -3
- data/node_modules/neo-async/nextTick.js +0 -3
- data/node_modules/neo-async/omit.js +0 -3
- data/node_modules/neo-async/omitLimit.js +0 -3
- data/node_modules/neo-async/omitSeries.js +0 -3
- data/node_modules/neo-async/package.json +0 -57
- data/node_modules/neo-async/parallel.js +0 -3
- data/node_modules/neo-async/parallelLimit.js +0 -3
- data/node_modules/neo-async/pick.js +0 -3
- data/node_modules/neo-async/pickLimit.js +0 -3
- data/node_modules/neo-async/pickSeries.js +0 -3
- data/node_modules/neo-async/priorityQueue.js +0 -3
- data/node_modules/neo-async/queue.js +0 -3
- data/node_modules/neo-async/race.js +0 -3
- data/node_modules/neo-async/reduce.js +0 -3
- data/node_modules/neo-async/reduceRight.js +0 -3
- data/node_modules/neo-async/reflect.js +0 -3
- data/node_modules/neo-async/reflectAll.js +0 -3
- data/node_modules/neo-async/reject.js +0 -3
- data/node_modules/neo-async/rejectLimit.js +0 -3
- data/node_modules/neo-async/rejectSeries.js +0 -3
- data/node_modules/neo-async/retry.js +0 -3
- data/node_modules/neo-async/retryable.js +0 -3
- data/node_modules/neo-async/safe.js +0 -3
- data/node_modules/neo-async/select.js +0 -3
- data/node_modules/neo-async/selectLimit.js +0 -3
- data/node_modules/neo-async/selectSeries.js +0 -3
- data/node_modules/neo-async/seq.js +0 -3
- data/node_modules/neo-async/series.js +0 -3
- data/node_modules/neo-async/setImmediate.js +0 -3
- data/node_modules/neo-async/some.js +0 -3
- data/node_modules/neo-async/someLimit.js +0 -3
- data/node_modules/neo-async/someSeries.js +0 -3
- data/node_modules/neo-async/sortBy.js +0 -3
- data/node_modules/neo-async/sortByLimit.js +0 -3
- data/node_modules/neo-async/sortBySeries.js +0 -3
- data/node_modules/neo-async/timeout.js +0 -3
- data/node_modules/neo-async/times.js +0 -3
- data/node_modules/neo-async/timesLimit.js +0 -3
- data/node_modules/neo-async/timesSeries.js +0 -3
- data/node_modules/neo-async/transform.js +0 -3
- data/node_modules/neo-async/transformLimit.js +0 -3
- data/node_modules/neo-async/transformSeries.js +0 -3
- data/node_modules/neo-async/tryEach.js +0 -3
- data/node_modules/neo-async/unmemoize.js +0 -3
- data/node_modules/neo-async/until.js +0 -3
- data/node_modules/neo-async/waterfall.js +0 -3
- data/node_modules/neo-async/whilst.js +0 -3
- data/node_modules/neo-async/wrapSync.js +0 -3
- data/node_modules/normalize-package-data/LICENSE +0 -15
- data/node_modules/normalize-package-data/README.md +0 -108
- data/node_modules/normalize-package-data/lib/extract_description.js +0 -24
- data/node_modules/normalize-package-data/lib/fixer.js +0 -475
- data/node_modules/normalize-package-data/lib/make_warning.js +0 -22
- data/node_modules/normalize-package-data/lib/normalize.js +0 -48
- data/node_modules/normalize-package-data/lib/safe_format.js +0 -11
- data/node_modules/normalize-package-data/lib/typos.json +0 -25
- data/node_modules/normalize-package-data/lib/warning_messages.json +0 -30
- data/node_modules/normalize-package-data/package.json +0 -55
- data/node_modules/npm-run-path/index.d.ts +0 -90
- data/node_modules/npm-run-path/index.js +0 -52
- data/node_modules/npm-run-path/license +0 -9
- data/node_modules/npm-run-path/node_modules/path-key/index.d.ts +0 -31
- data/node_modules/npm-run-path/node_modules/path-key/index.js +0 -12
- data/node_modules/npm-run-path/node_modules/path-key/license +0 -9
- data/node_modules/npm-run-path/node_modules/path-key/package.json +0 -41
- data/node_modules/npm-run-path/node_modules/path-key/readme.md +0 -57
- data/node_modules/npm-run-path/package.json +0 -49
- data/node_modules/npm-run-path/readme.md +0 -104
- data/node_modules/onetime/index.d.ts +0 -59
- data/node_modules/onetime/index.js +0 -41
- data/node_modules/onetime/license +0 -9
- data/node_modules/onetime/package.json +0 -45
- data/node_modules/onetime/readme.md +0 -94
- data/node_modules/p-limit/index.d.ts +0 -40
- data/node_modules/p-limit/index.js +0 -68
- data/node_modules/p-limit/license +0 -9
- data/node_modules/p-limit/package.json +0 -54
- data/node_modules/p-limit/readme.md +0 -99
- data/node_modules/p-locate/index.d.ts +0 -49
- data/node_modules/p-locate/index.js +0 -48
- data/node_modules/p-locate/license +0 -9
- data/node_modules/p-locate/package.json +0 -56
- data/node_modules/p-locate/readme.md +0 -91
- data/node_modules/parent-module/index.js +0 -37
- data/node_modules/parent-module/license +0 -9
- data/node_modules/parent-module/package.json +0 -46
- data/node_modules/parent-module/readme.md +0 -67
- data/node_modules/parse-json/index.js +0 -54
- data/node_modules/parse-json/license +0 -9
- data/node_modules/parse-json/package.json +0 -45
- data/node_modules/parse-json/readme.md +0 -119
- data/node_modules/path-exists/index.d.ts +0 -31
- data/node_modules/path-exists/index.js +0 -19
- data/node_modules/path-exists/license +0 -9
- data/node_modules/path-exists/package.json +0 -41
- data/node_modules/path-exists/readme.md +0 -52
- data/node_modules/path-key/index.d.ts +0 -40
- data/node_modules/path-key/index.js +0 -16
- data/node_modules/path-key/license +0 -9
- data/node_modules/path-key/package.json +0 -39
- data/node_modules/path-key/readme.md +0 -61
- data/node_modules/picocolors/LICENSE +0 -15
- data/node_modules/picocolors/README.md +0 -21
- data/node_modules/picocolors/package.json +0 -25
- data/node_modules/picocolors/picocolors.browser.js +0 -4
- data/node_modules/picocolors/picocolors.d.ts +0 -5
- data/node_modules/picocolors/picocolors.js +0 -65
- data/node_modules/picocolors/types.ts +0 -30
- data/node_modules/read-package-up/index.d.ts +0 -81
- data/node_modules/read-package-up/index.js +0 -27
- data/node_modules/read-package-up/license +0 -9
- data/node_modules/read-package-up/package.json +0 -69
- data/node_modules/read-package-up/readme.md +0 -68
- data/node_modules/read-pkg/index.d.ts +0 -68
- data/node_modules/read-pkg/index.js +0 -43
- data/node_modules/read-pkg/license +0 -9
- data/node_modules/read-pkg/node_modules/parse-json/index.d.ts +0 -126
- data/node_modules/read-pkg/node_modules/parse-json/index.js +0 -96
- data/node_modules/read-pkg/node_modules/parse-json/license +0 -9
- data/node_modules/read-pkg/node_modules/parse-json/package.json +0 -53
- data/node_modules/read-pkg/node_modules/parse-json/readme.md +0 -113
- data/node_modules/read-pkg/package.json +0 -52
- data/node_modules/read-pkg/readme.md +0 -81
- data/node_modules/require-directory/.jshintrc +0 -67
- data/node_modules/require-directory/.npmignore +0 -1
- data/node_modules/require-directory/.travis.yml +0 -3
- data/node_modules/require-directory/LICENSE +0 -22
- data/node_modules/require-directory/README.markdown +0 -184
- data/node_modules/require-directory/index.js +0 -86
- data/node_modules/require-directory/package.json +0 -40
- data/node_modules/require-from-string/index.js +0 -34
- data/node_modules/require-from-string/license +0 -21
- data/node_modules/require-from-string/package.json +0 -28
- data/node_modules/require-from-string/readme.md +0 -56
- data/node_modules/resolve-from/index.d.ts +0 -31
- data/node_modules/resolve-from/index.js +0 -47
- data/node_modules/resolve-from/license +0 -9
- data/node_modules/resolve-from/package.json +0 -36
- data/node_modules/resolve-from/readme.md +0 -72
- data/node_modules/semver/LICENSE +0 -15
- data/node_modules/semver/README.md +0 -654
- data/node_modules/semver/bin/semver.js +0 -188
- data/node_modules/semver/classes/comparator.js +0 -141
- data/node_modules/semver/classes/index.js +0 -5
- data/node_modules/semver/classes/range.js +0 -554
- data/node_modules/semver/classes/semver.js +0 -302
- data/node_modules/semver/functions/clean.js +0 -6
- data/node_modules/semver/functions/cmp.js +0 -52
- data/node_modules/semver/functions/coerce.js +0 -60
- data/node_modules/semver/functions/compare-build.js +0 -7
- data/node_modules/semver/functions/compare-loose.js +0 -3
- data/node_modules/semver/functions/compare.js +0 -5
- data/node_modules/semver/functions/diff.js +0 -65
- data/node_modules/semver/functions/eq.js +0 -3
- data/node_modules/semver/functions/gt.js +0 -3
- data/node_modules/semver/functions/gte.js +0 -3
- data/node_modules/semver/functions/inc.js +0 -19
- data/node_modules/semver/functions/lt.js +0 -3
- data/node_modules/semver/functions/lte.js +0 -3
- data/node_modules/semver/functions/major.js +0 -3
- data/node_modules/semver/functions/minor.js +0 -3
- data/node_modules/semver/functions/neq.js +0 -3
- data/node_modules/semver/functions/parse.js +0 -16
- data/node_modules/semver/functions/patch.js +0 -3
- data/node_modules/semver/functions/prerelease.js +0 -6
- data/node_modules/semver/functions/rcompare.js +0 -3
- data/node_modules/semver/functions/rsort.js +0 -3
- data/node_modules/semver/functions/satisfies.js +0 -10
- data/node_modules/semver/functions/sort.js +0 -3
- data/node_modules/semver/functions/valid.js +0 -6
- data/node_modules/semver/index.js +0 -89
- data/node_modules/semver/internal/constants.js +0 -35
- data/node_modules/semver/internal/debug.js +0 -9
- data/node_modules/semver/internal/identifiers.js +0 -23
- data/node_modules/semver/internal/lrucache.js +0 -40
- data/node_modules/semver/internal/parse-options.js +0 -15
- data/node_modules/semver/internal/re.js +0 -217
- data/node_modules/semver/package.json +0 -77
- data/node_modules/semver/preload.js +0 -2
- data/node_modules/semver/range.bnf +0 -16
- data/node_modules/semver/ranges/gtr.js +0 -4
- data/node_modules/semver/ranges/intersects.js +0 -7
- data/node_modules/semver/ranges/ltr.js +0 -4
- data/node_modules/semver/ranges/max-satisfying.js +0 -25
- data/node_modules/semver/ranges/min-satisfying.js +0 -24
- data/node_modules/semver/ranges/min-version.js +0 -61
- data/node_modules/semver/ranges/outside.js +0 -80
- data/node_modules/semver/ranges/simplify.js +0 -47
- data/node_modules/semver/ranges/subset.js +0 -247
- data/node_modules/semver/ranges/to-comparators.js +0 -8
- data/node_modules/semver/ranges/valid.js +0 -11
- data/node_modules/shebang-command/index.js +0 -19
- data/node_modules/shebang-command/license +0 -9
- data/node_modules/shebang-command/package.json +0 -34
- data/node_modules/shebang-command/readme.md +0 -34
- data/node_modules/shebang-regex/index.d.ts +0 -22
- data/node_modules/shebang-regex/index.js +0 -2
- data/node_modules/shebang-regex/license +0 -9
- data/node_modules/shebang-regex/package.json +0 -35
- data/node_modules/shebang-regex/readme.md +0 -33
- data/node_modules/signal-exit/LICENSE.txt +0 -16
- data/node_modules/signal-exit/README.md +0 -74
- data/node_modules/signal-exit/dist/cjs/browser.d.ts +0 -12
- data/node_modules/signal-exit/dist/cjs/browser.d.ts.map +0 -1
- data/node_modules/signal-exit/dist/cjs/browser.js +0 -10
- data/node_modules/signal-exit/dist/cjs/browser.js.map +0 -1
- data/node_modules/signal-exit/dist/cjs/index.d.ts +0 -48
- data/node_modules/signal-exit/dist/cjs/index.d.ts.map +0 -1
- data/node_modules/signal-exit/dist/cjs/index.js +0 -279
- data/node_modules/signal-exit/dist/cjs/index.js.map +0 -1
- data/node_modules/signal-exit/dist/cjs/package.json +0 -3
- data/node_modules/signal-exit/dist/cjs/signals.d.ts +0 -29
- data/node_modules/signal-exit/dist/cjs/signals.d.ts.map +0 -1
- data/node_modules/signal-exit/dist/cjs/signals.js +0 -42
- data/node_modules/signal-exit/dist/cjs/signals.js.map +0 -1
- data/node_modules/signal-exit/dist/mjs/browser.d.ts +0 -12
- data/node_modules/signal-exit/dist/mjs/browser.d.ts.map +0 -1
- data/node_modules/signal-exit/dist/mjs/browser.js +0 -4
- data/node_modules/signal-exit/dist/mjs/browser.js.map +0 -1
- data/node_modules/signal-exit/dist/mjs/index.d.ts +0 -48
- data/node_modules/signal-exit/dist/mjs/index.d.ts.map +0 -1
- data/node_modules/signal-exit/dist/mjs/index.js +0 -275
- data/node_modules/signal-exit/dist/mjs/index.js.map +0 -1
- data/node_modules/signal-exit/dist/mjs/package.json +0 -3
- data/node_modules/signal-exit/dist/mjs/signals.d.ts +0 -29
- data/node_modules/signal-exit/dist/mjs/signals.d.ts.map +0 -1
- data/node_modules/signal-exit/dist/mjs/signals.js +0 -39
- data/node_modules/signal-exit/dist/mjs/signals.js.map +0 -1
- data/node_modules/signal-exit/package.json +0 -106
- data/node_modules/source-map/CHANGELOG.md +0 -301
- data/node_modules/source-map/LICENSE +0 -28
- data/node_modules/source-map/README.md +0 -742
- data/node_modules/source-map/dist/source-map.debug.js +0 -3234
- data/node_modules/source-map/dist/source-map.js +0 -3233
- data/node_modules/source-map/dist/source-map.min.js +0 -2
- data/node_modules/source-map/dist/source-map.min.js.map +0 -1
- data/node_modules/source-map/lib/array-set.js +0 -121
- data/node_modules/source-map/lib/base64-vlq.js +0 -140
- data/node_modules/source-map/lib/base64.js +0 -67
- data/node_modules/source-map/lib/binary-search.js +0 -111
- data/node_modules/source-map/lib/mapping-list.js +0 -79
- data/node_modules/source-map/lib/quick-sort.js +0 -114
- data/node_modules/source-map/lib/source-map-consumer.js +0 -1145
- data/node_modules/source-map/lib/source-map-generator.js +0 -425
- data/node_modules/source-map/lib/source-node.js +0 -413
- data/node_modules/source-map/lib/util.js +0 -488
- data/node_modules/source-map/package.json +0 -73
- data/node_modules/source-map/source-map.d.ts +0 -98
- data/node_modules/source-map/source-map.js +0 -8
- data/node_modules/spdx-correct/LICENSE +0 -202
- data/node_modules/spdx-correct/README.md +0 -22
- data/node_modules/spdx-correct/index.js +0 -386
- data/node_modules/spdx-correct/package.json +0 -32
- data/node_modules/spdx-exceptions/README.md +0 -36
- data/node_modules/spdx-exceptions/deprecated.json +0 -3
- data/node_modules/spdx-exceptions/index.json +0 -68
- data/node_modules/spdx-exceptions/package.json +0 -19
- data/node_modules/spdx-expression-parse/AUTHORS +0 -4
- data/node_modules/spdx-expression-parse/LICENSE +0 -22
- data/node_modules/spdx-expression-parse/README.md +0 -91
- data/node_modules/spdx-expression-parse/index.js +0 -8
- data/node_modules/spdx-expression-parse/package.json +0 -39
- data/node_modules/spdx-expression-parse/parse.js +0 -138
- data/node_modules/spdx-expression-parse/scan.js +0 -131
- data/node_modules/spdx-license-ids/README.md +0 -52
- data/node_modules/spdx-license-ids/deprecated.json +0 -28
- data/node_modules/spdx-license-ids/index.json +0 -636
- data/node_modules/spdx-license-ids/package.json +0 -39
- data/node_modules/split2/LICENSE +0 -13
- data/node_modules/split2/README.md +0 -85
- data/node_modules/split2/bench.js +0 -27
- data/node_modules/split2/index.js +0 -141
- data/node_modules/split2/package.json +0 -39
- data/node_modules/split2/test.js +0 -409
- data/node_modules/string-width/index.d.ts +0 -29
- data/node_modules/string-width/index.js +0 -47
- data/node_modules/string-width/license +0 -9
- data/node_modules/string-width/package.json +0 -56
- data/node_modules/string-width/readme.md +0 -50
- data/node_modules/strip-ansi/index.d.ts +0 -17
- data/node_modules/strip-ansi/index.js +0 -4
- data/node_modules/strip-ansi/license +0 -9
- data/node_modules/strip-ansi/package.json +0 -54
- data/node_modules/strip-ansi/readme.md +0 -46
- data/node_modules/strip-final-newline/index.js +0 -14
- data/node_modules/strip-final-newline/license +0 -9
- data/node_modules/strip-final-newline/package.json +0 -43
- data/node_modules/strip-final-newline/readme.md +0 -35
- data/node_modules/supports-color/browser.js +0 -5
- data/node_modules/supports-color/index.js +0 -131
- data/node_modules/supports-color/license +0 -9
- data/node_modules/supports-color/package.json +0 -53
- data/node_modules/supports-color/readme.md +0 -66
- data/node_modules/temp-dir/index.d.ts +0 -22
- data/node_modules/temp-dir/index.js +0 -6
- data/node_modules/temp-dir/license +0 -9
- data/node_modules/temp-dir/package.json +0 -49
- data/node_modules/temp-dir/readme.md +0 -27
- data/node_modules/tempfile/index.d.ts +0 -30
- data/node_modules/tempfile/index.js +0 -18
- data/node_modules/tempfile/license +0 -9
- data/node_modules/tempfile/package.json +0 -45
- data/node_modules/tempfile/readme.md +0 -49
- data/node_modules/text-extensions/index.d.ts +0 -14
- data/node_modules/text-extensions/index.js +0 -3
- data/node_modules/text-extensions/license +0 -9
- data/node_modules/text-extensions/package.json +0 -40
- data/node_modules/text-extensions/readme.md +0 -37
- data/node_modules/text-extensions/text-extensions.json +0 -328
- data/node_modules/text-extensions/text-extensions.json.d.ts +0 -3
- data/node_modules/through/.travis.yml +0 -5
- data/node_modules/through/LICENSE.APACHE2 +0 -15
- data/node_modules/through/LICENSE.MIT +0 -24
- data/node_modules/through/index.js +0 -108
- data/node_modules/through/package.json +0 -36
- data/node_modules/through/readme.markdown +0 -64
- data/node_modules/through/test/async.js +0 -28
- data/node_modules/through/test/auto-destroy.js +0 -30
- data/node_modules/through/test/buffering.js +0 -71
- data/node_modules/through/test/end.js +0 -45
- data/node_modules/through/test/index.js +0 -133
- data/node_modules/type-fest/index.d.ts +0 -166
- data/node_modules/type-fest/package.json +0 -72
- data/node_modules/type-fest/readme.md +0 -1005
- data/node_modules/type-fest/source/and.d.ts +0 -25
- data/node_modules/type-fest/source/array-indices.d.ts +0 -23
- data/node_modules/type-fest/source/array-slice.d.ts +0 -107
- data/node_modules/type-fest/source/array-splice.d.ts +0 -97
- data/node_modules/type-fest/source/array-tail.d.ts +0 -25
- data/node_modules/type-fest/source/array-values.d.ts +0 -22
- data/node_modules/type-fest/source/arrayable.d.ts +0 -26
- data/node_modules/type-fest/source/async-return-type.d.ts +0 -23
- data/node_modules/type-fest/source/asyncify.d.ts +0 -32
- data/node_modules/type-fest/source/basic.d.ts +0 -68
- data/node_modules/type-fest/source/camel-case.d.ts +0 -80
- data/node_modules/type-fest/source/camel-cased-properties-deep.d.ts +0 -88
- data/node_modules/type-fest/source/camel-cased-properties.d.ts +0 -36
- data/node_modules/type-fest/source/conditional-except.d.ts +0 -45
- data/node_modules/type-fest/source/conditional-keys.d.ts +0 -47
- data/node_modules/type-fest/source/conditional-pick-deep.d.ts +0 -104
- data/node_modules/type-fest/source/conditional-pick.d.ts +0 -44
- data/node_modules/type-fest/source/conditional-simplify.d.ts +0 -32
- data/node_modules/type-fest/source/delimiter-case.d.ts +0 -99
- data/node_modules/type-fest/source/delimiter-cased-properties-deep.d.ts +0 -84
- data/node_modules/type-fest/source/delimiter-cased-properties.d.ts +0 -37
- data/node_modules/type-fest/source/distributed-omit.d.ts +0 -89
- data/node_modules/type-fest/source/distributed-pick.d.ts +0 -85
- data/node_modules/type-fest/source/empty-object.d.ts +0 -46
- data/node_modules/type-fest/source/enforce-optional.d.ts +0 -47
- data/node_modules/type-fest/source/entries.d.ts +0 -62
- data/node_modules/type-fest/source/entry.d.ts +0 -65
- data/node_modules/type-fest/source/exact.d.ts +0 -67
- data/node_modules/type-fest/source/except.d.ts +0 -80
- data/node_modules/type-fest/source/find-global-type.d.ts +0 -64
- data/node_modules/type-fest/source/fixed-length-array.d.ts +0 -43
- data/node_modules/type-fest/source/get.d.ts +0 -191
- data/node_modules/type-fest/source/global-this.d.ts +0 -21
- data/node_modules/type-fest/source/greater-than-or-equal.d.ts +0 -22
- data/node_modules/type-fest/source/greater-than.d.ts +0 -51
- data/node_modules/type-fest/source/has-optional-keys.d.ts +0 -21
- data/node_modules/type-fest/source/has-readonly-keys.d.ts +0 -21
- data/node_modules/type-fest/source/has-required-keys.d.ts +0 -59
- data/node_modules/type-fest/source/has-writable-keys.d.ts +0 -21
- data/node_modules/type-fest/source/if-any.d.ts +0 -24
- data/node_modules/type-fest/source/if-empty-object.d.ts +0 -26
- data/node_modules/type-fest/source/if-never.d.ts +0 -24
- data/node_modules/type-fest/source/if-null.d.ts +0 -24
- data/node_modules/type-fest/source/if-unknown.d.ts +0 -24
- data/node_modules/type-fest/source/includes.d.ts +0 -22
- data/node_modules/type-fest/source/int-range.d.ts +0 -53
- data/node_modules/type-fest/source/internal/array.d.ts +0 -93
- data/node_modules/type-fest/source/internal/characters.d.ts +0 -33
- data/node_modules/type-fest/source/internal/index.d.ts +0 -8
- data/node_modules/type-fest/source/internal/keys.d.ts +0 -97
- data/node_modules/type-fest/source/internal/numeric.d.ts +0 -91
- data/node_modules/type-fest/source/internal/object.d.ts +0 -82
- data/node_modules/type-fest/source/internal/string.d.ts +0 -210
- data/node_modules/type-fest/source/internal/tuple.d.ts +0 -88
- data/node_modules/type-fest/source/internal/type.d.ts +0 -113
- data/node_modules/type-fest/source/invariant-of.d.ts +0 -76
- data/node_modules/type-fest/source/is-any.d.ts +0 -29
- data/node_modules/type-fest/source/is-equal.d.ts +0 -31
- data/node_modules/type-fest/source/is-float.d.ts +0 -33
- data/node_modules/type-fest/source/is-integer.d.ts +0 -48
- data/node_modules/type-fest/source/is-literal.d.ts +0 -258
- data/node_modules/type-fest/source/is-never.d.ts +0 -42
- data/node_modules/type-fest/source/is-null.d.ts +0 -20
- data/node_modules/type-fest/source/is-unknown.d.ts +0 -52
- data/node_modules/type-fest/source/iterable-element.d.ts +0 -64
- data/node_modules/type-fest/source/join.d.ts +0 -68
- data/node_modules/type-fest/source/jsonifiable.d.ts +0 -37
- data/node_modules/type-fest/source/jsonify.d.ts +0 -122
- data/node_modules/type-fest/source/kebab-case.d.ts +0 -38
- data/node_modules/type-fest/source/kebab-cased-properties-deep.d.ts +0 -47
- data/node_modules/type-fest/source/kebab-cased-properties.d.ts +0 -30
- data/node_modules/type-fest/source/keys-of-union.d.ts +0 -40
- data/node_modules/type-fest/source/last-array-element.d.ts +0 -38
- data/node_modules/type-fest/source/less-than-or-equal.d.ts +0 -22
- data/node_modules/type-fest/source/less-than.d.ts +0 -22
- data/node_modules/type-fest/source/literal-to-primitive-deep.d.ts +0 -36
- data/node_modules/type-fest/source/literal-to-primitive.d.ts +0 -36
- data/node_modules/type-fest/source/literal-union.d.ts +0 -35
- data/node_modules/type-fest/source/merge-deep.d.ts +0 -486
- data/node_modules/type-fest/source/merge-exclusive.d.ts +0 -41
- data/node_modules/type-fest/source/merge.d.ts +0 -48
- data/node_modules/type-fest/source/multidimensional-array.d.ts +0 -44
- data/node_modules/type-fest/source/multidimensional-readonly-array.d.ts +0 -48
- data/node_modules/type-fest/source/non-empty-object.d.ts +0 -35
- data/node_modules/type-fest/source/non-empty-tuple.d.ts +0 -21
- data/node_modules/type-fest/source/numeric.d.ts +0 -222
- data/node_modules/type-fest/source/observable-like.d.ts +0 -63
- data/node_modules/type-fest/source/omit-deep.d.ts +0 -159
- data/node_modules/type-fest/source/omit-index-signature.d.ts +0 -107
- data/node_modules/type-fest/source/opaque.d.ts +0 -252
- data/node_modules/type-fest/source/optional-keys-of.d.ts +0 -38
- data/node_modules/type-fest/source/or.d.ts +0 -25
- data/node_modules/type-fest/source/override-properties.d.ts +0 -36
- data/node_modules/type-fest/source/package-json.d.ts +0 -676
- data/node_modules/type-fest/source/partial-deep.d.ts +0 -109
- data/node_modules/type-fest/source/partial-on-undefined-deep.d.ts +0 -71
- data/node_modules/type-fest/source/pascal-case.d.ts +0 -38
- data/node_modules/type-fest/source/pascal-cased-properties-deep.d.ts +0 -55
- data/node_modules/type-fest/source/pascal-cased-properties.d.ts +0 -35
- data/node_modules/type-fest/source/paths.d.ts +0 -170
- data/node_modules/type-fest/source/pick-deep.d.ts +0 -149
- data/node_modules/type-fest/source/pick-index-signature.d.ts +0 -102
- data/node_modules/type-fest/source/primitive.d.ts +0 -13
- data/node_modules/type-fest/source/promisable.d.ts +0 -25
- data/node_modules/type-fest/source/readonly-deep.d.ts +0 -81
- data/node_modules/type-fest/source/readonly-keys-of.d.ts +0 -29
- data/node_modules/type-fest/source/readonly-tuple.d.ts +0 -41
- data/node_modules/type-fest/source/replace.d.ts +0 -67
- data/node_modules/type-fest/source/require-all-or-none.d.ts +0 -42
- data/node_modules/type-fest/source/require-at-least-one.d.ts +0 -34
- data/node_modules/type-fest/source/require-exactly-one.d.ts +0 -34
- data/node_modules/type-fest/source/require-one-or-none.d.ts +0 -37
- data/node_modules/type-fest/source/required-deep.d.ts +0 -78
- data/node_modules/type-fest/source/required-keys-of.d.ts +0 -29
- data/node_modules/type-fest/source/schema.d.ts +0 -71
- data/node_modules/type-fest/source/screaming-snake-case.d.ts +0 -33
- data/node_modules/type-fest/source/set-field-type.d.ts +0 -37
- data/node_modules/type-fest/source/set-non-nullable.d.ts +0 -39
- data/node_modules/type-fest/source/set-optional.d.ts +0 -35
- data/node_modules/type-fest/source/set-parameter-type.d.ts +0 -117
- data/node_modules/type-fest/source/set-readonly.d.ts +0 -38
- data/node_modules/type-fest/source/set-required.d.ts +0 -40
- data/node_modules/type-fest/source/set-return-type.d.ts +0 -29
- data/node_modules/type-fest/source/shared-union-fields-deep.d.ts +0 -168
- data/node_modules/type-fest/source/simplify-deep.d.ts +0 -115
- data/node_modules/type-fest/source/simplify.d.ts +0 -58
- data/node_modules/type-fest/source/single-key-object.d.ts +0 -29
- data/node_modules/type-fest/source/snake-case.d.ts +0 -38
- data/node_modules/type-fest/source/snake-cased-properties-deep.d.ts +0 -47
- data/node_modules/type-fest/source/snake-cased-properties.d.ts +0 -30
- data/node_modules/type-fest/source/split-words.d.ts +0 -57
- data/node_modules/type-fest/source/split.d.ts +0 -29
- data/node_modules/type-fest/source/spread.d.ts +0 -84
- data/node_modules/type-fest/source/string-key-of.d.ts +0 -25
- data/node_modules/type-fest/source/string-repeat.d.ts +0 -43
- data/node_modules/type-fest/source/string-slice.d.ts +0 -37
- data/node_modules/type-fest/source/stringified.d.ts +0 -23
- data/node_modules/type-fest/source/structured-cloneable.d.ts +0 -92
- data/node_modules/type-fest/source/subtract.d.ts +0 -70
- data/node_modules/type-fest/source/sum.d.ts +0 -70
- data/node_modules/type-fest/source/tagged-union.d.ts +0 -51
- data/node_modules/type-fest/source/trim.d.ts +0 -27
- data/node_modules/type-fest/source/tsconfig-json.d.ts +0 -1198
- data/node_modules/type-fest/source/tuple-to-union.d.ts +0 -51
- data/node_modules/type-fest/source/typed-array.d.ts +0 -17
- data/node_modules/type-fest/source/undefined-on-partial-deep.d.ts +0 -80
- data/node_modules/type-fest/source/union-to-intersection.d.ts +0 -61
- data/node_modules/type-fest/source/unknown-array.d.ts +0 -25
- data/node_modules/type-fest/source/unknown-record.d.ts +0 -31
- data/node_modules/type-fest/source/value-of.d.ts +0 -42
- data/node_modules/type-fest/source/writable-deep.d.ts +0 -83
- data/node_modules/type-fest/source/writable-keys-of.d.ts +0 -30
- data/node_modules/type-fest/source/writable.d.ts +0 -68
- data/node_modules/uglify-js/LICENSE +0 -29
- data/node_modules/uglify-js/README.md +0 -1479
- data/node_modules/uglify-js/bin/uglifyjs +0 -624
- data/node_modules/uglify-js/lib/ast.js +0 -2357
- data/node_modules/uglify-js/lib/compress.js +0 -14640
- data/node_modules/uglify-js/lib/minify.js +0 -278
- data/node_modules/uglify-js/lib/mozilla-ast.js +0 -1338
- data/node_modules/uglify-js/lib/output.js +0 -1983
- data/node_modules/uglify-js/lib/parse.js +0 -2589
- data/node_modules/uglify-js/lib/propmangle.js +0 -328
- data/node_modules/uglify-js/lib/scope.js +0 -883
- data/node_modules/uglify-js/lib/sourcemap.js +0 -195
- data/node_modules/uglify-js/lib/transform.js +0 -250
- data/node_modules/uglify-js/lib/utils.js +0 -300
- data/node_modules/uglify-js/package.json +0 -56
- data/node_modules/uglify-js/tools/domprops.html +0 -456
- data/node_modules/uglify-js/tools/domprops.json +0 -8327
- data/node_modules/uglify-js/tools/exports.js +0 -8
- data/node_modules/uglify-js/tools/node.js +0 -115
- data/node_modules/uglify-js/tools/tty.js +0 -22
- data/node_modules/undici-types/LICENSE +0 -21
- data/node_modules/undici-types/README.md +0 -6
- data/node_modules/undici-types/agent.d.ts +0 -31
- data/node_modules/undici-types/api.d.ts +0 -43
- data/node_modules/undici-types/balanced-pool.d.ts +0 -29
- data/node_modules/undici-types/cache.d.ts +0 -36
- data/node_modules/undici-types/client.d.ts +0 -108
- data/node_modules/undici-types/connector.d.ts +0 -34
- data/node_modules/undici-types/content-type.d.ts +0 -21
- data/node_modules/undici-types/cookies.d.ts +0 -28
- data/node_modules/undici-types/diagnostics-channel.d.ts +0 -66
- data/node_modules/undici-types/dispatcher.d.ts +0 -255
- data/node_modules/undici-types/env-http-proxy-agent.d.ts +0 -21
- data/node_modules/undici-types/errors.d.ts +0 -149
- data/node_modules/undici-types/eventsource.d.ts +0 -63
- data/node_modules/undici-types/fetch.d.ts +0 -209
- data/node_modules/undici-types/file.d.ts +0 -39
- data/node_modules/undici-types/filereader.d.ts +0 -54
- data/node_modules/undici-types/formdata.d.ts +0 -108
- data/node_modules/undici-types/global-dispatcher.d.ts +0 -9
- data/node_modules/undici-types/global-origin.d.ts +0 -7
- data/node_modules/undici-types/handlers.d.ts +0 -15
- data/node_modules/undici-types/header.d.ts +0 -4
- data/node_modules/undici-types/index.d.ts +0 -71
- data/node_modules/undici-types/interceptors.d.ts +0 -15
- data/node_modules/undici-types/mock-agent.d.ts +0 -50
- data/node_modules/undici-types/mock-client.d.ts +0 -25
- data/node_modules/undici-types/mock-errors.d.ts +0 -12
- data/node_modules/undici-types/mock-interceptor.d.ts +0 -93
- data/node_modules/undici-types/mock-pool.d.ts +0 -25
- data/node_modules/undici-types/package.json +0 -55
- data/node_modules/undici-types/patch.d.ts +0 -71
- data/node_modules/undici-types/pool-stats.d.ts +0 -19
- data/node_modules/undici-types/pool.d.ts +0 -39
- data/node_modules/undici-types/proxy-agent.d.ts +0 -28
- data/node_modules/undici-types/readable.d.ts +0 -60
- data/node_modules/undici-types/retry-agent.d.ts +0 -8
- data/node_modules/undici-types/retry-handler.d.ts +0 -116
- data/node_modules/undici-types/util.d.ts +0 -18
- data/node_modules/undici-types/webidl.d.ts +0 -222
- data/node_modules/undici-types/websocket.d.ts +0 -152
- data/node_modules/unicorn-magic/default.js +0 -14
- data/node_modules/unicorn-magic/index.d.ts +0 -29
- data/node_modules/unicorn-magic/license +0 -9
- data/node_modules/unicorn-magic/node.js +0 -7
- data/node_modules/unicorn-magic/package.json +0 -49
- data/node_modules/unicorn-magic/readme.md +0 -25
- data/node_modules/validate-npm-package-license/LICENSE +0 -202
- data/node_modules/validate-npm-package-license/README.md +0 -113
- data/node_modules/validate-npm-package-license/index.js +0 -86
- data/node_modules/validate-npm-package-license/package.json +0 -28
- data/node_modules/which/CHANGELOG.md +0 -166
- data/node_modules/which/LICENSE +0 -15
- data/node_modules/which/README.md +0 -54
- data/node_modules/which/bin/node-which +0 -52
- data/node_modules/which/package.json +0 -43
- data/node_modules/which/which.js +0 -125
- data/node_modules/wordwrap/LICENSE +0 -18
- data/node_modules/wordwrap/README.markdown +0 -70
- data/node_modules/wordwrap/example/center.js +0 -10
- data/node_modules/wordwrap/example/meat.js +0 -3
- data/node_modules/wordwrap/index.js +0 -76
- data/node_modules/wordwrap/package.json +0 -34
- data/node_modules/wordwrap/test/break.js +0 -32
- data/node_modules/wordwrap/test/idleness.txt +0 -63
- data/node_modules/wordwrap/test/wrap.js +0 -33
- data/node_modules/wrap-ansi/index.js +0 -216
- data/node_modules/wrap-ansi/license +0 -9
- data/node_modules/wrap-ansi/package.json +0 -62
- data/node_modules/wrap-ansi/readme.md +0 -91
- data/node_modules/y18n/CHANGELOG.md +0 -100
- data/node_modules/y18n/LICENSE +0 -13
- data/node_modules/y18n/README.md +0 -127
- data/node_modules/y18n/build/index.cjs +0 -203
- data/node_modules/y18n/build/lib/cjs.js +0 -6
- data/node_modules/y18n/build/lib/index.js +0 -174
- data/node_modules/y18n/build/lib/platform-shims/node.js +0 -19
- data/node_modules/y18n/index.mjs +0 -8
- data/node_modules/y18n/package.json +0 -70
- data/node_modules/yargs/LICENSE +0 -21
- data/node_modules/yargs/README.md +0 -204
- data/node_modules/yargs/browser.d.ts +0 -5
- data/node_modules/yargs/browser.mjs +0 -7
- data/node_modules/yargs/build/index.cjs +0 -1
- data/node_modules/yargs/build/lib/argsert.js +0 -62
- data/node_modules/yargs/build/lib/command.js +0 -449
- data/node_modules/yargs/build/lib/completion-templates.js +0 -48
- data/node_modules/yargs/build/lib/completion.js +0 -243
- data/node_modules/yargs/build/lib/middleware.js +0 -88
- data/node_modules/yargs/build/lib/parse-command.js +0 -32
- data/node_modules/yargs/build/lib/typings/common-types.js +0 -9
- data/node_modules/yargs/build/lib/typings/yargs-parser-types.js +0 -1
- data/node_modules/yargs/build/lib/usage.js +0 -584
- data/node_modules/yargs/build/lib/utils/apply-extends.js +0 -59
- data/node_modules/yargs/build/lib/utils/is-promise.js +0 -5
- data/node_modules/yargs/build/lib/utils/levenshtein.js +0 -34
- data/node_modules/yargs/build/lib/utils/maybe-async-result.js +0 -17
- data/node_modules/yargs/build/lib/utils/obj-filter.js +0 -10
- data/node_modules/yargs/build/lib/utils/process-argv.js +0 -17
- data/node_modules/yargs/build/lib/utils/set-blocking.js +0 -12
- data/node_modules/yargs/build/lib/utils/which-module.js +0 -10
- data/node_modules/yargs/build/lib/validation.js +0 -305
- data/node_modules/yargs/build/lib/yargs-factory.js +0 -1512
- data/node_modules/yargs/build/lib/yerror.js +0 -9
- data/node_modules/yargs/helpers/helpers.mjs +0 -10
- data/node_modules/yargs/helpers/index.js +0 -14
- data/node_modules/yargs/helpers/package.json +0 -3
- data/node_modules/yargs/index.cjs +0 -53
- data/node_modules/yargs/index.mjs +0 -8
- data/node_modules/yargs/lib/platform-shims/browser.mjs +0 -95
- data/node_modules/yargs/lib/platform-shims/esm.mjs +0 -73
- data/node_modules/yargs/locales/be.json +0 -46
- data/node_modules/yargs/locales/cs.json +0 -51
- data/node_modules/yargs/locales/de.json +0 -46
- data/node_modules/yargs/locales/en.json +0 -55
- data/node_modules/yargs/locales/es.json +0 -46
- data/node_modules/yargs/locales/fi.json +0 -49
- data/node_modules/yargs/locales/fr.json +0 -53
- data/node_modules/yargs/locales/hi.json +0 -49
- data/node_modules/yargs/locales/hu.json +0 -46
- data/node_modules/yargs/locales/id.json +0 -50
- data/node_modules/yargs/locales/it.json +0 -46
- data/node_modules/yargs/locales/ja.json +0 -51
- data/node_modules/yargs/locales/ko.json +0 -49
- data/node_modules/yargs/locales/nb.json +0 -44
- data/node_modules/yargs/locales/nl.json +0 -49
- data/node_modules/yargs/locales/nn.json +0 -44
- data/node_modules/yargs/locales/pirate.json +0 -13
- data/node_modules/yargs/locales/pl.json +0 -49
- data/node_modules/yargs/locales/pt.json +0 -45
- data/node_modules/yargs/locales/pt_BR.json +0 -48
- data/node_modules/yargs/locales/ru.json +0 -51
- data/node_modules/yargs/locales/th.json +0 -46
- data/node_modules/yargs/locales/tr.json +0 -48
- data/node_modules/yargs/locales/uk_UA.json +0 -51
- data/node_modules/yargs/locales/uz.json +0 -52
- data/node_modules/yargs/locales/zh_CN.json +0 -48
- data/node_modules/yargs/locales/zh_TW.json +0 -51
- data/node_modules/yargs/package.json +0 -123
- data/node_modules/yargs/yargs +0 -9
- data/node_modules/yargs/yargs.mjs +0 -10
- data/node_modules/yargs-parser/CHANGELOG.md +0 -308
- data/node_modules/yargs-parser/LICENSE.txt +0 -14
- data/node_modules/yargs-parser/README.md +0 -518
- data/node_modules/yargs-parser/browser.js +0 -29
- data/node_modules/yargs-parser/build/index.cjs +0 -1050
- data/node_modules/yargs-parser/build/lib/index.js +0 -62
- data/node_modules/yargs-parser/build/lib/string-utils.js +0 -65
- data/node_modules/yargs-parser/build/lib/tokenize-arg-string.js +0 -40
- data/node_modules/yargs-parser/build/lib/yargs-parser-types.js +0 -12
- data/node_modules/yargs-parser/build/lib/yargs-parser.js +0 -1045
- data/node_modules/yargs-parser/package.json +0 -92
- data/node_modules/yocto-queue/index.d.ts +0 -61
- data/node_modules/yocto-queue/index.js +0 -78
- data/node_modules/yocto-queue/license +0 -9
- data/node_modules/yocto-queue/package.json +0 -48
- data/node_modules/yocto-queue/readme.md +0 -70
- data/pkg/pcp-server-ruby-sdk-0.1.0.gem +0 -0
data/api-definition.yaml
ADDED
@@ -0,0 +1,4737 @@
|
|
1
|
+
openapi: "3.0.3"
|
2
|
+
|
3
|
+
info:
|
4
|
+
version: 1.28.0
|
5
|
+
title: "Commerce Platform API"
|
6
|
+
description: |
|
7
|
+
RESTful API for the creation of Commerce Cases with Checkouts and the execution of Payments.
|
8
|
+
|
9
|
+
servers:
|
10
|
+
- url: "https://commerce-api.payone.com"
|
11
|
+
description: Production URL
|
12
|
+
- url: "https://preprod.commerce-api.payone.com"
|
13
|
+
description: Pre-Production URL
|
14
|
+
|
15
|
+
tags:
|
16
|
+
- name: CommerceCase
|
17
|
+
description: Resource for the operations on Commerce Cases.
|
18
|
+
- name: Checkout
|
19
|
+
description: Resource for the operations on Checkouts.
|
20
|
+
- name: OrderManagementCheckoutActions
|
21
|
+
description: Order Management Checkout Actions allow operations on the items of a shopping cart. Requires ORDER_MANAGEMENT as allowedPaymentActions.
|
22
|
+
- name: PaymentExecution
|
23
|
+
description: Resource for operations on Payment Executions. Requires PAYMENT_EXECUTION as allowedPaymentActions.
|
24
|
+
- name: PaymentInformation
|
25
|
+
description: Resource for operations on Payment Information.
|
26
|
+
|
27
|
+
paths:
|
28
|
+
'/v1/{merchantId}/commerce-cases':
|
29
|
+
post:
|
30
|
+
summary: Create a Commerce Case
|
31
|
+
description: |-
|
32
|
+
This endpoint can be used to create a Commerce Case in combination with a Checkout and an Order. A Commerce Case
|
33
|
+
is a container for multiple Checkouts and can be directly linked to one customer. The Order can either be
|
34
|
+
directly executed or the paymentMethodSpecificInput can also be stored for a later execution over the
|
35
|
+
OrderManagementCheckoutActions or Payment Execution endpoint.
|
36
|
+
tags:
|
37
|
+
- CommerceCase
|
38
|
+
operationId: createCommerceCase
|
39
|
+
parameters:
|
40
|
+
- $ref: '#/components/parameters/merchantIdPath'
|
41
|
+
requestBody:
|
42
|
+
required: true
|
43
|
+
content:
|
44
|
+
application/json:
|
45
|
+
schema:
|
46
|
+
$ref: '#/components/schemas/CreateCommerceCaseRequest'
|
47
|
+
responses:
|
48
|
+
'201':
|
49
|
+
x-nullable: true
|
50
|
+
description: |-
|
51
|
+
The response contains the references to the Commerce Case and the Checkout and if autoExecuteOrder was set
|
52
|
+
to true the payment response.
|
53
|
+
content:
|
54
|
+
application/json:
|
55
|
+
schema:
|
56
|
+
$ref: '#/components/schemas/CreateCommerceCaseResponse'
|
57
|
+
'202':
|
58
|
+
x-nullable: true
|
59
|
+
description: |-
|
60
|
+
The response contains the references to the Commerce case and the Checkout. Status code 202 will be returned
|
61
|
+
if the creation of a Commerce Case and Checkout was successful but the payment was not.
|
62
|
+
content:
|
63
|
+
application/json:
|
64
|
+
schema:
|
65
|
+
$ref: '#/components/schemas/CreateCommerceCaseResponse'
|
66
|
+
'400':
|
67
|
+
x-nullable: true
|
68
|
+
description: Commerce Case not found.
|
69
|
+
content:
|
70
|
+
application/json:
|
71
|
+
schema:
|
72
|
+
$ref: '#/components/schemas/ErrorResponse'
|
73
|
+
get:
|
74
|
+
summary: Get a list of Commerce Cases based on Search Parameters
|
75
|
+
description: |
|
76
|
+
This endpoint will provide a list of Commerce Cases based on the provided criteria.
|
77
|
+
Not all parameters are required to be set.
|
78
|
+
Results will be returned in descending creation time per default.
|
79
|
+
tags:
|
80
|
+
- CommerceCase
|
81
|
+
operationId: getCommerceCases
|
82
|
+
parameters:
|
83
|
+
- $ref: '#/components/parameters/merchantIdPath'
|
84
|
+
- $ref: '#/components/parameters/offset'
|
85
|
+
- $ref: '#/components/parameters/size'
|
86
|
+
- $ref: '#/components/parameters/fromDate'
|
87
|
+
- $ref: '#/components/parameters/toDate'
|
88
|
+
- $ref: '#/components/parameters/commerceCaseIdQuery'
|
89
|
+
- $ref: '#/components/parameters/merchantReference'
|
90
|
+
- $ref: '#/components/parameters/merchantCustomerId'
|
91
|
+
- $ref: '#/components/parameters/includeCheckoutStatus'
|
92
|
+
- $ref: '#/components/parameters/includePaymentChannel'
|
93
|
+
responses:
|
94
|
+
'200':
|
95
|
+
x-nullable: true
|
96
|
+
description: |
|
97
|
+
The response contains all Commerce Cases and Checkouts that match with the provided criteria.
|
98
|
+
An empty list will be returned if no criteria was provided.
|
99
|
+
content:
|
100
|
+
application/json:
|
101
|
+
schema:
|
102
|
+
$ref: '#/components/schemas/CommerceCasesResponse'
|
103
|
+
'400':
|
104
|
+
x-nullable: true
|
105
|
+
description: Exception when requesting Checkouts with unknown parameters.
|
106
|
+
content:
|
107
|
+
application/json:
|
108
|
+
schema:
|
109
|
+
$ref: '#/components/schemas/ErrorResponse'
|
110
|
+
'/v1/{merchantId}/commerce-cases/{commerceCaseId}':
|
111
|
+
get:
|
112
|
+
summary: Get Commerce Case Details
|
113
|
+
description: This endpoint can be used to get a specific Commerce Case and all linked Checkouts.
|
114
|
+
tags:
|
115
|
+
- CommerceCase
|
116
|
+
operationId: getCommerceCase
|
117
|
+
parameters:
|
118
|
+
- $ref: '#/components/parameters/merchantIdPath'
|
119
|
+
- $ref: '#/components/parameters/commerceCaseIdPath'
|
120
|
+
responses:
|
121
|
+
'200':
|
122
|
+
x-nullable: true
|
123
|
+
description: The response contains the Commerce Case and all linked Checkout.
|
124
|
+
content:
|
125
|
+
application/json:
|
126
|
+
schema:
|
127
|
+
$ref: '#/components/schemas/CommerceCaseResponse'
|
128
|
+
'404':
|
129
|
+
x-nullable: true
|
130
|
+
description: Checkout not found.
|
131
|
+
content:
|
132
|
+
application/json:
|
133
|
+
schema:
|
134
|
+
$ref: '#/components/schemas/ErrorResponse'
|
135
|
+
patch:
|
136
|
+
summary: Modify an existing Commerce Case.
|
137
|
+
description: This endpoint can be used to update or modify the customer object of a Commerce Case.
|
138
|
+
tags:
|
139
|
+
- CommerceCase
|
140
|
+
operationId: updateCommerceCase
|
141
|
+
parameters:
|
142
|
+
- $ref: '#/components/parameters/merchantIdPath'
|
143
|
+
- $ref: '#/components/parameters/commerceCaseIdPath'
|
144
|
+
requestBody:
|
145
|
+
required: true
|
146
|
+
content:
|
147
|
+
application/json:
|
148
|
+
schema:
|
149
|
+
$ref: '#/components/schemas/PatchCommerceCaseRequest'
|
150
|
+
responses:
|
151
|
+
'204':
|
152
|
+
x-nullable: true
|
153
|
+
description: The Commerce Case was updated successfully.
|
154
|
+
'400':
|
155
|
+
x-nullable: true
|
156
|
+
description: |-
|
157
|
+
The request was malformed or was missing required data. When a required property was missing the error
|
158
|
+
message will indicate which property caused the error.
|
159
|
+
content:
|
160
|
+
application/json:
|
161
|
+
schema:
|
162
|
+
$ref: '#/components/schemas/ErrorResponse'
|
163
|
+
'404':
|
164
|
+
x-nullable: true
|
165
|
+
description: Commerce Case not found.
|
166
|
+
content:
|
167
|
+
application/json:
|
168
|
+
schema:
|
169
|
+
$ref: '#/components/schemas/ErrorResponse'
|
170
|
+
'503':
|
171
|
+
x-nullable: true
|
172
|
+
description: Service unavailable.
|
173
|
+
content:
|
174
|
+
application/json:
|
175
|
+
schema:
|
176
|
+
$ref: '#/components/schemas/ErrorResponse'
|
177
|
+
'/v1/{merchantId}/commerce-cases/{commerceCaseId}/checkouts/{checkoutId}/order':
|
178
|
+
post:
|
179
|
+
summary: Creates an Order that will automatially execute a Payment
|
180
|
+
description: |
|
181
|
+
This endpoint can be used to create an Order that automatically executes a payment for the respective Checkout.
|
182
|
+
The Order request requires items within the ShoppingCart and can be made for a partial or the entire
|
183
|
+
ShoppingCart of a Checkout.
|
184
|
+
tags:
|
185
|
+
- OrderManagementCheckoutActions
|
186
|
+
operationId: createOrder
|
187
|
+
parameters:
|
188
|
+
- $ref: '#/components/parameters/merchantIdPath'
|
189
|
+
- $ref: '#/components/parameters/commerceCaseIdPath'
|
190
|
+
- $ref: '#/components/parameters/checkoutIdPath'
|
191
|
+
requestBody:
|
192
|
+
required: true
|
193
|
+
content:
|
194
|
+
application/json:
|
195
|
+
schema:
|
196
|
+
$ref: '#/components/schemas/OrderRequest'
|
197
|
+
responses:
|
198
|
+
'201':
|
199
|
+
x-nullable: true
|
200
|
+
description: The order request was successfully processed and a payment object was created.
|
201
|
+
content:
|
202
|
+
application/json:
|
203
|
+
schema:
|
204
|
+
$ref: '#/components/schemas/OrderResponse'
|
205
|
+
'400':
|
206
|
+
x-nullable: true
|
207
|
+
description: |-
|
208
|
+
The request was malformed or was missing required data. When a required property was missing the error
|
209
|
+
message will point out which property caused the error.
|
210
|
+
content:
|
211
|
+
application/json:
|
212
|
+
schema:
|
213
|
+
$ref: '#/components/schemas/ErrorResponse'
|
214
|
+
'402':
|
215
|
+
x-nullable: true
|
216
|
+
description: The payment was declined by a 3rd party (acquirer, payment processor, etc.)
|
217
|
+
content:
|
218
|
+
application/json:
|
219
|
+
schema:
|
220
|
+
$ref: '#/components/schemas/ErrorResponse'
|
221
|
+
'403':
|
222
|
+
x-nullable: true
|
223
|
+
description: You are not allowed to access the service or account or your API authentication failed.
|
224
|
+
content:
|
225
|
+
application/json:
|
226
|
+
schema:
|
227
|
+
$ref: '#/components/schemas/ErrorResponse'
|
228
|
+
'404':
|
229
|
+
x-nullable: true
|
230
|
+
description: Payment not found
|
231
|
+
content:
|
232
|
+
application/json:
|
233
|
+
schema:
|
234
|
+
$ref: '#/components/schemas/ErrorResponse'
|
235
|
+
'409':
|
236
|
+
x-nullable: true
|
237
|
+
description: Conflict
|
238
|
+
content:
|
239
|
+
application/json:
|
240
|
+
schema:
|
241
|
+
$ref: '#/components/schemas/ErrorResponse'
|
242
|
+
'502':
|
243
|
+
x-nullable: true
|
244
|
+
description: |-
|
245
|
+
Any 5XX response points to something that went wrong on our end. This could also be that the system was
|
246
|
+
unable to route the transaction to an appropriate acquirer/3rd party. Another reason for such a response
|
247
|
+
is when the 3rd party's response could not be understood.
|
248
|
+
content:
|
249
|
+
application/json:
|
250
|
+
schema:
|
251
|
+
$ref: '#/components/schemas/ErrorResponse'
|
252
|
+
'503':
|
253
|
+
x-nullable: true
|
254
|
+
description: Service unavailable
|
255
|
+
content:
|
256
|
+
application/json:
|
257
|
+
schema:
|
258
|
+
$ref: '#/components/schemas/ErrorResponse'
|
259
|
+
'/v1/{merchantId}/commerce-cases/{commerceCaseId}/checkouts/{checkoutId}/complete-order':
|
260
|
+
post:
|
261
|
+
summary: Complete an Order
|
262
|
+
description: |-
|
263
|
+
For PAYONE Secured Installment (paymentProductId 3391) a two-step process is required.
|
264
|
+
The first step is creating an Order, the second step is completing it by calling this API endpoint.
|
265
|
+
tags:
|
266
|
+
- OrderManagementCheckoutActions
|
267
|
+
operationId: completeOrder
|
268
|
+
parameters:
|
269
|
+
- $ref: '#/components/parameters/merchantIdPath'
|
270
|
+
- $ref: '#/components/parameters/commerceCaseIdPath'
|
271
|
+
- $ref: '#/components/parameters/checkoutIdPath'
|
272
|
+
requestBody:
|
273
|
+
content:
|
274
|
+
application/json:
|
275
|
+
schema:
|
276
|
+
$ref: '#/components/schemas/CompleteOrderRequest'
|
277
|
+
required: true
|
278
|
+
responses:
|
279
|
+
200:
|
280
|
+
description: The Order was successfully completed.
|
281
|
+
content:
|
282
|
+
application/json:
|
283
|
+
schema:
|
284
|
+
$ref: '#/components/schemas/CompletePaymentResponse'
|
285
|
+
400:
|
286
|
+
description: Incorrect input data
|
287
|
+
content:
|
288
|
+
application/json:
|
289
|
+
schema:
|
290
|
+
$ref: '#/components/schemas/ErrorResponse'
|
291
|
+
402:
|
292
|
+
description: The payment was declined by a 3rd party (acquirer, payment processor, etc.)
|
293
|
+
content:
|
294
|
+
application/json:
|
295
|
+
schema:
|
296
|
+
$ref: '#/components/schemas/ErrorResponse'
|
297
|
+
403:
|
298
|
+
description: You are not allowed to access the service or account or your API authentication failed.
|
299
|
+
content:
|
300
|
+
application/json:
|
301
|
+
schema:
|
302
|
+
$ref: '#/components/schemas/ErrorResponse'
|
303
|
+
409:
|
304
|
+
description: Complete is not allowed
|
305
|
+
content:
|
306
|
+
application/json:
|
307
|
+
schema:
|
308
|
+
$ref: '#/components/schemas/ErrorResponse'
|
309
|
+
422:
|
310
|
+
description: The request was well-formed but was unable to be processed due to semantic errors
|
311
|
+
content:
|
312
|
+
application/json:
|
313
|
+
schema:
|
314
|
+
$ref: '#/components/schemas/ErrorResponse'
|
315
|
+
500:
|
316
|
+
description: Internal server exception
|
317
|
+
content:
|
318
|
+
application/json:
|
319
|
+
schema:
|
320
|
+
$ref: '#/components/schemas/ErrorResponse'
|
321
|
+
502:
|
322
|
+
description: Any 5XX response points to something that went wrong on our
|
323
|
+
end. This could also be that the system was unable to route the transaction
|
324
|
+
to an appropriate acquirer/3rd party. Another reason for such a response
|
325
|
+
is when the 3rd party's response could not be understood.
|
326
|
+
content:
|
327
|
+
application/json:
|
328
|
+
schema:
|
329
|
+
$ref: '#/components/schemas/ErrorResponse'
|
330
|
+
503:
|
331
|
+
description: Service unavailable
|
332
|
+
content:
|
333
|
+
application/json:
|
334
|
+
schema:
|
335
|
+
$ref: '#/components/schemas/ErrorResponse'
|
336
|
+
'/v1/{merchantId}/commerce-cases/{commerceCaseId}/checkouts/{checkoutId}/deliver':
|
337
|
+
post:
|
338
|
+
summary: Mark items of a Checkout as delivered and automatically capture the payment for the items
|
339
|
+
description: |
|
340
|
+
This endpoint can be used to mark items from a Checkout as delivered and to automatically capture the payments
|
341
|
+
for those items.
|
342
|
+
The return can only be done for Checkouts with status COMPLETED, BILLED or CHARGEBACKED and the items have to
|
343
|
+
be in the status ORDERED.
|
344
|
+
If the payment has already been captured (in case of a SALE), the deliver request will only update the item
|
345
|
+
status.
|
346
|
+
tags:
|
347
|
+
- OrderManagementCheckoutActions
|
348
|
+
operationId: deliverOrder
|
349
|
+
parameters:
|
350
|
+
- $ref: '#/components/parameters/merchantIdPath'
|
351
|
+
- $ref: '#/components/parameters/commerceCaseIdPath'
|
352
|
+
- $ref: '#/components/parameters/checkoutIdPath'
|
353
|
+
requestBody:
|
354
|
+
required: true
|
355
|
+
content:
|
356
|
+
application/json:
|
357
|
+
schema:
|
358
|
+
$ref: '#/components/schemas/DeliverRequest'
|
359
|
+
responses:
|
360
|
+
'201':
|
361
|
+
x-nullable: true
|
362
|
+
description: The deliver was successfully created.
|
363
|
+
content:
|
364
|
+
application/json:
|
365
|
+
schema:
|
366
|
+
$ref: '#/components/schemas/DeliverResponse'
|
367
|
+
'400':
|
368
|
+
x-nullable: true
|
369
|
+
description: |-
|
370
|
+
The request was malformed or was missing required data. When a required property was missing the error
|
371
|
+
message will point out which property caused the error.
|
372
|
+
content:
|
373
|
+
application/json:
|
374
|
+
schema:
|
375
|
+
$ref: '#/components/schemas/ErrorResponse'
|
376
|
+
'403':
|
377
|
+
x-nullable: true
|
378
|
+
description: You are not allowed to access the service or account or your API authentication failed.
|
379
|
+
content:
|
380
|
+
application/json:
|
381
|
+
schema:
|
382
|
+
$ref: '#/components/schemas/ErrorResponse'
|
383
|
+
'404':
|
384
|
+
x-nullable: true
|
385
|
+
description: |-
|
386
|
+
The most common cause for this response is that the Checkout status was not PENDING_COMPLETION, BILLED or
|
387
|
+
CHARGEBACKED.
|
388
|
+
content:
|
389
|
+
application/json:
|
390
|
+
schema:
|
391
|
+
$ref: '#/components/schemas/ErrorResponse'
|
392
|
+
'/v1/{merchantId}/commerce-cases/{commerceCaseId}/checkouts/{checkoutId}/return':
|
393
|
+
post:
|
394
|
+
summary: Mark items of a Checkout as returned and automatically refund the payment for the items
|
395
|
+
description: |
|
396
|
+
This endpoint can be used to mark items from a Checkout as returned and will automatically refund the payments
|
397
|
+
for those items.
|
398
|
+
The return can only be done for Checkouts with status BILLED or CHARGEBACKED and the items have to be in the
|
399
|
+
status DELIVERED.
|
400
|
+
tags:
|
401
|
+
- OrderManagementCheckoutActions
|
402
|
+
operationId: returnOrder
|
403
|
+
parameters:
|
404
|
+
- $ref: '#/components/parameters/merchantIdPath'
|
405
|
+
- $ref: '#/components/parameters/commerceCaseIdPath'
|
406
|
+
- $ref: '#/components/parameters/checkoutIdPath'
|
407
|
+
requestBody:
|
408
|
+
required: false
|
409
|
+
content:
|
410
|
+
application/json:
|
411
|
+
schema:
|
412
|
+
$ref: '#/components/schemas/ReturnRequest'
|
413
|
+
responses:
|
414
|
+
'201':
|
415
|
+
x-nullable: true
|
416
|
+
description: The return was successfully executed.
|
417
|
+
content:
|
418
|
+
application/json:
|
419
|
+
schema:
|
420
|
+
$ref: '#/components/schemas/ReturnResponse'
|
421
|
+
'400':
|
422
|
+
x-nullable: true
|
423
|
+
description: |-
|
424
|
+
The request was malformed or was missing required data. When a required property was missing the error
|
425
|
+
message will indicate which property caused the error.
|
426
|
+
content:
|
427
|
+
application/json:
|
428
|
+
schema:
|
429
|
+
$ref: '#/components/schemas/ErrorResponse'
|
430
|
+
'403':
|
431
|
+
x-nullable: true
|
432
|
+
description: You are not allowed to access the service or account or your API authentication failed.
|
433
|
+
content:
|
434
|
+
application/json:
|
435
|
+
schema:
|
436
|
+
$ref: '#/components/schemas/ErrorResponse'
|
437
|
+
'404':
|
438
|
+
x-nullable: true
|
439
|
+
description: |-
|
440
|
+
The most common cause for this response is that the Checkout status was not PENDING_COMPLETION, BILLED or
|
441
|
+
CHARGEBACKED.
|
442
|
+
content:
|
443
|
+
application/json:
|
444
|
+
schema:
|
445
|
+
$ref: '#/components/schemas/ErrorResponse'
|
446
|
+
'/v1/{merchantId}/commerce-cases/{commerceCaseId}/checkouts/{checkoutId}/cancel':
|
447
|
+
post:
|
448
|
+
summary: Mark items of a Checkout as cancelled and automatically cancel the payment for the items
|
449
|
+
description: |-
|
450
|
+
This endpoint can be used to mark items from a Checkout as cancelled and reverse the payment associated with
|
451
|
+
this Checkout.
|
452
|
+
The Cancel endpoint can be used to cancel a full or partial order.
|
453
|
+
The Cancel request will mark all or (for cancelType PARTIAL) the provided items as CANCELLED, and – in case of
|
454
|
+
an existing authorization – will reverse the payment.
|
455
|
+
|
456
|
+
In the light of card payments, reversing an authorization that is not needed will prevent you from having to pay
|
457
|
+
a fee/penalty for unused authorization requests.
|
458
|
+
Whilst scheme regulations require that acquirers and PSPs support authorization reversals, there are no rules
|
459
|
+
towards issuers mandating them to process the reversal advice.
|
460
|
+
Therefore, there is no guarantee the authorization hold is released.
|
461
|
+
The authorization reversal can only be performed by the card issuer, and under no circumstances will we be
|
462
|
+
responsible for performing the authorization reversal.
|
463
|
+
|
464
|
+
The cancellationReason is mandatory for BNPL payment methods (paymentProductId 3390, 3391 and 3392). For other
|
465
|
+
payment methods the cancellationReason is not mandatory but can be used for reporting and reconciliation
|
466
|
+
purposes.
|
467
|
+
tags:
|
468
|
+
- OrderManagementCheckoutActions
|
469
|
+
operationId: cancelOrder
|
470
|
+
parameters:
|
471
|
+
- $ref: '#/components/parameters/merchantIdPath'
|
472
|
+
- $ref: '#/components/parameters/commerceCaseIdPath'
|
473
|
+
- $ref: '#/components/parameters/checkoutIdPath'
|
474
|
+
requestBody:
|
475
|
+
required: false
|
476
|
+
content:
|
477
|
+
application/json:
|
478
|
+
schema:
|
479
|
+
$ref: '#/components/schemas/CancelRequest'
|
480
|
+
responses:
|
481
|
+
'200':
|
482
|
+
x-nullable: true
|
483
|
+
description: |-
|
484
|
+
The payment has been cancelled. Some acquirers/issuers will provide some feedback in case a reversal of the
|
485
|
+
authorization has been performed.
|
486
|
+
content:
|
487
|
+
application/json:
|
488
|
+
schema:
|
489
|
+
$ref: '#/components/schemas/CancelResponse'
|
490
|
+
'400':
|
491
|
+
x-nullable: true
|
492
|
+
description: Incorrect input data
|
493
|
+
content:
|
494
|
+
application/json:
|
495
|
+
schema:
|
496
|
+
$ref: '#/components/schemas/ErrorResponse'
|
497
|
+
'402':
|
498
|
+
x-nullable: true
|
499
|
+
description: Payment required
|
500
|
+
content:
|
501
|
+
application/json:
|
502
|
+
schema:
|
503
|
+
$ref: '#/components/schemas/ErrorResponse'
|
504
|
+
'403':
|
505
|
+
x-nullable: true
|
506
|
+
description: You are not allowed to access the service or account or your API authentication failed.
|
507
|
+
content:
|
508
|
+
application/json:
|
509
|
+
schema:
|
510
|
+
$ref: '#/components/schemas/ErrorResponse'
|
511
|
+
'404':
|
512
|
+
x-nullable: true
|
513
|
+
description: Payment was not found
|
514
|
+
content:
|
515
|
+
application/json:
|
516
|
+
schema:
|
517
|
+
$ref: '#/components/schemas/ErrorResponse'
|
518
|
+
'409':
|
519
|
+
x-nullable: true
|
520
|
+
description: Cancellation is not allowed because payment is closed
|
521
|
+
content:
|
522
|
+
application/json:
|
523
|
+
schema:
|
524
|
+
$ref: '#/components/schemas/ErrorResponse'
|
525
|
+
'500':
|
526
|
+
x-nullable: true
|
527
|
+
description: Internal server exception
|
528
|
+
content:
|
529
|
+
application/json:
|
530
|
+
schema:
|
531
|
+
$ref: '#/components/schemas/ErrorResponse'
|
532
|
+
'/v1/{merchantId}/commerce-cases/{commerceCaseId}/checkouts':
|
533
|
+
post:
|
534
|
+
summary: Add a Checkout to an existing Commerce Case
|
535
|
+
description: |-
|
536
|
+
This endpoint can be used to add a new Checkout in combination with an Order to an existing Commerce Case. The
|
537
|
+
Order can either be directly executed or the paymentMethodSpecificInput can also be stored for a later execution
|
538
|
+
over the OrderManagementCheckout Action or Payment Execution endpoint.
|
539
|
+
tags:
|
540
|
+
- Checkout
|
541
|
+
operationId: createCheckout
|
542
|
+
parameters:
|
543
|
+
- $ref: '#/components/parameters/merchantIdPath'
|
544
|
+
- $ref: '#/components/parameters/commerceCaseIdPath'
|
545
|
+
requestBody:
|
546
|
+
required: true
|
547
|
+
content:
|
548
|
+
application/json:
|
549
|
+
schema:
|
550
|
+
$ref: '#/components/schemas/CreateCheckoutRequest'
|
551
|
+
responses:
|
552
|
+
'201':
|
553
|
+
x-nullable: true
|
554
|
+
description: The response contains the reference of the Checkout and possible the response for the payment.
|
555
|
+
content:
|
556
|
+
application/json:
|
557
|
+
schema:
|
558
|
+
$ref: '#/components/schemas/CreateCheckoutResponse'
|
559
|
+
'202':
|
560
|
+
x-nullable: true
|
561
|
+
description: |-
|
562
|
+
The response contains the reference of the Checkout. But the Payment Execution was not successful.
|
563
|
+
content:
|
564
|
+
application/json:
|
565
|
+
schema:
|
566
|
+
$ref: '#/components/schemas/CreateCheckoutResponse'
|
567
|
+
'400':
|
568
|
+
x-nullable: true
|
569
|
+
description: Payment not found.
|
570
|
+
content:
|
571
|
+
application/json:
|
572
|
+
schema:
|
573
|
+
$ref: '#/components/schemas/ErrorResponse'
|
574
|
+
'/v1/{merchantId}/checkouts':
|
575
|
+
get:
|
576
|
+
summary: Get a list of Checkouts based on Search Parameters
|
577
|
+
description: |
|
578
|
+
This endpoint will provide a list of Checkouts based on the provided criteria.
|
579
|
+
Not all parameters are required to be set.
|
580
|
+
Results will be returned in descending creation time per default.
|
581
|
+
Only up to the first 10,000 results will be returned.
|
582
|
+
tags:
|
583
|
+
- Checkout
|
584
|
+
operationId: getCheckouts
|
585
|
+
parameters:
|
586
|
+
- $ref: '#/components/parameters/merchantIdPath'
|
587
|
+
- $ref: '#/components/parameters/offset'
|
588
|
+
- $ref: '#/components/parameters/size'
|
589
|
+
- $ref: '#/components/parameters/fromDate'
|
590
|
+
- $ref: '#/components/parameters/toDate'
|
591
|
+
- $ref: '#/components/parameters/fromCheckoutAmount'
|
592
|
+
- $ref: '#/components/parameters/toCheckoutAmount'
|
593
|
+
- $ref: '#/components/parameters/fromOpenAmount'
|
594
|
+
- $ref: '#/components/parameters/toOpenAmount'
|
595
|
+
- $ref: '#/components/parameters/fromCollectedAmount'
|
596
|
+
- $ref: '#/components/parameters/toCollectedAmount'
|
597
|
+
- $ref: '#/components/parameters/fromCancelledAmount'
|
598
|
+
- $ref: '#/components/parameters/toCancelledAmount'
|
599
|
+
- $ref: '#/components/parameters/fromRefundAmount'
|
600
|
+
- $ref: '#/components/parameters/toRefundAmount'
|
601
|
+
- $ref: '#/components/parameters/fromChargebackAmount'
|
602
|
+
- $ref: '#/components/parameters/toChargebackAmount'
|
603
|
+
- $ref: '#/components/parameters/checkoutIdQuery'
|
604
|
+
- $ref: '#/components/parameters/merchantReference'
|
605
|
+
- $ref: '#/components/parameters/merchantCustomerId'
|
606
|
+
- $ref: '#/components/parameters/includePaymentProductId'
|
607
|
+
- $ref: '#/components/parameters/includeCheckoutStatus'
|
608
|
+
- $ref: '#/components/parameters/includeExtendedCheckoutStatus'
|
609
|
+
- $ref: '#/components/parameters/includePaymentChannel'
|
610
|
+
- $ref: '#/components/parameters/paymentReference'
|
611
|
+
- $ref: '#/components/parameters/paymentId'
|
612
|
+
- $ref: '#/components/parameters/firstName'
|
613
|
+
- $ref: '#/components/parameters/surname'
|
614
|
+
- $ref: '#/components/parameters/email'
|
615
|
+
- $ref: '#/components/parameters/phoneNumber'
|
616
|
+
- $ref: '#/components/parameters/dateOfBirth'
|
617
|
+
- $ref: '#/components/parameters/companyInformation'
|
618
|
+
- $ref: '#/components/parameters/terminalId'
|
619
|
+
- $ref: '#/components/parameters/reportingToken'
|
620
|
+
responses:
|
621
|
+
'200':
|
622
|
+
x-nullable: true
|
623
|
+
description: |
|
624
|
+
The response containing all found Checkouts for the provided criteria.
|
625
|
+
content:
|
626
|
+
application/json:
|
627
|
+
schema:
|
628
|
+
$ref: '#/components/schemas/CheckoutsResponse'
|
629
|
+
'400':
|
630
|
+
x-nullable: true
|
631
|
+
description: Exception when requesting Checkouts with given parameters.
|
632
|
+
content:
|
633
|
+
application/json:
|
634
|
+
schema:
|
635
|
+
$ref: '#/components/schemas/ErrorResponse'
|
636
|
+
'/v1/{merchantId}/commerce-cases/{commerceCaseId}/checkouts/{checkoutId}':
|
637
|
+
get:
|
638
|
+
summary: Get Checkout Details
|
639
|
+
description: This endpoint can be used to get a Checkout.
|
640
|
+
tags:
|
641
|
+
- Checkout
|
642
|
+
operationId: getCheckout
|
643
|
+
parameters:
|
644
|
+
- $ref: '#/components/parameters/merchantIdPath'
|
645
|
+
- $ref: '#/components/parameters/commerceCaseIdPath'
|
646
|
+
- $ref: '#/components/parameters/checkoutIdPath'
|
647
|
+
responses:
|
648
|
+
'200':
|
649
|
+
x-nullable: true
|
650
|
+
description: The response contains the Checkout.
|
651
|
+
content:
|
652
|
+
application/json:
|
653
|
+
schema:
|
654
|
+
$ref: '#/components/schemas/CheckoutResponse'
|
655
|
+
'404':
|
656
|
+
x-nullable: true
|
657
|
+
description: Checkout not found
|
658
|
+
content:
|
659
|
+
application/json:
|
660
|
+
schema:
|
661
|
+
$ref: '#/components/schemas/ErrorResponse'
|
662
|
+
patch:
|
663
|
+
summary: Modify a Checkout
|
664
|
+
description: This endpoint can be used to update or modify the data of a Checkout.
|
665
|
+
tags:
|
666
|
+
- Checkout
|
667
|
+
operationId: updateCheckout
|
668
|
+
parameters:
|
669
|
+
- $ref: '#/components/parameters/merchantIdPath'
|
670
|
+
- $ref: '#/components/parameters/commerceCaseIdPath'
|
671
|
+
- $ref: '#/components/parameters/checkoutIdPath'
|
672
|
+
requestBody:
|
673
|
+
required: true
|
674
|
+
content:
|
675
|
+
application/json:
|
676
|
+
schema:
|
677
|
+
$ref: '#/components/schemas/PatchCheckoutRequest'
|
678
|
+
responses:
|
679
|
+
'204':
|
680
|
+
x-nullable: true
|
681
|
+
description: The Checkout is updated successfully.
|
682
|
+
'400':
|
683
|
+
x-nullable: true
|
684
|
+
description: Payment not found.
|
685
|
+
content:
|
686
|
+
application/json:
|
687
|
+
schema:
|
688
|
+
$ref: '#/components/schemas/ErrorResponse'
|
689
|
+
'409':
|
690
|
+
x-nullable: true
|
691
|
+
description: Conflict
|
692
|
+
content:
|
693
|
+
application/json:
|
694
|
+
schema:
|
695
|
+
$ref: '#/components/schemas/ErrorResponse'
|
696
|
+
delete:
|
697
|
+
summary: Delete a Checkout
|
698
|
+
description: This endpoint can be used to delete an unused Checkout.
|
699
|
+
tags:
|
700
|
+
- Checkout
|
701
|
+
operationId: deleteCheckout
|
702
|
+
parameters:
|
703
|
+
- $ref: '#/components/parameters/merchantIdPath'
|
704
|
+
- $ref: '#/components/parameters/commerceCaseIdPath'
|
705
|
+
- $ref: '#/components/parameters/checkoutIdPath'
|
706
|
+
responses:
|
707
|
+
'204':
|
708
|
+
x-nullable: true
|
709
|
+
description: The Checkout was successfully deleted.
|
710
|
+
'403':
|
711
|
+
x-nullable: true
|
712
|
+
description: You are not allowed to delete the Checkout
|
713
|
+
content:
|
714
|
+
application/json:
|
715
|
+
schema:
|
716
|
+
$ref: '#/components/schemas/ErrorResponse'
|
717
|
+
'404':
|
718
|
+
x-nullable: true
|
719
|
+
description: The Checkout could not be found
|
720
|
+
content:
|
721
|
+
application/json:
|
722
|
+
schema:
|
723
|
+
$ref: '#/components/schemas/ErrorResponse'
|
724
|
+
'/v1/{merchantId}/commerce-cases/{commerceCaseId}/checkouts/{checkoutId}/payment-executions':
|
725
|
+
post:
|
726
|
+
summary: Create a Payment
|
727
|
+
description: |-
|
728
|
+
This endpoint can be used to create a payment for a specific payment method. The amount of the payment cannot
|
729
|
+
exceed the overall Checkout amount.
|
730
|
+
OrderManagementActions will be impossible after using a PaymentExecution endpoint.
|
731
|
+
tags:
|
732
|
+
- PaymentExecution
|
733
|
+
operationId: createPayment
|
734
|
+
parameters:
|
735
|
+
- $ref: '#/components/parameters/merchantIdPath'
|
736
|
+
- $ref: '#/components/parameters/commerceCaseIdPath'
|
737
|
+
- $ref: '#/components/parameters/checkoutIdPath'
|
738
|
+
requestBody:
|
739
|
+
required: true
|
740
|
+
content:
|
741
|
+
application/json:
|
742
|
+
schema:
|
743
|
+
$ref: '#/components/schemas/PaymentExecutionRequest'
|
744
|
+
responses:
|
745
|
+
'201':
|
746
|
+
x-nullable: true
|
747
|
+
description: The payment request was successfully processed and a payment object was created.
|
748
|
+
content:
|
749
|
+
application/json:
|
750
|
+
schema:
|
751
|
+
$ref: '#/components/schemas/CreatePaymentResponse'
|
752
|
+
'400':
|
753
|
+
x-nullable: true
|
754
|
+
description: |-
|
755
|
+
The request was malformed or was missing required data. When a required property was missing the error
|
756
|
+
message will point out which property caused the error.
|
757
|
+
content:
|
758
|
+
application/json:
|
759
|
+
schema:
|
760
|
+
$ref: '#/components/schemas/ErrorResponse'
|
761
|
+
'402':
|
762
|
+
x-nullable: true
|
763
|
+
description: The payment was declined by a 3rd party (acquirer, payment processor, etc.)
|
764
|
+
content:
|
765
|
+
application/json:
|
766
|
+
schema:
|
767
|
+
$ref: '#/components/schemas/ErrorResponse'
|
768
|
+
'403':
|
769
|
+
x-nullable: true
|
770
|
+
description: You are not allowed to access the service or account or your API authentication failed.
|
771
|
+
content:
|
772
|
+
application/json:
|
773
|
+
schema:
|
774
|
+
$ref: '#/components/schemas/ErrorResponse'
|
775
|
+
'404':
|
776
|
+
x-nullable: true
|
777
|
+
description: Payment not found
|
778
|
+
content:
|
779
|
+
application/json:
|
780
|
+
schema:
|
781
|
+
$ref: '#/components/schemas/ErrorResponse'
|
782
|
+
'409':
|
783
|
+
x-nullable: true
|
784
|
+
description: Conflict
|
785
|
+
content:
|
786
|
+
application/json:
|
787
|
+
schema:
|
788
|
+
$ref: '#/components/schemas/ErrorResponse'
|
789
|
+
'502':
|
790
|
+
x-nullable: true
|
791
|
+
description: |-
|
792
|
+
Any 5XX response points to something that went wrong on our end. This could also be that the system was
|
793
|
+
unable to route the transaction to an appropriate acquirer/3rd party. Another reason for such a response
|
794
|
+
is when the 3rd party's response could not be understood.
|
795
|
+
content:
|
796
|
+
application/json:
|
797
|
+
schema:
|
798
|
+
$ref: '#/components/schemas/ErrorResponse'
|
799
|
+
'503':
|
800
|
+
x-nullable: true
|
801
|
+
description: Service unavailable
|
802
|
+
content:
|
803
|
+
application/json:
|
804
|
+
schema:
|
805
|
+
$ref: '#/components/schemas/ErrorResponse'
|
806
|
+
'/v1/{merchantId}/commerce-cases/{commerceCaseId}/checkouts/{checkoutId}/payment-executions/{paymentExecutionId}/capture':
|
807
|
+
post:
|
808
|
+
summary: Capture a Payment
|
809
|
+
description: |-
|
810
|
+
This endpoint can be used to capture authorized amounts of a payment. The Capture can only be done for Checkouts
|
811
|
+
with status COMPLETED, BILLED or CHARGEBACKED.
|
812
|
+
OrderManagementActions will be impossible after using a PaymentExecution endpoint.
|
813
|
+
It is possible to perform multiple partial captures by providing an amount that is lower than the total
|
814
|
+
authorized amount.
|
815
|
+
|
816
|
+
The cancellationReason is mandatory for BNPL payment methods (paymentProductId 3390, 3391 and 3392) if isFinal
|
817
|
+
is set to true and the amount of the Capture is lower than the authorized amount.
|
818
|
+
For other payment methods the cancellationReason is not mandatory in this case but can be used for reporting and
|
819
|
+
reconciliation purposes.
|
820
|
+
tags:
|
821
|
+
- PaymentExecution
|
822
|
+
operationId: capturePaymentExecution
|
823
|
+
parameters:
|
824
|
+
- $ref: '#/components/parameters/merchantIdPath'
|
825
|
+
- $ref: '#/components/parameters/commerceCaseIdPath'
|
826
|
+
- $ref: '#/components/parameters/checkoutIdPath'
|
827
|
+
- $ref: '#/components/parameters/paymentExecutionId'
|
828
|
+
requestBody:
|
829
|
+
required: true
|
830
|
+
content:
|
831
|
+
application/json:
|
832
|
+
schema:
|
833
|
+
$ref: '#/components/schemas/CapturePaymentRequest'
|
834
|
+
responses:
|
835
|
+
'201':
|
836
|
+
x-nullable: true
|
837
|
+
description: The Capture was successfully created.
|
838
|
+
content:
|
839
|
+
application/json:
|
840
|
+
schema:
|
841
|
+
$ref: '#/components/schemas/CapturePaymentResponse'
|
842
|
+
'400':
|
843
|
+
x-nullable: true
|
844
|
+
description: |-
|
845
|
+
The request was malformed or was missing required data. When a required property was missing the error
|
846
|
+
message will point out which property caused the error.
|
847
|
+
content:
|
848
|
+
application/json:
|
849
|
+
schema:
|
850
|
+
$ref: '#/components/schemas/ErrorResponse'
|
851
|
+
'403':
|
852
|
+
x-nullable: true
|
853
|
+
description: You are not allowed to access the service or account or your API authentication failed.
|
854
|
+
content:
|
855
|
+
application/json:
|
856
|
+
schema:
|
857
|
+
$ref: '#/components/schemas/ErrorResponse'
|
858
|
+
'404':
|
859
|
+
x-nullable: true
|
860
|
+
description: |-
|
861
|
+
The most common cause for this response is that the Checkout status was not PENDING_COMPLETION, BILLED or
|
862
|
+
CHARGEBACKED.
|
863
|
+
content:
|
864
|
+
application/json:
|
865
|
+
schema:
|
866
|
+
$ref: '#/components/schemas/ErrorResponse'
|
867
|
+
'/v1/{merchantId}/commerce-cases/{commerceCaseId}/checkouts/{checkoutId}/payment-executions/{paymentExecutionId}/cancel':
|
868
|
+
post:
|
869
|
+
summary: Cancel a Payment
|
870
|
+
description: |-
|
871
|
+
This endpoint can be used to reverse the payment associated with this Checkout. The Cancel is only possible for
|
872
|
+
the entire amount of the payment and not partial payments.
|
873
|
+
OrderManagementActions will be impossible after using a PaymentExecution endpoint.
|
874
|
+
|
875
|
+
In the light of card payments, reversing an authorization that is not needed will prevent you from having to pay
|
876
|
+
a fee/penalty for unused authorization requests.
|
877
|
+
Whilst scheme regulations require that acquirers and PSPs support authorization reversals, there are no rules
|
878
|
+
towards issuers mandating them to process the reversal advice.
|
879
|
+
Therefore, there is no guarantee the authorization hold is released.
|
880
|
+
The authorization reversal can only be performed by the card issuer, and under no circumstances will we be
|
881
|
+
responsible for performing the authorization reversal.
|
882
|
+
|
883
|
+
The cancellationReason is mandatory for BNPL payment methods (paymentProductId 3390, 3391 and 3392). For other
|
884
|
+
payment methods the cancellationReason is not mandatory but can be used for reporting and reconciliation
|
885
|
+
purposes.
|
886
|
+
tags:
|
887
|
+
- PaymentExecution
|
888
|
+
operationId: cancelPaymentExecution
|
889
|
+
parameters:
|
890
|
+
- $ref: '#/components/parameters/merchantIdPath'
|
891
|
+
- $ref: '#/components/parameters/commerceCaseIdPath'
|
892
|
+
- $ref: '#/components/parameters/checkoutIdPath'
|
893
|
+
- $ref: '#/components/parameters/paymentExecutionId'
|
894
|
+
requestBody:
|
895
|
+
required: true
|
896
|
+
content:
|
897
|
+
application/json:
|
898
|
+
schema:
|
899
|
+
$ref: '#/components/schemas/CancelPaymentRequest'
|
900
|
+
responses:
|
901
|
+
'200':
|
902
|
+
x-nullable: true
|
903
|
+
description: |-
|
904
|
+
The payment has been cancelled. Some acquirers/issuers will provide some feedback in case a reversal of the
|
905
|
+
authorization has been performed.
|
906
|
+
content:
|
907
|
+
application/json:
|
908
|
+
schema:
|
909
|
+
$ref: '#/components/schemas/CancelPaymentResponse'
|
910
|
+
'400':
|
911
|
+
x-nullable: true
|
912
|
+
description: Incorrect input data
|
913
|
+
content:
|
914
|
+
application/json:
|
915
|
+
schema:
|
916
|
+
$ref: '#/components/schemas/ErrorResponse'
|
917
|
+
'402':
|
918
|
+
x-nullable: true
|
919
|
+
description: Payment required
|
920
|
+
content:
|
921
|
+
application/json:
|
922
|
+
schema:
|
923
|
+
$ref: '#/components/schemas/ErrorResponse'
|
924
|
+
'403':
|
925
|
+
x-nullable: true
|
926
|
+
description: You are not allowed to access the service or account or your API authentication failed.
|
927
|
+
content:
|
928
|
+
application/json:
|
929
|
+
schema:
|
930
|
+
$ref: '#/components/schemas/ErrorResponse'
|
931
|
+
'404':
|
932
|
+
x-nullable: true
|
933
|
+
description: Payment was not found
|
934
|
+
content:
|
935
|
+
application/json:
|
936
|
+
schema:
|
937
|
+
$ref: '#/components/schemas/ErrorResponse'
|
938
|
+
'409':
|
939
|
+
x-nullable: true
|
940
|
+
description: Cancellation is not allowed because payment is closed
|
941
|
+
content:
|
942
|
+
application/json:
|
943
|
+
schema:
|
944
|
+
$ref: '#/components/schemas/ErrorResponse'
|
945
|
+
'500':
|
946
|
+
x-nullable: true
|
947
|
+
description: Internal server exception
|
948
|
+
content:
|
949
|
+
application/json:
|
950
|
+
schema:
|
951
|
+
$ref: '#/components/schemas/ErrorResponse'
|
952
|
+
'/v1/{merchantId}/commerce-cases/{commerceCaseId}/checkouts/{checkoutId}/payment-executions/{paymentExecutionId}/refund':
|
953
|
+
post:
|
954
|
+
summary: Refund a Payment
|
955
|
+
description: |-
|
956
|
+
This endpoint can be used to refund a payment for the associated Checkout. The Refund can only be done for
|
957
|
+
Checkouts with status BILLED or CHARGEBACKED.
|
958
|
+
OrderManagementActions will be impossible after using a PaymentExecution endpoint.
|
959
|
+
tags:
|
960
|
+
- PaymentExecution
|
961
|
+
operationId: refundPaymentExecution
|
962
|
+
parameters:
|
963
|
+
- $ref: '#/components/parameters/merchantIdPath'
|
964
|
+
- $ref: '#/components/parameters/commerceCaseIdPath'
|
965
|
+
- $ref: '#/components/parameters/checkoutIdPath'
|
966
|
+
- $ref: '#/components/parameters/paymentExecutionId'
|
967
|
+
requestBody:
|
968
|
+
required: true
|
969
|
+
content:
|
970
|
+
application/json:
|
971
|
+
schema:
|
972
|
+
$ref: '#/components/schemas/RefundRequest'
|
973
|
+
responses:
|
974
|
+
'201':
|
975
|
+
x-nullable: true
|
976
|
+
description: The Refund was successfully created.
|
977
|
+
content:
|
978
|
+
application/json:
|
979
|
+
schema:
|
980
|
+
$ref: '#/components/schemas/RefundPaymentResponse'
|
981
|
+
'400':
|
982
|
+
x-nullable: true
|
983
|
+
description: |-
|
984
|
+
The request was malformed or was missing required data. When a required property was missing the error
|
985
|
+
message will point out which property caused the error.
|
986
|
+
content:
|
987
|
+
application/json:
|
988
|
+
schema:
|
989
|
+
$ref: '#/components/schemas/RefundErrorResponse'
|
990
|
+
'403':
|
991
|
+
x-nullable: true
|
992
|
+
description: You are not allowed to access the service or account or your API authentication failed.
|
993
|
+
content:
|
994
|
+
application/json:
|
995
|
+
schema:
|
996
|
+
$ref: '#/components/schemas/ErrorResponse'
|
997
|
+
'404':
|
998
|
+
x-nullable: true
|
999
|
+
description: The most common cause for this response id that the payment was not in a cancelable state.
|
1000
|
+
content:
|
1001
|
+
application/json:
|
1002
|
+
schema:
|
1003
|
+
$ref: '#/components/schemas/RefundErrorResponse'
|
1004
|
+
'/v1/{merchantId}/commerce-cases/{commerceCaseId}/checkouts/{checkoutId}/payment-executions/{paymentExecutionId}/complete':
|
1005
|
+
post:
|
1006
|
+
summary: Complete a Payment
|
1007
|
+
description: |-
|
1008
|
+
For PAYONE Secured Installment (paymentProductId 3391) a two-step process is required.
|
1009
|
+
The first step is creating a Payment, the second step is completing it by calling this API endpoint.
|
1010
|
+
OrderManagementActions will be impossible after using a PaymentExecution endpoint.
|
1011
|
+
tags:
|
1012
|
+
- PaymentExecution
|
1013
|
+
operationId: completePayment
|
1014
|
+
parameters:
|
1015
|
+
- $ref: '#/components/parameters/merchantIdPath'
|
1016
|
+
- $ref: '#/components/parameters/commerceCaseIdPath'
|
1017
|
+
- $ref: '#/components/parameters/checkoutIdPath'
|
1018
|
+
- $ref: '#/components/parameters/paymentExecutionId'
|
1019
|
+
requestBody:
|
1020
|
+
content:
|
1021
|
+
application/json:
|
1022
|
+
schema:
|
1023
|
+
$ref: '#/components/schemas/CompletePaymentRequest'
|
1024
|
+
required: true
|
1025
|
+
responses:
|
1026
|
+
200:
|
1027
|
+
description: The completion was successful.
|
1028
|
+
content:
|
1029
|
+
application/json:
|
1030
|
+
schema:
|
1031
|
+
$ref: '#/components/schemas/CompletePaymentResponse'
|
1032
|
+
400:
|
1033
|
+
description: Incorrect input data
|
1034
|
+
content:
|
1035
|
+
application/json:
|
1036
|
+
schema:
|
1037
|
+
$ref: '#/components/schemas/ErrorResponse'
|
1038
|
+
402:
|
1039
|
+
description: The payment was declined by a 3rd party (acquirer, payment processor, etc.)
|
1040
|
+
content:
|
1041
|
+
application/json:
|
1042
|
+
schema:
|
1043
|
+
$ref: '#/components/schemas/ErrorResponse'
|
1044
|
+
403:
|
1045
|
+
description: You are not allowed to access the service or account or your API authentication failed.
|
1046
|
+
content:
|
1047
|
+
application/json:
|
1048
|
+
schema:
|
1049
|
+
$ref: '#/components/schemas/ErrorResponse'
|
1050
|
+
409:
|
1051
|
+
description: Complete is not allowed
|
1052
|
+
content:
|
1053
|
+
application/json:
|
1054
|
+
schema:
|
1055
|
+
$ref: '#/components/schemas/ErrorResponse'
|
1056
|
+
422:
|
1057
|
+
description: The request was well-formed but was unable to be processed due to semantic errors
|
1058
|
+
content:
|
1059
|
+
application/json:
|
1060
|
+
schema:
|
1061
|
+
$ref: '#/components/schemas/ErrorResponse'
|
1062
|
+
500:
|
1063
|
+
description: Internal server exception
|
1064
|
+
content:
|
1065
|
+
application/json:
|
1066
|
+
schema:
|
1067
|
+
$ref: '#/components/schemas/ErrorResponse'
|
1068
|
+
502:
|
1069
|
+
description: Any 5XX response points to something that went wrong on our
|
1070
|
+
end. This could also be that the system was unable to route the transaction
|
1071
|
+
to an appropriate acquirer/3rd party. Another reason for such a response
|
1072
|
+
is when the 3rd party's response could not be understood.
|
1073
|
+
content:
|
1074
|
+
application/json:
|
1075
|
+
schema:
|
1076
|
+
$ref: '#/components/schemas/ErrorResponse'
|
1077
|
+
503:
|
1078
|
+
description: Service unavailable
|
1079
|
+
content:
|
1080
|
+
application/json:
|
1081
|
+
schema:
|
1082
|
+
$ref: '#/components/schemas/ErrorResponse'
|
1083
|
+
'/v1/{merchantId}/commerce-cases/{commerceCaseId}/checkouts/{checkoutId}/payment-executions/{paymentExecutionId}/pause':
|
1084
|
+
post:
|
1085
|
+
summary: Pause a Payment for selected payment methods
|
1086
|
+
description: |-
|
1087
|
+
Defers next dunning step-up after a consumer has announced to send
|
1088
|
+
back a shipped order. Merchant intends to do a REFUND call soon.
|
1089
|
+
OrderManagementActions will be impossible after using a PaymentExecution endpoint.
|
1090
|
+
|
1091
|
+
Currently only applicable for PAYONE Buy Now, Pay Later (BNPL).
|
1092
|
+
|
1093
|
+
* 3390 - PAYONE Secured Invoice
|
1094
|
+
* 3391 - PAYONE Secured Installment
|
1095
|
+
* 3392 - PAYONE Secured Direct Debit
|
1096
|
+
tags:
|
1097
|
+
- PaymentExecution
|
1098
|
+
operationId: pausePayment
|
1099
|
+
parameters:
|
1100
|
+
- $ref: '#/components/parameters/merchantIdPath'
|
1101
|
+
- $ref: '#/components/parameters/commerceCaseIdPath'
|
1102
|
+
- $ref: '#/components/parameters/checkoutIdPath'
|
1103
|
+
- $ref: '#/components/parameters/paymentExecutionId'
|
1104
|
+
requestBody:
|
1105
|
+
content:
|
1106
|
+
application/json:
|
1107
|
+
schema:
|
1108
|
+
$ref: '#/components/schemas/PausePaymentRequest'
|
1109
|
+
responses:
|
1110
|
+
200:
|
1111
|
+
description: The pause was successful.
|
1112
|
+
content:
|
1113
|
+
application/json:
|
1114
|
+
schema:
|
1115
|
+
$ref: '#/components/schemas/PausePaymentResponse'
|
1116
|
+
400:
|
1117
|
+
description: Incorrect input data
|
1118
|
+
content:
|
1119
|
+
application/json:
|
1120
|
+
schema:
|
1121
|
+
$ref: '#/components/schemas/ErrorResponse'
|
1122
|
+
402:
|
1123
|
+
description: The payment was declined by a 3rd party (acquirer, payment
|
1124
|
+
processor, etc.)
|
1125
|
+
content:
|
1126
|
+
application/json:
|
1127
|
+
schema:
|
1128
|
+
$ref: '#/components/schemas/ErrorResponse'
|
1129
|
+
403:
|
1130
|
+
description: You are not allowed to access the service or account or your
|
1131
|
+
API authentication failed.
|
1132
|
+
content:
|
1133
|
+
application/json:
|
1134
|
+
schema:
|
1135
|
+
$ref: '#/components/schemas/ErrorResponse'
|
1136
|
+
409:
|
1137
|
+
description: Pause is not allowed
|
1138
|
+
content:
|
1139
|
+
application/json:
|
1140
|
+
schema:
|
1141
|
+
$ref: '#/components/schemas/ErrorResponse'
|
1142
|
+
422:
|
1143
|
+
description: The request was well-formed but was unable to be processed
|
1144
|
+
due to semantic errors
|
1145
|
+
content:
|
1146
|
+
application/json:
|
1147
|
+
schema:
|
1148
|
+
$ref: '#/components/schemas/ErrorResponse'
|
1149
|
+
500:
|
1150
|
+
description: Internal server exception
|
1151
|
+
content:
|
1152
|
+
application/json:
|
1153
|
+
schema:
|
1154
|
+
$ref: '#/components/schemas/ErrorResponse'
|
1155
|
+
502:
|
1156
|
+
description: Any 5XX response points to something that went wrong on our
|
1157
|
+
end. This could also be that the system was unable to route the transaction
|
1158
|
+
to an appropriate acquirer/3rd party. Another reason for such a response
|
1159
|
+
is when the 3rd party's response could not be understood.
|
1160
|
+
content:
|
1161
|
+
application/json:
|
1162
|
+
schema:
|
1163
|
+
$ref: '#/components/schemas/ErrorResponse'
|
1164
|
+
503:
|
1165
|
+
description: Service unavailable
|
1166
|
+
content:
|
1167
|
+
application/json:
|
1168
|
+
schema:
|
1169
|
+
$ref: '#/components/schemas/ErrorResponse'
|
1170
|
+
'/v1/{merchantId}/commerce-cases/{commerceCaseId}/checkouts/{checkoutId}/payment-executions/{paymentExecutionId}/refresh':
|
1171
|
+
post:
|
1172
|
+
summary: Refresh information of a Payment Execution
|
1173
|
+
description: |-
|
1174
|
+
This endpoint can be used to refresh the information of a Payment Execution.
|
1175
|
+
|
1176
|
+
This endpoint can be used to refresh a Payment Execution in two different modes:
|
1177
|
+
* PAYMENT_EVENTS = Refresh all events that belong to a payment. It can be used for a synchronisation with
|
1178
|
+
the payment gateway e.g. in case of possible inconsistencies between the Commerce Platform and the payment gateway.
|
1179
|
+
between the commerce platform and the payment platform.
|
1180
|
+
* PAYMENT_PROVIDER_DETAILS = Refresh the payment status of the payment and return the payment provider details.
|
1181
|
+
It can be used for a synchronisation of the payment with the external payment provider. At the moment this call
|
1182
|
+
will update the customer payment status of a transaction for PAYONE Buy Now, Pay Later (BNPL).
|
1183
|
+
|
1184
|
+
ATTENTION: This Refresh endpoint includes a rate limit of one request per Payment Execution every twelve hours.
|
1185
|
+
The reason for this rate limit that for the currently supported use case a change in payment provider details is
|
1186
|
+
not expected to change more frequently.
|
1187
|
+
tags:
|
1188
|
+
- PaymentExecution
|
1189
|
+
operationId: refreshPayment
|
1190
|
+
parameters:
|
1191
|
+
- $ref: '#/components/parameters/merchantIdPath'
|
1192
|
+
- $ref: '#/components/parameters/commerceCaseIdPath'
|
1193
|
+
- $ref: '#/components/parameters/checkoutIdPath'
|
1194
|
+
- $ref: '#/components/parameters/paymentExecutionId'
|
1195
|
+
requestBody:
|
1196
|
+
content:
|
1197
|
+
application/json:
|
1198
|
+
schema:
|
1199
|
+
$ref: '#/components/schemas/RefreshPaymentRequest'
|
1200
|
+
responses:
|
1201
|
+
200:
|
1202
|
+
description: The refresh was successful.
|
1203
|
+
content:
|
1204
|
+
application/json:
|
1205
|
+
schema:
|
1206
|
+
$ref: '#/components/schemas/PaymentExecution'
|
1207
|
+
400:
|
1208
|
+
description: Incorrect input data
|
1209
|
+
content:
|
1210
|
+
application/json:
|
1211
|
+
schema:
|
1212
|
+
$ref: '#/components/schemas/ErrorResponse'
|
1213
|
+
403:
|
1214
|
+
description: You are not allowed to access the service or account or your
|
1215
|
+
API authentication failed.
|
1216
|
+
content:
|
1217
|
+
application/json:
|
1218
|
+
schema:
|
1219
|
+
$ref: '#/components/schemas/ErrorResponse'
|
1220
|
+
500:
|
1221
|
+
description: Internal server exception
|
1222
|
+
content:
|
1223
|
+
application/json:
|
1224
|
+
schema:
|
1225
|
+
$ref: '#/components/schemas/ErrorResponse'
|
1226
|
+
502:
|
1227
|
+
description: Any 5XX response points to something that went wrong on our
|
1228
|
+
end. This could also be that the system was unable to route the transaction
|
1229
|
+
to an appropriate acquirer/3rd party. Another reason for such a response
|
1230
|
+
is when the 3rd party's response could not be understood.
|
1231
|
+
content:
|
1232
|
+
application/json:
|
1233
|
+
schema:
|
1234
|
+
$ref: '#/components/schemas/ErrorResponse'
|
1235
|
+
503:
|
1236
|
+
description: Service unavailable
|
1237
|
+
content:
|
1238
|
+
application/json:
|
1239
|
+
schema:
|
1240
|
+
$ref: '#/components/schemas/ErrorResponse'
|
1241
|
+
|
1242
|
+
'/v1/{merchantId}/commerce-cases/{commerceCaseId}/checkouts/{checkoutId}/payment-information':
|
1243
|
+
post:
|
1244
|
+
summary: Create a Payment Information
|
1245
|
+
description: |-
|
1246
|
+
Creates a new Payment Information for the given Checkout.
|
1247
|
+
tags:
|
1248
|
+
- PaymentInformation
|
1249
|
+
operationId: createPaymentInformation
|
1250
|
+
parameters:
|
1251
|
+
- $ref: '#/components/parameters/merchantIdPath'
|
1252
|
+
- $ref: '#/components/parameters/commerceCaseIdPath'
|
1253
|
+
- $ref: '#/components/parameters/checkoutIdPath'
|
1254
|
+
requestBody:
|
1255
|
+
required: true
|
1256
|
+
content:
|
1257
|
+
application/json:
|
1258
|
+
schema:
|
1259
|
+
$ref: '#/components/schemas/PaymentInformationRequest'
|
1260
|
+
responses:
|
1261
|
+
'201':
|
1262
|
+
x-nullable: true
|
1263
|
+
description: The response contains the reference of the created Payment Information.
|
1264
|
+
content:
|
1265
|
+
application/json:
|
1266
|
+
schema:
|
1267
|
+
$ref: '#/components/schemas/PaymentInformationResponse'
|
1268
|
+
'400':
|
1269
|
+
x-nullable: true
|
1270
|
+
description: Incorrect input data
|
1271
|
+
content:
|
1272
|
+
application/json:
|
1273
|
+
schema:
|
1274
|
+
$ref: '#/components/schemas/ErrorResponse'
|
1275
|
+
'404':
|
1276
|
+
x-nullable: true
|
1277
|
+
description: Payment not found
|
1278
|
+
content:
|
1279
|
+
application/json:
|
1280
|
+
schema:
|
1281
|
+
$ref: '#/components/schemas/ErrorResponse'
|
1282
|
+
'409':
|
1283
|
+
x-nullable: true
|
1284
|
+
description: Creation of Payment Information is not allowed
|
1285
|
+
content:
|
1286
|
+
application/json:
|
1287
|
+
schema:
|
1288
|
+
$ref: '#/components/schemas/ErrorResponse'
|
1289
|
+
'500':
|
1290
|
+
x-nullable: true
|
1291
|
+
description: Internal server exception
|
1292
|
+
content:
|
1293
|
+
application/json:
|
1294
|
+
schema:
|
1295
|
+
$ref: '#/components/schemas/ErrorResponse'
|
1296
|
+
'/v1/{merchantId}/commerce-cases/{commerceCaseId}/checkouts/{checkoutId}/payment-information/{paymentInformationId}':
|
1297
|
+
get:
|
1298
|
+
summary: Get a Payment Information
|
1299
|
+
description: |-
|
1300
|
+
This endpoint can be used to get a paymentInformation of a Checkout.
|
1301
|
+
tags:
|
1302
|
+
- PaymentInformation
|
1303
|
+
operationId: getPaymentInformation
|
1304
|
+
parameters:
|
1305
|
+
- $ref: '#/components/parameters/merchantIdPath'
|
1306
|
+
- $ref: '#/components/parameters/commerceCaseIdPath'
|
1307
|
+
- $ref: '#/components/parameters/checkoutIdPath'
|
1308
|
+
- $ref: '#/components/parameters/paymentInformationId'
|
1309
|
+
responses:
|
1310
|
+
'200':
|
1311
|
+
x-nullable: true
|
1312
|
+
description: The response contains the reference of the created Payment Information.
|
1313
|
+
content:
|
1314
|
+
application/json:
|
1315
|
+
schema:
|
1316
|
+
$ref: '#/components/schemas/PaymentInformationResponse'
|
1317
|
+
'404':
|
1318
|
+
x-nullable: true
|
1319
|
+
description: Payment not found
|
1320
|
+
content:
|
1321
|
+
application/json:
|
1322
|
+
schema:
|
1323
|
+
$ref: '#/components/schemas/ErrorResponse'
|
1324
|
+
'/v1/{merchantId}/commerce-cases/{commerceCaseId}/checkouts/{checkoutId}/payment-information/{paymentInformationId}/refund':
|
1325
|
+
post:
|
1326
|
+
summary: Refund a Payment Information
|
1327
|
+
description: |-
|
1328
|
+
This endpoint can be used to initiate an online refund for a POS terminal transaction.
|
1329
|
+
The platform will automatically detect the payment method of the original transaction and select the most appropriate mode to refund the transaction.
|
1330
|
+
tags:
|
1331
|
+
- PaymentInformation
|
1332
|
+
operationId: refundPaymentInformation
|
1333
|
+
parameters:
|
1334
|
+
- $ref: '#/components/parameters/merchantIdPath'
|
1335
|
+
- $ref: '#/components/parameters/commerceCaseIdPath'
|
1336
|
+
- $ref: '#/components/parameters/checkoutIdPath'
|
1337
|
+
- $ref: '#/components/parameters/paymentInformationId'
|
1338
|
+
requestBody:
|
1339
|
+
required: true
|
1340
|
+
content:
|
1341
|
+
application/json:
|
1342
|
+
schema:
|
1343
|
+
$ref: '#/components/schemas/PaymentInformationRefundRequest'
|
1344
|
+
responses:
|
1345
|
+
'201':
|
1346
|
+
x-nullable: true
|
1347
|
+
description: The Refund was successfully created.
|
1348
|
+
content:
|
1349
|
+
application/json:
|
1350
|
+
schema:
|
1351
|
+
$ref: '#/components/schemas/PaymentInformationRefundResponse'
|
1352
|
+
'400':
|
1353
|
+
x-nullable: true
|
1354
|
+
description: |-
|
1355
|
+
The request was malformed or was missing required data. When a required property was missing the error
|
1356
|
+
message will point out which property caused the error.
|
1357
|
+
content:
|
1358
|
+
application/json:
|
1359
|
+
schema:
|
1360
|
+
$ref: '#/components/schemas/RefundErrorResponse'
|
1361
|
+
'403':
|
1362
|
+
x-nullable: true
|
1363
|
+
description: You are not allowed to access the service or account or your API authentication failed.
|
1364
|
+
content:
|
1365
|
+
application/json:
|
1366
|
+
schema:
|
1367
|
+
$ref: '#/components/schemas/ErrorResponse'
|
1368
|
+
'404':
|
1369
|
+
x-nullable: true
|
1370
|
+
description: The most common cause for this response id that the payment was not in a cancelable state.
|
1371
|
+
content:
|
1372
|
+
application/json:
|
1373
|
+
schema:
|
1374
|
+
$ref: '#/components/schemas/RefundErrorResponse'
|
1375
|
+
|
1376
|
+
components:
|
1377
|
+
parameters:
|
1378
|
+
checkoutIdPath:
|
1379
|
+
in: path
|
1380
|
+
name: checkoutId
|
1381
|
+
description: Unique identifier of a Checkout
|
1382
|
+
required: true
|
1383
|
+
schema:
|
1384
|
+
type: string
|
1385
|
+
format: UUID
|
1386
|
+
checkoutIdQuery:
|
1387
|
+
in: query
|
1388
|
+
name: checkoutId
|
1389
|
+
description: Unique identifier of a Checkout
|
1390
|
+
schema:
|
1391
|
+
type: string
|
1392
|
+
format: UUID
|
1393
|
+
example: 7a3444d3-f6ce-4b6e-b6c4-2486a160cf19
|
1394
|
+
commerceCaseIdPath:
|
1395
|
+
in: path
|
1396
|
+
name: commerceCaseId
|
1397
|
+
description: Unique identifier of a Commerce Case.
|
1398
|
+
required: true
|
1399
|
+
schema:
|
1400
|
+
type: string
|
1401
|
+
format: UUID
|
1402
|
+
commerceCaseIdQuery:
|
1403
|
+
in: query
|
1404
|
+
name: commerceCaseId
|
1405
|
+
description: Unique identifier of a Commerce Case.
|
1406
|
+
schema:
|
1407
|
+
type: string
|
1408
|
+
format: UUID
|
1409
|
+
example: 7a3444d3-f6ce-4b6e-b6c4-2486a160cf19
|
1410
|
+
companyInformation:
|
1411
|
+
in: query
|
1412
|
+
name: companyInformation
|
1413
|
+
description: Filter your results by the name of the company.
|
1414
|
+
schema:
|
1415
|
+
type: string
|
1416
|
+
x-trim-at: 50
|
1417
|
+
example: Sinclair's company name
|
1418
|
+
dateOfBirth:
|
1419
|
+
in: query
|
1420
|
+
name: dateOfBirth
|
1421
|
+
description: |-
|
1422
|
+
Filter your results by the date of birth.
|
1423
|
+
Format YYYYMMDD
|
1424
|
+
schema:
|
1425
|
+
type: string
|
1426
|
+
maxLength: 8
|
1427
|
+
pattern: ^((19|20|21)\d{6})?$
|
1428
|
+
example: 20041101
|
1429
|
+
email:
|
1430
|
+
in: query
|
1431
|
+
name: email
|
1432
|
+
description: Filter your results by the customer email address.
|
1433
|
+
schema:
|
1434
|
+
type: string
|
1435
|
+
x-trim-at: 70
|
1436
|
+
example: Sinclair.Müller@example.com
|
1437
|
+
firstName:
|
1438
|
+
in: query
|
1439
|
+
name: firstName
|
1440
|
+
description: |-
|
1441
|
+
Filter your results by the customer first name. It is also possible to filter by the first name from the
|
1442
|
+
shipping address.
|
1443
|
+
schema:
|
1444
|
+
type: string
|
1445
|
+
x-trim-at: 35
|
1446
|
+
example: Sinclair
|
1447
|
+
fromCancelledAmount:
|
1448
|
+
in: query
|
1449
|
+
description: |-
|
1450
|
+
Minimum cancelled amount of the Checkouts that shall be included in the response. Amount in cents always
|
1451
|
+
having 2 decimals.
|
1452
|
+
name: fromCancelledAmount
|
1453
|
+
schema:
|
1454
|
+
type: integer
|
1455
|
+
format: int64
|
1456
|
+
maximum: 999999999999
|
1457
|
+
minimum: 0
|
1458
|
+
example: 1000
|
1459
|
+
fromChargebackAmount:
|
1460
|
+
in: query
|
1461
|
+
description: |-
|
1462
|
+
Minimum chargeback amount of the Checkouts that shall be included in the response. Amount in cents always
|
1463
|
+
having 2 decimals.
|
1464
|
+
name: fromChargebackAmount
|
1465
|
+
schema:
|
1466
|
+
type: integer
|
1467
|
+
format: int64
|
1468
|
+
maximum: 999999999999
|
1469
|
+
minimum: 0
|
1470
|
+
example: 1000
|
1471
|
+
fromCheckoutAmount:
|
1472
|
+
in: query
|
1473
|
+
description: |-
|
1474
|
+
Minimum monetary value of the Checkouts that shall be included in the response. Amount in cents always
|
1475
|
+
having 2 decimals.
|
1476
|
+
name: fromCheckoutAmount
|
1477
|
+
schema:
|
1478
|
+
type: integer
|
1479
|
+
format: int64
|
1480
|
+
maximum: 999999999999
|
1481
|
+
minimum: 0
|
1482
|
+
example: 1000
|
1483
|
+
fromCollectedAmount:
|
1484
|
+
in: query
|
1485
|
+
description: |-
|
1486
|
+
Minimum collected amount of the Checkouts that shall be included in the response. Amount in cents always
|
1487
|
+
having 2 decimals.
|
1488
|
+
name: fromCollectedAmount
|
1489
|
+
schema:
|
1490
|
+
type: integer
|
1491
|
+
format: int64
|
1492
|
+
maximum: 999999999999
|
1493
|
+
minimum: 0
|
1494
|
+
example: 1000
|
1495
|
+
fromDate:
|
1496
|
+
in: query
|
1497
|
+
name: fromDate
|
1498
|
+
schema:
|
1499
|
+
type: string
|
1500
|
+
format: date-time
|
1501
|
+
description: |
|
1502
|
+
Date and time in RFC3339 format after which Items (Checkouts or Commerce-Cases, depending on the context) should be included in the request.
|
1503
|
+
Accepted formats are:
|
1504
|
+
* YYYY-MM-DD'T'HH:mm:ss'Z'
|
1505
|
+
* YYYY-MM-DD'T'HH:mm:ss+XX:XX
|
1506
|
+
* YYYY-MM-DD'T'HH:mm:ss-XX:XX
|
1507
|
+
* YYYY-MM-DD'T'HH:mm'Z'
|
1508
|
+
* YYYY-MM-DD'T'HH:mm+XX:XX
|
1509
|
+
* YYYY-MM-DD'T'HH:mm-XX:XX
|
1510
|
+
|
1511
|
+
All other formats may be ignored by the system.
|
1512
|
+
examples:
|
1513
|
+
YYYY-MM-DDThh:mm:ssZ:
|
1514
|
+
value: 2022-11-10T13:34:23Z
|
1515
|
+
YYYY-MM-DDThh:mm:ss+XX:XX:
|
1516
|
+
value: 2022-11-10T14:34:23+01:00
|
1517
|
+
fromOpenAmount:
|
1518
|
+
in: query
|
1519
|
+
description: |-
|
1520
|
+
Minimum open amount of the Checkouts that shall be included in the response. Amount in cents always having
|
1521
|
+
2 decimals.
|
1522
|
+
name: fromOpenAmount
|
1523
|
+
schema:
|
1524
|
+
type: integer
|
1525
|
+
format: int64
|
1526
|
+
maximum: 999999999999
|
1527
|
+
minimum: 0
|
1528
|
+
example: 1000
|
1529
|
+
fromRefundAmount:
|
1530
|
+
in: query
|
1531
|
+
description: |-
|
1532
|
+
Minimum refunded amount of the Checkouts that shall be included in the response. Amount in cents always having
|
1533
|
+
2 decimals.
|
1534
|
+
name: fromRefundAmount
|
1535
|
+
schema:
|
1536
|
+
type: integer
|
1537
|
+
format: int64
|
1538
|
+
maximum: 999999999999
|
1539
|
+
minimum: 0
|
1540
|
+
example: 1000
|
1541
|
+
includeCheckoutStatus:
|
1542
|
+
in: query
|
1543
|
+
name: includeCheckoutStatus
|
1544
|
+
description: |-
|
1545
|
+
Filter your results by Checkout status so that only Checkouts with the specified statuses are returned.
|
1546
|
+
schema:
|
1547
|
+
type: array
|
1548
|
+
items:
|
1549
|
+
$ref: '#/components/schemas/StatusCheckout'
|
1550
|
+
includeExtendedCheckoutStatus:
|
1551
|
+
in: query
|
1552
|
+
name: includeExtendedCheckoutStatus
|
1553
|
+
description: |-
|
1554
|
+
Filter your results by extended Checkout status so that only Checkouts with the specified statuses are returned.
|
1555
|
+
schema:
|
1556
|
+
type: array
|
1557
|
+
items:
|
1558
|
+
$ref: '#/components/schemas/ExtendedCheckoutStatus'
|
1559
|
+
includePaymentChannel:
|
1560
|
+
in: query
|
1561
|
+
name: includePaymentChannel
|
1562
|
+
description: |-
|
1563
|
+
Filter your results by payment channel so that only Checkouts which reference transactions on the given
|
1564
|
+
channels are returned.
|
1565
|
+
schema:
|
1566
|
+
type: array
|
1567
|
+
items:
|
1568
|
+
$ref: '#/components/schemas/PaymentChannel'
|
1569
|
+
includePaymentProductId:
|
1570
|
+
in: query
|
1571
|
+
name: includePaymentProductId
|
1572
|
+
description: |-
|
1573
|
+
Filter your results by payment product ID so that only Checkouts containing a Payment Execution with one of
|
1574
|
+
the specified payment product IDs are returned.
|
1575
|
+
schema:
|
1576
|
+
type: array
|
1577
|
+
items:
|
1578
|
+
type: integer
|
1579
|
+
format: int32
|
1580
|
+
maximum: 99999
|
1581
|
+
minimum: 0
|
1582
|
+
example: 840
|
1583
|
+
merchantCustomerId:
|
1584
|
+
in: query
|
1585
|
+
name: merchantCustomerId
|
1586
|
+
description: Unique identifier for the customer.
|
1587
|
+
schema:
|
1588
|
+
type: string
|
1589
|
+
maxLength: 20
|
1590
|
+
example: 1234
|
1591
|
+
merchantIdPath:
|
1592
|
+
in: path
|
1593
|
+
name: merchantId
|
1594
|
+
description: The merchantId identifies uniquely the merchant. A Checkout has exactly one merchant.
|
1595
|
+
required: true
|
1596
|
+
schema:
|
1597
|
+
type: string
|
1598
|
+
minLength: 0
|
1599
|
+
maxLength: 64
|
1600
|
+
example: 3241
|
1601
|
+
merchantReference:
|
1602
|
+
in: query
|
1603
|
+
name: merchantReference
|
1604
|
+
description: |-
|
1605
|
+
Unique reference of the Checkout that is also returned for reporting and reconciliation purposes.
|
1606
|
+
schema:
|
1607
|
+
type: string
|
1608
|
+
maxLength: 40
|
1609
|
+
example: your-checkout-6372
|
1610
|
+
offset:
|
1611
|
+
in: query
|
1612
|
+
name: offset
|
1613
|
+
description: The offset to load Items (Checkouts or Commerce-Cases, depending on the context) starting with 0.
|
1614
|
+
schema:
|
1615
|
+
type: integer
|
1616
|
+
minimum: 0
|
1617
|
+
default: 0
|
1618
|
+
example: 0
|
1619
|
+
paymentExecutionId:
|
1620
|
+
in: path
|
1621
|
+
name: paymentExecutionId
|
1622
|
+
description: Unique identifier of a paymentExecution
|
1623
|
+
required: true
|
1624
|
+
schema:
|
1625
|
+
type: string
|
1626
|
+
format: UUID
|
1627
|
+
paymentId:
|
1628
|
+
in: query
|
1629
|
+
name: paymentId
|
1630
|
+
description: Filter your results by the paymentExecutionId, paymentInformationId or the id of the payment.
|
1631
|
+
schema:
|
1632
|
+
type: string
|
1633
|
+
example: 664423132
|
1634
|
+
paymentInformationId:
|
1635
|
+
in: path
|
1636
|
+
name: paymentInformationId
|
1637
|
+
description: Unique identifier of a paymentInformation
|
1638
|
+
required: true
|
1639
|
+
schema:
|
1640
|
+
type: string
|
1641
|
+
format: UUID
|
1642
|
+
paymentReference:
|
1643
|
+
in: query
|
1644
|
+
name: paymentReference
|
1645
|
+
description: Filter your results by the merchantReference of the paymentExecution or paymentInformation.
|
1646
|
+
schema:
|
1647
|
+
type: string
|
1648
|
+
example: Reference-4172
|
1649
|
+
phoneNumber:
|
1650
|
+
in: query
|
1651
|
+
name: phoneNumber
|
1652
|
+
description: Filter your results by the customer phone number.
|
1653
|
+
schema:
|
1654
|
+
type: string
|
1655
|
+
x-trim-at: 20
|
1656
|
+
example: '+1234567890'
|
1657
|
+
reportingToken:
|
1658
|
+
in: query
|
1659
|
+
name: reportingToken
|
1660
|
+
description: Filter your results by the reportingToken.
|
1661
|
+
schema:
|
1662
|
+
type: string
|
1663
|
+
x-trim-at: 40
|
1664
|
+
example: 12a037cc-833d-8b45-8f6f-11c34171f4e1
|
1665
|
+
size:
|
1666
|
+
in: query
|
1667
|
+
name: size
|
1668
|
+
description: The number of Items (Checkouts or Commerce-Cases, depending on the context) loaded per page
|
1669
|
+
schema:
|
1670
|
+
type: integer
|
1671
|
+
minimum: 1
|
1672
|
+
maximum: 100
|
1673
|
+
default: 25
|
1674
|
+
example: 10
|
1675
|
+
surname:
|
1676
|
+
in: query
|
1677
|
+
name: surname
|
1678
|
+
description: |-
|
1679
|
+
Filter your results by the customer surname. It is also possible to filter by the surname from the shipping
|
1680
|
+
address.
|
1681
|
+
schema:
|
1682
|
+
type: string
|
1683
|
+
x-trim-at: 35
|
1684
|
+
example: Müller
|
1685
|
+
terminalId:
|
1686
|
+
in: query
|
1687
|
+
name: terminalId
|
1688
|
+
description: |-
|
1689
|
+
Filter your results by the terminalId.
|
1690
|
+
schema:
|
1691
|
+
type: string
|
1692
|
+
minLength: 8
|
1693
|
+
maxLength: 8
|
1694
|
+
example: "60023723"
|
1695
|
+
toCancelledAmount:
|
1696
|
+
in: query
|
1697
|
+
description: |-
|
1698
|
+
Maximum cancelled amount of the Checkouts that shall be included in the response. Amount in cents always
|
1699
|
+
having 2 decimals.
|
1700
|
+
name: toCancelledAmount
|
1701
|
+
schema:
|
1702
|
+
type: integer
|
1703
|
+
format: int64
|
1704
|
+
maximum: 999999999999
|
1705
|
+
minimum: 0
|
1706
|
+
example: 1000
|
1707
|
+
toChargebackAmount:
|
1708
|
+
in: query
|
1709
|
+
description: |-
|
1710
|
+
Maximum chargeback amount of the Checkouts that shall be included in the response. Amount in cents always
|
1711
|
+
having 2 decimals.
|
1712
|
+
name: toChargebackAmount
|
1713
|
+
schema:
|
1714
|
+
type: integer
|
1715
|
+
format: int64
|
1716
|
+
maximum: 999999999999
|
1717
|
+
minimum: 0
|
1718
|
+
example: 1000
|
1719
|
+
toCheckoutAmount:
|
1720
|
+
in: query
|
1721
|
+
description: |-
|
1722
|
+
Maximum monetary value of the Checkouts that shall be included in the response. Amount in cents always
|
1723
|
+
having 2 decimals.
|
1724
|
+
name: toCheckoutAmount
|
1725
|
+
schema:
|
1726
|
+
type: integer
|
1727
|
+
format: int64
|
1728
|
+
maximum: 999999999999
|
1729
|
+
minimum: 0
|
1730
|
+
example: 1000
|
1731
|
+
toCollectedAmount:
|
1732
|
+
in: query
|
1733
|
+
description: |-
|
1734
|
+
Maximum collected amount of the Checkouts that shall be included in the response. Amount in cents always
|
1735
|
+
having 2 decimals.
|
1736
|
+
name: toCollectedAmount
|
1737
|
+
schema:
|
1738
|
+
type: integer
|
1739
|
+
format: int64
|
1740
|
+
maximum: 999999999999
|
1741
|
+
minimum: 0
|
1742
|
+
example: 1000
|
1743
|
+
toDate:
|
1744
|
+
in: query
|
1745
|
+
name: toDate
|
1746
|
+
schema:
|
1747
|
+
type: string
|
1748
|
+
format: date-time
|
1749
|
+
description: |
|
1750
|
+
Date and time in RFC3339 format after which Items (Checkouts or Commerce-Cases, depending on the context) should be included in the request.
|
1751
|
+
Accepted formats are:
|
1752
|
+
* YYYY-MM-DD'T'HH:mm:ss'Z'
|
1753
|
+
* YYYY-MM-DD'T'HH:mm:ss+XX:XX
|
1754
|
+
* YYYY-MM-DD'T'HH:mm:ss-XX:XX
|
1755
|
+
* YYYY-MM-DD'T'HH:mm'Z'
|
1756
|
+
* YYYY-MM-DD'T'HH:mm+XX:XX
|
1757
|
+
* YYYY-MM-DD'T'HH:mm-XX:XX
|
1758
|
+
All other formats may be ignored by the system.
|
1759
|
+
examples:
|
1760
|
+
YYYY-MM-DDThh:mm:ssZ:
|
1761
|
+
value: 2022-11-10T13:34:23Z
|
1762
|
+
YYYY-MM-DDThh:mm:ss+XX:XX:
|
1763
|
+
value: 2022-11-10T14:34:23+01:00
|
1764
|
+
toOpenAmount:
|
1765
|
+
in: query
|
1766
|
+
description: |-
|
1767
|
+
Maximum open amount of the Checkouts that shall be included in the response. Amount in cents always having 2
|
1768
|
+
decimals.
|
1769
|
+
name: toOpenAmount
|
1770
|
+
schema:
|
1771
|
+
type: integer
|
1772
|
+
format: int64
|
1773
|
+
maximum: 999999999999
|
1774
|
+
minimum: 0
|
1775
|
+
example: 1000
|
1776
|
+
toRefundAmount:
|
1777
|
+
in: query
|
1778
|
+
description: |-
|
1779
|
+
Maximum refunded amount of the Checkouts that shall be included in the response. Amount in cents always having
|
1780
|
+
2 decimals.
|
1781
|
+
name: toRefundAmount
|
1782
|
+
schema:
|
1783
|
+
type: integer
|
1784
|
+
format: int64
|
1785
|
+
maximum: 999999999999
|
1786
|
+
minimum: 0
|
1787
|
+
example: 1000
|
1788
|
+
schemas:
|
1789
|
+
Address:
|
1790
|
+
type: object
|
1791
|
+
description: Object containing billing address details
|
1792
|
+
additionalProperties: false
|
1793
|
+
properties:
|
1794
|
+
additionalInfo:
|
1795
|
+
type: string
|
1796
|
+
description: Second line of street or additional address information such as apartments and suits
|
1797
|
+
example: Apartment 203
|
1798
|
+
maxLength: 50
|
1799
|
+
city:
|
1800
|
+
type: string
|
1801
|
+
description: City
|
1802
|
+
example: Kiel
|
1803
|
+
minLength: 2
|
1804
|
+
maxLength: 40
|
1805
|
+
countryCode:
|
1806
|
+
type: string
|
1807
|
+
pattern: ^[a-zA-Z]{2}$
|
1808
|
+
description: ISO 3166-1 alpha-2 country code
|
1809
|
+
example: DE
|
1810
|
+
maxLength: 2
|
1811
|
+
houseNumber:
|
1812
|
+
type: string
|
1813
|
+
description: House number
|
1814
|
+
example: 3
|
1815
|
+
maxLength: 10
|
1816
|
+
state:
|
1817
|
+
type: string
|
1818
|
+
pattern: ^[a-zA-Z0-9]{1,3}$
|
1819
|
+
description: State (ISO 3166-2 subdivisions), only if country=US, CA, CN, JP, MX, BR, AR, ID, TH, IN.
|
1820
|
+
example: BR
|
1821
|
+
minLength: 1
|
1822
|
+
maxLength: 3
|
1823
|
+
street:
|
1824
|
+
type: string
|
1825
|
+
description: Street name
|
1826
|
+
example: Coral Avenue
|
1827
|
+
maxLength: 50
|
1828
|
+
zip:
|
1829
|
+
type: string
|
1830
|
+
description: Zip code
|
1831
|
+
example: 12345
|
1832
|
+
minLength: 2
|
1833
|
+
maxLength: 10
|
1834
|
+
AddressPersonal:
|
1835
|
+
type: object
|
1836
|
+
description: Object containing personal or shipping address information.
|
1837
|
+
additionalProperties: false
|
1838
|
+
properties:
|
1839
|
+
additionalInfo:
|
1840
|
+
type: string
|
1841
|
+
description: Second line of street or additional address information such as apartments and suits
|
1842
|
+
example: Apartment 203
|
1843
|
+
maxLength: 50
|
1844
|
+
city:
|
1845
|
+
type: string
|
1846
|
+
description: City
|
1847
|
+
example: Kiel
|
1848
|
+
minLength: 2
|
1849
|
+
maxLength: 40
|
1850
|
+
countryCode:
|
1851
|
+
type: string
|
1852
|
+
description: ISO 3166-1 alpha-2 country code
|
1853
|
+
example: DE
|
1854
|
+
maxLength: 2
|
1855
|
+
houseNumber:
|
1856
|
+
type: string
|
1857
|
+
description: House number
|
1858
|
+
example: 3
|
1859
|
+
maxLength: 10
|
1860
|
+
state:
|
1861
|
+
type: string
|
1862
|
+
description: State (ISO 3166-2 subdivisions), only if country=US, CA, CN, JP, MX, BR, AR, ID, TH, IN.
|
1863
|
+
example: MX
|
1864
|
+
minLength: 1
|
1865
|
+
maxLength: 3
|
1866
|
+
street:
|
1867
|
+
type: string
|
1868
|
+
description: Street name
|
1869
|
+
example: Coral Avenue
|
1870
|
+
maxLength: 50
|
1871
|
+
zip:
|
1872
|
+
type: string
|
1873
|
+
description: Zip code
|
1874
|
+
example: 1234
|
1875
|
+
minLength: 2
|
1876
|
+
maxLength: 10
|
1877
|
+
name:
|
1878
|
+
$ref: '#/components/schemas/PersonalName'
|
1879
|
+
AllowedPaymentActions:
|
1880
|
+
type: string
|
1881
|
+
enum:
|
1882
|
+
- ORDER_MANAGEMENT
|
1883
|
+
- PAYMENT_EXECUTION
|
1884
|
+
description: |
|
1885
|
+
Indicates which payment endpoints can be used for the respective Checkout.
|
1886
|
+
The systems offers two alternatives to trigger a payment and consecutive events:
|
1887
|
+
OrderManagementCheckoutActions or the Payment Execution resource.
|
1888
|
+
Both alternatives can be used simultaneously but once one of the Payment Execution endpoints is used the
|
1889
|
+
Order Management endpoints can no longer be used for that Checkout since it is no longer possible to match
|
1890
|
+
payment events to items of the Checkout.
|
1891
|
+
AmountOfMoney:
|
1892
|
+
type: object
|
1893
|
+
description: Object containing amount and ISO currency code attributes
|
1894
|
+
additionalProperties: false
|
1895
|
+
properties:
|
1896
|
+
amount:
|
1897
|
+
type: integer
|
1898
|
+
description: Amount in cents and always having 2 decimals
|
1899
|
+
format: int64
|
1900
|
+
maximum: 999999999999
|
1901
|
+
minimum: 0
|
1902
|
+
example: 1000
|
1903
|
+
currencyCode:
|
1904
|
+
type: string
|
1905
|
+
description: Three-letter ISO currency code representing the currency for the amount
|
1906
|
+
minLength: 3
|
1907
|
+
maxLength: 3
|
1908
|
+
example: EUR
|
1909
|
+
required:
|
1910
|
+
- amount
|
1911
|
+
- currencyCode
|
1912
|
+
ApplePaymentDataTokenInformation:
|
1913
|
+
type: object
|
1914
|
+
description: |-
|
1915
|
+
Additional information about the Apple payment data token. This information are needed for checking the validity
|
1916
|
+
of the payment data token before decryption.
|
1917
|
+
properties:
|
1918
|
+
version:
|
1919
|
+
type: string
|
1920
|
+
description: |-
|
1921
|
+
Version information about the payment token. Currently only EC_v1 for ECC-encrypted data is supported.
|
1922
|
+
enum:
|
1923
|
+
- EC_V1
|
1924
|
+
example: EC_V1
|
1925
|
+
signature:
|
1926
|
+
type: string
|
1927
|
+
description: |-
|
1928
|
+
Detached PKCS #7 signature, Base64 encoded as string. Signature of the payment and header data. The
|
1929
|
+
signature includes the signing certificate, its intermediate CA certificate, and information about the
|
1930
|
+
signing algorithm.
|
1931
|
+
header:
|
1932
|
+
$ref: '#/components/schemas/ApplePaymentDataTokenHeaderInformation'
|
1933
|
+
required:
|
1934
|
+
- version
|
1935
|
+
- signature
|
1936
|
+
- header
|
1937
|
+
ApplePaymentDataTokenHeaderInformation:
|
1938
|
+
type: object
|
1939
|
+
description: Additional information about the Apple payment data token header.
|
1940
|
+
properties:
|
1941
|
+
transactionId:
|
1942
|
+
type: string
|
1943
|
+
description: A hexadecimal Transaction identifier identifier as a string.
|
1944
|
+
applicationData:
|
1945
|
+
type: string
|
1946
|
+
description: |-
|
1947
|
+
SHA–256 hash, hex encoded as a string. Hash of the applicationData property of the original PKPaymentRequest
|
1948
|
+
object.
|
1949
|
+
required:
|
1950
|
+
- transactionId
|
1951
|
+
- applicationData
|
1952
|
+
APIError:
|
1953
|
+
description: Contains detailed information on one single error.
|
1954
|
+
type: object
|
1955
|
+
additionalProperties: false
|
1956
|
+
properties:
|
1957
|
+
errorCode:
|
1958
|
+
type: string
|
1959
|
+
description: Error code
|
1960
|
+
example: 50001130
|
1961
|
+
category:
|
1962
|
+
type: string
|
1963
|
+
description: |-
|
1964
|
+
Category the error belongs to. The category should give an indication of the type of error you are dealing
|
1965
|
+
with. Possible values:
|
1966
|
+
* DIRECT_PLATFORM_ERROR - indicating that a functional error has occurred in the platform.
|
1967
|
+
* PAYMENT_PLATFORM_ERROR - indicating that a functional error has occurred in the payment platform.
|
1968
|
+
* IO_ERROR - indicating that a technical error has occurred within the payment platform or between the
|
1969
|
+
payment platform and third party systems.
|
1970
|
+
* COMMERCE_PLATFORM_ERROR - indicating an error originating from the Commerce Platform.
|
1971
|
+
* COMMERCE_PORTAL_BACKEND_ERROR - indicating an error originating from the Commerce Portal Backend.
|
1972
|
+
example: PAYMENT_PLATFORM_ERROR
|
1973
|
+
httpStatusCode:
|
1974
|
+
type: integer
|
1975
|
+
description: HTTP status code for this error that can be used to determine the type of error
|
1976
|
+
format: int32
|
1977
|
+
example: 404
|
1978
|
+
id:
|
1979
|
+
type: string
|
1980
|
+
description: ID of the error. This is a short human-readable message that briefly describes the error.
|
1981
|
+
example: general-error-technical-fault-internal
|
1982
|
+
message:
|
1983
|
+
type: string
|
1984
|
+
description: |-
|
1985
|
+
Human-readable error message that is not meant to be relayed to customer as it might tip off people who are
|
1986
|
+
trying to commit fraud
|
1987
|
+
example: Authorisation declined
|
1988
|
+
propertyName:
|
1989
|
+
type: string
|
1990
|
+
description: |-
|
1991
|
+
Returned only if the error relates to a value that was missing or incorrect.
|
1992
|
+
|
1993
|
+
Contains a location path to the value as a JSonata query.
|
1994
|
+
|
1995
|
+
Some common examples:
|
1996
|
+
* a.b selects the value of property b of root property a,
|
1997
|
+
* a[1] selects the first element of the array in root property a,
|
1998
|
+
* a[b='some value'] selects all elements of the array in root property a that have a property b with value
|
1999
|
+
'some value'.
|
2000
|
+
example: paymentId
|
2001
|
+
required:
|
2002
|
+
- errorCode
|
2003
|
+
AuthorizationMode:
|
2004
|
+
type: string
|
2005
|
+
x-enum-to-string: false
|
2006
|
+
enum:
|
2007
|
+
- PRE_AUTHORIZATION
|
2008
|
+
- SALE
|
2009
|
+
description: |-
|
2010
|
+
Determines the type of the authorization that will be used. Allowed values:
|
2011
|
+
* PRE_AUTHORIZATION - The payment creation results in a pre-authorization that is ready for Capture. Pre-
|
2012
|
+
authortizations can be reversed and can be captured within 30 days. The capture amount can be lower than the
|
2013
|
+
authorized amount.
|
2014
|
+
* SALE - The payment creation results in an authorization that is already captured at the moment of approval.
|
2015
|
+
|
2016
|
+
If the parameter is not provided in the request, the default value will be PRE_AUTHORIZATION
|
2017
|
+
BankAccountInformation:
|
2018
|
+
type: object
|
2019
|
+
description: Object containing information about the end customer's bank account.
|
2020
|
+
properties:
|
2021
|
+
iban:
|
2022
|
+
maxLength: 35
|
2023
|
+
type: string
|
2024
|
+
description: |-
|
2025
|
+
IBAN of the end customer's bank account.
|
2026
|
+
The IBAN is the International Bank Account Number. It is an internationally agreed format for the BBAN and
|
2027
|
+
includes the ISO country code and two check digits.
|
2028
|
+
example: DE02370502990000684712
|
2029
|
+
bic:
|
2030
|
+
maxLength: 11
|
2031
|
+
type: string
|
2032
|
+
description: Bank Identification Code
|
2033
|
+
example: COLSDE33XXX
|
2034
|
+
accountHolder:
|
2035
|
+
maxLength: 50
|
2036
|
+
type: string
|
2037
|
+
description: |-
|
2038
|
+
Account holder of the bank account with the given IBAN.
|
2039
|
+
Does not necessarily have to be the end customer (e.g. joint accounts).
|
2040
|
+
example: Max Mustermann
|
2041
|
+
required:
|
2042
|
+
- accountHolder
|
2043
|
+
- iban
|
2044
|
+
BankPayoutMethodSpecificInput:
|
2045
|
+
type: object
|
2046
|
+
description: Object containing the specific input details for SEPA tranfers
|
2047
|
+
properties:
|
2048
|
+
paymentProductId:
|
2049
|
+
type: integer
|
2050
|
+
format: int32
|
2051
|
+
maximum: 99999
|
2052
|
+
minimum: 0
|
2053
|
+
description: |-
|
2054
|
+
Payment product identifier - please check product documentation for a full overview of possible values.
|
2055
|
+
example: 772
|
2056
|
+
paymentProduct772SpecificInput:
|
2057
|
+
$ref: '#/components/schemas/SepaTransferPaymentProduct772SpecificInput'
|
2058
|
+
CancelItem:
|
2059
|
+
type: object
|
2060
|
+
properties:
|
2061
|
+
id:
|
2062
|
+
type: string
|
2063
|
+
format: UUID
|
2064
|
+
description: Id of the item to cancel.
|
2065
|
+
example: "4f0c512e-f12c-11ec-8ea0-0242ac120002"
|
2066
|
+
quantity:
|
2067
|
+
type: integer
|
2068
|
+
description: |-
|
2069
|
+
Quantity of the units being cancelled, should be greater than zero
|
2070
|
+
Note: Must not be all spaces or all zeros
|
2071
|
+
format: int64
|
2072
|
+
maximum: 9999
|
2073
|
+
minimum: 1
|
2074
|
+
example: 1
|
2075
|
+
required:
|
2076
|
+
- id
|
2077
|
+
- quantity
|
2078
|
+
CancellationReason:
|
2079
|
+
type: string
|
2080
|
+
description: |-
|
2081
|
+
Reason why an order was cancelled. Possible values:
|
2082
|
+
* CONSUMER_REQUEST - The consumer requested a cancellation of the Order
|
2083
|
+
* UNDELIVERABLE - The merchant cannot fulfill the Order
|
2084
|
+
* DUPLICATE - The Order was created twice accidentally
|
2085
|
+
* FRAUDULENT- Consumer turned out to be a fraudster
|
2086
|
+
* ORDER_SHIPPED_IN_FULL - The merchant shipped everything and wants to cancel the remaining authorized amount of
|
2087
|
+
the Order
|
2088
|
+
* AUTOMATED_SHIPMENT_FAILED - A technical error was thrown during an automated shipment API call rendering the
|
2089
|
+
Order impossible to complete
|
2090
|
+
|
2091
|
+
Mandatory for PAYONE Buy Now, Pay Later (BNPL):
|
2092
|
+
* 3390 - PAYONE Secured Invoice
|
2093
|
+
* 3391 - PAYONE Secured Installment
|
2094
|
+
* 3392 - PAYONE Secured Direct Debit
|
2095
|
+
enum:
|
2096
|
+
- CONSUMER_REQUEST
|
2097
|
+
- UNDELIVERABLE
|
2098
|
+
- DUPLICATE
|
2099
|
+
- FRAUDULENT
|
2100
|
+
- ORDER_SHIPPED_IN_FULL
|
2101
|
+
- AUTOMATED_SHIPMENT_FAILED
|
2102
|
+
example: CONSUMER_REQUEST
|
2103
|
+
CancelPaymentRequest:
|
2104
|
+
type: object
|
2105
|
+
properties:
|
2106
|
+
cancellationReason:
|
2107
|
+
$ref: '#/components/schemas/CancellationReason'
|
2108
|
+
CancelPaymentResponse:
|
2109
|
+
type: object
|
2110
|
+
additionalProperties: false
|
2111
|
+
properties:
|
2112
|
+
payment:
|
2113
|
+
$ref: '#/components/schemas/PaymentResponse'
|
2114
|
+
CancelRequest:
|
2115
|
+
type: object
|
2116
|
+
description: |
|
2117
|
+
Request to mark items as of the respective Checkout as cancelled and to automatically reverse the associated
|
2118
|
+
payment.
|
2119
|
+
A Cancel can be created for a full or the partial ShoppingCart of the Checkout.
|
2120
|
+
The platform will automatically calculate the respective amount to trigger the Cancel. For a partial Cancel a
|
2121
|
+
list of items must be provided.
|
2122
|
+
|
2123
|
+
The cancellationReason is mandatory for BNPL payment methods (paymentProductId 3390, 3391 and 3392).
|
2124
|
+
For other payment methods the cancellationReason is not mandatory but can be used for reporting and
|
2125
|
+
reconciliation purposes.
|
2126
|
+
properties:
|
2127
|
+
cancelType:
|
2128
|
+
$ref: '#/components/schemas/CancelType'
|
2129
|
+
cancellationReason:
|
2130
|
+
$ref: '#/components/schemas/CancellationReason'
|
2131
|
+
cancelItems:
|
2132
|
+
type: array
|
2133
|
+
items:
|
2134
|
+
$ref: '#/components/schemas/CancelItem'
|
2135
|
+
CancelResponse:
|
2136
|
+
type: object
|
2137
|
+
properties:
|
2138
|
+
cancelPaymentResponse:
|
2139
|
+
$ref: '#/components/schemas/CancelPaymentResponse'
|
2140
|
+
shoppingCart:
|
2141
|
+
$ref: '#/components/schemas/ShoppingCartResult'
|
2142
|
+
CancelType:
|
2143
|
+
type: string
|
2144
|
+
description: |
|
2145
|
+
The cancelType refers to the ShoppingCart items of the Checkout.
|
2146
|
+
cancelType = FULL should be provided if all items should be marked as cancelled and the payment for the entire
|
2147
|
+
ShoppingCart should be reversed.
|
2148
|
+
cancelType = PARTIAL should be provided if only certain items should be marked as cancelled and the Cancel
|
2149
|
+
should not be made for the entire ShoppingCart. For this type the list of items has to be provided.
|
2150
|
+
Please note that a reversal for a partial payment will not reverse the respective amount from the authorization
|
2151
|
+
but only reduces the openAmount that is ready for collecting.
|
2152
|
+
|
2153
|
+
Following conditions apply to the Cancel request:
|
2154
|
+
* items must be in status ORDERED
|
2155
|
+
* there was no Capture, Refund or Cancel triggered over the Payment Execution resource
|
2156
|
+
* for the cancelType FULL no items are provided in the request
|
2157
|
+
Note: If a DISCOUNT productType is among the ShoppingCart items, only cancelType FULL is possible.
|
2158
|
+
enum:
|
2159
|
+
- FULL
|
2160
|
+
- PARTIAL
|
2161
|
+
CaptureOutput:
|
2162
|
+
type: object
|
2163
|
+
description: |
|
2164
|
+
Object containing Capture details.
|
2165
|
+
additionalProperties: false
|
2166
|
+
properties:
|
2167
|
+
amountOfMoney:
|
2168
|
+
$ref: '#/components/schemas/AmountOfMoney'
|
2169
|
+
merchantParameters:
|
2170
|
+
type: string
|
2171
|
+
description: |-
|
2172
|
+
It allows you to store additional parameters for the transaction in JSON format.
|
2173
|
+
This field must not contain any personal data.
|
2174
|
+
maxLength: 1000
|
2175
|
+
example: "{'SessionID':'126548354','ShopperID':'7354131'}"
|
2176
|
+
references:
|
2177
|
+
$ref: '#/components/schemas/PaymentReferences'
|
2178
|
+
paymentMethod:
|
2179
|
+
type: string
|
2180
|
+
description: Payment method identifier used by our payment engine.
|
2181
|
+
paymentInstructions:
|
2182
|
+
$ref: '#/components/schemas/PaymentInstructions'
|
2183
|
+
CapturePaymentRequest:
|
2184
|
+
type: object
|
2185
|
+
additionalProperties: false
|
2186
|
+
description: |
|
2187
|
+
If the shopping cart is specified, a Capture is made with the amount of the shopping cart for the items that are
|
2188
|
+
specified.
|
2189
|
+
properties:
|
2190
|
+
amount:
|
2191
|
+
type: integer
|
2192
|
+
format: int64
|
2193
|
+
maximum: 999999999999
|
2194
|
+
minimum: 1
|
2195
|
+
description: |-
|
2196
|
+
Here you can specify the amount that you want to capture (specified in cents, where single digit currencies
|
2197
|
+
are presumed to have 2 digits). The amount can be lower than the amount that was authorized, but not higher.
|
2198
|
+
If left empty, the full amount will be captured and the request will be final.
|
2199
|
+
If the full amount is captured, the request will also be final.
|
2200
|
+
isFinal:
|
2201
|
+
type: boolean
|
2202
|
+
default: false
|
2203
|
+
description: |
|
2204
|
+
This property indicates whether this will be the final operation.
|
2205
|
+
If the full amount should not captured but the property is set to true, the remaining amount will automatically be cancelled.
|
2206
|
+
cancellationReason:
|
2207
|
+
$ref: '#/components/schemas/CancellationReason'
|
2208
|
+
references:
|
2209
|
+
$ref: '#/components/schemas/PaymentReferences'
|
2210
|
+
delivery:
|
2211
|
+
$ref: '#/components/schemas/DeliveryInformation'
|
2212
|
+
CapturePaymentResponse:
|
2213
|
+
type: object
|
2214
|
+
additionalProperties: false
|
2215
|
+
properties:
|
2216
|
+
captureOutput:
|
2217
|
+
$ref: '#/components/schemas/CaptureOutput'
|
2218
|
+
status:
|
2219
|
+
$ref: '#/components/schemas/StatusValue'
|
2220
|
+
statusOutput:
|
2221
|
+
$ref: '#/components/schemas/PaymentStatusOutput'
|
2222
|
+
id:
|
2223
|
+
type: string
|
2224
|
+
description: Unique payment transaction identifier of the payment gateway.
|
2225
|
+
example: '3066019730_1'
|
2226
|
+
CardFraudResults:
|
2227
|
+
type: object
|
2228
|
+
description: |
|
2229
|
+
Fraud results contained in the CardFraudResults object.
|
2230
|
+
additionalProperties: false
|
2231
|
+
properties:
|
2232
|
+
avsResult:
|
2233
|
+
description: |2-
|
2234
|
+
Result of the Address Verification Service checks. Possible values are:
|
2235
|
+
* A - Address (Street) matches, Zip does not
|
2236
|
+
* B - Street address match for international transactions—Postal code not verified due to incompatible
|
2237
|
+
formats
|
2238
|
+
* C - Street address and postal code not verified for international transaction due to incompatible formats
|
2239
|
+
* D - Street address and postal code match for international transaction, cardholder name is incorrect
|
2240
|
+
* E - AVS error
|
2241
|
+
* F - Address does match and five digit ZIP code does match (UK only)
|
2242
|
+
* G - Address information is unavailable; international transaction; non-AVS participant
|
2243
|
+
* H - Billing address and postal code match, cardholder name is incorrect (Amex)
|
2244
|
+
* I - Address information not verified for international transaction
|
2245
|
+
* K - Cardholder name matches (Amex)
|
2246
|
+
* L - Cardholder name and postal code match (Amex)
|
2247
|
+
* M - Cardholder name, street address, and postal code match for international transaction
|
2248
|
+
* N - No Match on Address (Street) or Zip
|
2249
|
+
* O - Cardholder name and address match (Amex)
|
2250
|
+
* P - Postal codes match for international transaction—Street address not verified due to incompatible formats
|
2251
|
+
* Q - Billing address matches, cardholder is incorrect (Amex)
|
2252
|
+
* R - Retry, System unavailable or Timed out
|
2253
|
+
* S - Service not supported by issuer
|
2254
|
+
* U - Address information is unavailable
|
2255
|
+
* W - 9 digit Zip matches, Address (Street) does not
|
2256
|
+
* X - Exact AVS Match
|
2257
|
+
* Y - Address (Street) and 5 digit Zip match
|
2258
|
+
* Z - 5 digit Zip matches, Address (Street) does not
|
2259
|
+
* 0 - No service available
|
2260
|
+
example: A
|
2261
|
+
type: string
|
2262
|
+
CardPaymentDetails:
|
2263
|
+
type: object
|
2264
|
+
description: Information for card payments realized at a POS.
|
2265
|
+
properties:
|
2266
|
+
maskedCardNumber:
|
2267
|
+
type: string
|
2268
|
+
description: Reference to the card of the transaction.
|
2269
|
+
maxLength: 40
|
2270
|
+
example: 672559XXXXXX1108
|
2271
|
+
paymentProcessingToken:
|
2272
|
+
type: string
|
2273
|
+
description: ID of the token. This property is populated when the payment was done with a token.
|
2274
|
+
example: 0ca037cc-9079-4df7-8f6f-f2a3443ee521
|
2275
|
+
maxLength: 40
|
2276
|
+
reportingToken:
|
2277
|
+
type: string
|
2278
|
+
description: Token to identify the card in the reporting.
|
2279
|
+
example: 12a037cc-833d-8b45-8f6f-11c34171f4e1
|
2280
|
+
maxLength: 40
|
2281
|
+
cardAuthorizationId:
|
2282
|
+
type: string
|
2283
|
+
description: |
|
2284
|
+
Identifier for a successful authorization, reversal or refund.
|
2285
|
+
Usually provided by the issuer system. Only provided for card payments.
|
2286
|
+
example: 260042
|
2287
|
+
maxLength: 8
|
2288
|
+
CardInfo:
|
2289
|
+
type: object
|
2290
|
+
description: |
|
2291
|
+
Object containing additional non PCI DSS relevant card information.
|
2292
|
+
used instead of card (missing fields: cardNumber, expiryDate, cvv)
|
2293
|
+
properties:
|
2294
|
+
cardholderName:
|
2295
|
+
type: string
|
2296
|
+
description: The card holder's name on the card.
|
2297
|
+
x-trim-at: 50
|
2298
|
+
CartItemOrderStatus:
|
2299
|
+
type: object
|
2300
|
+
readOnly: true
|
2301
|
+
description: Detailed information regarding an occurred payment event.
|
2302
|
+
properties:
|
2303
|
+
cartItemStatus:
|
2304
|
+
$ref: '#/components/schemas/CartItemStatus'
|
2305
|
+
quantity:
|
2306
|
+
type: integer
|
2307
|
+
description: |-
|
2308
|
+
Amount of units for which this status is applicable, should be greater than zero
|
2309
|
+
format: int64
|
2310
|
+
maximum: 9999
|
2311
|
+
minimum: 0
|
2312
|
+
example: 1
|
2313
|
+
CardPaymentMethodSpecificOutput:
|
2314
|
+
type: object
|
2315
|
+
description: |
|
2316
|
+
Object containing the card payment method details.
|
2317
|
+
additionalProperties: false
|
2318
|
+
properties:
|
2319
|
+
paymentProductId:
|
2320
|
+
type: integer
|
2321
|
+
format: int32
|
2322
|
+
maximum: 99999
|
2323
|
+
minimum: 0
|
2324
|
+
description: |-
|
2325
|
+
Payment product identifier - please check product documentation for a full overview of possible values.
|
2326
|
+
example: 840
|
2327
|
+
authorisationCode:
|
2328
|
+
description: Card Authorization code as returned by the acquirer
|
2329
|
+
type: string
|
2330
|
+
fraudResults:
|
2331
|
+
$ref: '#/components/schemas/CardFraudResults'
|
2332
|
+
threeDSecureResults:
|
2333
|
+
$ref: '#/components/schemas/ThreeDSecureResults'
|
2334
|
+
CardPaymentMethodSpecificInput:
|
2335
|
+
type: object
|
2336
|
+
description: |
|
2337
|
+
Object containing the specific input details for card payments.
|
2338
|
+
additionalProperties: false
|
2339
|
+
properties:
|
2340
|
+
authorizationMode:
|
2341
|
+
$ref: '#/components/schemas/AuthorizationMode'
|
2342
|
+
recurring:
|
2343
|
+
$ref: '#/components/schemas/CardRecurrenceDetails'
|
2344
|
+
paymentProcessingToken:
|
2345
|
+
type: string
|
2346
|
+
description: ID of the token to use to create the payment.
|
2347
|
+
example: 0ca037cc-9079-4df7-8f6f-f2a3443ee521
|
2348
|
+
maxLength: 40
|
2349
|
+
reportingToken:
|
2350
|
+
type: string
|
2351
|
+
readOnly: true
|
2352
|
+
description: Token to identify the card in the reporting.
|
2353
|
+
example: 12a037cc-833d-8b45-8f6f-11c34171f4e1
|
2354
|
+
maxLength: 40
|
2355
|
+
transactionChannel:
|
2356
|
+
$ref: '#/components/schemas/TransactionChannel'
|
2357
|
+
unscheduledCardOnFileRequestor:
|
2358
|
+
$ref: '#/components/schemas/UnscheduledCardOnFileRequestor'
|
2359
|
+
unscheduledCardOnFileSequenceIndicator:
|
2360
|
+
$ref: '#/components/schemas/UnscheduledCardOnFileSequenceIndicator'
|
2361
|
+
paymentProductId:
|
2362
|
+
type: integer
|
2363
|
+
format: int32
|
2364
|
+
maximum: 99999
|
2365
|
+
minimum: 0
|
2366
|
+
description: |-
|
2367
|
+
Payment product identifier - please check product documentation for a full overview of possible values.
|
2368
|
+
example: 840
|
2369
|
+
card:
|
2370
|
+
$ref: '#/components/schemas/CardInfo'
|
2371
|
+
returnUrl:
|
2372
|
+
type: string
|
2373
|
+
description: |-
|
2374
|
+
The URL that the customer is redirect to after the payment flow has finished. You can add any number of key
|
2375
|
+
value pairs in the query string that, for instance help you to identify the customer when they return to
|
2376
|
+
your site. Please note that we will also append some additional key value pairs that will also help you with
|
2377
|
+
this identification process.
|
2378
|
+
Note: The provided URL should be absolute and contain the protocol to use, e.g. http:// or https://. For use
|
2379
|
+
on mobile devices a custom protocol can be used in the form of protocol://. This protocol must be registered
|
2380
|
+
on the device first.
|
2381
|
+
URLs without a protocol will be rejected.
|
2382
|
+
maxLength: 200
|
2383
|
+
example: https://secure.ogone.com/ncol/test/displayparams.asp
|
2384
|
+
cardOnFileRecurringFrequency:
|
2385
|
+
type: string
|
2386
|
+
description: |-
|
2387
|
+
Period of payment occurrence for recurring and installment payments. Allowed values:
|
2388
|
+
* Yearly
|
2389
|
+
* Quarterly
|
2390
|
+
* Monthly
|
2391
|
+
|
2392
|
+
* Weekly
|
2393
|
+
* Daily
|
2394
|
+
Supported soon
|
2395
|
+
enum:
|
2396
|
+
- Yearly
|
2397
|
+
- Quarterly
|
2398
|
+
- Monthly
|
2399
|
+
- Weekly
|
2400
|
+
- Daily
|
2401
|
+
cardOnFileRecurringExpiration:
|
2402
|
+
maxLength: 8
|
2403
|
+
pattern: ^((19|20|21)\d{6})?$
|
2404
|
+
type: string
|
2405
|
+
description: |-
|
2406
|
+
The end date of the last scheduled payment in a series of transactions.
|
2407
|
+
Format YYYYMMDD Supported soon
|
2408
|
+
CardRecurrenceDetails:
|
2409
|
+
type: object
|
2410
|
+
description: Object containing data related to recurring.
|
2411
|
+
properties:
|
2412
|
+
recurringPaymentSequenceIndicator:
|
2413
|
+
type: string
|
2414
|
+
description: |-
|
2415
|
+
* first = This transaction is the first of a series of recurring transactions
|
2416
|
+
* recurring = This transaction is a subsequent transaction in a series of recurring transactions
|
2417
|
+
|
2418
|
+
Note: For any first of a recurring the system will automatically create a token as you will need to use a
|
2419
|
+
token for any subsequent recurring transactions. In case a token already exists this is indicated in the
|
2420
|
+
response with a value of False for the isNewToken property in the response.
|
2421
|
+
CartItemInput:
|
2422
|
+
type: object
|
2423
|
+
description: This object contains information of all items in the cart.
|
2424
|
+
If a cart item is provided, the productPrice and quantity is required.
|
2425
|
+
additionalProperties: false
|
2426
|
+
properties:
|
2427
|
+
invoiceData:
|
2428
|
+
$ref: '#/components/schemas/CartItemInvoiceData'
|
2429
|
+
orderLineDetails:
|
2430
|
+
$ref: '#/components/schemas/OrderLineDetailsInput'
|
2431
|
+
CartItemPatch:
|
2432
|
+
type: object
|
2433
|
+
description: This object contains information of all items in the cart.
|
2434
|
+
If a cart item is provided, the productPrice and quantity is required.
|
2435
|
+
additionalProperties: false
|
2436
|
+
properties:
|
2437
|
+
invoiceData:
|
2438
|
+
$ref: '#/components/schemas/CartItemInvoiceData'
|
2439
|
+
orderLineDetails:
|
2440
|
+
$ref: '#/components/schemas/OrderLineDetailsPatch'
|
2441
|
+
CartItemResult:
|
2442
|
+
type: object
|
2443
|
+
description: This object contains information of all items in the cart.
|
2444
|
+
If a cart item is provided, the productPrice and quantity is required.
|
2445
|
+
additionalProperties: false
|
2446
|
+
properties:
|
2447
|
+
invoiceData:
|
2448
|
+
$ref: '#/components/schemas/CartItemInvoiceData'
|
2449
|
+
orderLineDetails:
|
2450
|
+
$ref: '#/components/schemas/OrderLineDetailsResult'
|
2451
|
+
CheckoutResponse:
|
2452
|
+
type: object
|
2453
|
+
xml:
|
2454
|
+
name: 'checkoutResponse'
|
2455
|
+
description: |
|
2456
|
+
The Checkout corresponds to the order of the WL API. We do not take additionalInput from the WL API. We have no
|
2457
|
+
shipping and use deliveryAddress instead of address.
|
2458
|
+
properties:
|
2459
|
+
commerceCaseId:
|
2460
|
+
description: reference to the Commerce Case.
|
2461
|
+
type: string
|
2462
|
+
format: UUID
|
2463
|
+
example: "4f0c512e-f12c-11ec-8ea0-0242ac120002"
|
2464
|
+
checkoutId:
|
2465
|
+
description: reference to the Checkout.
|
2466
|
+
type: string
|
2467
|
+
format: UUID
|
2468
|
+
example: "4f0c512e-f12c-11ec-8ea0-0242ac120002"
|
2469
|
+
merchantCustomerId:
|
2470
|
+
type: string
|
2471
|
+
description: Unique identifier for the customer.
|
2472
|
+
maxLength: 20
|
2473
|
+
example: "1234"
|
2474
|
+
amountOfMoney:
|
2475
|
+
$ref: '#/components/schemas/AmountOfMoney'
|
2476
|
+
references:
|
2477
|
+
$ref: '#/components/schemas/CheckoutReferences'
|
2478
|
+
shipping:
|
2479
|
+
$ref: '#/components/schemas/Shipping'
|
2480
|
+
shoppingCart:
|
2481
|
+
$ref: '#/components/schemas/ShoppingCartResult'
|
2482
|
+
paymentExecutions:
|
2483
|
+
type: array
|
2484
|
+
items:
|
2485
|
+
$ref: '#/components/schemas/PaymentExecution'
|
2486
|
+
checkoutStatus:
|
2487
|
+
$ref: '#/components/schemas/StatusCheckout'
|
2488
|
+
statusOutput:
|
2489
|
+
$ref: '#/components/schemas/StatusOutput'
|
2490
|
+
paymentInformation:
|
2491
|
+
type: array
|
2492
|
+
items:
|
2493
|
+
$ref: '#/components/schemas/PaymentInformationResponse'
|
2494
|
+
creationDateTime:
|
2495
|
+
$ref: '#/components/schemas/CreationDateTime'
|
2496
|
+
allowedPaymentActions:
|
2497
|
+
type: array
|
2498
|
+
items:
|
2499
|
+
$ref: '#/components/schemas/AllowedPaymentActions'
|
2500
|
+
CompleteFinancingPaymentMethodSpecificInput:
|
2501
|
+
type: object
|
2502
|
+
description: |
|
2503
|
+
To complete the Payment the completeFinancingMethodSpecificInput has to be provided.
|
2504
|
+
At the moment it is only available for PAYONE Secured Installment (paymentProductId 3391).
|
2505
|
+
properties:
|
2506
|
+
paymentProductId:
|
2507
|
+
maximum: 99999
|
2508
|
+
minimum: 0
|
2509
|
+
type: integer
|
2510
|
+
description: |-
|
2511
|
+
Payment product identifier. Currently supported payment methods:
|
2512
|
+
* 3391 - PAYONE Secured Installment
|
2513
|
+
format: int32
|
2514
|
+
example: 3391
|
2515
|
+
requiresApproval:
|
2516
|
+
type: boolean
|
2517
|
+
description: |-
|
2518
|
+
* true = the payment requires approval before the funds will be captured using the Approve payment or
|
2519
|
+
Capture payment API
|
2520
|
+
* false = the payment does not require approval, and the funds will be captured automatically
|
2521
|
+
|
2522
|
+
If the parameter is not provided in the request, the default value will be true
|
2523
|
+
paymentProduct3391SpecificInput:
|
2524
|
+
$ref: '#/components/schemas/PaymentProduct3391SpecificInput'
|
2525
|
+
CompleteOrderRequest:
|
2526
|
+
type: object
|
2527
|
+
description: |-
|
2528
|
+
The Complete-Order request is the last step to finalize the initial Order. It requires the completePaymentMethodSpecificInput.
|
2529
|
+
The previously provided data from the Commerce Case, Checkout and Order will automatically be loaded and used for the completion of the Order.
|
2530
|
+
properties:
|
2531
|
+
completePaymentMethodSpecificInput:
|
2532
|
+
$ref: '#/components/schemas/CompletePaymentMethodSpecificInput'
|
2533
|
+
CompletePaymentMethodSpecificInput:
|
2534
|
+
type: object
|
2535
|
+
description: |
|
2536
|
+
To complete the Order the completePaymentMethodSpecificInput has to be provided, containing the selected installmentOptionId as well as the the bankAccountInformation of the customer.
|
2537
|
+
properties:
|
2538
|
+
paymentProduct3391SpecificInput:
|
2539
|
+
$ref: '#/components/schemas/PaymentProduct3391SpecificInput'
|
2540
|
+
CompletePaymentRequest:
|
2541
|
+
type: object
|
2542
|
+
description: |-
|
2543
|
+
The Complete request is the last step to finalize the initially created Payment.
|
2544
|
+
It requires the completeFinancingPaymentMethodSpecificInput.
|
2545
|
+
The data for the order object should not differ from the previously provided information in Commerce Case, Checkout and Payment, but will not be validated nor automatically loaded from the Commerce Platform.
|
2546
|
+
properties:
|
2547
|
+
financingPaymentMethodSpecificInput:
|
2548
|
+
$ref: '#/components/schemas/CompleteFinancingPaymentMethodSpecificInput'
|
2549
|
+
order:
|
2550
|
+
$ref: '#/components/schemas/Order'
|
2551
|
+
device:
|
2552
|
+
$ref: '#/components/schemas/CustomerDevice'
|
2553
|
+
CompletePaymentResponse:
|
2554
|
+
type: object
|
2555
|
+
properties:
|
2556
|
+
creationOutput:
|
2557
|
+
$ref: '#/components/schemas/PaymentCreationOutput'
|
2558
|
+
merchantAction:
|
2559
|
+
$ref: '#/components/schemas/MerchantAction'
|
2560
|
+
payment:
|
2561
|
+
$ref: '#/components/schemas/PaymentResponse'
|
2562
|
+
CreateCheckoutRequest:
|
2563
|
+
type: object
|
2564
|
+
description: |
|
2565
|
+
Request to create a Checkout for a Commerce Case.
|
2566
|
+
The payment for the Checkout can be directly executed if autoExecuteOrder = true.
|
2567
|
+
In this case, the paymentMethodSpecificInput must be provided and only a full order is possible.
|
2568
|
+
|
2569
|
+
If no amountOfMoney is provided, the platform will calculate the respective Checkout amount based on the
|
2570
|
+
cartItem productPrice and quantity.
|
2571
|
+
|
2572
|
+
In case of a payment error, the payment can be retried by providing the respective commerceCaseId and checkoutId
|
2573
|
+
to the the Order or Payment Execution endpoint.
|
2574
|
+
properties:
|
2575
|
+
amountOfMoney:
|
2576
|
+
$ref: '#/components/schemas/AmountOfMoney'
|
2577
|
+
references:
|
2578
|
+
$ref: '#/components/schemas/CheckoutReferences'
|
2579
|
+
shipping:
|
2580
|
+
$ref: '#/components/schemas/Shipping'
|
2581
|
+
shoppingCart:
|
2582
|
+
$ref: '#/components/schemas/ShoppingCartInput'
|
2583
|
+
orderRequest:
|
2584
|
+
$ref: '#/components/schemas/OrderRequest'
|
2585
|
+
creationDateTime:
|
2586
|
+
$ref: '#/components/schemas/CreationDateTime'
|
2587
|
+
autoExecuteOrder:
|
2588
|
+
description: |
|
2589
|
+
Set this flag to directly execute a payment when creating a Commerce Case or Checkout.
|
2590
|
+
If the value for autoExecuteOrder is set to true, the paymentMethodSpecificInput for the order is mandatory
|
2591
|
+
and has to be provided. The autoExecuteOrder can only be used for orderType = full.
|
2592
|
+
If no shoppingCart information has been provided, a Payment Execution will be created instead of an Order. As a consequence, only Payment Execution endpoints can be used.
|
2593
|
+
type: boolean
|
2594
|
+
default: false
|
2595
|
+
CreateCheckoutResponse:
|
2596
|
+
type: object
|
2597
|
+
description: Object containing the reference of the Checkout for following requests.
|
2598
|
+
properties:
|
2599
|
+
checkoutId:
|
2600
|
+
description: |-
|
2601
|
+
Reference to the Checkout. Can be used for following requests to get and update the Checkout and execute the
|
2602
|
+
payment.
|
2603
|
+
type: string
|
2604
|
+
format: UUID
|
2605
|
+
example: "707ef15b-7a0a-48f2-b7d8-c95103418a9c"
|
2606
|
+
shoppingCart:
|
2607
|
+
$ref: '#/components/schemas/ShoppingCartResult'
|
2608
|
+
paymentResponse:
|
2609
|
+
$ref: '#/components/schemas/CreatePaymentResponse'
|
2610
|
+
errorResponse:
|
2611
|
+
$ref: '#/components/schemas/ErrorResponse'
|
2612
|
+
amountOfMoney:
|
2613
|
+
$ref: '#/components/schemas/AmountOfMoney'
|
2614
|
+
references:
|
2615
|
+
$ref: '#/components/schemas/CheckoutReferences'
|
2616
|
+
shipping:
|
2617
|
+
$ref: '#/components/schemas/Shipping'
|
2618
|
+
paymentExecution:
|
2619
|
+
$ref: '#/components/schemas/PaymentExecution'
|
2620
|
+
checkoutStatus:
|
2621
|
+
$ref: '#/components/schemas/StatusCheckout'
|
2622
|
+
statusOutput:
|
2623
|
+
$ref: '#/components/schemas/StatusOutput'
|
2624
|
+
creationDateTime:
|
2625
|
+
$ref: '#/components/schemas/CreationDateTime'
|
2626
|
+
allowedPaymentActions:
|
2627
|
+
type: array
|
2628
|
+
items:
|
2629
|
+
$ref: '#/components/schemas/AllowedPaymentActions'
|
2630
|
+
CheckoutReferences:
|
2631
|
+
type: object
|
2632
|
+
description: Object containing all details that are linked to the Checkout.
|
2633
|
+
additionalProperties: false
|
2634
|
+
properties:
|
2635
|
+
merchantReference:
|
2636
|
+
type: string
|
2637
|
+
description: Unique reference of the Checkout that is also returned for reporting and reconciliation purposes.
|
2638
|
+
maxLength: 40
|
2639
|
+
example: customer-order-1234
|
2640
|
+
merchantShopReference:
|
2641
|
+
type: string
|
2642
|
+
description:
|
2643
|
+
Optional parameter to define the shop or touchpoint where a sale has been realized (e.g. different stores).
|
2644
|
+
maxLength: 64
|
2645
|
+
example: Shop-12345
|
2646
|
+
CheckoutsResponse:
|
2647
|
+
type: object
|
2648
|
+
description: Object that holds the number of found Checkouts and the requested page of Checkouts
|
2649
|
+
additionalProperties: false
|
2650
|
+
properties:
|
2651
|
+
numberOfCheckouts:
|
2652
|
+
minimum: 0
|
2653
|
+
type: integer
|
2654
|
+
description: Number of found Checkouts
|
2655
|
+
format: int64
|
2656
|
+
example: 3390
|
2657
|
+
checkouts:
|
2658
|
+
type: array
|
2659
|
+
description: List of Checkouts
|
2660
|
+
items:
|
2661
|
+
$ref: '#/components/schemas/CheckoutResponse'
|
2662
|
+
CompanyInformation:
|
2663
|
+
description: Object containing details of the company.
|
2664
|
+
type: object
|
2665
|
+
additionalProperties: false
|
2666
|
+
properties:
|
2667
|
+
name:
|
2668
|
+
type: string
|
2669
|
+
description: Name of company from a customer perspective
|
2670
|
+
x-trim-at: 50
|
2671
|
+
example: Customer Company Name
|
2672
|
+
CommerceCaseResponse:
|
2673
|
+
properties:
|
2674
|
+
merchantReference:
|
2675
|
+
type: string
|
2676
|
+
description: |-
|
2677
|
+
Unique reference of the Commerce Case that is also returned for reporting and reconciliation purposes.
|
2678
|
+
maxLength: 40
|
2679
|
+
example: customer-commerce-case-123
|
2680
|
+
commerceCaseId:
|
2681
|
+
type: string
|
2682
|
+
format: UUID
|
2683
|
+
description: |-
|
2684
|
+
Unique ID reference of the Commerce Case. It can be used to add additional Checkouts to the Commerce Case.
|
2685
|
+
example: 0c3ab9d7-19ed-40da-9a0e-1f96f4cfb8ae
|
2686
|
+
customer:
|
2687
|
+
$ref: '#/components/schemas/Customer'
|
2688
|
+
checkouts:
|
2689
|
+
type: array
|
2690
|
+
items:
|
2691
|
+
$ref: '#/components/schemas/CheckoutResponse'
|
2692
|
+
creationDateTime:
|
2693
|
+
$ref: '#/components/schemas/CreationDateTime'
|
2694
|
+
CommerceCasesResponse:
|
2695
|
+
type: array
|
2696
|
+
description: List of Commerce Cases
|
2697
|
+
items:
|
2698
|
+
$ref: '#/components/schemas/CommerceCaseResponse'
|
2699
|
+
CreateCommerceCaseResponse:
|
2700
|
+
type: object
|
2701
|
+
description: |-
|
2702
|
+
The response contains references to the created Commerce case and the Checkout. It also contains the payment
|
2703
|
+
response if the flag 'autoExecuteOrder' was set to true.
|
2704
|
+
properties:
|
2705
|
+
commerceCaseId:
|
2706
|
+
description: Unique ID of the Commerce Case. It can used to add additional Checkouts to the Commerce Case.
|
2707
|
+
type: string
|
2708
|
+
format: UUID
|
2709
|
+
example: "707ef15b-7a0a-48f2-b7d8-c95103418a9c"
|
2710
|
+
merchantReference:
|
2711
|
+
type: string
|
2712
|
+
description: |-
|
2713
|
+
Unique reference of the Commerce Case that is also returned for reporting and reconciliation purposes.
|
2714
|
+
maxLength: 40
|
2715
|
+
example: customer-commerce-case-123
|
2716
|
+
customer:
|
2717
|
+
$ref: '#/components/schemas/Customer'
|
2718
|
+
checkout:
|
2719
|
+
$ref: '#/components/schemas/CreateCheckoutResponse'
|
2720
|
+
creationDateTime:
|
2721
|
+
$ref: '#/components/schemas/CreationDateTime'
|
2722
|
+
ContactDetails:
|
2723
|
+
type: object
|
2724
|
+
description: |-
|
2725
|
+
Object containing contact details like email address and phone number.
|
2726
|
+
additionalProperties: false
|
2727
|
+
properties:
|
2728
|
+
emailAddress:
|
2729
|
+
type: string
|
2730
|
+
description: Email address of the customer
|
2731
|
+
x-trim-at: 70
|
2732
|
+
example: "wile.e.coyote@acmelabs.com"
|
2733
|
+
phoneNumber:
|
2734
|
+
type: string
|
2735
|
+
description: Phone number of the customer
|
2736
|
+
x-trim-at: 20
|
2737
|
+
example: "+1234567890"
|
2738
|
+
CreateCommerceCaseRequest:
|
2739
|
+
properties:
|
2740
|
+
merchantReference:
|
2741
|
+
type: string
|
2742
|
+
description: |-
|
2743
|
+
Unique reference of the Commerce Case that is also returned for reporting and reconciliation purposes.
|
2744
|
+
maxLength: 40
|
2745
|
+
example: customer-commerce-case-123
|
2746
|
+
customer:
|
2747
|
+
$ref: '#/components/schemas/Customer'
|
2748
|
+
creationDateTime:
|
2749
|
+
$ref: '#/components/schemas/CreationDateTime'
|
2750
|
+
checkout:
|
2751
|
+
$ref: '#/components/schemas/CreateCheckoutRequest'
|
2752
|
+
CreationDateTime:
|
2753
|
+
type: string
|
2754
|
+
format: date-time
|
2755
|
+
description: |
|
2756
|
+
Creation date and time of the Checkout in RFC3339 format. It can either be provided in the request or
|
2757
|
+
otherwise will be automatically set to the time when the request CreateCommerceCase was received.
|
2758
|
+
Response values will always be in UTC time, but when providing this field in the requests, the time offset
|
2759
|
+
can have different formats.
|
2760
|
+
|
2761
|
+
Accepted formats are:
|
2762
|
+
* YYYY-MM-DD'T'HH:mm:ss'Z'
|
2763
|
+
* YYYY-MM-DD'T'HH:mm:ss+XX:XX
|
2764
|
+
* YYYY-MM-DD'T'HH:mm:ss-XX:XX
|
2765
|
+
* YYYY-MM-DD'T'HH:mm'Z'
|
2766
|
+
* YYYY-MM-DD'T'HH:mm+XX:XX
|
2767
|
+
* YYYY-MM-DD'T'HH:mm-XX:XX
|
2768
|
+
|
2769
|
+
All other formats may be ignored by the system.
|
2770
|
+
example: 2023-12-06T23:59:60Z
|
2771
|
+
CreatePaymentResponse:
|
2772
|
+
type: object
|
2773
|
+
description: Object containing details on the created payment it has directly be executed.
|
2774
|
+
additionalProperties: false
|
2775
|
+
properties:
|
2776
|
+
creationOutput:
|
2777
|
+
$ref: '#/components/schemas/PaymentCreationOutput'
|
2778
|
+
merchantAction:
|
2779
|
+
$ref: '#/components/schemas/MerchantAction'
|
2780
|
+
payment:
|
2781
|
+
$ref: '#/components/schemas/PaymentResponse'
|
2782
|
+
paymentExecutionId:
|
2783
|
+
description: reference to the paymentExecution.
|
2784
|
+
type: string
|
2785
|
+
format: UUID
|
2786
|
+
example: "4f0c512e-f12c-11ec-8ea0-0242ac120002"
|
2787
|
+
Customer:
|
2788
|
+
type: object
|
2789
|
+
description: |
|
2790
|
+
Object containing the details of a customer.
|
2791
|
+
additionalProperties: false
|
2792
|
+
properties:
|
2793
|
+
companyInformation:
|
2794
|
+
$ref: '#/components/schemas/CompanyInformation'
|
2795
|
+
merchantCustomerId:
|
2796
|
+
type: string
|
2797
|
+
description: Unique identifier for the customer.
|
2798
|
+
maxLength: 20
|
2799
|
+
example: "1234"
|
2800
|
+
billingAddress:
|
2801
|
+
$ref: '#/components/schemas/Address'
|
2802
|
+
contactDetails:
|
2803
|
+
$ref: '#/components/schemas/ContactDetails'
|
2804
|
+
fiscalNumber:
|
2805
|
+
maxLength: 14
|
2806
|
+
type: string
|
2807
|
+
description: |-
|
2808
|
+
Fiscal registration number of the customer or the tax registration number of the company for a business
|
2809
|
+
customer. Please find below specifics per country:
|
2810
|
+
* Brazil - Consumer (CPF) with a length of 11 digits
|
2811
|
+
* Brazil - Company (CNPJ) with a length of 14 digits
|
2812
|
+
* Denmark - Consumer (CPR-nummer or personnummer) with a length of 10 digits
|
2813
|
+
* Finland - Consumer (Finnish: henkilötunnus (abbreviated as HETU), Swedish: personbeteckning) with a
|
2814
|
+
length of 11 characters
|
2815
|
+
* Norway - Consumer (fødselsnummer) with a length of 11 digits
|
2816
|
+
* Sweden - Consumer (personnummer) with a length of 10 or 12 digits
|
2817
|
+
businessRelation:
|
2818
|
+
type: string
|
2819
|
+
description: |-
|
2820
|
+
Business relation to the customer. Possible values:
|
2821
|
+
* B2C - Indicates business to consumer
|
2822
|
+
* B2B - Indicates business to business
|
2823
|
+
|
2824
|
+
Mandatory for the the following payment methods:
|
2825
|
+
* 3390 - PAYONE Secured Invoice
|
2826
|
+
* 3391 - PAYONE Secured Installment
|
2827
|
+
* 3392 - PAYONE Secured Direct Debit
|
2828
|
+
locale:
|
2829
|
+
maxLength: 2
|
2830
|
+
type: string
|
2831
|
+
description: |-
|
2832
|
+
The locale that the customer should be addressed in (for 3rd parties).
|
2833
|
+
|
2834
|
+
Note: Only the language code is supported.
|
2835
|
+
example: de
|
2836
|
+
personalInformation:
|
2837
|
+
$ref: '#/components/schemas/PersonalInformation'
|
2838
|
+
|
2839
|
+
CustomerDevice:
|
2840
|
+
type: object
|
2841
|
+
properties:
|
2842
|
+
ipAddress:
|
2843
|
+
maxLength: 45
|
2844
|
+
type: string
|
2845
|
+
description: The IP address of the customer client from the HTTP Headers.
|
2846
|
+
deviceToken:
|
2847
|
+
maxLength: 255
|
2848
|
+
type: string
|
2849
|
+
description: Tokenized representation of the end customers device. For example
|
2850
|
+
used for PAYONE Buy Now, Pay Later (BNPL).
|
2851
|
+
description: |
|
2852
|
+
Object containing information about the device of the end customer.
|
2853
|
+
DeliveryInformation:
|
2854
|
+
type: object
|
2855
|
+
description: |-
|
2856
|
+
Delivery object contains additional information about the delivery/shipment, which is the basis for the Capture.
|
2857
|
+
The amountOfMoney in the cartItem will not be used in the request.
|
2858
|
+
properties:
|
2859
|
+
items:
|
2860
|
+
type: array
|
2861
|
+
description: Items delivered.
|
2862
|
+
items:
|
2863
|
+
$ref: '#/components/schemas/CartItemInput'
|
2864
|
+
DeliverItem:
|
2865
|
+
type: object
|
2866
|
+
properties:
|
2867
|
+
id:
|
2868
|
+
type: string
|
2869
|
+
format: UUID
|
2870
|
+
description: Id of the item to deliver.
|
2871
|
+
example: "4f0c512e-f12c-11ec-8ea0-0242ac120002"
|
2872
|
+
quantity:
|
2873
|
+
type: integer
|
2874
|
+
description: |-
|
2875
|
+
Quantity of the units being delivered, should be greater than zero
|
2876
|
+
Note: Must not be all spaces or all zeros
|
2877
|
+
format: int64
|
2878
|
+
maximum: 9999
|
2879
|
+
minimum: 1
|
2880
|
+
example: 1
|
2881
|
+
required:
|
2882
|
+
- id
|
2883
|
+
- quantity
|
2884
|
+
DeliverRequest:
|
2885
|
+
type: object
|
2886
|
+
description: |
|
2887
|
+
Request to mark items of the respective Checkout as delivered and to automatically execute a Capture.
|
2888
|
+
A Deliver can be created for a full or the partial ShoppingCart of the Checkout.
|
2889
|
+
The platform will automatically calculate the respective amount to trigger the Capture. For a partial Deliver a
|
2890
|
+
list of items must be provided.
|
2891
|
+
The item details for the Capture will be automatically loaded from the Checkout.
|
2892
|
+
|
2893
|
+
The cancellationReason must be provided if deliverType is set to PARTIAL and isFinal is set to true for BNPL
|
2894
|
+
payment methods (paymentProductId 3390, 3391 and 3392).
|
2895
|
+
For other payment methods the cancellationReason is not mandatory in this case but can be used for reporting
|
2896
|
+
and reconciliation purposes.
|
2897
|
+
properties:
|
2898
|
+
deliverType:
|
2899
|
+
$ref: '#/components/schemas/DeliverType'
|
2900
|
+
isFinal:
|
2901
|
+
type: boolean
|
2902
|
+
default: false
|
2903
|
+
description: |
|
2904
|
+
This property indicates whether this will be the final operation.
|
2905
|
+
For deliverType FULL, it is always the final operation.
|
2906
|
+
If deliverType PARTIAL is provided and the property is set to true, the remaining amount of the items will be cancelled and the items are marked as CANCELLED.
|
2907
|
+
cancellationReason:
|
2908
|
+
$ref: '#/components/schemas/CancellationReason'
|
2909
|
+
deliverItems:
|
2910
|
+
type: array
|
2911
|
+
items:
|
2912
|
+
$ref: '#/components/schemas/DeliverItem'
|
2913
|
+
DeliverResponse:
|
2914
|
+
type: object
|
2915
|
+
properties:
|
2916
|
+
capturePaymentResponse:
|
2917
|
+
$ref: '#/components/schemas/CapturePaymentResponse'
|
2918
|
+
shoppingCart:
|
2919
|
+
$ref: '#/components/schemas/ShoppingCartResult'
|
2920
|
+
DeliverType:
|
2921
|
+
type: string
|
2922
|
+
description: |
|
2923
|
+
The deliverType refers to the ShoppingCart items of the Checkout.
|
2924
|
+
deliverType = FULL should be provided if all items should be marked as delivered and the payment for the entire
|
2925
|
+
ShoppingCart should be captured.
|
2926
|
+
deliverType = PARTIAL should be provided if only certain items should be marked as delivered and the Capture
|
2927
|
+
should not be made for the entire ShoppingCart. For this type the list of items has to be provided.
|
2928
|
+
Following conditions apply to the Deliver request:
|
2929
|
+
* items must be in status ORDERED
|
2930
|
+
* there was no Capture, Refund or Cancel triggered over the Payment Execution resource
|
2931
|
+
* for the deliverType FULL no items are provided in the request
|
2932
|
+
Note: If a DISCOUNT productType is among the ShoppingCart items, only deliverType FULL is possible.
|
2933
|
+
enum:
|
2934
|
+
- FULL
|
2935
|
+
- PARTIAL
|
2936
|
+
|
2937
|
+
ErrorResponse:
|
2938
|
+
type: object
|
2939
|
+
additionalProperties: false
|
2940
|
+
properties:
|
2941
|
+
errorId:
|
2942
|
+
type: string
|
2943
|
+
description: Unique reference of this error response for debugging purposes
|
2944
|
+
errors:
|
2945
|
+
type: array
|
2946
|
+
items:
|
2947
|
+
$ref: '#/components/schemas/APIError'
|
2948
|
+
|
2949
|
+
ExtendedCheckoutStatus:
|
2950
|
+
type: string
|
2951
|
+
description: |
|
2952
|
+
The extendedCheckoutStatus provides a more granular status of the Checkout based on the respective amounts. The
|
2953
|
+
extendedCheckoutStatus include the regular Checkout status OPEN, DELETED, PENDING_COMPLETION, COMPLETED, BILLED,
|
2954
|
+
and CHARGEBACKED as well as three additional status:
|
2955
|
+
|
2956
|
+
1. PARTIALLY_BILLED: Checkout amount has been partially collected. Overall the Checkout status is BILLED and one
|
2957
|
+
of the following conditions is true:
|
2958
|
+
(1) the openAmount is greater than zero or
|
2959
|
+
(2) the openAmount is zero, the refundAmount is zero and the checkoutAmount is not equal to collectedAmount plus the cancelledAmount.
|
2960
|
+
2. PARTIALLY_REFUNDED: The entire Checkout amount has been captured and an amount has been partially refunded to
|
2961
|
+
customer. Overall the Checkout status is BILLED, the openAmount is zero and the refundAmount and collectedAmount
|
2962
|
+
are greater than zero.
|
2963
|
+
3. REFUNDED: The entire Checkout amount has been refunded to the customer. Overall the Checkout status is
|
2964
|
+
BILLED, the openAmount and collectedAmount are zero but the refundAmount is greater than zero.
|
2965
|
+
enum:
|
2966
|
+
- OPEN
|
2967
|
+
- DELETED
|
2968
|
+
- PENDING_COMPLETION
|
2969
|
+
- COMPLETED
|
2970
|
+
- PARTIALLY_BILLED
|
2971
|
+
- BILLED
|
2972
|
+
- CHARGEBACKED
|
2973
|
+
- PARTIALLY_REFUNDED
|
2974
|
+
- REFUNDED
|
2975
|
+
example: OPEN
|
2976
|
+
FinancingPaymentMethodSpecificInput:
|
2977
|
+
type: object
|
2978
|
+
description: Object containing the specific input details for financing payment methods (Buy Now Pay Later)
|
2979
|
+
properties:
|
2980
|
+
paymentProductId:
|
2981
|
+
maximum: 99999
|
2982
|
+
minimum: 0
|
2983
|
+
type: integer
|
2984
|
+
description: |-
|
2985
|
+
Payment product identifier - please check product documentation for a full overview of possible values.
|
2986
|
+
Currently supported payment methods
|
2987
|
+
* 3390 - PAYONE Secured Invoice
|
2988
|
+
* 3391 - PAYONE Secured Installment
|
2989
|
+
* 3392 - PAYONE Secured Direct Debit
|
2990
|
+
format: int32
|
2991
|
+
example: 3390
|
2992
|
+
requiresApproval:
|
2993
|
+
type: boolean
|
2994
|
+
description: |-
|
2995
|
+
* true = the payment requires approval before the funds will be captured using the Approve payment or
|
2996
|
+
Capture payment API
|
2997
|
+
* false = the payment does not require approval, and the funds will be captured automatically
|
2998
|
+
|
2999
|
+
If the parameter is not provided in the request, the default value will be true
|
3000
|
+
paymentProduct3392SpecificInput:
|
3001
|
+
$ref: '#/components/schemas/PaymentProduct3392SpecificInput'
|
3002
|
+
FinancingPaymentMethodSpecificOutput:
|
3003
|
+
type: object
|
3004
|
+
description: Object containing the specific output details for financing payment methods (Buy Now Pay Later)
|
3005
|
+
properties:
|
3006
|
+
paymentProductId:
|
3007
|
+
maximum: 99999
|
3008
|
+
minimum: 0
|
3009
|
+
type: integer
|
3010
|
+
description: |-
|
3011
|
+
Payment product identifier - please check product documentation for a full overview of possible values.
|
3012
|
+
Currently supported payment methods
|
3013
|
+
* 3390 - PAYONE Secured Invoice
|
3014
|
+
* 3391 - PAYONE Secured Installment
|
3015
|
+
* 3392 - PAYONE Secured Direct Debit
|
3016
|
+
format: int32
|
3017
|
+
example: 3390
|
3018
|
+
paymentProduct3391SpecificOutput:
|
3019
|
+
$ref: '#/components/schemas/PaymentProduct3391SpecificOutput'
|
3020
|
+
paymentInstructions:
|
3021
|
+
$ref: '#/components/schemas/PaymentInstructions'
|
3022
|
+
InstallmentOption:
|
3023
|
+
type: object
|
3024
|
+
properties:
|
3025
|
+
installmentOptionId:
|
3026
|
+
type: string
|
3027
|
+
description: Installment option Identifier. Use this in the Complete Payment
|
3028
|
+
for the selected installment option.
|
3029
|
+
example: IOP_478d44fea0494eea86bc87f9e4a63328
|
3030
|
+
numberOfPayments:
|
3031
|
+
type: integer
|
3032
|
+
description: The number of monthly payments for this installment.
|
3033
|
+
format: int32
|
3034
|
+
example: 12
|
3035
|
+
monthlyAmount:
|
3036
|
+
type: object
|
3037
|
+
description: Monthly rate amount.
|
3038
|
+
allOf:
|
3039
|
+
- $ref: '#/components/schemas/AmountOfMoney'
|
3040
|
+
lastRateAmount:
|
3041
|
+
type: object
|
3042
|
+
description: Last rate amount.
|
3043
|
+
allOf:
|
3044
|
+
- $ref: '#/components/schemas/AmountOfMoney'
|
3045
|
+
effectiveInterestRate:
|
3046
|
+
type: integer
|
3047
|
+
description: Effective interest amount in percent with two decimals.
|
3048
|
+
format: int32
|
3049
|
+
example: 1209
|
3050
|
+
nominalInterestRate:
|
3051
|
+
type: integer
|
3052
|
+
description: Nominal interest amount in percent with two decimals.
|
3053
|
+
format: int32
|
3054
|
+
example: 1199
|
3055
|
+
totalAmount:
|
3056
|
+
type: object
|
3057
|
+
description: Total rate amount.
|
3058
|
+
allOf:
|
3059
|
+
- $ref: '#/components/schemas/AmountOfMoney'
|
3060
|
+
firstRateDate:
|
3061
|
+
maxLength: 8
|
3062
|
+
pattern: ^((19|20|21)\d{6})?$
|
3063
|
+
type: string
|
3064
|
+
description: |-
|
3065
|
+
Due date of first rate.
|
3066
|
+
Format: YYYYMMDD
|
3067
|
+
creditInformation:
|
3068
|
+
type: object
|
3069
|
+
description: Link with credit information.
|
3070
|
+
allOf:
|
3071
|
+
- $ref: '#/components/schemas/LinkInformation'
|
3072
|
+
required:
|
3073
|
+
- creditInformation
|
3074
|
+
- effectiveInterestRate
|
3075
|
+
- firstRateDate
|
3076
|
+
- installmentOptionId
|
3077
|
+
- lastRateAmount
|
3078
|
+
- monthlyAmount
|
3079
|
+
- nominalInterestRate
|
3080
|
+
- numberOfPayments
|
3081
|
+
- totalAmount
|
3082
|
+
CartItemInvoiceData:
|
3083
|
+
type: object
|
3084
|
+
description: Object containing the line items of the invoice or shopping cart.
|
3085
|
+
properties:
|
3086
|
+
description:
|
3087
|
+
type: string
|
3088
|
+
description: |
|
3089
|
+
Shopping cart item description.
|
3090
|
+
The description will also be displayed in the portal as the product name.
|
3091
|
+
example: Smartwatch
|
3092
|
+
x-trim-at: 116
|
3093
|
+
LinkInformation:
|
3094
|
+
type: object
|
3095
|
+
description: URL and content type information for an web resource.
|
3096
|
+
properties:
|
3097
|
+
href:
|
3098
|
+
type: string
|
3099
|
+
description: URL of link.
|
3100
|
+
type:
|
3101
|
+
type: string
|
3102
|
+
description: Content type of linked data.
|
3103
|
+
required:
|
3104
|
+
- href
|
3105
|
+
- type
|
3106
|
+
CartItemStatus:
|
3107
|
+
type: string
|
3108
|
+
enum:
|
3109
|
+
- ORDERED
|
3110
|
+
- DELIVERED
|
3111
|
+
- CANCELLED
|
3112
|
+
- RETURNED
|
3113
|
+
- WAITING_FOR_PAYMENT
|
3114
|
+
description: Indicates in which status the line item is
|
3115
|
+
MandateRecurrenceType:
|
3116
|
+
type: string
|
3117
|
+
enum:
|
3118
|
+
- UNIQUE
|
3119
|
+
- RECURRING
|
3120
|
+
description: |-
|
3121
|
+
Specifies whether the mandate is for one-off or recurring payments. Possible values are:
|
3122
|
+
* UNIQUE
|
3123
|
+
* RECURRING
|
3124
|
+
MerchantAction:
|
3125
|
+
type: object
|
3126
|
+
description: |-
|
3127
|
+
Object that contains the action, including the needed data, that you should perform next, like showing
|
3128
|
+
instructions, showing the transaction results or redirect to a third party to complete the payment
|
3129
|
+
additionalProperties: false
|
3130
|
+
properties:
|
3131
|
+
actionType:
|
3132
|
+
type: string
|
3133
|
+
description: |-
|
3134
|
+
Action merchants needs to take in the online payment process. Possible values are:
|
3135
|
+
* REDIRECT - The customer needs to be redirected using the details found in redirectData
|
3136
|
+
* SHOW_FORM - The customer needs to be shown a form with the fields found in formFields. You can submit the
|
3137
|
+
data entered by the user in a Complete payment request.
|
3138
|
+
* SHOW_INSTRUCTIONS - The customer needs to be shown payment instruction using the details found in
|
3139
|
+
showData. Alternatively the instructions can be rendered by us using the instructionsRenderingData
|
3140
|
+
* SHOW_TRANSACTION_RESULTS - The customer needs to be shown the transaction results using the details found
|
3141
|
+
in showData. Alternatively the instructions can be rendered by us using the instructionsRenderingData
|
3142
|
+
* MOBILE_THREEDS_CHALLENGE - The customer needs to complete a challenge as part of the 3D Secure
|
3143
|
+
authentication inside your mobile app. The details contained in mobileThreeDSecureChallengeParameters need
|
3144
|
+
to be provided to the EMVco certified Mobile SDK as a challengeParameters object.
|
3145
|
+
* CALL_THIRD_PARTY - The merchant needs to call a third party using the data found in thirdPartyData
|
3146
|
+
example: REDIRECT
|
3147
|
+
redirectData:
|
3148
|
+
$ref: '#/components/schemas/RedirectData'
|
3149
|
+
MobilePaymentMethodSpecificInput:
|
3150
|
+
type: object
|
3151
|
+
description: Object containing the specific input details for mobile payments.
|
3152
|
+
additionalProperties: false
|
3153
|
+
properties:
|
3154
|
+
paymentProductId:
|
3155
|
+
type: integer
|
3156
|
+
format: int32
|
3157
|
+
maximum: 99999
|
3158
|
+
minimum: 0
|
3159
|
+
description: |-
|
3160
|
+
Payment product identifier - please check product documentation for a full overview of possible values.
|
3161
|
+
example: 840
|
3162
|
+
authorizationMode:
|
3163
|
+
$ref: '#/components/schemas/AuthorizationMode'
|
3164
|
+
encryptedPaymentData:
|
3165
|
+
type: string
|
3166
|
+
description: |-
|
3167
|
+
The payment data if we will do the decryption of the encrypted payment data. Typically you'd use
|
3168
|
+
encryptedCustomerInput in the root of the create payment request to provide the encrypted payment data
|
3169
|
+
instead.
|
3170
|
+
publicKeyHash:
|
3171
|
+
type: string
|
3172
|
+
description: |-
|
3173
|
+
Public Key Hash A unique identifier to retrieve key used by Apple to encrypt information.
|
3174
|
+
ephemeralKey:
|
3175
|
+
type: string
|
3176
|
+
description: Ephemeral Key A unique generated key used by Apple to encrypt data.
|
3177
|
+
threeDSecure:
|
3178
|
+
$ref: '#/components/schemas/MobilePaymentThreeDSecure'
|
3179
|
+
paymentProduct302SpecificInput:
|
3180
|
+
$ref: '#/components/schemas/PaymentProduct302SpecificInput'
|
3181
|
+
MobilePaymentMethodSpecificOutput:
|
3182
|
+
type: object
|
3183
|
+
description: Object containing the mobile payment method details.
|
3184
|
+
additionalProperties: false
|
3185
|
+
properties:
|
3186
|
+
paymentProductId:
|
3187
|
+
type: integer
|
3188
|
+
format: int32
|
3189
|
+
maximum: 99999
|
3190
|
+
minimum: 0
|
3191
|
+
description: |-
|
3192
|
+
Payment product identifier - please check product documentation for a full overview of possible values.
|
3193
|
+
example: 302
|
3194
|
+
authorisationCode:
|
3195
|
+
description: Card Authorization code as returned by the acquirer
|
3196
|
+
type: string
|
3197
|
+
fraudResults:
|
3198
|
+
$ref: '#/components/schemas/CardFraudResults'
|
3199
|
+
threeDSecureResults:
|
3200
|
+
$ref: '#/components/schemas/ThreeDSecureResults'
|
3201
|
+
network:
|
3202
|
+
type: string
|
3203
|
+
description: The card network that was used for a mobile payment method operation
|
3204
|
+
MobilePaymentThreeDSecure:
|
3205
|
+
type: object
|
3206
|
+
description: |-
|
3207
|
+
Object containing specific data regarding 3-D Secure for card digital wallets.
|
3208
|
+
Necessary to perform 3D Secure when there is no liability shift from the wallet and corresponding card network.
|
3209
|
+
properties:
|
3210
|
+
redirectionData:
|
3211
|
+
$ref: '#/components/schemas/RedirectionData'
|
3212
|
+
Order:
|
3213
|
+
type: object
|
3214
|
+
description: |-
|
3215
|
+
Order object containing order related data Please note that this object is required to be able to submit the
|
3216
|
+
amount.
|
3217
|
+
properties:
|
3218
|
+
amountOfMoney:
|
3219
|
+
$ref: '#/components/schemas/AmountOfMoney'
|
3220
|
+
customer:
|
3221
|
+
$ref: '#/components/schemas/Customer'
|
3222
|
+
references:
|
3223
|
+
$ref: '#/components/schemas/References'
|
3224
|
+
shipping:
|
3225
|
+
$ref: '#/components/schemas/Shipping'
|
3226
|
+
shoppingCart:
|
3227
|
+
$ref: '#/components/schemas/ShoppingCartInput'
|
3228
|
+
required:
|
3229
|
+
- references
|
3230
|
+
OrderItem:
|
3231
|
+
type: object
|
3232
|
+
description: Items should only be provided for orderType = PARTIAL
|
3233
|
+
properties:
|
3234
|
+
id:
|
3235
|
+
type: string
|
3236
|
+
format: UUID
|
3237
|
+
description: |-
|
3238
|
+
Id of the item from the ShoppingCart. The id will be returned in the response from create Checkout request.
|
3239
|
+
example: "4f0c512e-f12c-11ec-8ea0-0242ac120002"
|
3240
|
+
quantity:
|
3241
|
+
type: integer
|
3242
|
+
description: |
|
3243
|
+
Quantity of the specific item. Must be greater than zero.
|
3244
|
+
Note: Must not be all spaces or all zeros
|
3245
|
+
format: int64
|
3246
|
+
maximum: 9999
|
3247
|
+
minimum: 1
|
3248
|
+
example: 1
|
3249
|
+
required:
|
3250
|
+
- id
|
3251
|
+
- quantity
|
3252
|
+
OrderLineDetailsInput:
|
3253
|
+
type: object
|
3254
|
+
description: |
|
3255
|
+
Object containing additional information that when supplied can have a beneficial effect on the discountrates.
|
3256
|
+
additionalProperties: false
|
3257
|
+
properties:
|
3258
|
+
productCode:
|
3259
|
+
type: string
|
3260
|
+
description: Product or UPC Code
|
3261
|
+
x-trim-at: 50
|
3262
|
+
example: ASP01
|
3263
|
+
productPrice:
|
3264
|
+
type: integer
|
3265
|
+
description: The price of one unit of the product, the value should be zero or greater.
|
3266
|
+
format: int64
|
3267
|
+
maximum: 2147483647
|
3268
|
+
minimum: 0
|
3269
|
+
example: 480
|
3270
|
+
productType:
|
3271
|
+
$ref: '#/components/schemas/ProductType'
|
3272
|
+
quantity:
|
3273
|
+
type: integer
|
3274
|
+
description: |-
|
3275
|
+
Quantity of the units being purchased, should be greater than zero
|
3276
|
+
Note: Must not be all spaces or all zeros
|
3277
|
+
format: int64
|
3278
|
+
maximum: 9999
|
3279
|
+
minimum: 0
|
3280
|
+
example: 1
|
3281
|
+
taxAmount:
|
3282
|
+
type: integer
|
3283
|
+
description: Tax on the line item, with the last two digits implied as decimal places.
|
3284
|
+
format: int64
|
3285
|
+
maximum: 2147483647
|
3286
|
+
minimum: 0
|
3287
|
+
example: 0
|
3288
|
+
taxAmountPerUnit:
|
3289
|
+
type: boolean
|
3290
|
+
description: If this is set to true, `taxAmount` will be interpreted as the tax amount per unit as opposed to the tax amount per line item.
|
3291
|
+
format: int64
|
3292
|
+
example: true
|
3293
|
+
default: false
|
3294
|
+
productUrl:
|
3295
|
+
type: string
|
3296
|
+
description: |-
|
3297
|
+
URL of the product in shop.
|
3298
|
+
|
3299
|
+
Used for PAYONE Buy Now, Pay Later (BNPL).
|
3300
|
+
format: uri
|
3301
|
+
maxLength: 2048
|
3302
|
+
example: https://shop.url/watches/watch01
|
3303
|
+
productImageUrl:
|
3304
|
+
type: string
|
3305
|
+
description: |-
|
3306
|
+
URL of a product image.
|
3307
|
+
|
3308
|
+
Used for PAYONE Buy Now, Pay Later (BNPL).
|
3309
|
+
format: uri
|
3310
|
+
maxLength: 2048
|
3311
|
+
example: https://shop.url/watches/watch01.jpg
|
3312
|
+
productCategoryPath:
|
3313
|
+
type: string
|
3314
|
+
description: |-
|
3315
|
+
Category path of the item.
|
3316
|
+
|
3317
|
+
Used for PAYONE Buy Now, Pay Later (BNPL).
|
3318
|
+
maxLength: 2048
|
3319
|
+
example: Watches > Smartwatches
|
3320
|
+
merchantShopDeliveryReference:
|
3321
|
+
type: string
|
3322
|
+
description: |-
|
3323
|
+
Optional parameter to define the delivery shop or touchpoint where an item has been collected (e.g. for
|
3324
|
+
Click & Collect or Click & Reserve).
|
3325
|
+
x-trim-at: 50
|
3326
|
+
example: Store-12345
|
3327
|
+
required:
|
3328
|
+
- productPrice
|
3329
|
+
- quantity
|
3330
|
+
OrderLineDetailsPatch:
|
3331
|
+
type: object
|
3332
|
+
description: |
|
3333
|
+
Object containing additional information that when supplied can have a beneficial effect on the discountrates.
|
3334
|
+
additionalProperties: false
|
3335
|
+
allOf:
|
3336
|
+
- $ref: '#/components/schemas/OrderLineDetailsInput'
|
3337
|
+
properties:
|
3338
|
+
id:
|
3339
|
+
description: Unique identifier of a cart item
|
3340
|
+
type: string
|
3341
|
+
format: UUID
|
3342
|
+
example: 7a3444d3-f6ce-4b6e-b6c4-2486a160cf19
|
3343
|
+
status:
|
3344
|
+
type: array
|
3345
|
+
items:
|
3346
|
+
$ref: '#/components/schemas/CartItemOrderStatus'
|
3347
|
+
OrderLineDetailsResult:
|
3348
|
+
type: object
|
3349
|
+
description: |
|
3350
|
+
Object containing additional information that when supplied can have a beneficial effect on the discountrates.
|
3351
|
+
additionalProperties: false
|
3352
|
+
allOf:
|
3353
|
+
- $ref: '#/components/schemas/OrderLineDetailsInput'
|
3354
|
+
properties:
|
3355
|
+
id:
|
3356
|
+
description: Unique identifier of a cart item
|
3357
|
+
type: string
|
3358
|
+
format: UUID
|
3359
|
+
example: 7a3444d3-f6ce-4b6e-b6c4-2486a160cf19
|
3360
|
+
status:
|
3361
|
+
type: array
|
3362
|
+
items:
|
3363
|
+
$ref: '#/components/schemas/CartItemOrderStatus'
|
3364
|
+
ProductType:
|
3365
|
+
type: string
|
3366
|
+
description: |-
|
3367
|
+
Enum to classify items that are purchased
|
3368
|
+
* GOODS - Goods
|
3369
|
+
* SHIPMENT - Shipping charges
|
3370
|
+
* HANDLING_FEE - Handling fee
|
3371
|
+
* DISCOUNT - Voucher / discount
|
3372
|
+
enum:
|
3373
|
+
- GOODS
|
3374
|
+
- SHIPMENT
|
3375
|
+
- HANDLING_FEE
|
3376
|
+
- DISCOUNT
|
3377
|
+
References:
|
3378
|
+
type: object
|
3379
|
+
description: Object that holds all reference properties that are linked to this transaction.
|
3380
|
+
properties:
|
3381
|
+
descriptor:
|
3382
|
+
type: string
|
3383
|
+
description: |-
|
3384
|
+
Descriptive text that is used towards to customer, either during an online Checkout at a third party and/or
|
3385
|
+
on the statement of the customer. For card transactions this is usually referred to as a Soft Descriptor.
|
3386
|
+
The maximum allowed length varies per card acquirer:
|
3387
|
+
* AIB - 22 characters
|
3388
|
+
* American Express - 25 characters
|
3389
|
+
* Atos Origin BNP - 15 characters
|
3390
|
+
* Barclays - 25 characters
|
3391
|
+
* Catella - 22 characters
|
3392
|
+
* CBA - 20 characters
|
3393
|
+
* Elavon - 25 characters
|
3394
|
+
* First Data - 25 characters
|
3395
|
+
* INICIS (INIPAY) - 22-30 characters
|
3396
|
+
* JCB - 25 characters
|
3397
|
+
* Merchant Solutions - 22-25 characters
|
3398
|
+
* Payvision (EU & HK) - 25 characters
|
3399
|
+
* SEB Euroline - 22 characters
|
3400
|
+
* Sub1 Argentina - 15 characters
|
3401
|
+
* Wells Fargo - 25 characters
|
3402
|
+
|
3403
|
+
Note that we advise you to use 22 characters as the max length as beyond this our experience is that issuers
|
3404
|
+
will start to truncate. We currently also only allow per API call overrides for AIB and Barclays
|
3405
|
+
For alternative payment products the maximum allowed length varies per payment product:
|
3406
|
+
* 402 e-Przelewy - 30 characters
|
3407
|
+
* 404 INICIS - 80 characters
|
3408
|
+
* 802 Nordea ePayment Finland - 234 characters
|
3409
|
+
* 809 iDeal - 32 characters
|
3410
|
+
* 836 SOFORT - 42 characters
|
3411
|
+
* 840 PayPal - 127 characters
|
3412
|
+
* 841 WebMoney - 175 characters
|
3413
|
+
* 849 Yandex - 64 characters
|
3414
|
+
* 861 Alipay - 256 characters
|
3415
|
+
* 863 WeChat Pay - 32 characters
|
3416
|
+
* 880 BOKU - 20 characters
|
3417
|
+
* 8580 Qiwi - 255 characters
|
3418
|
+
* 1504 Konbini - 80 characters
|
3419
|
+
|
3420
|
+
All other payment products don't support a descriptor.
|
3421
|
+
maxLength: 256
|
3422
|
+
merchantReference:
|
3423
|
+
type: string
|
3424
|
+
description: |
|
3425
|
+
The merchantReference is a unique identifier for a payment and can be used for reporting purposes. The
|
3426
|
+
merchantReference is required for the execution of a payment and has to be unique. In case a payment has
|
3427
|
+
failed the same merchantReference can be used again.
|
3428
|
+
Once a successful payment has been made the same merchantReference can no longer be used and will be
|
3429
|
+
rejected.
|
3430
|
+
maxLength: 20
|
3431
|
+
example: 5a891df0b8cf11edaeb2af87d8ff0b2f
|
3432
|
+
merchantParameters:
|
3433
|
+
type: string
|
3434
|
+
description:
|
3435
|
+
It allows you to store additional parameters for the transaction in JSON format.
|
3436
|
+
This field must not contain any personal data.
|
3437
|
+
maxLength: 1000
|
3438
|
+
example: "{'SessionID':'126548354','ShopperID':'7354131'}"
|
3439
|
+
required:
|
3440
|
+
- merchantReference
|
3441
|
+
OrderRequest:
|
3442
|
+
type: object
|
3443
|
+
description: |
|
3444
|
+
Request to execute an Order for the corresponding Checkout for a specific payment method.
|
3445
|
+
The provided data from the Commerce Case and the Checkout regarding customer, shipping, and ShoppingCart will be
|
3446
|
+
automatically loaded and used for the Payment Execution.
|
3447
|
+
In case the paymentMethodSpecificInput has already been provided when creating the Commerce Case or Checkout,
|
3448
|
+
this input will automatically be used.
|
3449
|
+
An Order can be created for a full or the partial ShoppingCart of the Checkout. For a partial Order a list of
|
3450
|
+
items must be provided. The platform will automatically calculate the respective amount to trigger the payment
|
3451
|
+
execution.
|
3452
|
+
properties:
|
3453
|
+
orderType:
|
3454
|
+
$ref: '#/components/schemas/OrderType'
|
3455
|
+
orderReferences:
|
3456
|
+
$ref: '#/components/schemas/References'
|
3457
|
+
items:
|
3458
|
+
type: array
|
3459
|
+
items:
|
3460
|
+
$ref: '#/components/schemas/OrderItem'
|
3461
|
+
paymentMethodSpecificInput:
|
3462
|
+
$ref: '#/components/schemas/PaymentMethodSpecificInput'
|
3463
|
+
OrderResponse:
|
3464
|
+
type: object
|
3465
|
+
description: Object that contains details on the created payment in case one has been created.
|
3466
|
+
additionalProperties: false
|
3467
|
+
properties:
|
3468
|
+
createPaymentResponse:
|
3469
|
+
$ref: '#/components/schemas/CreatePaymentResponse'
|
3470
|
+
shoppingCart:
|
3471
|
+
$ref: '#/components/schemas/ShoppingCartResult'
|
3472
|
+
OrderType:
|
3473
|
+
type: string
|
3474
|
+
description: |
|
3475
|
+
The orderType refers to the ShoppingCart of the Checkout.
|
3476
|
+
orderType = FULL should be provided if a payment for the entire ShoppingCart should be created.
|
3477
|
+
orderType = PARTIAL should be provided if the payment should be created only for certain items of the
|
3478
|
+
ShoppingCart. For this type the list of items has to be provided.
|
3479
|
+
Following conditions apply to the Order request:
|
3480
|
+
* amount of the Checkout can not be zero
|
3481
|
+
* the ShoppingCart cannot be empty
|
3482
|
+
* for orderType = FULL the Checkout status is OPEN, there is no other order and/or Payment Execution and no
|
3483
|
+
items should be provided in the body
|
3484
|
+
* if no paymentMethodSpecificInput has been provided in the creation of the Commerce Case or Checkout it has
|
3485
|
+
to be provided in this request
|
3486
|
+
enum:
|
3487
|
+
- FULL
|
3488
|
+
- PARTIAL
|
3489
|
+
PatchCheckoutRequest:
|
3490
|
+
type: object
|
3491
|
+
description: |
|
3492
|
+
An existing shopping cart of a Checkout will not be overwritten with the Patch request.
|
3493
|
+
New items can be added to the shoppingCart by providing them in the request.
|
3494
|
+
To change existing items (delete, modify or add), the respective itemId must be provided. An item can be completely removed if quantity = 0 is provided.
|
3495
|
+
|
3496
|
+
The price of an item can be changed as long as no payment has happened for this item (i.e. as long as an item has no specific status).
|
3497
|
+
Items with a status can no longer be removed entirely, however the quantity can be increased or decreased (for items without payment) by using the itemId.
|
3498
|
+
|
3499
|
+
If no amountOfMoney for the Checkout is provided, the platform will calculate the respective amount based on the cartItem productPrice and productQuantity.
|
3500
|
+
properties:
|
3501
|
+
amountOfMoney:
|
3502
|
+
$ref: '#/components/schemas/AmountOfMoney'
|
3503
|
+
references:
|
3504
|
+
$ref: '#/components/schemas/CheckoutReferences'
|
3505
|
+
shipping:
|
3506
|
+
$ref: '#/components/schemas/Shipping'
|
3507
|
+
shoppingCart:
|
3508
|
+
$ref: '#/components/schemas/ShoppingCartPatch'
|
3509
|
+
paymentMethodSpecificInput:
|
3510
|
+
$ref: '#/components/schemas/PaymentMethodSpecificInput'
|
3511
|
+
paymentReferences:
|
3512
|
+
$ref: '#/components/schemas/References'
|
3513
|
+
PatchCommerceCaseRequest:
|
3514
|
+
type: object
|
3515
|
+
description: |
|
3516
|
+
Update the customer data of the given Commerce Case
|
3517
|
+
properties:
|
3518
|
+
customer:
|
3519
|
+
$ref: '#/components/schemas/Customer'
|
3520
|
+
PausePaymentRequest:
|
3521
|
+
type: object
|
3522
|
+
description: Request to pause a payment for a specific payment method.
|
3523
|
+
properties: {}
|
3524
|
+
PausePaymentResponse:
|
3525
|
+
type: object
|
3526
|
+
properties:
|
3527
|
+
status:
|
3528
|
+
$ref: '#/components/schemas/StatusValue'
|
3529
|
+
PaymentChannel:
|
3530
|
+
type: string
|
3531
|
+
enum:
|
3532
|
+
- ECOMMERCE
|
3533
|
+
- POS
|
3534
|
+
PaymentCreationOutput:
|
3535
|
+
type: object
|
3536
|
+
description: |-
|
3537
|
+
Object containing the details of the created payment.
|
3538
|
+
additionalProperties: false
|
3539
|
+
properties:
|
3540
|
+
externalReference:
|
3541
|
+
type: string
|
3542
|
+
description: |-
|
3543
|
+
The external reference is an identifier for this transaction and can be used for reconciliation purposes.
|
3544
|
+
example: "C1232O2342"
|
3545
|
+
Payee:
|
3546
|
+
required:
|
3547
|
+
- name
|
3548
|
+
- iban
|
3549
|
+
type: object
|
3550
|
+
properties:
|
3551
|
+
iban:
|
3552
|
+
type: string
|
3553
|
+
description: IBAN of the payee's or beneficiary's bank account. The IBAN is the International Bank Account Number. It is an internationally agreed format for the BBAN and includes the ISO country code and two check digits.
|
3554
|
+
example: DE02370502990000684712
|
3555
|
+
maxLength: 50
|
3556
|
+
bic:
|
3557
|
+
type: string
|
3558
|
+
description: Bank Identification Code
|
3559
|
+
example: COKSDE33XXX
|
3560
|
+
maxLength: 11
|
3561
|
+
name:
|
3562
|
+
type: string
|
3563
|
+
description: Name of the payee
|
3564
|
+
example: Max Mustermann
|
3565
|
+
description: Payee bank account details as part of the payment instructions
|
3566
|
+
PaymentEvent:
|
3567
|
+
type: object
|
3568
|
+
description: Detailed information regarding an occurred payment event.
|
3569
|
+
properties:
|
3570
|
+
type:
|
3571
|
+
$ref: '#/components/schemas/PaymentType'
|
3572
|
+
amountOfMoney:
|
3573
|
+
$ref: '#/components/schemas/AmountOfMoney'
|
3574
|
+
paymentStatus:
|
3575
|
+
$ref: '#/components/schemas/StatusValue'
|
3576
|
+
cancellationReason:
|
3577
|
+
$ref: '#/components/schemas/CancellationReason'
|
3578
|
+
returnReason:
|
3579
|
+
type: string
|
3580
|
+
description: |-
|
3581
|
+
Reason of the Refund (e.g. communicated by or to the costumer).
|
3582
|
+
maxLength: 255
|
3583
|
+
example: Customer complained
|
3584
|
+
paymentInstructions:
|
3585
|
+
$ref: '#/components/schemas/PaymentInstructions'
|
3586
|
+
PaymentExecution:
|
3587
|
+
type: object
|
3588
|
+
description: |-
|
3589
|
+
Object contains information of the payment with a specific payment method.
|
3590
|
+
properties:
|
3591
|
+
paymentExecutionId:
|
3592
|
+
description: Unique ID of paymentExecution.
|
3593
|
+
type: string
|
3594
|
+
format: UUID
|
3595
|
+
example: "4f0c512e-f12c-11ec-8ea0-0242ac120002"
|
3596
|
+
paymentId:
|
3597
|
+
type: string
|
3598
|
+
description: Unique payment transaction identifier of the payment gateway.
|
3599
|
+
example: '3066019730_1'
|
3600
|
+
cardPaymentMethodSpecificInput:
|
3601
|
+
$ref: '#/components/schemas/CardPaymentMethodSpecificInput'
|
3602
|
+
mobilePaymentMethodSpecificInput:
|
3603
|
+
$ref: '#/components/schemas/MobilePaymentMethodSpecificInput'
|
3604
|
+
redirectPaymentMethodSpecificInput:
|
3605
|
+
$ref: '#/components/schemas/RedirectPaymentMethodSpecificInput'
|
3606
|
+
sepaDirectDebitPaymentMethodSpecificInput:
|
3607
|
+
$ref: '#/components/schemas/SepaDirectDebitPaymentMethodSpecificInput'
|
3608
|
+
financingPaymentMethodSpecificInput:
|
3609
|
+
$ref: '#/components/schemas/FinancingPaymentMethodSpecificInput'
|
3610
|
+
bankPayoutMethodSpecificInput:
|
3611
|
+
$ref: '#/components/schemas/BankPayoutMethodSpecificInput'
|
3612
|
+
paymentChannel:
|
3613
|
+
$ref: '#/components/schemas/PaymentChannel'
|
3614
|
+
references:
|
3615
|
+
$ref: '#/components/schemas/References'
|
3616
|
+
previousPayment:
|
3617
|
+
type: string
|
3618
|
+
format: UUID
|
3619
|
+
example: "cee5276d-6b1e-4a4f-a46f-27b7550d484e"
|
3620
|
+
creationDateTime:
|
3621
|
+
type: string
|
3622
|
+
format: date-time
|
3623
|
+
description: |-
|
3624
|
+
The date and time when the payment was created.
|
3625
|
+
|
3626
|
+
Format will be in one of the following formats:
|
3627
|
+
* YYYY-MM-DD'T'HH:mm:ss'Z'
|
3628
|
+
* YYYY-MM-DD'T'HH:mm:ss+XX:XX
|
3629
|
+
* YYYY-MM-DD'T'HH:mm:ss-XX:XX
|
3630
|
+
example: 2022-01-01T00:00:00Z
|
3631
|
+
lastUpdated:
|
3632
|
+
type: string
|
3633
|
+
format: date-time
|
3634
|
+
description: |-
|
3635
|
+
The date and time when the payment was last updated.
|
3636
|
+
|
3637
|
+
Format will be in one of the following formats:
|
3638
|
+
* YYYY-MM-DD'T'HH:mm:ss'Z'
|
3639
|
+
* YYYY-MM-DD'T'HH:mm:ss+XX:XX
|
3640
|
+
* YYYY-MM-DD'T'HH:mm:ss-XX:XX
|
3641
|
+
example: 2022-01-01T00:00:00Z
|
3642
|
+
events:
|
3643
|
+
type: array
|
3644
|
+
items:
|
3645
|
+
$ref: '#/components/schemas/PaymentEvent'
|
3646
|
+
PaymentExecutionRequest:
|
3647
|
+
type: object
|
3648
|
+
description: |
|
3649
|
+
Request to trigger a payment for a respective Checkout providing the input for a specific payment method.
|
3650
|
+
The data from the Commerce case and the Checkout will not be loaded automatically and there is no validation
|
3651
|
+
between the data input in place.
|
3652
|
+
Depending on the payment method, information of the customer and / or the shopping cart might be required.
|
3653
|
+
For more details regarding payment method specific input please check the documentation.
|
3654
|
+
properties:
|
3655
|
+
paymentMethodSpecificInput:
|
3656
|
+
$ref: '#/components/schemas/PaymentMethodSpecificInput'
|
3657
|
+
paymentExecutionSpecificInput:
|
3658
|
+
$ref: '#/components/schemas/PaymentExecutionSpecificInput'
|
3659
|
+
PaymentExecutionSpecificInput:
|
3660
|
+
type: object
|
3661
|
+
description: |
|
3662
|
+
The amount of the paymentSpecificInput might differ from the Checkout amount in case of partial payments but cannot be higher.
|
3663
|
+
Additionally, the total amount of the provided shopping cart cannot exceed the Checkout amount.
|
3664
|
+
If a different currency is provided than in the Checkout, the payment execution will be declined.
|
3665
|
+
Provided details of the customer and shipping from the Checkout will be automatically loaded and used in the Payment Execution request.
|
3666
|
+
The ShoppingCart might differ from the one provided in the Checkout (e.g., for partial payments) and might be required by the payment provider (e.g., BNPL).
|
3667
|
+
If the ShoppingCart elements differ from the data provided in the Checkout, the existing data will not be overwritten.
|
3668
|
+
properties:
|
3669
|
+
amountOfMoney:
|
3670
|
+
$ref: '#/components/schemas/AmountOfMoney'
|
3671
|
+
shoppingCart:
|
3672
|
+
$ref: '#/components/schemas/ShoppingCartInput'
|
3673
|
+
paymentReferences:
|
3674
|
+
$ref: '#/components/schemas/References'
|
3675
|
+
required:
|
3676
|
+
- paymentReferences
|
3677
|
+
PaymentInformationRefundRequest:
|
3678
|
+
type: object
|
3679
|
+
description: |
|
3680
|
+
Request to initiate refund for a Payment Information of Checkout.
|
3681
|
+
It is possible to initiate multiple partial refunds by providing an amount that is lower than the total captured amount of the Payment Information.
|
3682
|
+
additionalProperties: false
|
3683
|
+
properties:
|
3684
|
+
amountOfMoney:
|
3685
|
+
$ref: '#/components/schemas/PositiveAmountOfMoney'
|
3686
|
+
references:
|
3687
|
+
$ref: '#/components/schemas/PaymentReferences'
|
3688
|
+
accountHolder:
|
3689
|
+
maxLength: 50
|
3690
|
+
type: string
|
3691
|
+
description: |-
|
3692
|
+
Account holder of the bank account.
|
3693
|
+
Does not necessarily have to be the customer (e.g. joint accounts).
|
3694
|
+
The name of the account holder is required for payment methods that will use a credit transfer for the refund (e.g. girocard, SEPA Direct Debit)
|
3695
|
+
example: Max Mustermann
|
3696
|
+
required:
|
3697
|
+
- amountOfMoney
|
3698
|
+
PaymentInformationRefundResponse:
|
3699
|
+
type: object
|
3700
|
+
additionalProperties: false
|
3701
|
+
properties:
|
3702
|
+
payment:
|
3703
|
+
$ref: '#/components/schemas/PayoutResponse'
|
3704
|
+
paymentExecutionId:
|
3705
|
+
description: reference to the paymentExecution.
|
3706
|
+
type: string
|
3707
|
+
format: UUID
|
3708
|
+
example: "4f0c512e-f12c-11ec-8ea0-0242ac120002"
|
3709
|
+
PaymentInformationRequest:
|
3710
|
+
type: object
|
3711
|
+
additionalProperties: false
|
3712
|
+
properties:
|
3713
|
+
amountOfMoney:
|
3714
|
+
$ref: '#/components/schemas/AmountOfMoney'
|
3715
|
+
type:
|
3716
|
+
$ref: '#/components/schemas/PaymentType'
|
3717
|
+
paymentChannel:
|
3718
|
+
$ref: '#/components/schemas/PaymentChannel'
|
3719
|
+
paymentProductId:
|
3720
|
+
type: integer
|
3721
|
+
format: int32
|
3722
|
+
maximum: 99999
|
3723
|
+
minimum: 0
|
3724
|
+
description: |-
|
3725
|
+
Payment method identifier - please check the product documentation for a full overview of possible values.
|
3726
|
+
merchantReference:
|
3727
|
+
type: string
|
3728
|
+
description: |
|
3729
|
+
Unique reference of the PaymentInformation. In case of card present transactions, the reference from the ECR
|
3730
|
+
or terminal will be used. It is always the reference for external transactions.
|
3731
|
+
(e.g. card present payments, cash payments or payments processed by other payment providers).
|
3732
|
+
maxLength: 40
|
3733
|
+
example: 6a891660b8cf16edaeb26f87d86f0b2f
|
3734
|
+
required:
|
3735
|
+
- amountOfMoney
|
3736
|
+
- type
|
3737
|
+
- paymentChannel
|
3738
|
+
- paymentProductId
|
3739
|
+
PaymentInformationResponse:
|
3740
|
+
type: object
|
3741
|
+
description: Object containing the related data of the created Payment Information.
|
3742
|
+
properties:
|
3743
|
+
commerceCaseId:
|
3744
|
+
description: Unique ID of the Commerce Case.
|
3745
|
+
type: string
|
3746
|
+
format: UUID
|
3747
|
+
example: "4f0c512e-f12c-11ec-8ea0-0242ac120002"
|
3748
|
+
checkoutId:
|
3749
|
+
description: Unique ID of the Commerce Case.
|
3750
|
+
type: string
|
3751
|
+
format: UUID
|
3752
|
+
example: "4f0c512e-f12c-11ec-8ea0-0242ac120002"
|
3753
|
+
merchantCustomerId:
|
3754
|
+
type: string
|
3755
|
+
description: Unique identifier of the customer.
|
3756
|
+
maxLength: 20
|
3757
|
+
example: "1234"
|
3758
|
+
paymentInformationId:
|
3759
|
+
description: Unique ID of the Payment Information.
|
3760
|
+
type: string
|
3761
|
+
format: UUID
|
3762
|
+
example: "637ef15b-1a0a-48f2-27d8-c954a344329c"
|
3763
|
+
paymentChannel:
|
3764
|
+
$ref: '#/components/schemas/PaymentChannel'
|
3765
|
+
paymentProductId:
|
3766
|
+
type: integer
|
3767
|
+
format: int32
|
3768
|
+
maximum: 99999
|
3769
|
+
minimum: 0
|
3770
|
+
description: |-
|
3771
|
+
Payment product identifier - please check see product documentation for a full overview of possible values.
|
3772
|
+
example: 840
|
3773
|
+
terminalId:
|
3774
|
+
description: Unique identifier of the POS terminal of the payment transaction.
|
3775
|
+
type: string
|
3776
|
+
minLength: 8
|
3777
|
+
maxLength: 8
|
3778
|
+
example: "60023723"
|
3779
|
+
cardAcceptorId:
|
3780
|
+
description: |-
|
3781
|
+
Unique ID that identifies a store location or transaction point and which refers to the contract number of
|
3782
|
+
the merchant accepting the card.
|
3783
|
+
type: string
|
3784
|
+
maxLength: 15
|
3785
|
+
example: "455600217015"
|
3786
|
+
merchantReference:
|
3787
|
+
type: string
|
3788
|
+
description: |
|
3789
|
+
Unique reference of the PaymentInformation. In case of card present transactions, the reference from the ECR
|
3790
|
+
or terminal will be used. It is always the reference for external transactions.
|
3791
|
+
(e.g. card present payments, cash payments or payments processed by other payment providers).
|
3792
|
+
maxLength: 40
|
3793
|
+
example: 6a891660b8cf16edaeb26f87d86f0b2f
|
3794
|
+
creationDateTime:
|
3795
|
+
type: string
|
3796
|
+
format: date-time
|
3797
|
+
description: |-
|
3798
|
+
The date and time when the payment was created.
|
3799
|
+
|
3800
|
+
Format will be in one of the following formats:
|
3801
|
+
* YYYY-MM-DD'T'HH:mm:ss'Z'
|
3802
|
+
* YYYY-MM-DD'T'HH:mm:ss+XX:XX
|
3803
|
+
* YYYY-MM-DD'T'HH:mm:ss-XX:XX
|
3804
|
+
example: 2022-01-01T00:00:00Z
|
3805
|
+
lastUpdated:
|
3806
|
+
type: string
|
3807
|
+
format: date-time
|
3808
|
+
description: |-
|
3809
|
+
The date and time when the payment was last updated.
|
3810
|
+
|
3811
|
+
Format will be in one of the following formats:
|
3812
|
+
* YYYY-MM-DD'T'HH:mm:ss'Z'
|
3813
|
+
* YYYY-MM-DD'T'HH:mm:ss+XX:XX
|
3814
|
+
* YYYY-MM-DD'T'HH:mm:ss-XX:XX
|
3815
|
+
example: 2022-01-01T00:00:00Z
|
3816
|
+
cardPaymentDetails:
|
3817
|
+
$ref: '#/components/schemas/CardPaymentDetails'
|
3818
|
+
events:
|
3819
|
+
type: array
|
3820
|
+
items:
|
3821
|
+
$ref: '#/components/schemas/PaymentEvent'
|
3822
|
+
PaymentInstructions:
|
3823
|
+
required:
|
3824
|
+
- payee
|
3825
|
+
- dueDate
|
3826
|
+
- referenceNumber
|
3827
|
+
type: object
|
3828
|
+
properties:
|
3829
|
+
payee:
|
3830
|
+
$ref: '#/components/schemas/Payee'
|
3831
|
+
dueDate:
|
3832
|
+
maxLength: 8
|
3833
|
+
pattern: ^((19|20|21)\d{6})?$
|
3834
|
+
type: string
|
3835
|
+
description: |-
|
3836
|
+
Due date of the payment.
|
3837
|
+
Format: YYYYMMDD
|
3838
|
+
referenceNumber:
|
3839
|
+
type: string
|
3840
|
+
description: External payment reference number as part of payment instructions for the consumer
|
3841
|
+
example: R.1208-368
|
3842
|
+
status:
|
3843
|
+
type: string
|
3844
|
+
description: Status, usually describing the status of the invoice if paid, overdue, open...
|
3845
|
+
description: Object containing information on payment instructions details (e.g. on the invoice payments)
|
3846
|
+
PaymentMethodSpecificInput:
|
3847
|
+
type: object
|
3848
|
+
description: |
|
3849
|
+
Input for the payment for a respective payment method.
|
3850
|
+
In case the paymentMethodSpecificInput has already been provided when creating the Commerce Case or Checkout, it
|
3851
|
+
will automatically be used for the Payment Execution.
|
3852
|
+
If a new input will be provided, the existing input will be updated.
|
3853
|
+
properties:
|
3854
|
+
cardPaymentMethodSpecificInput:
|
3855
|
+
$ref: '#/components/schemas/CardPaymentMethodSpecificInput'
|
3856
|
+
mobilePaymentMethodSpecificInput:
|
3857
|
+
$ref: '#/components/schemas/MobilePaymentMethodSpecificInput'
|
3858
|
+
redirectPaymentMethodSpecificInput:
|
3859
|
+
$ref: '#/components/schemas/RedirectPaymentMethodSpecificInput'
|
3860
|
+
sepaDirectDebitPaymentMethodSpecificInput:
|
3861
|
+
$ref: '#/components/schemas/SepaDirectDebitPaymentMethodSpecificInput'
|
3862
|
+
financingPaymentMethodSpecificInput:
|
3863
|
+
$ref: '#/components/schemas/FinancingPaymentMethodSpecificInput'
|
3864
|
+
customerDevice:
|
3865
|
+
$ref: '#/components/schemas/CustomerDevice'
|
3866
|
+
paymentChannel:
|
3867
|
+
$ref: '#/components/schemas/PaymentChannel'
|
3868
|
+
PaymentOutput:
|
3869
|
+
type: object
|
3870
|
+
description: |
|
3871
|
+
Object containing payment details.
|
3872
|
+
additionalProperties: false
|
3873
|
+
properties:
|
3874
|
+
amountOfMoney:
|
3875
|
+
$ref: '#/components/schemas/AmountOfMoney'
|
3876
|
+
merchantParameters:
|
3877
|
+
type: string
|
3878
|
+
description:
|
3879
|
+
It allows you to store additional parameters for the transaction in JSON format.
|
3880
|
+
This field should not contain any personal data.
|
3881
|
+
maxLength: 1000
|
3882
|
+
example: "{'SessionID':'126548354','ShopperID':'7354131'}"
|
3883
|
+
references:
|
3884
|
+
$ref: '#/components/schemas/PaymentReferences'
|
3885
|
+
cardPaymentMethodSpecificOutput:
|
3886
|
+
$ref: '#/components/schemas/CardPaymentMethodSpecificOutput'
|
3887
|
+
mobilePaymentMethodSpecificOutput:
|
3888
|
+
$ref: '#/components/schemas/MobilePaymentMethodSpecificOutput'
|
3889
|
+
paymentMethod:
|
3890
|
+
type: string
|
3891
|
+
description: Payment method identifier based on the paymentProductId.
|
3892
|
+
redirectPaymentMethodSpecificOutput:
|
3893
|
+
$ref: '#/components/schemas/RedirectPaymentMethodSpecificOutput'
|
3894
|
+
sepaDirectDebitPaymentMethodSpecificOutput:
|
3895
|
+
$ref: '#/components/schemas/SepaDirectDebitPaymentMethodSpecificOutput'
|
3896
|
+
financingPaymentMethodSpecificOutput:
|
3897
|
+
$ref: '#/components/schemas/FinancingPaymentMethodSpecificOutput'
|
3898
|
+
PayoutOutput:
|
3899
|
+
type: object
|
3900
|
+
description: |
|
3901
|
+
Object containing details from the created payout.
|
3902
|
+
additionalProperties: false
|
3903
|
+
properties:
|
3904
|
+
amountOfMoney:
|
3905
|
+
$ref: '#/components/schemas/AmountOfMoney'
|
3906
|
+
references:
|
3907
|
+
$ref: '#/components/schemas/PaymentReferences'
|
3908
|
+
paymentMethod:
|
3909
|
+
type: string
|
3910
|
+
description: Payment method identifier based on the paymentProductId.
|
3911
|
+
PaymentProduct302SpecificInput:
|
3912
|
+
type: object
|
3913
|
+
description: Object containing additional Information needed for Apple Pay payment transactions.
|
3914
|
+
properties:
|
3915
|
+
integrationType:
|
3916
|
+
type: string
|
3917
|
+
description: |-
|
3918
|
+
Type of your Apple Pay integration.
|
3919
|
+
* MERCHANT_CERTIFICATE - using your own certificate (paid apple pay account needed)
|
3920
|
+
* MASS_ENABLEMENT - using PAYONE certificate
|
3921
|
+
enum:
|
3922
|
+
- MERCHANT_CERTIFICATE
|
3923
|
+
- MASS_ENABLEMENT
|
3924
|
+
example: MASS_ENABLEMENT
|
3925
|
+
network:
|
3926
|
+
type: string
|
3927
|
+
description: |-
|
3928
|
+
Network/Scheme of the card used for the payment.
|
3929
|
+
* MASTERCARD
|
3930
|
+
* VISA
|
3931
|
+
* AMEX
|
3932
|
+
* GIROCARD
|
3933
|
+
* DISCOVER (not supported yet)
|
3934
|
+
* JCB (not supported yet)
|
3935
|
+
enum:
|
3936
|
+
- MASTERCARD
|
3937
|
+
- VISA
|
3938
|
+
- AMEX
|
3939
|
+
- GIROCARD
|
3940
|
+
- DISCOVER
|
3941
|
+
- JCB
|
3942
|
+
example: GIROCARD
|
3943
|
+
token:
|
3944
|
+
$ref: '#/components/schemas/ApplePaymentDataTokenInformation'
|
3945
|
+
domainName:
|
3946
|
+
type: string
|
3947
|
+
description: Domain of your Webshop. Needed for initialization of the Apple Pay payment session with integrationType=MASS_ENABLEMENT.
|
3948
|
+
displayName:
|
3949
|
+
type: string
|
3950
|
+
maxLength: 64
|
3951
|
+
description: Name of your Store. Needed for initialization of the Apple Pay payment session with integrationType=MASS_ENABLEMENT.
|
3952
|
+
PaymentProduct3391SpecificInput:
|
3953
|
+
type: object
|
3954
|
+
description: Object containing specific information for PAYONE Secured Installment.
|
3955
|
+
properties:
|
3956
|
+
installmentOptionId:
|
3957
|
+
type: string
|
3958
|
+
description: |-
|
3959
|
+
ID of the selected installment option. Will be provided in the response of the Order / Payment Execution
|
3960
|
+
request.
|
3961
|
+
bankAccountInformation:
|
3962
|
+
$ref: '#/components/schemas/BankAccountInformation'
|
3963
|
+
required:
|
3964
|
+
- bankAccountInformation
|
3965
|
+
- installmentOptionId
|
3966
|
+
PaymentProduct3391SpecificOutput:
|
3967
|
+
type: object
|
3968
|
+
properties:
|
3969
|
+
installmentOptions:
|
3970
|
+
type: array
|
3971
|
+
description: List of installment options.
|
3972
|
+
items:
|
3973
|
+
$ref: '#/components/schemas/InstallmentOption'
|
3974
|
+
description: Object containing specific information for PAYONE Secured Installment.
|
3975
|
+
PaymentProduct3392SpecificInput:
|
3976
|
+
type: object
|
3977
|
+
description: Object containing specific information for PAYONE Secured Direct Debit.
|
3978
|
+
properties:
|
3979
|
+
bankAccountInformation:
|
3980
|
+
$ref: '#/components/schemas/BankAccountInformation'
|
3981
|
+
required:
|
3982
|
+
- bankAccountInformation
|
3983
|
+
PaymentProduct771SpecificOutput:
|
3984
|
+
type: object
|
3985
|
+
description: Output that is SEPA Direct Debit specific (i.e. the used mandate).
|
3986
|
+
additionalProperties: false
|
3987
|
+
properties:
|
3988
|
+
mandateReference:
|
3989
|
+
type: string
|
3990
|
+
description: Unique reference fo a SEPA Mandate
|
3991
|
+
PaymentProduct840CustomerAccount:
|
3992
|
+
type: object
|
3993
|
+
description: |
|
3994
|
+
Object containing the details of the PayPal account.
|
3995
|
+
additionalProperties: false
|
3996
|
+
properties:
|
3997
|
+
companyName:
|
3998
|
+
type: string
|
3999
|
+
description: Name of the company in case the PayPal account is owned by a business
|
4000
|
+
example: Customer Company Name
|
4001
|
+
firstName:
|
4002
|
+
type: string
|
4003
|
+
description: First name of the PayPal account holder
|
4004
|
+
example: John
|
4005
|
+
payerId:
|
4006
|
+
type: string
|
4007
|
+
description: |-
|
4008
|
+
The unique identifier of a PayPal account and will never change in the life cycle of a PayPal account.
|
4009
|
+
example: RRCYJUTFJGZTA
|
4010
|
+
surname:
|
4011
|
+
type: string
|
4012
|
+
description: Surname of the PayPal account holder
|
4013
|
+
example: Doe
|
4014
|
+
PaymentProduct840SpecificOutput:
|
4015
|
+
type: object
|
4016
|
+
description: |
|
4017
|
+
PayPal (payment product 840) specific details.
|
4018
|
+
additionalProperties: false
|
4019
|
+
properties:
|
4020
|
+
billingAddress:
|
4021
|
+
$ref: '#/components/schemas/Address'
|
4022
|
+
customerAccount:
|
4023
|
+
$ref: '#/components/schemas/PaymentProduct840CustomerAccount'
|
4024
|
+
shippingAddress:
|
4025
|
+
$ref: '#/components/schemas/Address'
|
4026
|
+
PaymentReferences:
|
4027
|
+
type: object
|
4028
|
+
description: Object that holds all reference properties that are linked to this transaction.
|
4029
|
+
additionalProperties: false
|
4030
|
+
properties:
|
4031
|
+
merchantReference:
|
4032
|
+
type: string
|
4033
|
+
description: |-
|
4034
|
+
Unique reference of the Commerce Case that is also returned for reporting and reconciliation purposes.
|
4035
|
+
maxLength: 20
|
4036
|
+
example: your-order-6372
|
4037
|
+
PaymentResponse:
|
4038
|
+
type: object
|
4039
|
+
description: Object that holds the payment related properties.
|
4040
|
+
additionalProperties: false
|
4041
|
+
properties:
|
4042
|
+
paymentOutput:
|
4043
|
+
$ref: '#/components/schemas/PaymentOutput'
|
4044
|
+
status:
|
4045
|
+
$ref: '#/components/schemas/StatusValue'
|
4046
|
+
statusOutput:
|
4047
|
+
$ref: '#/components/schemas/PaymentStatusOutput'
|
4048
|
+
id:
|
4049
|
+
type: string
|
4050
|
+
description: Unique payment transaction identifier of the payment gateway.
|
4051
|
+
example: PP1AA7KKLSFB9MBG
|
4052
|
+
PayoutResponse:
|
4053
|
+
type: object
|
4054
|
+
description: Object that holds the payment related properties for the refund of a Payment Information.
|
4055
|
+
additionalProperties: false
|
4056
|
+
properties:
|
4057
|
+
payoutOutput:
|
4058
|
+
$ref: '#/components/schemas/PayoutOutput'
|
4059
|
+
status:
|
4060
|
+
$ref: '#/components/schemas/StatusValue'
|
4061
|
+
statusCategory:
|
4062
|
+
$ref: '#/components/schemas/StatusCategoryValue'
|
4063
|
+
id:
|
4064
|
+
type: string
|
4065
|
+
description: Unique payment transaction identifier of the payment gateway.
|
4066
|
+
example: PP1AA7KKLSFB9MBG
|
4067
|
+
PaymentStatusOutput:
|
4068
|
+
type: object
|
4069
|
+
description: |
|
4070
|
+
This object has the numeric representation of the current payment status, timestamp of last status change and
|
4071
|
+
performable action on the current payment resource. In case of failed payments and negative scenarios, detailed
|
4072
|
+
error information is listed.
|
4073
|
+
additionalProperties: false
|
4074
|
+
properties:
|
4075
|
+
isCancellable:
|
4076
|
+
type: boolean
|
4077
|
+
description: Flag indicating if the payment can be cancelled
|
4078
|
+
statusCategory:
|
4079
|
+
$ref: '#/components/schemas/StatusCategoryValue'
|
4080
|
+
isAuthorized:
|
4081
|
+
description: Indicates if the transaction has been authorized
|
4082
|
+
type: boolean
|
4083
|
+
isRefundable:
|
4084
|
+
description: Flag indicating if the payment can be refunded
|
4085
|
+
type: boolean
|
4086
|
+
PaymentType:
|
4087
|
+
description: Defines the respective payment type.
|
4088
|
+
type: string
|
4089
|
+
enum:
|
4090
|
+
- SALE
|
4091
|
+
- RESERVATION
|
4092
|
+
- CAPTURE
|
4093
|
+
- REFUND
|
4094
|
+
- REVERSAL
|
4095
|
+
- CHARGEBACK_REVERSAL
|
4096
|
+
- CREDIT_NOTE
|
4097
|
+
- DEBIT_NOTE
|
4098
|
+
PersonalInformation:
|
4099
|
+
type: object
|
4100
|
+
description: Object containing personal information like name, date of birth and gender.
|
4101
|
+
additionalProperties: false
|
4102
|
+
properties:
|
4103
|
+
dateOfBirth:
|
4104
|
+
type: string
|
4105
|
+
description: |-
|
4106
|
+
The date of birth of the customer of the recipient of the loan.
|
4107
|
+
Format YYYYMMDD
|
4108
|
+
maxLength: 8
|
4109
|
+
pattern: ^((19|20|21)\d{6})?$
|
4110
|
+
gender:
|
4111
|
+
type: string
|
4112
|
+
description: |-
|
4113
|
+
The gender of the customer, possible values are:
|
4114
|
+
* MALE
|
4115
|
+
* FEMALE
|
4116
|
+
* UNKNOWN
|
4117
|
+
enum:
|
4118
|
+
- MALE
|
4119
|
+
- FEMALE
|
4120
|
+
- UNKNOWN
|
4121
|
+
name:
|
4122
|
+
$ref: '#/components/schemas/PersonalName'
|
4123
|
+
PersonalName:
|
4124
|
+
type: object
|
4125
|
+
description: Object containing the name details of the customer
|
4126
|
+
additionalProperties: false
|
4127
|
+
properties:
|
4128
|
+
firstName:
|
4129
|
+
type: string
|
4130
|
+
description: Given name(s) or first name(s) of the customer
|
4131
|
+
x-trim-at: 35
|
4132
|
+
example: Wile
|
4133
|
+
surname:
|
4134
|
+
type: string
|
4135
|
+
description: Surname(s) or last name(s) of the customer
|
4136
|
+
x-trim-at: 35
|
4137
|
+
example: E. Coyote
|
4138
|
+
title:
|
4139
|
+
type: string
|
4140
|
+
description: Title of customer
|
4141
|
+
x-trim-at: 35
|
4142
|
+
example: Dr.
|
4143
|
+
PositiveAmountOfMoney:
|
4144
|
+
type: object
|
4145
|
+
description: Object containing amount and ISO currency code attributes
|
4146
|
+
additionalProperties: false
|
4147
|
+
properties:
|
4148
|
+
amount:
|
4149
|
+
type: integer
|
4150
|
+
description: Amount in cents and always having 2 decimals
|
4151
|
+
format: int64
|
4152
|
+
maximum: 999999999999
|
4153
|
+
minimum: 1
|
4154
|
+
example: 1000
|
4155
|
+
currencyCode:
|
4156
|
+
type: string
|
4157
|
+
description: Three-letter ISO currency code representing the currency for the amount
|
4158
|
+
minLength: 3
|
4159
|
+
maxLength: 3
|
4160
|
+
example: EUR
|
4161
|
+
required:
|
4162
|
+
- amount
|
4163
|
+
- currencyCode
|
4164
|
+
ProcessingMandateInformation:
|
4165
|
+
type: object
|
4166
|
+
description: |
|
4167
|
+
Object containing the relevant information of a SEPA Direct Debit
|
4168
|
+
mandate for processing (mandatory fields in pain.008).
|
4169
|
+
Renamed from CreateMandateWithReturnUrl to ProcessingMandateInformation.
|
4170
|
+
properties:
|
4171
|
+
bankAccountIban:
|
4172
|
+
$ref: '#/components/schemas/BankAccountInformation'
|
4173
|
+
recurrenceType:
|
4174
|
+
$ref: '#/components/schemas/MandateRecurrenceType'
|
4175
|
+
uniqueMandateReference:
|
4176
|
+
maxLength: 35
|
4177
|
+
pattern: ^[A-Za-z0-9\+\-\.()]{1,35}$
|
4178
|
+
type: string
|
4179
|
+
description: The unique identifier of the mandate
|
4180
|
+
example: your-mandate-id
|
4181
|
+
dateOfSignature:
|
4182
|
+
maxLength: 8
|
4183
|
+
pattern: ^((19|20|21)\d{6})?$
|
4184
|
+
type: string
|
4185
|
+
description: |-
|
4186
|
+
The date of signature of the mandate.
|
4187
|
+
Format YYYYMMDD
|
4188
|
+
example: 20220101
|
4189
|
+
creditorId:
|
4190
|
+
maxLength: 31
|
4191
|
+
pattern: ^[A-Z]{2}[0-9]{2}[a-zA-Z0-9\+\?\/\-:\(\)\.,\']{1,31}$
|
4192
|
+
type: string
|
4193
|
+
description: Your unique creditor identifier.
|
4194
|
+
example: DE98ZZZ09999999999
|
4195
|
+
required:
|
4196
|
+
- bankAccountIban
|
4197
|
+
- creditorId
|
4198
|
+
- dateOfSignature
|
4199
|
+
- recurrenceType
|
4200
|
+
- uniqueMandateReference
|
4201
|
+
RedirectData:
|
4202
|
+
type: object
|
4203
|
+
description: |-
|
4204
|
+
Object containing all data needed to redirect the customer.
|
4205
|
+
additionalProperties: false
|
4206
|
+
properties:
|
4207
|
+
redirectURL:
|
4208
|
+
type: string
|
4209
|
+
description: The URL that the customer should be redirected to. Be sure to redirect using the GET method
|
4210
|
+
example: https://example-mandate-signing-url.com\
|
4211
|
+
RedirectionData:
|
4212
|
+
type: object
|
4213
|
+
description: Object containing browser specific redirection related data.
|
4214
|
+
additionalProperties: false
|
4215
|
+
properties:
|
4216
|
+
returnUrl:
|
4217
|
+
type: string
|
4218
|
+
description: |-
|
4219
|
+
The URL that the customer is redirected to after the payment flow has finished. You can add any number of
|
4220
|
+
key value pairs in the query string that, for instance help you to identify the customer when they return to
|
4221
|
+
your site. Please note that we will also append some additional key value pairs that will also help you with
|
4222
|
+
this identification process.
|
4223
|
+
Note: The provided URL should be absolute and contain the protocol to use, e.g. http:// or https://. For use
|
4224
|
+
on mobile devices a custom protocol can be used in the form of protocol://. This protocol must be registered
|
4225
|
+
on the device first.
|
4226
|
+
URLs without a protocol will be rejected.
|
4227
|
+
maxLength: 200
|
4228
|
+
example: https://secure.ogone.com/ncol/test/displayparams.asp
|
4229
|
+
required:
|
4230
|
+
- returnUrl
|
4231
|
+
RedirectPaymentMethodSpecificInput:
|
4232
|
+
type: object
|
4233
|
+
description: |-
|
4234
|
+
Object containing the specific input details for payments that involve redirects to 3rd parties to complete,
|
4235
|
+
like iDeal and PayPal
|
4236
|
+
additionalProperties: false
|
4237
|
+
properties:
|
4238
|
+
requiresApproval:
|
4239
|
+
type: boolean
|
4240
|
+
description: |-
|
4241
|
+
* true = the payment requires approval before the funds will be captured using the Approve payment or
|
4242
|
+
Capture payment API
|
4243
|
+
* false = the payment does not require approval, and the funds will be captured automatically
|
4244
|
+
|
4245
|
+
If the parameter is not provided in the request, the default value will be true
|
4246
|
+
paymentProcessingToken:
|
4247
|
+
type: string
|
4248
|
+
description: ID of the token to use to create the payment.
|
4249
|
+
example: 0ca037cc-9079-4df7-8f6f-f2a3443ee521
|
4250
|
+
maxLength: 40
|
4251
|
+
reportingToken:
|
4252
|
+
type: string
|
4253
|
+
readOnly: true
|
4254
|
+
description: Token to identify the card in the reporting.
|
4255
|
+
example: 12a037cc-833d-8b45-8f6f-11c34171f4e1
|
4256
|
+
maxLength: 40
|
4257
|
+
tokenize:
|
4258
|
+
type: boolean
|
4259
|
+
description: >-
|
4260
|
+
Indicates if this transaction should be tokenized
|
4261
|
+
* true - Tokenize the transaction.
|
4262
|
+
* false - Do not tokenize the transaction, unless it would be tokenized by other means such as auto-
|
4263
|
+
tokenization of recurring payments.
|
4264
|
+
example: false
|
4265
|
+
paymentProductId:
|
4266
|
+
type: integer
|
4267
|
+
format: int32
|
4268
|
+
maximum: 99999
|
4269
|
+
minimum: 0
|
4270
|
+
description: |-
|
4271
|
+
Payment product identifier - please check product documentation for a full overview of possible values.
|
4272
|
+
example: 840
|
4273
|
+
paymentProduct840SpecificInput:
|
4274
|
+
$ref: '#/components/schemas/RedirectPaymentProduct840SpecificInput'
|
4275
|
+
redirectionData:
|
4276
|
+
$ref: '#/components/schemas/RedirectionData'
|
4277
|
+
RedirectPaymentMethodSpecificOutput:
|
4278
|
+
type: object
|
4279
|
+
description: |
|
4280
|
+
Object containing the redirect payment product details.
|
4281
|
+
additionalProperties: false
|
4282
|
+
properties:
|
4283
|
+
paymentProductId:
|
4284
|
+
type: integer
|
4285
|
+
format: int32
|
4286
|
+
maximum: 99999
|
4287
|
+
minimum: 0
|
4288
|
+
description: <-
|
4289
|
+
Payment product identifier - please check product documentation for a full overview of possible values.
|
4290
|
+
example: 840
|
4291
|
+
paymentProduct840SpecificOutput:
|
4292
|
+
$ref: '#/components/schemas/PaymentProduct840SpecificOutput'
|
4293
|
+
paymentProcessingToken:
|
4294
|
+
type: string
|
4295
|
+
description: ID of the token. This property is populated when the payment was done with a token.
|
4296
|
+
example: 0ca037cc-9079-4df7-8f6f-f2a3443ee521
|
4297
|
+
maxLength: 40
|
4298
|
+
reportingToken:
|
4299
|
+
type: string
|
4300
|
+
description: Token to identify the card in the reporting.
|
4301
|
+
example: 12a037cc-833d-8b45-8f6f-11c34171f4e1
|
4302
|
+
maxLength: 40
|
4303
|
+
RedirectPaymentProduct840SpecificInput:
|
4304
|
+
type: object
|
4305
|
+
description: Object containing specific input required for PayPal payments (Payment product ID 840)
|
4306
|
+
properties:
|
4307
|
+
addressSelectionAtPayPal:
|
4308
|
+
type: boolean
|
4309
|
+
description: |-
|
4310
|
+
Indicates whether to use PayPal Express Checkout Shortcut.
|
4311
|
+
* true = When shortcut is enabled, the consumer can select a shipping address during PayPal checkout.
|
4312
|
+
* false = When shortcut is disabled, the consumer cannot change the shipping address.
|
4313
|
+
Default value is false.
|
4314
|
+
Please note that this field is ignored when order.additionalInput.typeInformation.purchaseType is set to
|
4315
|
+
"digital"
|
4316
|
+
RefreshPaymentRequest:
|
4317
|
+
type: object
|
4318
|
+
description: Request to refresh the payment status of a specific payment.
|
4319
|
+
properties:
|
4320
|
+
refreshType:
|
4321
|
+
$ref: '#/components/schemas/RefreshType'
|
4322
|
+
required:
|
4323
|
+
- refreshType
|
4324
|
+
RefreshType:
|
4325
|
+
type: string
|
4326
|
+
description: |
|
4327
|
+
The refreshType refers to the type of the payment status refresh.
|
4328
|
+
* PAYMENT_EVENTS = Refresh the payment status of the payment and return the events. This is a synchronisation
|
4329
|
+
of the payment status with the payment platform. This can be used in case of any possible inconsistencies
|
4330
|
+
between the commerce platform and the payment platform.
|
4331
|
+
* PAYMENT_PROVIDER_DETAILS = Refresh the payment status of the payment and return the payment provider details.
|
4332
|
+
This is a synchronisation of the payment with the external payment provider. The current use case is to update
|
4333
|
+
the customer status of a transaction using PAYONE Buy Now, Pay Later (BNPL) with the external provider Payla.
|
4334
|
+
enum:
|
4335
|
+
- PAYMENT_EVENTS
|
4336
|
+
- PAYMENT_PROVIDER_DETAILS
|
4337
|
+
RefundErrorResponse:
|
4338
|
+
type: object
|
4339
|
+
additionalProperties: false
|
4340
|
+
properties:
|
4341
|
+
errorId:
|
4342
|
+
type: string
|
4343
|
+
description: Unique reference, for debugging purposes, of this error response
|
4344
|
+
errors:
|
4345
|
+
type: array
|
4346
|
+
items:
|
4347
|
+
$ref: '#/components/schemas/APIError'
|
4348
|
+
RefundOutput:
|
4349
|
+
type: object
|
4350
|
+
description: |
|
4351
|
+
Object containing Refund details
|
4352
|
+
additionalProperties: false
|
4353
|
+
properties:
|
4354
|
+
amountOfMoney:
|
4355
|
+
$ref: '#/components/schemas/AmountOfMoney'
|
4356
|
+
merchantParameters:
|
4357
|
+
type: string
|
4358
|
+
description: |
|
4359
|
+
It allows you to store additional parameters for the transaction in JSON format.
|
4360
|
+
This field must not contain any personal data.
|
4361
|
+
maxLength: 1000
|
4362
|
+
example: "{'SessionID':'126548354','ShopperID':'7354131'}"
|
4363
|
+
references:
|
4364
|
+
$ref: '#/components/schemas/PaymentReferences'
|
4365
|
+
paymentMethod:
|
4366
|
+
type: string
|
4367
|
+
description: Payment method identifier used by the our payment engine.
|
4368
|
+
RefundRequest:
|
4369
|
+
type: object
|
4370
|
+
description: |
|
4371
|
+
Request to refund a payment for a Checkout. It is possible to perform multiple partial refunds by providing an
|
4372
|
+
amount that is lower than the total captured amount.
|
4373
|
+
The returnReason can be provided for reporting and reconciliation purposes but is not mandatory.
|
4374
|
+
additionalProperties: false
|
4375
|
+
properties:
|
4376
|
+
amountOfMoney:
|
4377
|
+
$ref: '#/components/schemas/PositiveAmountOfMoney'
|
4378
|
+
references:
|
4379
|
+
$ref: '#/components/schemas/PaymentReferences'
|
4380
|
+
return:
|
4381
|
+
$ref: '#/components/schemas/ReturnInformation'
|
4382
|
+
RefundPaymentResponse:
|
4383
|
+
type: object
|
4384
|
+
description: |-
|
4385
|
+
This object has the numeric representation of the current Refund status, timestamp of last status change and
|
4386
|
+
performable action on the current Refund resource. In case of a rejected Refund, detailed error information is
|
4387
|
+
listed.
|
4388
|
+
additionalProperties: false
|
4389
|
+
properties:
|
4390
|
+
refundOutput:
|
4391
|
+
$ref: '#/components/schemas/RefundOutput'
|
4392
|
+
status:
|
4393
|
+
$ref: '#/components/schemas/StatusValue'
|
4394
|
+
statusOutput:
|
4395
|
+
$ref: '#/components/schemas/PaymentStatusOutput'
|
4396
|
+
id:
|
4397
|
+
type: string
|
4398
|
+
description: Unique payment transaction identifier of the payment gateway.
|
4399
|
+
example: '3066019730_1'
|
4400
|
+
ReturnInformation:
|
4401
|
+
type: object
|
4402
|
+
description: |-
|
4403
|
+
Return object contains additional information about the return/shipment, which is the basis for the Refund.
|
4404
|
+
The amountOfMoney in the cartItem will not be used in the request.
|
4405
|
+
properties:
|
4406
|
+
returnReason:
|
4407
|
+
type: string
|
4408
|
+
description: |-
|
4409
|
+
Reason of the Refund (e.g. communicated by or to the consumer).
|
4410
|
+
maxLength: 255
|
4411
|
+
example: Customer complained
|
4412
|
+
items:
|
4413
|
+
type: array
|
4414
|
+
description: |-
|
4415
|
+
Items returned.
|
4416
|
+
items:
|
4417
|
+
$ref: '#/components/schemas/CartItemInput'
|
4418
|
+
ReturnItem:
|
4419
|
+
type: object
|
4420
|
+
properties:
|
4421
|
+
id:
|
4422
|
+
type: string
|
4423
|
+
format: UUID
|
4424
|
+
description: Id of the item to return.
|
4425
|
+
example: "4f0c512e-f12c-11ec-8ea0-0242ac120002"
|
4426
|
+
quantity:
|
4427
|
+
type: integer
|
4428
|
+
description: |-
|
4429
|
+
Quantity of the units being returned, should be greater than zero
|
4430
|
+
Note: Must not be all spaces or all zeros
|
4431
|
+
format: int64
|
4432
|
+
maximum: 9999
|
4433
|
+
minimum: 1
|
4434
|
+
example: 1
|
4435
|
+
required:
|
4436
|
+
- id
|
4437
|
+
- quantity
|
4438
|
+
ReturnRequest:
|
4439
|
+
type: object
|
4440
|
+
description: |
|
4441
|
+
Request to mark items of the respective Checkout as returned and to automatically refund a payment for those
|
4442
|
+
items.
|
4443
|
+
A Return can be created for a full or the partial ShoppingCart of the Checkout.
|
4444
|
+
The platform will automatically calculate the respective amount to trigger the Refund. For a partial Return a
|
4445
|
+
list of items must be provided.
|
4446
|
+
The item details for the Refund will be automatically loaded from the Checkout.
|
4447
|
+
The returnReason can be provided for reporting and reconciliation purposes but is not mandatory.
|
4448
|
+
properties:
|
4449
|
+
returnType:
|
4450
|
+
$ref: '#/components/schemas/ReturnType'
|
4451
|
+
returnReason:
|
4452
|
+
type: string
|
4453
|
+
description: |-
|
4454
|
+
Reason of the Refund (e.g. communicated by or to the consumer).
|
4455
|
+
maxLength: 255
|
4456
|
+
example: Customer complained
|
4457
|
+
returnItems:
|
4458
|
+
type: array
|
4459
|
+
items:
|
4460
|
+
$ref: '#/components/schemas/ReturnItem'
|
4461
|
+
ReturnResponse:
|
4462
|
+
type: object
|
4463
|
+
properties:
|
4464
|
+
returnPaymentResponse:
|
4465
|
+
$ref: '#/components/schemas/RefundPaymentResponse'
|
4466
|
+
shoppingCart:
|
4467
|
+
$ref: '#/components/schemas/ShoppingCartResult'
|
4468
|
+
ReturnType:
|
4469
|
+
type: string
|
4470
|
+
description: |
|
4471
|
+
The returnType refers to the ShoppingCart items of the Checkout.
|
4472
|
+
returnType = FULL should be provided if all items should be marked as returned and the payment for the entire
|
4473
|
+
ShoppingCart should be refunded.
|
4474
|
+
returnType = PARTIAL should be provided if only certain items should be marked as returned and the Refund should
|
4475
|
+
not be made for the entire ShoppingCart. For this type the list of items has to be provided.
|
4476
|
+
Following conditions apply to the Return request:
|
4477
|
+
* items must be in status DELIVERED
|
4478
|
+
* there was no Capture, Refund or Cancel triggered over the Payment Execution resource
|
4479
|
+
* for the deliverType FULL no items are provided in the request
|
4480
|
+
Note: If a DISCOUNT productType is among the ShoppingCart items, only returnType FULL is possible.
|
4481
|
+
enum:
|
4482
|
+
- FULL
|
4483
|
+
- PARTIAL
|
4484
|
+
SepaDirectDebitPaymentMethodSpecificInput:
|
4485
|
+
type: object
|
4486
|
+
description: Object containing the specific input details for SEPA direct debit payments
|
4487
|
+
additionalProperties: false
|
4488
|
+
properties:
|
4489
|
+
paymentProduct771SpecificInput:
|
4490
|
+
$ref: '#/components/schemas/SepaDirectDebitPaymentProduct771SpecificInput'
|
4491
|
+
paymentProductId:
|
4492
|
+
type: integer
|
4493
|
+
format: int32
|
4494
|
+
maximum: 99999
|
4495
|
+
minimum: 0
|
4496
|
+
description: |-
|
4497
|
+
Payment product identifier - please check product documentation for a full overview of possible values.
|
4498
|
+
example: 840
|
4499
|
+
SepaDirectDebitPaymentProduct771SpecificInput:
|
4500
|
+
type: object
|
4501
|
+
description: Object containing information specific to SEPA Direct Debit
|
4502
|
+
properties:
|
4503
|
+
existingUniqueMandateReference:
|
4504
|
+
type: string
|
4505
|
+
description: The unique reference of the existing mandate to use in this payment.
|
4506
|
+
example: 'exampleMandateReference'
|
4507
|
+
mandate:
|
4508
|
+
$ref: '#/components/schemas/ProcessingMandateInformation'
|
4509
|
+
SepaDirectDebitPaymentMethodSpecificOutput:
|
4510
|
+
type: object
|
4511
|
+
description: Object containing the SEPA direct debit details.
|
4512
|
+
additionalProperties: false
|
4513
|
+
properties:
|
4514
|
+
paymentProductId:
|
4515
|
+
type: integer
|
4516
|
+
format: int32
|
4517
|
+
maximum: 99999
|
4518
|
+
minimum: 0
|
4519
|
+
description: |-
|
4520
|
+
Payment product identifier - please check product documentation for a full overview of possible values.
|
4521
|
+
example: 840
|
4522
|
+
paymentProduct771SpecificOutput:
|
4523
|
+
$ref: '#/components/schemas/PaymentProduct771SpecificOutput'
|
4524
|
+
SepaTransferPaymentProduct772SpecificInput:
|
4525
|
+
type: object
|
4526
|
+
description: Object containing the specific input details for SEPA credit transfers excluding cross-border ones
|
4527
|
+
properties:
|
4528
|
+
bankAccountInformation:
|
4529
|
+
$ref: '#/components/schemas/BankAccountInformation'
|
4530
|
+
Shipping:
|
4531
|
+
type: object
|
4532
|
+
description: |
|
4533
|
+
Object containing information regarding shipping / delivery
|
4534
|
+
additionalProperties: false
|
4535
|
+
properties:
|
4536
|
+
address:
|
4537
|
+
$ref: '#/components/schemas/AddressPersonal'
|
4538
|
+
ShoppingCartInput:
|
4539
|
+
type: object
|
4540
|
+
description: |
|
4541
|
+
Shopping cart data, including items and specific amounts.
|
4542
|
+
properties:
|
4543
|
+
items:
|
4544
|
+
type: array
|
4545
|
+
items:
|
4546
|
+
$ref: '#/components/schemas/CartItemInput'
|
4547
|
+
ShoppingCartPatch:
|
4548
|
+
type: object
|
4549
|
+
description: |
|
4550
|
+
Shopping cart data, including items and specific amounts.
|
4551
|
+
properties:
|
4552
|
+
items:
|
4553
|
+
type: array
|
4554
|
+
items:
|
4555
|
+
$ref: '#/components/schemas/CartItemPatch'
|
4556
|
+
ShoppingCartResult:
|
4557
|
+
type: object
|
4558
|
+
description: |
|
4559
|
+
Shopping cart data, including items and specific amounts.
|
4560
|
+
properties:
|
4561
|
+
items:
|
4562
|
+
type: array
|
4563
|
+
items:
|
4564
|
+
$ref: '#/components/schemas/CartItemResult'
|
4565
|
+
StatusCategoryValue:
|
4566
|
+
type: string
|
4567
|
+
description: Highlevel status of the payment, payout or Refund.
|
4568
|
+
enum:
|
4569
|
+
- CREATED
|
4570
|
+
- UNSUCCESSFUL
|
4571
|
+
- PENDING_PAYMENT
|
4572
|
+
- PENDING_MERCHANT
|
4573
|
+
- PENDING_CONNECT_OR_3RD_PARTY
|
4574
|
+
- COMPLETED
|
4575
|
+
- REVERSED
|
4576
|
+
- REFUNDED
|
4577
|
+
StatusCheckout:
|
4578
|
+
readOnly: true
|
4579
|
+
type: string
|
4580
|
+
description: Current high-level status of the Checkout
|
4581
|
+
enum:
|
4582
|
+
- OPEN
|
4583
|
+
- PENDING_COMPLETION
|
4584
|
+
- COMPLETED
|
4585
|
+
- BILLED
|
4586
|
+
- CHARGEBACKED
|
4587
|
+
- DELETED
|
4588
|
+
example: OPEN
|
4589
|
+
StatusOutput:
|
4590
|
+
description: |-
|
4591
|
+
Contains information about whether the payment of the Checkout has already been completed and how much of the
|
4592
|
+
total sum has been collected already.
|
4593
|
+
type: object
|
4594
|
+
additionalProperties: false
|
4595
|
+
readOnly: true
|
4596
|
+
properties:
|
4597
|
+
paymentStatus:
|
4598
|
+
type: string
|
4599
|
+
enum:
|
4600
|
+
- WAITING_FOR_PAYMENT
|
4601
|
+
- PAYMENT_NOT_COMPLETED
|
4602
|
+
- PAYMENT_COMPLETED
|
4603
|
+
- NO_PAYMENT
|
4604
|
+
example: WAITING_FOR_PAYMENT
|
4605
|
+
description: |-
|
4606
|
+
* WAITING_FOR_PAYMENT - There does not yet exist a PaymentExecution nor a PaymentInformation for this
|
4607
|
+
Checkout.
|
4608
|
+
* PAYMENT_NOT_COMPLETED - There exists a PaymentExecution or a PaymentInformation for this Checkout, but all
|
4609
|
+
or some part of the total amount is still unpaid.
|
4610
|
+
* PAYMENT_COMPLETED - There exists a PaymentExecution or a PaymentInformation for this Checkout and the
|
4611
|
+
total amount is fully paid.
|
4612
|
+
* NO_PAYMENT - Checkout was created and deleted. No Payment Execution and no other actions can be triggered
|
4613
|
+
on the Checkout.
|
4614
|
+
isModifiable:
|
4615
|
+
type: boolean
|
4616
|
+
description: |-
|
4617
|
+
Indicates whether the Checkout can still be modified. False if any payment is already in progress, true
|
4618
|
+
otherwise.
|
4619
|
+
openAmount:
|
4620
|
+
type: integer
|
4621
|
+
description: Amount in cents always having 2 decimals. The amount yet to be paid.
|
4622
|
+
format: int64
|
4623
|
+
maximum: 999999999999
|
4624
|
+
minimum: 0
|
4625
|
+
collectedAmount:
|
4626
|
+
type: integer
|
4627
|
+
description: Amount in cents always having 2 decimals. The amount that has already been collected.
|
4628
|
+
format: int64
|
4629
|
+
maximum: 999999999999
|
4630
|
+
minimum: 0
|
4631
|
+
cancelledAmount:
|
4632
|
+
type: integer
|
4633
|
+
description: Amount in cents always having 2 decimals. The amount that has already been cancelled.
|
4634
|
+
format: int64
|
4635
|
+
maximum: 999999999999
|
4636
|
+
minimum: 0
|
4637
|
+
refundedAmount:
|
4638
|
+
type: integer
|
4639
|
+
description: |-
|
4640
|
+
Amount in cents always having 2 decimals. Amount that has been collected but was refunded to the customer.
|
4641
|
+
format: int64
|
4642
|
+
maximum: 999999999999
|
4643
|
+
minimum: 0
|
4644
|
+
chargebackAmount:
|
4645
|
+
type: integer
|
4646
|
+
description: |-
|
4647
|
+
Amount in cents always having 2 decimals. Amount that has been collected but was charged back by the
|
4648
|
+
customer.
|
4649
|
+
format: int64
|
4650
|
+
maximum: 999999999999
|
4651
|
+
minimum: 0
|
4652
|
+
StatusValue:
|
4653
|
+
type: string
|
4654
|
+
description: Current high-level status of the payment in a human-readable form.
|
4655
|
+
enum:
|
4656
|
+
- CREATED
|
4657
|
+
- CANCELLED
|
4658
|
+
- REJECTED
|
4659
|
+
- REJECTED_CAPTURE
|
4660
|
+
- REJECTED_PAUSE
|
4661
|
+
- REJECTED_UPDATE
|
4662
|
+
- REDIRECTED
|
4663
|
+
- PENDING_PAYMENT
|
4664
|
+
- PENDING_COMPLETION
|
4665
|
+
- PENDING_CAPTURE
|
4666
|
+
- AUTHORIZATION_REQUESTED
|
4667
|
+
- CAPTURE_REQUESTED
|
4668
|
+
- CAPTURED
|
4669
|
+
- REVERSED
|
4670
|
+
- REFUND_REQUESTED
|
4671
|
+
- REFUNDED
|
4672
|
+
- REJECTED_REFUND
|
4673
|
+
- CANCELLATION_REQUESTED
|
4674
|
+
- PAUSED
|
4675
|
+
- CHARGEBACKED
|
4676
|
+
- CHARGEBACK_REVERSED
|
4677
|
+
- ACCOUNT_CREDITED
|
4678
|
+
- ACCOUNT_DEBITED
|
4679
|
+
- PAYOUT_REQUESTED
|
4680
|
+
- REJECTED_CREDIT
|
4681
|
+
- UPDATED
|
4682
|
+
ThreeDSecureResults:
|
4683
|
+
type: object
|
4684
|
+
description: |-
|
4685
|
+
3D Secure results object
|
4686
|
+
additionalProperties: false
|
4687
|
+
properties:
|
4688
|
+
version:
|
4689
|
+
type: string
|
4690
|
+
description: 3D Secure Protocol version used during this transaction.
|
4691
|
+
example: 2.2.0
|
4692
|
+
schemeEci:
|
4693
|
+
type: string
|
4694
|
+
maxLength: 2
|
4695
|
+
description: 3D Secure ECI (Electronic Commerce Indicator) depending on the Scheme. Returned by DS.
|
4696
|
+
example: 05
|
4697
|
+
appliedExemption:
|
4698
|
+
type: string
|
4699
|
+
enum:
|
4700
|
+
- low-value
|
4701
|
+
- merchant-acquirer-transaction-risk-analysis
|
4702
|
+
description: |
|
4703
|
+
Exemption requested and applied in the authorization.
|
4704
|
+
TransactionChannel:
|
4705
|
+
type: string
|
4706
|
+
enum:
|
4707
|
+
- ECOMMERCE
|
4708
|
+
- MOTO
|
4709
|
+
description: |-
|
4710
|
+
Indicates the channel via which the payment is created. Allowed values:
|
4711
|
+
* ECOMMERCE - The transaction is a regular E-Commerce transaction.
|
4712
|
+
* MOTO - The transaction is a Mail Order/Telephone Order.
|
4713
|
+
|
4714
|
+
Defaults to ECOMMERCE.
|
4715
|
+
UnscheduledCardOnFileRequestor:
|
4716
|
+
type: string
|
4717
|
+
description: |-
|
4718
|
+
Indicates which party initiated the unscheduled recurring transaction. Allowed values:
|
4719
|
+
* merchantInitiated - Merchant Initiated Transaction.
|
4720
|
+
* cardholderInitiated - Cardholder Initiated Transaction.
|
4721
|
+
Note:
|
4722
|
+
* When a customer has chosen to use a token on a hosted Checkout this property is set to
|
4723
|
+
"cardholderInitiated".
|
4724
|
+
enum:
|
4725
|
+
- merchantInitiated
|
4726
|
+
- cardholderInitiated
|
4727
|
+
x-enum-to-string: false
|
4728
|
+
UnscheduledCardOnFileSequenceIndicator:
|
4729
|
+
type: string
|
4730
|
+
description: |-
|
4731
|
+
* first = This transaction is the first of a series of unscheduled recurring transactions
|
4732
|
+
* subsequent = This transaction is a subsequent transaction in a series of unscheduled recurring transactions
|
4733
|
+
Note: this property is not allowed if isRecurring is true.
|
4734
|
+
enum:
|
4735
|
+
- first
|
4736
|
+
- subsequent
|
4737
|
+
x-enum-to-string: false
|