├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── analysis_options.yaml ├── example └── main.dart ├── lib ├── catalog_products.dart ├── core.dart ├── orders.dart ├── payments.dart ├── src │ ├── catalog_products │ │ ├── catalog_products_api.dart │ │ └── model │ │ │ ├── product.dart │ │ │ └── product.g.dart │ ├── core │ │ ├── exception │ │ │ └── api_exception.dart │ │ ├── model │ │ │ ├── access_token.dart │ │ │ ├── access_token.g.dart │ │ │ ├── address.dart │ │ │ ├── address.g.dart │ │ │ ├── api_error.dart │ │ │ ├── api_error.g.dart │ │ │ ├── api_error_details.dart │ │ │ ├── api_error_details.g.dart │ │ │ ├── authorization_error.dart │ │ │ ├── authorization_error.g.dart │ │ │ ├── link_description.dart │ │ │ ├── link_description.g.dart │ │ │ ├── money.dart │ │ │ ├── money.g.dart │ │ │ ├── name.dart │ │ │ ├── name.g.dart │ │ │ ├── patch.dart │ │ │ ├── patch.g.dart │ │ │ ├── payee.dart │ │ │ ├── payee.g.dart │ │ │ ├── payment.dart │ │ │ ├── payment.g.dart │ │ │ ├── phone.dart │ │ │ ├── phone.g.dart │ │ │ ├── platform_fee.dart │ │ │ ├── platform_fee.g.dart │ │ │ ├── prefer.dart │ │ │ ├── reason.dart │ │ │ ├── reason.g.dart │ │ │ ├── refresh_token.dart │ │ │ ├── refresh_token.g.dart │ │ │ ├── shipping_detail.dart │ │ │ └── shipping_detail.g.dart │ │ ├── paypal_environment.dart │ │ └── paypal_http_client.dart │ ├── orders │ │ ├── model │ │ │ ├── amount.dart │ │ │ ├── amount.g.dart │ │ │ ├── item.dart │ │ │ ├── item.g.dart │ │ │ ├── order.dart │ │ │ ├── order.g.dart │ │ │ ├── payer.dart │ │ │ ├── payer.g.dart │ │ │ ├── payment.dart │ │ │ ├── payment.g.dart │ │ │ ├── purchase_unit.dart │ │ │ └── purchase_unit.g.dart │ │ └── orders_api.dart │ ├── payments │ │ ├── model │ │ │ ├── authorization.dart │ │ │ ├── authorization.g.dart │ │ │ ├── capture.dart │ │ │ ├── capture.g.dart │ │ │ ├── refund.dart │ │ │ ├── refund.g.dart │ │ │ ├── seller.dart │ │ │ └── seller.g.dart │ │ └── payments_api.dart │ ├── subscriptions │ │ ├── model │ │ │ ├── billing_cycle.dart │ │ │ ├── billing_cycle.g.dart │ │ │ ├── card.dart │ │ │ ├── card.g.dart │ │ │ ├── frequency.dart │ │ │ ├── frequency.g.dart │ │ │ ├── payment.dart │ │ │ ├── payment.g.dart │ │ │ ├── plan.dart │ │ │ ├── plan.g.dart │ │ │ ├── pricing.dart │ │ │ ├── pricing.g.dart │ │ │ ├── subscription.dart │ │ │ ├── subscription.g.dart │ │ │ ├── transaction.dart │ │ │ └── transaction.g.dart │ │ └── subscriptions_api.dart │ └── webhooks │ │ ├── model │ │ ├── event.dart │ │ ├── event.g.dart │ │ ├── verify_webhook_signature.dart │ │ ├── verify_webhook_signature.g.dart │ │ ├── webhook.dart │ │ └── webhook.g.dart │ │ └── webhooks_api.dart ├── subscriptions.dart └── webhooks.dart ├── pubspec.yaml └── test ├── catalog_products_test.dart ├── core_test.dart ├── helper ├── mock_http_client.dart └── util.dart ├── json ├── catalog_products │ ├── create_product.json │ ├── list_products.json │ └── show_products_details.json ├── orders │ ├── create_order.json │ └── show_order_details.json ├── payments │ ├── authorized_payment_details.json │ ├── capture.json │ ├── reauthorize_payment.json │ ├── refund.json │ └── show_captured_payment_details.json ├── subscriptions │ ├── create_plan.json │ ├── create_subscription.json │ ├── list_plans.json │ ├── list_transactions.json │ ├── revise_subscription.json │ ├── show_plan_details.json │ └── show_subscription_details.json └── webhooks │ ├── create_webhook.json │ ├── list_available_events.json │ ├── list_event_notifications.json │ ├── list_event_types_for_webhook.json │ ├── list_webhooks.json │ ├── resend_event_notification.json │ ├── show_deleted_webhook_details.json │ ├── show_event_notification_details.json │ ├── show_webhook_details.json │ └── simulate_event.json ├── orders_test.dart ├── payments_test.dart ├── subscriptions_test.dart └── webhooks_test.dart /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/underdoggit2/paypal-sdk/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/underdoggit2/paypal-sdk/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/underdoggit2/paypal-sdk/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/underdoggit2/paypal-sdk/HEAD/README.md -------------------------------------------------------------------------------- /analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/underdoggit2/paypal-sdk/HEAD/analysis_options.yaml -------------------------------------------------------------------------------- /example/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/underdoggit2/paypal-sdk/HEAD/example/main.dart -------------------------------------------------------------------------------- /lib/catalog_products.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/underdoggit2/paypal-sdk/HEAD/lib/catalog_products.dart -------------------------------------------------------------------------------- /lib/core.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/underdoggit2/paypal-sdk/HEAD/lib/core.dart -------------------------------------------------------------------------------- /lib/orders.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/underdoggit2/paypal-sdk/HEAD/lib/orders.dart -------------------------------------------------------------------------------- /lib/payments.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/underdoggit2/paypal-sdk/HEAD/lib/payments.dart -------------------------------------------------------------------------------- /lib/src/catalog_products/catalog_products_api.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/underdoggit2/paypal-sdk/HEAD/lib/src/catalog_products/catalog_products_api.dart -------------------------------------------------------------------------------- /lib/src/catalog_products/model/product.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/underdoggit2/paypal-sdk/HEAD/lib/src/catalog_products/model/product.dart -------------------------------------------------------------------------------- /lib/src/catalog_products/model/product.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/underdoggit2/paypal-sdk/HEAD/lib/src/catalog_products/model/product.g.dart -------------------------------------------------------------------------------- /lib/src/core/exception/api_exception.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/underdoggit2/paypal-sdk/HEAD/lib/src/core/exception/api_exception.dart -------------------------------------------------------------------------------- /lib/src/core/model/access_token.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/underdoggit2/paypal-sdk/HEAD/lib/src/core/model/access_token.dart -------------------------------------------------------------------------------- /lib/src/core/model/access_token.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/underdoggit2/paypal-sdk/HEAD/lib/src/core/model/access_token.g.dart -------------------------------------------------------------------------------- /lib/src/core/model/address.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/underdoggit2/paypal-sdk/HEAD/lib/src/core/model/address.dart -------------------------------------------------------------------------------- /lib/src/core/model/address.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/underdoggit2/paypal-sdk/HEAD/lib/src/core/model/address.g.dart -------------------------------------------------------------------------------- /lib/src/core/model/api_error.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/underdoggit2/paypal-sdk/HEAD/lib/src/core/model/api_error.dart -------------------------------------------------------------------------------- /lib/src/core/model/api_error.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/underdoggit2/paypal-sdk/HEAD/lib/src/core/model/api_error.g.dart -------------------------------------------------------------------------------- /lib/src/core/model/api_error_details.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/underdoggit2/paypal-sdk/HEAD/lib/src/core/model/api_error_details.dart -------------------------------------------------------------------------------- /lib/src/core/model/api_error_details.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/underdoggit2/paypal-sdk/HEAD/lib/src/core/model/api_error_details.g.dart -------------------------------------------------------------------------------- /lib/src/core/model/authorization_error.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/underdoggit2/paypal-sdk/HEAD/lib/src/core/model/authorization_error.dart -------------------------------------------------------------------------------- /lib/src/core/model/authorization_error.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/underdoggit2/paypal-sdk/HEAD/lib/src/core/model/authorization_error.g.dart -------------------------------------------------------------------------------- /lib/src/core/model/link_description.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/underdoggit2/paypal-sdk/HEAD/lib/src/core/model/link_description.dart -------------------------------------------------------------------------------- /lib/src/core/model/link_description.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/underdoggit2/paypal-sdk/HEAD/lib/src/core/model/link_description.g.dart -------------------------------------------------------------------------------- /lib/src/core/model/money.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/underdoggit2/paypal-sdk/HEAD/lib/src/core/model/money.dart -------------------------------------------------------------------------------- /lib/src/core/model/money.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/underdoggit2/paypal-sdk/HEAD/lib/src/core/model/money.g.dart -------------------------------------------------------------------------------- /lib/src/core/model/name.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/underdoggit2/paypal-sdk/HEAD/lib/src/core/model/name.dart -------------------------------------------------------------------------------- /lib/src/core/model/name.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/underdoggit2/paypal-sdk/HEAD/lib/src/core/model/name.g.dart -------------------------------------------------------------------------------- /lib/src/core/model/patch.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/underdoggit2/paypal-sdk/HEAD/lib/src/core/model/patch.dart -------------------------------------------------------------------------------- /lib/src/core/model/patch.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/underdoggit2/paypal-sdk/HEAD/lib/src/core/model/patch.g.dart -------------------------------------------------------------------------------- /lib/src/core/model/payee.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/underdoggit2/paypal-sdk/HEAD/lib/src/core/model/payee.dart -------------------------------------------------------------------------------- /lib/src/core/model/payee.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/underdoggit2/paypal-sdk/HEAD/lib/src/core/model/payee.g.dart -------------------------------------------------------------------------------- /lib/src/core/model/payment.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/underdoggit2/paypal-sdk/HEAD/lib/src/core/model/payment.dart -------------------------------------------------------------------------------- /lib/src/core/model/payment.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/underdoggit2/paypal-sdk/HEAD/lib/src/core/model/payment.g.dart -------------------------------------------------------------------------------- /lib/src/core/model/phone.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/underdoggit2/paypal-sdk/HEAD/lib/src/core/model/phone.dart -------------------------------------------------------------------------------- /lib/src/core/model/phone.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/underdoggit2/paypal-sdk/HEAD/lib/src/core/model/phone.g.dart -------------------------------------------------------------------------------- /lib/src/core/model/platform_fee.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/underdoggit2/paypal-sdk/HEAD/lib/src/core/model/platform_fee.dart -------------------------------------------------------------------------------- /lib/src/core/model/platform_fee.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/underdoggit2/paypal-sdk/HEAD/lib/src/core/model/platform_fee.g.dart -------------------------------------------------------------------------------- /lib/src/core/model/prefer.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/underdoggit2/paypal-sdk/HEAD/lib/src/core/model/prefer.dart -------------------------------------------------------------------------------- /lib/src/core/model/reason.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/underdoggit2/paypal-sdk/HEAD/lib/src/core/model/reason.dart -------------------------------------------------------------------------------- /lib/src/core/model/reason.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/underdoggit2/paypal-sdk/HEAD/lib/src/core/model/reason.g.dart -------------------------------------------------------------------------------- /lib/src/core/model/refresh_token.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/underdoggit2/paypal-sdk/HEAD/lib/src/core/model/refresh_token.dart -------------------------------------------------------------------------------- /lib/src/core/model/refresh_token.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/underdoggit2/paypal-sdk/HEAD/lib/src/core/model/refresh_token.g.dart -------------------------------------------------------------------------------- /lib/src/core/model/shipping_detail.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/underdoggit2/paypal-sdk/HEAD/lib/src/core/model/shipping_detail.dart -------------------------------------------------------------------------------- /lib/src/core/model/shipping_detail.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/underdoggit2/paypal-sdk/HEAD/lib/src/core/model/shipping_detail.g.dart -------------------------------------------------------------------------------- /lib/src/core/paypal_environment.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/underdoggit2/paypal-sdk/HEAD/lib/src/core/paypal_environment.dart -------------------------------------------------------------------------------- /lib/src/core/paypal_http_client.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/underdoggit2/paypal-sdk/HEAD/lib/src/core/paypal_http_client.dart -------------------------------------------------------------------------------- /lib/src/orders/model/amount.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/underdoggit2/paypal-sdk/HEAD/lib/src/orders/model/amount.dart -------------------------------------------------------------------------------- /lib/src/orders/model/amount.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/underdoggit2/paypal-sdk/HEAD/lib/src/orders/model/amount.g.dart -------------------------------------------------------------------------------- /lib/src/orders/model/item.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/underdoggit2/paypal-sdk/HEAD/lib/src/orders/model/item.dart -------------------------------------------------------------------------------- /lib/src/orders/model/item.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/underdoggit2/paypal-sdk/HEAD/lib/src/orders/model/item.g.dart -------------------------------------------------------------------------------- /lib/src/orders/model/order.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/underdoggit2/paypal-sdk/HEAD/lib/src/orders/model/order.dart -------------------------------------------------------------------------------- /lib/src/orders/model/order.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/underdoggit2/paypal-sdk/HEAD/lib/src/orders/model/order.g.dart -------------------------------------------------------------------------------- /lib/src/orders/model/payer.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/underdoggit2/paypal-sdk/HEAD/lib/src/orders/model/payer.dart -------------------------------------------------------------------------------- /lib/src/orders/model/payer.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/underdoggit2/paypal-sdk/HEAD/lib/src/orders/model/payer.g.dart -------------------------------------------------------------------------------- /lib/src/orders/model/payment.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/underdoggit2/paypal-sdk/HEAD/lib/src/orders/model/payment.dart -------------------------------------------------------------------------------- /lib/src/orders/model/payment.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/underdoggit2/paypal-sdk/HEAD/lib/src/orders/model/payment.g.dart -------------------------------------------------------------------------------- /lib/src/orders/model/purchase_unit.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/underdoggit2/paypal-sdk/HEAD/lib/src/orders/model/purchase_unit.dart -------------------------------------------------------------------------------- /lib/src/orders/model/purchase_unit.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/underdoggit2/paypal-sdk/HEAD/lib/src/orders/model/purchase_unit.g.dart -------------------------------------------------------------------------------- /lib/src/orders/orders_api.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/underdoggit2/paypal-sdk/HEAD/lib/src/orders/orders_api.dart -------------------------------------------------------------------------------- /lib/src/payments/model/authorization.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/underdoggit2/paypal-sdk/HEAD/lib/src/payments/model/authorization.dart -------------------------------------------------------------------------------- /lib/src/payments/model/authorization.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/underdoggit2/paypal-sdk/HEAD/lib/src/payments/model/authorization.g.dart -------------------------------------------------------------------------------- /lib/src/payments/model/capture.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/underdoggit2/paypal-sdk/HEAD/lib/src/payments/model/capture.dart -------------------------------------------------------------------------------- /lib/src/payments/model/capture.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/underdoggit2/paypal-sdk/HEAD/lib/src/payments/model/capture.g.dart -------------------------------------------------------------------------------- /lib/src/payments/model/refund.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/underdoggit2/paypal-sdk/HEAD/lib/src/payments/model/refund.dart -------------------------------------------------------------------------------- /lib/src/payments/model/refund.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/underdoggit2/paypal-sdk/HEAD/lib/src/payments/model/refund.g.dart -------------------------------------------------------------------------------- /lib/src/payments/model/seller.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/underdoggit2/paypal-sdk/HEAD/lib/src/payments/model/seller.dart -------------------------------------------------------------------------------- /lib/src/payments/model/seller.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/underdoggit2/paypal-sdk/HEAD/lib/src/payments/model/seller.g.dart -------------------------------------------------------------------------------- /lib/src/payments/payments_api.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/underdoggit2/paypal-sdk/HEAD/lib/src/payments/payments_api.dart -------------------------------------------------------------------------------- /lib/src/subscriptions/model/billing_cycle.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/underdoggit2/paypal-sdk/HEAD/lib/src/subscriptions/model/billing_cycle.dart -------------------------------------------------------------------------------- /lib/src/subscriptions/model/billing_cycle.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/underdoggit2/paypal-sdk/HEAD/lib/src/subscriptions/model/billing_cycle.g.dart -------------------------------------------------------------------------------- /lib/src/subscriptions/model/card.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/underdoggit2/paypal-sdk/HEAD/lib/src/subscriptions/model/card.dart -------------------------------------------------------------------------------- /lib/src/subscriptions/model/card.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/underdoggit2/paypal-sdk/HEAD/lib/src/subscriptions/model/card.g.dart -------------------------------------------------------------------------------- /lib/src/subscriptions/model/frequency.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/underdoggit2/paypal-sdk/HEAD/lib/src/subscriptions/model/frequency.dart -------------------------------------------------------------------------------- /lib/src/subscriptions/model/frequency.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/underdoggit2/paypal-sdk/HEAD/lib/src/subscriptions/model/frequency.g.dart -------------------------------------------------------------------------------- /lib/src/subscriptions/model/payment.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/underdoggit2/paypal-sdk/HEAD/lib/src/subscriptions/model/payment.dart -------------------------------------------------------------------------------- /lib/src/subscriptions/model/payment.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/underdoggit2/paypal-sdk/HEAD/lib/src/subscriptions/model/payment.g.dart -------------------------------------------------------------------------------- /lib/src/subscriptions/model/plan.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/underdoggit2/paypal-sdk/HEAD/lib/src/subscriptions/model/plan.dart -------------------------------------------------------------------------------- /lib/src/subscriptions/model/plan.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/underdoggit2/paypal-sdk/HEAD/lib/src/subscriptions/model/plan.g.dart -------------------------------------------------------------------------------- /lib/src/subscriptions/model/pricing.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/underdoggit2/paypal-sdk/HEAD/lib/src/subscriptions/model/pricing.dart -------------------------------------------------------------------------------- /lib/src/subscriptions/model/pricing.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/underdoggit2/paypal-sdk/HEAD/lib/src/subscriptions/model/pricing.g.dart -------------------------------------------------------------------------------- /lib/src/subscriptions/model/subscription.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/underdoggit2/paypal-sdk/HEAD/lib/src/subscriptions/model/subscription.dart -------------------------------------------------------------------------------- /lib/src/subscriptions/model/subscription.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/underdoggit2/paypal-sdk/HEAD/lib/src/subscriptions/model/subscription.g.dart -------------------------------------------------------------------------------- /lib/src/subscriptions/model/transaction.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/underdoggit2/paypal-sdk/HEAD/lib/src/subscriptions/model/transaction.dart -------------------------------------------------------------------------------- /lib/src/subscriptions/model/transaction.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/underdoggit2/paypal-sdk/HEAD/lib/src/subscriptions/model/transaction.g.dart -------------------------------------------------------------------------------- /lib/src/subscriptions/subscriptions_api.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/underdoggit2/paypal-sdk/HEAD/lib/src/subscriptions/subscriptions_api.dart -------------------------------------------------------------------------------- /lib/src/webhooks/model/event.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/underdoggit2/paypal-sdk/HEAD/lib/src/webhooks/model/event.dart -------------------------------------------------------------------------------- /lib/src/webhooks/model/event.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/underdoggit2/paypal-sdk/HEAD/lib/src/webhooks/model/event.g.dart -------------------------------------------------------------------------------- /lib/src/webhooks/model/verify_webhook_signature.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/underdoggit2/paypal-sdk/HEAD/lib/src/webhooks/model/verify_webhook_signature.dart -------------------------------------------------------------------------------- /lib/src/webhooks/model/verify_webhook_signature.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/underdoggit2/paypal-sdk/HEAD/lib/src/webhooks/model/verify_webhook_signature.g.dart -------------------------------------------------------------------------------- /lib/src/webhooks/model/webhook.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/underdoggit2/paypal-sdk/HEAD/lib/src/webhooks/model/webhook.dart -------------------------------------------------------------------------------- /lib/src/webhooks/model/webhook.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/underdoggit2/paypal-sdk/HEAD/lib/src/webhooks/model/webhook.g.dart -------------------------------------------------------------------------------- /lib/src/webhooks/webhooks_api.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/underdoggit2/paypal-sdk/HEAD/lib/src/webhooks/webhooks_api.dart -------------------------------------------------------------------------------- /lib/subscriptions.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/underdoggit2/paypal-sdk/HEAD/lib/subscriptions.dart -------------------------------------------------------------------------------- /lib/webhooks.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/underdoggit2/paypal-sdk/HEAD/lib/webhooks.dart -------------------------------------------------------------------------------- /pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/underdoggit2/paypal-sdk/HEAD/pubspec.yaml -------------------------------------------------------------------------------- /test/catalog_products_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/underdoggit2/paypal-sdk/HEAD/test/catalog_products_test.dart -------------------------------------------------------------------------------- /test/core_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/underdoggit2/paypal-sdk/HEAD/test/core_test.dart -------------------------------------------------------------------------------- /test/helper/mock_http_client.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/underdoggit2/paypal-sdk/HEAD/test/helper/mock_http_client.dart -------------------------------------------------------------------------------- /test/helper/util.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/underdoggit2/paypal-sdk/HEAD/test/helper/util.dart -------------------------------------------------------------------------------- /test/json/catalog_products/create_product.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/underdoggit2/paypal-sdk/HEAD/test/json/catalog_products/create_product.json -------------------------------------------------------------------------------- /test/json/catalog_products/list_products.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/underdoggit2/paypal-sdk/HEAD/test/json/catalog_products/list_products.json -------------------------------------------------------------------------------- /test/json/catalog_products/show_products_details.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/underdoggit2/paypal-sdk/HEAD/test/json/catalog_products/show_products_details.json -------------------------------------------------------------------------------- /test/json/orders/create_order.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/underdoggit2/paypal-sdk/HEAD/test/json/orders/create_order.json -------------------------------------------------------------------------------- /test/json/orders/show_order_details.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/underdoggit2/paypal-sdk/HEAD/test/json/orders/show_order_details.json -------------------------------------------------------------------------------- /test/json/payments/authorized_payment_details.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/underdoggit2/paypal-sdk/HEAD/test/json/payments/authorized_payment_details.json -------------------------------------------------------------------------------- /test/json/payments/capture.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/underdoggit2/paypal-sdk/HEAD/test/json/payments/capture.json -------------------------------------------------------------------------------- /test/json/payments/reauthorize_payment.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/underdoggit2/paypal-sdk/HEAD/test/json/payments/reauthorize_payment.json -------------------------------------------------------------------------------- /test/json/payments/refund.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/underdoggit2/paypal-sdk/HEAD/test/json/payments/refund.json -------------------------------------------------------------------------------- /test/json/payments/show_captured_payment_details.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/underdoggit2/paypal-sdk/HEAD/test/json/payments/show_captured_payment_details.json -------------------------------------------------------------------------------- /test/json/subscriptions/create_plan.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/underdoggit2/paypal-sdk/HEAD/test/json/subscriptions/create_plan.json -------------------------------------------------------------------------------- /test/json/subscriptions/create_subscription.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/underdoggit2/paypal-sdk/HEAD/test/json/subscriptions/create_subscription.json -------------------------------------------------------------------------------- /test/json/subscriptions/list_plans.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/underdoggit2/paypal-sdk/HEAD/test/json/subscriptions/list_plans.json -------------------------------------------------------------------------------- /test/json/subscriptions/list_transactions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/underdoggit2/paypal-sdk/HEAD/test/json/subscriptions/list_transactions.json -------------------------------------------------------------------------------- /test/json/subscriptions/revise_subscription.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/underdoggit2/paypal-sdk/HEAD/test/json/subscriptions/revise_subscription.json -------------------------------------------------------------------------------- /test/json/subscriptions/show_plan_details.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/underdoggit2/paypal-sdk/HEAD/test/json/subscriptions/show_plan_details.json -------------------------------------------------------------------------------- /test/json/subscriptions/show_subscription_details.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/underdoggit2/paypal-sdk/HEAD/test/json/subscriptions/show_subscription_details.json -------------------------------------------------------------------------------- /test/json/webhooks/create_webhook.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/underdoggit2/paypal-sdk/HEAD/test/json/webhooks/create_webhook.json -------------------------------------------------------------------------------- /test/json/webhooks/list_available_events.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/underdoggit2/paypal-sdk/HEAD/test/json/webhooks/list_available_events.json -------------------------------------------------------------------------------- /test/json/webhooks/list_event_notifications.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/underdoggit2/paypal-sdk/HEAD/test/json/webhooks/list_event_notifications.json -------------------------------------------------------------------------------- /test/json/webhooks/list_event_types_for_webhook.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/underdoggit2/paypal-sdk/HEAD/test/json/webhooks/list_event_types_for_webhook.json -------------------------------------------------------------------------------- /test/json/webhooks/list_webhooks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/underdoggit2/paypal-sdk/HEAD/test/json/webhooks/list_webhooks.json -------------------------------------------------------------------------------- /test/json/webhooks/resend_event_notification.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/underdoggit2/paypal-sdk/HEAD/test/json/webhooks/resend_event_notification.json -------------------------------------------------------------------------------- /test/json/webhooks/show_deleted_webhook_details.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/underdoggit2/paypal-sdk/HEAD/test/json/webhooks/show_deleted_webhook_details.json -------------------------------------------------------------------------------- /test/json/webhooks/show_event_notification_details.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/underdoggit2/paypal-sdk/HEAD/test/json/webhooks/show_event_notification_details.json -------------------------------------------------------------------------------- /test/json/webhooks/show_webhook_details.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/underdoggit2/paypal-sdk/HEAD/test/json/webhooks/show_webhook_details.json -------------------------------------------------------------------------------- /test/json/webhooks/simulate_event.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/underdoggit2/paypal-sdk/HEAD/test/json/webhooks/simulate_event.json -------------------------------------------------------------------------------- /test/orders_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/underdoggit2/paypal-sdk/HEAD/test/orders_test.dart -------------------------------------------------------------------------------- /test/payments_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/underdoggit2/paypal-sdk/HEAD/test/payments_test.dart -------------------------------------------------------------------------------- /test/subscriptions_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/underdoggit2/paypal-sdk/HEAD/test/subscriptions_test.dart -------------------------------------------------------------------------------- /test/webhooks_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/underdoggit2/paypal-sdk/HEAD/test/webhooks_test.dart --------------------------------------------------------------------------------