├── .all-contributorsrc ├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── feature_request.md │ └── question.md ├── actions │ └── setup-flutter │ │ └── action.yaml ├── stale.yml └── workflows │ ├── publish.yml │ └── validate.yaml ├── .gitignore ├── .metadata ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── analysis_options.yaml ├── example ├── .gitignore ├── .metadata ├── README.md ├── analysis_options.yaml ├── android │ ├── .gitignore │ ├── app │ │ ├── build.gradle │ │ └── src │ │ │ ├── debug │ │ │ └── AndroidManifest.xml │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── kotlin │ │ │ │ └── com │ │ │ │ │ └── example │ │ │ │ │ └── example │ │ │ │ │ └── MainActivity.kt │ │ │ └── res │ │ │ │ ├── drawable-v21 │ │ │ │ └── launch_background.xml │ │ │ │ ├── drawable │ │ │ │ └── launch_background.xml │ │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── values-night │ │ │ │ └── styles.xml │ │ │ │ └── values │ │ │ │ └── styles.xml │ │ │ └── profile │ │ │ └── AndroidManifest.xml │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ └── gradle-wrapper.properties │ └── settings.gradle ├── ios │ ├── .gitignore │ ├── Flutter │ │ ├── AppFrameworkInfo.plist │ │ ├── Debug.xcconfig │ │ └── Release.xcconfig │ ├── Podfile │ ├── Podfile.lock │ ├── Runner.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ │ └── WorkspaceSettings.xcsettings │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── Runner.xcscheme │ ├── Runner.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ └── WorkspaceSettings.xcsettings │ └── Runner │ │ ├── AppDelegate.swift │ │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ ├── Contents.json │ │ │ ├── Icon-App-1024x1024@1x.png │ │ │ ├── Icon-App-20x20@1x.png │ │ │ ├── Icon-App-20x20@2x.png │ │ │ ├── Icon-App-20x20@3x.png │ │ │ ├── Icon-App-29x29@1x.png │ │ │ ├── Icon-App-29x29@2x.png │ │ │ ├── Icon-App-29x29@3x.png │ │ │ ├── Icon-App-40x40@1x.png │ │ │ ├── Icon-App-40x40@2x.png │ │ │ ├── Icon-App-40x40@3x.png │ │ │ ├── Icon-App-60x60@2x.png │ │ │ ├── Icon-App-60x60@3x.png │ │ │ ├── Icon-App-76x76@1x.png │ │ │ ├── Icon-App-76x76@2x.png │ │ │ └── Icon-App-83.5x83.5@2x.png │ │ └── LaunchImage.imageset │ │ │ ├── Contents.json │ │ │ ├── LaunchImage.png │ │ │ ├── LaunchImage@2x.png │ │ │ ├── LaunchImage@3x.png │ │ │ └── README.md │ │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ │ ├── Info.plist │ │ └── Runner-Bridging-Header.h ├── lib │ ├── cities.dart │ ├── common.dart │ ├── credentials.dart │ ├── main.dart │ ├── multipart_app.dart │ └── weather_app.dart ├── pubspec.yaml ├── test │ └── widget_test.dart └── web │ ├── favicon.png │ ├── icons │ ├── Icon-192.png │ └── Icon-512.png │ ├── index.html │ └── manifest.json ├── guides ├── migration_guide_0.4.0.md ├── migration_guide_1.0.0.md └── migration_guide_2.0.0.md ├── lib ├── extensions │ ├── base_request.dart │ ├── base_response_io.dart │ ├── base_response_none.dart │ ├── io_streamed_response.dart │ ├── multipart_request.dart │ ├── request.dart │ ├── response.dart │ ├── streamed_request.dart │ ├── streamed_response.dart │ ├── string.dart │ └── uri.dart ├── http │ ├── http_methods.dart │ ├── intercepted_client.dart │ └── intercepted_http.dart ├── http_interceptor.dart ├── models │ ├── http_interceptor_exception.dart │ ├── interceptor_contract.dart │ └── retry_policy.dart └── utils │ ├── query_parameters.dart │ └── utils.dart ├── pubspec.yaml └── test ├── extensions ├── base_reponse_test.dart ├── base_request_test.dart ├── request_test.dart ├── response_test.dart ├── string_test.dart └── uri_test.dart ├── http ├── http_methods_test.dart ├── intercepted_client_error_test.dart └── intercepted_client_test.dart ├── models └── retry_policy_test.dart └── utils └── utils_test.dart /.all-contributorsrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingAleCR/http_interceptor/HEAD/.all-contributorsrc -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | # These are supported funding model platforms 2 | 3 | github: [CodingAleCR] 4 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingAleCR/http_interceptor/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingAleCR/http_interceptor/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/question.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingAleCR/http_interceptor/HEAD/.github/ISSUE_TEMPLATE/question.md -------------------------------------------------------------------------------- /.github/actions/setup-flutter/action.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingAleCR/http_interceptor/HEAD/.github/actions/setup-flutter/action.yaml -------------------------------------------------------------------------------- /.github/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingAleCR/http_interceptor/HEAD/.github/stale.yml -------------------------------------------------------------------------------- /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingAleCR/http_interceptor/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.github/workflows/validate.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingAleCR/http_interceptor/HEAD/.github/workflows/validate.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingAleCR/http_interceptor/HEAD/.gitignore -------------------------------------------------------------------------------- /.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingAleCR/http_interceptor/HEAD/.metadata -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingAleCR/http_interceptor/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingAleCR/http_interceptor/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingAleCR/http_interceptor/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingAleCR/http_interceptor/HEAD/README.md -------------------------------------------------------------------------------- /analysis_options.yaml: -------------------------------------------------------------------------------- 1 | include: package:lints/recommended.yaml 2 | -------------------------------------------------------------------------------- /example/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingAleCR/http_interceptor/HEAD/example/.gitignore -------------------------------------------------------------------------------- /example/.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingAleCR/http_interceptor/HEAD/example/.metadata -------------------------------------------------------------------------------- /example/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingAleCR/http_interceptor/HEAD/example/README.md -------------------------------------------------------------------------------- /example/analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingAleCR/http_interceptor/HEAD/example/analysis_options.yaml -------------------------------------------------------------------------------- /example/android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingAleCR/http_interceptor/HEAD/example/android/.gitignore -------------------------------------------------------------------------------- /example/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingAleCR/http_interceptor/HEAD/example/android/app/build.gradle -------------------------------------------------------------------------------- /example/android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingAleCR/http_interceptor/HEAD/example/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /example/android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingAleCR/http_interceptor/HEAD/example/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /example/android/app/src/main/kotlin/com/example/example/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingAleCR/http_interceptor/HEAD/example/android/app/src/main/kotlin/com/example/example/MainActivity.kt -------------------------------------------------------------------------------- /example/android/app/src/main/res/drawable-v21/launch_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingAleCR/http_interceptor/HEAD/example/android/app/src/main/res/drawable-v21/launch_background.xml -------------------------------------------------------------------------------- /example/android/app/src/main/res/drawable/launch_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingAleCR/http_interceptor/HEAD/example/android/app/src/main/res/drawable/launch_background.xml -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingAleCR/http_interceptor/HEAD/example/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingAleCR/http_interceptor/HEAD/example/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingAleCR/http_interceptor/HEAD/example/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingAleCR/http_interceptor/HEAD/example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingAleCR/http_interceptor/HEAD/example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/values-night/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingAleCR/http_interceptor/HEAD/example/android/app/src/main/res/values-night/styles.xml -------------------------------------------------------------------------------- /example/android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingAleCR/http_interceptor/HEAD/example/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /example/android/app/src/profile/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingAleCR/http_interceptor/HEAD/example/android/app/src/profile/AndroidManifest.xml -------------------------------------------------------------------------------- /example/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingAleCR/http_interceptor/HEAD/example/android/build.gradle -------------------------------------------------------------------------------- /example/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingAleCR/http_interceptor/HEAD/example/android/gradle.properties -------------------------------------------------------------------------------- /example/android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingAleCR/http_interceptor/HEAD/example/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /example/android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingAleCR/http_interceptor/HEAD/example/android/settings.gradle -------------------------------------------------------------------------------- /example/ios/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingAleCR/http_interceptor/HEAD/example/ios/.gitignore -------------------------------------------------------------------------------- /example/ios/Flutter/AppFrameworkInfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingAleCR/http_interceptor/HEAD/example/ios/Flutter/AppFrameworkInfo.plist -------------------------------------------------------------------------------- /example/ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingAleCR/http_interceptor/HEAD/example/ios/Flutter/Debug.xcconfig -------------------------------------------------------------------------------- /example/ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingAleCR/http_interceptor/HEAD/example/ios/Flutter/Release.xcconfig -------------------------------------------------------------------------------- /example/ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingAleCR/http_interceptor/HEAD/example/ios/Podfile -------------------------------------------------------------------------------- /example/ios/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingAleCR/http_interceptor/HEAD/example/ios/Podfile.lock -------------------------------------------------------------------------------- /example/ios/Runner.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingAleCR/http_interceptor/HEAD/example/ios/Runner.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /example/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingAleCR/http_interceptor/HEAD/example/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /example/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingAleCR/http_interceptor/HEAD/example/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /example/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingAleCR/http_interceptor/HEAD/example/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /example/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingAleCR/http_interceptor/HEAD/example/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme -------------------------------------------------------------------------------- /example/ios/Runner.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingAleCR/http_interceptor/HEAD/example/ios/Runner.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /example/ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingAleCR/http_interceptor/HEAD/example/ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /example/ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingAleCR/http_interceptor/HEAD/example/ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /example/ios/Runner/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingAleCR/http_interceptor/HEAD/example/ios/Runner/AppDelegate.swift -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingAleCR/http_interceptor/HEAD/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingAleCR/http_interceptor/HEAD/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingAleCR/http_interceptor/HEAD/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingAleCR/http_interceptor/HEAD/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingAleCR/http_interceptor/HEAD/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingAleCR/http_interceptor/HEAD/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingAleCR/http_interceptor/HEAD/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingAleCR/http_interceptor/HEAD/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingAleCR/http_interceptor/HEAD/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingAleCR/http_interceptor/HEAD/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingAleCR/http_interceptor/HEAD/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingAleCR/http_interceptor/HEAD/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingAleCR/http_interceptor/HEAD/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingAleCR/http_interceptor/HEAD/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingAleCR/http_interceptor/HEAD/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingAleCR/http_interceptor/HEAD/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingAleCR/http_interceptor/HEAD/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingAleCR/http_interceptor/HEAD/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingAleCR/http_interceptor/HEAD/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingAleCR/http_interceptor/HEAD/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingAleCR/http_interceptor/HEAD/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md -------------------------------------------------------------------------------- /example/ios/Runner/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingAleCR/http_interceptor/HEAD/example/ios/Runner/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /example/ios/Runner/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingAleCR/http_interceptor/HEAD/example/ios/Runner/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /example/ios/Runner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingAleCR/http_interceptor/HEAD/example/ios/Runner/Info.plist -------------------------------------------------------------------------------- /example/ios/Runner/Runner-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | #import "GeneratedPluginRegistrant.h" 2 | -------------------------------------------------------------------------------- /example/lib/cities.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingAleCR/http_interceptor/HEAD/example/lib/cities.dart -------------------------------------------------------------------------------- /example/lib/common.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingAleCR/http_interceptor/HEAD/example/lib/common.dart -------------------------------------------------------------------------------- /example/lib/credentials.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingAleCR/http_interceptor/HEAD/example/lib/credentials.dart -------------------------------------------------------------------------------- /example/lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingAleCR/http_interceptor/HEAD/example/lib/main.dart -------------------------------------------------------------------------------- /example/lib/multipart_app.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingAleCR/http_interceptor/HEAD/example/lib/multipart_app.dart -------------------------------------------------------------------------------- /example/lib/weather_app.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingAleCR/http_interceptor/HEAD/example/lib/weather_app.dart -------------------------------------------------------------------------------- /example/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingAleCR/http_interceptor/HEAD/example/pubspec.yaml -------------------------------------------------------------------------------- /example/test/widget_test.dart: -------------------------------------------------------------------------------- 1 | void main() {} 2 | -------------------------------------------------------------------------------- /example/web/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingAleCR/http_interceptor/HEAD/example/web/favicon.png -------------------------------------------------------------------------------- /example/web/icons/Icon-192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingAleCR/http_interceptor/HEAD/example/web/icons/Icon-192.png -------------------------------------------------------------------------------- /example/web/icons/Icon-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingAleCR/http_interceptor/HEAD/example/web/icons/Icon-512.png -------------------------------------------------------------------------------- /example/web/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingAleCR/http_interceptor/HEAD/example/web/index.html -------------------------------------------------------------------------------- /example/web/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingAleCR/http_interceptor/HEAD/example/web/manifest.json -------------------------------------------------------------------------------- /guides/migration_guide_0.4.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingAleCR/http_interceptor/HEAD/guides/migration_guide_0.4.0.md -------------------------------------------------------------------------------- /guides/migration_guide_1.0.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingAleCR/http_interceptor/HEAD/guides/migration_guide_1.0.0.md -------------------------------------------------------------------------------- /guides/migration_guide_2.0.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingAleCR/http_interceptor/HEAD/guides/migration_guide_2.0.0.md -------------------------------------------------------------------------------- /lib/extensions/base_request.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingAleCR/http_interceptor/HEAD/lib/extensions/base_request.dart -------------------------------------------------------------------------------- /lib/extensions/base_response_io.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingAleCR/http_interceptor/HEAD/lib/extensions/base_response_io.dart -------------------------------------------------------------------------------- /lib/extensions/base_response_none.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingAleCR/http_interceptor/HEAD/lib/extensions/base_response_none.dart -------------------------------------------------------------------------------- /lib/extensions/io_streamed_response.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingAleCR/http_interceptor/HEAD/lib/extensions/io_streamed_response.dart -------------------------------------------------------------------------------- /lib/extensions/multipart_request.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingAleCR/http_interceptor/HEAD/lib/extensions/multipart_request.dart -------------------------------------------------------------------------------- /lib/extensions/request.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingAleCR/http_interceptor/HEAD/lib/extensions/request.dart -------------------------------------------------------------------------------- /lib/extensions/response.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingAleCR/http_interceptor/HEAD/lib/extensions/response.dart -------------------------------------------------------------------------------- /lib/extensions/streamed_request.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingAleCR/http_interceptor/HEAD/lib/extensions/streamed_request.dart -------------------------------------------------------------------------------- /lib/extensions/streamed_response.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingAleCR/http_interceptor/HEAD/lib/extensions/streamed_response.dart -------------------------------------------------------------------------------- /lib/extensions/string.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingAleCR/http_interceptor/HEAD/lib/extensions/string.dart -------------------------------------------------------------------------------- /lib/extensions/uri.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingAleCR/http_interceptor/HEAD/lib/extensions/uri.dart -------------------------------------------------------------------------------- /lib/http/http_methods.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingAleCR/http_interceptor/HEAD/lib/http/http_methods.dart -------------------------------------------------------------------------------- /lib/http/intercepted_client.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingAleCR/http_interceptor/HEAD/lib/http/intercepted_client.dart -------------------------------------------------------------------------------- /lib/http/intercepted_http.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingAleCR/http_interceptor/HEAD/lib/http/intercepted_http.dart -------------------------------------------------------------------------------- /lib/http_interceptor.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingAleCR/http_interceptor/HEAD/lib/http_interceptor.dart -------------------------------------------------------------------------------- /lib/models/http_interceptor_exception.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingAleCR/http_interceptor/HEAD/lib/models/http_interceptor_exception.dart -------------------------------------------------------------------------------- /lib/models/interceptor_contract.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingAleCR/http_interceptor/HEAD/lib/models/interceptor_contract.dart -------------------------------------------------------------------------------- /lib/models/retry_policy.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingAleCR/http_interceptor/HEAD/lib/models/retry_policy.dart -------------------------------------------------------------------------------- /lib/utils/query_parameters.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingAleCR/http_interceptor/HEAD/lib/utils/query_parameters.dart -------------------------------------------------------------------------------- /lib/utils/utils.dart: -------------------------------------------------------------------------------- 1 | export 'query_parameters.dart'; 2 | -------------------------------------------------------------------------------- /pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingAleCR/http_interceptor/HEAD/pubspec.yaml -------------------------------------------------------------------------------- /test/extensions/base_reponse_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingAleCR/http_interceptor/HEAD/test/extensions/base_reponse_test.dart -------------------------------------------------------------------------------- /test/extensions/base_request_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingAleCR/http_interceptor/HEAD/test/extensions/base_request_test.dart -------------------------------------------------------------------------------- /test/extensions/request_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingAleCR/http_interceptor/HEAD/test/extensions/request_test.dart -------------------------------------------------------------------------------- /test/extensions/response_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingAleCR/http_interceptor/HEAD/test/extensions/response_test.dart -------------------------------------------------------------------------------- /test/extensions/string_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingAleCR/http_interceptor/HEAD/test/extensions/string_test.dart -------------------------------------------------------------------------------- /test/extensions/uri_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingAleCR/http_interceptor/HEAD/test/extensions/uri_test.dart -------------------------------------------------------------------------------- /test/http/http_methods_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingAleCR/http_interceptor/HEAD/test/http/http_methods_test.dart -------------------------------------------------------------------------------- /test/http/intercepted_client_error_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingAleCR/http_interceptor/HEAD/test/http/intercepted_client_error_test.dart -------------------------------------------------------------------------------- /test/http/intercepted_client_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingAleCR/http_interceptor/HEAD/test/http/intercepted_client_test.dart -------------------------------------------------------------------------------- /test/models/retry_policy_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingAleCR/http_interceptor/HEAD/test/models/retry_policy_test.dart -------------------------------------------------------------------------------- /test/utils/utils_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingAleCR/http_interceptor/HEAD/test/utils/utils_test.dart --------------------------------------------------------------------------------