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
@@ -1,1921 +0,0 @@
|
|
1
|
-
/**
|
2
|
-
* To use the HTTP server and client one must `require('node:http')`.
|
3
|
-
*
|
4
|
-
* The HTTP interfaces in Node.js are designed to support many features
|
5
|
-
* of the protocol which have been traditionally difficult to use.
|
6
|
-
* In particular, large, possibly chunk-encoded, messages. The interface is
|
7
|
-
* careful to never buffer entire requests or responses, so the
|
8
|
-
* user is able to stream data.
|
9
|
-
*
|
10
|
-
* HTTP message headers are represented by an object like this:
|
11
|
-
*
|
12
|
-
* ```json
|
13
|
-
* { "content-length": "123",
|
14
|
-
* "content-type": "text/plain",
|
15
|
-
* "connection": "keep-alive",
|
16
|
-
* "host": "example.com",
|
17
|
-
* "accept": "*" }
|
18
|
-
* ```
|
19
|
-
*
|
20
|
-
* Keys are lowercased. Values are not modified.
|
21
|
-
*
|
22
|
-
* In order to support the full spectrum of possible HTTP applications, the Node.js
|
23
|
-
* HTTP API is very low-level. It deals with stream handling and message
|
24
|
-
* parsing only. It parses a message into headers and body but it does not
|
25
|
-
* parse the actual headers or the body.
|
26
|
-
*
|
27
|
-
* See `message.headers` for details on how duplicate headers are handled.
|
28
|
-
*
|
29
|
-
* The raw headers as they were received are retained in the `rawHeaders` property, which is an array of `[key, value, key2, value2, ...]`. For
|
30
|
-
* example, the previous message header object might have a `rawHeaders` list like the following:
|
31
|
-
*
|
32
|
-
* ```js
|
33
|
-
* [ 'ConTent-Length', '123456',
|
34
|
-
* 'content-LENGTH', '123',
|
35
|
-
* 'content-type', 'text/plain',
|
36
|
-
* 'CONNECTION', 'keep-alive',
|
37
|
-
* 'Host', 'example.com',
|
38
|
-
* 'accepT', '*' ]
|
39
|
-
* ```
|
40
|
-
* @see [source](https://github.com/nodejs/node/blob/v22.x/lib/http.js)
|
41
|
-
*/
|
42
|
-
declare module "http" {
|
43
|
-
import * as stream from "node:stream";
|
44
|
-
import { URL } from "node:url";
|
45
|
-
import { LookupOptions } from "node:dns";
|
46
|
-
import { EventEmitter } from "node:events";
|
47
|
-
import { LookupFunction, Server as NetServer, Socket, TcpSocketConnectOpts } from "node:net";
|
48
|
-
// incoming headers will never contain number
|
49
|
-
interface IncomingHttpHeaders extends NodeJS.Dict<string | string[]> {
|
50
|
-
accept?: string | undefined;
|
51
|
-
"accept-language"?: string | undefined;
|
52
|
-
"accept-patch"?: string | undefined;
|
53
|
-
"accept-ranges"?: string | undefined;
|
54
|
-
"access-control-allow-credentials"?: string | undefined;
|
55
|
-
"access-control-allow-headers"?: string | undefined;
|
56
|
-
"access-control-allow-methods"?: string | undefined;
|
57
|
-
"access-control-allow-origin"?: string | undefined;
|
58
|
-
"access-control-expose-headers"?: string | undefined;
|
59
|
-
"access-control-max-age"?: string | undefined;
|
60
|
-
"access-control-request-headers"?: string | undefined;
|
61
|
-
"access-control-request-method"?: string | undefined;
|
62
|
-
age?: string | undefined;
|
63
|
-
allow?: string | undefined;
|
64
|
-
"alt-svc"?: string | undefined;
|
65
|
-
authorization?: string | undefined;
|
66
|
-
"cache-control"?: string | undefined;
|
67
|
-
connection?: string | undefined;
|
68
|
-
"content-disposition"?: string | undefined;
|
69
|
-
"content-encoding"?: string | undefined;
|
70
|
-
"content-language"?: string | undefined;
|
71
|
-
"content-length"?: string | undefined;
|
72
|
-
"content-location"?: string | undefined;
|
73
|
-
"content-range"?: string | undefined;
|
74
|
-
"content-type"?: string | undefined;
|
75
|
-
cookie?: string | undefined;
|
76
|
-
date?: string | undefined;
|
77
|
-
etag?: string | undefined;
|
78
|
-
expect?: string | undefined;
|
79
|
-
expires?: string | undefined;
|
80
|
-
forwarded?: string | undefined;
|
81
|
-
from?: string | undefined;
|
82
|
-
host?: string | undefined;
|
83
|
-
"if-match"?: string | undefined;
|
84
|
-
"if-modified-since"?: string | undefined;
|
85
|
-
"if-none-match"?: string | undefined;
|
86
|
-
"if-unmodified-since"?: string | undefined;
|
87
|
-
"last-modified"?: string | undefined;
|
88
|
-
location?: string | undefined;
|
89
|
-
origin?: string | undefined;
|
90
|
-
pragma?: string | undefined;
|
91
|
-
"proxy-authenticate"?: string | undefined;
|
92
|
-
"proxy-authorization"?: string | undefined;
|
93
|
-
"public-key-pins"?: string | undefined;
|
94
|
-
range?: string | undefined;
|
95
|
-
referer?: string | undefined;
|
96
|
-
"retry-after"?: string | undefined;
|
97
|
-
"sec-websocket-accept"?: string | undefined;
|
98
|
-
"sec-websocket-extensions"?: string | undefined;
|
99
|
-
"sec-websocket-key"?: string | undefined;
|
100
|
-
"sec-websocket-protocol"?: string | undefined;
|
101
|
-
"sec-websocket-version"?: string | undefined;
|
102
|
-
"set-cookie"?: string[] | undefined;
|
103
|
-
"strict-transport-security"?: string | undefined;
|
104
|
-
tk?: string | undefined;
|
105
|
-
trailer?: string | undefined;
|
106
|
-
"transfer-encoding"?: string | undefined;
|
107
|
-
upgrade?: string | undefined;
|
108
|
-
"user-agent"?: string | undefined;
|
109
|
-
vary?: string | undefined;
|
110
|
-
via?: string | undefined;
|
111
|
-
warning?: string | undefined;
|
112
|
-
"www-authenticate"?: string | undefined;
|
113
|
-
}
|
114
|
-
// outgoing headers allows numbers (as they are converted internally to strings)
|
115
|
-
type OutgoingHttpHeader = number | string | string[];
|
116
|
-
interface OutgoingHttpHeaders extends NodeJS.Dict<OutgoingHttpHeader> {
|
117
|
-
accept?: string | string[] | undefined;
|
118
|
-
"accept-charset"?: string | string[] | undefined;
|
119
|
-
"accept-encoding"?: string | string[] | undefined;
|
120
|
-
"accept-language"?: string | string[] | undefined;
|
121
|
-
"accept-ranges"?: string | undefined;
|
122
|
-
"access-control-allow-credentials"?: string | undefined;
|
123
|
-
"access-control-allow-headers"?: string | undefined;
|
124
|
-
"access-control-allow-methods"?: string | undefined;
|
125
|
-
"access-control-allow-origin"?: string | undefined;
|
126
|
-
"access-control-expose-headers"?: string | undefined;
|
127
|
-
"access-control-max-age"?: string | undefined;
|
128
|
-
"access-control-request-headers"?: string | undefined;
|
129
|
-
"access-control-request-method"?: string | undefined;
|
130
|
-
age?: string | undefined;
|
131
|
-
allow?: string | undefined;
|
132
|
-
authorization?: string | undefined;
|
133
|
-
"cache-control"?: string | undefined;
|
134
|
-
"cdn-cache-control"?: string | undefined;
|
135
|
-
connection?: string | string[] | undefined;
|
136
|
-
"content-disposition"?: string | undefined;
|
137
|
-
"content-encoding"?: string | undefined;
|
138
|
-
"content-language"?: string | undefined;
|
139
|
-
"content-length"?: string | number | undefined;
|
140
|
-
"content-location"?: string | undefined;
|
141
|
-
"content-range"?: string | undefined;
|
142
|
-
"content-security-policy"?: string | undefined;
|
143
|
-
"content-security-policy-report-only"?: string | undefined;
|
144
|
-
cookie?: string | string[] | undefined;
|
145
|
-
dav?: string | string[] | undefined;
|
146
|
-
dnt?: string | undefined;
|
147
|
-
date?: string | undefined;
|
148
|
-
etag?: string | undefined;
|
149
|
-
expect?: string | undefined;
|
150
|
-
expires?: string | undefined;
|
151
|
-
forwarded?: string | undefined;
|
152
|
-
from?: string | undefined;
|
153
|
-
host?: string | undefined;
|
154
|
-
"if-match"?: string | undefined;
|
155
|
-
"if-modified-since"?: string | undefined;
|
156
|
-
"if-none-match"?: string | undefined;
|
157
|
-
"if-range"?: string | undefined;
|
158
|
-
"if-unmodified-since"?: string | undefined;
|
159
|
-
"last-modified"?: string | undefined;
|
160
|
-
link?: string | string[] | undefined;
|
161
|
-
location?: string | undefined;
|
162
|
-
"max-forwards"?: string | undefined;
|
163
|
-
origin?: string | undefined;
|
164
|
-
prgama?: string | string[] | undefined;
|
165
|
-
"proxy-authenticate"?: string | string[] | undefined;
|
166
|
-
"proxy-authorization"?: string | undefined;
|
167
|
-
"public-key-pins"?: string | undefined;
|
168
|
-
"public-key-pins-report-only"?: string | undefined;
|
169
|
-
range?: string | undefined;
|
170
|
-
referer?: string | undefined;
|
171
|
-
"referrer-policy"?: string | undefined;
|
172
|
-
refresh?: string | undefined;
|
173
|
-
"retry-after"?: string | undefined;
|
174
|
-
"sec-websocket-accept"?: string | undefined;
|
175
|
-
"sec-websocket-extensions"?: string | string[] | undefined;
|
176
|
-
"sec-websocket-key"?: string | undefined;
|
177
|
-
"sec-websocket-protocol"?: string | string[] | undefined;
|
178
|
-
"sec-websocket-version"?: string | undefined;
|
179
|
-
server?: string | undefined;
|
180
|
-
"set-cookie"?: string | string[] | undefined;
|
181
|
-
"strict-transport-security"?: string | undefined;
|
182
|
-
te?: string | undefined;
|
183
|
-
trailer?: string | undefined;
|
184
|
-
"transfer-encoding"?: string | undefined;
|
185
|
-
"user-agent"?: string | undefined;
|
186
|
-
upgrade?: string | undefined;
|
187
|
-
"upgrade-insecure-requests"?: string | undefined;
|
188
|
-
vary?: string | undefined;
|
189
|
-
via?: string | string[] | undefined;
|
190
|
-
warning?: string | undefined;
|
191
|
-
"www-authenticate"?: string | string[] | undefined;
|
192
|
-
"x-content-type-options"?: string | undefined;
|
193
|
-
"x-dns-prefetch-control"?: string | undefined;
|
194
|
-
"x-frame-options"?: string | undefined;
|
195
|
-
"x-xss-protection"?: string | undefined;
|
196
|
-
}
|
197
|
-
interface ClientRequestArgs {
|
198
|
-
_defaultAgent?: Agent | undefined;
|
199
|
-
agent?: Agent | boolean | undefined;
|
200
|
-
auth?: string | null | undefined;
|
201
|
-
createConnection?:
|
202
|
-
| ((
|
203
|
-
options: ClientRequestArgs,
|
204
|
-
oncreate: (err: Error | null, socket: stream.Duplex) => void,
|
205
|
-
) => stream.Duplex | null | undefined)
|
206
|
-
| undefined;
|
207
|
-
defaultPort?: number | string | undefined;
|
208
|
-
family?: number | undefined;
|
209
|
-
headers?: OutgoingHttpHeaders | undefined;
|
210
|
-
hints?: LookupOptions["hints"];
|
211
|
-
host?: string | null | undefined;
|
212
|
-
hostname?: string | null | undefined;
|
213
|
-
insecureHTTPParser?: boolean | undefined;
|
214
|
-
localAddress?: string | undefined;
|
215
|
-
localPort?: number | undefined;
|
216
|
-
lookup?: LookupFunction | undefined;
|
217
|
-
/**
|
218
|
-
* @default 16384
|
219
|
-
*/
|
220
|
-
maxHeaderSize?: number | undefined;
|
221
|
-
method?: string | undefined;
|
222
|
-
path?: string | null | undefined;
|
223
|
-
port?: number | string | null | undefined;
|
224
|
-
protocol?: string | null | undefined;
|
225
|
-
setHost?: boolean | undefined;
|
226
|
-
signal?: AbortSignal | undefined;
|
227
|
-
socketPath?: string | undefined;
|
228
|
-
timeout?: number | undefined;
|
229
|
-
uniqueHeaders?: Array<string | string[]> | undefined;
|
230
|
-
joinDuplicateHeaders?: boolean;
|
231
|
-
}
|
232
|
-
interface ServerOptions<
|
233
|
-
Request extends typeof IncomingMessage = typeof IncomingMessage,
|
234
|
-
Response extends typeof ServerResponse = typeof ServerResponse,
|
235
|
-
> {
|
236
|
-
/**
|
237
|
-
* Specifies the `IncomingMessage` class to be used. Useful for extending the original `IncomingMessage`.
|
238
|
-
*/
|
239
|
-
IncomingMessage?: Request | undefined;
|
240
|
-
/**
|
241
|
-
* Specifies the `ServerResponse` class to be used. Useful for extending the original `ServerResponse`.
|
242
|
-
*/
|
243
|
-
ServerResponse?: Response | undefined;
|
244
|
-
/**
|
245
|
-
* Sets the timeout value in milliseconds for receiving the entire request from the client.
|
246
|
-
* @see Server.requestTimeout for more information.
|
247
|
-
* @default 300000
|
248
|
-
* @since v18.0.0
|
249
|
-
*/
|
250
|
-
requestTimeout?: number | undefined;
|
251
|
-
/**
|
252
|
-
* It joins the field line values of multiple headers in a request with `, ` instead of discarding the duplicates.
|
253
|
-
* @default false
|
254
|
-
* @since v18.14.0
|
255
|
-
*/
|
256
|
-
joinDuplicateHeaders?: boolean;
|
257
|
-
/**
|
258
|
-
* The number of milliseconds of inactivity a server needs to wait for additional incoming data,
|
259
|
-
* after it has finished writing the last response, before a socket will be destroyed.
|
260
|
-
* @see Server.keepAliveTimeout for more information.
|
261
|
-
* @default 5000
|
262
|
-
* @since v18.0.0
|
263
|
-
*/
|
264
|
-
keepAliveTimeout?: number | undefined;
|
265
|
-
/**
|
266
|
-
* Sets the interval value in milliseconds to check for request and headers timeout in incomplete requests.
|
267
|
-
* @default 30000
|
268
|
-
*/
|
269
|
-
connectionsCheckingInterval?: number | undefined;
|
270
|
-
/**
|
271
|
-
* Optionally overrides all `socket`s' `readableHighWaterMark` and `writableHighWaterMark`.
|
272
|
-
* This affects `highWaterMark` property of both `IncomingMessage` and `ServerResponse`.
|
273
|
-
* Default: @see stream.getDefaultHighWaterMark().
|
274
|
-
* @since v20.1.0
|
275
|
-
*/
|
276
|
-
highWaterMark?: number | undefined;
|
277
|
-
/**
|
278
|
-
* Use an insecure HTTP parser that accepts invalid HTTP headers when `true`.
|
279
|
-
* Using the insecure parser should be avoided.
|
280
|
-
* See --insecure-http-parser for more information.
|
281
|
-
* @default false
|
282
|
-
*/
|
283
|
-
insecureHTTPParser?: boolean | undefined;
|
284
|
-
/**
|
285
|
-
* Optionally overrides the value of `--max-http-header-size` for requests received by
|
286
|
-
* this server, i.e. the maximum length of request headers in bytes.
|
287
|
-
* @default 16384
|
288
|
-
* @since v13.3.0
|
289
|
-
*/
|
290
|
-
maxHeaderSize?: number | undefined;
|
291
|
-
/**
|
292
|
-
* If set to `true`, it disables the use of Nagle's algorithm immediately after a new incoming connection is received.
|
293
|
-
* @default true
|
294
|
-
* @since v16.5.0
|
295
|
-
*/
|
296
|
-
noDelay?: boolean | undefined;
|
297
|
-
/**
|
298
|
-
* If set to `true`, it enables keep-alive functionality on the socket immediately after a new incoming connection is received,
|
299
|
-
* similarly on what is done in `socket.setKeepAlive([enable][, initialDelay])`.
|
300
|
-
* @default false
|
301
|
-
* @since v16.5.0
|
302
|
-
*/
|
303
|
-
keepAlive?: boolean | undefined;
|
304
|
-
/**
|
305
|
-
* If set to a positive number, it sets the initial delay before the first keepalive probe is sent on an idle socket.
|
306
|
-
* @default 0
|
307
|
-
* @since v16.5.0
|
308
|
-
*/
|
309
|
-
keepAliveInitialDelay?: number | undefined;
|
310
|
-
/**
|
311
|
-
* A list of response headers that should be sent only once.
|
312
|
-
* If the header's value is an array, the items will be joined using `; `.
|
313
|
-
*/
|
314
|
-
uniqueHeaders?: Array<string | string[]> | undefined;
|
315
|
-
}
|
316
|
-
type RequestListener<
|
317
|
-
Request extends typeof IncomingMessage = typeof IncomingMessage,
|
318
|
-
Response extends typeof ServerResponse = typeof ServerResponse,
|
319
|
-
> = (req: InstanceType<Request>, res: InstanceType<Response> & { req: InstanceType<Request> }) => void;
|
320
|
-
/**
|
321
|
-
* @since v0.1.17
|
322
|
-
*/
|
323
|
-
class Server<
|
324
|
-
Request extends typeof IncomingMessage = typeof IncomingMessage,
|
325
|
-
Response extends typeof ServerResponse = typeof ServerResponse,
|
326
|
-
> extends NetServer {
|
327
|
-
constructor(requestListener?: RequestListener<Request, Response>);
|
328
|
-
constructor(options: ServerOptions<Request, Response>, requestListener?: RequestListener<Request, Response>);
|
329
|
-
/**
|
330
|
-
* Sets the timeout value for sockets, and emits a `'timeout'` event on
|
331
|
-
* the Server object, passing the socket as an argument, if a timeout
|
332
|
-
* occurs.
|
333
|
-
*
|
334
|
-
* If there is a `'timeout'` event listener on the Server object, then it
|
335
|
-
* will be called with the timed-out socket as an argument.
|
336
|
-
*
|
337
|
-
* By default, the Server does not timeout sockets. However, if a callback
|
338
|
-
* is assigned to the Server's `'timeout'` event, timeouts must be handled
|
339
|
-
* explicitly.
|
340
|
-
* @since v0.9.12
|
341
|
-
* @param [msecs=0 (no timeout)]
|
342
|
-
*/
|
343
|
-
setTimeout(msecs?: number, callback?: () => void): this;
|
344
|
-
setTimeout(callback: () => void): this;
|
345
|
-
/**
|
346
|
-
* Limits maximum incoming headers count. If set to 0, no limit will be applied.
|
347
|
-
* @since v0.7.0
|
348
|
-
*/
|
349
|
-
maxHeadersCount: number | null;
|
350
|
-
/**
|
351
|
-
* The maximum number of requests socket can handle
|
352
|
-
* before closing keep alive connection.
|
353
|
-
*
|
354
|
-
* A value of `0` will disable the limit.
|
355
|
-
*
|
356
|
-
* When the limit is reached it will set the `Connection` header value to `close`,
|
357
|
-
* but will not actually close the connection, subsequent requests sent
|
358
|
-
* after the limit is reached will get `503 Service Unavailable` as a response.
|
359
|
-
* @since v16.10.0
|
360
|
-
*/
|
361
|
-
maxRequestsPerSocket: number | null;
|
362
|
-
/**
|
363
|
-
* The number of milliseconds of inactivity before a socket is presumed
|
364
|
-
* to have timed out.
|
365
|
-
*
|
366
|
-
* A value of `0` will disable the timeout behavior on incoming connections.
|
367
|
-
*
|
368
|
-
* The socket timeout logic is set up on connection, so changing this
|
369
|
-
* value only affects new connections to the server, not any existing connections.
|
370
|
-
* @since v0.9.12
|
371
|
-
*/
|
372
|
-
timeout: number;
|
373
|
-
/**
|
374
|
-
* Limit the amount of time the parser will wait to receive the complete HTTP
|
375
|
-
* headers.
|
376
|
-
*
|
377
|
-
* If the timeout expires, the server responds with status 408 without
|
378
|
-
* forwarding the request to the request listener and then closes the connection.
|
379
|
-
*
|
380
|
-
* It must be set to a non-zero value (e.g. 120 seconds) to protect against
|
381
|
-
* potential Denial-of-Service attacks in case the server is deployed without a
|
382
|
-
* reverse proxy in front.
|
383
|
-
* @since v11.3.0, v10.14.0
|
384
|
-
*/
|
385
|
-
headersTimeout: number;
|
386
|
-
/**
|
387
|
-
* The number of milliseconds of inactivity a server needs to wait for additional
|
388
|
-
* incoming data, after it has finished writing the last response, before a socket
|
389
|
-
* will be destroyed. If the server receives new data before the keep-alive
|
390
|
-
* timeout has fired, it will reset the regular inactivity timeout, i.e., `server.timeout`.
|
391
|
-
*
|
392
|
-
* A value of `0` will disable the keep-alive timeout behavior on incoming
|
393
|
-
* connections.
|
394
|
-
* A value of `0` makes the http server behave similarly to Node.js versions prior
|
395
|
-
* to 8.0.0, which did not have a keep-alive timeout.
|
396
|
-
*
|
397
|
-
* The socket timeout logic is set up on connection, so changing this value only
|
398
|
-
* affects new connections to the server, not any existing connections.
|
399
|
-
* @since v8.0.0
|
400
|
-
*/
|
401
|
-
keepAliveTimeout: number;
|
402
|
-
/**
|
403
|
-
* Sets the timeout value in milliseconds for receiving the entire request from
|
404
|
-
* the client.
|
405
|
-
*
|
406
|
-
* If the timeout expires, the server responds with status 408 without
|
407
|
-
* forwarding the request to the request listener and then closes the connection.
|
408
|
-
*
|
409
|
-
* It must be set to a non-zero value (e.g. 120 seconds) to protect against
|
410
|
-
* potential Denial-of-Service attacks in case the server is deployed without a
|
411
|
-
* reverse proxy in front.
|
412
|
-
* @since v14.11.0
|
413
|
-
*/
|
414
|
-
requestTimeout: number;
|
415
|
-
/**
|
416
|
-
* Closes all connections connected to this server.
|
417
|
-
* @since v18.2.0
|
418
|
-
*/
|
419
|
-
closeAllConnections(): void;
|
420
|
-
/**
|
421
|
-
* Closes all connections connected to this server which are not sending a request
|
422
|
-
* or waiting for a response.
|
423
|
-
* @since v18.2.0
|
424
|
-
*/
|
425
|
-
closeIdleConnections(): void;
|
426
|
-
addListener(event: string, listener: (...args: any[]) => void): this;
|
427
|
-
addListener(event: "close", listener: () => void): this;
|
428
|
-
addListener(event: "connection", listener: (socket: Socket) => void): this;
|
429
|
-
addListener(event: "error", listener: (err: Error) => void): this;
|
430
|
-
addListener(event: "listening", listener: () => void): this;
|
431
|
-
addListener(event: "checkContinue", listener: RequestListener<Request, Response>): this;
|
432
|
-
addListener(event: "checkExpectation", listener: RequestListener<Request, Response>): this;
|
433
|
-
addListener(event: "clientError", listener: (err: Error, socket: stream.Duplex) => void): this;
|
434
|
-
addListener(
|
435
|
-
event: "connect",
|
436
|
-
listener: (req: InstanceType<Request>, socket: stream.Duplex, head: Buffer) => void,
|
437
|
-
): this;
|
438
|
-
addListener(event: "dropRequest", listener: (req: InstanceType<Request>, socket: stream.Duplex) => void): this;
|
439
|
-
addListener(event: "request", listener: RequestListener<Request, Response>): this;
|
440
|
-
addListener(
|
441
|
-
event: "upgrade",
|
442
|
-
listener: (req: InstanceType<Request>, socket: stream.Duplex, head: Buffer) => void,
|
443
|
-
): this;
|
444
|
-
emit(event: string, ...args: any[]): boolean;
|
445
|
-
emit(event: "close"): boolean;
|
446
|
-
emit(event: "connection", socket: Socket): boolean;
|
447
|
-
emit(event: "error", err: Error): boolean;
|
448
|
-
emit(event: "listening"): boolean;
|
449
|
-
emit(
|
450
|
-
event: "checkContinue",
|
451
|
-
req: InstanceType<Request>,
|
452
|
-
res: InstanceType<Response> & { req: InstanceType<Request> },
|
453
|
-
): boolean;
|
454
|
-
emit(
|
455
|
-
event: "checkExpectation",
|
456
|
-
req: InstanceType<Request>,
|
457
|
-
res: InstanceType<Response> & { req: InstanceType<Request> },
|
458
|
-
): boolean;
|
459
|
-
emit(event: "clientError", err: Error, socket: stream.Duplex): boolean;
|
460
|
-
emit(event: "connect", req: InstanceType<Request>, socket: stream.Duplex, head: Buffer): boolean;
|
461
|
-
emit(event: "dropRequest", req: InstanceType<Request>, socket: stream.Duplex): boolean;
|
462
|
-
emit(
|
463
|
-
event: "request",
|
464
|
-
req: InstanceType<Request>,
|
465
|
-
res: InstanceType<Response> & { req: InstanceType<Request> },
|
466
|
-
): boolean;
|
467
|
-
emit(event: "upgrade", req: InstanceType<Request>, socket: stream.Duplex, head: Buffer): boolean;
|
468
|
-
on(event: string, listener: (...args: any[]) => void): this;
|
469
|
-
on(event: "close", listener: () => void): this;
|
470
|
-
on(event: "connection", listener: (socket: Socket) => void): this;
|
471
|
-
on(event: "error", listener: (err: Error) => void): this;
|
472
|
-
on(event: "listening", listener: () => void): this;
|
473
|
-
on(event: "checkContinue", listener: RequestListener<Request, Response>): this;
|
474
|
-
on(event: "checkExpectation", listener: RequestListener<Request, Response>): this;
|
475
|
-
on(event: "clientError", listener: (err: Error, socket: stream.Duplex) => void): this;
|
476
|
-
on(event: "connect", listener: (req: InstanceType<Request>, socket: stream.Duplex, head: Buffer) => void): this;
|
477
|
-
on(event: "dropRequest", listener: (req: InstanceType<Request>, socket: stream.Duplex) => void): this;
|
478
|
-
on(event: "request", listener: RequestListener<Request, Response>): this;
|
479
|
-
on(event: "upgrade", listener: (req: InstanceType<Request>, socket: stream.Duplex, head: Buffer) => void): this;
|
480
|
-
once(event: string, listener: (...args: any[]) => void): this;
|
481
|
-
once(event: "close", listener: () => void): this;
|
482
|
-
once(event: "connection", listener: (socket: Socket) => void): this;
|
483
|
-
once(event: "error", listener: (err: Error) => void): this;
|
484
|
-
once(event: "listening", listener: () => void): this;
|
485
|
-
once(event: "checkContinue", listener: RequestListener<Request, Response>): this;
|
486
|
-
once(event: "checkExpectation", listener: RequestListener<Request, Response>): this;
|
487
|
-
once(event: "clientError", listener: (err: Error, socket: stream.Duplex) => void): this;
|
488
|
-
once(
|
489
|
-
event: "connect",
|
490
|
-
listener: (req: InstanceType<Request>, socket: stream.Duplex, head: Buffer) => void,
|
491
|
-
): this;
|
492
|
-
once(event: "dropRequest", listener: (req: InstanceType<Request>, socket: stream.Duplex) => void): this;
|
493
|
-
once(event: "request", listener: RequestListener<Request, Response>): this;
|
494
|
-
once(
|
495
|
-
event: "upgrade",
|
496
|
-
listener: (req: InstanceType<Request>, socket: stream.Duplex, head: Buffer) => void,
|
497
|
-
): this;
|
498
|
-
prependListener(event: string, listener: (...args: any[]) => void): this;
|
499
|
-
prependListener(event: "close", listener: () => void): this;
|
500
|
-
prependListener(event: "connection", listener: (socket: Socket) => void): this;
|
501
|
-
prependListener(event: "error", listener: (err: Error) => void): this;
|
502
|
-
prependListener(event: "listening", listener: () => void): this;
|
503
|
-
prependListener(event: "checkContinue", listener: RequestListener<Request, Response>): this;
|
504
|
-
prependListener(event: "checkExpectation", listener: RequestListener<Request, Response>): this;
|
505
|
-
prependListener(event: "clientError", listener: (err: Error, socket: stream.Duplex) => void): this;
|
506
|
-
prependListener(
|
507
|
-
event: "connect",
|
508
|
-
listener: (req: InstanceType<Request>, socket: stream.Duplex, head: Buffer) => void,
|
509
|
-
): this;
|
510
|
-
prependListener(
|
511
|
-
event: "dropRequest",
|
512
|
-
listener: (req: InstanceType<Request>, socket: stream.Duplex) => void,
|
513
|
-
): this;
|
514
|
-
prependListener(event: "request", listener: RequestListener<Request, Response>): this;
|
515
|
-
prependListener(
|
516
|
-
event: "upgrade",
|
517
|
-
listener: (req: InstanceType<Request>, socket: stream.Duplex, head: Buffer) => void,
|
518
|
-
): this;
|
519
|
-
prependOnceListener(event: string, listener: (...args: any[]) => void): this;
|
520
|
-
prependOnceListener(event: "close", listener: () => void): this;
|
521
|
-
prependOnceListener(event: "connection", listener: (socket: Socket) => void): this;
|
522
|
-
prependOnceListener(event: "error", listener: (err: Error) => void): this;
|
523
|
-
prependOnceListener(event: "listening", listener: () => void): this;
|
524
|
-
prependOnceListener(event: "checkContinue", listener: RequestListener<Request, Response>): this;
|
525
|
-
prependOnceListener(event: "checkExpectation", listener: RequestListener<Request, Response>): this;
|
526
|
-
prependOnceListener(event: "clientError", listener: (err: Error, socket: stream.Duplex) => void): this;
|
527
|
-
prependOnceListener(
|
528
|
-
event: "connect",
|
529
|
-
listener: (req: InstanceType<Request>, socket: stream.Duplex, head: Buffer) => void,
|
530
|
-
): this;
|
531
|
-
prependOnceListener(
|
532
|
-
event: "dropRequest",
|
533
|
-
listener: (req: InstanceType<Request>, socket: stream.Duplex) => void,
|
534
|
-
): this;
|
535
|
-
prependOnceListener(event: "request", listener: RequestListener<Request, Response>): this;
|
536
|
-
prependOnceListener(
|
537
|
-
event: "upgrade",
|
538
|
-
listener: (req: InstanceType<Request>, socket: stream.Duplex, head: Buffer) => void,
|
539
|
-
): this;
|
540
|
-
}
|
541
|
-
/**
|
542
|
-
* This class serves as the parent class of {@link ClientRequest} and {@link ServerResponse}. It is an abstract outgoing message from
|
543
|
-
* the perspective of the participants of an HTTP transaction.
|
544
|
-
* @since v0.1.17
|
545
|
-
*/
|
546
|
-
class OutgoingMessage<Request extends IncomingMessage = IncomingMessage> extends stream.Writable {
|
547
|
-
readonly req: Request;
|
548
|
-
chunkedEncoding: boolean;
|
549
|
-
shouldKeepAlive: boolean;
|
550
|
-
useChunkedEncodingByDefault: boolean;
|
551
|
-
sendDate: boolean;
|
552
|
-
/**
|
553
|
-
* @deprecated Use `writableEnded` instead.
|
554
|
-
*/
|
555
|
-
finished: boolean;
|
556
|
-
/**
|
557
|
-
* Read-only. `true` if the headers were sent, otherwise `false`.
|
558
|
-
* @since v0.9.3
|
559
|
-
*/
|
560
|
-
readonly headersSent: boolean;
|
561
|
-
/**
|
562
|
-
* Alias of `outgoingMessage.socket`.
|
563
|
-
* @since v0.3.0
|
564
|
-
* @deprecated Since v15.12.0,v14.17.1 - Use `socket` instead.
|
565
|
-
*/
|
566
|
-
readonly connection: Socket | null;
|
567
|
-
/**
|
568
|
-
* Reference to the underlying socket. Usually, users will not want to access
|
569
|
-
* this property.
|
570
|
-
*
|
571
|
-
* After calling `outgoingMessage.end()`, this property will be nulled.
|
572
|
-
* @since v0.3.0
|
573
|
-
*/
|
574
|
-
readonly socket: Socket | null;
|
575
|
-
constructor();
|
576
|
-
/**
|
577
|
-
* Once a socket is associated with the message and is connected, `socket.setTimeout()` will be called with `msecs` as the first parameter.
|
578
|
-
* @since v0.9.12
|
579
|
-
* @param callback Optional function to be called when a timeout occurs. Same as binding to the `timeout` event.
|
580
|
-
*/
|
581
|
-
setTimeout(msecs: number, callback?: () => void): this;
|
582
|
-
/**
|
583
|
-
* Sets a single header value. If the header already exists in the to-be-sent
|
584
|
-
* headers, its value will be replaced. Use an array of strings to send multiple
|
585
|
-
* headers with the same name.
|
586
|
-
* @since v0.4.0
|
587
|
-
* @param name Header name
|
588
|
-
* @param value Header value
|
589
|
-
*/
|
590
|
-
setHeader(name: string, value: number | string | readonly string[]): this;
|
591
|
-
/**
|
592
|
-
* Append a single header value to the header object.
|
593
|
-
*
|
594
|
-
* If the value is an array, this is equivalent to calling this method multiple
|
595
|
-
* times.
|
596
|
-
*
|
597
|
-
* If there were no previous values for the header, this is equivalent to calling `outgoingMessage.setHeader(name, value)`.
|
598
|
-
*
|
599
|
-
* Depending of the value of `options.uniqueHeaders` when the client request or the
|
600
|
-
* server were created, this will end up in the header being sent multiple times or
|
601
|
-
* a single time with values joined using `; `.
|
602
|
-
* @since v18.3.0, v16.17.0
|
603
|
-
* @param name Header name
|
604
|
-
* @param value Header value
|
605
|
-
*/
|
606
|
-
appendHeader(name: string, value: string | readonly string[]): this;
|
607
|
-
/**
|
608
|
-
* Gets the value of the HTTP header with the given name. If that header is not
|
609
|
-
* set, the returned value will be `undefined`.
|
610
|
-
* @since v0.4.0
|
611
|
-
* @param name Name of header
|
612
|
-
*/
|
613
|
-
getHeader(name: string): number | string | string[] | undefined;
|
614
|
-
/**
|
615
|
-
* Returns a shallow copy of the current outgoing headers. Since a shallow
|
616
|
-
* copy is used, array values may be mutated without additional calls to
|
617
|
-
* various header-related HTTP module methods. The keys of the returned
|
618
|
-
* object are the header names and the values are the respective header
|
619
|
-
* values. All header names are lowercase.
|
620
|
-
*
|
621
|
-
* The object returned by the `outgoingMessage.getHeaders()` method does
|
622
|
-
* not prototypically inherit from the JavaScript `Object`. This means that
|
623
|
-
* typical `Object` methods such as `obj.toString()`, `obj.hasOwnProperty()`,
|
624
|
-
* and others are not defined and will not work.
|
625
|
-
*
|
626
|
-
* ```js
|
627
|
-
* outgoingMessage.setHeader('Foo', 'bar');
|
628
|
-
* outgoingMessage.setHeader('Set-Cookie', ['foo=bar', 'bar=baz']);
|
629
|
-
*
|
630
|
-
* const headers = outgoingMessage.getHeaders();
|
631
|
-
* // headers === { foo: 'bar', 'set-cookie': ['foo=bar', 'bar=baz'] }
|
632
|
-
* ```
|
633
|
-
* @since v7.7.0
|
634
|
-
*/
|
635
|
-
getHeaders(): OutgoingHttpHeaders;
|
636
|
-
/**
|
637
|
-
* Returns an array containing the unique names of the current outgoing headers.
|
638
|
-
* All names are lowercase.
|
639
|
-
* @since v7.7.0
|
640
|
-
*/
|
641
|
-
getHeaderNames(): string[];
|
642
|
-
/**
|
643
|
-
* Returns `true` if the header identified by `name` is currently set in the
|
644
|
-
* outgoing headers. The header name is case-insensitive.
|
645
|
-
*
|
646
|
-
* ```js
|
647
|
-
* const hasContentType = outgoingMessage.hasHeader('content-type');
|
648
|
-
* ```
|
649
|
-
* @since v7.7.0
|
650
|
-
*/
|
651
|
-
hasHeader(name: string): boolean;
|
652
|
-
/**
|
653
|
-
* Removes a header that is queued for implicit sending.
|
654
|
-
*
|
655
|
-
* ```js
|
656
|
-
* outgoingMessage.removeHeader('Content-Encoding');
|
657
|
-
* ```
|
658
|
-
* @since v0.4.0
|
659
|
-
* @param name Header name
|
660
|
-
*/
|
661
|
-
removeHeader(name: string): void;
|
662
|
-
/**
|
663
|
-
* Adds HTTP trailers (headers but at the end of the message) to the message.
|
664
|
-
*
|
665
|
-
* Trailers will **only** be emitted if the message is chunked encoded. If not,
|
666
|
-
* the trailers will be silently discarded.
|
667
|
-
*
|
668
|
-
* HTTP requires the `Trailer` header to be sent to emit trailers,
|
669
|
-
* with a list of header field names in its value, e.g.
|
670
|
-
*
|
671
|
-
* ```js
|
672
|
-
* message.writeHead(200, { 'Content-Type': 'text/plain',
|
673
|
-
* 'Trailer': 'Content-MD5' });
|
674
|
-
* message.write(fileData);
|
675
|
-
* message.addTrailers({ 'Content-MD5': '7895bf4b8828b55ceaf47747b4bca667' });
|
676
|
-
* message.end();
|
677
|
-
* ```
|
678
|
-
*
|
679
|
-
* Attempting to set a header field name or value that contains invalid characters
|
680
|
-
* will result in a `TypeError` being thrown.
|
681
|
-
* @since v0.3.0
|
682
|
-
*/
|
683
|
-
addTrailers(headers: OutgoingHttpHeaders | ReadonlyArray<[string, string]>): void;
|
684
|
-
/**
|
685
|
-
* Flushes the message headers.
|
686
|
-
*
|
687
|
-
* For efficiency reason, Node.js normally buffers the message headers
|
688
|
-
* until `outgoingMessage.end()` is called or the first chunk of message data
|
689
|
-
* is written. It then tries to pack the headers and data into a single TCP
|
690
|
-
* packet.
|
691
|
-
*
|
692
|
-
* It is usually desired (it saves a TCP round-trip), but not when the first
|
693
|
-
* data is not sent until possibly much later. `outgoingMessage.flushHeaders()` bypasses the optimization and kickstarts the message.
|
694
|
-
* @since v1.6.0
|
695
|
-
*/
|
696
|
-
flushHeaders(): void;
|
697
|
-
}
|
698
|
-
/**
|
699
|
-
* This object is created internally by an HTTP server, not by the user. It is
|
700
|
-
* passed as the second parameter to the `'request'` event.
|
701
|
-
* @since v0.1.17
|
702
|
-
*/
|
703
|
-
class ServerResponse<Request extends IncomingMessage = IncomingMessage> extends OutgoingMessage<Request> {
|
704
|
-
/**
|
705
|
-
* When using implicit headers (not calling `response.writeHead()` explicitly),
|
706
|
-
* this property controls the status code that will be sent to the client when
|
707
|
-
* the headers get flushed.
|
708
|
-
*
|
709
|
-
* ```js
|
710
|
-
* response.statusCode = 404;
|
711
|
-
* ```
|
712
|
-
*
|
713
|
-
* After response header was sent to the client, this property indicates the
|
714
|
-
* status code which was sent out.
|
715
|
-
* @since v0.4.0
|
716
|
-
*/
|
717
|
-
statusCode: number;
|
718
|
-
/**
|
719
|
-
* When using implicit headers (not calling `response.writeHead()` explicitly),
|
720
|
-
* this property controls the status message that will be sent to the client when
|
721
|
-
* the headers get flushed. If this is left as `undefined` then the standard
|
722
|
-
* message for the status code will be used.
|
723
|
-
*
|
724
|
-
* ```js
|
725
|
-
* response.statusMessage = 'Not found';
|
726
|
-
* ```
|
727
|
-
*
|
728
|
-
* After response header was sent to the client, this property indicates the
|
729
|
-
* status message which was sent out.
|
730
|
-
* @since v0.11.8
|
731
|
-
*/
|
732
|
-
statusMessage: string;
|
733
|
-
/**
|
734
|
-
* If set to `true`, Node.js will check whether the `Content-Length` header value and the size of the body, in bytes, are equal.
|
735
|
-
* Mismatching the `Content-Length` header value will result
|
736
|
-
* in an `Error` being thrown, identified by `code:``'ERR_HTTP_CONTENT_LENGTH_MISMATCH'`.
|
737
|
-
* @since v18.10.0, v16.18.0
|
738
|
-
*/
|
739
|
-
strictContentLength: boolean;
|
740
|
-
constructor(req: Request);
|
741
|
-
assignSocket(socket: Socket): void;
|
742
|
-
detachSocket(socket: Socket): void;
|
743
|
-
/**
|
744
|
-
* Sends an HTTP/1.1 100 Continue message to the client, indicating that
|
745
|
-
* the request body should be sent. See the `'checkContinue'` event on `Server`.
|
746
|
-
* @since v0.3.0
|
747
|
-
*/
|
748
|
-
writeContinue(callback?: () => void): void;
|
749
|
-
/**
|
750
|
-
* Sends an HTTP/1.1 103 Early Hints message to the client with a Link header,
|
751
|
-
* indicating that the user agent can preload/preconnect the linked resources.
|
752
|
-
* The `hints` is an object containing the values of headers to be sent with
|
753
|
-
* early hints message. The optional `callback` argument will be called when
|
754
|
-
* the response message has been written.
|
755
|
-
*
|
756
|
-
* **Example**
|
757
|
-
*
|
758
|
-
* ```js
|
759
|
-
* const earlyHintsLink = '</styles.css>; rel=preload; as=style';
|
760
|
-
* response.writeEarlyHints({
|
761
|
-
* 'link': earlyHintsLink,
|
762
|
-
* });
|
763
|
-
*
|
764
|
-
* const earlyHintsLinks = [
|
765
|
-
* '</styles.css>; rel=preload; as=style',
|
766
|
-
* '</scripts.js>; rel=preload; as=script',
|
767
|
-
* ];
|
768
|
-
* response.writeEarlyHints({
|
769
|
-
* 'link': earlyHintsLinks,
|
770
|
-
* 'x-trace-id': 'id for diagnostics',
|
771
|
-
* });
|
772
|
-
*
|
773
|
-
* const earlyHintsCallback = () => console.log('early hints message sent');
|
774
|
-
* response.writeEarlyHints({
|
775
|
-
* 'link': earlyHintsLinks,
|
776
|
-
* }, earlyHintsCallback);
|
777
|
-
* ```
|
778
|
-
* @since v18.11.0
|
779
|
-
* @param hints An object containing the values of headers
|
780
|
-
* @param callback Will be called when the response message has been written
|
781
|
-
*/
|
782
|
-
writeEarlyHints(hints: Record<string, string | string[]>, callback?: () => void): void;
|
783
|
-
/**
|
784
|
-
* Sends a response header to the request. The status code is a 3-digit HTTP
|
785
|
-
* status code, like `404`. The last argument, `headers`, are the response headers.
|
786
|
-
* Optionally one can give a human-readable `statusMessage` as the second
|
787
|
-
* argument.
|
788
|
-
*
|
789
|
-
* `headers` may be an `Array` where the keys and values are in the same list.
|
790
|
-
* It is _not_ a list of tuples. So, the even-numbered offsets are key values,
|
791
|
-
* and the odd-numbered offsets are the associated values. The array is in the same
|
792
|
-
* format as `request.rawHeaders`.
|
793
|
-
*
|
794
|
-
* Returns a reference to the `ServerResponse`, so that calls can be chained.
|
795
|
-
*
|
796
|
-
* ```js
|
797
|
-
* const body = 'hello world';
|
798
|
-
* response
|
799
|
-
* .writeHead(200, {
|
800
|
-
* 'Content-Length': Buffer.byteLength(body),
|
801
|
-
* 'Content-Type': 'text/plain',
|
802
|
-
* })
|
803
|
-
* .end(body);
|
804
|
-
* ```
|
805
|
-
*
|
806
|
-
* This method must only be called once on a message and it must
|
807
|
-
* be called before `response.end()` is called.
|
808
|
-
*
|
809
|
-
* If `response.write()` or `response.end()` are called before calling
|
810
|
-
* this, the implicit/mutable headers will be calculated and call this function.
|
811
|
-
*
|
812
|
-
* When headers have been set with `response.setHeader()`, they will be merged
|
813
|
-
* with any headers passed to `response.writeHead()`, with the headers passed
|
814
|
-
* to `response.writeHead()` given precedence.
|
815
|
-
*
|
816
|
-
* If this method is called and `response.setHeader()` has not been called,
|
817
|
-
* it will directly write the supplied header values onto the network channel
|
818
|
-
* without caching internally, and the `response.getHeader()` on the header
|
819
|
-
* will not yield the expected result. If progressive population of headers is
|
820
|
-
* desired with potential future retrieval and modification, use `response.setHeader()` instead.
|
821
|
-
*
|
822
|
-
* ```js
|
823
|
-
* // Returns content-type = text/plain
|
824
|
-
* const server = http.createServer((req, res) => {
|
825
|
-
* res.setHeader('Content-Type', 'text/html');
|
826
|
-
* res.setHeader('X-Foo', 'bar');
|
827
|
-
* res.writeHead(200, { 'Content-Type': 'text/plain' });
|
828
|
-
* res.end('ok');
|
829
|
-
* });
|
830
|
-
* ```
|
831
|
-
*
|
832
|
-
* `Content-Length` is read in bytes, not characters. Use `Buffer.byteLength()` to determine the length of the body in bytes. Node.js
|
833
|
-
* will check whether `Content-Length` and the length of the body which has
|
834
|
-
* been transmitted are equal or not.
|
835
|
-
*
|
836
|
-
* Attempting to set a header field name or value that contains invalid characters
|
837
|
-
* will result in a \[`Error`\]\[\] being thrown.
|
838
|
-
* @since v0.1.30
|
839
|
-
*/
|
840
|
-
writeHead(
|
841
|
-
statusCode: number,
|
842
|
-
statusMessage?: string,
|
843
|
-
headers?: OutgoingHttpHeaders | OutgoingHttpHeader[],
|
844
|
-
): this;
|
845
|
-
writeHead(statusCode: number, headers?: OutgoingHttpHeaders | OutgoingHttpHeader[]): this;
|
846
|
-
/**
|
847
|
-
* Sends a HTTP/1.1 102 Processing message to the client, indicating that
|
848
|
-
* the request body should be sent.
|
849
|
-
* @since v10.0.0
|
850
|
-
*/
|
851
|
-
writeProcessing(): void;
|
852
|
-
}
|
853
|
-
interface InformationEvent {
|
854
|
-
statusCode: number;
|
855
|
-
statusMessage: string;
|
856
|
-
httpVersion: string;
|
857
|
-
httpVersionMajor: number;
|
858
|
-
httpVersionMinor: number;
|
859
|
-
headers: IncomingHttpHeaders;
|
860
|
-
rawHeaders: string[];
|
861
|
-
}
|
862
|
-
/**
|
863
|
-
* This object is created internally and returned from {@link request}. It
|
864
|
-
* represents an _in-progress_ request whose header has already been queued. The
|
865
|
-
* header is still mutable using the `setHeader(name, value)`, `getHeader(name)`, `removeHeader(name)` API. The actual header will
|
866
|
-
* be sent along with the first data chunk or when calling `request.end()`.
|
867
|
-
*
|
868
|
-
* To get the response, add a listener for `'response'` to the request object. `'response'` will be emitted from the request object when the response
|
869
|
-
* headers have been received. The `'response'` event is executed with one
|
870
|
-
* argument which is an instance of {@link IncomingMessage}.
|
871
|
-
*
|
872
|
-
* During the `'response'` event, one can add listeners to the
|
873
|
-
* response object; particularly to listen for the `'data'` event.
|
874
|
-
*
|
875
|
-
* If no `'response'` handler is added, then the response will be
|
876
|
-
* entirely discarded. However, if a `'response'` event handler is added,
|
877
|
-
* then the data from the response object **must** be consumed, either by
|
878
|
-
* calling `response.read()` whenever there is a `'readable'` event, or
|
879
|
-
* by adding a `'data'` handler, or by calling the `.resume()` method.
|
880
|
-
* Until the data is consumed, the `'end'` event will not fire. Also, until
|
881
|
-
* the data is read it will consume memory that can eventually lead to a
|
882
|
-
* 'process out of memory' error.
|
883
|
-
*
|
884
|
-
* For backward compatibility, `res` will only emit `'error'` if there is an `'error'` listener registered.
|
885
|
-
*
|
886
|
-
* Set `Content-Length` header to limit the response body size.
|
887
|
-
* If `response.strictContentLength` is set to `true`, mismatching the `Content-Length` header value will result in an `Error` being thrown,
|
888
|
-
* identified by `code:``'ERR_HTTP_CONTENT_LENGTH_MISMATCH'`.
|
889
|
-
*
|
890
|
-
* `Content-Length` value should be in bytes, not characters. Use `Buffer.byteLength()` to determine the length of the body in bytes.
|
891
|
-
* @since v0.1.17
|
892
|
-
*/
|
893
|
-
class ClientRequest extends OutgoingMessage {
|
894
|
-
/**
|
895
|
-
* The `request.aborted` property will be `true` if the request has
|
896
|
-
* been aborted.
|
897
|
-
* @since v0.11.14
|
898
|
-
* @deprecated Since v17.0.0, v16.12.0 - Check `destroyed` instead.
|
899
|
-
*/
|
900
|
-
aborted: boolean;
|
901
|
-
/**
|
902
|
-
* The request host.
|
903
|
-
* @since v14.5.0, v12.19.0
|
904
|
-
*/
|
905
|
-
host: string;
|
906
|
-
/**
|
907
|
-
* The request protocol.
|
908
|
-
* @since v14.5.0, v12.19.0
|
909
|
-
*/
|
910
|
-
protocol: string;
|
911
|
-
/**
|
912
|
-
* When sending request through a keep-alive enabled agent, the underlying socket
|
913
|
-
* might be reused. But if server closes connection at unfortunate time, client
|
914
|
-
* may run into a 'ECONNRESET' error.
|
915
|
-
*
|
916
|
-
* ```js
|
917
|
-
* import http from 'node:http';
|
918
|
-
*
|
919
|
-
* // Server has a 5 seconds keep-alive timeout by default
|
920
|
-
* http
|
921
|
-
* .createServer((req, res) => {
|
922
|
-
* res.write('hello\n');
|
923
|
-
* res.end();
|
924
|
-
* })
|
925
|
-
* .listen(3000);
|
926
|
-
*
|
927
|
-
* setInterval(() => {
|
928
|
-
* // Adapting a keep-alive agent
|
929
|
-
* http.get('http://localhost:3000', { agent }, (res) => {
|
930
|
-
* res.on('data', (data) => {
|
931
|
-
* // Do nothing
|
932
|
-
* });
|
933
|
-
* });
|
934
|
-
* }, 5000); // Sending request on 5s interval so it's easy to hit idle timeout
|
935
|
-
* ```
|
936
|
-
*
|
937
|
-
* By marking a request whether it reused socket or not, we can do
|
938
|
-
* automatic error retry base on it.
|
939
|
-
*
|
940
|
-
* ```js
|
941
|
-
* import http from 'node:http';
|
942
|
-
* const agent = new http.Agent({ keepAlive: true });
|
943
|
-
*
|
944
|
-
* function retriableRequest() {
|
945
|
-
* const req = http
|
946
|
-
* .get('http://localhost:3000', { agent }, (res) => {
|
947
|
-
* // ...
|
948
|
-
* })
|
949
|
-
* .on('error', (err) => {
|
950
|
-
* // Check if retry is needed
|
951
|
-
* if (req.reusedSocket && err.code === 'ECONNRESET') {
|
952
|
-
* retriableRequest();
|
953
|
-
* }
|
954
|
-
* });
|
955
|
-
* }
|
956
|
-
*
|
957
|
-
* retriableRequest();
|
958
|
-
* ```
|
959
|
-
* @since v13.0.0, v12.16.0
|
960
|
-
*/
|
961
|
-
reusedSocket: boolean;
|
962
|
-
/**
|
963
|
-
* Limits maximum response headers count. If set to 0, no limit will be applied.
|
964
|
-
*/
|
965
|
-
maxHeadersCount: number;
|
966
|
-
constructor(url: string | URL | ClientRequestArgs, cb?: (res: IncomingMessage) => void);
|
967
|
-
/**
|
968
|
-
* The request method.
|
969
|
-
* @since v0.1.97
|
970
|
-
*/
|
971
|
-
method: string;
|
972
|
-
/**
|
973
|
-
* The request path.
|
974
|
-
* @since v0.4.0
|
975
|
-
*/
|
976
|
-
path: string;
|
977
|
-
/**
|
978
|
-
* Marks the request as aborting. Calling this will cause remaining data
|
979
|
-
* in the response to be dropped and the socket to be destroyed.
|
980
|
-
* @since v0.3.8
|
981
|
-
* @deprecated Since v14.1.0,v13.14.0 - Use `destroy` instead.
|
982
|
-
*/
|
983
|
-
abort(): void;
|
984
|
-
onSocket(socket: Socket): void;
|
985
|
-
/**
|
986
|
-
* Once a socket is assigned to this request and is connected `socket.setTimeout()` will be called.
|
987
|
-
* @since v0.5.9
|
988
|
-
* @param timeout Milliseconds before a request times out.
|
989
|
-
* @param callback Optional function to be called when a timeout occurs. Same as binding to the `'timeout'` event.
|
990
|
-
*/
|
991
|
-
setTimeout(timeout: number, callback?: () => void): this;
|
992
|
-
/**
|
993
|
-
* Once a socket is assigned to this request and is connected `socket.setNoDelay()` will be called.
|
994
|
-
* @since v0.5.9
|
995
|
-
*/
|
996
|
-
setNoDelay(noDelay?: boolean): void;
|
997
|
-
/**
|
998
|
-
* Once a socket is assigned to this request and is connected `socket.setKeepAlive()` will be called.
|
999
|
-
* @since v0.5.9
|
1000
|
-
*/
|
1001
|
-
setSocketKeepAlive(enable?: boolean, initialDelay?: number): void;
|
1002
|
-
/**
|
1003
|
-
* Returns an array containing the unique names of the current outgoing raw
|
1004
|
-
* headers. Header names are returned with their exact casing being set.
|
1005
|
-
*
|
1006
|
-
* ```js
|
1007
|
-
* request.setHeader('Foo', 'bar');
|
1008
|
-
* request.setHeader('Set-Cookie', ['foo=bar', 'bar=baz']);
|
1009
|
-
*
|
1010
|
-
* const headerNames = request.getRawHeaderNames();
|
1011
|
-
* // headerNames === ['Foo', 'Set-Cookie']
|
1012
|
-
* ```
|
1013
|
-
* @since v15.13.0, v14.17.0
|
1014
|
-
*/
|
1015
|
-
getRawHeaderNames(): string[];
|
1016
|
-
/**
|
1017
|
-
* @deprecated
|
1018
|
-
*/
|
1019
|
-
addListener(event: "abort", listener: () => void): this;
|
1020
|
-
addListener(
|
1021
|
-
event: "connect",
|
1022
|
-
listener: (response: IncomingMessage, socket: Socket, head: Buffer) => void,
|
1023
|
-
): this;
|
1024
|
-
addListener(event: "continue", listener: () => void): this;
|
1025
|
-
addListener(event: "information", listener: (info: InformationEvent) => void): this;
|
1026
|
-
addListener(event: "response", listener: (response: IncomingMessage) => void): this;
|
1027
|
-
addListener(event: "socket", listener: (socket: Socket) => void): this;
|
1028
|
-
addListener(event: "timeout", listener: () => void): this;
|
1029
|
-
addListener(
|
1030
|
-
event: "upgrade",
|
1031
|
-
listener: (response: IncomingMessage, socket: Socket, head: Buffer) => void,
|
1032
|
-
): this;
|
1033
|
-
addListener(event: "close", listener: () => void): this;
|
1034
|
-
addListener(event: "drain", listener: () => void): this;
|
1035
|
-
addListener(event: "error", listener: (err: Error) => void): this;
|
1036
|
-
addListener(event: "finish", listener: () => void): this;
|
1037
|
-
addListener(event: "pipe", listener: (src: stream.Readable) => void): this;
|
1038
|
-
addListener(event: "unpipe", listener: (src: stream.Readable) => void): this;
|
1039
|
-
addListener(event: string | symbol, listener: (...args: any[]) => void): this;
|
1040
|
-
/**
|
1041
|
-
* @deprecated
|
1042
|
-
*/
|
1043
|
-
on(event: "abort", listener: () => void): this;
|
1044
|
-
on(event: "connect", listener: (response: IncomingMessage, socket: Socket, head: Buffer) => void): this;
|
1045
|
-
on(event: "continue", listener: () => void): this;
|
1046
|
-
on(event: "information", listener: (info: InformationEvent) => void): this;
|
1047
|
-
on(event: "response", listener: (response: IncomingMessage) => void): this;
|
1048
|
-
on(event: "socket", listener: (socket: Socket) => void): this;
|
1049
|
-
on(event: "timeout", listener: () => void): this;
|
1050
|
-
on(event: "upgrade", listener: (response: IncomingMessage, socket: Socket, head: Buffer) => void): this;
|
1051
|
-
on(event: "close", listener: () => void): this;
|
1052
|
-
on(event: "drain", listener: () => void): this;
|
1053
|
-
on(event: "error", listener: (err: Error) => void): this;
|
1054
|
-
on(event: "finish", listener: () => void): this;
|
1055
|
-
on(event: "pipe", listener: (src: stream.Readable) => void): this;
|
1056
|
-
on(event: "unpipe", listener: (src: stream.Readable) => void): this;
|
1057
|
-
on(event: string | symbol, listener: (...args: any[]) => void): this;
|
1058
|
-
/**
|
1059
|
-
* @deprecated
|
1060
|
-
*/
|
1061
|
-
once(event: "abort", listener: () => void): this;
|
1062
|
-
once(event: "connect", listener: (response: IncomingMessage, socket: Socket, head: Buffer) => void): this;
|
1063
|
-
once(event: "continue", listener: () => void): this;
|
1064
|
-
once(event: "information", listener: (info: InformationEvent) => void): this;
|
1065
|
-
once(event: "response", listener: (response: IncomingMessage) => void): this;
|
1066
|
-
once(event: "socket", listener: (socket: Socket) => void): this;
|
1067
|
-
once(event: "timeout", listener: () => void): this;
|
1068
|
-
once(event: "upgrade", listener: (response: IncomingMessage, socket: Socket, head: Buffer) => void): this;
|
1069
|
-
once(event: "close", listener: () => void): this;
|
1070
|
-
once(event: "drain", listener: () => void): this;
|
1071
|
-
once(event: "error", listener: (err: Error) => void): this;
|
1072
|
-
once(event: "finish", listener: () => void): this;
|
1073
|
-
once(event: "pipe", listener: (src: stream.Readable) => void): this;
|
1074
|
-
once(event: "unpipe", listener: (src: stream.Readable) => void): this;
|
1075
|
-
once(event: string | symbol, listener: (...args: any[]) => void): this;
|
1076
|
-
/**
|
1077
|
-
* @deprecated
|
1078
|
-
*/
|
1079
|
-
prependListener(event: "abort", listener: () => void): this;
|
1080
|
-
prependListener(
|
1081
|
-
event: "connect",
|
1082
|
-
listener: (response: IncomingMessage, socket: Socket, head: Buffer) => void,
|
1083
|
-
): this;
|
1084
|
-
prependListener(event: "continue", listener: () => void): this;
|
1085
|
-
prependListener(event: "information", listener: (info: InformationEvent) => void): this;
|
1086
|
-
prependListener(event: "response", listener: (response: IncomingMessage) => void): this;
|
1087
|
-
prependListener(event: "socket", listener: (socket: Socket) => void): this;
|
1088
|
-
prependListener(event: "timeout", listener: () => void): this;
|
1089
|
-
prependListener(
|
1090
|
-
event: "upgrade",
|
1091
|
-
listener: (response: IncomingMessage, socket: Socket, head: Buffer) => void,
|
1092
|
-
): this;
|
1093
|
-
prependListener(event: "close", listener: () => void): this;
|
1094
|
-
prependListener(event: "drain", listener: () => void): this;
|
1095
|
-
prependListener(event: "error", listener: (err: Error) => void): this;
|
1096
|
-
prependListener(event: "finish", listener: () => void): this;
|
1097
|
-
prependListener(event: "pipe", listener: (src: stream.Readable) => void): this;
|
1098
|
-
prependListener(event: "unpipe", listener: (src: stream.Readable) => void): this;
|
1099
|
-
prependListener(event: string | symbol, listener: (...args: any[]) => void): this;
|
1100
|
-
/**
|
1101
|
-
* @deprecated
|
1102
|
-
*/
|
1103
|
-
prependOnceListener(event: "abort", listener: () => void): this;
|
1104
|
-
prependOnceListener(
|
1105
|
-
event: "connect",
|
1106
|
-
listener: (response: IncomingMessage, socket: Socket, head: Buffer) => void,
|
1107
|
-
): this;
|
1108
|
-
prependOnceListener(event: "continue", listener: () => void): this;
|
1109
|
-
prependOnceListener(event: "information", listener: (info: InformationEvent) => void): this;
|
1110
|
-
prependOnceListener(event: "response", listener: (response: IncomingMessage) => void): this;
|
1111
|
-
prependOnceListener(event: "socket", listener: (socket: Socket) => void): this;
|
1112
|
-
prependOnceListener(event: "timeout", listener: () => void): this;
|
1113
|
-
prependOnceListener(
|
1114
|
-
event: "upgrade",
|
1115
|
-
listener: (response: IncomingMessage, socket: Socket, head: Buffer) => void,
|
1116
|
-
): this;
|
1117
|
-
prependOnceListener(event: "close", listener: () => void): this;
|
1118
|
-
prependOnceListener(event: "drain", listener: () => void): this;
|
1119
|
-
prependOnceListener(event: "error", listener: (err: Error) => void): this;
|
1120
|
-
prependOnceListener(event: "finish", listener: () => void): this;
|
1121
|
-
prependOnceListener(event: "pipe", listener: (src: stream.Readable) => void): this;
|
1122
|
-
prependOnceListener(event: "unpipe", listener: (src: stream.Readable) => void): this;
|
1123
|
-
prependOnceListener(event: string | symbol, listener: (...args: any[]) => void): this;
|
1124
|
-
}
|
1125
|
-
/**
|
1126
|
-
* An `IncomingMessage` object is created by {@link Server} or {@link ClientRequest} and passed as the first argument to the `'request'` and `'response'` event respectively. It may be used to
|
1127
|
-
* access response
|
1128
|
-
* status, headers, and data.
|
1129
|
-
*
|
1130
|
-
* Different from its `socket` value which is a subclass of `stream.Duplex`, the `IncomingMessage` itself extends `stream.Readable` and is created separately to
|
1131
|
-
* parse and emit the incoming HTTP headers and payload, as the underlying socket
|
1132
|
-
* may be reused multiple times in case of keep-alive.
|
1133
|
-
* @since v0.1.17
|
1134
|
-
*/
|
1135
|
-
class IncomingMessage extends stream.Readable {
|
1136
|
-
constructor(socket: Socket);
|
1137
|
-
/**
|
1138
|
-
* The `message.aborted` property will be `true` if the request has
|
1139
|
-
* been aborted.
|
1140
|
-
* @since v10.1.0
|
1141
|
-
* @deprecated Since v17.0.0,v16.12.0 - Check `message.destroyed` from <a href="stream.html#class-streamreadable" class="type">stream.Readable</a>.
|
1142
|
-
*/
|
1143
|
-
aborted: boolean;
|
1144
|
-
/**
|
1145
|
-
* In case of server request, the HTTP version sent by the client. In the case of
|
1146
|
-
* client response, the HTTP version of the connected-to server.
|
1147
|
-
* Probably either `'1.1'` or `'1.0'`.
|
1148
|
-
*
|
1149
|
-
* Also `message.httpVersionMajor` is the first integer and `message.httpVersionMinor` is the second.
|
1150
|
-
* @since v0.1.1
|
1151
|
-
*/
|
1152
|
-
httpVersion: string;
|
1153
|
-
httpVersionMajor: number;
|
1154
|
-
httpVersionMinor: number;
|
1155
|
-
/**
|
1156
|
-
* The `message.complete` property will be `true` if a complete HTTP message has
|
1157
|
-
* been received and successfully parsed.
|
1158
|
-
*
|
1159
|
-
* This property is particularly useful as a means of determining if a client or
|
1160
|
-
* server fully transmitted a message before a connection was terminated:
|
1161
|
-
*
|
1162
|
-
* ```js
|
1163
|
-
* const req = http.request({
|
1164
|
-
* host: '127.0.0.1',
|
1165
|
-
* port: 8080,
|
1166
|
-
* method: 'POST',
|
1167
|
-
* }, (res) => {
|
1168
|
-
* res.resume();
|
1169
|
-
* res.on('end', () => {
|
1170
|
-
* if (!res.complete)
|
1171
|
-
* console.error(
|
1172
|
-
* 'The connection was terminated while the message was still being sent');
|
1173
|
-
* });
|
1174
|
-
* });
|
1175
|
-
* ```
|
1176
|
-
* @since v0.3.0
|
1177
|
-
*/
|
1178
|
-
complete: boolean;
|
1179
|
-
/**
|
1180
|
-
* Alias for `message.socket`.
|
1181
|
-
* @since v0.1.90
|
1182
|
-
* @deprecated Since v16.0.0 - Use `socket`.
|
1183
|
-
*/
|
1184
|
-
connection: Socket;
|
1185
|
-
/**
|
1186
|
-
* The `net.Socket` object associated with the connection.
|
1187
|
-
*
|
1188
|
-
* With HTTPS support, use `request.socket.getPeerCertificate()` to obtain the
|
1189
|
-
* client's authentication details.
|
1190
|
-
*
|
1191
|
-
* This property is guaranteed to be an instance of the `net.Socket` class,
|
1192
|
-
* a subclass of `stream.Duplex`, unless the user specified a socket
|
1193
|
-
* type other than `net.Socket` or internally nulled.
|
1194
|
-
* @since v0.3.0
|
1195
|
-
*/
|
1196
|
-
socket: Socket;
|
1197
|
-
/**
|
1198
|
-
* The request/response headers object.
|
1199
|
-
*
|
1200
|
-
* Key-value pairs of header names and values. Header names are lower-cased.
|
1201
|
-
*
|
1202
|
-
* ```js
|
1203
|
-
* // Prints something like:
|
1204
|
-
* //
|
1205
|
-
* // { 'user-agent': 'curl/7.22.0',
|
1206
|
-
* // host: '127.0.0.1:8000',
|
1207
|
-
* // accept: '*' }
|
1208
|
-
* console.log(request.headers);
|
1209
|
-
* ```
|
1210
|
-
*
|
1211
|
-
* Duplicates in raw headers are handled in the following ways, depending on the
|
1212
|
-
* header name:
|
1213
|
-
*
|
1214
|
-
* * Duplicates of `age`, `authorization`, `content-length`, `content-type`, `etag`, `expires`, `from`, `host`, `if-modified-since`, `if-unmodified-since`, `last-modified`, `location`,
|
1215
|
-
* `max-forwards`, `proxy-authorization`, `referer`, `retry-after`, `server`, or `user-agent` are discarded.
|
1216
|
-
* To allow duplicate values of the headers listed above to be joined,
|
1217
|
-
* use the option `joinDuplicateHeaders` in {@link request} and {@link createServer}. See RFC 9110 Section 5.3 for more
|
1218
|
-
* information.
|
1219
|
-
* * `set-cookie` is always an array. Duplicates are added to the array.
|
1220
|
-
* * For duplicate `cookie` headers, the values are joined together with `; `.
|
1221
|
-
* * For all other headers, the values are joined together with `, `.
|
1222
|
-
* @since v0.1.5
|
1223
|
-
*/
|
1224
|
-
headers: IncomingHttpHeaders;
|
1225
|
-
/**
|
1226
|
-
* Similar to `message.headers`, but there is no join logic and the values are
|
1227
|
-
* always arrays of strings, even for headers received just once.
|
1228
|
-
*
|
1229
|
-
* ```js
|
1230
|
-
* // Prints something like:
|
1231
|
-
* //
|
1232
|
-
* // { 'user-agent': ['curl/7.22.0'],
|
1233
|
-
* // host: ['127.0.0.1:8000'],
|
1234
|
-
* // accept: ['*'] }
|
1235
|
-
* console.log(request.headersDistinct);
|
1236
|
-
* ```
|
1237
|
-
* @since v18.3.0, v16.17.0
|
1238
|
-
*/
|
1239
|
-
headersDistinct: NodeJS.Dict<string[]>;
|
1240
|
-
/**
|
1241
|
-
* The raw request/response headers list exactly as they were received.
|
1242
|
-
*
|
1243
|
-
* The keys and values are in the same list. It is _not_ a
|
1244
|
-
* list of tuples. So, the even-numbered offsets are key values, and the
|
1245
|
-
* odd-numbered offsets are the associated values.
|
1246
|
-
*
|
1247
|
-
* Header names are not lowercased, and duplicates are not merged.
|
1248
|
-
*
|
1249
|
-
* ```js
|
1250
|
-
* // Prints something like:
|
1251
|
-
* //
|
1252
|
-
* // [ 'user-agent',
|
1253
|
-
* // 'this is invalid because there can be only one',
|
1254
|
-
* // 'User-Agent',
|
1255
|
-
* // 'curl/7.22.0',
|
1256
|
-
* // 'Host',
|
1257
|
-
* // '127.0.0.1:8000',
|
1258
|
-
* // 'ACCEPT',
|
1259
|
-
* // '*' ]
|
1260
|
-
* console.log(request.rawHeaders);
|
1261
|
-
* ```
|
1262
|
-
* @since v0.11.6
|
1263
|
-
*/
|
1264
|
-
rawHeaders: string[];
|
1265
|
-
/**
|
1266
|
-
* The request/response trailers object. Only populated at the `'end'` event.
|
1267
|
-
* @since v0.3.0
|
1268
|
-
*/
|
1269
|
-
trailers: NodeJS.Dict<string>;
|
1270
|
-
/**
|
1271
|
-
* Similar to `message.trailers`, but there is no join logic and the values are
|
1272
|
-
* always arrays of strings, even for headers received just once.
|
1273
|
-
* Only populated at the `'end'` event.
|
1274
|
-
* @since v18.3.0, v16.17.0
|
1275
|
-
*/
|
1276
|
-
trailersDistinct: NodeJS.Dict<string[]>;
|
1277
|
-
/**
|
1278
|
-
* The raw request/response trailer keys and values exactly as they were
|
1279
|
-
* received. Only populated at the `'end'` event.
|
1280
|
-
* @since v0.11.6
|
1281
|
-
*/
|
1282
|
-
rawTrailers: string[];
|
1283
|
-
/**
|
1284
|
-
* Calls `message.socket.setTimeout(msecs, callback)`.
|
1285
|
-
* @since v0.5.9
|
1286
|
-
*/
|
1287
|
-
setTimeout(msecs: number, callback?: () => void): this;
|
1288
|
-
/**
|
1289
|
-
* **Only valid for request obtained from {@link Server}.**
|
1290
|
-
*
|
1291
|
-
* The request method as a string. Read only. Examples: `'GET'`, `'DELETE'`.
|
1292
|
-
* @since v0.1.1
|
1293
|
-
*/
|
1294
|
-
method?: string | undefined;
|
1295
|
-
/**
|
1296
|
-
* **Only valid for request obtained from {@link Server}.**
|
1297
|
-
*
|
1298
|
-
* Request URL string. This contains only the URL that is present in the actual
|
1299
|
-
* HTTP request. Take the following request:
|
1300
|
-
*
|
1301
|
-
* ```http
|
1302
|
-
* GET /status?name=ryan HTTP/1.1
|
1303
|
-
* Accept: text/plain
|
1304
|
-
* ```
|
1305
|
-
*
|
1306
|
-
* To parse the URL into its parts:
|
1307
|
-
*
|
1308
|
-
* ```js
|
1309
|
-
* new URL(`http://${process.env.HOST ?? 'localhost'}${request.url}`);
|
1310
|
-
* ```
|
1311
|
-
*
|
1312
|
-
* When `request.url` is `'/status?name=ryan'` and `process.env.HOST` is undefined:
|
1313
|
-
*
|
1314
|
-
* ```console
|
1315
|
-
* $ node
|
1316
|
-
* > new URL(`http://${process.env.HOST ?? 'localhost'}${request.url}`);
|
1317
|
-
* URL {
|
1318
|
-
* href: 'http://localhost/status?name=ryan',
|
1319
|
-
* origin: 'http://localhost',
|
1320
|
-
* protocol: 'http:',
|
1321
|
-
* username: '',
|
1322
|
-
* password: '',
|
1323
|
-
* host: 'localhost',
|
1324
|
-
* hostname: 'localhost',
|
1325
|
-
* port: '',
|
1326
|
-
* pathname: '/status',
|
1327
|
-
* search: '?name=ryan',
|
1328
|
-
* searchParams: URLSearchParams { 'name' => 'ryan' },
|
1329
|
-
* hash: ''
|
1330
|
-
* }
|
1331
|
-
* ```
|
1332
|
-
*
|
1333
|
-
* Ensure that you set `process.env.HOST` to the server's host name, or consider replacing this part entirely. If using `req.headers.host`, ensure proper
|
1334
|
-
* validation is used, as clients may specify a custom `Host` header.
|
1335
|
-
* @since v0.1.90
|
1336
|
-
*/
|
1337
|
-
url?: string | undefined;
|
1338
|
-
/**
|
1339
|
-
* **Only valid for response obtained from {@link ClientRequest}.**
|
1340
|
-
*
|
1341
|
-
* The 3-digit HTTP response status code. E.G. `404`.
|
1342
|
-
* @since v0.1.1
|
1343
|
-
*/
|
1344
|
-
statusCode?: number | undefined;
|
1345
|
-
/**
|
1346
|
-
* **Only valid for response obtained from {@link ClientRequest}.**
|
1347
|
-
*
|
1348
|
-
* The HTTP response status message (reason phrase). E.G. `OK` or `Internal Server Error`.
|
1349
|
-
* @since v0.11.10
|
1350
|
-
*/
|
1351
|
-
statusMessage?: string | undefined;
|
1352
|
-
/**
|
1353
|
-
* Calls `destroy()` on the socket that received the `IncomingMessage`. If `error` is provided, an `'error'` event is emitted on the socket and `error` is passed
|
1354
|
-
* as an argument to any listeners on the event.
|
1355
|
-
* @since v0.3.0
|
1356
|
-
*/
|
1357
|
-
destroy(error?: Error): this;
|
1358
|
-
}
|
1359
|
-
interface AgentOptions extends Partial<TcpSocketConnectOpts> {
|
1360
|
-
/**
|
1361
|
-
* Keep sockets around in a pool to be used by other requests in the future. Default = false
|
1362
|
-
*/
|
1363
|
-
keepAlive?: boolean | undefined;
|
1364
|
-
/**
|
1365
|
-
* When using HTTP KeepAlive, how often to send TCP KeepAlive packets over sockets being kept alive. Default = 1000.
|
1366
|
-
* Only relevant if keepAlive is set to true.
|
1367
|
-
*/
|
1368
|
-
keepAliveMsecs?: number | undefined;
|
1369
|
-
/**
|
1370
|
-
* Maximum number of sockets to allow per host. Default for Node 0.10 is 5, default for Node 0.12 is Infinity
|
1371
|
-
*/
|
1372
|
-
maxSockets?: number | undefined;
|
1373
|
-
/**
|
1374
|
-
* Maximum number of sockets allowed for all hosts in total. Each request will use a new socket until the maximum is reached. Default: Infinity.
|
1375
|
-
*/
|
1376
|
-
maxTotalSockets?: number | undefined;
|
1377
|
-
/**
|
1378
|
-
* Maximum number of sockets to leave open in a free state. Only relevant if keepAlive is set to true. Default = 256.
|
1379
|
-
*/
|
1380
|
-
maxFreeSockets?: number | undefined;
|
1381
|
-
/**
|
1382
|
-
* Socket timeout in milliseconds. This will set the timeout after the socket is connected.
|
1383
|
-
*/
|
1384
|
-
timeout?: number | undefined;
|
1385
|
-
/**
|
1386
|
-
* Scheduling strategy to apply when picking the next free socket to use.
|
1387
|
-
* @default `lifo`
|
1388
|
-
*/
|
1389
|
-
scheduling?: "fifo" | "lifo" | undefined;
|
1390
|
-
}
|
1391
|
-
/**
|
1392
|
-
* An `Agent` is responsible for managing connection persistence
|
1393
|
-
* and reuse for HTTP clients. It maintains a queue of pending requests
|
1394
|
-
* for a given host and port, reusing a single socket connection for each
|
1395
|
-
* until the queue is empty, at which time the socket is either destroyed
|
1396
|
-
* or put into a pool where it is kept to be used again for requests to the
|
1397
|
-
* same host and port. Whether it is destroyed or pooled depends on the `keepAlive` `option`.
|
1398
|
-
*
|
1399
|
-
* Pooled connections have TCP Keep-Alive enabled for them, but servers may
|
1400
|
-
* still close idle connections, in which case they will be removed from the
|
1401
|
-
* pool and a new connection will be made when a new HTTP request is made for
|
1402
|
-
* that host and port. Servers may also refuse to allow multiple requests
|
1403
|
-
* over the same connection, in which case the connection will have to be
|
1404
|
-
* remade for every request and cannot be pooled. The `Agent` will still make
|
1405
|
-
* the requests to that server, but each one will occur over a new connection.
|
1406
|
-
*
|
1407
|
-
* When a connection is closed by the client or the server, it is removed
|
1408
|
-
* from the pool. Any unused sockets in the pool will be unrefed so as not
|
1409
|
-
* to keep the Node.js process running when there are no outstanding requests.
|
1410
|
-
* (see `socket.unref()`).
|
1411
|
-
*
|
1412
|
-
* It is good practice, to `destroy()` an `Agent` instance when it is no
|
1413
|
-
* longer in use, because unused sockets consume OS resources.
|
1414
|
-
*
|
1415
|
-
* Sockets are removed from an agent when the socket emits either
|
1416
|
-
* a `'close'` event or an `'agentRemove'` event. When intending to keep one
|
1417
|
-
* HTTP request open for a long time without keeping it in the agent, something
|
1418
|
-
* like the following may be done:
|
1419
|
-
*
|
1420
|
-
* ```js
|
1421
|
-
* http.get(options, (res) => {
|
1422
|
-
* // Do stuff
|
1423
|
-
* }).on('socket', (socket) => {
|
1424
|
-
* socket.emit('agentRemove');
|
1425
|
-
* });
|
1426
|
-
* ```
|
1427
|
-
*
|
1428
|
-
* An agent may also be used for an individual request. By providing `{agent: false}` as an option to the `http.get()` or `http.request()` functions, a one-time use `Agent` with default options
|
1429
|
-
* will be used
|
1430
|
-
* for the client connection.
|
1431
|
-
*
|
1432
|
-
* `agent:false`:
|
1433
|
-
*
|
1434
|
-
* ```js
|
1435
|
-
* http.get({
|
1436
|
-
* hostname: 'localhost',
|
1437
|
-
* port: 80,
|
1438
|
-
* path: '/',
|
1439
|
-
* agent: false, // Create a new agent just for this one request
|
1440
|
-
* }, (res) => {
|
1441
|
-
* // Do stuff with response
|
1442
|
-
* });
|
1443
|
-
* ```
|
1444
|
-
*
|
1445
|
-
* `options` in [`socket.connect()`](https://nodejs.org/docs/latest-v22.x/api/net.html#socketconnectoptions-connectlistener) are also supported.
|
1446
|
-
*
|
1447
|
-
* To configure any of them, a custom {@link Agent} instance must be created.
|
1448
|
-
*
|
1449
|
-
* ```js
|
1450
|
-
* const http = require('node:http');
|
1451
|
-
* const keepAliveAgent = new http.Agent({ keepAlive: true });
|
1452
|
-
* options.agent = keepAliveAgent;
|
1453
|
-
* http.request(options, onResponseCallback)
|
1454
|
-
* ```
|
1455
|
-
* @since v0.3.4
|
1456
|
-
*/
|
1457
|
-
class Agent extends EventEmitter {
|
1458
|
-
/**
|
1459
|
-
* By default set to 256. For agents with `keepAlive` enabled, this
|
1460
|
-
* sets the maximum number of sockets that will be left open in the free
|
1461
|
-
* state.
|
1462
|
-
* @since v0.11.7
|
1463
|
-
*/
|
1464
|
-
maxFreeSockets: number;
|
1465
|
-
/**
|
1466
|
-
* By default set to `Infinity`. Determines how many concurrent sockets the agent
|
1467
|
-
* can have open per origin. Origin is the returned value of `agent.getName()`.
|
1468
|
-
* @since v0.3.6
|
1469
|
-
*/
|
1470
|
-
maxSockets: number;
|
1471
|
-
/**
|
1472
|
-
* By default set to `Infinity`. Determines how many concurrent sockets the agent
|
1473
|
-
* can have open. Unlike `maxSockets`, this parameter applies across all origins.
|
1474
|
-
* @since v14.5.0, v12.19.0
|
1475
|
-
*/
|
1476
|
-
maxTotalSockets: number;
|
1477
|
-
/**
|
1478
|
-
* An object which contains arrays of sockets currently awaiting use by
|
1479
|
-
* the agent when `keepAlive` is enabled. Do not modify.
|
1480
|
-
*
|
1481
|
-
* Sockets in the `freeSockets` list will be automatically destroyed and
|
1482
|
-
* removed from the array on `'timeout'`.
|
1483
|
-
* @since v0.11.4
|
1484
|
-
*/
|
1485
|
-
readonly freeSockets: NodeJS.ReadOnlyDict<Socket[]>;
|
1486
|
-
/**
|
1487
|
-
* An object which contains arrays of sockets currently in use by the
|
1488
|
-
* agent. Do not modify.
|
1489
|
-
* @since v0.3.6
|
1490
|
-
*/
|
1491
|
-
readonly sockets: NodeJS.ReadOnlyDict<Socket[]>;
|
1492
|
-
/**
|
1493
|
-
* An object which contains queues of requests that have not yet been assigned to
|
1494
|
-
* sockets. Do not modify.
|
1495
|
-
* @since v0.5.9
|
1496
|
-
*/
|
1497
|
-
readonly requests: NodeJS.ReadOnlyDict<IncomingMessage[]>;
|
1498
|
-
constructor(opts?: AgentOptions);
|
1499
|
-
/**
|
1500
|
-
* Destroy any sockets that are currently in use by the agent.
|
1501
|
-
*
|
1502
|
-
* It is usually not necessary to do this. However, if using an
|
1503
|
-
* agent with `keepAlive` enabled, then it is best to explicitly shut down
|
1504
|
-
* the agent when it is no longer needed. Otherwise,
|
1505
|
-
* sockets might stay open for quite a long time before the server
|
1506
|
-
* terminates them.
|
1507
|
-
* @since v0.11.4
|
1508
|
-
*/
|
1509
|
-
destroy(): void;
|
1510
|
-
}
|
1511
|
-
const METHODS: string[];
|
1512
|
-
const STATUS_CODES: {
|
1513
|
-
[errorCode: number]: string | undefined;
|
1514
|
-
[errorCode: string]: string | undefined;
|
1515
|
-
};
|
1516
|
-
/**
|
1517
|
-
* Returns a new instance of {@link Server}.
|
1518
|
-
*
|
1519
|
-
* The `requestListener` is a function which is automatically
|
1520
|
-
* added to the `'request'` event.
|
1521
|
-
*
|
1522
|
-
* ```js
|
1523
|
-
* import http from 'node:http';
|
1524
|
-
*
|
1525
|
-
* // Create a local server to receive data from
|
1526
|
-
* const server = http.createServer((req, res) => {
|
1527
|
-
* res.writeHead(200, { 'Content-Type': 'application/json' });
|
1528
|
-
* res.end(JSON.stringify({
|
1529
|
-
* data: 'Hello World!',
|
1530
|
-
* }));
|
1531
|
-
* });
|
1532
|
-
*
|
1533
|
-
* server.listen(8000);
|
1534
|
-
* ```
|
1535
|
-
*
|
1536
|
-
* ```js
|
1537
|
-
* import http from 'node:http';
|
1538
|
-
*
|
1539
|
-
* // Create a local server to receive data from
|
1540
|
-
* const server = http.createServer();
|
1541
|
-
*
|
1542
|
-
* // Listen to the request event
|
1543
|
-
* server.on('request', (request, res) => {
|
1544
|
-
* res.writeHead(200, { 'Content-Type': 'application/json' });
|
1545
|
-
* res.end(JSON.stringify({
|
1546
|
-
* data: 'Hello World!',
|
1547
|
-
* }));
|
1548
|
-
* });
|
1549
|
-
*
|
1550
|
-
* server.listen(8000);
|
1551
|
-
* ```
|
1552
|
-
* @since v0.1.13
|
1553
|
-
*/
|
1554
|
-
function createServer<
|
1555
|
-
Request extends typeof IncomingMessage = typeof IncomingMessage,
|
1556
|
-
Response extends typeof ServerResponse = typeof ServerResponse,
|
1557
|
-
>(requestListener?: RequestListener<Request, Response>): Server<Request, Response>;
|
1558
|
-
function createServer<
|
1559
|
-
Request extends typeof IncomingMessage = typeof IncomingMessage,
|
1560
|
-
Response extends typeof ServerResponse = typeof ServerResponse,
|
1561
|
-
>(
|
1562
|
-
options: ServerOptions<Request, Response>,
|
1563
|
-
requestListener?: RequestListener<Request, Response>,
|
1564
|
-
): Server<Request, Response>;
|
1565
|
-
// although RequestOptions are passed as ClientRequestArgs to ClientRequest directly,
|
1566
|
-
// create interface RequestOptions would make the naming more clear to developers
|
1567
|
-
interface RequestOptions extends ClientRequestArgs {}
|
1568
|
-
/**
|
1569
|
-
* `options` in `socket.connect()` are also supported.
|
1570
|
-
*
|
1571
|
-
* Node.js maintains several connections per server to make HTTP requests.
|
1572
|
-
* This function allows one to transparently issue requests.
|
1573
|
-
*
|
1574
|
-
* `url` can be a string or a `URL` object. If `url` is a
|
1575
|
-
* string, it is automatically parsed with `new URL()`. If it is a `URL` object, it will be automatically converted to an ordinary `options` object.
|
1576
|
-
*
|
1577
|
-
* If both `url` and `options` are specified, the objects are merged, with the `options` properties taking precedence.
|
1578
|
-
*
|
1579
|
-
* The optional `callback` parameter will be added as a one-time listener for
|
1580
|
-
* the `'response'` event.
|
1581
|
-
*
|
1582
|
-
* `http.request()` returns an instance of the {@link ClientRequest} class. The `ClientRequest` instance is a writable stream. If one needs to
|
1583
|
-
* upload a file with a POST request, then write to the `ClientRequest` object.
|
1584
|
-
*
|
1585
|
-
* ```js
|
1586
|
-
* import http from 'node:http';
|
1587
|
-
* import { Buffer } from 'node:buffer';
|
1588
|
-
*
|
1589
|
-
* const postData = JSON.stringify({
|
1590
|
-
* 'msg': 'Hello World!',
|
1591
|
-
* });
|
1592
|
-
*
|
1593
|
-
* const options = {
|
1594
|
-
* hostname: 'www.google.com',
|
1595
|
-
* port: 80,
|
1596
|
-
* path: '/upload',
|
1597
|
-
* method: 'POST',
|
1598
|
-
* headers: {
|
1599
|
-
* 'Content-Type': 'application/json',
|
1600
|
-
* 'Content-Length': Buffer.byteLength(postData),
|
1601
|
-
* },
|
1602
|
-
* };
|
1603
|
-
*
|
1604
|
-
* const req = http.request(options, (res) => {
|
1605
|
-
* console.log(`STATUS: ${res.statusCode}`);
|
1606
|
-
* console.log(`HEADERS: ${JSON.stringify(res.headers)}`);
|
1607
|
-
* res.setEncoding('utf8');
|
1608
|
-
* res.on('data', (chunk) => {
|
1609
|
-
* console.log(`BODY: ${chunk}`);
|
1610
|
-
* });
|
1611
|
-
* res.on('end', () => {
|
1612
|
-
* console.log('No more data in response.');
|
1613
|
-
* });
|
1614
|
-
* });
|
1615
|
-
*
|
1616
|
-
* req.on('error', (e) => {
|
1617
|
-
* console.error(`problem with request: ${e.message}`);
|
1618
|
-
* });
|
1619
|
-
*
|
1620
|
-
* // Write data to request body
|
1621
|
-
* req.write(postData);
|
1622
|
-
* req.end();
|
1623
|
-
* ```
|
1624
|
-
*
|
1625
|
-
* In the example `req.end()` was called. With `http.request()` one
|
1626
|
-
* must always call `req.end()` to signify the end of the request -
|
1627
|
-
* even if there is no data being written to the request body.
|
1628
|
-
*
|
1629
|
-
* If any error is encountered during the request (be that with DNS resolution,
|
1630
|
-
* TCP level errors, or actual HTTP parse errors) an `'error'` event is emitted
|
1631
|
-
* on the returned request object. As with all `'error'` events, if no listeners
|
1632
|
-
* are registered the error will be thrown.
|
1633
|
-
*
|
1634
|
-
* There are a few special headers that should be noted.
|
1635
|
-
*
|
1636
|
-
* * Sending a 'Connection: keep-alive' will notify Node.js that the connection to
|
1637
|
-
* the server should be persisted until the next request.
|
1638
|
-
* * Sending a 'Content-Length' header will disable the default chunked encoding.
|
1639
|
-
* * Sending an 'Expect' header will immediately send the request headers.
|
1640
|
-
* Usually, when sending 'Expect: 100-continue', both a timeout and a listener
|
1641
|
-
* for the `'continue'` event should be set. See RFC 2616 Section 8.2.3 for more
|
1642
|
-
* information.
|
1643
|
-
* * Sending an Authorization header will override using the `auth` option
|
1644
|
-
* to compute basic authentication.
|
1645
|
-
*
|
1646
|
-
* Example using a `URL` as `options`:
|
1647
|
-
*
|
1648
|
-
* ```js
|
1649
|
-
* const options = new URL('http://abc:xyz@example.com');
|
1650
|
-
*
|
1651
|
-
* const req = http.request(options, (res) => {
|
1652
|
-
* // ...
|
1653
|
-
* });
|
1654
|
-
* ```
|
1655
|
-
*
|
1656
|
-
* In a successful request, the following events will be emitted in the following
|
1657
|
-
* order:
|
1658
|
-
*
|
1659
|
-
* * `'socket'`
|
1660
|
-
* * `'response'`
|
1661
|
-
* * `'data'` any number of times, on the `res` object
|
1662
|
-
* (`'data'` will not be emitted at all if the response body is empty, for
|
1663
|
-
* instance, in most redirects)
|
1664
|
-
* * `'end'` on the `res` object
|
1665
|
-
* * `'close'`
|
1666
|
-
*
|
1667
|
-
* In the case of a connection error, the following events will be emitted:
|
1668
|
-
*
|
1669
|
-
* * `'socket'`
|
1670
|
-
* * `'error'`
|
1671
|
-
* * `'close'`
|
1672
|
-
*
|
1673
|
-
* In the case of a premature connection close before the response is received,
|
1674
|
-
* the following events will be emitted in the following order:
|
1675
|
-
*
|
1676
|
-
* * `'socket'`
|
1677
|
-
* * `'error'` with an error with message `'Error: socket hang up'` and code `'ECONNRESET'`
|
1678
|
-
* * `'close'`
|
1679
|
-
*
|
1680
|
-
* In the case of a premature connection close after the response is received,
|
1681
|
-
* the following events will be emitted in the following order:
|
1682
|
-
*
|
1683
|
-
* * `'socket'`
|
1684
|
-
* * `'response'`
|
1685
|
-
* * `'data'` any number of times, on the `res` object
|
1686
|
-
* * (connection closed here)
|
1687
|
-
* * `'aborted'` on the `res` object
|
1688
|
-
* * `'close'`
|
1689
|
-
* * `'error'` on the `res` object with an error with message `'Error: aborted'` and code `'ECONNRESET'`
|
1690
|
-
* * `'close'` on the `res` object
|
1691
|
-
*
|
1692
|
-
* If `req.destroy()` is called before a socket is assigned, the following
|
1693
|
-
* events will be emitted in the following order:
|
1694
|
-
*
|
1695
|
-
* * (`req.destroy()` called here)
|
1696
|
-
* * `'error'` with an error with message `'Error: socket hang up'` and code `'ECONNRESET'`, or the error with which `req.destroy()` was called
|
1697
|
-
* * `'close'`
|
1698
|
-
*
|
1699
|
-
* If `req.destroy()` is called before the connection succeeds, the following
|
1700
|
-
* events will be emitted in the following order:
|
1701
|
-
*
|
1702
|
-
* * `'socket'`
|
1703
|
-
* * (`req.destroy()` called here)
|
1704
|
-
* * `'error'` with an error with message `'Error: socket hang up'` and code `'ECONNRESET'`, or the error with which `req.destroy()` was called
|
1705
|
-
* * `'close'`
|
1706
|
-
*
|
1707
|
-
* If `req.destroy()` is called after the response is received, the following
|
1708
|
-
* events will be emitted in the following order:
|
1709
|
-
*
|
1710
|
-
* * `'socket'`
|
1711
|
-
* * `'response'`
|
1712
|
-
* * `'data'` any number of times, on the `res` object
|
1713
|
-
* * (`req.destroy()` called here)
|
1714
|
-
* * `'aborted'` on the `res` object
|
1715
|
-
* * `'close'`
|
1716
|
-
* * `'error'` on the `res` object with an error with message `'Error: aborted'` and code `'ECONNRESET'`, or the error with which `req.destroy()` was called
|
1717
|
-
* * `'close'` on the `res` object
|
1718
|
-
*
|
1719
|
-
* If `req.abort()` is called before a socket is assigned, the following
|
1720
|
-
* events will be emitted in the following order:
|
1721
|
-
*
|
1722
|
-
* * (`req.abort()` called here)
|
1723
|
-
* * `'abort'`
|
1724
|
-
* * `'close'`
|
1725
|
-
*
|
1726
|
-
* If `req.abort()` is called before the connection succeeds, the following
|
1727
|
-
* events will be emitted in the following order:
|
1728
|
-
*
|
1729
|
-
* * `'socket'`
|
1730
|
-
* * (`req.abort()` called here)
|
1731
|
-
* * `'abort'`
|
1732
|
-
* * `'error'` with an error with message `'Error: socket hang up'` and code `'ECONNRESET'`
|
1733
|
-
* * `'close'`
|
1734
|
-
*
|
1735
|
-
* If `req.abort()` is called after the response is received, the following
|
1736
|
-
* events will be emitted in the following order:
|
1737
|
-
*
|
1738
|
-
* * `'socket'`
|
1739
|
-
* * `'response'`
|
1740
|
-
* * `'data'` any number of times, on the `res` object
|
1741
|
-
* * (`req.abort()` called here)
|
1742
|
-
* * `'abort'`
|
1743
|
-
* * `'aborted'` on the `res` object
|
1744
|
-
* * `'error'` on the `res` object with an error with message `'Error: aborted'` and code `'ECONNRESET'`.
|
1745
|
-
* * `'close'`
|
1746
|
-
* * `'close'` on the `res` object
|
1747
|
-
*
|
1748
|
-
* Setting the `timeout` option or using the `setTimeout()` function will
|
1749
|
-
* not abort the request or do anything besides add a `'timeout'` event.
|
1750
|
-
*
|
1751
|
-
* Passing an `AbortSignal` and then calling `abort()` on the corresponding `AbortController` will behave the same way as calling `.destroy()` on the
|
1752
|
-
* request. Specifically, the `'error'` event will be emitted with an error with
|
1753
|
-
* the message `'AbortError: The operation was aborted'`, the code `'ABORT_ERR'` and the `cause`, if one was provided.
|
1754
|
-
* @since v0.3.6
|
1755
|
-
*/
|
1756
|
-
function request(options: RequestOptions | string | URL, callback?: (res: IncomingMessage) => void): ClientRequest;
|
1757
|
-
function request(
|
1758
|
-
url: string | URL,
|
1759
|
-
options: RequestOptions,
|
1760
|
-
callback?: (res: IncomingMessage) => void,
|
1761
|
-
): ClientRequest;
|
1762
|
-
/**
|
1763
|
-
* Since most requests are GET requests without bodies, Node.js provides this
|
1764
|
-
* convenience method. The only difference between this method and {@link request} is that it sets the method to GET by default and calls `req.end()` automatically. The callback must take care to
|
1765
|
-
* consume the response
|
1766
|
-
* data for reasons stated in {@link ClientRequest} section.
|
1767
|
-
*
|
1768
|
-
* The `callback` is invoked with a single argument that is an instance of {@link IncomingMessage}.
|
1769
|
-
*
|
1770
|
-
* JSON fetching example:
|
1771
|
-
*
|
1772
|
-
* ```js
|
1773
|
-
* http.get('http://localhost:8000/', (res) => {
|
1774
|
-
* const { statusCode } = res;
|
1775
|
-
* const contentType = res.headers['content-type'];
|
1776
|
-
*
|
1777
|
-
* let error;
|
1778
|
-
* // Any 2xx status code signals a successful response but
|
1779
|
-
* // here we're only checking for 200.
|
1780
|
-
* if (statusCode !== 200) {
|
1781
|
-
* error = new Error('Request Failed.\n' +
|
1782
|
-
* `Status Code: ${statusCode}`);
|
1783
|
-
* } else if (!/^application\/json/.test(contentType)) {
|
1784
|
-
* error = new Error('Invalid content-type.\n' +
|
1785
|
-
* `Expected application/json but received ${contentType}`);
|
1786
|
-
* }
|
1787
|
-
* if (error) {
|
1788
|
-
* console.error(error.message);
|
1789
|
-
* // Consume response data to free up memory
|
1790
|
-
* res.resume();
|
1791
|
-
* return;
|
1792
|
-
* }
|
1793
|
-
*
|
1794
|
-
* res.setEncoding('utf8');
|
1795
|
-
* let rawData = '';
|
1796
|
-
* res.on('data', (chunk) => { rawData += chunk; });
|
1797
|
-
* res.on('end', () => {
|
1798
|
-
* try {
|
1799
|
-
* const parsedData = JSON.parse(rawData);
|
1800
|
-
* console.log(parsedData);
|
1801
|
-
* } catch (e) {
|
1802
|
-
* console.error(e.message);
|
1803
|
-
* }
|
1804
|
-
* });
|
1805
|
-
* }).on('error', (e) => {
|
1806
|
-
* console.error(`Got error: ${e.message}`);
|
1807
|
-
* });
|
1808
|
-
*
|
1809
|
-
* // Create a local server to receive data from
|
1810
|
-
* const server = http.createServer((req, res) => {
|
1811
|
-
* res.writeHead(200, { 'Content-Type': 'application/json' });
|
1812
|
-
* res.end(JSON.stringify({
|
1813
|
-
* data: 'Hello World!',
|
1814
|
-
* }));
|
1815
|
-
* });
|
1816
|
-
*
|
1817
|
-
* server.listen(8000);
|
1818
|
-
* ```
|
1819
|
-
* @since v0.3.6
|
1820
|
-
* @param options Accepts the same `options` as {@link request}, with the method set to GET by default.
|
1821
|
-
*/
|
1822
|
-
function get(options: RequestOptions | string | URL, callback?: (res: IncomingMessage) => void): ClientRequest;
|
1823
|
-
function get(url: string | URL, options: RequestOptions, callback?: (res: IncomingMessage) => void): ClientRequest;
|
1824
|
-
/**
|
1825
|
-
* Performs the low-level validations on the provided `name` that are done when `res.setHeader(name, value)` is called.
|
1826
|
-
*
|
1827
|
-
* Passing illegal value as `name` will result in a `TypeError` being thrown,
|
1828
|
-
* identified by `code: 'ERR_INVALID_HTTP_TOKEN'`.
|
1829
|
-
*
|
1830
|
-
* It is not necessary to use this method before passing headers to an HTTP request
|
1831
|
-
* or response. The HTTP module will automatically validate such headers.
|
1832
|
-
*
|
1833
|
-
* Example:
|
1834
|
-
*
|
1835
|
-
* ```js
|
1836
|
-
* import { validateHeaderName } from 'node:http';
|
1837
|
-
*
|
1838
|
-
* try {
|
1839
|
-
* validateHeaderName('');
|
1840
|
-
* } catch (err) {
|
1841
|
-
* console.error(err instanceof TypeError); // --> true
|
1842
|
-
* console.error(err.code); // --> 'ERR_INVALID_HTTP_TOKEN'
|
1843
|
-
* console.error(err.message); // --> 'Header name must be a valid HTTP token [""]'
|
1844
|
-
* }
|
1845
|
-
* ```
|
1846
|
-
* @since v14.3.0
|
1847
|
-
* @param [label='Header name'] Label for error message.
|
1848
|
-
*/
|
1849
|
-
function validateHeaderName(name: string): void;
|
1850
|
-
/**
|
1851
|
-
* Performs the low-level validations on the provided `value` that are done when `res.setHeader(name, value)` is called.
|
1852
|
-
*
|
1853
|
-
* Passing illegal value as `value` will result in a `TypeError` being thrown.
|
1854
|
-
*
|
1855
|
-
* * Undefined value error is identified by `code: 'ERR_HTTP_INVALID_HEADER_VALUE'`.
|
1856
|
-
* * Invalid value character error is identified by `code: 'ERR_INVALID_CHAR'`.
|
1857
|
-
*
|
1858
|
-
* It is not necessary to use this method before passing headers to an HTTP request
|
1859
|
-
* or response. The HTTP module will automatically validate such headers.
|
1860
|
-
*
|
1861
|
-
* Examples:
|
1862
|
-
*
|
1863
|
-
* ```js
|
1864
|
-
* import { validateHeaderValue } from 'node:http';
|
1865
|
-
*
|
1866
|
-
* try {
|
1867
|
-
* validateHeaderValue('x-my-header', undefined);
|
1868
|
-
* } catch (err) {
|
1869
|
-
* console.error(err instanceof TypeError); // --> true
|
1870
|
-
* console.error(err.code === 'ERR_HTTP_INVALID_HEADER_VALUE'); // --> true
|
1871
|
-
* console.error(err.message); // --> 'Invalid value "undefined" for header "x-my-header"'
|
1872
|
-
* }
|
1873
|
-
*
|
1874
|
-
* try {
|
1875
|
-
* validateHeaderValue('x-my-header', 'oʊmɪɡə');
|
1876
|
-
* } catch (err) {
|
1877
|
-
* console.error(err instanceof TypeError); // --> true
|
1878
|
-
* console.error(err.code === 'ERR_INVALID_CHAR'); // --> true
|
1879
|
-
* console.error(err.message); // --> 'Invalid character in header content ["x-my-header"]'
|
1880
|
-
* }
|
1881
|
-
* ```
|
1882
|
-
* @since v14.3.0
|
1883
|
-
* @param name Header name
|
1884
|
-
* @param value Header value
|
1885
|
-
*/
|
1886
|
-
function validateHeaderValue(name: string, value: string): void;
|
1887
|
-
/**
|
1888
|
-
* Set the maximum number of idle HTTP parsers.
|
1889
|
-
* @since v18.8.0, v16.18.0
|
1890
|
-
* @param [max=1000]
|
1891
|
-
*/
|
1892
|
-
function setMaxIdleHTTPParsers(max: number): void;
|
1893
|
-
/**
|
1894
|
-
* Global instance of `Agent` which is used as the default for all HTTP client
|
1895
|
-
* requests. Diverges from a default `Agent` configuration by having `keepAlive`
|
1896
|
-
* enabled and a `timeout` of 5 seconds.
|
1897
|
-
* @since v0.5.9
|
1898
|
-
*/
|
1899
|
-
let globalAgent: Agent;
|
1900
|
-
/**
|
1901
|
-
* Read-only property specifying the maximum allowed size of HTTP headers in bytes.
|
1902
|
-
* Defaults to 16KB. Configurable using the `--max-http-header-size` CLI option.
|
1903
|
-
*/
|
1904
|
-
const maxHeaderSize: number;
|
1905
|
-
/**
|
1906
|
-
* A browser-compatible implementation of [WebSocket](https://nodejs.org/docs/latest/api/http.html#websocket).
|
1907
|
-
* @since v22.5.0
|
1908
|
-
*/
|
1909
|
-
const WebSocket: import("undici-types").WebSocket;
|
1910
|
-
/**
|
1911
|
-
* @since v22.5.0
|
1912
|
-
*/
|
1913
|
-
const CloseEvent: import("undici-types").CloseEvent;
|
1914
|
-
/**
|
1915
|
-
* @since v22.5.0
|
1916
|
-
*/
|
1917
|
-
const MessageEvent: import("undici-types").MessageEvent;
|
1918
|
-
}
|
1919
|
-
declare module "node:http" {
|
1920
|
-
export * from "http";
|
1921
|
-
}
|