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/coverage/index.html
DELETED
@@ -1,3953 +0,0 @@
|
|
1
|
-
<!DOCTYPE html>
|
2
|
-
<html xmlns='http://www.w3.org/1999/xhtml'>
|
3
|
-
<head>
|
4
|
-
<title>Code coverage for Pcp-serversdk-ruby</title>
|
5
|
-
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
|
6
|
-
<script src='./assets/0.12.3/application.js' type='text/javascript'></script>
|
7
|
-
<link href='./assets/0.12.3/application.css' media='screen, projection, print' rel='stylesheet' type='text/css' />
|
8
|
-
<link rel="shortcut icon" type="image/png" href="./assets/0.12.3/favicon_green.png" />
|
9
|
-
<link rel="icon" type="image/png" href="./assets/0.12.3/favicon.png" />
|
10
|
-
</head>
|
11
|
-
|
12
|
-
<body>
|
13
|
-
<div id="loading">
|
14
|
-
<img src="./assets/0.12.3/loading.gif" alt="loading"/>
|
15
|
-
</div>
|
16
|
-
<div id="wrapper" class="hide">
|
17
|
-
<div class="timestamp">Generated <abbr class="timeago" title="2024-08-28T09:54:09+02:00">2024-08-28T09:54:09+02:00</abbr></div>
|
18
|
-
<ul class="group_tabs"></ul>
|
19
|
-
|
20
|
-
<div id="content">
|
21
|
-
<div class="file_list_container" id="AllFiles">
|
22
|
-
<h2>
|
23
|
-
<span class="group_name">All Files</span>
|
24
|
-
(<span class="covered_percent">
|
25
|
-
<span class="green">
|
26
|
-
99.45%
|
27
|
-
</span>
|
28
|
-
|
29
|
-
</span>
|
30
|
-
covered at
|
31
|
-
<span class="covered_strength">
|
32
|
-
<span class="green">
|
33
|
-
9.33
|
34
|
-
</span>
|
35
|
-
</span> hits/line
|
36
|
-
)
|
37
|
-
</h2>
|
38
|
-
|
39
|
-
<a name="AllFiles"></a>
|
40
|
-
|
41
|
-
<div>
|
42
|
-
<b>8</b> files in total.
|
43
|
-
</div>
|
44
|
-
|
45
|
-
<div class="t-line-summary">
|
46
|
-
<b>181</b> relevant lines,
|
47
|
-
<span class="green"><b>180</b> lines covered</span> and
|
48
|
-
<span class="red"><b>1</b> lines missed. </span>
|
49
|
-
(<span class="green">
|
50
|
-
99.45%
|
51
|
-
</span>
|
52
|
-
)
|
53
|
-
</div>
|
54
|
-
|
55
|
-
|
56
|
-
|
57
|
-
<div class="file_list--responsive">
|
58
|
-
<table class="file_list">
|
59
|
-
<thead>
|
60
|
-
<tr>
|
61
|
-
<th>File</th>
|
62
|
-
<th class="cell--number">% covered</th>
|
63
|
-
<th class="cell--number">Lines</th>
|
64
|
-
<th class="cell--number">Relevant Lines</th>
|
65
|
-
<th class="cell--number">Lines covered</th>
|
66
|
-
<th class="cell--number">Lines missed</th>
|
67
|
-
<th class="cell--number">Avg. Hits / Line</th>
|
68
|
-
|
69
|
-
</tr>
|
70
|
-
</thead>
|
71
|
-
<tbody>
|
72
|
-
|
73
|
-
<tr class="t-file">
|
74
|
-
<td class="strong t-file__name"><a href="#1a9ac2cad684c669aacbbff5ea659d490cc76244" class="src_link" title="lib/PCP-server-Ruby-SDK/communicator_configuration.rb">lib/PCP-server-Ruby-SDK/communicator_configuration.rb</a></td>
|
75
|
-
<td class="green strong cell--number t-file__coverage">100.00 %</td>
|
76
|
-
<td class="cell--number">9</td>
|
77
|
-
<td class="cell--number">6</td>
|
78
|
-
<td class="cell--number">6</td>
|
79
|
-
<td class="cell--number">0</td>
|
80
|
-
<td class="cell--number">5.00</td>
|
81
|
-
|
82
|
-
</tr>
|
83
|
-
|
84
|
-
<tr class="t-file">
|
85
|
-
<td class="strong t-file__name"><a href="#46b4f5b39e102ba00d88cf4418db91720374fb5c" class="src_link" title="lib/PCP-server-Ruby-SDK/errors/api_error_response_exception.rb">lib/PCP-server-Ruby-SDK/errors/api_error_response_exception.rb</a></td>
|
86
|
-
<td class="green strong cell--number t-file__coverage">100.00 %</td>
|
87
|
-
<td class="cell--number">15</td>
|
88
|
-
<td class="cell--number">9</td>
|
89
|
-
<td class="cell--number">9</td>
|
90
|
-
<td class="cell--number">0</td>
|
91
|
-
<td class="cell--number">1.78</td>
|
92
|
-
|
93
|
-
</tr>
|
94
|
-
|
95
|
-
<tr class="t-file">
|
96
|
-
<td class="strong t-file__name"><a href="#a23017c7b3b925c8b1185ebd9417036ead823395" class="src_link" title="lib/PCP-server-Ruby-SDK/errors/api_exception.rb">lib/PCP-server-Ruby-SDK/errors/api_exception.rb</a></td>
|
97
|
-
<td class="green strong cell--number t-file__coverage">93.75 %</td>
|
98
|
-
<td class="cell--number">27</td>
|
99
|
-
<td class="cell--number">16</td>
|
100
|
-
<td class="cell--number">15</td>
|
101
|
-
<td class="cell--number">1</td>
|
102
|
-
<td class="cell--number">3.75</td>
|
103
|
-
|
104
|
-
</tr>
|
105
|
-
|
106
|
-
<tr class="t-file">
|
107
|
-
<td class="strong t-file__name"><a href="#36ba805420986e58b16d9fcd699b3bde93b34db3" class="src_link" title="lib/PCP-server-Ruby-SDK/errors/api_response_retrieval_exception.rb">lib/PCP-server-Ruby-SDK/errors/api_response_retrieval_exception.rb</a></td>
|
108
|
-
<td class="green strong cell--number t-file__coverage">100.00 %</td>
|
109
|
-
<td class="cell--number">7</td>
|
110
|
-
<td class="cell--number">4</td>
|
111
|
-
<td class="cell--number">4</td>
|
112
|
-
<td class="cell--number">0</td>
|
113
|
-
<td class="cell--number">1.50</td>
|
114
|
-
|
115
|
-
</tr>
|
116
|
-
|
117
|
-
<tr class="t-file">
|
118
|
-
<td class="strong t-file__name"><a href="#a67fed72dc68656139ca07599345f99135df4c32" class="src_link" title="lib/PCP-server-Ruby-SDK/queries/get_checkouts_query.rb">lib/PCP-server-Ruby-SDK/queries/get_checkouts_query.rb</a></td>
|
119
|
-
<td class="green strong cell--number t-file__coverage">100.00 %</td>
|
120
|
-
<td class="cell--number">61</td>
|
121
|
-
<td class="cell--number">42</td>
|
122
|
-
<td class="cell--number">42</td>
|
123
|
-
<td class="cell--number">0</td>
|
124
|
-
<td class="cell--number">28.00</td>
|
125
|
-
|
126
|
-
</tr>
|
127
|
-
|
128
|
-
<tr class="t-file">
|
129
|
-
<td class="strong t-file__name"><a href="#3773982d42c2f8ec6e50b98fd656a43f15a7a5dd" class="src_link" title="lib/PCP-server-Ruby-SDK/queries/get_commerce_cases_query.rb">lib/PCP-server-Ruby-SDK/queries/get_commerce_cases_query.rb</a></td>
|
130
|
-
<td class="green strong cell--number t-file__coverage">100.00 %</td>
|
131
|
-
<td class="cell--number">71</td>
|
132
|
-
<td class="cell--number">44</td>
|
133
|
-
<td class="cell--number">44</td>
|
134
|
-
<td class="cell--number">0</td>
|
135
|
-
<td class="cell--number">4.27</td>
|
136
|
-
|
137
|
-
</tr>
|
138
|
-
|
139
|
-
<tr class="t-file">
|
140
|
-
<td class="strong t-file__name"><a href="#74fc2a7c921ba54233c3fb66a8fd357d93da25d5" class="src_link" title="lib/PCP-server-Ruby-SDK/request_header_generator.rb">lib/PCP-server-Ruby-SDK/request_header_generator.rb</a></td>
|
141
|
-
<td class="green strong cell--number t-file__coverage">100.00 %</td>
|
142
|
-
<td class="cell--number">74</td>
|
143
|
-
<td class="cell--number">49</td>
|
144
|
-
<td class="cell--number">49</td>
|
145
|
-
<td class="cell--number">0</td>
|
146
|
-
<td class="cell--number">3.06</td>
|
147
|
-
|
148
|
-
</tr>
|
149
|
-
|
150
|
-
<tr class="t-file">
|
151
|
-
<td class="strong t-file__name"><a href="#c409a9e8ea9442fe67bd1981af22e4aead510db0" class="src_link" title="lib/PCP-server-Ruby-SDK/utils/server_meta_info.rb">lib/PCP-server-Ruby-SDK/utils/server_meta_info.rb</a></td>
|
152
|
-
<td class="green strong cell--number t-file__coverage">100.00 %</td>
|
153
|
-
<td class="cell--number">22</td>
|
154
|
-
<td class="cell--number">11</td>
|
155
|
-
<td class="cell--number">11</td>
|
156
|
-
<td class="cell--number">0</td>
|
157
|
-
<td class="cell--number">5.64</td>
|
158
|
-
|
159
|
-
</tr>
|
160
|
-
|
161
|
-
</tbody>
|
162
|
-
</table>
|
163
|
-
</div>
|
164
|
-
</div>
|
165
|
-
|
166
|
-
|
167
|
-
|
168
|
-
<div class="file_list_container" id="Errors">
|
169
|
-
<h2>
|
170
|
-
<span class="group_name">Errors</span>
|
171
|
-
(<span class="covered_percent">
|
172
|
-
<span class="green">
|
173
|
-
96.55%
|
174
|
-
</span>
|
175
|
-
|
176
|
-
</span>
|
177
|
-
covered at
|
178
|
-
<span class="covered_strength">
|
179
|
-
<span class="green">
|
180
|
-
2.83
|
181
|
-
</span>
|
182
|
-
</span> hits/line
|
183
|
-
)
|
184
|
-
</h2>
|
185
|
-
|
186
|
-
<a name="Errors"></a>
|
187
|
-
|
188
|
-
<div>
|
189
|
-
<b>3</b> files in total.
|
190
|
-
</div>
|
191
|
-
|
192
|
-
<div class="t-line-summary">
|
193
|
-
<b>29</b> relevant lines,
|
194
|
-
<span class="green"><b>28</b> lines covered</span> and
|
195
|
-
<span class="red"><b>1</b> lines missed. </span>
|
196
|
-
(<span class="green">
|
197
|
-
96.55%
|
198
|
-
</span>
|
199
|
-
)
|
200
|
-
</div>
|
201
|
-
|
202
|
-
|
203
|
-
|
204
|
-
<div class="file_list--responsive">
|
205
|
-
<table class="file_list">
|
206
|
-
<thead>
|
207
|
-
<tr>
|
208
|
-
<th>File</th>
|
209
|
-
<th class="cell--number">% covered</th>
|
210
|
-
<th class="cell--number">Lines</th>
|
211
|
-
<th class="cell--number">Relevant Lines</th>
|
212
|
-
<th class="cell--number">Lines covered</th>
|
213
|
-
<th class="cell--number">Lines missed</th>
|
214
|
-
<th class="cell--number">Avg. Hits / Line</th>
|
215
|
-
|
216
|
-
</tr>
|
217
|
-
</thead>
|
218
|
-
<tbody>
|
219
|
-
|
220
|
-
<tr class="t-file">
|
221
|
-
<td class="strong t-file__name"><a href="#46b4f5b39e102ba00d88cf4418db91720374fb5c" class="src_link" title="lib/PCP-server-Ruby-SDK/errors/api_error_response_exception.rb">lib/PCP-server-Ruby-SDK/errors/api_error_response_exception.rb</a></td>
|
222
|
-
<td class="green strong cell--number t-file__coverage">100.00 %</td>
|
223
|
-
<td class="cell--number">15</td>
|
224
|
-
<td class="cell--number">9</td>
|
225
|
-
<td class="cell--number">9</td>
|
226
|
-
<td class="cell--number">0</td>
|
227
|
-
<td class="cell--number">1.78</td>
|
228
|
-
|
229
|
-
</tr>
|
230
|
-
|
231
|
-
<tr class="t-file">
|
232
|
-
<td class="strong t-file__name"><a href="#a23017c7b3b925c8b1185ebd9417036ead823395" class="src_link" title="lib/PCP-server-Ruby-SDK/errors/api_exception.rb">lib/PCP-server-Ruby-SDK/errors/api_exception.rb</a></td>
|
233
|
-
<td class="green strong cell--number t-file__coverage">93.75 %</td>
|
234
|
-
<td class="cell--number">27</td>
|
235
|
-
<td class="cell--number">16</td>
|
236
|
-
<td class="cell--number">15</td>
|
237
|
-
<td class="cell--number">1</td>
|
238
|
-
<td class="cell--number">3.75</td>
|
239
|
-
|
240
|
-
</tr>
|
241
|
-
|
242
|
-
<tr class="t-file">
|
243
|
-
<td class="strong t-file__name"><a href="#36ba805420986e58b16d9fcd699b3bde93b34db3" class="src_link" title="lib/PCP-server-Ruby-SDK/errors/api_response_retrieval_exception.rb">lib/PCP-server-Ruby-SDK/errors/api_response_retrieval_exception.rb</a></td>
|
244
|
-
<td class="green strong cell--number t-file__coverage">100.00 %</td>
|
245
|
-
<td class="cell--number">7</td>
|
246
|
-
<td class="cell--number">4</td>
|
247
|
-
<td class="cell--number">4</td>
|
248
|
-
<td class="cell--number">0</td>
|
249
|
-
<td class="cell--number">1.50</td>
|
250
|
-
|
251
|
-
</tr>
|
252
|
-
|
253
|
-
</tbody>
|
254
|
-
</table>
|
255
|
-
</div>
|
256
|
-
</div>
|
257
|
-
|
258
|
-
|
259
|
-
<div class="file_list_container" id="API">
|
260
|
-
<h2>
|
261
|
-
<span class="group_name">API</span>
|
262
|
-
(<span class="covered_percent">
|
263
|
-
<span class="green">
|
264
|
-
100.0%
|
265
|
-
</span>
|
266
|
-
|
267
|
-
</span>
|
268
|
-
covered at
|
269
|
-
<span class="covered_strength">
|
270
|
-
<span class="red">
|
271
|
-
0.0
|
272
|
-
</span>
|
273
|
-
</span> hits/line
|
274
|
-
)
|
275
|
-
</h2>
|
276
|
-
|
277
|
-
<a name="API"></a>
|
278
|
-
|
279
|
-
<div>
|
280
|
-
<b>0</b> files in total.
|
281
|
-
</div>
|
282
|
-
|
283
|
-
<div class="t-line-summary">
|
284
|
-
<b>0</b> relevant lines,
|
285
|
-
<span class="green"><b>0</b> lines covered</span> and
|
286
|
-
<span class="red"><b>0</b> lines missed. </span>
|
287
|
-
(<span class="green">
|
288
|
-
100.0%
|
289
|
-
</span>
|
290
|
-
)
|
291
|
-
</div>
|
292
|
-
|
293
|
-
|
294
|
-
|
295
|
-
<div class="file_list--responsive">
|
296
|
-
<table class="file_list">
|
297
|
-
<thead>
|
298
|
-
<tr>
|
299
|
-
<th>File</th>
|
300
|
-
<th class="cell--number">% covered</th>
|
301
|
-
<th class="cell--number">Lines</th>
|
302
|
-
<th class="cell--number">Relevant Lines</th>
|
303
|
-
<th class="cell--number">Lines covered</th>
|
304
|
-
<th class="cell--number">Lines missed</th>
|
305
|
-
<th class="cell--number">Avg. Hits / Line</th>
|
306
|
-
|
307
|
-
</tr>
|
308
|
-
</thead>
|
309
|
-
<tbody>
|
310
|
-
|
311
|
-
</tbody>
|
312
|
-
</table>
|
313
|
-
</div>
|
314
|
-
</div>
|
315
|
-
|
316
|
-
|
317
|
-
<div class="file_list_container" id="Utils">
|
318
|
-
<h2>
|
319
|
-
<span class="group_name">Utils</span>
|
320
|
-
(<span class="covered_percent">
|
321
|
-
<span class="green">
|
322
|
-
100.0%
|
323
|
-
</span>
|
324
|
-
|
325
|
-
</span>
|
326
|
-
covered at
|
327
|
-
<span class="covered_strength">
|
328
|
-
<span class="green">
|
329
|
-
5.64
|
330
|
-
</span>
|
331
|
-
</span> hits/line
|
332
|
-
)
|
333
|
-
</h2>
|
334
|
-
|
335
|
-
<a name="Utils"></a>
|
336
|
-
|
337
|
-
<div>
|
338
|
-
<b>1</b> files in total.
|
339
|
-
</div>
|
340
|
-
|
341
|
-
<div class="t-line-summary">
|
342
|
-
<b>11</b> relevant lines,
|
343
|
-
<span class="green"><b>11</b> lines covered</span> and
|
344
|
-
<span class="red"><b>0</b> lines missed. </span>
|
345
|
-
(<span class="green">
|
346
|
-
100.0%
|
347
|
-
</span>
|
348
|
-
)
|
349
|
-
</div>
|
350
|
-
|
351
|
-
|
352
|
-
|
353
|
-
<div class="file_list--responsive">
|
354
|
-
<table class="file_list">
|
355
|
-
<thead>
|
356
|
-
<tr>
|
357
|
-
<th>File</th>
|
358
|
-
<th class="cell--number">% covered</th>
|
359
|
-
<th class="cell--number">Lines</th>
|
360
|
-
<th class="cell--number">Relevant Lines</th>
|
361
|
-
<th class="cell--number">Lines covered</th>
|
362
|
-
<th class="cell--number">Lines missed</th>
|
363
|
-
<th class="cell--number">Avg. Hits / Line</th>
|
364
|
-
|
365
|
-
</tr>
|
366
|
-
</thead>
|
367
|
-
<tbody>
|
368
|
-
|
369
|
-
<tr class="t-file">
|
370
|
-
<td class="strong t-file__name"><a href="#c409a9e8ea9442fe67bd1981af22e4aead510db0" class="src_link" title="lib/PCP-server-Ruby-SDK/utils/server_meta_info.rb">lib/PCP-server-Ruby-SDK/utils/server_meta_info.rb</a></td>
|
371
|
-
<td class="green strong cell--number t-file__coverage">100.00 %</td>
|
372
|
-
<td class="cell--number">22</td>
|
373
|
-
<td class="cell--number">11</td>
|
374
|
-
<td class="cell--number">11</td>
|
375
|
-
<td class="cell--number">0</td>
|
376
|
-
<td class="cell--number">5.64</td>
|
377
|
-
|
378
|
-
</tr>
|
379
|
-
|
380
|
-
</tbody>
|
381
|
-
</table>
|
382
|
-
</div>
|
383
|
-
</div>
|
384
|
-
|
385
|
-
|
386
|
-
<div class="file_list_container" id="Queries">
|
387
|
-
<h2>
|
388
|
-
<span class="group_name">Queries</span>
|
389
|
-
(<span class="covered_percent">
|
390
|
-
<span class="green">
|
391
|
-
100.0%
|
392
|
-
</span>
|
393
|
-
|
394
|
-
</span>
|
395
|
-
covered at
|
396
|
-
<span class="covered_strength">
|
397
|
-
<span class="green">
|
398
|
-
15.86
|
399
|
-
</span>
|
400
|
-
</span> hits/line
|
401
|
-
)
|
402
|
-
</h2>
|
403
|
-
|
404
|
-
<a name="Queries"></a>
|
405
|
-
|
406
|
-
<div>
|
407
|
-
<b>2</b> files in total.
|
408
|
-
</div>
|
409
|
-
|
410
|
-
<div class="t-line-summary">
|
411
|
-
<b>86</b> relevant lines,
|
412
|
-
<span class="green"><b>86</b> lines covered</span> and
|
413
|
-
<span class="red"><b>0</b> lines missed. </span>
|
414
|
-
(<span class="green">
|
415
|
-
100.0%
|
416
|
-
</span>
|
417
|
-
)
|
418
|
-
</div>
|
419
|
-
|
420
|
-
|
421
|
-
|
422
|
-
<div class="file_list--responsive">
|
423
|
-
<table class="file_list">
|
424
|
-
<thead>
|
425
|
-
<tr>
|
426
|
-
<th>File</th>
|
427
|
-
<th class="cell--number">% covered</th>
|
428
|
-
<th class="cell--number">Lines</th>
|
429
|
-
<th class="cell--number">Relevant Lines</th>
|
430
|
-
<th class="cell--number">Lines covered</th>
|
431
|
-
<th class="cell--number">Lines missed</th>
|
432
|
-
<th class="cell--number">Avg. Hits / Line</th>
|
433
|
-
|
434
|
-
</tr>
|
435
|
-
</thead>
|
436
|
-
<tbody>
|
437
|
-
|
438
|
-
<tr class="t-file">
|
439
|
-
<td class="strong t-file__name"><a href="#a67fed72dc68656139ca07599345f99135df4c32" class="src_link" title="lib/PCP-server-Ruby-SDK/queries/get_checkouts_query.rb">lib/PCP-server-Ruby-SDK/queries/get_checkouts_query.rb</a></td>
|
440
|
-
<td class="green strong cell--number t-file__coverage">100.00 %</td>
|
441
|
-
<td class="cell--number">61</td>
|
442
|
-
<td class="cell--number">42</td>
|
443
|
-
<td class="cell--number">42</td>
|
444
|
-
<td class="cell--number">0</td>
|
445
|
-
<td class="cell--number">28.00</td>
|
446
|
-
|
447
|
-
</tr>
|
448
|
-
|
449
|
-
<tr class="t-file">
|
450
|
-
<td class="strong t-file__name"><a href="#3773982d42c2f8ec6e50b98fd656a43f15a7a5dd" class="src_link" title="lib/PCP-server-Ruby-SDK/queries/get_commerce_cases_query.rb">lib/PCP-server-Ruby-SDK/queries/get_commerce_cases_query.rb</a></td>
|
451
|
-
<td class="green strong cell--number t-file__coverage">100.00 %</td>
|
452
|
-
<td class="cell--number">71</td>
|
453
|
-
<td class="cell--number">44</td>
|
454
|
-
<td class="cell--number">44</td>
|
455
|
-
<td class="cell--number">0</td>
|
456
|
-
<td class="cell--number">4.27</td>
|
457
|
-
|
458
|
-
</tr>
|
459
|
-
|
460
|
-
</tbody>
|
461
|
-
</table>
|
462
|
-
</div>
|
463
|
-
</div>
|
464
|
-
|
465
|
-
|
466
|
-
<div class="file_list_container" id="Ungrouped">
|
467
|
-
<h2>
|
468
|
-
<span class="group_name">Ungrouped</span>
|
469
|
-
(<span class="covered_percent">
|
470
|
-
<span class="green">
|
471
|
-
100.0%
|
472
|
-
</span>
|
473
|
-
|
474
|
-
</span>
|
475
|
-
covered at
|
476
|
-
<span class="covered_strength">
|
477
|
-
<span class="green">
|
478
|
-
3.27
|
479
|
-
</span>
|
480
|
-
</span> hits/line
|
481
|
-
)
|
482
|
-
</h2>
|
483
|
-
|
484
|
-
<a name="Ungrouped"></a>
|
485
|
-
|
486
|
-
<div>
|
487
|
-
<b>2</b> files in total.
|
488
|
-
</div>
|
489
|
-
|
490
|
-
<div class="t-line-summary">
|
491
|
-
<b>55</b> relevant lines,
|
492
|
-
<span class="green"><b>55</b> lines covered</span> and
|
493
|
-
<span class="red"><b>0</b> lines missed. </span>
|
494
|
-
(<span class="green">
|
495
|
-
100.0%
|
496
|
-
</span>
|
497
|
-
)
|
498
|
-
</div>
|
499
|
-
|
500
|
-
|
501
|
-
|
502
|
-
<div class="file_list--responsive">
|
503
|
-
<table class="file_list">
|
504
|
-
<thead>
|
505
|
-
<tr>
|
506
|
-
<th>File</th>
|
507
|
-
<th class="cell--number">% covered</th>
|
508
|
-
<th class="cell--number">Lines</th>
|
509
|
-
<th class="cell--number">Relevant Lines</th>
|
510
|
-
<th class="cell--number">Lines covered</th>
|
511
|
-
<th class="cell--number">Lines missed</th>
|
512
|
-
<th class="cell--number">Avg. Hits / Line</th>
|
513
|
-
|
514
|
-
</tr>
|
515
|
-
</thead>
|
516
|
-
<tbody>
|
517
|
-
|
518
|
-
<tr class="t-file">
|
519
|
-
<td class="strong t-file__name"><a href="#1a9ac2cad684c669aacbbff5ea659d490cc76244" class="src_link" title="lib/PCP-server-Ruby-SDK/communicator_configuration.rb">lib/PCP-server-Ruby-SDK/communicator_configuration.rb</a></td>
|
520
|
-
<td class="green strong cell--number t-file__coverage">100.00 %</td>
|
521
|
-
<td class="cell--number">9</td>
|
522
|
-
<td class="cell--number">6</td>
|
523
|
-
<td class="cell--number">6</td>
|
524
|
-
<td class="cell--number">0</td>
|
525
|
-
<td class="cell--number">5.00</td>
|
526
|
-
|
527
|
-
</tr>
|
528
|
-
|
529
|
-
<tr class="t-file">
|
530
|
-
<td class="strong t-file__name"><a href="#74fc2a7c921ba54233c3fb66a8fd357d93da25d5" class="src_link" title="lib/PCP-server-Ruby-SDK/request_header_generator.rb">lib/PCP-server-Ruby-SDK/request_header_generator.rb</a></td>
|
531
|
-
<td class="green strong cell--number t-file__coverage">100.00 %</td>
|
532
|
-
<td class="cell--number">74</td>
|
533
|
-
<td class="cell--number">49</td>
|
534
|
-
<td class="cell--number">49</td>
|
535
|
-
<td class="cell--number">0</td>
|
536
|
-
<td class="cell--number">3.06</td>
|
537
|
-
|
538
|
-
</tr>
|
539
|
-
|
540
|
-
</tbody>
|
541
|
-
</table>
|
542
|
-
</div>
|
543
|
-
</div>
|
544
|
-
|
545
|
-
|
546
|
-
</div>
|
547
|
-
|
548
|
-
<div id="footer">
|
549
|
-
Generated by <a href="https://github.com/simplecov-ruby/simplecov">simplecov</a> v0.22.0
|
550
|
-
and simplecov-html v0.12.3<br/>
|
551
|
-
using RSpec
|
552
|
-
</div>
|
553
|
-
|
554
|
-
<div class="source_files">
|
555
|
-
|
556
|
-
<div class="source_table" id="1a9ac2cad684c669aacbbff5ea659d490cc76244">
|
557
|
-
<div class="header">
|
558
|
-
<h3>lib/PCP-server-Ruby-SDK/communicator_configuration.rb</h3>
|
559
|
-
<h4>
|
560
|
-
<span class="green">
|
561
|
-
100.0%
|
562
|
-
</span>
|
563
|
-
|
564
|
-
lines covered
|
565
|
-
</h4>
|
566
|
-
|
567
|
-
|
568
|
-
|
569
|
-
<div class="t-line-summary">
|
570
|
-
<b>6</b> relevant lines.
|
571
|
-
<span class="green"><b>6</b> lines covered</span> and
|
572
|
-
<span class="red"><b>0</b> lines missed.</span>
|
573
|
-
</div>
|
574
|
-
|
575
|
-
|
576
|
-
|
577
|
-
</div>
|
578
|
-
|
579
|
-
<pre>
|
580
|
-
<ol>
|
581
|
-
|
582
|
-
<div>
|
583
|
-
<li class="covered" data-hits="1" data-linenumber="1">
|
584
|
-
<span class="hits">1</span>
|
585
|
-
|
586
|
-
|
587
|
-
|
588
|
-
|
589
|
-
<code class="ruby">class CommunicatorConfiguration</code>
|
590
|
-
</li>
|
591
|
-
</div>
|
592
|
-
|
593
|
-
<div>
|
594
|
-
<li class="covered" data-hits="1" data-linenumber="2">
|
595
|
-
<span class="hits">1</span>
|
596
|
-
|
597
|
-
|
598
|
-
|
599
|
-
|
600
|
-
<code class="ruby"> attr_reader :api_key, :api_secret, :host</code>
|
601
|
-
</li>
|
602
|
-
</div>
|
603
|
-
|
604
|
-
<div>
|
605
|
-
<li class="never" data-hits="" data-linenumber="3">
|
606
|
-
|
607
|
-
|
608
|
-
|
609
|
-
|
610
|
-
|
611
|
-
<code class="ruby"></code>
|
612
|
-
</li>
|
613
|
-
</div>
|
614
|
-
|
615
|
-
<div>
|
616
|
-
<li class="covered" data-hits="1" data-linenumber="4">
|
617
|
-
<span class="hits">1</span>
|
618
|
-
|
619
|
-
|
620
|
-
|
621
|
-
|
622
|
-
<code class="ruby"> def initialize(api_key, api_secret, host)</code>
|
623
|
-
</li>
|
624
|
-
</div>
|
625
|
-
|
626
|
-
<div>
|
627
|
-
<li class="covered" data-hits="9" data-linenumber="5">
|
628
|
-
<span class="hits">9</span>
|
629
|
-
|
630
|
-
|
631
|
-
|
632
|
-
|
633
|
-
<code class="ruby"> @api_key = api_key</code>
|
634
|
-
</li>
|
635
|
-
</div>
|
636
|
-
|
637
|
-
<div>
|
638
|
-
<li class="covered" data-hits="9" data-linenumber="6">
|
639
|
-
<span class="hits">9</span>
|
640
|
-
|
641
|
-
|
642
|
-
|
643
|
-
|
644
|
-
<code class="ruby"> @api_secret = api_secret</code>
|
645
|
-
</li>
|
646
|
-
</div>
|
647
|
-
|
648
|
-
<div>
|
649
|
-
<li class="covered" data-hits="9" data-linenumber="7">
|
650
|
-
<span class="hits">9</span>
|
651
|
-
|
652
|
-
|
653
|
-
|
654
|
-
|
655
|
-
<code class="ruby"> @host = host</code>
|
656
|
-
</li>
|
657
|
-
</div>
|
658
|
-
|
659
|
-
<div>
|
660
|
-
<li class="never" data-hits="" data-linenumber="8">
|
661
|
-
|
662
|
-
|
663
|
-
|
664
|
-
|
665
|
-
|
666
|
-
<code class="ruby"> end</code>
|
667
|
-
</li>
|
668
|
-
</div>
|
669
|
-
|
670
|
-
<div>
|
671
|
-
<li class="never" data-hits="" data-linenumber="9">
|
672
|
-
|
673
|
-
|
674
|
-
|
675
|
-
|
676
|
-
|
677
|
-
<code class="ruby">end</code>
|
678
|
-
</li>
|
679
|
-
</div>
|
680
|
-
|
681
|
-
</ol>
|
682
|
-
</pre>
|
683
|
-
</div>
|
684
|
-
|
685
|
-
|
686
|
-
<div class="source_table" id="46b4f5b39e102ba00d88cf4418db91720374fb5c">
|
687
|
-
<div class="header">
|
688
|
-
<h3>lib/PCP-server-Ruby-SDK/errors/api_error_response_exception.rb</h3>
|
689
|
-
<h4>
|
690
|
-
<span class="green">
|
691
|
-
100.0%
|
692
|
-
</span>
|
693
|
-
|
694
|
-
lines covered
|
695
|
-
</h4>
|
696
|
-
|
697
|
-
|
698
|
-
|
699
|
-
<div class="t-line-summary">
|
700
|
-
<b>9</b> relevant lines.
|
701
|
-
<span class="green"><b>9</b> lines covered</span> and
|
702
|
-
<span class="red"><b>0</b> lines missed.</span>
|
703
|
-
</div>
|
704
|
-
|
705
|
-
|
706
|
-
|
707
|
-
</div>
|
708
|
-
|
709
|
-
<pre>
|
710
|
-
<ol>
|
711
|
-
|
712
|
-
<div>
|
713
|
-
<li class="covered" data-hits="1" data-linenumber="1">
|
714
|
-
<span class="hits">1</span>
|
715
|
-
|
716
|
-
|
717
|
-
|
718
|
-
|
719
|
-
<code class="ruby">require_relative '../models/api_error'</code>
|
720
|
-
</li>
|
721
|
-
</div>
|
722
|
-
|
723
|
-
<div>
|
724
|
-
<li class="covered" data-hits="1" data-linenumber="2">
|
725
|
-
<span class="hits">1</span>
|
726
|
-
|
727
|
-
|
728
|
-
|
729
|
-
|
730
|
-
<code class="ruby">require_relative 'api_exception'</code>
|
731
|
-
</li>
|
732
|
-
</div>
|
733
|
-
|
734
|
-
<div>
|
735
|
-
<li class="never" data-hits="" data-linenumber="3">
|
736
|
-
|
737
|
-
|
738
|
-
|
739
|
-
|
740
|
-
|
741
|
-
<code class="ruby"></code>
|
742
|
-
</li>
|
743
|
-
</div>
|
744
|
-
|
745
|
-
<div>
|
746
|
-
<li class="covered" data-hits="1" data-linenumber="4">
|
747
|
-
<span class="hits">1</span>
|
748
|
-
|
749
|
-
|
750
|
-
|
751
|
-
|
752
|
-
<code class="ruby">class ApiErrorResponseException < ApiException</code>
|
753
|
-
</li>
|
754
|
-
</div>
|
755
|
-
|
756
|
-
<div>
|
757
|
-
<li class="covered" data-hits="1" data-linenumber="5">
|
758
|
-
<span class="hits">1</span>
|
759
|
-
|
760
|
-
|
761
|
-
|
762
|
-
|
763
|
-
<code class="ruby"> attr_reader :errors</code>
|
764
|
-
</li>
|
765
|
-
</div>
|
766
|
-
|
767
|
-
<div>
|
768
|
-
<li class="never" data-hits="" data-linenumber="6">
|
769
|
-
|
770
|
-
|
771
|
-
|
772
|
-
|
773
|
-
|
774
|
-
<code class="ruby"></code>
|
775
|
-
</li>
|
776
|
-
</div>
|
777
|
-
|
778
|
-
<div>
|
779
|
-
<li class="covered" data-hits="1" data-linenumber="7">
|
780
|
-
<span class="hits">1</span>
|
781
|
-
|
782
|
-
|
783
|
-
|
784
|
-
|
785
|
-
<code class="ruby"> def initialize(status_code, response_body, errors = [])</code>
|
786
|
-
</li>
|
787
|
-
</div>
|
788
|
-
|
789
|
-
<div>
|
790
|
-
<li class="covered" data-hits="4" data-linenumber="8">
|
791
|
-
<span class="hits">4</span>
|
792
|
-
|
793
|
-
|
794
|
-
|
795
|
-
|
796
|
-
<code class="ruby"> super(status_code, response_body)</code>
|
797
|
-
</li>
|
798
|
-
</div>
|
799
|
-
|
800
|
-
<div>
|
801
|
-
<li class="covered" data-hits="4" data-linenumber="9">
|
802
|
-
<span class="hits">4</span>
|
803
|
-
|
804
|
-
|
805
|
-
|
806
|
-
|
807
|
-
<code class="ruby"> @errors = errors.any? ? errors : []</code>
|
808
|
-
</li>
|
809
|
-
</div>
|
810
|
-
|
811
|
-
<div>
|
812
|
-
<li class="never" data-hits="" data-linenumber="10">
|
813
|
-
|
814
|
-
|
815
|
-
|
816
|
-
|
817
|
-
|
818
|
-
<code class="ruby"> end</code>
|
819
|
-
</li>
|
820
|
-
</div>
|
821
|
-
|
822
|
-
<div>
|
823
|
-
<li class="never" data-hits="" data-linenumber="11">
|
824
|
-
|
825
|
-
|
826
|
-
|
827
|
-
|
828
|
-
|
829
|
-
<code class="ruby"></code>
|
830
|
-
</li>
|
831
|
-
</div>
|
832
|
-
|
833
|
-
<div>
|
834
|
-
<li class="covered" data-hits="1" data-linenumber="12">
|
835
|
-
<span class="hits">1</span>
|
836
|
-
|
837
|
-
|
838
|
-
|
839
|
-
|
840
|
-
<code class="ruby"> def get_errors</code>
|
841
|
-
</li>
|
842
|
-
</div>
|
843
|
-
|
844
|
-
<div>
|
845
|
-
<li class="covered" data-hits="2" data-linenumber="13">
|
846
|
-
<span class="hits">2</span>
|
847
|
-
|
848
|
-
|
849
|
-
|
850
|
-
|
851
|
-
<code class="ruby"> @errors</code>
|
852
|
-
</li>
|
853
|
-
</div>
|
854
|
-
|
855
|
-
<div>
|
856
|
-
<li class="never" data-hits="" data-linenumber="14">
|
857
|
-
|
858
|
-
|
859
|
-
|
860
|
-
|
861
|
-
|
862
|
-
<code class="ruby"> end</code>
|
863
|
-
</li>
|
864
|
-
</div>
|
865
|
-
|
866
|
-
<div>
|
867
|
-
<li class="never" data-hits="" data-linenumber="15">
|
868
|
-
|
869
|
-
|
870
|
-
|
871
|
-
|
872
|
-
|
873
|
-
<code class="ruby">end</code>
|
874
|
-
</li>
|
875
|
-
</div>
|
876
|
-
|
877
|
-
</ol>
|
878
|
-
</pre>
|
879
|
-
</div>
|
880
|
-
|
881
|
-
|
882
|
-
<div class="source_table" id="a23017c7b3b925c8b1185ebd9417036ead823395">
|
883
|
-
<div class="header">
|
884
|
-
<h3>lib/PCP-server-Ruby-SDK/errors/api_exception.rb</h3>
|
885
|
-
<h4>
|
886
|
-
<span class="green">
|
887
|
-
93.75%
|
888
|
-
</span>
|
889
|
-
|
890
|
-
lines covered
|
891
|
-
</h4>
|
892
|
-
|
893
|
-
|
894
|
-
|
895
|
-
<div class="t-line-summary">
|
896
|
-
<b>16</b> relevant lines.
|
897
|
-
<span class="green"><b>15</b> lines covered</span> and
|
898
|
-
<span class="red"><b>1</b> lines missed.</span>
|
899
|
-
</div>
|
900
|
-
|
901
|
-
|
902
|
-
|
903
|
-
</div>
|
904
|
-
|
905
|
-
<pre>
|
906
|
-
<ol>
|
907
|
-
|
908
|
-
<div>
|
909
|
-
<li class="covered" data-hits="1" data-linenumber="1">
|
910
|
-
<span class="hits">1</span>
|
911
|
-
|
912
|
-
|
913
|
-
|
914
|
-
|
915
|
-
<code class="ruby">class ApiException < StandardError</code>
|
916
|
-
</li>
|
917
|
-
</div>
|
918
|
-
|
919
|
-
<div>
|
920
|
-
<li class="covered" data-hits="1" data-linenumber="2">
|
921
|
-
<span class="hits">1</span>
|
922
|
-
|
923
|
-
|
924
|
-
|
925
|
-
|
926
|
-
<code class="ruby"> attr_reader :status_code, :response_body</code>
|
927
|
-
</li>
|
928
|
-
</div>
|
929
|
-
|
930
|
-
<div>
|
931
|
-
<li class="never" data-hits="" data-linenumber="3">
|
932
|
-
|
933
|
-
|
934
|
-
|
935
|
-
|
936
|
-
|
937
|
-
<code class="ruby"></code>
|
938
|
-
</li>
|
939
|
-
</div>
|
940
|
-
|
941
|
-
<div>
|
942
|
-
<li class="covered" data-hits="1" data-linenumber="4">
|
943
|
-
<span class="hits">1</span>
|
944
|
-
|
945
|
-
|
946
|
-
|
947
|
-
|
948
|
-
<code class="ruby"> def initialize(status_code, response_body, cause = nil)</code>
|
949
|
-
</li>
|
950
|
-
</div>
|
951
|
-
|
952
|
-
<div>
|
953
|
-
<li class="covered" data-hits="11" data-linenumber="5">
|
954
|
-
<span class="hits">11</span>
|
955
|
-
|
956
|
-
|
957
|
-
|
958
|
-
|
959
|
-
<code class="ruby"> super(response_body)</code>
|
960
|
-
</li>
|
961
|
-
</div>
|
962
|
-
|
963
|
-
<div>
|
964
|
-
<li class="covered" data-hits="11" data-linenumber="6">
|
965
|
-
<span class="hits">11</span>
|
966
|
-
|
967
|
-
|
968
|
-
|
969
|
-
|
970
|
-
<code class="ruby"> @status_code = status_code</code>
|
971
|
-
</li>
|
972
|
-
</div>
|
973
|
-
|
974
|
-
<div>
|
975
|
-
<li class="covered" data-hits="11" data-linenumber="7">
|
976
|
-
<span class="hits">11</span>
|
977
|
-
|
978
|
-
|
979
|
-
|
980
|
-
|
981
|
-
<code class="ruby"> @response_body = response_body</code>
|
982
|
-
</li>
|
983
|
-
</div>
|
984
|
-
|
985
|
-
<div>
|
986
|
-
<li class="covered" data-hits="11" data-linenumber="8">
|
987
|
-
<span class="hits">11</span>
|
988
|
-
|
989
|
-
|
990
|
-
|
991
|
-
|
992
|
-
<code class="ruby"> set_backtrace(cause.backtrace) if cause</code>
|
993
|
-
</li>
|
994
|
-
</div>
|
995
|
-
|
996
|
-
<div>
|
997
|
-
<li class="never" data-hits="" data-linenumber="9">
|
998
|
-
|
999
|
-
|
1000
|
-
|
1001
|
-
|
1002
|
-
|
1003
|
-
<code class="ruby"> end</code>
|
1004
|
-
</li>
|
1005
|
-
</div>
|
1006
|
-
|
1007
|
-
<div>
|
1008
|
-
<li class="never" data-hits="" data-linenumber="10">
|
1009
|
-
|
1010
|
-
|
1011
|
-
|
1012
|
-
|
1013
|
-
|
1014
|
-
<code class="ruby"></code>
|
1015
|
-
</li>
|
1016
|
-
</div>
|
1017
|
-
|
1018
|
-
<div>
|
1019
|
-
<li class="covered" data-hits="1" data-linenumber="11">
|
1020
|
-
<span class="hits">1</span>
|
1021
|
-
|
1022
|
-
|
1023
|
-
|
1024
|
-
|
1025
|
-
<code class="ruby"> def to_s</code>
|
1026
|
-
</li>
|
1027
|
-
</div>
|
1028
|
-
|
1029
|
-
<div>
|
1030
|
-
<li class="covered" data-hits="1" data-linenumber="12">
|
1031
|
-
<span class="hits">1</span>
|
1032
|
-
|
1033
|
-
|
1034
|
-
|
1035
|
-
|
1036
|
-
<code class="ruby"> message</code>
|
1037
|
-
</li>
|
1038
|
-
</div>
|
1039
|
-
|
1040
|
-
<div>
|
1041
|
-
<li class="never" data-hits="" data-linenumber="13">
|
1042
|
-
|
1043
|
-
|
1044
|
-
|
1045
|
-
|
1046
|
-
|
1047
|
-
<code class="ruby"> end</code>
|
1048
|
-
</li>
|
1049
|
-
</div>
|
1050
|
-
|
1051
|
-
<div>
|
1052
|
-
<li class="never" data-hits="" data-linenumber="14">
|
1053
|
-
|
1054
|
-
|
1055
|
-
|
1056
|
-
|
1057
|
-
|
1058
|
-
<code class="ruby"></code>
|
1059
|
-
</li>
|
1060
|
-
</div>
|
1061
|
-
|
1062
|
-
<div>
|
1063
|
-
<li class="covered" data-hits="1" data-linenumber="15">
|
1064
|
-
<span class="hits">1</span>
|
1065
|
-
|
1066
|
-
|
1067
|
-
|
1068
|
-
|
1069
|
-
<code class="ruby"> def message</code>
|
1070
|
-
</li>
|
1071
|
-
</div>
|
1072
|
-
|
1073
|
-
<div>
|
1074
|
-
<li class="covered" data-hits="2" data-linenumber="16">
|
1075
|
-
<span class="hits">2</span>
|
1076
|
-
|
1077
|
-
|
1078
|
-
|
1079
|
-
|
1080
|
-
<code class="ruby"> if @message.nil?</code>
|
1081
|
-
</li>
|
1082
|
-
</div>
|
1083
|
-
|
1084
|
-
<div>
|
1085
|
-
<li class="covered" data-hits="2" data-linenumber="17">
|
1086
|
-
<span class="hits">2</span>
|
1087
|
-
|
1088
|
-
|
1089
|
-
|
1090
|
-
|
1091
|
-
<code class="ruby"> msg = "Error message: the server returns an error"</code>
|
1092
|
-
</li>
|
1093
|
-
</div>
|
1094
|
-
|
1095
|
-
<div>
|
1096
|
-
<li class="never" data-hits="" data-linenumber="18">
|
1097
|
-
|
1098
|
-
|
1099
|
-
|
1100
|
-
|
1101
|
-
|
1102
|
-
<code class="ruby"> else</code>
|
1103
|
-
</li>
|
1104
|
-
</div>
|
1105
|
-
|
1106
|
-
<div>
|
1107
|
-
<li class="missed" data-hits="0" data-linenumber="19">
|
1108
|
-
|
1109
|
-
|
1110
|
-
|
1111
|
-
|
1112
|
-
|
1113
|
-
<code class="ruby"> msg = @message</code>
|
1114
|
-
</li>
|
1115
|
-
</div>
|
1116
|
-
|
1117
|
-
<div>
|
1118
|
-
<li class="never" data-hits="" data-linenumber="20">
|
1119
|
-
|
1120
|
-
|
1121
|
-
|
1122
|
-
|
1123
|
-
|
1124
|
-
<code class="ruby"> end</code>
|
1125
|
-
</li>
|
1126
|
-
</div>
|
1127
|
-
|
1128
|
-
<div>
|
1129
|
-
<li class="never" data-hits="" data-linenumber="21">
|
1130
|
-
|
1131
|
-
|
1132
|
-
|
1133
|
-
|
1134
|
-
|
1135
|
-
<code class="ruby"></code>
|
1136
|
-
</li>
|
1137
|
-
</div>
|
1138
|
-
|
1139
|
-
<div>
|
1140
|
-
<li class="covered" data-hits="2" data-linenumber="22">
|
1141
|
-
<span class="hits">2</span>
|
1142
|
-
|
1143
|
-
|
1144
|
-
|
1145
|
-
|
1146
|
-
<code class="ruby"> msg += "\nHTTP status code: #{status_code}" if status_code</code>
|
1147
|
-
</li>
|
1148
|
-
</div>
|
1149
|
-
|
1150
|
-
<div>
|
1151
|
-
<li class="covered" data-hits="2" data-linenumber="23">
|
1152
|
-
<span class="hits">2</span>
|
1153
|
-
|
1154
|
-
|
1155
|
-
|
1156
|
-
|
1157
|
-
<code class="ruby"> msg += "\nResponse body: #{response_body}" if response_body</code>
|
1158
|
-
</li>
|
1159
|
-
</div>
|
1160
|
-
|
1161
|
-
<div>
|
1162
|
-
<li class="never" data-hits="" data-linenumber="24">
|
1163
|
-
|
1164
|
-
|
1165
|
-
|
1166
|
-
|
1167
|
-
|
1168
|
-
<code class="ruby"></code>
|
1169
|
-
</li>
|
1170
|
-
</div>
|
1171
|
-
|
1172
|
-
<div>
|
1173
|
-
<li class="covered" data-hits="2" data-linenumber="25">
|
1174
|
-
<span class="hits">2</span>
|
1175
|
-
|
1176
|
-
|
1177
|
-
|
1178
|
-
|
1179
|
-
<code class="ruby"> msg</code>
|
1180
|
-
</li>
|
1181
|
-
</div>
|
1182
|
-
|
1183
|
-
<div>
|
1184
|
-
<li class="never" data-hits="" data-linenumber="26">
|
1185
|
-
|
1186
|
-
|
1187
|
-
|
1188
|
-
|
1189
|
-
|
1190
|
-
<code class="ruby"> end</code>
|
1191
|
-
</li>
|
1192
|
-
</div>
|
1193
|
-
|
1194
|
-
<div>
|
1195
|
-
<li class="never" data-hits="" data-linenumber="27">
|
1196
|
-
|
1197
|
-
|
1198
|
-
|
1199
|
-
|
1200
|
-
|
1201
|
-
<code class="ruby">end</code>
|
1202
|
-
</li>
|
1203
|
-
</div>
|
1204
|
-
|
1205
|
-
</ol>
|
1206
|
-
</pre>
|
1207
|
-
</div>
|
1208
|
-
|
1209
|
-
|
1210
|
-
<div class="source_table" id="36ba805420986e58b16d9fcd699b3bde93b34db3">
|
1211
|
-
<div class="header">
|
1212
|
-
<h3>lib/PCP-server-Ruby-SDK/errors/api_response_retrieval_exception.rb</h3>
|
1213
|
-
<h4>
|
1214
|
-
<span class="green">
|
1215
|
-
100.0%
|
1216
|
-
</span>
|
1217
|
-
|
1218
|
-
lines covered
|
1219
|
-
</h4>
|
1220
|
-
|
1221
|
-
|
1222
|
-
|
1223
|
-
<div class="t-line-summary">
|
1224
|
-
<b>4</b> relevant lines.
|
1225
|
-
<span class="green"><b>4</b> lines covered</span> and
|
1226
|
-
<span class="red"><b>0</b> lines missed.</span>
|
1227
|
-
</div>
|
1228
|
-
|
1229
|
-
|
1230
|
-
|
1231
|
-
</div>
|
1232
|
-
|
1233
|
-
<pre>
|
1234
|
-
<ol>
|
1235
|
-
|
1236
|
-
<div>
|
1237
|
-
<li class="covered" data-hits="1" data-linenumber="1">
|
1238
|
-
<span class="hits">1</span>
|
1239
|
-
|
1240
|
-
|
1241
|
-
|
1242
|
-
|
1243
|
-
<code class="ruby">require_relative 'api_exception'</code>
|
1244
|
-
</li>
|
1245
|
-
</div>
|
1246
|
-
|
1247
|
-
<div>
|
1248
|
-
<li class="never" data-hits="" data-linenumber="2">
|
1249
|
-
|
1250
|
-
|
1251
|
-
|
1252
|
-
|
1253
|
-
|
1254
|
-
<code class="ruby"></code>
|
1255
|
-
</li>
|
1256
|
-
</div>
|
1257
|
-
|
1258
|
-
<div>
|
1259
|
-
<li class="covered" data-hits="1" data-linenumber="3">
|
1260
|
-
<span class="hits">1</span>
|
1261
|
-
|
1262
|
-
|
1263
|
-
|
1264
|
-
|
1265
|
-
<code class="ruby">class ApiResponseRetrievalException < ApiException</code>
|
1266
|
-
</li>
|
1267
|
-
</div>
|
1268
|
-
|
1269
|
-
<div>
|
1270
|
-
<li class="covered" data-hits="1" data-linenumber="4">
|
1271
|
-
<span class="hits">1</span>
|
1272
|
-
|
1273
|
-
|
1274
|
-
|
1275
|
-
|
1276
|
-
<code class="ruby"> def initialize(status_code, response_body, cause = nil)</code>
|
1277
|
-
</li>
|
1278
|
-
</div>
|
1279
|
-
|
1280
|
-
<div>
|
1281
|
-
<li class="covered" data-hits="3" data-linenumber="5">
|
1282
|
-
<span class="hits">3</span>
|
1283
|
-
|
1284
|
-
|
1285
|
-
|
1286
|
-
|
1287
|
-
<code class="ruby"> super(status_code, response_body, cause)</code>
|
1288
|
-
</li>
|
1289
|
-
</div>
|
1290
|
-
|
1291
|
-
<div>
|
1292
|
-
<li class="never" data-hits="" data-linenumber="6">
|
1293
|
-
|
1294
|
-
|
1295
|
-
|
1296
|
-
|
1297
|
-
|
1298
|
-
<code class="ruby"> end</code>
|
1299
|
-
</li>
|
1300
|
-
</div>
|
1301
|
-
|
1302
|
-
<div>
|
1303
|
-
<li class="never" data-hits="" data-linenumber="7">
|
1304
|
-
|
1305
|
-
|
1306
|
-
|
1307
|
-
|
1308
|
-
|
1309
|
-
<code class="ruby">end</code>
|
1310
|
-
</li>
|
1311
|
-
</div>
|
1312
|
-
|
1313
|
-
</ol>
|
1314
|
-
</pre>
|
1315
|
-
</div>
|
1316
|
-
|
1317
|
-
|
1318
|
-
<div class="source_table" id="a67fed72dc68656139ca07599345f99135df4c32">
|
1319
|
-
<div class="header">
|
1320
|
-
<h3>lib/PCP-server-Ruby-SDK/queries/get_checkouts_query.rb</h3>
|
1321
|
-
<h4>
|
1322
|
-
<span class="green">
|
1323
|
-
100.0%
|
1324
|
-
</span>
|
1325
|
-
|
1326
|
-
lines covered
|
1327
|
-
</h4>
|
1328
|
-
|
1329
|
-
|
1330
|
-
|
1331
|
-
<div class="t-line-summary">
|
1332
|
-
<b>42</b> relevant lines.
|
1333
|
-
<span class="green"><b>42</b> lines covered</span> and
|
1334
|
-
<span class="red"><b>0</b> lines missed.</span>
|
1335
|
-
</div>
|
1336
|
-
|
1337
|
-
|
1338
|
-
|
1339
|
-
</div>
|
1340
|
-
|
1341
|
-
<pre>
|
1342
|
-
<ol>
|
1343
|
-
|
1344
|
-
<div>
|
1345
|
-
<li class="covered" data-hits="1" data-linenumber="1">
|
1346
|
-
<span class="hits">1</span>
|
1347
|
-
|
1348
|
-
|
1349
|
-
|
1350
|
-
|
1351
|
-
<code class="ruby">require 'set'</code>
|
1352
|
-
</li>
|
1353
|
-
</div>
|
1354
|
-
|
1355
|
-
<div>
|
1356
|
-
<li class="never" data-hits="" data-linenumber="2">
|
1357
|
-
|
1358
|
-
|
1359
|
-
|
1360
|
-
|
1361
|
-
|
1362
|
-
<code class="ruby"></code>
|
1363
|
-
</li>
|
1364
|
-
</div>
|
1365
|
-
|
1366
|
-
<div>
|
1367
|
-
<li class="covered" data-hits="1" data-linenumber="3">
|
1368
|
-
<span class="hits">1</span>
|
1369
|
-
|
1370
|
-
|
1371
|
-
|
1372
|
-
|
1373
|
-
<code class="ruby">class GetCheckoutsQuery</code>
|
1374
|
-
</li>
|
1375
|
-
</div>
|
1376
|
-
|
1377
|
-
<div>
|
1378
|
-
<li class="covered" data-hits="1" data-linenumber="4">
|
1379
|
-
<span class="hits">1</span>
|
1380
|
-
|
1381
|
-
|
1382
|
-
|
1383
|
-
|
1384
|
-
<code class="ruby"> attr_accessor :offset, :size, :from_date, :to_date,</code>
|
1385
|
-
</li>
|
1386
|
-
</div>
|
1387
|
-
|
1388
|
-
<div>
|
1389
|
-
<li class="never" data-hits="" data-linenumber="5">
|
1390
|
-
|
1391
|
-
|
1392
|
-
|
1393
|
-
|
1394
|
-
|
1395
|
-
<code class="ruby"> :from_checkout_amount, :to_checkout_amount,</code>
|
1396
|
-
</li>
|
1397
|
-
</div>
|
1398
|
-
|
1399
|
-
<div>
|
1400
|
-
<li class="never" data-hits="" data-linenumber="6">
|
1401
|
-
|
1402
|
-
|
1403
|
-
|
1404
|
-
|
1405
|
-
|
1406
|
-
<code class="ruby"> :from_open_amount, :to_open_amount,</code>
|
1407
|
-
</li>
|
1408
|
-
</div>
|
1409
|
-
|
1410
|
-
<div>
|
1411
|
-
<li class="never" data-hits="" data-linenumber="7">
|
1412
|
-
|
1413
|
-
|
1414
|
-
|
1415
|
-
|
1416
|
-
|
1417
|
-
<code class="ruby"> :from_collected_amount, :to_collected_amount,</code>
|
1418
|
-
</li>
|
1419
|
-
</div>
|
1420
|
-
|
1421
|
-
<div>
|
1422
|
-
<li class="never" data-hits="" data-linenumber="8">
|
1423
|
-
|
1424
|
-
|
1425
|
-
|
1426
|
-
|
1427
|
-
|
1428
|
-
<code class="ruby"> :from_cancelled_amount, :to_cancelled_amount,</code>
|
1429
|
-
</li>
|
1430
|
-
</div>
|
1431
|
-
|
1432
|
-
<div>
|
1433
|
-
<li class="never" data-hits="" data-linenumber="9">
|
1434
|
-
|
1435
|
-
|
1436
|
-
|
1437
|
-
|
1438
|
-
|
1439
|
-
<code class="ruby"> :from_refund_amount, :to_refund_amount,</code>
|
1440
|
-
</li>
|
1441
|
-
</div>
|
1442
|
-
|
1443
|
-
<div>
|
1444
|
-
<li class="never" data-hits="" data-linenumber="10">
|
1445
|
-
|
1446
|
-
|
1447
|
-
|
1448
|
-
|
1449
|
-
|
1450
|
-
<code class="ruby"> :from_chargeback_amount, :to_chargeback_amount,</code>
|
1451
|
-
</li>
|
1452
|
-
</div>
|
1453
|
-
|
1454
|
-
<div>
|
1455
|
-
<li class="never" data-hits="" data-linenumber="11">
|
1456
|
-
|
1457
|
-
|
1458
|
-
|
1459
|
-
|
1460
|
-
|
1461
|
-
<code class="ruby"> :checkout_id, :merchant_reference, :merchant_customer_id,</code>
|
1462
|
-
</li>
|
1463
|
-
</div>
|
1464
|
-
|
1465
|
-
<div>
|
1466
|
-
<li class="never" data-hits="" data-linenumber="12">
|
1467
|
-
|
1468
|
-
|
1469
|
-
|
1470
|
-
|
1471
|
-
|
1472
|
-
<code class="ruby"> :include_payment_product_id, :include_checkout_status,</code>
|
1473
|
-
</li>
|
1474
|
-
</div>
|
1475
|
-
|
1476
|
-
<div>
|
1477
|
-
<li class="never" data-hits="" data-linenumber="13">
|
1478
|
-
|
1479
|
-
|
1480
|
-
|
1481
|
-
|
1482
|
-
|
1483
|
-
<code class="ruby"> :include_extended_checkout_status, :include_payment_channel,</code>
|
1484
|
-
</li>
|
1485
|
-
</div>
|
1486
|
-
|
1487
|
-
<div>
|
1488
|
-
<li class="never" data-hits="" data-linenumber="14">
|
1489
|
-
|
1490
|
-
|
1491
|
-
|
1492
|
-
|
1493
|
-
|
1494
|
-
<code class="ruby"> :payment_reference, :payment_id, :first_name, :surname,</code>
|
1495
|
-
</li>
|
1496
|
-
</div>
|
1497
|
-
|
1498
|
-
<div>
|
1499
|
-
<li class="never" data-hits="" data-linenumber="15">
|
1500
|
-
|
1501
|
-
|
1502
|
-
|
1503
|
-
|
1504
|
-
|
1505
|
-
<code class="ruby"> :email, :phone_number, :date_of_birth, :company_information</code>
|
1506
|
-
</li>
|
1507
|
-
</div>
|
1508
|
-
|
1509
|
-
<div>
|
1510
|
-
<li class="never" data-hits="" data-linenumber="16">
|
1511
|
-
|
1512
|
-
|
1513
|
-
|
1514
|
-
|
1515
|
-
|
1516
|
-
<code class="ruby"></code>
|
1517
|
-
</li>
|
1518
|
-
</div>
|
1519
|
-
|
1520
|
-
<div>
|
1521
|
-
<li class="covered" data-hits="1" data-linenumber="17">
|
1522
|
-
<span class="hits">1</span>
|
1523
|
-
|
1524
|
-
|
1525
|
-
|
1526
|
-
|
1527
|
-
<code class="ruby"> def initialize</code>
|
1528
|
-
</li>
|
1529
|
-
</div>
|
1530
|
-
|
1531
|
-
<div>
|
1532
|
-
<li class="covered" data-hits="37" data-linenumber="18">
|
1533
|
-
<span class="hits">37</span>
|
1534
|
-
|
1535
|
-
|
1536
|
-
|
1537
|
-
|
1538
|
-
<code class="ruby"> @include_payment_product_id = []</code>
|
1539
|
-
</li>
|
1540
|
-
</div>
|
1541
|
-
|
1542
|
-
<div>
|
1543
|
-
<li class="covered" data-hits="37" data-linenumber="19">
|
1544
|
-
<span class="hits">37</span>
|
1545
|
-
|
1546
|
-
|
1547
|
-
|
1548
|
-
|
1549
|
-
<code class="ruby"> @include_checkout_status = []</code>
|
1550
|
-
</li>
|
1551
|
-
</div>
|
1552
|
-
|
1553
|
-
<div>
|
1554
|
-
<li class="covered" data-hits="37" data-linenumber="20">
|
1555
|
-
<span class="hits">37</span>
|
1556
|
-
|
1557
|
-
|
1558
|
-
|
1559
|
-
|
1560
|
-
<code class="ruby"> @include_extended_checkout_status = []</code>
|
1561
|
-
</li>
|
1562
|
-
</div>
|
1563
|
-
|
1564
|
-
<div>
|
1565
|
-
<li class="covered" data-hits="37" data-linenumber="21">
|
1566
|
-
<span class="hits">37</span>
|
1567
|
-
|
1568
|
-
|
1569
|
-
|
1570
|
-
|
1571
|
-
<code class="ruby"> @include_payment_channel = []</code>
|
1572
|
-
</li>
|
1573
|
-
</div>
|
1574
|
-
|
1575
|
-
<div>
|
1576
|
-
<li class="never" data-hits="" data-linenumber="22">
|
1577
|
-
|
1578
|
-
|
1579
|
-
|
1580
|
-
|
1581
|
-
|
1582
|
-
<code class="ruby"> end</code>
|
1583
|
-
</li>
|
1584
|
-
</div>
|
1585
|
-
|
1586
|
-
<div>
|
1587
|
-
<li class="never" data-hits="" data-linenumber="23">
|
1588
|
-
|
1589
|
-
|
1590
|
-
|
1591
|
-
|
1592
|
-
|
1593
|
-
<code class="ruby"></code>
|
1594
|
-
</li>
|
1595
|
-
</div>
|
1596
|
-
|
1597
|
-
<div>
|
1598
|
-
<li class="covered" data-hits="1" data-linenumber="24">
|
1599
|
-
<span class="hits">1</span>
|
1600
|
-
|
1601
|
-
|
1602
|
-
|
1603
|
-
|
1604
|
-
<code class="ruby"> def to_query_map</code>
|
1605
|
-
</li>
|
1606
|
-
</div>
|
1607
|
-
|
1608
|
-
<div>
|
1609
|
-
<li class="covered" data-hits="31" data-linenumber="25">
|
1610
|
-
<span class="hits">31</span>
|
1611
|
-
|
1612
|
-
|
1613
|
-
|
1614
|
-
|
1615
|
-
<code class="ruby"> query = {}</code>
|
1616
|
-
</li>
|
1617
|
-
</div>
|
1618
|
-
|
1619
|
-
<div>
|
1620
|
-
<li class="never" data-hits="" data-linenumber="26">
|
1621
|
-
|
1622
|
-
|
1623
|
-
|
1624
|
-
|
1625
|
-
|
1626
|
-
<code class="ruby"></code>
|
1627
|
-
</li>
|
1628
|
-
</div>
|
1629
|
-
|
1630
|
-
<div>
|
1631
|
-
<li class="covered" data-hits="31" data-linenumber="27">
|
1632
|
-
<span class="hits">31</span>
|
1633
|
-
|
1634
|
-
|
1635
|
-
|
1636
|
-
|
1637
|
-
<code class="ruby"> query['offset'] = @offset.to_s if @offset</code>
|
1638
|
-
</li>
|
1639
|
-
</div>
|
1640
|
-
|
1641
|
-
<div>
|
1642
|
-
<li class="covered" data-hits="31" data-linenumber="28">
|
1643
|
-
<span class="hits">31</span>
|
1644
|
-
|
1645
|
-
|
1646
|
-
|
1647
|
-
|
1648
|
-
<code class="ruby"> query['size'] = @size.to_s if @size</code>
|
1649
|
-
</li>
|
1650
|
-
</div>
|
1651
|
-
|
1652
|
-
<div>
|
1653
|
-
<li class="covered" data-hits="31" data-linenumber="29">
|
1654
|
-
<span class="hits">31</span>
|
1655
|
-
|
1656
|
-
|
1657
|
-
|
1658
|
-
|
1659
|
-
<code class="ruby"> query['fromDate'] = @from_date if @from_date</code>
|
1660
|
-
</li>
|
1661
|
-
</div>
|
1662
|
-
|
1663
|
-
<div>
|
1664
|
-
<li class="covered" data-hits="31" data-linenumber="30">
|
1665
|
-
<span class="hits">31</span>
|
1666
|
-
|
1667
|
-
|
1668
|
-
|
1669
|
-
|
1670
|
-
<code class="ruby"> query['toDate'] = @to_date if @to_date</code>
|
1671
|
-
</li>
|
1672
|
-
</div>
|
1673
|
-
|
1674
|
-
<div>
|
1675
|
-
<li class="covered" data-hits="31" data-linenumber="31">
|
1676
|
-
<span class="hits">31</span>
|
1677
|
-
|
1678
|
-
|
1679
|
-
|
1680
|
-
|
1681
|
-
<code class="ruby"> query['fromCheckoutAmount'] = @from_checkout_amount.to_s if @from_checkout_amount</code>
|
1682
|
-
</li>
|
1683
|
-
</div>
|
1684
|
-
|
1685
|
-
<div>
|
1686
|
-
<li class="covered" data-hits="31" data-linenumber="32">
|
1687
|
-
<span class="hits">31</span>
|
1688
|
-
|
1689
|
-
|
1690
|
-
|
1691
|
-
|
1692
|
-
<code class="ruby"> query['toCheckoutAmount'] = @to_checkout_amount.to_s if @to_checkout_amount</code>
|
1693
|
-
</li>
|
1694
|
-
</div>
|
1695
|
-
|
1696
|
-
<div>
|
1697
|
-
<li class="covered" data-hits="31" data-linenumber="33">
|
1698
|
-
<span class="hits">31</span>
|
1699
|
-
|
1700
|
-
|
1701
|
-
|
1702
|
-
|
1703
|
-
<code class="ruby"> query['fromOpenAmount'] = @from_open_amount.to_s if @from_open_amount</code>
|
1704
|
-
</li>
|
1705
|
-
</div>
|
1706
|
-
|
1707
|
-
<div>
|
1708
|
-
<li class="covered" data-hits="31" data-linenumber="34">
|
1709
|
-
<span class="hits">31</span>
|
1710
|
-
|
1711
|
-
|
1712
|
-
|
1713
|
-
|
1714
|
-
<code class="ruby"> query['toOpenAmount'] = @to_open_amount.to_s if @to_open_amount</code>
|
1715
|
-
</li>
|
1716
|
-
</div>
|
1717
|
-
|
1718
|
-
<div>
|
1719
|
-
<li class="covered" data-hits="31" data-linenumber="35">
|
1720
|
-
<span class="hits">31</span>
|
1721
|
-
|
1722
|
-
|
1723
|
-
|
1724
|
-
|
1725
|
-
<code class="ruby"> query['fromCollectedAmount'] = @from_collected_amount.to_s if @from_collected_amount</code>
|
1726
|
-
</li>
|
1727
|
-
</div>
|
1728
|
-
|
1729
|
-
<div>
|
1730
|
-
<li class="covered" data-hits="31" data-linenumber="36">
|
1731
|
-
<span class="hits">31</span>
|
1732
|
-
|
1733
|
-
|
1734
|
-
|
1735
|
-
|
1736
|
-
<code class="ruby"> query['toCollectedAmount'] = @to_collected_amount.to_s if @to_collected_amount</code>
|
1737
|
-
</li>
|
1738
|
-
</div>
|
1739
|
-
|
1740
|
-
<div>
|
1741
|
-
<li class="covered" data-hits="31" data-linenumber="37">
|
1742
|
-
<span class="hits">31</span>
|
1743
|
-
|
1744
|
-
|
1745
|
-
|
1746
|
-
|
1747
|
-
<code class="ruby"> query['fromCancelledAmount'] = @from_cancelled_amount.to_s if @from_cancelled_amount</code>
|
1748
|
-
</li>
|
1749
|
-
</div>
|
1750
|
-
|
1751
|
-
<div>
|
1752
|
-
<li class="covered" data-hits="31" data-linenumber="38">
|
1753
|
-
<span class="hits">31</span>
|
1754
|
-
|
1755
|
-
|
1756
|
-
|
1757
|
-
|
1758
|
-
<code class="ruby"> query['toCancelledAmount'] = @to_cancelled_amount.to_s if @to_cancelled_amount</code>
|
1759
|
-
</li>
|
1760
|
-
</div>
|
1761
|
-
|
1762
|
-
<div>
|
1763
|
-
<li class="covered" data-hits="31" data-linenumber="39">
|
1764
|
-
<span class="hits">31</span>
|
1765
|
-
|
1766
|
-
|
1767
|
-
|
1768
|
-
|
1769
|
-
<code class="ruby"> query['fromRefundAmount'] = @from_refund_amount.to_s if @from_refund_amount</code>
|
1770
|
-
</li>
|
1771
|
-
</div>
|
1772
|
-
|
1773
|
-
<div>
|
1774
|
-
<li class="covered" data-hits="31" data-linenumber="40">
|
1775
|
-
<span class="hits">31</span>
|
1776
|
-
|
1777
|
-
|
1778
|
-
|
1779
|
-
|
1780
|
-
<code class="ruby"> query['toRefundAmount'] = @to_refund_amount.to_s if @to_refund_amount</code>
|
1781
|
-
</li>
|
1782
|
-
</div>
|
1783
|
-
|
1784
|
-
<div>
|
1785
|
-
<li class="covered" data-hits="31" data-linenumber="41">
|
1786
|
-
<span class="hits">31</span>
|
1787
|
-
|
1788
|
-
|
1789
|
-
|
1790
|
-
|
1791
|
-
<code class="ruby"> query['fromChargebackAmount'] = @from_chargeback_amount.to_s if @from_chargeback_amount</code>
|
1792
|
-
</li>
|
1793
|
-
</div>
|
1794
|
-
|
1795
|
-
<div>
|
1796
|
-
<li class="covered" data-hits="31" data-linenumber="42">
|
1797
|
-
<span class="hits">31</span>
|
1798
|
-
|
1799
|
-
|
1800
|
-
|
1801
|
-
|
1802
|
-
<code class="ruby"> query['toChargebackAmount'] = @to_chargeback_amount.to_s if @to_chargeback_amount</code>
|
1803
|
-
</li>
|
1804
|
-
</div>
|
1805
|
-
|
1806
|
-
<div>
|
1807
|
-
<li class="covered" data-hits="31" data-linenumber="43">
|
1808
|
-
<span class="hits">31</span>
|
1809
|
-
|
1810
|
-
|
1811
|
-
|
1812
|
-
|
1813
|
-
<code class="ruby"> query['checkoutId'] = @checkout_id if @checkout_id</code>
|
1814
|
-
</li>
|
1815
|
-
</div>
|
1816
|
-
|
1817
|
-
<div>
|
1818
|
-
<li class="covered" data-hits="31" data-linenumber="44">
|
1819
|
-
<span class="hits">31</span>
|
1820
|
-
|
1821
|
-
|
1822
|
-
|
1823
|
-
|
1824
|
-
<code class="ruby"> query['merchantReference'] = @merchant_reference if @merchant_reference</code>
|
1825
|
-
</li>
|
1826
|
-
</div>
|
1827
|
-
|
1828
|
-
<div>
|
1829
|
-
<li class="covered" data-hits="31" data-linenumber="45">
|
1830
|
-
<span class="hits">31</span>
|
1831
|
-
|
1832
|
-
|
1833
|
-
|
1834
|
-
|
1835
|
-
<code class="ruby"> query['merchantCustomerId'] = @merchant_customer_id if @merchant_customer_id</code>
|
1836
|
-
</li>
|
1837
|
-
</div>
|
1838
|
-
|
1839
|
-
<div>
|
1840
|
-
<li class="covered" data-hits="31" data-linenumber="46">
|
1841
|
-
<span class="hits">31</span>
|
1842
|
-
|
1843
|
-
|
1844
|
-
|
1845
|
-
|
1846
|
-
<code class="ruby"> query['includePaymentProductId'] = @include_payment_product_id.join(',') if @include_payment_product_id.any?</code>
|
1847
|
-
</li>
|
1848
|
-
</div>
|
1849
|
-
|
1850
|
-
<div>
|
1851
|
-
<li class="covered" data-hits="31" data-linenumber="47">
|
1852
|
-
<span class="hits">31</span>
|
1853
|
-
|
1854
|
-
|
1855
|
-
|
1856
|
-
|
1857
|
-
<code class="ruby"> query['includeCheckoutStatus'] = @include_checkout_status.join(',') if @include_checkout_status.any?</code>
|
1858
|
-
</li>
|
1859
|
-
</div>
|
1860
|
-
|
1861
|
-
<div>
|
1862
|
-
<li class="covered" data-hits="31" data-linenumber="48">
|
1863
|
-
<span class="hits">31</span>
|
1864
|
-
|
1865
|
-
|
1866
|
-
|
1867
|
-
|
1868
|
-
<code class="ruby"> query['includeExtendedCheckoutStatus'] = @include_extended_checkout_status.join(',') if @include_extended_checkout_status.any?</code>
|
1869
|
-
</li>
|
1870
|
-
</div>
|
1871
|
-
|
1872
|
-
<div>
|
1873
|
-
<li class="covered" data-hits="31" data-linenumber="49">
|
1874
|
-
<span class="hits">31</span>
|
1875
|
-
|
1876
|
-
|
1877
|
-
|
1878
|
-
|
1879
|
-
<code class="ruby"> query['includePaymentChannel'] = @include_payment_channel.join(',') if @include_payment_channel.any?</code>
|
1880
|
-
</li>
|
1881
|
-
</div>
|
1882
|
-
|
1883
|
-
<div>
|
1884
|
-
<li class="covered" data-hits="31" data-linenumber="50">
|
1885
|
-
<span class="hits">31</span>
|
1886
|
-
|
1887
|
-
|
1888
|
-
|
1889
|
-
|
1890
|
-
<code class="ruby"> query['paymentReference'] = @payment_reference if @payment_reference</code>
|
1891
|
-
</li>
|
1892
|
-
</div>
|
1893
|
-
|
1894
|
-
<div>
|
1895
|
-
<li class="covered" data-hits="31" data-linenumber="51">
|
1896
|
-
<span class="hits">31</span>
|
1897
|
-
|
1898
|
-
|
1899
|
-
|
1900
|
-
|
1901
|
-
<code class="ruby"> query['paymentId'] = @payment_id if @payment_id</code>
|
1902
|
-
</li>
|
1903
|
-
</div>
|
1904
|
-
|
1905
|
-
<div>
|
1906
|
-
<li class="covered" data-hits="31" data-linenumber="52">
|
1907
|
-
<span class="hits">31</span>
|
1908
|
-
|
1909
|
-
|
1910
|
-
|
1911
|
-
|
1912
|
-
<code class="ruby"> query['firstName'] = @first_name if @first_name</code>
|
1913
|
-
</li>
|
1914
|
-
</div>
|
1915
|
-
|
1916
|
-
<div>
|
1917
|
-
<li class="covered" data-hits="31" data-linenumber="53">
|
1918
|
-
<span class="hits">31</span>
|
1919
|
-
|
1920
|
-
|
1921
|
-
|
1922
|
-
|
1923
|
-
<code class="ruby"> query['surname'] = @surname if @surname</code>
|
1924
|
-
</li>
|
1925
|
-
</div>
|
1926
|
-
|
1927
|
-
<div>
|
1928
|
-
<li class="covered" data-hits="31" data-linenumber="54">
|
1929
|
-
<span class="hits">31</span>
|
1930
|
-
|
1931
|
-
|
1932
|
-
|
1933
|
-
|
1934
|
-
<code class="ruby"> query['email'] = @email if @email</code>
|
1935
|
-
</li>
|
1936
|
-
</div>
|
1937
|
-
|
1938
|
-
<div>
|
1939
|
-
<li class="covered" data-hits="31" data-linenumber="55">
|
1940
|
-
<span class="hits">31</span>
|
1941
|
-
|
1942
|
-
|
1943
|
-
|
1944
|
-
|
1945
|
-
<code class="ruby"> query['phoneNumber'] = @phone_number if @phone_number</code>
|
1946
|
-
</li>
|
1947
|
-
</div>
|
1948
|
-
|
1949
|
-
<div>
|
1950
|
-
<li class="covered" data-hits="31" data-linenumber="56">
|
1951
|
-
<span class="hits">31</span>
|
1952
|
-
|
1953
|
-
|
1954
|
-
|
1955
|
-
|
1956
|
-
<code class="ruby"> query['dateOfBirth'] = @date_of_birth if @date_of_birth</code>
|
1957
|
-
</li>
|
1958
|
-
</div>
|
1959
|
-
|
1960
|
-
<div>
|
1961
|
-
<li class="covered" data-hits="31" data-linenumber="57">
|
1962
|
-
<span class="hits">31</span>
|
1963
|
-
|
1964
|
-
|
1965
|
-
|
1966
|
-
|
1967
|
-
<code class="ruby"> query['companyInformation'] = @company_information if @company_information</code>
|
1968
|
-
</li>
|
1969
|
-
</div>
|
1970
|
-
|
1971
|
-
<div>
|
1972
|
-
<li class="never" data-hits="" data-linenumber="58">
|
1973
|
-
|
1974
|
-
|
1975
|
-
|
1976
|
-
|
1977
|
-
|
1978
|
-
<code class="ruby"></code>
|
1979
|
-
</li>
|
1980
|
-
</div>
|
1981
|
-
|
1982
|
-
<div>
|
1983
|
-
<li class="covered" data-hits="31" data-linenumber="59">
|
1984
|
-
<span class="hits">31</span>
|
1985
|
-
|
1986
|
-
|
1987
|
-
|
1988
|
-
|
1989
|
-
<code class="ruby"> query</code>
|
1990
|
-
</li>
|
1991
|
-
</div>
|
1992
|
-
|
1993
|
-
<div>
|
1994
|
-
<li class="never" data-hits="" data-linenumber="60">
|
1995
|
-
|
1996
|
-
|
1997
|
-
|
1998
|
-
|
1999
|
-
|
2000
|
-
<code class="ruby"> end</code>
|
2001
|
-
</li>
|
2002
|
-
</div>
|
2003
|
-
|
2004
|
-
<div>
|
2005
|
-
<li class="never" data-hits="" data-linenumber="61">
|
2006
|
-
|
2007
|
-
|
2008
|
-
|
2009
|
-
|
2010
|
-
|
2011
|
-
<code class="ruby">end</code>
|
2012
|
-
</li>
|
2013
|
-
</div>
|
2014
|
-
|
2015
|
-
</ol>
|
2016
|
-
</pre>
|
2017
|
-
</div>
|
2018
|
-
|
2019
|
-
|
2020
|
-
<div class="source_table" id="3773982d42c2f8ec6e50b98fd656a43f15a7a5dd">
|
2021
|
-
<div class="header">
|
2022
|
-
<h3>lib/PCP-server-Ruby-SDK/queries/get_commerce_cases_query.rb</h3>
|
2023
|
-
<h4>
|
2024
|
-
<span class="green">
|
2025
|
-
100.0%
|
2026
|
-
</span>
|
2027
|
-
|
2028
|
-
lines covered
|
2029
|
-
</h4>
|
2030
|
-
|
2031
|
-
|
2032
|
-
|
2033
|
-
<div class="t-line-summary">
|
2034
|
-
<b>44</b> relevant lines.
|
2035
|
-
<span class="green"><b>44</b> lines covered</span> and
|
2036
|
-
<span class="red"><b>0</b> lines missed.</span>
|
2037
|
-
</div>
|
2038
|
-
|
2039
|
-
|
2040
|
-
|
2041
|
-
</div>
|
2042
|
-
|
2043
|
-
<pre>
|
2044
|
-
<ol>
|
2045
|
-
|
2046
|
-
<div>
|
2047
|
-
<li class="covered" data-hits="1" data-linenumber="1">
|
2048
|
-
<span class="hits">1</span>
|
2049
|
-
|
2050
|
-
|
2051
|
-
|
2052
|
-
|
2053
|
-
<code class="ruby">class GetCommerceCasesQuery</code>
|
2054
|
-
</li>
|
2055
|
-
</div>
|
2056
|
-
|
2057
|
-
<div>
|
2058
|
-
<li class="covered" data-hits="1" data-linenumber="2">
|
2059
|
-
<span class="hits">1</span>
|
2060
|
-
|
2061
|
-
|
2062
|
-
|
2063
|
-
|
2064
|
-
<code class="ruby"> attr_accessor :offset, :size, :from_date, :to_date,</code>
|
2065
|
-
</li>
|
2066
|
-
</div>
|
2067
|
-
|
2068
|
-
<div>
|
2069
|
-
<li class="never" data-hits="" data-linenumber="3">
|
2070
|
-
|
2071
|
-
|
2072
|
-
|
2073
|
-
|
2074
|
-
|
2075
|
-
<code class="ruby"> :commerce_case_id, :merchant_reference, :merchant_customer_id,</code>
|
2076
|
-
</li>
|
2077
|
-
</div>
|
2078
|
-
|
2079
|
-
<div>
|
2080
|
-
<li class="never" data-hits="" data-linenumber="4">
|
2081
|
-
|
2082
|
-
|
2083
|
-
|
2084
|
-
|
2085
|
-
|
2086
|
-
<code class="ruby"> :include_checkout_status, :include_payment_channel</code>
|
2087
|
-
</li>
|
2088
|
-
</div>
|
2089
|
-
|
2090
|
-
<div>
|
2091
|
-
<li class="never" data-hits="" data-linenumber="5">
|
2092
|
-
|
2093
|
-
|
2094
|
-
|
2095
|
-
|
2096
|
-
|
2097
|
-
<code class="ruby"></code>
|
2098
|
-
</li>
|
2099
|
-
</div>
|
2100
|
-
|
2101
|
-
<div>
|
2102
|
-
<li class="covered" data-hits="1" data-linenumber="6">
|
2103
|
-
<span class="hits">1</span>
|
2104
|
-
|
2105
|
-
|
2106
|
-
|
2107
|
-
|
2108
|
-
<code class="ruby"> def initialize</code>
|
2109
|
-
</li>
|
2110
|
-
</div>
|
2111
|
-
|
2112
|
-
<div>
|
2113
|
-
<li class="covered" data-hits="20" data-linenumber="7">
|
2114
|
-
<span class="hits">20</span>
|
2115
|
-
|
2116
|
-
|
2117
|
-
|
2118
|
-
|
2119
|
-
<code class="ruby"> @include_checkout_status = []</code>
|
2120
|
-
</li>
|
2121
|
-
</div>
|
2122
|
-
|
2123
|
-
<div>
|
2124
|
-
<li class="covered" data-hits="20" data-linenumber="8">
|
2125
|
-
<span class="hits">20</span>
|
2126
|
-
|
2127
|
-
|
2128
|
-
|
2129
|
-
|
2130
|
-
<code class="ruby"> @include_payment_channel = []</code>
|
2131
|
-
</li>
|
2132
|
-
</div>
|
2133
|
-
|
2134
|
-
<div>
|
2135
|
-
<li class="never" data-hits="" data-linenumber="9">
|
2136
|
-
|
2137
|
-
|
2138
|
-
|
2139
|
-
|
2140
|
-
|
2141
|
-
<code class="ruby"> end</code>
|
2142
|
-
</li>
|
2143
|
-
</div>
|
2144
|
-
|
2145
|
-
<div>
|
2146
|
-
<li class="never" data-hits="" data-linenumber="10">
|
2147
|
-
|
2148
|
-
|
2149
|
-
|
2150
|
-
|
2151
|
-
|
2152
|
-
<code class="ruby"></code>
|
2153
|
-
</li>
|
2154
|
-
</div>
|
2155
|
-
|
2156
|
-
<div>
|
2157
|
-
<li class="covered" data-hits="1" data-linenumber="11">
|
2158
|
-
<span class="hits">1</span>
|
2159
|
-
|
2160
|
-
|
2161
|
-
|
2162
|
-
|
2163
|
-
<code class="ruby"> def set_offset(offset)</code>
|
2164
|
-
</li>
|
2165
|
-
</div>
|
2166
|
-
|
2167
|
-
<div>
|
2168
|
-
<li class="covered" data-hits="2" data-linenumber="12">
|
2169
|
-
<span class="hits">2</span>
|
2170
|
-
|
2171
|
-
|
2172
|
-
|
2173
|
-
|
2174
|
-
<code class="ruby"> @offset = offset</code>
|
2175
|
-
</li>
|
2176
|
-
</div>
|
2177
|
-
|
2178
|
-
<div>
|
2179
|
-
<li class="covered" data-hits="2" data-linenumber="13">
|
2180
|
-
<span class="hits">2</span>
|
2181
|
-
|
2182
|
-
|
2183
|
-
|
2184
|
-
|
2185
|
-
<code class="ruby"> self</code>
|
2186
|
-
</li>
|
2187
|
-
</div>
|
2188
|
-
|
2189
|
-
<div>
|
2190
|
-
<li class="never" data-hits="" data-linenumber="14">
|
2191
|
-
|
2192
|
-
|
2193
|
-
|
2194
|
-
|
2195
|
-
|
2196
|
-
<code class="ruby"> end</code>
|
2197
|
-
</li>
|
2198
|
-
</div>
|
2199
|
-
|
2200
|
-
<div>
|
2201
|
-
<li class="never" data-hits="" data-linenumber="15">
|
2202
|
-
|
2203
|
-
|
2204
|
-
|
2205
|
-
|
2206
|
-
|
2207
|
-
<code class="ruby"></code>
|
2208
|
-
</li>
|
2209
|
-
</div>
|
2210
|
-
|
2211
|
-
<div>
|
2212
|
-
<li class="covered" data-hits="1" data-linenumber="16">
|
2213
|
-
<span class="hits">1</span>
|
2214
|
-
|
2215
|
-
|
2216
|
-
|
2217
|
-
|
2218
|
-
<code class="ruby"> def set_size(size)</code>
|
2219
|
-
</li>
|
2220
|
-
</div>
|
2221
|
-
|
2222
|
-
<div>
|
2223
|
-
<li class="covered" data-hits="2" data-linenumber="17">
|
2224
|
-
<span class="hits">2</span>
|
2225
|
-
|
2226
|
-
|
2227
|
-
|
2228
|
-
|
2229
|
-
<code class="ruby"> @size = size</code>
|
2230
|
-
</li>
|
2231
|
-
</div>
|
2232
|
-
|
2233
|
-
<div>
|
2234
|
-
<li class="covered" data-hits="2" data-linenumber="18">
|
2235
|
-
<span class="hits">2</span>
|
2236
|
-
|
2237
|
-
|
2238
|
-
|
2239
|
-
|
2240
|
-
<code class="ruby"> self</code>
|
2241
|
-
</li>
|
2242
|
-
</div>
|
2243
|
-
|
2244
|
-
<div>
|
2245
|
-
<li class="never" data-hits="" data-linenumber="19">
|
2246
|
-
|
2247
|
-
|
2248
|
-
|
2249
|
-
|
2250
|
-
|
2251
|
-
<code class="ruby"> end</code>
|
2252
|
-
</li>
|
2253
|
-
</div>
|
2254
|
-
|
2255
|
-
<div>
|
2256
|
-
<li class="never" data-hits="" data-linenumber="20">
|
2257
|
-
|
2258
|
-
|
2259
|
-
|
2260
|
-
|
2261
|
-
|
2262
|
-
<code class="ruby"></code>
|
2263
|
-
</li>
|
2264
|
-
</div>
|
2265
|
-
|
2266
|
-
<div>
|
2267
|
-
<li class="covered" data-hits="1" data-linenumber="21">
|
2268
|
-
<span class="hits">1</span>
|
2269
|
-
|
2270
|
-
|
2271
|
-
|
2272
|
-
|
2273
|
-
<code class="ruby"> def set_from_date(from_date)</code>
|
2274
|
-
</li>
|
2275
|
-
</div>
|
2276
|
-
|
2277
|
-
<div>
|
2278
|
-
<li class="covered" data-hits="2" data-linenumber="22">
|
2279
|
-
<span class="hits">2</span>
|
2280
|
-
|
2281
|
-
|
2282
|
-
|
2283
|
-
|
2284
|
-
<code class="ruby"> @from_date = from_date</code>
|
2285
|
-
</li>
|
2286
|
-
</div>
|
2287
|
-
|
2288
|
-
<div>
|
2289
|
-
<li class="covered" data-hits="2" data-linenumber="23">
|
2290
|
-
<span class="hits">2</span>
|
2291
|
-
|
2292
|
-
|
2293
|
-
|
2294
|
-
|
2295
|
-
<code class="ruby"> self</code>
|
2296
|
-
</li>
|
2297
|
-
</div>
|
2298
|
-
|
2299
|
-
<div>
|
2300
|
-
<li class="never" data-hits="" data-linenumber="24">
|
2301
|
-
|
2302
|
-
|
2303
|
-
|
2304
|
-
|
2305
|
-
|
2306
|
-
<code class="ruby"> end</code>
|
2307
|
-
</li>
|
2308
|
-
</div>
|
2309
|
-
|
2310
|
-
<div>
|
2311
|
-
<li class="never" data-hits="" data-linenumber="25">
|
2312
|
-
|
2313
|
-
|
2314
|
-
|
2315
|
-
|
2316
|
-
|
2317
|
-
<code class="ruby"></code>
|
2318
|
-
</li>
|
2319
|
-
</div>
|
2320
|
-
|
2321
|
-
<div>
|
2322
|
-
<li class="covered" data-hits="1" data-linenumber="26">
|
2323
|
-
<span class="hits">1</span>
|
2324
|
-
|
2325
|
-
|
2326
|
-
|
2327
|
-
|
2328
|
-
<code class="ruby"> def set_to_date(to_date)</code>
|
2329
|
-
</li>
|
2330
|
-
</div>
|
2331
|
-
|
2332
|
-
<div>
|
2333
|
-
<li class="covered" data-hits="2" data-linenumber="27">
|
2334
|
-
<span class="hits">2</span>
|
2335
|
-
|
2336
|
-
|
2337
|
-
|
2338
|
-
|
2339
|
-
<code class="ruby"> @to_date = to_date</code>
|
2340
|
-
</li>
|
2341
|
-
</div>
|
2342
|
-
|
2343
|
-
<div>
|
2344
|
-
<li class="covered" data-hits="2" data-linenumber="28">
|
2345
|
-
<span class="hits">2</span>
|
2346
|
-
|
2347
|
-
|
2348
|
-
|
2349
|
-
|
2350
|
-
<code class="ruby"> self</code>
|
2351
|
-
</li>
|
2352
|
-
</div>
|
2353
|
-
|
2354
|
-
<div>
|
2355
|
-
<li class="never" data-hits="" data-linenumber="29">
|
2356
|
-
|
2357
|
-
|
2358
|
-
|
2359
|
-
|
2360
|
-
|
2361
|
-
<code class="ruby"> end</code>
|
2362
|
-
</li>
|
2363
|
-
</div>
|
2364
|
-
|
2365
|
-
<div>
|
2366
|
-
<li class="never" data-hits="" data-linenumber="30">
|
2367
|
-
|
2368
|
-
|
2369
|
-
|
2370
|
-
|
2371
|
-
|
2372
|
-
<code class="ruby"></code>
|
2373
|
-
</li>
|
2374
|
-
</div>
|
2375
|
-
|
2376
|
-
<div>
|
2377
|
-
<li class="covered" data-hits="1" data-linenumber="31">
|
2378
|
-
<span class="hits">1</span>
|
2379
|
-
|
2380
|
-
|
2381
|
-
|
2382
|
-
|
2383
|
-
<code class="ruby"> def set_commerce_case_id(commerce_case_id)</code>
|
2384
|
-
</li>
|
2385
|
-
</div>
|
2386
|
-
|
2387
|
-
<div>
|
2388
|
-
<li class="covered" data-hits="2" data-linenumber="32">
|
2389
|
-
<span class="hits">2</span>
|
2390
|
-
|
2391
|
-
|
2392
|
-
|
2393
|
-
|
2394
|
-
<code class="ruby"> @commerce_case_id = commerce_case_id</code>
|
2395
|
-
</li>
|
2396
|
-
</div>
|
2397
|
-
|
2398
|
-
<div>
|
2399
|
-
<li class="covered" data-hits="2" data-linenumber="33">
|
2400
|
-
<span class="hits">2</span>
|
2401
|
-
|
2402
|
-
|
2403
|
-
|
2404
|
-
|
2405
|
-
<code class="ruby"> self</code>
|
2406
|
-
</li>
|
2407
|
-
</div>
|
2408
|
-
|
2409
|
-
<div>
|
2410
|
-
<li class="never" data-hits="" data-linenumber="34">
|
2411
|
-
|
2412
|
-
|
2413
|
-
|
2414
|
-
|
2415
|
-
|
2416
|
-
<code class="ruby"> end</code>
|
2417
|
-
</li>
|
2418
|
-
</div>
|
2419
|
-
|
2420
|
-
<div>
|
2421
|
-
<li class="never" data-hits="" data-linenumber="35">
|
2422
|
-
|
2423
|
-
|
2424
|
-
|
2425
|
-
|
2426
|
-
|
2427
|
-
<code class="ruby"></code>
|
2428
|
-
</li>
|
2429
|
-
</div>
|
2430
|
-
|
2431
|
-
<div>
|
2432
|
-
<li class="covered" data-hits="1" data-linenumber="36">
|
2433
|
-
<span class="hits">1</span>
|
2434
|
-
|
2435
|
-
|
2436
|
-
|
2437
|
-
|
2438
|
-
<code class="ruby"> def set_merchant_reference(merchant_reference)</code>
|
2439
|
-
</li>
|
2440
|
-
</div>
|
2441
|
-
|
2442
|
-
<div>
|
2443
|
-
<li class="covered" data-hits="2" data-linenumber="37">
|
2444
|
-
<span class="hits">2</span>
|
2445
|
-
|
2446
|
-
|
2447
|
-
|
2448
|
-
|
2449
|
-
<code class="ruby"> @merchant_reference = merchant_reference</code>
|
2450
|
-
</li>
|
2451
|
-
</div>
|
2452
|
-
|
2453
|
-
<div>
|
2454
|
-
<li class="covered" data-hits="2" data-linenumber="38">
|
2455
|
-
<span class="hits">2</span>
|
2456
|
-
|
2457
|
-
|
2458
|
-
|
2459
|
-
|
2460
|
-
<code class="ruby"> self</code>
|
2461
|
-
</li>
|
2462
|
-
</div>
|
2463
|
-
|
2464
|
-
<div>
|
2465
|
-
<li class="never" data-hits="" data-linenumber="39">
|
2466
|
-
|
2467
|
-
|
2468
|
-
|
2469
|
-
|
2470
|
-
|
2471
|
-
<code class="ruby"> end</code>
|
2472
|
-
</li>
|
2473
|
-
</div>
|
2474
|
-
|
2475
|
-
<div>
|
2476
|
-
<li class="never" data-hits="" data-linenumber="40">
|
2477
|
-
|
2478
|
-
|
2479
|
-
|
2480
|
-
|
2481
|
-
|
2482
|
-
<code class="ruby"></code>
|
2483
|
-
</li>
|
2484
|
-
</div>
|
2485
|
-
|
2486
|
-
<div>
|
2487
|
-
<li class="covered" data-hits="1" data-linenumber="41">
|
2488
|
-
<span class="hits">1</span>
|
2489
|
-
|
2490
|
-
|
2491
|
-
|
2492
|
-
|
2493
|
-
<code class="ruby"> def set_merchant_customer_id(merchant_customer_id)</code>
|
2494
|
-
</li>
|
2495
|
-
</div>
|
2496
|
-
|
2497
|
-
<div>
|
2498
|
-
<li class="covered" data-hits="2" data-linenumber="42">
|
2499
|
-
<span class="hits">2</span>
|
2500
|
-
|
2501
|
-
|
2502
|
-
|
2503
|
-
|
2504
|
-
<code class="ruby"> @merchant_customer_id = merchant_customer_id</code>
|
2505
|
-
</li>
|
2506
|
-
</div>
|
2507
|
-
|
2508
|
-
<div>
|
2509
|
-
<li class="covered" data-hits="2" data-linenumber="43">
|
2510
|
-
<span class="hits">2</span>
|
2511
|
-
|
2512
|
-
|
2513
|
-
|
2514
|
-
|
2515
|
-
<code class="ruby"> self</code>
|
2516
|
-
</li>
|
2517
|
-
</div>
|
2518
|
-
|
2519
|
-
<div>
|
2520
|
-
<li class="never" data-hits="" data-linenumber="44">
|
2521
|
-
|
2522
|
-
|
2523
|
-
|
2524
|
-
|
2525
|
-
|
2526
|
-
<code class="ruby"> end</code>
|
2527
|
-
</li>
|
2528
|
-
</div>
|
2529
|
-
|
2530
|
-
<div>
|
2531
|
-
<li class="never" data-hits="" data-linenumber="45">
|
2532
|
-
|
2533
|
-
|
2534
|
-
|
2535
|
-
|
2536
|
-
|
2537
|
-
<code class="ruby"></code>
|
2538
|
-
</li>
|
2539
|
-
</div>
|
2540
|
-
|
2541
|
-
<div>
|
2542
|
-
<li class="covered" data-hits="1" data-linenumber="46">
|
2543
|
-
<span class="hits">1</span>
|
2544
|
-
|
2545
|
-
|
2546
|
-
|
2547
|
-
|
2548
|
-
<code class="ruby"> def set_include_checkout_status(include_checkout_status)</code>
|
2549
|
-
</li>
|
2550
|
-
</div>
|
2551
|
-
|
2552
|
-
<div>
|
2553
|
-
<li class="covered" data-hits="2" data-linenumber="47">
|
2554
|
-
<span class="hits">2</span>
|
2555
|
-
|
2556
|
-
|
2557
|
-
|
2558
|
-
|
2559
|
-
<code class="ruby"> @include_checkout_status = include_checkout_status</code>
|
2560
|
-
</li>
|
2561
|
-
</div>
|
2562
|
-
|
2563
|
-
<div>
|
2564
|
-
<li class="covered" data-hits="2" data-linenumber="48">
|
2565
|
-
<span class="hits">2</span>
|
2566
|
-
|
2567
|
-
|
2568
|
-
|
2569
|
-
|
2570
|
-
<code class="ruby"> self</code>
|
2571
|
-
</li>
|
2572
|
-
</div>
|
2573
|
-
|
2574
|
-
<div>
|
2575
|
-
<li class="never" data-hits="" data-linenumber="49">
|
2576
|
-
|
2577
|
-
|
2578
|
-
|
2579
|
-
|
2580
|
-
|
2581
|
-
<code class="ruby"> end</code>
|
2582
|
-
</li>
|
2583
|
-
</div>
|
2584
|
-
|
2585
|
-
<div>
|
2586
|
-
<li class="never" data-hits="" data-linenumber="50">
|
2587
|
-
|
2588
|
-
|
2589
|
-
|
2590
|
-
|
2591
|
-
|
2592
|
-
<code class="ruby"></code>
|
2593
|
-
</li>
|
2594
|
-
</div>
|
2595
|
-
|
2596
|
-
<div>
|
2597
|
-
<li class="covered" data-hits="1" data-linenumber="51">
|
2598
|
-
<span class="hits">1</span>
|
2599
|
-
|
2600
|
-
|
2601
|
-
|
2602
|
-
|
2603
|
-
<code class="ruby"> def set_include_payment_channel(include_payment_channel)</code>
|
2604
|
-
</li>
|
2605
|
-
</div>
|
2606
|
-
|
2607
|
-
<div>
|
2608
|
-
<li class="covered" data-hits="2" data-linenumber="52">
|
2609
|
-
<span class="hits">2</span>
|
2610
|
-
|
2611
|
-
|
2612
|
-
|
2613
|
-
|
2614
|
-
<code class="ruby"> @include_payment_channel = include_payment_channel</code>
|
2615
|
-
</li>
|
2616
|
-
</div>
|
2617
|
-
|
2618
|
-
<div>
|
2619
|
-
<li class="covered" data-hits="2" data-linenumber="53">
|
2620
|
-
<span class="hits">2</span>
|
2621
|
-
|
2622
|
-
|
2623
|
-
|
2624
|
-
|
2625
|
-
<code class="ruby"> self</code>
|
2626
|
-
</li>
|
2627
|
-
</div>
|
2628
|
-
|
2629
|
-
<div>
|
2630
|
-
<li class="never" data-hits="" data-linenumber="54">
|
2631
|
-
|
2632
|
-
|
2633
|
-
|
2634
|
-
|
2635
|
-
|
2636
|
-
<code class="ruby"> end</code>
|
2637
|
-
</li>
|
2638
|
-
</div>
|
2639
|
-
|
2640
|
-
<div>
|
2641
|
-
<li class="never" data-hits="" data-linenumber="55">
|
2642
|
-
|
2643
|
-
|
2644
|
-
|
2645
|
-
|
2646
|
-
|
2647
|
-
<code class="ruby"></code>
|
2648
|
-
</li>
|
2649
|
-
</div>
|
2650
|
-
|
2651
|
-
<div>
|
2652
|
-
<li class="covered" data-hits="1" data-linenumber="56">
|
2653
|
-
<span class="hits">1</span>
|
2654
|
-
|
2655
|
-
|
2656
|
-
|
2657
|
-
|
2658
|
-
<code class="ruby"> def to_query_map</code>
|
2659
|
-
</li>
|
2660
|
-
</div>
|
2661
|
-
|
2662
|
-
<div>
|
2663
|
-
<li class="covered" data-hits="9" data-linenumber="57">
|
2664
|
-
<span class="hits">9</span>
|
2665
|
-
|
2666
|
-
|
2667
|
-
|
2668
|
-
|
2669
|
-
<code class="ruby"> query = {}</code>
|
2670
|
-
</li>
|
2671
|
-
</div>
|
2672
|
-
|
2673
|
-
<div>
|
2674
|
-
<li class="never" data-hits="" data-linenumber="58">
|
2675
|
-
|
2676
|
-
|
2677
|
-
|
2678
|
-
|
2679
|
-
|
2680
|
-
<code class="ruby"></code>
|
2681
|
-
</li>
|
2682
|
-
</div>
|
2683
|
-
|
2684
|
-
<div>
|
2685
|
-
<li class="covered" data-hits="9" data-linenumber="59">
|
2686
|
-
<span class="hits">9</span>
|
2687
|
-
|
2688
|
-
|
2689
|
-
|
2690
|
-
|
2691
|
-
<code class="ruby"> query['offset'] = @offset.to_s if @offset</code>
|
2692
|
-
</li>
|
2693
|
-
</div>
|
2694
|
-
|
2695
|
-
<div>
|
2696
|
-
<li class="covered" data-hits="9" data-linenumber="60">
|
2697
|
-
<span class="hits">9</span>
|
2698
|
-
|
2699
|
-
|
2700
|
-
|
2701
|
-
|
2702
|
-
<code class="ruby"> query['size'] = @size.to_s if @size</code>
|
2703
|
-
</li>
|
2704
|
-
</div>
|
2705
|
-
|
2706
|
-
<div>
|
2707
|
-
<li class="covered" data-hits="9" data-linenumber="61">
|
2708
|
-
<span class="hits">9</span>
|
2709
|
-
|
2710
|
-
|
2711
|
-
|
2712
|
-
|
2713
|
-
<code class="ruby"> query['fromDate'] = @from_date if @from_date</code>
|
2714
|
-
</li>
|
2715
|
-
</div>
|
2716
|
-
|
2717
|
-
<div>
|
2718
|
-
<li class="covered" data-hits="9" data-linenumber="62">
|
2719
|
-
<span class="hits">9</span>
|
2720
|
-
|
2721
|
-
|
2722
|
-
|
2723
|
-
|
2724
|
-
<code class="ruby"> query['toDate'] = @to_date if @to_date</code>
|
2725
|
-
</li>
|
2726
|
-
</div>
|
2727
|
-
|
2728
|
-
<div>
|
2729
|
-
<li class="covered" data-hits="9" data-linenumber="63">
|
2730
|
-
<span class="hits">9</span>
|
2731
|
-
|
2732
|
-
|
2733
|
-
|
2734
|
-
|
2735
|
-
<code class="ruby"> query['commerceCaseId'] = @commerce_case_id if @commerce_case_id</code>
|
2736
|
-
</li>
|
2737
|
-
</div>
|
2738
|
-
|
2739
|
-
<div>
|
2740
|
-
<li class="covered" data-hits="9" data-linenumber="64">
|
2741
|
-
<span class="hits">9</span>
|
2742
|
-
|
2743
|
-
|
2744
|
-
|
2745
|
-
|
2746
|
-
<code class="ruby"> query['merchantReference'] = @merchant_reference if @merchant_reference</code>
|
2747
|
-
</li>
|
2748
|
-
</div>
|
2749
|
-
|
2750
|
-
<div>
|
2751
|
-
<li class="covered" data-hits="9" data-linenumber="65">
|
2752
|
-
<span class="hits">9</span>
|
2753
|
-
|
2754
|
-
|
2755
|
-
|
2756
|
-
|
2757
|
-
<code class="ruby"> query['merchantCustomerId'] = @merchant_customer_id if @merchant_customer_id</code>
|
2758
|
-
</li>
|
2759
|
-
</div>
|
2760
|
-
|
2761
|
-
<div>
|
2762
|
-
<li class="covered" data-hits="9" data-linenumber="66">
|
2763
|
-
<span class="hits">9</span>
|
2764
|
-
|
2765
|
-
|
2766
|
-
|
2767
|
-
|
2768
|
-
<code class="ruby"> query['includeCheckoutStatus'] = @include_checkout_status.join(',') if @include_checkout_status.any?</code>
|
2769
|
-
</li>
|
2770
|
-
</div>
|
2771
|
-
|
2772
|
-
<div>
|
2773
|
-
<li class="covered" data-hits="9" data-linenumber="67">
|
2774
|
-
<span class="hits">9</span>
|
2775
|
-
|
2776
|
-
|
2777
|
-
|
2778
|
-
|
2779
|
-
<code class="ruby"> query['includePaymentChannel'] = @include_payment_channel.join(',') if @include_payment_channel.any?</code>
|
2780
|
-
</li>
|
2781
|
-
</div>
|
2782
|
-
|
2783
|
-
<div>
|
2784
|
-
<li class="never" data-hits="" data-linenumber="68">
|
2785
|
-
|
2786
|
-
|
2787
|
-
|
2788
|
-
|
2789
|
-
|
2790
|
-
<code class="ruby"></code>
|
2791
|
-
</li>
|
2792
|
-
</div>
|
2793
|
-
|
2794
|
-
<div>
|
2795
|
-
<li class="covered" data-hits="9" data-linenumber="69">
|
2796
|
-
<span class="hits">9</span>
|
2797
|
-
|
2798
|
-
|
2799
|
-
|
2800
|
-
|
2801
|
-
<code class="ruby"> query</code>
|
2802
|
-
</li>
|
2803
|
-
</div>
|
2804
|
-
|
2805
|
-
<div>
|
2806
|
-
<li class="never" data-hits="" data-linenumber="70">
|
2807
|
-
|
2808
|
-
|
2809
|
-
|
2810
|
-
|
2811
|
-
|
2812
|
-
<code class="ruby"> end</code>
|
2813
|
-
</li>
|
2814
|
-
</div>
|
2815
|
-
|
2816
|
-
<div>
|
2817
|
-
<li class="never" data-hits="" data-linenumber="71">
|
2818
|
-
|
2819
|
-
|
2820
|
-
|
2821
|
-
|
2822
|
-
|
2823
|
-
<code class="ruby">end</code>
|
2824
|
-
</li>
|
2825
|
-
</div>
|
2826
|
-
|
2827
|
-
</ol>
|
2828
|
-
</pre>
|
2829
|
-
</div>
|
2830
|
-
|
2831
|
-
|
2832
|
-
<div class="source_table" id="74fc2a7c921ba54233c3fb66a8fd357d93da25d5">
|
2833
|
-
<div class="header">
|
2834
|
-
<h3>lib/PCP-server-Ruby-SDK/request_header_generator.rb</h3>
|
2835
|
-
<h4>
|
2836
|
-
<span class="green">
|
2837
|
-
100.0%
|
2838
|
-
</span>
|
2839
|
-
|
2840
|
-
lines covered
|
2841
|
-
</h4>
|
2842
|
-
|
2843
|
-
|
2844
|
-
|
2845
|
-
<div class="t-line-summary">
|
2846
|
-
<b>49</b> relevant lines.
|
2847
|
-
<span class="green"><b>49</b> lines covered</span> and
|
2848
|
-
<span class="red"><b>0</b> lines missed.</span>
|
2849
|
-
</div>
|
2850
|
-
|
2851
|
-
|
2852
|
-
|
2853
|
-
</div>
|
2854
|
-
|
2855
|
-
<pre>
|
2856
|
-
<ol>
|
2857
|
-
|
2858
|
-
<div>
|
2859
|
-
<li class="covered" data-hits="1" data-linenumber="1">
|
2860
|
-
<span class="hits">1</span>
|
2861
|
-
|
2862
|
-
|
2863
|
-
|
2864
|
-
|
2865
|
-
<code class="ruby">require 'openssl'</code>
|
2866
|
-
</li>
|
2867
|
-
</div>
|
2868
|
-
|
2869
|
-
<div>
|
2870
|
-
<li class="covered" data-hits="1" data-linenumber="2">
|
2871
|
-
<span class="hits">1</span>
|
2872
|
-
|
2873
|
-
|
2874
|
-
|
2875
|
-
|
2876
|
-
<code class="ruby">require 'time'</code>
|
2877
|
-
</li>
|
2878
|
-
</div>
|
2879
|
-
|
2880
|
-
<div>
|
2881
|
-
<li class="covered" data-hits="1" data-linenumber="3">
|
2882
|
-
<span class="hits">1</span>
|
2883
|
-
|
2884
|
-
|
2885
|
-
|
2886
|
-
|
2887
|
-
<code class="ruby">require 'uri'</code>
|
2888
|
-
</li>
|
2889
|
-
</div>
|
2890
|
-
|
2891
|
-
<div>
|
2892
|
-
<li class="covered" data-hits="1" data-linenumber="4">
|
2893
|
-
<span class="hits">1</span>
|
2894
|
-
|
2895
|
-
|
2896
|
-
|
2897
|
-
|
2898
|
-
<code class="ruby">require 'base64'</code>
|
2899
|
-
</li>
|
2900
|
-
</div>
|
2901
|
-
|
2902
|
-
<div>
|
2903
|
-
<li class="covered" data-hits="1" data-linenumber="5">
|
2904
|
-
<span class="hits">1</span>
|
2905
|
-
|
2906
|
-
|
2907
|
-
|
2908
|
-
|
2909
|
-
<code class="ruby">require 'json'</code>
|
2910
|
-
</li>
|
2911
|
-
</div>
|
2912
|
-
|
2913
|
-
<div>
|
2914
|
-
<li class="covered" data-hits="1" data-linenumber="6">
|
2915
|
-
<span class="hits">1</span>
|
2916
|
-
|
2917
|
-
|
2918
|
-
|
2919
|
-
|
2920
|
-
<code class="ruby">require_relative 'communicator_configuration'</code>
|
2921
|
-
</li>
|
2922
|
-
</div>
|
2923
|
-
|
2924
|
-
<div>
|
2925
|
-
<li class="covered" data-hits="1" data-linenumber="7">
|
2926
|
-
<span class="hits">1</span>
|
2927
|
-
|
2928
|
-
|
2929
|
-
|
2930
|
-
|
2931
|
-
<code class="ruby">require_relative 'utils/server_meta_info'</code>
|
2932
|
-
</li>
|
2933
|
-
</div>
|
2934
|
-
|
2935
|
-
<div>
|
2936
|
-
<li class="never" data-hits="" data-linenumber="8">
|
2937
|
-
|
2938
|
-
|
2939
|
-
|
2940
|
-
|
2941
|
-
|
2942
|
-
<code class="ruby"></code>
|
2943
|
-
</li>
|
2944
|
-
</div>
|
2945
|
-
|
2946
|
-
<div>
|
2947
|
-
<li class="covered" data-hits="1" data-linenumber="9">
|
2948
|
-
<span class="hits">1</span>
|
2949
|
-
|
2950
|
-
|
2951
|
-
|
2952
|
-
|
2953
|
-
<code class="ruby">class RequestHeaderGenerator</code>
|
2954
|
-
</li>
|
2955
|
-
</div>
|
2956
|
-
|
2957
|
-
<div>
|
2958
|
-
<li class="covered" data-hits="1" data-linenumber="10">
|
2959
|
-
<span class="hits">1</span>
|
2960
|
-
|
2961
|
-
|
2962
|
-
|
2963
|
-
|
2964
|
-
<code class="ruby"> SERVER_META_INFO_HEADER_NAME = 'X-GCS-ServerMetaInfo'</code>
|
2965
|
-
</li>
|
2966
|
-
</div>
|
2967
|
-
|
2968
|
-
<div>
|
2969
|
-
<li class="covered" data-hits="1" data-linenumber="11">
|
2970
|
-
<span class="hits">1</span>
|
2971
|
-
|
2972
|
-
|
2973
|
-
|
2974
|
-
|
2975
|
-
<code class="ruby"> CLIENT_META_INFO_HEADER_NAME = 'X-GCS-ClientMetaInfo'</code>
|
2976
|
-
</li>
|
2977
|
-
</div>
|
2978
|
-
|
2979
|
-
<div>
|
2980
|
-
<li class="covered" data-hits="1" data-linenumber="12">
|
2981
|
-
<span class="hits">1</span>
|
2982
|
-
|
2983
|
-
|
2984
|
-
|
2985
|
-
|
2986
|
-
<code class="ruby"> AUTHORIZATION_HEADER_NAME = 'Authorization'</code>
|
2987
|
-
</li>
|
2988
|
-
</div>
|
2989
|
-
|
2990
|
-
<div>
|
2991
|
-
<li class="covered" data-hits="1" data-linenumber="13">
|
2992
|
-
<span class="hits">1</span>
|
2993
|
-
|
2994
|
-
|
2995
|
-
|
2996
|
-
|
2997
|
-
<code class="ruby"> DATE_HEADER_NAME = 'Date'</code>
|
2998
|
-
</li>
|
2999
|
-
</div>
|
3000
|
-
|
3001
|
-
<div>
|
3002
|
-
<li class="covered" data-hits="1" data-linenumber="14">
|
3003
|
-
<span class="hits">1</span>
|
3004
|
-
|
3005
|
-
|
3006
|
-
|
3007
|
-
|
3008
|
-
<code class="ruby"> CONTENT_TYPE_HEADER_NAME = 'Content-Type'</code>
|
3009
|
-
</li>
|
3010
|
-
</div>
|
3011
|
-
|
3012
|
-
<div>
|
3013
|
-
<li class="covered" data-hits="1" data-linenumber="15">
|
3014
|
-
<span class="hits">1</span>
|
3015
|
-
|
3016
|
-
|
3017
|
-
|
3018
|
-
|
3019
|
-
<code class="ruby"> ALGORITHM = 'sha256'</code>
|
3020
|
-
</li>
|
3021
|
-
</div>
|
3022
|
-
|
3023
|
-
<div>
|
3024
|
-
<li class="covered" data-hits="1" data-linenumber="16">
|
3025
|
-
<span class="hits">1</span>
|
3026
|
-
|
3027
|
-
|
3028
|
-
|
3029
|
-
|
3030
|
-
<code class="ruby"> WHITESPACE_REGEX = /\r?\n[h]*/.freeze</code>
|
3031
|
-
</li>
|
3032
|
-
</div>
|
3033
|
-
|
3034
|
-
<div>
|
3035
|
-
<li class="never" data-hits="" data-linenumber="17">
|
3036
|
-
|
3037
|
-
|
3038
|
-
|
3039
|
-
|
3040
|
-
|
3041
|
-
<code class="ruby"></code>
|
3042
|
-
</li>
|
3043
|
-
</div>
|
3044
|
-
|
3045
|
-
<div>
|
3046
|
-
<li class="covered" data-hits="1" data-linenumber="18">
|
3047
|
-
<span class="hits">1</span>
|
3048
|
-
|
3049
|
-
|
3050
|
-
|
3051
|
-
|
3052
|
-
<code class="ruby"> def initialize(config)</code>
|
3053
|
-
</li>
|
3054
|
-
</div>
|
3055
|
-
|
3056
|
-
<div>
|
3057
|
-
<li class="covered" data-hits="6" data-linenumber="19">
|
3058
|
-
<span class="hits">6</span>
|
3059
|
-
|
3060
|
-
|
3061
|
-
|
3062
|
-
|
3063
|
-
<code class="ruby"> @config = config</code>
|
3064
|
-
</li>
|
3065
|
-
</div>
|
3066
|
-
|
3067
|
-
<div>
|
3068
|
-
<li class="never" data-hits="" data-linenumber="20">
|
3069
|
-
|
3070
|
-
|
3071
|
-
|
3072
|
-
|
3073
|
-
|
3074
|
-
<code class="ruby"> end</code>
|
3075
|
-
</li>
|
3076
|
-
</div>
|
3077
|
-
|
3078
|
-
<div>
|
3079
|
-
<li class="never" data-hits="" data-linenumber="21">
|
3080
|
-
|
3081
|
-
|
3082
|
-
|
3083
|
-
|
3084
|
-
|
3085
|
-
<code class="ruby"></code>
|
3086
|
-
</li>
|
3087
|
-
</div>
|
3088
|
-
|
3089
|
-
<div>
|
3090
|
-
<li class="covered" data-hits="1" data-linenumber="22">
|
3091
|
-
<span class="hits">1</span>
|
3092
|
-
|
3093
|
-
|
3094
|
-
|
3095
|
-
|
3096
|
-
<code class="ruby"> def generate_additional_request_headers(url, request)</code>
|
3097
|
-
</li>
|
3098
|
-
</div>
|
3099
|
-
|
3100
|
-
<div>
|
3101
|
-
<li class="covered" data-hits="5" data-linenumber="23">
|
3102
|
-
<span class="hits">5</span>
|
3103
|
-
|
3104
|
-
|
3105
|
-
|
3106
|
-
|
3107
|
-
<code class="ruby"> headers = request[:headers] || {}</code>
|
3108
|
-
</li>
|
3109
|
-
</div>
|
3110
|
-
|
3111
|
-
<div>
|
3112
|
-
<li class="never" data-hits="" data-linenumber="24">
|
3113
|
-
|
3114
|
-
|
3115
|
-
|
3116
|
-
|
3117
|
-
|
3118
|
-
<code class="ruby"></code>
|
3119
|
-
</li>
|
3120
|
-
</div>
|
3121
|
-
|
3122
|
-
<div>
|
3123
|
-
<li class="covered" data-hits="5" data-linenumber="25">
|
3124
|
-
<span class="hits">5</span>
|
3125
|
-
|
3126
|
-
|
3127
|
-
|
3128
|
-
|
3129
|
-
<code class="ruby"> headers[DATE_HEADER_NAME] ||= Time.now.utc.httpdate</code>
|
3130
|
-
</li>
|
3131
|
-
</div>
|
3132
|
-
|
3133
|
-
<div>
|
3134
|
-
<li class="covered" data-hits="5" data-linenumber="26">
|
3135
|
-
<span class="hits">5</span>
|
3136
|
-
|
3137
|
-
|
3138
|
-
|
3139
|
-
|
3140
|
-
<code class="ruby"> headers[SERVER_META_INFO_HEADER_NAME] ||= get_server_meta_info</code>
|
3141
|
-
</li>
|
3142
|
-
</div>
|
3143
|
-
|
3144
|
-
<div>
|
3145
|
-
<li class="covered" data-hits="5" data-linenumber="27">
|
3146
|
-
<span class="hits">5</span>
|
3147
|
-
|
3148
|
-
|
3149
|
-
|
3150
|
-
|
3151
|
-
<code class="ruby"> headers[CLIENT_META_INFO_HEADER_NAME] ||= get_client_meta_info</code>
|
3152
|
-
</li>
|
3153
|
-
</div>
|
3154
|
-
|
3155
|
-
<div>
|
3156
|
-
<li class="covered" data-hits="5" data-linenumber="28">
|
3157
|
-
<span class="hits">5</span>
|
3158
|
-
|
3159
|
-
|
3160
|
-
|
3161
|
-
|
3162
|
-
<code class="ruby"> headers[AUTHORIZATION_HEADER_NAME] ||= get_auth_header(url, request, headers)</code>
|
3163
|
-
</li>
|
3164
|
-
</div>
|
3165
|
-
|
3166
|
-
<div>
|
3167
|
-
<li class="never" data-hits="" data-linenumber="29">
|
3168
|
-
|
3169
|
-
|
3170
|
-
|
3171
|
-
|
3172
|
-
|
3173
|
-
<code class="ruby"></code>
|
3174
|
-
</li>
|
3175
|
-
</div>
|
3176
|
-
|
3177
|
-
<div>
|
3178
|
-
<li class="covered" data-hits="5" data-linenumber="30">
|
3179
|
-
<span class="hits">5</span>
|
3180
|
-
|
3181
|
-
|
3182
|
-
|
3183
|
-
|
3184
|
-
<code class="ruby"> request.merge(headers: headers)</code>
|
3185
|
-
</li>
|
3186
|
-
</div>
|
3187
|
-
|
3188
|
-
<div>
|
3189
|
-
<li class="never" data-hits="" data-linenumber="31">
|
3190
|
-
|
3191
|
-
|
3192
|
-
|
3193
|
-
|
3194
|
-
|
3195
|
-
<code class="ruby"> end</code>
|
3196
|
-
</li>
|
3197
|
-
</div>
|
3198
|
-
|
3199
|
-
<div>
|
3200
|
-
<li class="never" data-hits="" data-linenumber="32">
|
3201
|
-
|
3202
|
-
|
3203
|
-
|
3204
|
-
|
3205
|
-
|
3206
|
-
<code class="ruby"></code>
|
3207
|
-
</li>
|
3208
|
-
</div>
|
3209
|
-
|
3210
|
-
<div>
|
3211
|
-
<li class="covered" data-hits="1" data-linenumber="33">
|
3212
|
-
<span class="hits">1</span>
|
3213
|
-
|
3214
|
-
|
3215
|
-
|
3216
|
-
|
3217
|
-
<code class="ruby">private</code>
|
3218
|
-
</li>
|
3219
|
-
</div>
|
3220
|
-
|
3221
|
-
<div>
|
3222
|
-
<li class="never" data-hits="" data-linenumber="34">
|
3223
|
-
|
3224
|
-
|
3225
|
-
|
3226
|
-
|
3227
|
-
|
3228
|
-
<code class="ruby"></code>
|
3229
|
-
</li>
|
3230
|
-
</div>
|
3231
|
-
|
3232
|
-
<div>
|
3233
|
-
<li class="covered" data-hits="1" data-linenumber="35">
|
3234
|
-
<span class="hits">1</span>
|
3235
|
-
|
3236
|
-
|
3237
|
-
|
3238
|
-
|
3239
|
-
<code class="ruby"> def get_auth_header(url, request, headers)</code>
|
3240
|
-
</li>
|
3241
|
-
</div>
|
3242
|
-
|
3243
|
-
<div>
|
3244
|
-
<li class="never" data-hits="" data-linenumber="36">
|
3245
|
-
|
3246
|
-
|
3247
|
-
|
3248
|
-
|
3249
|
-
|
3250
|
-
<code class="ruby"> # 1. method</code>
|
3251
|
-
</li>
|
3252
|
-
</div>
|
3253
|
-
|
3254
|
-
<div>
|
3255
|
-
<li class="covered" data-hits="5" data-linenumber="37">
|
3256
|
-
<span class="hits">5</span>
|
3257
|
-
|
3258
|
-
|
3259
|
-
|
3260
|
-
|
3261
|
-
<code class="ruby"> string_to_sign = "#{request[:method].to_s.upcase}\n"</code>
|
3262
|
-
</li>
|
3263
|
-
</div>
|
3264
|
-
|
3265
|
-
<div>
|
3266
|
-
<li class="never" data-hits="" data-linenumber="38">
|
3267
|
-
|
3268
|
-
|
3269
|
-
|
3270
|
-
|
3271
|
-
|
3272
|
-
<code class="ruby"> # 2. Content-Type</code>
|
3273
|
-
</li>
|
3274
|
-
</div>
|
3275
|
-
|
3276
|
-
<div>
|
3277
|
-
<li class="covered" data-hits="5" data-linenumber="39">
|
3278
|
-
<span class="hits">5</span>
|
3279
|
-
|
3280
|
-
|
3281
|
-
|
3282
|
-
|
3283
|
-
<code class="ruby"> string_to_sign += "#{headers[CONTENT_TYPE_HEADER_NAME]}" if headers[CONTENT_TYPE_HEADER_NAME]</code>
|
3284
|
-
</li>
|
3285
|
-
</div>
|
3286
|
-
|
3287
|
-
<div>
|
3288
|
-
<li class="covered" data-hits="5" data-linenumber="40">
|
3289
|
-
<span class="hits">5</span>
|
3290
|
-
|
3291
|
-
|
3292
|
-
|
3293
|
-
|
3294
|
-
<code class="ruby"> string_to_sign += "\n"</code>
|
3295
|
-
</li>
|
3296
|
-
</div>
|
3297
|
-
|
3298
|
-
<div>
|
3299
|
-
<li class="never" data-hits="" data-linenumber="41">
|
3300
|
-
|
3301
|
-
|
3302
|
-
|
3303
|
-
|
3304
|
-
|
3305
|
-
<code class="ruby"> # 3. Date</code>
|
3306
|
-
</li>
|
3307
|
-
</div>
|
3308
|
-
|
3309
|
-
<div>
|
3310
|
-
<li class="covered" data-hits="5" data-linenumber="42">
|
3311
|
-
<span class="hits">5</span>
|
3312
|
-
|
3313
|
-
|
3314
|
-
|
3315
|
-
|
3316
|
-
<code class="ruby"> string_to_sign += "#{headers[DATE_HEADER_NAME]}\n"</code>
|
3317
|
-
</li>
|
3318
|
-
</div>
|
3319
|
-
|
3320
|
-
<div>
|
3321
|
-
<li class="never" data-hits="" data-linenumber="43">
|
3322
|
-
|
3323
|
-
|
3324
|
-
|
3325
|
-
|
3326
|
-
|
3327
|
-
<code class="ruby"> # 4. Canonicalized Headers (starting with X-GCS, sorted by names)</code>
|
3328
|
-
</li>
|
3329
|
-
</div>
|
3330
|
-
|
3331
|
-
<div>
|
3332
|
-
<li class="covered" data-hits="5" data-linenumber="44">
|
3333
|
-
<span class="hits">5</span>
|
3334
|
-
|
3335
|
-
|
3336
|
-
|
3337
|
-
|
3338
|
-
<code class="ruby"> if headers[CLIENT_META_INFO_HEADER_NAME]</code>
|
3339
|
-
</li>
|
3340
|
-
</div>
|
3341
|
-
|
3342
|
-
<div>
|
3343
|
-
<li class="covered" data-hits="5" data-linenumber="45">
|
3344
|
-
<span class="hits">5</span>
|
3345
|
-
|
3346
|
-
|
3347
|
-
|
3348
|
-
|
3349
|
-
<code class="ruby"> string_to_sign += "#{CLIENT_META_INFO_HEADER_NAME.downcase}:#{headers[CLIENT_META_INFO_HEADER_NAME].gsub(WHITESPACE_REGEX, ' ').strip}\n"</code>
|
3350
|
-
</li>
|
3351
|
-
</div>
|
3352
|
-
|
3353
|
-
<div>
|
3354
|
-
<li class="never" data-hits="" data-linenumber="46">
|
3355
|
-
|
3356
|
-
|
3357
|
-
|
3358
|
-
|
3359
|
-
|
3360
|
-
<code class="ruby"> end</code>
|
3361
|
-
</li>
|
3362
|
-
</div>
|
3363
|
-
|
3364
|
-
<div>
|
3365
|
-
<li class="covered" data-hits="5" data-linenumber="47">
|
3366
|
-
<span class="hits">5</span>
|
3367
|
-
|
3368
|
-
|
3369
|
-
|
3370
|
-
|
3371
|
-
<code class="ruby"> if headers[SERVER_META_INFO_HEADER_NAME]</code>
|
3372
|
-
</li>
|
3373
|
-
</div>
|
3374
|
-
|
3375
|
-
<div>
|
3376
|
-
<li class="covered" data-hits="5" data-linenumber="48">
|
3377
|
-
<span class="hits">5</span>
|
3378
|
-
|
3379
|
-
|
3380
|
-
|
3381
|
-
|
3382
|
-
<code class="ruby"> string_to_sign += "#{SERVER_META_INFO_HEADER_NAME.downcase}:#{headers[SERVER_META_INFO_HEADER_NAME].gsub(WHITESPACE_REGEX, ' ').strip}\n"</code>
|
3383
|
-
</li>
|
3384
|
-
</div>
|
3385
|
-
|
3386
|
-
<div>
|
3387
|
-
<li class="never" data-hits="" data-linenumber="49">
|
3388
|
-
|
3389
|
-
|
3390
|
-
|
3391
|
-
|
3392
|
-
|
3393
|
-
<code class="ruby"> end</code>
|
3394
|
-
</li>
|
3395
|
-
</div>
|
3396
|
-
|
3397
|
-
<div>
|
3398
|
-
<li class="never" data-hits="" data-linenumber="50">
|
3399
|
-
|
3400
|
-
|
3401
|
-
|
3402
|
-
|
3403
|
-
|
3404
|
-
<code class="ruby"> # 5. Canonicalized Resource (has to include query parameters)</code>
|
3405
|
-
</li>
|
3406
|
-
</div>
|
3407
|
-
|
3408
|
-
<div>
|
3409
|
-
<li class="covered" data-hits="5" data-linenumber="51">
|
3410
|
-
<span class="hits">5</span>
|
3411
|
-
|
3412
|
-
|
3413
|
-
|
3414
|
-
|
3415
|
-
<code class="ruby"> uri = URI.parse(url)</code>
|
3416
|
-
</li>
|
3417
|
-
</div>
|
3418
|
-
|
3419
|
-
<div>
|
3420
|
-
<li class="covered" data-hits="5" data-linenumber="52">
|
3421
|
-
<span class="hits">5</span>
|
3422
|
-
|
3423
|
-
|
3424
|
-
|
3425
|
-
|
3426
|
-
<code class="ruby"> string_to_sign += uri.path</code>
|
3427
|
-
</li>
|
3428
|
-
</div>
|
3429
|
-
|
3430
|
-
<div>
|
3431
|
-
<li class="covered" data-hits="5" data-linenumber="53">
|
3432
|
-
<span class="hits">5</span>
|
3433
|
-
|
3434
|
-
|
3435
|
-
|
3436
|
-
|
3437
|
-
<code class="ruby"> string_to_sign += uri.query ? "?#{uri.query}" : ''</code>
|
3438
|
-
</li>
|
3439
|
-
</div>
|
3440
|
-
|
3441
|
-
<div>
|
3442
|
-
<li class="covered" data-hits="5" data-linenumber="54">
|
3443
|
-
<span class="hits">5</span>
|
3444
|
-
|
3445
|
-
|
3446
|
-
|
3447
|
-
|
3448
|
-
<code class="ruby"> string_to_sign += "\n"</code>
|
3449
|
-
</li>
|
3450
|
-
</div>
|
3451
|
-
|
3452
|
-
<div>
|
3453
|
-
<li class="never" data-hits="" data-linenumber="55">
|
3454
|
-
|
3455
|
-
|
3456
|
-
|
3457
|
-
|
3458
|
-
|
3459
|
-
<code class="ruby"></code>
|
3460
|
-
</li>
|
3461
|
-
</div>
|
3462
|
-
|
3463
|
-
<div>
|
3464
|
-
<li class="covered" data-hits="5" data-linenumber="56">
|
3465
|
-
<span class="hits">5</span>
|
3466
|
-
|
3467
|
-
|
3468
|
-
|
3469
|
-
|
3470
|
-
<code class="ruby"> signature = sign(string_to_sign)</code>
|
3471
|
-
</li>
|
3472
|
-
</div>
|
3473
|
-
|
3474
|
-
<div>
|
3475
|
-
<li class="covered" data-hits="5" data-linenumber="57">
|
3476
|
-
<span class="hits">5</span>
|
3477
|
-
|
3478
|
-
|
3479
|
-
|
3480
|
-
|
3481
|
-
<code class="ruby"> "GCS v1HMAC:#{@config.api_key}:#{signature}"</code>
|
3482
|
-
</li>
|
3483
|
-
</div>
|
3484
|
-
|
3485
|
-
<div>
|
3486
|
-
<li class="never" data-hits="" data-linenumber="58">
|
3487
|
-
|
3488
|
-
|
3489
|
-
|
3490
|
-
|
3491
|
-
|
3492
|
-
<code class="ruby"> end</code>
|
3493
|
-
</li>
|
3494
|
-
</div>
|
3495
|
-
|
3496
|
-
<div>
|
3497
|
-
<li class="never" data-hits="" data-linenumber="59">
|
3498
|
-
|
3499
|
-
|
3500
|
-
|
3501
|
-
|
3502
|
-
|
3503
|
-
<code class="ruby"></code>
|
3504
|
-
</li>
|
3505
|
-
</div>
|
3506
|
-
|
3507
|
-
<div>
|
3508
|
-
<li class="covered" data-hits="1" data-linenumber="60">
|
3509
|
-
<span class="hits">1</span>
|
3510
|
-
|
3511
|
-
|
3512
|
-
|
3513
|
-
|
3514
|
-
<code class="ruby"> def sign(target)</code>
|
3515
|
-
</li>
|
3516
|
-
</div>
|
3517
|
-
|
3518
|
-
<div>
|
3519
|
-
<li class="covered" data-hits="5" data-linenumber="61">
|
3520
|
-
<span class="hits">5</span>
|
3521
|
-
|
3522
|
-
|
3523
|
-
|
3524
|
-
|
3525
|
-
<code class="ruby"> hmac = OpenSSL::HMAC.digest(OpenSSL::Digest.new(ALGORITHM), @config.api_secret, target)</code>
|
3526
|
-
</li>
|
3527
|
-
</div>
|
3528
|
-
|
3529
|
-
<div>
|
3530
|
-
<li class="covered" data-hits="5" data-linenumber="62">
|
3531
|
-
<span class="hits">5</span>
|
3532
|
-
|
3533
|
-
|
3534
|
-
|
3535
|
-
|
3536
|
-
<code class="ruby"> Base64.strict_encode64(hmac)</code>
|
3537
|
-
</li>
|
3538
|
-
</div>
|
3539
|
-
|
3540
|
-
<div>
|
3541
|
-
<li class="never" data-hits="" data-linenumber="63">
|
3542
|
-
|
3543
|
-
|
3544
|
-
|
3545
|
-
|
3546
|
-
|
3547
|
-
<code class="ruby"> end</code>
|
3548
|
-
</li>
|
3549
|
-
</div>
|
3550
|
-
|
3551
|
-
<div>
|
3552
|
-
<li class="never" data-hits="" data-linenumber="64">
|
3553
|
-
|
3554
|
-
|
3555
|
-
|
3556
|
-
|
3557
|
-
|
3558
|
-
<code class="ruby"></code>
|
3559
|
-
</li>
|
3560
|
-
</div>
|
3561
|
-
|
3562
|
-
<div>
|
3563
|
-
<li class="covered" data-hits="1" data-linenumber="65">
|
3564
|
-
<span class="hits">1</span>
|
3565
|
-
|
3566
|
-
|
3567
|
-
|
3568
|
-
|
3569
|
-
<code class="ruby"> def get_server_meta_info</code>
|
3570
|
-
</li>
|
3571
|
-
</div>
|
3572
|
-
|
3573
|
-
<div>
|
3574
|
-
<li class="covered" data-hits="3" data-linenumber="66">
|
3575
|
-
<span class="hits">3</span>
|
3576
|
-
|
3577
|
-
|
3578
|
-
|
3579
|
-
|
3580
|
-
<code class="ruby"> meta = ServerMetaInfo.new</code>
|
3581
|
-
</li>
|
3582
|
-
</div>
|
3583
|
-
|
3584
|
-
<div>
|
3585
|
-
<li class="covered" data-hits="3" data-linenumber="67">
|
3586
|
-
<span class="hits">3</span>
|
3587
|
-
|
3588
|
-
|
3589
|
-
|
3590
|
-
|
3591
|
-
<code class="ruby"> json_string = meta.to_json</code>
|
3592
|
-
</li>
|
3593
|
-
</div>
|
3594
|
-
|
3595
|
-
<div>
|
3596
|
-
<li class="covered" data-hits="3" data-linenumber="68">
|
3597
|
-
<span class="hits">3</span>
|
3598
|
-
|
3599
|
-
|
3600
|
-
|
3601
|
-
|
3602
|
-
<code class="ruby"> Base64.strict_encode64(json_string)</code>
|
3603
|
-
</li>
|
3604
|
-
</div>
|
3605
|
-
|
3606
|
-
<div>
|
3607
|
-
<li class="never" data-hits="" data-linenumber="69">
|
3608
|
-
|
3609
|
-
|
3610
|
-
|
3611
|
-
|
3612
|
-
|
3613
|
-
<code class="ruby"> end</code>
|
3614
|
-
</li>
|
3615
|
-
</div>
|
3616
|
-
|
3617
|
-
<div>
|
3618
|
-
<li class="never" data-hits="" data-linenumber="70">
|
3619
|
-
|
3620
|
-
|
3621
|
-
|
3622
|
-
|
3623
|
-
|
3624
|
-
<code class="ruby"></code>
|
3625
|
-
</li>
|
3626
|
-
</div>
|
3627
|
-
|
3628
|
-
<div>
|
3629
|
-
<li class="covered" data-hits="1" data-linenumber="71">
|
3630
|
-
<span class="hits">1</span>
|
3631
|
-
|
3632
|
-
|
3633
|
-
|
3634
|
-
|
3635
|
-
<code class="ruby"> def get_client_meta_info</code>
|
3636
|
-
</li>
|
3637
|
-
</div>
|
3638
|
-
|
3639
|
-
<div>
|
3640
|
-
<li class="covered" data-hits="3" data-linenumber="72">
|
3641
|
-
<span class="hits">3</span>
|
3642
|
-
|
3643
|
-
|
3644
|
-
|
3645
|
-
|
3646
|
-
<code class="ruby"> Base64.strict_encode64('"[]"')</code>
|
3647
|
-
</li>
|
3648
|
-
</div>
|
3649
|
-
|
3650
|
-
<div>
|
3651
|
-
<li class="never" data-hits="" data-linenumber="73">
|
3652
|
-
|
3653
|
-
|
3654
|
-
|
3655
|
-
|
3656
|
-
|
3657
|
-
<code class="ruby"> end</code>
|
3658
|
-
</li>
|
3659
|
-
</div>
|
3660
|
-
|
3661
|
-
<div>
|
3662
|
-
<li class="never" data-hits="" data-linenumber="74">
|
3663
|
-
|
3664
|
-
|
3665
|
-
|
3666
|
-
|
3667
|
-
|
3668
|
-
<code class="ruby">end</code>
|
3669
|
-
</li>
|
3670
|
-
</div>
|
3671
|
-
|
3672
|
-
</ol>
|
3673
|
-
</pre>
|
3674
|
-
</div>
|
3675
|
-
|
3676
|
-
|
3677
|
-
<div class="source_table" id="c409a9e8ea9442fe67bd1981af22e4aead510db0">
|
3678
|
-
<div class="header">
|
3679
|
-
<h3>lib/PCP-server-Ruby-SDK/utils/server_meta_info.rb</h3>
|
3680
|
-
<h4>
|
3681
|
-
<span class="green">
|
3682
|
-
100.0%
|
3683
|
-
</span>
|
3684
|
-
|
3685
|
-
lines covered
|
3686
|
-
</h4>
|
3687
|
-
|
3688
|
-
|
3689
|
-
|
3690
|
-
<div class="t-line-summary">
|
3691
|
-
<b>11</b> relevant lines.
|
3692
|
-
<span class="green"><b>11</b> lines covered</span> and
|
3693
|
-
<span class="red"><b>0</b> lines missed.</span>
|
3694
|
-
</div>
|
3695
|
-
|
3696
|
-
|
3697
|
-
|
3698
|
-
</div>
|
3699
|
-
|
3700
|
-
<pre>
|
3701
|
-
<ol>
|
3702
|
-
|
3703
|
-
<div>
|
3704
|
-
<li class="covered" data-hits="1" data-linenumber="1">
|
3705
|
-
<span class="hits">1</span>
|
3706
|
-
|
3707
|
-
|
3708
|
-
|
3709
|
-
|
3710
|
-
<code class="ruby">require 'rbconfig'</code>
|
3711
|
-
</li>
|
3712
|
-
</div>
|
3713
|
-
|
3714
|
-
<div>
|
3715
|
-
<li class="covered" data-hits="1" data-linenumber="2">
|
3716
|
-
<span class="hits">1</span>
|
3717
|
-
|
3718
|
-
|
3719
|
-
|
3720
|
-
|
3721
|
-
<code class="ruby">require 'json'</code>
|
3722
|
-
</li>
|
3723
|
-
</div>
|
3724
|
-
|
3725
|
-
<div>
|
3726
|
-
<li class="never" data-hits="" data-linenumber="3">
|
3727
|
-
|
3728
|
-
|
3729
|
-
|
3730
|
-
|
3731
|
-
|
3732
|
-
<code class="ruby"></code>
|
3733
|
-
</li>
|
3734
|
-
</div>
|
3735
|
-
|
3736
|
-
<div>
|
3737
|
-
<li class="covered" data-hits="1" data-linenumber="4">
|
3738
|
-
<span class="hits">1</span>
|
3739
|
-
|
3740
|
-
|
3741
|
-
|
3742
|
-
|
3743
|
-
<code class="ruby">class ServerMetaInfo</code>
|
3744
|
-
</li>
|
3745
|
-
</div>
|
3746
|
-
|
3747
|
-
<div>
|
3748
|
-
<li class="covered" data-hits="1" data-linenumber="5">
|
3749
|
-
<span class="hits">1</span>
|
3750
|
-
|
3751
|
-
|
3752
|
-
|
3753
|
-
|
3754
|
-
<code class="ruby"> attr_accessor :platform_identifier, :sdk_identifier, :sdk_creator, :integrator</code>
|
3755
|
-
</li>
|
3756
|
-
</div>
|
3757
|
-
|
3758
|
-
<div>
|
3759
|
-
<li class="never" data-hits="" data-linenumber="6">
|
3760
|
-
|
3761
|
-
|
3762
|
-
|
3763
|
-
|
3764
|
-
|
3765
|
-
<code class="ruby"></code>
|
3766
|
-
</li>
|
3767
|
-
</div>
|
3768
|
-
|
3769
|
-
<div>
|
3770
|
-
<li class="covered" data-hits="1" data-linenumber="7">
|
3771
|
-
<span class="hits">1</span>
|
3772
|
-
|
3773
|
-
|
3774
|
-
|
3775
|
-
|
3776
|
-
<code class="ruby"> def initialize(integrator = '')</code>
|
3777
|
-
</li>
|
3778
|
-
</div>
|
3779
|
-
|
3780
|
-
<div>
|
3781
|
-
<li class="covered" data-hits="12" data-linenumber="8">
|
3782
|
-
<span class="hits">12</span>
|
3783
|
-
|
3784
|
-
|
3785
|
-
|
3786
|
-
|
3787
|
-
<code class="ruby"> @platform_identifier = "#{RbConfig::CONFIG['host_os']}, ruby version is: #{RUBY_VERSION}"</code>
|
3788
|
-
</li>
|
3789
|
-
</div>
|
3790
|
-
|
3791
|
-
<div>
|
3792
|
-
<li class="covered" data-hits="12" data-linenumber="9">
|
3793
|
-
<span class="hits">12</span>
|
3794
|
-
|
3795
|
-
|
3796
|
-
|
3797
|
-
|
3798
|
-
<code class="ruby"> @sdk_identifier = 'RubyServerSDK/v1.0.0' # Adjust version as needed</code>
|
3799
|
-
</li>
|
3800
|
-
</div>
|
3801
|
-
|
3802
|
-
<div>
|
3803
|
-
<li class="covered" data-hits="12" data-linenumber="10">
|
3804
|
-
<span class="hits">12</span>
|
3805
|
-
|
3806
|
-
|
3807
|
-
|
3808
|
-
|
3809
|
-
<code class="ruby"> @sdk_creator = 'PAYONE GmbH'</code>
|
3810
|
-
</li>
|
3811
|
-
</div>
|
3812
|
-
|
3813
|
-
<div>
|
3814
|
-
<li class="covered" data-hits="12" data-linenumber="11">
|
3815
|
-
<span class="hits">12</span>
|
3816
|
-
|
3817
|
-
|
3818
|
-
|
3819
|
-
|
3820
|
-
<code class="ruby"> @integrator = integrator</code>
|
3821
|
-
</li>
|
3822
|
-
</div>
|
3823
|
-
|
3824
|
-
<div>
|
3825
|
-
<li class="never" data-hits="" data-linenumber="12">
|
3826
|
-
|
3827
|
-
|
3828
|
-
|
3829
|
-
|
3830
|
-
|
3831
|
-
<code class="ruby"> end</code>
|
3832
|
-
</li>
|
3833
|
-
</div>
|
3834
|
-
|
3835
|
-
<div>
|
3836
|
-
<li class="never" data-hits="" data-linenumber="13">
|
3837
|
-
|
3838
|
-
|
3839
|
-
|
3840
|
-
|
3841
|
-
|
3842
|
-
<code class="ruby"></code>
|
3843
|
-
</li>
|
3844
|
-
</div>
|
3845
|
-
|
3846
|
-
<div>
|
3847
|
-
<li class="covered" data-hits="1" data-linenumber="14">
|
3848
|
-
<span class="hits">1</span>
|
3849
|
-
|
3850
|
-
|
3851
|
-
|
3852
|
-
|
3853
|
-
<code class="ruby"> def to_json </code>
|
3854
|
-
</li>
|
3855
|
-
</div>
|
3856
|
-
|
3857
|
-
<div>
|
3858
|
-
<li class="covered" data-hits="8" data-linenumber="15">
|
3859
|
-
<span class="hits">8</span>
|
3860
|
-
|
3861
|
-
|
3862
|
-
|
3863
|
-
|
3864
|
-
<code class="ruby"> JSON.pretty_generate({</code>
|
3865
|
-
</li>
|
3866
|
-
</div>
|
3867
|
-
|
3868
|
-
<div>
|
3869
|
-
<li class="never" data-hits="" data-linenumber="16">
|
3870
|
-
|
3871
|
-
|
3872
|
-
|
3873
|
-
|
3874
|
-
|
3875
|
-
<code class="ruby"> platform_identifier: @platform_identifier,</code>
|
3876
|
-
</li>
|
3877
|
-
</div>
|
3878
|
-
|
3879
|
-
<div>
|
3880
|
-
<li class="never" data-hits="" data-linenumber="17">
|
3881
|
-
|
3882
|
-
|
3883
|
-
|
3884
|
-
|
3885
|
-
|
3886
|
-
<code class="ruby"> sdk_identifier: @sdk_identifier,</code>
|
3887
|
-
</li>
|
3888
|
-
</div>
|
3889
|
-
|
3890
|
-
<div>
|
3891
|
-
<li class="never" data-hits="" data-linenumber="18">
|
3892
|
-
|
3893
|
-
|
3894
|
-
|
3895
|
-
|
3896
|
-
|
3897
|
-
<code class="ruby"> sdk_creator: @sdk_creator,</code>
|
3898
|
-
</li>
|
3899
|
-
</div>
|
3900
|
-
|
3901
|
-
<div>
|
3902
|
-
<li class="never" data-hits="" data-linenumber="19">
|
3903
|
-
|
3904
|
-
|
3905
|
-
|
3906
|
-
|
3907
|
-
|
3908
|
-
<code class="ruby"> integrator: @integrator</code>
|
3909
|
-
</li>
|
3910
|
-
</div>
|
3911
|
-
|
3912
|
-
<div>
|
3913
|
-
<li class="never" data-hits="" data-linenumber="20">
|
3914
|
-
|
3915
|
-
|
3916
|
-
|
3917
|
-
|
3918
|
-
|
3919
|
-
<code class="ruby"> })</code>
|
3920
|
-
</li>
|
3921
|
-
</div>
|
3922
|
-
|
3923
|
-
<div>
|
3924
|
-
<li class="never" data-hits="" data-linenumber="21">
|
3925
|
-
|
3926
|
-
|
3927
|
-
|
3928
|
-
|
3929
|
-
|
3930
|
-
<code class="ruby"> end</code>
|
3931
|
-
</li>
|
3932
|
-
</div>
|
3933
|
-
|
3934
|
-
<div>
|
3935
|
-
<li class="never" data-hits="" data-linenumber="22">
|
3936
|
-
|
3937
|
-
|
3938
|
-
|
3939
|
-
|
3940
|
-
|
3941
|
-
<code class="ruby">end</code>
|
3942
|
-
</li>
|
3943
|
-
</div>
|
3944
|
-
|
3945
|
-
</ol>
|
3946
|
-
</pre>
|
3947
|
-
</div>
|
3948
|
-
|
3949
|
-
|
3950
|
-
</div>
|
3951
|
-
</div>
|
3952
|
-
</body>
|
3953
|
-
</html>
|