├── .coveragefilter ├── .github └── workflows │ └── build-and-test.yml ├── .gitignore ├── .metadata ├── BUILD.md ├── LICENSE.txt ├── Makefile ├── README.md ├── VERSION ├── analysis_options.yaml ├── docs ├── log │ ├── 2025-08-12_dart_js_interop.md │ └── 2025-08-31_widget_unit_tests.md ├── screenshot.png └── screenshot2.png ├── ffigen.yaml ├── fonts ├── MyFlutterApp.ttf ├── docker-mark-blue.svg ├── docker.svg └── logo.svg ├── grpc_parser ├── _CodeSignature │ └── CodeResources ├── go.mod ├── go.sum └── main.go ├── include ├── DEBIAN │ ├── changelog │ ├── control │ ├── postinst │ ├── prerm │ └── trayce.desktop ├── icon.icns └── icon_128x128.png ├── integration_test ├── const.dart ├── containers_modal_test.dart ├── editor_create_collection_test.dart ├── editor_modifying_requests.dart ├── editor_multiple_collections_test.dart ├── editor_new_request_in_folder_test.dart ├── editor_saving_request.dart ├── editor_sending_a_request.dart ├── editor_sending_a_request_with_script_test.dart ├── flow_table_test.dart ├── grpc_parsing.dart ├── main.dart ├── proto_def_modal.dart └── screenshots │ ├── containers_modal_01.png │ └── containers_modal_02.png ├── lib ├── agent │ ├── api.proto │ ├── command_sender.dart │ ├── gen │ │ ├── api.pb.dart │ │ ├── api.pbenum.dart │ │ ├── api.pbgrpc.dart │ │ └── api.pbjson.dart │ └── server.dart ├── app.dart ├── app_scaffold.dart ├── common │ ├── app_storage.dart │ ├── checkbox.dart │ ├── config.dart │ ├── context_menu.dart │ ├── context_menu_style.dart │ ├── database.dart │ ├── dialog.dart │ ├── dropdown_style.dart │ ├── environments_global_modal.dart │ ├── error_widget.dart │ ├── events.dart │ ├── file_menu_style.dart │ ├── file_picker.dart │ ├── flow_view.dart │ ├── selectable_table.dart │ ├── style.dart │ ├── tab_style.dart │ ├── types.dart │ ├── utils.dart │ └── widgets │ │ └── hoverable_icon_button.dart ├── editor │ ├── models │ │ ├── assertion.dart │ │ ├── auth.dart │ │ ├── body.dart │ │ ├── collection.dart │ │ ├── environment.dart │ │ ├── explorer_node.dart │ │ ├── file_node.dart │ │ ├── folder.dart │ │ ├── global_environment.dart │ │ ├── header.dart │ │ ├── multipart_file.dart │ │ ├── param.dart │ │ ├── parse │ │ │ ├── grammar_collection.dart │ │ │ ├── grammar_environment.dart │ │ │ ├── grammar_request.dart │ │ │ ├── parse_collection.dart │ │ │ ├── parse_environment.dart │ │ │ ├── parse_folder.dart │ │ │ ├── parse_request.dart │ │ │ └── parse_url.dart │ │ ├── request.dart │ │ ├── script.dart │ │ ├── send_result.dart │ │ ├── tab_item.dart │ │ ├── utils.dart │ │ └── variable.dart │ ├── repo │ │ ├── collection_repo.dart │ │ ├── config_repo.dart │ │ ├── environment_repo.dart │ │ ├── explorer_service.dart │ │ ├── folder_repo.dart │ │ ├── global_environment_repo.dart │ │ ├── request_repo.dart │ │ ├── runtime_vars_repo.dart │ │ └── send_request.dart │ └── widgets │ │ ├── code_editor │ │ ├── auto_complete_list.dart │ │ ├── auto_scroll_list_view.dart │ │ ├── code_editor_context_menu.dart │ │ ├── code_editor_multi.dart │ │ ├── find_replace.dart │ │ ├── form_table_input.dart │ │ └── url_input.dart │ │ ├── common │ │ ├── environments_modal.dart │ │ ├── form_table.dart │ │ ├── form_table_base_controller.dart │ │ ├── form_table_controller.dart │ │ ├── form_table_row.dart │ │ ├── headers_table_read_only.dart │ │ ├── inline_tab_bar.dart │ │ └── text_input.dart │ │ ├── editor.dart │ │ ├── editor_tabs.dart │ │ ├── explorer │ │ ├── explorer.dart │ │ ├── explorer_style.dart │ │ ├── menu_node.dart │ │ ├── menu_root.dart │ │ ├── new_collection_modal.dart │ │ └── node_settings_modal.dart │ │ ├── flow_editor.dart │ │ ├── flow_editor_grpc │ │ ├── flow_editor_grpc.dart │ │ └── grpc_stream.dart │ │ ├── flow_editor_http │ │ ├── auth_api_key_controller.dart │ │ ├── auth_api_key_form.dart │ │ ├── auth_basic_controller.dart │ │ ├── auth_basic_form.dart │ │ ├── auth_bearer_controller.dart │ │ ├── auth_bearer_form.dart │ │ ├── auth_inherit.dart │ │ ├── auth_not_implemented.dart │ │ ├── flow_editor_http.dart │ │ ├── focus_manager.dart │ │ ├── form_files_controller.dart │ │ ├── form_headers_controller.dart │ │ ├── form_multipart_controller.dart │ │ ├── form_params_controller.dart │ │ ├── form_vars_controller.dart │ │ ├── path_params_controller.dart │ │ ├── path_params_form_base_controller.dart │ │ ├── query_params_controller.dart │ │ ├── query_params_form_base_controller.dart │ │ └── request_form_controller.dart │ │ ├── runtime_vars_modal.dart │ │ └── splash_page.dart ├── grpc_parser.dart ├── main.dart ├── menu_bar.dart ├── network │ ├── models │ │ ├── flow.dart │ │ ├── flow_request.dart │ │ ├── flow_response.dart │ │ ├── grpc_request.dart │ │ ├── grpc_response.dart │ │ ├── http_request.dart │ │ ├── http_response.dart │ │ ├── proto_def.dart │ │ ├── sql_query.dart │ │ └── sql_response.dart │ ├── repo │ │ ├── containers_repo.dart │ │ ├── flow_repo.dart │ │ └── proto_def_repo.dart │ └── widgets │ │ ├── containers_modal.dart │ │ ├── flow_table.dart │ │ ├── network.dart │ │ ├── proto_def_modal.dart │ │ └── splash_screen.dart ├── settings.dart ├── setup_nodejs.dart ├── status_bar.dart └── utils │ ├── grpc_parser_lib.dart │ └── parsing.dart ├── linux ├── .gitignore ├── CMakeLists.txt ├── flutter │ ├── CMakeLists.txt │ ├── generated_plugin_registrant.cc │ ├── generated_plugin_registrant.h │ └── generated_plugins.cmake └── runner │ ├── CMakeLists.txt │ ├── main.cc │ ├── my_application.cc │ └── my_application.h ├── macos ├── .gitignore ├── Flutter │ ├── Flutter-Debug.xcconfig │ ├── Flutter-Release.xcconfig │ └── GeneratedPluginRegistrant.swift ├── Podfile ├── Podfile.lock ├── Runner.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ └── xcshareddata │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ └── WorkspaceSettings.xcsettings │ └── xcshareddata │ │ └── xcschemes │ │ └── Runner.xcscheme ├── Runner.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist ├── Runner │ ├── AppDelegate.swift │ ├── Assets.xcassets │ │ └── AppIcon.appiconset │ │ │ ├── 1024.png │ │ │ ├── 128.png │ │ │ ├── 16.png │ │ │ ├── 256.png │ │ │ ├── 32.png │ │ │ ├── 512.png │ │ │ ├── 64.png │ │ │ └── Contents.json │ ├── Base.lproj │ │ └── MainMenu.xib │ ├── Configs │ │ ├── AppInfo.xcconfig │ │ ├── Debug.xcconfig │ │ ├── Release.xcconfig │ │ └── Warnings.xcconfig │ ├── DebugProfile.entitlements │ ├── Info.plist │ ├── MainFlutterWindow.swift │ └── Release.entitlements ├── RunnerTests │ └── RunnerTests.swift └── trayce.podspec ├── nodejs ├── .gitignore ├── bru.js ├── package-lock.json ├── package.json ├── random.js ├── request.js ├── response.js ├── script_executor.js ├── script_req.js └── script_var.js ├── pubspec.lock ├── pubspec.yaml ├── schema.sql ├── test ├── common │ └── database_test.dart ├── editor │ ├── models │ │ ├── fixtures │ │ │ ├── collection.bru │ │ │ ├── collection.json │ │ │ ├── collection_saved.bru │ │ │ ├── environment.bru │ │ │ ├── folder.bru │ │ │ ├── request.bru │ │ │ ├── request.json │ │ │ └── request_saved.bru │ │ ├── parse_assert_test.dart │ │ ├── parse_collection_test.dart │ │ ├── parse_defaults_test.dart │ │ ├── parse_dictionary_test.dart │ │ ├── parse_environment_test.dart │ │ ├── parse_request_test.dart │ │ ├── request_test.dart │ │ ├── to_bru_auth_test.dart │ │ ├── to_bru_body_test.dart │ │ ├── to_bru_collection_test.dart │ │ ├── to_bru_environment_test.dart │ │ ├── to_bru_folder_test.dart │ │ └── to_bru_request_test.dart │ ├── repo │ │ ├── explorer_service_test.dart │ │ ├── send_request_test.dart │ │ ├── send_request_with_post_resp_var_test.dart │ │ ├── send_request_with_script_test.dart │ │ └── sending_request_with_script_bru_test.dart │ └── widgets │ │ ├── editor_global_env_test.dart │ │ ├── editor_http_auth_apikey_test.dart │ │ ├── editor_http_auth_basic_test.dart │ │ ├── editor_http_auth_bearer_test.dart │ │ ├── editor_http_auth_inherit_test.dart │ │ ├── editor_http_path_params_test.dart │ │ ├── editor_http_query_params_test.dart │ │ ├── editor_http_scripts_request.dart │ │ ├── editor_http_vars_test.dart │ │ ├── editor_runtime_vars_modal_test.dart │ │ ├── editor_tabs_test.dart │ │ ├── editor_test.dart │ │ ├── environments_global_modal_test.dart │ │ ├── environments_modal_test.dart │ │ ├── explorer_test.dart │ │ ├── flow_editor_http │ │ ├── loading_request_test.dart │ │ ├── modify_existing_request_test.dart │ │ ├── path_params_test.dart │ │ ├── query_params_test.dart │ │ └── save_new_request_test.dart │ │ ├── node_settings │ │ ├── editor_folder_settings_auth_basic_test.dart │ │ ├── editor_folder_settings_auth_bearer_test.dart │ │ └── editor_folder_settings_script_test.dart │ │ └── settings_test.dart ├── network │ ├── models │ │ ├── flow_test.dart │ │ └── proto_def_test.dart │ └── repo │ │ ├── flow_repo_test.dart │ │ └── proto_def_repo_test.dart ├── support │ ├── collection-scripts │ │ ├── .env │ │ ├── bruno.json │ │ ├── collection.bru │ │ ├── environments │ │ │ ├── dev.bru │ │ │ └── test.bru │ │ ├── hello │ │ │ ├── folder.bru │ │ │ └── hello.bru │ │ ├── json.bru │ │ ├── my-request.bru │ │ ├── myfolder │ │ │ ├── five.bru │ │ │ ├── folder.bru │ │ │ ├── four.bru │ │ │ ├── one.bru │ │ │ ├── three.bru │ │ │ └── two.bru │ │ ├── node_modules │ │ │ ├── .bin │ │ │ │ └── uuid │ │ │ ├── .package-lock.json │ │ │ └── uuid │ │ │ │ ├── LICENSE.md │ │ │ │ ├── README.md │ │ │ │ ├── dist │ │ │ │ ├── cjs-browser │ │ │ │ │ ├── index.d.ts │ │ │ │ │ ├── index.js │ │ │ │ │ ├── max.d.ts │ │ │ │ │ ├── max.js │ │ │ │ │ ├── md5.d.ts │ │ │ │ │ ├── md5.js │ │ │ │ │ ├── native.d.ts │ │ │ │ │ ├── native.js │ │ │ │ │ ├── nil.d.ts │ │ │ │ │ ├── nil.js │ │ │ │ │ ├── package.json │ │ │ │ │ ├── parse.d.ts │ │ │ │ │ ├── parse.js │ │ │ │ │ ├── regex.d.ts │ │ │ │ │ ├── regex.js │ │ │ │ │ ├── rng.d.ts │ │ │ │ │ ├── rng.js │ │ │ │ │ ├── sha1.d.ts │ │ │ │ │ ├── sha1.js │ │ │ │ │ ├── stringify.d.ts │ │ │ │ │ ├── stringify.js │ │ │ │ │ ├── types.d.ts │ │ │ │ │ ├── types.js │ │ │ │ │ ├── uuid-bin.d.ts │ │ │ │ │ ├── uuid-bin.js │ │ │ │ │ ├── v1.d.ts │ │ │ │ │ ├── v1.js │ │ │ │ │ ├── v1ToV6.d.ts │ │ │ │ │ ├── v1ToV6.js │ │ │ │ │ ├── v3.d.ts │ │ │ │ │ ├── v3.js │ │ │ │ │ ├── v35.d.ts │ │ │ │ │ ├── v35.js │ │ │ │ │ ├── v4.d.ts │ │ │ │ │ ├── v4.js │ │ │ │ │ ├── v5.d.ts │ │ │ │ │ ├── v5.js │ │ │ │ │ ├── v6.d.ts │ │ │ │ │ ├── v6.js │ │ │ │ │ ├── v6ToV1.d.ts │ │ │ │ │ ├── v6ToV1.js │ │ │ │ │ ├── v7.d.ts │ │ │ │ │ ├── v7.js │ │ │ │ │ ├── validate.d.ts │ │ │ │ │ ├── validate.js │ │ │ │ │ ├── version.d.ts │ │ │ │ │ └── version.js │ │ │ │ ├── cjs │ │ │ │ │ ├── index.d.ts │ │ │ │ │ ├── index.js │ │ │ │ │ ├── max.d.ts │ │ │ │ │ ├── max.js │ │ │ │ │ ├── md5.d.ts │ │ │ │ │ ├── md5.js │ │ │ │ │ ├── native.d.ts │ │ │ │ │ ├── native.js │ │ │ │ │ ├── nil.d.ts │ │ │ │ │ ├── nil.js │ │ │ │ │ ├── package.json │ │ │ │ │ ├── parse.d.ts │ │ │ │ │ ├── parse.js │ │ │ │ │ ├── regex.d.ts │ │ │ │ │ ├── regex.js │ │ │ │ │ ├── rng.d.ts │ │ │ │ │ ├── rng.js │ │ │ │ │ ├── sha1.d.ts │ │ │ │ │ ├── sha1.js │ │ │ │ │ ├── stringify.d.ts │ │ │ │ │ ├── stringify.js │ │ │ │ │ ├── types.d.ts │ │ │ │ │ ├── types.js │ │ │ │ │ ├── uuid-bin.d.ts │ │ │ │ │ ├── uuid-bin.js │ │ │ │ │ ├── v1.d.ts │ │ │ │ │ ├── v1.js │ │ │ │ │ ├── v1ToV6.d.ts │ │ │ │ │ ├── v1ToV6.js │ │ │ │ │ ├── v3.d.ts │ │ │ │ │ ├── v3.js │ │ │ │ │ ├── v35.d.ts │ │ │ │ │ ├── v35.js │ │ │ │ │ ├── v4.d.ts │ │ │ │ │ ├── v4.js │ │ │ │ │ ├── v5.d.ts │ │ │ │ │ ├── v5.js │ │ │ │ │ ├── v6.d.ts │ │ │ │ │ ├── v6.js │ │ │ │ │ ├── v6ToV1.d.ts │ │ │ │ │ ├── v6ToV1.js │ │ │ │ │ ├── v7.d.ts │ │ │ │ │ ├── v7.js │ │ │ │ │ ├── validate.d.ts │ │ │ │ │ ├── validate.js │ │ │ │ │ ├── version.d.ts │ │ │ │ │ └── version.js │ │ │ │ ├── esm-browser │ │ │ │ │ ├── index.d.ts │ │ │ │ │ ├── index.js │ │ │ │ │ ├── max.d.ts │ │ │ │ │ ├── max.js │ │ │ │ │ ├── md5.d.ts │ │ │ │ │ ├── md5.js │ │ │ │ │ ├── native.d.ts │ │ │ │ │ ├── native.js │ │ │ │ │ ├── nil.d.ts │ │ │ │ │ ├── nil.js │ │ │ │ │ ├── parse.d.ts │ │ │ │ │ ├── parse.js │ │ │ │ │ ├── regex.d.ts │ │ │ │ │ ├── regex.js │ │ │ │ │ ├── rng.d.ts │ │ │ │ │ ├── rng.js │ │ │ │ │ ├── sha1.d.ts │ │ │ │ │ ├── sha1.js │ │ │ │ │ ├── stringify.d.ts │ │ │ │ │ ├── stringify.js │ │ │ │ │ ├── types.d.ts │ │ │ │ │ ├── types.js │ │ │ │ │ ├── uuid-bin.d.ts │ │ │ │ │ ├── uuid-bin.js │ │ │ │ │ ├── v1.d.ts │ │ │ │ │ ├── v1.js │ │ │ │ │ ├── v1ToV6.d.ts │ │ │ │ │ ├── v1ToV6.js │ │ │ │ │ ├── v3.d.ts │ │ │ │ │ ├── v3.js │ │ │ │ │ ├── v35.d.ts │ │ │ │ │ ├── v35.js │ │ │ │ │ ├── v4.d.ts │ │ │ │ │ ├── v4.js │ │ │ │ │ ├── v5.d.ts │ │ │ │ │ ├── v5.js │ │ │ │ │ ├── v6.d.ts │ │ │ │ │ ├── v6.js │ │ │ │ │ ├── v6ToV1.d.ts │ │ │ │ │ ├── v6ToV1.js │ │ │ │ │ ├── v7.d.ts │ │ │ │ │ ├── v7.js │ │ │ │ │ ├── validate.d.ts │ │ │ │ │ ├── validate.js │ │ │ │ │ ├── version.d.ts │ │ │ │ │ └── version.js │ │ │ │ └── esm │ │ │ │ │ ├── bin │ │ │ │ │ └── uuid │ │ │ │ │ ├── index.d.ts │ │ │ │ │ ├── index.js │ │ │ │ │ ├── max.d.ts │ │ │ │ │ ├── max.js │ │ │ │ │ ├── md5.d.ts │ │ │ │ │ ├── md5.js │ │ │ │ │ ├── native.d.ts │ │ │ │ │ ├── native.js │ │ │ │ │ ├── nil.d.ts │ │ │ │ │ ├── nil.js │ │ │ │ │ ├── parse.d.ts │ │ │ │ │ ├── parse.js │ │ │ │ │ ├── regex.d.ts │ │ │ │ │ ├── regex.js │ │ │ │ │ ├── rng.d.ts │ │ │ │ │ ├── rng.js │ │ │ │ │ ├── sha1.d.ts │ │ │ │ │ ├── sha1.js │ │ │ │ │ ├── stringify.d.ts │ │ │ │ │ ├── stringify.js │ │ │ │ │ ├── types.d.ts │ │ │ │ │ ├── types.js │ │ │ │ │ ├── uuid-bin.d.ts │ │ │ │ │ ├── uuid-bin.js │ │ │ │ │ ├── v1.d.ts │ │ │ │ │ ├── v1.js │ │ │ │ │ ├── v1ToV6.d.ts │ │ │ │ │ ├── v1ToV6.js │ │ │ │ │ ├── v3.d.ts │ │ │ │ │ ├── v3.js │ │ │ │ │ ├── v35.d.ts │ │ │ │ │ ├── v35.js │ │ │ │ │ ├── v4.d.ts │ │ │ │ │ ├── v4.js │ │ │ │ │ ├── v5.d.ts │ │ │ │ │ ├── v5.js │ │ │ │ │ ├── v6.d.ts │ │ │ │ │ ├── v6.js │ │ │ │ │ ├── v6ToV1.d.ts │ │ │ │ │ ├── v6ToV1.js │ │ │ │ │ ├── v7.d.ts │ │ │ │ │ ├── v7.js │ │ │ │ │ ├── validate.d.ts │ │ │ │ │ ├── validate.js │ │ │ │ │ ├── version.d.ts │ │ │ │ │ └── version.js │ │ │ │ └── package.json │ │ ├── package-lock.json │ │ ├── package.json │ │ └── utils.js │ ├── collection1 │ │ ├── .env │ │ ├── bruno.json │ │ ├── collection.bru │ │ ├── environments │ │ │ ├── dev.bru │ │ │ └── test.bru │ │ ├── hello │ │ │ ├── folder.bru │ │ │ └── hello.bru │ │ ├── json.bru │ │ ├── my-request.bru │ │ ├── myfolder │ │ │ ├── five.bru │ │ │ ├── folder.bru │ │ │ ├── four.bru │ │ │ ├── one.bru │ │ │ ├── three.bru │ │ │ └── two.bru │ │ ├── test_script.js │ │ └── utils.js │ ├── collection2 │ │ ├── bruno.json │ │ ├── collection.bru │ │ └── test-request.bru │ ├── database.dart │ ├── fake_app_storage.dart │ ├── flow_factory.dart │ ├── helpers.dart │ └── widget_helpers.dart └── test_bundle │ ├── unit_test.dart │ └── widget_test.dart └── windows ├── .gitignore ├── CMakeLists.txt ├── flutter ├── CMakeLists.txt ├── generated_plugin_registrant.cc ├── generated_plugin_registrant.h └── generated_plugins.cmake └── runner ├── CMakeLists.txt ├── Runner.rc ├── flutter_window.cpp ├── flutter_window.h ├── main.cpp ├── resource.h ├── resources └── app_icon.ico ├── runner.exe.manifest ├── utils.cpp ├── utils.h ├── win32_window.cpp └── win32_window.h /.coveragefilter: -------------------------------------------------------------------------------- 1 | lib/agent/gen/ 2 | -------------------------------------------------------------------------------- /.github/workflows/build-and-test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/.github/workflows/build-and-test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/.gitignore -------------------------------------------------------------------------------- /.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/.metadata -------------------------------------------------------------------------------- /BUILD.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/BUILD.md -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/README.md -------------------------------------------------------------------------------- /VERSION: -------------------------------------------------------------------------------- 1 | 1.8.1 2 | -------------------------------------------------------------------------------- /analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/analysis_options.yaml -------------------------------------------------------------------------------- /docs/log/2025-08-12_dart_js_interop.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/docs/log/2025-08-12_dart_js_interop.md -------------------------------------------------------------------------------- /docs/log/2025-08-31_widget_unit_tests.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/docs/log/2025-08-31_widget_unit_tests.md -------------------------------------------------------------------------------- /docs/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/docs/screenshot.png -------------------------------------------------------------------------------- /docs/screenshot2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/docs/screenshot2.png -------------------------------------------------------------------------------- /ffigen.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/ffigen.yaml -------------------------------------------------------------------------------- /fonts/MyFlutterApp.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/fonts/MyFlutterApp.ttf -------------------------------------------------------------------------------- /fonts/docker-mark-blue.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/fonts/docker-mark-blue.svg -------------------------------------------------------------------------------- /fonts/docker.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/fonts/docker.svg -------------------------------------------------------------------------------- /fonts/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/fonts/logo.svg -------------------------------------------------------------------------------- /grpc_parser/_CodeSignature/CodeResources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/grpc_parser/_CodeSignature/CodeResources -------------------------------------------------------------------------------- /grpc_parser/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/grpc_parser/go.mod -------------------------------------------------------------------------------- /grpc_parser/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/grpc_parser/go.sum -------------------------------------------------------------------------------- /grpc_parser/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/grpc_parser/main.go -------------------------------------------------------------------------------- /include/DEBIAN/changelog: -------------------------------------------------------------------------------- 1 | 1234 2 | -------------------------------------------------------------------------------- /include/DEBIAN/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/include/DEBIAN/control -------------------------------------------------------------------------------- /include/DEBIAN/postinst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/include/DEBIAN/postinst -------------------------------------------------------------------------------- /include/DEBIAN/prerm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/include/DEBIAN/prerm -------------------------------------------------------------------------------- /include/DEBIAN/trayce.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/include/DEBIAN/trayce.desktop -------------------------------------------------------------------------------- /include/icon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/include/icon.icns -------------------------------------------------------------------------------- /include/icon_128x128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/include/icon_128x128.png -------------------------------------------------------------------------------- /integration_test/const.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/integration_test/const.dart -------------------------------------------------------------------------------- /integration_test/containers_modal_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/integration_test/containers_modal_test.dart -------------------------------------------------------------------------------- /integration_test/editor_create_collection_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/integration_test/editor_create_collection_test.dart -------------------------------------------------------------------------------- /integration_test/editor_modifying_requests.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/integration_test/editor_modifying_requests.dart -------------------------------------------------------------------------------- /integration_test/editor_multiple_collections_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/integration_test/editor_multiple_collections_test.dart -------------------------------------------------------------------------------- /integration_test/editor_new_request_in_folder_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/integration_test/editor_new_request_in_folder_test.dart -------------------------------------------------------------------------------- /integration_test/editor_saving_request.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/integration_test/editor_saving_request.dart -------------------------------------------------------------------------------- /integration_test/editor_sending_a_request.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/integration_test/editor_sending_a_request.dart -------------------------------------------------------------------------------- /integration_test/editor_sending_a_request_with_script_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/integration_test/editor_sending_a_request_with_script_test.dart -------------------------------------------------------------------------------- /integration_test/flow_table_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/integration_test/flow_table_test.dart -------------------------------------------------------------------------------- /integration_test/grpc_parsing.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/integration_test/grpc_parsing.dart -------------------------------------------------------------------------------- /integration_test/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/integration_test/main.dart -------------------------------------------------------------------------------- /integration_test/proto_def_modal.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/integration_test/proto_def_modal.dart -------------------------------------------------------------------------------- /integration_test/screenshots/containers_modal_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/integration_test/screenshots/containers_modal_01.png -------------------------------------------------------------------------------- /integration_test/screenshots/containers_modal_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/integration_test/screenshots/containers_modal_02.png -------------------------------------------------------------------------------- /lib/agent/api.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/lib/agent/api.proto -------------------------------------------------------------------------------- /lib/agent/command_sender.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/lib/agent/command_sender.dart -------------------------------------------------------------------------------- /lib/agent/gen/api.pb.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/lib/agent/gen/api.pb.dart -------------------------------------------------------------------------------- /lib/agent/gen/api.pbenum.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/lib/agent/gen/api.pbenum.dart -------------------------------------------------------------------------------- /lib/agent/gen/api.pbgrpc.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/lib/agent/gen/api.pbgrpc.dart -------------------------------------------------------------------------------- /lib/agent/gen/api.pbjson.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/lib/agent/gen/api.pbjson.dart -------------------------------------------------------------------------------- /lib/agent/server.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/lib/agent/server.dart -------------------------------------------------------------------------------- /lib/app.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/lib/app.dart -------------------------------------------------------------------------------- /lib/app_scaffold.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/lib/app_scaffold.dart -------------------------------------------------------------------------------- /lib/common/app_storage.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/lib/common/app_storage.dart -------------------------------------------------------------------------------- /lib/common/checkbox.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/lib/common/checkbox.dart -------------------------------------------------------------------------------- /lib/common/config.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/lib/common/config.dart -------------------------------------------------------------------------------- /lib/common/context_menu.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/lib/common/context_menu.dart -------------------------------------------------------------------------------- /lib/common/context_menu_style.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/lib/common/context_menu_style.dart -------------------------------------------------------------------------------- /lib/common/database.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/lib/common/database.dart -------------------------------------------------------------------------------- /lib/common/dialog.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/lib/common/dialog.dart -------------------------------------------------------------------------------- /lib/common/dropdown_style.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/lib/common/dropdown_style.dart -------------------------------------------------------------------------------- /lib/common/environments_global_modal.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/lib/common/environments_global_modal.dart -------------------------------------------------------------------------------- /lib/common/error_widget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/lib/common/error_widget.dart -------------------------------------------------------------------------------- /lib/common/events.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/lib/common/events.dart -------------------------------------------------------------------------------- /lib/common/file_menu_style.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/lib/common/file_menu_style.dart -------------------------------------------------------------------------------- /lib/common/file_picker.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/lib/common/file_picker.dart -------------------------------------------------------------------------------- /lib/common/flow_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/lib/common/flow_view.dart -------------------------------------------------------------------------------- /lib/common/selectable_table.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/lib/common/selectable_table.dart -------------------------------------------------------------------------------- /lib/common/style.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/lib/common/style.dart -------------------------------------------------------------------------------- /lib/common/tab_style.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/lib/common/tab_style.dart -------------------------------------------------------------------------------- /lib/common/types.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/lib/common/types.dart -------------------------------------------------------------------------------- /lib/common/utils.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/lib/common/utils.dart -------------------------------------------------------------------------------- /lib/common/widgets/hoverable_icon_button.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/lib/common/widgets/hoverable_icon_button.dart -------------------------------------------------------------------------------- /lib/editor/models/assertion.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/lib/editor/models/assertion.dart -------------------------------------------------------------------------------- /lib/editor/models/auth.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/lib/editor/models/auth.dart -------------------------------------------------------------------------------- /lib/editor/models/body.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/lib/editor/models/body.dart -------------------------------------------------------------------------------- /lib/editor/models/collection.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/lib/editor/models/collection.dart -------------------------------------------------------------------------------- /lib/editor/models/environment.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/lib/editor/models/environment.dart -------------------------------------------------------------------------------- /lib/editor/models/explorer_node.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/lib/editor/models/explorer_node.dart -------------------------------------------------------------------------------- /lib/editor/models/file_node.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/lib/editor/models/file_node.dart -------------------------------------------------------------------------------- /lib/editor/models/folder.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/lib/editor/models/folder.dart -------------------------------------------------------------------------------- /lib/editor/models/global_environment.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/lib/editor/models/global_environment.dart -------------------------------------------------------------------------------- /lib/editor/models/header.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/lib/editor/models/header.dart -------------------------------------------------------------------------------- /lib/editor/models/multipart_file.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/lib/editor/models/multipart_file.dart -------------------------------------------------------------------------------- /lib/editor/models/param.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/lib/editor/models/param.dart -------------------------------------------------------------------------------- /lib/editor/models/parse/grammar_collection.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/lib/editor/models/parse/grammar_collection.dart -------------------------------------------------------------------------------- /lib/editor/models/parse/grammar_environment.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/lib/editor/models/parse/grammar_environment.dart -------------------------------------------------------------------------------- /lib/editor/models/parse/grammar_request.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/lib/editor/models/parse/grammar_request.dart -------------------------------------------------------------------------------- /lib/editor/models/parse/parse_collection.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/lib/editor/models/parse/parse_collection.dart -------------------------------------------------------------------------------- /lib/editor/models/parse/parse_environment.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/lib/editor/models/parse/parse_environment.dart -------------------------------------------------------------------------------- /lib/editor/models/parse/parse_folder.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/lib/editor/models/parse/parse_folder.dart -------------------------------------------------------------------------------- /lib/editor/models/parse/parse_request.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/lib/editor/models/parse/parse_request.dart -------------------------------------------------------------------------------- /lib/editor/models/parse/parse_url.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/lib/editor/models/parse/parse_url.dart -------------------------------------------------------------------------------- /lib/editor/models/request.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/lib/editor/models/request.dart -------------------------------------------------------------------------------- /lib/editor/models/script.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/lib/editor/models/script.dart -------------------------------------------------------------------------------- /lib/editor/models/send_result.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/lib/editor/models/send_result.dart -------------------------------------------------------------------------------- /lib/editor/models/tab_item.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/lib/editor/models/tab_item.dart -------------------------------------------------------------------------------- /lib/editor/models/utils.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/lib/editor/models/utils.dart -------------------------------------------------------------------------------- /lib/editor/models/variable.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/lib/editor/models/variable.dart -------------------------------------------------------------------------------- /lib/editor/repo/collection_repo.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/lib/editor/repo/collection_repo.dart -------------------------------------------------------------------------------- /lib/editor/repo/config_repo.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/lib/editor/repo/config_repo.dart -------------------------------------------------------------------------------- /lib/editor/repo/environment_repo.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/lib/editor/repo/environment_repo.dart -------------------------------------------------------------------------------- /lib/editor/repo/explorer_service.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/lib/editor/repo/explorer_service.dart -------------------------------------------------------------------------------- /lib/editor/repo/folder_repo.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/lib/editor/repo/folder_repo.dart -------------------------------------------------------------------------------- /lib/editor/repo/global_environment_repo.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/lib/editor/repo/global_environment_repo.dart -------------------------------------------------------------------------------- /lib/editor/repo/request_repo.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/lib/editor/repo/request_repo.dart -------------------------------------------------------------------------------- /lib/editor/repo/runtime_vars_repo.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/lib/editor/repo/runtime_vars_repo.dart -------------------------------------------------------------------------------- /lib/editor/repo/send_request.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/lib/editor/repo/send_request.dart -------------------------------------------------------------------------------- /lib/editor/widgets/code_editor/auto_complete_list.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/lib/editor/widgets/code_editor/auto_complete_list.dart -------------------------------------------------------------------------------- /lib/editor/widgets/code_editor/auto_scroll_list_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/lib/editor/widgets/code_editor/auto_scroll_list_view.dart -------------------------------------------------------------------------------- /lib/editor/widgets/code_editor/code_editor_context_menu.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/lib/editor/widgets/code_editor/code_editor_context_menu.dart -------------------------------------------------------------------------------- /lib/editor/widgets/code_editor/code_editor_multi.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/lib/editor/widgets/code_editor/code_editor_multi.dart -------------------------------------------------------------------------------- /lib/editor/widgets/code_editor/find_replace.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/lib/editor/widgets/code_editor/find_replace.dart -------------------------------------------------------------------------------- /lib/editor/widgets/code_editor/form_table_input.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/lib/editor/widgets/code_editor/form_table_input.dart -------------------------------------------------------------------------------- /lib/editor/widgets/code_editor/url_input.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/lib/editor/widgets/code_editor/url_input.dart -------------------------------------------------------------------------------- /lib/editor/widgets/common/environments_modal.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/lib/editor/widgets/common/environments_modal.dart -------------------------------------------------------------------------------- /lib/editor/widgets/common/form_table.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/lib/editor/widgets/common/form_table.dart -------------------------------------------------------------------------------- /lib/editor/widgets/common/form_table_base_controller.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/lib/editor/widgets/common/form_table_base_controller.dart -------------------------------------------------------------------------------- /lib/editor/widgets/common/form_table_controller.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/lib/editor/widgets/common/form_table_controller.dart -------------------------------------------------------------------------------- /lib/editor/widgets/common/form_table_row.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/lib/editor/widgets/common/form_table_row.dart -------------------------------------------------------------------------------- /lib/editor/widgets/common/headers_table_read_only.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/lib/editor/widgets/common/headers_table_read_only.dart -------------------------------------------------------------------------------- /lib/editor/widgets/common/inline_tab_bar.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/lib/editor/widgets/common/inline_tab_bar.dart -------------------------------------------------------------------------------- /lib/editor/widgets/common/text_input.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/lib/editor/widgets/common/text_input.dart -------------------------------------------------------------------------------- /lib/editor/widgets/editor.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/lib/editor/widgets/editor.dart -------------------------------------------------------------------------------- /lib/editor/widgets/editor_tabs.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/lib/editor/widgets/editor_tabs.dart -------------------------------------------------------------------------------- /lib/editor/widgets/explorer/explorer.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/lib/editor/widgets/explorer/explorer.dart -------------------------------------------------------------------------------- /lib/editor/widgets/explorer/explorer_style.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/lib/editor/widgets/explorer/explorer_style.dart -------------------------------------------------------------------------------- /lib/editor/widgets/explorer/menu_node.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/lib/editor/widgets/explorer/menu_node.dart -------------------------------------------------------------------------------- /lib/editor/widgets/explorer/menu_root.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/lib/editor/widgets/explorer/menu_root.dart -------------------------------------------------------------------------------- /lib/editor/widgets/explorer/new_collection_modal.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/lib/editor/widgets/explorer/new_collection_modal.dart -------------------------------------------------------------------------------- /lib/editor/widgets/explorer/node_settings_modal.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/lib/editor/widgets/explorer/node_settings_modal.dart -------------------------------------------------------------------------------- /lib/editor/widgets/flow_editor.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/lib/editor/widgets/flow_editor.dart -------------------------------------------------------------------------------- /lib/editor/widgets/flow_editor_grpc/flow_editor_grpc.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/lib/editor/widgets/flow_editor_grpc/flow_editor_grpc.dart -------------------------------------------------------------------------------- /lib/editor/widgets/flow_editor_grpc/grpc_stream.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/lib/editor/widgets/flow_editor_grpc/grpc_stream.dart -------------------------------------------------------------------------------- /lib/editor/widgets/flow_editor_http/auth_api_key_controller.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/lib/editor/widgets/flow_editor_http/auth_api_key_controller.dart -------------------------------------------------------------------------------- /lib/editor/widgets/flow_editor_http/auth_api_key_form.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/lib/editor/widgets/flow_editor_http/auth_api_key_form.dart -------------------------------------------------------------------------------- /lib/editor/widgets/flow_editor_http/auth_basic_controller.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/lib/editor/widgets/flow_editor_http/auth_basic_controller.dart -------------------------------------------------------------------------------- /lib/editor/widgets/flow_editor_http/auth_basic_form.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/lib/editor/widgets/flow_editor_http/auth_basic_form.dart -------------------------------------------------------------------------------- /lib/editor/widgets/flow_editor_http/auth_bearer_controller.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/lib/editor/widgets/flow_editor_http/auth_bearer_controller.dart -------------------------------------------------------------------------------- /lib/editor/widgets/flow_editor_http/auth_bearer_form.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/lib/editor/widgets/flow_editor_http/auth_bearer_form.dart -------------------------------------------------------------------------------- /lib/editor/widgets/flow_editor_http/auth_inherit.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/lib/editor/widgets/flow_editor_http/auth_inherit.dart -------------------------------------------------------------------------------- /lib/editor/widgets/flow_editor_http/auth_not_implemented.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/lib/editor/widgets/flow_editor_http/auth_not_implemented.dart -------------------------------------------------------------------------------- /lib/editor/widgets/flow_editor_http/flow_editor_http.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/lib/editor/widgets/flow_editor_http/flow_editor_http.dart -------------------------------------------------------------------------------- /lib/editor/widgets/flow_editor_http/focus_manager.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/lib/editor/widgets/flow_editor_http/focus_manager.dart -------------------------------------------------------------------------------- /lib/editor/widgets/flow_editor_http/form_files_controller.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/lib/editor/widgets/flow_editor_http/form_files_controller.dart -------------------------------------------------------------------------------- /lib/editor/widgets/flow_editor_http/form_headers_controller.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/lib/editor/widgets/flow_editor_http/form_headers_controller.dart -------------------------------------------------------------------------------- /lib/editor/widgets/flow_editor_http/form_multipart_controller.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/lib/editor/widgets/flow_editor_http/form_multipart_controller.dart -------------------------------------------------------------------------------- /lib/editor/widgets/flow_editor_http/form_params_controller.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/lib/editor/widgets/flow_editor_http/form_params_controller.dart -------------------------------------------------------------------------------- /lib/editor/widgets/flow_editor_http/form_vars_controller.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/lib/editor/widgets/flow_editor_http/form_vars_controller.dart -------------------------------------------------------------------------------- /lib/editor/widgets/flow_editor_http/path_params_controller.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/lib/editor/widgets/flow_editor_http/path_params_controller.dart -------------------------------------------------------------------------------- /lib/editor/widgets/flow_editor_http/path_params_form_base_controller.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/lib/editor/widgets/flow_editor_http/path_params_form_base_controller.dart -------------------------------------------------------------------------------- /lib/editor/widgets/flow_editor_http/query_params_controller.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/lib/editor/widgets/flow_editor_http/query_params_controller.dart -------------------------------------------------------------------------------- /lib/editor/widgets/flow_editor_http/query_params_form_base_controller.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/lib/editor/widgets/flow_editor_http/query_params_form_base_controller.dart -------------------------------------------------------------------------------- /lib/editor/widgets/flow_editor_http/request_form_controller.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/lib/editor/widgets/flow_editor_http/request_form_controller.dart -------------------------------------------------------------------------------- /lib/editor/widgets/runtime_vars_modal.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/lib/editor/widgets/runtime_vars_modal.dart -------------------------------------------------------------------------------- /lib/editor/widgets/splash_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/lib/editor/widgets/splash_page.dart -------------------------------------------------------------------------------- /lib/grpc_parser.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/lib/grpc_parser.dart -------------------------------------------------------------------------------- /lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/lib/main.dart -------------------------------------------------------------------------------- /lib/menu_bar.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/lib/menu_bar.dart -------------------------------------------------------------------------------- /lib/network/models/flow.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/lib/network/models/flow.dart -------------------------------------------------------------------------------- /lib/network/models/flow_request.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/lib/network/models/flow_request.dart -------------------------------------------------------------------------------- /lib/network/models/flow_response.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/lib/network/models/flow_response.dart -------------------------------------------------------------------------------- /lib/network/models/grpc_request.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/lib/network/models/grpc_request.dart -------------------------------------------------------------------------------- /lib/network/models/grpc_response.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/lib/network/models/grpc_response.dart -------------------------------------------------------------------------------- /lib/network/models/http_request.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/lib/network/models/http_request.dart -------------------------------------------------------------------------------- /lib/network/models/http_response.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/lib/network/models/http_response.dart -------------------------------------------------------------------------------- /lib/network/models/proto_def.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/lib/network/models/proto_def.dart -------------------------------------------------------------------------------- /lib/network/models/sql_query.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/lib/network/models/sql_query.dart -------------------------------------------------------------------------------- /lib/network/models/sql_response.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/lib/network/models/sql_response.dart -------------------------------------------------------------------------------- /lib/network/repo/containers_repo.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/lib/network/repo/containers_repo.dart -------------------------------------------------------------------------------- /lib/network/repo/flow_repo.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/lib/network/repo/flow_repo.dart -------------------------------------------------------------------------------- /lib/network/repo/proto_def_repo.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/lib/network/repo/proto_def_repo.dart -------------------------------------------------------------------------------- /lib/network/widgets/containers_modal.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/lib/network/widgets/containers_modal.dart -------------------------------------------------------------------------------- /lib/network/widgets/flow_table.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/lib/network/widgets/flow_table.dart -------------------------------------------------------------------------------- /lib/network/widgets/network.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/lib/network/widgets/network.dart -------------------------------------------------------------------------------- /lib/network/widgets/proto_def_modal.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/lib/network/widgets/proto_def_modal.dart -------------------------------------------------------------------------------- /lib/network/widgets/splash_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/lib/network/widgets/splash_screen.dart -------------------------------------------------------------------------------- /lib/settings.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/lib/settings.dart -------------------------------------------------------------------------------- /lib/setup_nodejs.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/lib/setup_nodejs.dart -------------------------------------------------------------------------------- /lib/status_bar.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/lib/status_bar.dart -------------------------------------------------------------------------------- /lib/utils/grpc_parser_lib.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/lib/utils/grpc_parser_lib.dart -------------------------------------------------------------------------------- /lib/utils/parsing.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/lib/utils/parsing.dart -------------------------------------------------------------------------------- /linux/.gitignore: -------------------------------------------------------------------------------- 1 | flutter/ephemeral 2 | -------------------------------------------------------------------------------- /linux/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/linux/CMakeLists.txt -------------------------------------------------------------------------------- /linux/flutter/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/linux/flutter/CMakeLists.txt -------------------------------------------------------------------------------- /linux/flutter/generated_plugin_registrant.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/linux/flutter/generated_plugin_registrant.cc -------------------------------------------------------------------------------- /linux/flutter/generated_plugin_registrant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/linux/flutter/generated_plugin_registrant.h -------------------------------------------------------------------------------- /linux/flutter/generated_plugins.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/linux/flutter/generated_plugins.cmake -------------------------------------------------------------------------------- /linux/runner/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/linux/runner/CMakeLists.txt -------------------------------------------------------------------------------- /linux/runner/main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/linux/runner/main.cc -------------------------------------------------------------------------------- /linux/runner/my_application.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/linux/runner/my_application.cc -------------------------------------------------------------------------------- /linux/runner/my_application.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/linux/runner/my_application.h -------------------------------------------------------------------------------- /macos/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/macos/.gitignore -------------------------------------------------------------------------------- /macos/Flutter/Flutter-Debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/macos/Flutter/Flutter-Debug.xcconfig -------------------------------------------------------------------------------- /macos/Flutter/Flutter-Release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/macos/Flutter/Flutter-Release.xcconfig -------------------------------------------------------------------------------- /macos/Flutter/GeneratedPluginRegistrant.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/macos/Flutter/GeneratedPluginRegistrant.swift -------------------------------------------------------------------------------- /macos/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/macos/Podfile -------------------------------------------------------------------------------- /macos/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/macos/Podfile.lock -------------------------------------------------------------------------------- /macos/Runner.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/macos/Runner.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /macos/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/macos/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /macos/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/macos/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /macos/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/macos/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme -------------------------------------------------------------------------------- /macos/Runner.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/macos/Runner.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /macos/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/macos/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /macos/Runner/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/macos/Runner/AppDelegate.swift -------------------------------------------------------------------------------- /macos/Runner/Assets.xcassets/AppIcon.appiconset/1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/macos/Runner/Assets.xcassets/AppIcon.appiconset/1024.png -------------------------------------------------------------------------------- /macos/Runner/Assets.xcassets/AppIcon.appiconset/128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/macos/Runner/Assets.xcassets/AppIcon.appiconset/128.png -------------------------------------------------------------------------------- /macos/Runner/Assets.xcassets/AppIcon.appiconset/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/macos/Runner/Assets.xcassets/AppIcon.appiconset/16.png -------------------------------------------------------------------------------- /macos/Runner/Assets.xcassets/AppIcon.appiconset/256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/macos/Runner/Assets.xcassets/AppIcon.appiconset/256.png -------------------------------------------------------------------------------- /macos/Runner/Assets.xcassets/AppIcon.appiconset/32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/macos/Runner/Assets.xcassets/AppIcon.appiconset/32.png -------------------------------------------------------------------------------- /macos/Runner/Assets.xcassets/AppIcon.appiconset/512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/macos/Runner/Assets.xcassets/AppIcon.appiconset/512.png -------------------------------------------------------------------------------- /macos/Runner/Assets.xcassets/AppIcon.appiconset/64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/macos/Runner/Assets.xcassets/AppIcon.appiconset/64.png -------------------------------------------------------------------------------- /macos/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/macos/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /macos/Runner/Base.lproj/MainMenu.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/macos/Runner/Base.lproj/MainMenu.xib -------------------------------------------------------------------------------- /macos/Runner/Configs/AppInfo.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/macos/Runner/Configs/AppInfo.xcconfig -------------------------------------------------------------------------------- /macos/Runner/Configs/Debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/macos/Runner/Configs/Debug.xcconfig -------------------------------------------------------------------------------- /macos/Runner/Configs/Release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/macos/Runner/Configs/Release.xcconfig -------------------------------------------------------------------------------- /macos/Runner/Configs/Warnings.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/macos/Runner/Configs/Warnings.xcconfig -------------------------------------------------------------------------------- /macos/Runner/DebugProfile.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/macos/Runner/DebugProfile.entitlements -------------------------------------------------------------------------------- /macos/Runner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/macos/Runner/Info.plist -------------------------------------------------------------------------------- /macos/Runner/MainFlutterWindow.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/macos/Runner/MainFlutterWindow.swift -------------------------------------------------------------------------------- /macos/Runner/Release.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/macos/Runner/Release.entitlements -------------------------------------------------------------------------------- /macos/RunnerTests/RunnerTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/macos/RunnerTests/RunnerTests.swift -------------------------------------------------------------------------------- /macos/trayce.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/macos/trayce.podspec -------------------------------------------------------------------------------- /nodejs/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/nodejs/.gitignore -------------------------------------------------------------------------------- /nodejs/bru.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/nodejs/bru.js -------------------------------------------------------------------------------- /nodejs/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/nodejs/package-lock.json -------------------------------------------------------------------------------- /nodejs/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/nodejs/package.json -------------------------------------------------------------------------------- /nodejs/random.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/nodejs/random.js -------------------------------------------------------------------------------- /nodejs/request.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/nodejs/request.js -------------------------------------------------------------------------------- /nodejs/response.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/nodejs/response.js -------------------------------------------------------------------------------- /nodejs/script_executor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/nodejs/script_executor.js -------------------------------------------------------------------------------- /nodejs/script_req.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/nodejs/script_req.js -------------------------------------------------------------------------------- /nodejs/script_var.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/nodejs/script_var.js -------------------------------------------------------------------------------- /pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/pubspec.lock -------------------------------------------------------------------------------- /pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/pubspec.yaml -------------------------------------------------------------------------------- /schema.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/schema.sql -------------------------------------------------------------------------------- /test/common/database_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/test/common/database_test.dart -------------------------------------------------------------------------------- /test/editor/models/fixtures/collection.bru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/test/editor/models/fixtures/collection.bru -------------------------------------------------------------------------------- /test/editor/models/fixtures/collection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/test/editor/models/fixtures/collection.json -------------------------------------------------------------------------------- /test/editor/models/fixtures/collection_saved.bru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/test/editor/models/fixtures/collection_saved.bru -------------------------------------------------------------------------------- /test/editor/models/fixtures/environment.bru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/test/editor/models/fixtures/environment.bru -------------------------------------------------------------------------------- /test/editor/models/fixtures/folder.bru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/test/editor/models/fixtures/folder.bru -------------------------------------------------------------------------------- /test/editor/models/fixtures/request.bru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/test/editor/models/fixtures/request.bru -------------------------------------------------------------------------------- /test/editor/models/fixtures/request.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/test/editor/models/fixtures/request.json -------------------------------------------------------------------------------- /test/editor/models/fixtures/request_saved.bru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/test/editor/models/fixtures/request_saved.bru -------------------------------------------------------------------------------- /test/editor/models/parse_assert_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/test/editor/models/parse_assert_test.dart -------------------------------------------------------------------------------- /test/editor/models/parse_collection_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/test/editor/models/parse_collection_test.dart -------------------------------------------------------------------------------- /test/editor/models/parse_defaults_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/test/editor/models/parse_defaults_test.dart -------------------------------------------------------------------------------- /test/editor/models/parse_dictionary_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/test/editor/models/parse_dictionary_test.dart -------------------------------------------------------------------------------- /test/editor/models/parse_environment_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/test/editor/models/parse_environment_test.dart -------------------------------------------------------------------------------- /test/editor/models/parse_request_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/test/editor/models/parse_request_test.dart -------------------------------------------------------------------------------- /test/editor/models/request_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/test/editor/models/request_test.dart -------------------------------------------------------------------------------- /test/editor/models/to_bru_auth_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/test/editor/models/to_bru_auth_test.dart -------------------------------------------------------------------------------- /test/editor/models/to_bru_body_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/test/editor/models/to_bru_body_test.dart -------------------------------------------------------------------------------- /test/editor/models/to_bru_collection_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/test/editor/models/to_bru_collection_test.dart -------------------------------------------------------------------------------- /test/editor/models/to_bru_environment_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/test/editor/models/to_bru_environment_test.dart -------------------------------------------------------------------------------- /test/editor/models/to_bru_folder_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/test/editor/models/to_bru_folder_test.dart -------------------------------------------------------------------------------- /test/editor/models/to_bru_request_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/test/editor/models/to_bru_request_test.dart -------------------------------------------------------------------------------- /test/editor/repo/explorer_service_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/test/editor/repo/explorer_service_test.dart -------------------------------------------------------------------------------- /test/editor/repo/send_request_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/test/editor/repo/send_request_test.dart -------------------------------------------------------------------------------- /test/editor/repo/send_request_with_post_resp_var_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/test/editor/repo/send_request_with_post_resp_var_test.dart -------------------------------------------------------------------------------- /test/editor/repo/send_request_with_script_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/test/editor/repo/send_request_with_script_test.dart -------------------------------------------------------------------------------- /test/editor/repo/sending_request_with_script_bru_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/test/editor/repo/sending_request_with_script_bru_test.dart -------------------------------------------------------------------------------- /test/editor/widgets/editor_global_env_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/test/editor/widgets/editor_global_env_test.dart -------------------------------------------------------------------------------- /test/editor/widgets/editor_http_auth_apikey_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/test/editor/widgets/editor_http_auth_apikey_test.dart -------------------------------------------------------------------------------- /test/editor/widgets/editor_http_auth_basic_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/test/editor/widgets/editor_http_auth_basic_test.dart -------------------------------------------------------------------------------- /test/editor/widgets/editor_http_auth_bearer_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/test/editor/widgets/editor_http_auth_bearer_test.dart -------------------------------------------------------------------------------- /test/editor/widgets/editor_http_auth_inherit_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/test/editor/widgets/editor_http_auth_inherit_test.dart -------------------------------------------------------------------------------- /test/editor/widgets/editor_http_path_params_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/test/editor/widgets/editor_http_path_params_test.dart -------------------------------------------------------------------------------- /test/editor/widgets/editor_http_query_params_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/test/editor/widgets/editor_http_query_params_test.dart -------------------------------------------------------------------------------- /test/editor/widgets/editor_http_scripts_request.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/test/editor/widgets/editor_http_scripts_request.dart -------------------------------------------------------------------------------- /test/editor/widgets/editor_http_vars_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/test/editor/widgets/editor_http_vars_test.dart -------------------------------------------------------------------------------- /test/editor/widgets/editor_runtime_vars_modal_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/test/editor/widgets/editor_runtime_vars_modal_test.dart -------------------------------------------------------------------------------- /test/editor/widgets/editor_tabs_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/test/editor/widgets/editor_tabs_test.dart -------------------------------------------------------------------------------- /test/editor/widgets/editor_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/test/editor/widgets/editor_test.dart -------------------------------------------------------------------------------- /test/editor/widgets/environments_global_modal_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/test/editor/widgets/environments_global_modal_test.dart -------------------------------------------------------------------------------- /test/editor/widgets/environments_modal_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/test/editor/widgets/environments_modal_test.dart -------------------------------------------------------------------------------- /test/editor/widgets/explorer_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/test/editor/widgets/explorer_test.dart -------------------------------------------------------------------------------- /test/editor/widgets/flow_editor_http/loading_request_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/test/editor/widgets/flow_editor_http/loading_request_test.dart -------------------------------------------------------------------------------- /test/editor/widgets/flow_editor_http/modify_existing_request_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/test/editor/widgets/flow_editor_http/modify_existing_request_test.dart -------------------------------------------------------------------------------- /test/editor/widgets/flow_editor_http/path_params_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/test/editor/widgets/flow_editor_http/path_params_test.dart -------------------------------------------------------------------------------- /test/editor/widgets/flow_editor_http/query_params_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/test/editor/widgets/flow_editor_http/query_params_test.dart -------------------------------------------------------------------------------- /test/editor/widgets/flow_editor_http/save_new_request_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/test/editor/widgets/flow_editor_http/save_new_request_test.dart -------------------------------------------------------------------------------- /test/editor/widgets/node_settings/editor_folder_settings_auth_basic_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/test/editor/widgets/node_settings/editor_folder_settings_auth_basic_test.dart -------------------------------------------------------------------------------- /test/editor/widgets/node_settings/editor_folder_settings_auth_bearer_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/test/editor/widgets/node_settings/editor_folder_settings_auth_bearer_test.dart -------------------------------------------------------------------------------- /test/editor/widgets/node_settings/editor_folder_settings_script_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/test/editor/widgets/node_settings/editor_folder_settings_script_test.dart -------------------------------------------------------------------------------- /test/editor/widgets/settings_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/test/editor/widgets/settings_test.dart -------------------------------------------------------------------------------- /test/network/models/flow_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/test/network/models/flow_test.dart -------------------------------------------------------------------------------- /test/network/models/proto_def_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/test/network/models/proto_def_test.dart -------------------------------------------------------------------------------- /test/network/repo/flow_repo_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/test/network/repo/flow_repo_test.dart -------------------------------------------------------------------------------- /test/network/repo/proto_def_repo_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/test/network/repo/proto_def_repo_test.dart -------------------------------------------------------------------------------- /test/support/collection-scripts/.env: -------------------------------------------------------------------------------- 1 | key = password1 2 | -------------------------------------------------------------------------------- /test/support/collection-scripts/bruno.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/test/support/collection-scripts/bruno.json -------------------------------------------------------------------------------- /test/support/collection-scripts/collection.bru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/test/support/collection-scripts/collection.bru -------------------------------------------------------------------------------- /test/support/collection-scripts/environments/dev.bru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/test/support/collection-scripts/environments/dev.bru -------------------------------------------------------------------------------- /test/support/collection-scripts/environments/test.bru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/test/support/collection-scripts/environments/test.bru -------------------------------------------------------------------------------- /test/support/collection-scripts/hello/folder.bru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/test/support/collection-scripts/hello/folder.bru -------------------------------------------------------------------------------- /test/support/collection-scripts/hello/hello.bru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/test/support/collection-scripts/hello/hello.bru -------------------------------------------------------------------------------- /test/support/collection-scripts/json.bru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/test/support/collection-scripts/json.bru -------------------------------------------------------------------------------- /test/support/collection-scripts/my-request.bru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/test/support/collection-scripts/my-request.bru -------------------------------------------------------------------------------- /test/support/collection-scripts/myfolder/five.bru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/test/support/collection-scripts/myfolder/five.bru -------------------------------------------------------------------------------- /test/support/collection-scripts/myfolder/folder.bru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/test/support/collection-scripts/myfolder/folder.bru -------------------------------------------------------------------------------- /test/support/collection-scripts/myfolder/four.bru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/test/support/collection-scripts/myfolder/four.bru -------------------------------------------------------------------------------- /test/support/collection-scripts/myfolder/one.bru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/test/support/collection-scripts/myfolder/one.bru -------------------------------------------------------------------------------- /test/support/collection-scripts/myfolder/three.bru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/test/support/collection-scripts/myfolder/three.bru -------------------------------------------------------------------------------- /test/support/collection-scripts/myfolder/two.bru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/test/support/collection-scripts/myfolder/two.bru -------------------------------------------------------------------------------- /test/support/collection-scripts/node_modules/.bin/uuid: -------------------------------------------------------------------------------- 1 | ../uuid/dist/esm/bin/uuid -------------------------------------------------------------------------------- /test/support/collection-scripts/node_modules/.package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/test/support/collection-scripts/node_modules/.package-lock.json -------------------------------------------------------------------------------- /test/support/collection-scripts/node_modules/uuid/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/test/support/collection-scripts/node_modules/uuid/LICENSE.md -------------------------------------------------------------------------------- /test/support/collection-scripts/node_modules/uuid/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/test/support/collection-scripts/node_modules/uuid/README.md -------------------------------------------------------------------------------- /test/support/collection-scripts/node_modules/uuid/dist/cjs-browser/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/test/support/collection-scripts/node_modules/uuid/dist/cjs-browser/index.d.ts -------------------------------------------------------------------------------- /test/support/collection-scripts/node_modules/uuid/dist/cjs-browser/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/test/support/collection-scripts/node_modules/uuid/dist/cjs-browser/index.js -------------------------------------------------------------------------------- /test/support/collection-scripts/node_modules/uuid/dist/cjs-browser/max.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/test/support/collection-scripts/node_modules/uuid/dist/cjs-browser/max.d.ts -------------------------------------------------------------------------------- /test/support/collection-scripts/node_modules/uuid/dist/cjs-browser/max.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/test/support/collection-scripts/node_modules/uuid/dist/cjs-browser/max.js -------------------------------------------------------------------------------- /test/support/collection-scripts/node_modules/uuid/dist/cjs-browser/md5.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/test/support/collection-scripts/node_modules/uuid/dist/cjs-browser/md5.d.ts -------------------------------------------------------------------------------- /test/support/collection-scripts/node_modules/uuid/dist/cjs-browser/md5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/test/support/collection-scripts/node_modules/uuid/dist/cjs-browser/md5.js -------------------------------------------------------------------------------- /test/support/collection-scripts/node_modules/uuid/dist/cjs-browser/native.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/test/support/collection-scripts/node_modules/uuid/dist/cjs-browser/native.d.ts -------------------------------------------------------------------------------- /test/support/collection-scripts/node_modules/uuid/dist/cjs-browser/native.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/test/support/collection-scripts/node_modules/uuid/dist/cjs-browser/native.js -------------------------------------------------------------------------------- /test/support/collection-scripts/node_modules/uuid/dist/cjs-browser/nil.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/test/support/collection-scripts/node_modules/uuid/dist/cjs-browser/nil.d.ts -------------------------------------------------------------------------------- /test/support/collection-scripts/node_modules/uuid/dist/cjs-browser/nil.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/test/support/collection-scripts/node_modules/uuid/dist/cjs-browser/nil.js -------------------------------------------------------------------------------- /test/support/collection-scripts/node_modules/uuid/dist/cjs-browser/package.json: -------------------------------------------------------------------------------- 1 | {"type":"commonjs"} 2 | -------------------------------------------------------------------------------- /test/support/collection-scripts/node_modules/uuid/dist/cjs-browser/parse.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/test/support/collection-scripts/node_modules/uuid/dist/cjs-browser/parse.d.ts -------------------------------------------------------------------------------- /test/support/collection-scripts/node_modules/uuid/dist/cjs-browser/parse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/test/support/collection-scripts/node_modules/uuid/dist/cjs-browser/parse.js -------------------------------------------------------------------------------- /test/support/collection-scripts/node_modules/uuid/dist/cjs-browser/regex.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/test/support/collection-scripts/node_modules/uuid/dist/cjs-browser/regex.d.ts -------------------------------------------------------------------------------- /test/support/collection-scripts/node_modules/uuid/dist/cjs-browser/regex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/test/support/collection-scripts/node_modules/uuid/dist/cjs-browser/regex.js -------------------------------------------------------------------------------- /test/support/collection-scripts/node_modules/uuid/dist/cjs-browser/rng.d.ts: -------------------------------------------------------------------------------- 1 | export default function rng(): Uint8Array; 2 | -------------------------------------------------------------------------------- /test/support/collection-scripts/node_modules/uuid/dist/cjs-browser/rng.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/test/support/collection-scripts/node_modules/uuid/dist/cjs-browser/rng.js -------------------------------------------------------------------------------- /test/support/collection-scripts/node_modules/uuid/dist/cjs-browser/sha1.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/test/support/collection-scripts/node_modules/uuid/dist/cjs-browser/sha1.d.ts -------------------------------------------------------------------------------- /test/support/collection-scripts/node_modules/uuid/dist/cjs-browser/sha1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/test/support/collection-scripts/node_modules/uuid/dist/cjs-browser/sha1.js -------------------------------------------------------------------------------- /test/support/collection-scripts/node_modules/uuid/dist/cjs-browser/stringify.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/test/support/collection-scripts/node_modules/uuid/dist/cjs-browser/stringify.d.ts -------------------------------------------------------------------------------- /test/support/collection-scripts/node_modules/uuid/dist/cjs-browser/stringify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/test/support/collection-scripts/node_modules/uuid/dist/cjs-browser/stringify.js -------------------------------------------------------------------------------- /test/support/collection-scripts/node_modules/uuid/dist/cjs-browser/types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/test/support/collection-scripts/node_modules/uuid/dist/cjs-browser/types.d.ts -------------------------------------------------------------------------------- /test/support/collection-scripts/node_modules/uuid/dist/cjs-browser/types.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | Object.defineProperty(exports, "__esModule", { value: true }); 3 | -------------------------------------------------------------------------------- /test/support/collection-scripts/node_modules/uuid/dist/cjs-browser/uuid-bin.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /test/support/collection-scripts/node_modules/uuid/dist/cjs-browser/uuid-bin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/test/support/collection-scripts/node_modules/uuid/dist/cjs-browser/uuid-bin.js -------------------------------------------------------------------------------- /test/support/collection-scripts/node_modules/uuid/dist/cjs-browser/v1.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/test/support/collection-scripts/node_modules/uuid/dist/cjs-browser/v1.d.ts -------------------------------------------------------------------------------- /test/support/collection-scripts/node_modules/uuid/dist/cjs-browser/v1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/test/support/collection-scripts/node_modules/uuid/dist/cjs-browser/v1.js -------------------------------------------------------------------------------- /test/support/collection-scripts/node_modules/uuid/dist/cjs-browser/v1ToV6.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/test/support/collection-scripts/node_modules/uuid/dist/cjs-browser/v1ToV6.d.ts -------------------------------------------------------------------------------- /test/support/collection-scripts/node_modules/uuid/dist/cjs-browser/v1ToV6.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/test/support/collection-scripts/node_modules/uuid/dist/cjs-browser/v1ToV6.js -------------------------------------------------------------------------------- /test/support/collection-scripts/node_modules/uuid/dist/cjs-browser/v3.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/test/support/collection-scripts/node_modules/uuid/dist/cjs-browser/v3.d.ts -------------------------------------------------------------------------------- /test/support/collection-scripts/node_modules/uuid/dist/cjs-browser/v3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/test/support/collection-scripts/node_modules/uuid/dist/cjs-browser/v3.js -------------------------------------------------------------------------------- /test/support/collection-scripts/node_modules/uuid/dist/cjs-browser/v35.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/test/support/collection-scripts/node_modules/uuid/dist/cjs-browser/v35.d.ts -------------------------------------------------------------------------------- /test/support/collection-scripts/node_modules/uuid/dist/cjs-browser/v35.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/test/support/collection-scripts/node_modules/uuid/dist/cjs-browser/v35.js -------------------------------------------------------------------------------- /test/support/collection-scripts/node_modules/uuid/dist/cjs-browser/v4.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/test/support/collection-scripts/node_modules/uuid/dist/cjs-browser/v4.d.ts -------------------------------------------------------------------------------- /test/support/collection-scripts/node_modules/uuid/dist/cjs-browser/v4.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/test/support/collection-scripts/node_modules/uuid/dist/cjs-browser/v4.js -------------------------------------------------------------------------------- /test/support/collection-scripts/node_modules/uuid/dist/cjs-browser/v5.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/test/support/collection-scripts/node_modules/uuid/dist/cjs-browser/v5.d.ts -------------------------------------------------------------------------------- /test/support/collection-scripts/node_modules/uuid/dist/cjs-browser/v5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/test/support/collection-scripts/node_modules/uuid/dist/cjs-browser/v5.js -------------------------------------------------------------------------------- /test/support/collection-scripts/node_modules/uuid/dist/cjs-browser/v6.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/test/support/collection-scripts/node_modules/uuid/dist/cjs-browser/v6.d.ts -------------------------------------------------------------------------------- /test/support/collection-scripts/node_modules/uuid/dist/cjs-browser/v6.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/test/support/collection-scripts/node_modules/uuid/dist/cjs-browser/v6.js -------------------------------------------------------------------------------- /test/support/collection-scripts/node_modules/uuid/dist/cjs-browser/v6ToV1.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/test/support/collection-scripts/node_modules/uuid/dist/cjs-browser/v6ToV1.d.ts -------------------------------------------------------------------------------- /test/support/collection-scripts/node_modules/uuid/dist/cjs-browser/v6ToV1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/test/support/collection-scripts/node_modules/uuid/dist/cjs-browser/v6ToV1.js -------------------------------------------------------------------------------- /test/support/collection-scripts/node_modules/uuid/dist/cjs-browser/v7.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/test/support/collection-scripts/node_modules/uuid/dist/cjs-browser/v7.d.ts -------------------------------------------------------------------------------- /test/support/collection-scripts/node_modules/uuid/dist/cjs-browser/v7.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/test/support/collection-scripts/node_modules/uuid/dist/cjs-browser/v7.js -------------------------------------------------------------------------------- /test/support/collection-scripts/node_modules/uuid/dist/cjs-browser/validate.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/test/support/collection-scripts/node_modules/uuid/dist/cjs-browser/validate.d.ts -------------------------------------------------------------------------------- /test/support/collection-scripts/node_modules/uuid/dist/cjs-browser/validate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/test/support/collection-scripts/node_modules/uuid/dist/cjs-browser/validate.js -------------------------------------------------------------------------------- /test/support/collection-scripts/node_modules/uuid/dist/cjs-browser/version.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/test/support/collection-scripts/node_modules/uuid/dist/cjs-browser/version.d.ts -------------------------------------------------------------------------------- /test/support/collection-scripts/node_modules/uuid/dist/cjs-browser/version.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/test/support/collection-scripts/node_modules/uuid/dist/cjs-browser/version.js -------------------------------------------------------------------------------- /test/support/collection-scripts/node_modules/uuid/dist/cjs/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/test/support/collection-scripts/node_modules/uuid/dist/cjs/index.d.ts -------------------------------------------------------------------------------- /test/support/collection-scripts/node_modules/uuid/dist/cjs/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/test/support/collection-scripts/node_modules/uuid/dist/cjs/index.js -------------------------------------------------------------------------------- /test/support/collection-scripts/node_modules/uuid/dist/cjs/max.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/test/support/collection-scripts/node_modules/uuid/dist/cjs/max.d.ts -------------------------------------------------------------------------------- /test/support/collection-scripts/node_modules/uuid/dist/cjs/max.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/test/support/collection-scripts/node_modules/uuid/dist/cjs/max.js -------------------------------------------------------------------------------- /test/support/collection-scripts/node_modules/uuid/dist/cjs/md5.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/test/support/collection-scripts/node_modules/uuid/dist/cjs/md5.d.ts -------------------------------------------------------------------------------- /test/support/collection-scripts/node_modules/uuid/dist/cjs/md5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/test/support/collection-scripts/node_modules/uuid/dist/cjs/md5.js -------------------------------------------------------------------------------- /test/support/collection-scripts/node_modules/uuid/dist/cjs/native.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/test/support/collection-scripts/node_modules/uuid/dist/cjs/native.d.ts -------------------------------------------------------------------------------- /test/support/collection-scripts/node_modules/uuid/dist/cjs/native.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/test/support/collection-scripts/node_modules/uuid/dist/cjs/native.js -------------------------------------------------------------------------------- /test/support/collection-scripts/node_modules/uuid/dist/cjs/nil.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/test/support/collection-scripts/node_modules/uuid/dist/cjs/nil.d.ts -------------------------------------------------------------------------------- /test/support/collection-scripts/node_modules/uuid/dist/cjs/nil.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/test/support/collection-scripts/node_modules/uuid/dist/cjs/nil.js -------------------------------------------------------------------------------- /test/support/collection-scripts/node_modules/uuid/dist/cjs/package.json: -------------------------------------------------------------------------------- 1 | {"type":"commonjs"} 2 | -------------------------------------------------------------------------------- /test/support/collection-scripts/node_modules/uuid/dist/cjs/parse.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/test/support/collection-scripts/node_modules/uuid/dist/cjs/parse.d.ts -------------------------------------------------------------------------------- /test/support/collection-scripts/node_modules/uuid/dist/cjs/parse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/test/support/collection-scripts/node_modules/uuid/dist/cjs/parse.js -------------------------------------------------------------------------------- /test/support/collection-scripts/node_modules/uuid/dist/cjs/regex.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/test/support/collection-scripts/node_modules/uuid/dist/cjs/regex.d.ts -------------------------------------------------------------------------------- /test/support/collection-scripts/node_modules/uuid/dist/cjs/regex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/test/support/collection-scripts/node_modules/uuid/dist/cjs/regex.js -------------------------------------------------------------------------------- /test/support/collection-scripts/node_modules/uuid/dist/cjs/rng.d.ts: -------------------------------------------------------------------------------- 1 | export default function rng(): Uint8Array; 2 | -------------------------------------------------------------------------------- /test/support/collection-scripts/node_modules/uuid/dist/cjs/rng.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/test/support/collection-scripts/node_modules/uuid/dist/cjs/rng.js -------------------------------------------------------------------------------- /test/support/collection-scripts/node_modules/uuid/dist/cjs/sha1.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/test/support/collection-scripts/node_modules/uuid/dist/cjs/sha1.d.ts -------------------------------------------------------------------------------- /test/support/collection-scripts/node_modules/uuid/dist/cjs/sha1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/test/support/collection-scripts/node_modules/uuid/dist/cjs/sha1.js -------------------------------------------------------------------------------- /test/support/collection-scripts/node_modules/uuid/dist/cjs/stringify.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/test/support/collection-scripts/node_modules/uuid/dist/cjs/stringify.d.ts -------------------------------------------------------------------------------- /test/support/collection-scripts/node_modules/uuid/dist/cjs/stringify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/test/support/collection-scripts/node_modules/uuid/dist/cjs/stringify.js -------------------------------------------------------------------------------- /test/support/collection-scripts/node_modules/uuid/dist/cjs/types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/test/support/collection-scripts/node_modules/uuid/dist/cjs/types.d.ts -------------------------------------------------------------------------------- /test/support/collection-scripts/node_modules/uuid/dist/cjs/types.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | Object.defineProperty(exports, "__esModule", { value: true }); 3 | -------------------------------------------------------------------------------- /test/support/collection-scripts/node_modules/uuid/dist/cjs/uuid-bin.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /test/support/collection-scripts/node_modules/uuid/dist/cjs/uuid-bin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/test/support/collection-scripts/node_modules/uuid/dist/cjs/uuid-bin.js -------------------------------------------------------------------------------- /test/support/collection-scripts/node_modules/uuid/dist/cjs/v1.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/test/support/collection-scripts/node_modules/uuid/dist/cjs/v1.d.ts -------------------------------------------------------------------------------- /test/support/collection-scripts/node_modules/uuid/dist/cjs/v1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/test/support/collection-scripts/node_modules/uuid/dist/cjs/v1.js -------------------------------------------------------------------------------- /test/support/collection-scripts/node_modules/uuid/dist/cjs/v1ToV6.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/test/support/collection-scripts/node_modules/uuid/dist/cjs/v1ToV6.d.ts -------------------------------------------------------------------------------- /test/support/collection-scripts/node_modules/uuid/dist/cjs/v1ToV6.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/test/support/collection-scripts/node_modules/uuid/dist/cjs/v1ToV6.js -------------------------------------------------------------------------------- /test/support/collection-scripts/node_modules/uuid/dist/cjs/v3.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/test/support/collection-scripts/node_modules/uuid/dist/cjs/v3.d.ts -------------------------------------------------------------------------------- /test/support/collection-scripts/node_modules/uuid/dist/cjs/v3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/test/support/collection-scripts/node_modules/uuid/dist/cjs/v3.js -------------------------------------------------------------------------------- /test/support/collection-scripts/node_modules/uuid/dist/cjs/v35.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/test/support/collection-scripts/node_modules/uuid/dist/cjs/v35.d.ts -------------------------------------------------------------------------------- /test/support/collection-scripts/node_modules/uuid/dist/cjs/v35.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/test/support/collection-scripts/node_modules/uuid/dist/cjs/v35.js -------------------------------------------------------------------------------- /test/support/collection-scripts/node_modules/uuid/dist/cjs/v4.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/test/support/collection-scripts/node_modules/uuid/dist/cjs/v4.d.ts -------------------------------------------------------------------------------- /test/support/collection-scripts/node_modules/uuid/dist/cjs/v4.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/test/support/collection-scripts/node_modules/uuid/dist/cjs/v4.js -------------------------------------------------------------------------------- /test/support/collection-scripts/node_modules/uuid/dist/cjs/v5.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/test/support/collection-scripts/node_modules/uuid/dist/cjs/v5.d.ts -------------------------------------------------------------------------------- /test/support/collection-scripts/node_modules/uuid/dist/cjs/v5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/test/support/collection-scripts/node_modules/uuid/dist/cjs/v5.js -------------------------------------------------------------------------------- /test/support/collection-scripts/node_modules/uuid/dist/cjs/v6.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/test/support/collection-scripts/node_modules/uuid/dist/cjs/v6.d.ts -------------------------------------------------------------------------------- /test/support/collection-scripts/node_modules/uuid/dist/cjs/v6.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/test/support/collection-scripts/node_modules/uuid/dist/cjs/v6.js -------------------------------------------------------------------------------- /test/support/collection-scripts/node_modules/uuid/dist/cjs/v6ToV1.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/test/support/collection-scripts/node_modules/uuid/dist/cjs/v6ToV1.d.ts -------------------------------------------------------------------------------- /test/support/collection-scripts/node_modules/uuid/dist/cjs/v6ToV1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/test/support/collection-scripts/node_modules/uuid/dist/cjs/v6ToV1.js -------------------------------------------------------------------------------- /test/support/collection-scripts/node_modules/uuid/dist/cjs/v7.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/test/support/collection-scripts/node_modules/uuid/dist/cjs/v7.d.ts -------------------------------------------------------------------------------- /test/support/collection-scripts/node_modules/uuid/dist/cjs/v7.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/test/support/collection-scripts/node_modules/uuid/dist/cjs/v7.js -------------------------------------------------------------------------------- /test/support/collection-scripts/node_modules/uuid/dist/cjs/validate.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/test/support/collection-scripts/node_modules/uuid/dist/cjs/validate.d.ts -------------------------------------------------------------------------------- /test/support/collection-scripts/node_modules/uuid/dist/cjs/validate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/test/support/collection-scripts/node_modules/uuid/dist/cjs/validate.js -------------------------------------------------------------------------------- /test/support/collection-scripts/node_modules/uuid/dist/cjs/version.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/test/support/collection-scripts/node_modules/uuid/dist/cjs/version.d.ts -------------------------------------------------------------------------------- /test/support/collection-scripts/node_modules/uuid/dist/cjs/version.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/test/support/collection-scripts/node_modules/uuid/dist/cjs/version.js -------------------------------------------------------------------------------- /test/support/collection-scripts/node_modules/uuid/dist/esm-browser/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/test/support/collection-scripts/node_modules/uuid/dist/esm-browser/index.d.ts -------------------------------------------------------------------------------- /test/support/collection-scripts/node_modules/uuid/dist/esm-browser/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/test/support/collection-scripts/node_modules/uuid/dist/esm-browser/index.js -------------------------------------------------------------------------------- /test/support/collection-scripts/node_modules/uuid/dist/esm-browser/max.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/test/support/collection-scripts/node_modules/uuid/dist/esm-browser/max.d.ts -------------------------------------------------------------------------------- /test/support/collection-scripts/node_modules/uuid/dist/esm-browser/max.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/test/support/collection-scripts/node_modules/uuid/dist/esm-browser/max.js -------------------------------------------------------------------------------- /test/support/collection-scripts/node_modules/uuid/dist/esm-browser/md5.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/test/support/collection-scripts/node_modules/uuid/dist/esm-browser/md5.d.ts -------------------------------------------------------------------------------- /test/support/collection-scripts/node_modules/uuid/dist/esm-browser/md5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/test/support/collection-scripts/node_modules/uuid/dist/esm-browser/md5.js -------------------------------------------------------------------------------- /test/support/collection-scripts/node_modules/uuid/dist/esm-browser/native.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/test/support/collection-scripts/node_modules/uuid/dist/esm-browser/native.d.ts -------------------------------------------------------------------------------- /test/support/collection-scripts/node_modules/uuid/dist/esm-browser/native.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/test/support/collection-scripts/node_modules/uuid/dist/esm-browser/native.js -------------------------------------------------------------------------------- /test/support/collection-scripts/node_modules/uuid/dist/esm-browser/nil.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/test/support/collection-scripts/node_modules/uuid/dist/esm-browser/nil.d.ts -------------------------------------------------------------------------------- /test/support/collection-scripts/node_modules/uuid/dist/esm-browser/nil.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/test/support/collection-scripts/node_modules/uuid/dist/esm-browser/nil.js -------------------------------------------------------------------------------- /test/support/collection-scripts/node_modules/uuid/dist/esm-browser/parse.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/test/support/collection-scripts/node_modules/uuid/dist/esm-browser/parse.d.ts -------------------------------------------------------------------------------- /test/support/collection-scripts/node_modules/uuid/dist/esm-browser/parse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/test/support/collection-scripts/node_modules/uuid/dist/esm-browser/parse.js -------------------------------------------------------------------------------- /test/support/collection-scripts/node_modules/uuid/dist/esm-browser/regex.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/test/support/collection-scripts/node_modules/uuid/dist/esm-browser/regex.d.ts -------------------------------------------------------------------------------- /test/support/collection-scripts/node_modules/uuid/dist/esm-browser/regex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/test/support/collection-scripts/node_modules/uuid/dist/esm-browser/regex.js -------------------------------------------------------------------------------- /test/support/collection-scripts/node_modules/uuid/dist/esm-browser/rng.d.ts: -------------------------------------------------------------------------------- 1 | export default function rng(): Uint8Array; 2 | -------------------------------------------------------------------------------- /test/support/collection-scripts/node_modules/uuid/dist/esm-browser/rng.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/test/support/collection-scripts/node_modules/uuid/dist/esm-browser/rng.js -------------------------------------------------------------------------------- /test/support/collection-scripts/node_modules/uuid/dist/esm-browser/sha1.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/test/support/collection-scripts/node_modules/uuid/dist/esm-browser/sha1.d.ts -------------------------------------------------------------------------------- /test/support/collection-scripts/node_modules/uuid/dist/esm-browser/sha1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/test/support/collection-scripts/node_modules/uuid/dist/esm-browser/sha1.js -------------------------------------------------------------------------------- /test/support/collection-scripts/node_modules/uuid/dist/esm-browser/stringify.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/test/support/collection-scripts/node_modules/uuid/dist/esm-browser/stringify.d.ts -------------------------------------------------------------------------------- /test/support/collection-scripts/node_modules/uuid/dist/esm-browser/stringify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/test/support/collection-scripts/node_modules/uuid/dist/esm-browser/stringify.js -------------------------------------------------------------------------------- /test/support/collection-scripts/node_modules/uuid/dist/esm-browser/types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/test/support/collection-scripts/node_modules/uuid/dist/esm-browser/types.d.ts -------------------------------------------------------------------------------- /test/support/collection-scripts/node_modules/uuid/dist/esm-browser/types.js: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /test/support/collection-scripts/node_modules/uuid/dist/esm-browser/uuid-bin.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /test/support/collection-scripts/node_modules/uuid/dist/esm-browser/uuid-bin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/test/support/collection-scripts/node_modules/uuid/dist/esm-browser/uuid-bin.js -------------------------------------------------------------------------------- /test/support/collection-scripts/node_modules/uuid/dist/esm-browser/v1.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/test/support/collection-scripts/node_modules/uuid/dist/esm-browser/v1.d.ts -------------------------------------------------------------------------------- /test/support/collection-scripts/node_modules/uuid/dist/esm-browser/v1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/test/support/collection-scripts/node_modules/uuid/dist/esm-browser/v1.js -------------------------------------------------------------------------------- /test/support/collection-scripts/node_modules/uuid/dist/esm-browser/v1ToV6.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/test/support/collection-scripts/node_modules/uuid/dist/esm-browser/v1ToV6.d.ts -------------------------------------------------------------------------------- /test/support/collection-scripts/node_modules/uuid/dist/esm-browser/v1ToV6.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/test/support/collection-scripts/node_modules/uuid/dist/esm-browser/v1ToV6.js -------------------------------------------------------------------------------- /test/support/collection-scripts/node_modules/uuid/dist/esm-browser/v3.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/test/support/collection-scripts/node_modules/uuid/dist/esm-browser/v3.d.ts -------------------------------------------------------------------------------- /test/support/collection-scripts/node_modules/uuid/dist/esm-browser/v3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/test/support/collection-scripts/node_modules/uuid/dist/esm-browser/v3.js -------------------------------------------------------------------------------- /test/support/collection-scripts/node_modules/uuid/dist/esm-browser/v35.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/test/support/collection-scripts/node_modules/uuid/dist/esm-browser/v35.d.ts -------------------------------------------------------------------------------- /test/support/collection-scripts/node_modules/uuid/dist/esm-browser/v35.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/test/support/collection-scripts/node_modules/uuid/dist/esm-browser/v35.js -------------------------------------------------------------------------------- /test/support/collection-scripts/node_modules/uuid/dist/esm-browser/v4.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/test/support/collection-scripts/node_modules/uuid/dist/esm-browser/v4.d.ts -------------------------------------------------------------------------------- /test/support/collection-scripts/node_modules/uuid/dist/esm-browser/v4.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/test/support/collection-scripts/node_modules/uuid/dist/esm-browser/v4.js -------------------------------------------------------------------------------- /test/support/collection-scripts/node_modules/uuid/dist/esm-browser/v5.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/test/support/collection-scripts/node_modules/uuid/dist/esm-browser/v5.d.ts -------------------------------------------------------------------------------- /test/support/collection-scripts/node_modules/uuid/dist/esm-browser/v5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/test/support/collection-scripts/node_modules/uuid/dist/esm-browser/v5.js -------------------------------------------------------------------------------- /test/support/collection-scripts/node_modules/uuid/dist/esm-browser/v6.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/test/support/collection-scripts/node_modules/uuid/dist/esm-browser/v6.d.ts -------------------------------------------------------------------------------- /test/support/collection-scripts/node_modules/uuid/dist/esm-browser/v6.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/test/support/collection-scripts/node_modules/uuid/dist/esm-browser/v6.js -------------------------------------------------------------------------------- /test/support/collection-scripts/node_modules/uuid/dist/esm-browser/v6ToV1.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/test/support/collection-scripts/node_modules/uuid/dist/esm-browser/v6ToV1.d.ts -------------------------------------------------------------------------------- /test/support/collection-scripts/node_modules/uuid/dist/esm-browser/v6ToV1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/test/support/collection-scripts/node_modules/uuid/dist/esm-browser/v6ToV1.js -------------------------------------------------------------------------------- /test/support/collection-scripts/node_modules/uuid/dist/esm-browser/v7.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/test/support/collection-scripts/node_modules/uuid/dist/esm-browser/v7.d.ts -------------------------------------------------------------------------------- /test/support/collection-scripts/node_modules/uuid/dist/esm-browser/v7.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/test/support/collection-scripts/node_modules/uuid/dist/esm-browser/v7.js -------------------------------------------------------------------------------- /test/support/collection-scripts/node_modules/uuid/dist/esm-browser/validate.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/test/support/collection-scripts/node_modules/uuid/dist/esm-browser/validate.d.ts -------------------------------------------------------------------------------- /test/support/collection-scripts/node_modules/uuid/dist/esm-browser/validate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/test/support/collection-scripts/node_modules/uuid/dist/esm-browser/validate.js -------------------------------------------------------------------------------- /test/support/collection-scripts/node_modules/uuid/dist/esm-browser/version.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/test/support/collection-scripts/node_modules/uuid/dist/esm-browser/version.d.ts -------------------------------------------------------------------------------- /test/support/collection-scripts/node_modules/uuid/dist/esm-browser/version.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/test/support/collection-scripts/node_modules/uuid/dist/esm-browser/version.js -------------------------------------------------------------------------------- /test/support/collection-scripts/node_modules/uuid/dist/esm/bin/uuid: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | import '../uuid-bin.js'; 3 | -------------------------------------------------------------------------------- /test/support/collection-scripts/node_modules/uuid/dist/esm/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/test/support/collection-scripts/node_modules/uuid/dist/esm/index.d.ts -------------------------------------------------------------------------------- /test/support/collection-scripts/node_modules/uuid/dist/esm/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/test/support/collection-scripts/node_modules/uuid/dist/esm/index.js -------------------------------------------------------------------------------- /test/support/collection-scripts/node_modules/uuid/dist/esm/max.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/test/support/collection-scripts/node_modules/uuid/dist/esm/max.d.ts -------------------------------------------------------------------------------- /test/support/collection-scripts/node_modules/uuid/dist/esm/max.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/test/support/collection-scripts/node_modules/uuid/dist/esm/max.js -------------------------------------------------------------------------------- /test/support/collection-scripts/node_modules/uuid/dist/esm/md5.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/test/support/collection-scripts/node_modules/uuid/dist/esm/md5.d.ts -------------------------------------------------------------------------------- /test/support/collection-scripts/node_modules/uuid/dist/esm/md5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/test/support/collection-scripts/node_modules/uuid/dist/esm/md5.js -------------------------------------------------------------------------------- /test/support/collection-scripts/node_modules/uuid/dist/esm/native.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/test/support/collection-scripts/node_modules/uuid/dist/esm/native.d.ts -------------------------------------------------------------------------------- /test/support/collection-scripts/node_modules/uuid/dist/esm/native.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/test/support/collection-scripts/node_modules/uuid/dist/esm/native.js -------------------------------------------------------------------------------- /test/support/collection-scripts/node_modules/uuid/dist/esm/nil.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/test/support/collection-scripts/node_modules/uuid/dist/esm/nil.d.ts -------------------------------------------------------------------------------- /test/support/collection-scripts/node_modules/uuid/dist/esm/nil.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/test/support/collection-scripts/node_modules/uuid/dist/esm/nil.js -------------------------------------------------------------------------------- /test/support/collection-scripts/node_modules/uuid/dist/esm/parse.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/test/support/collection-scripts/node_modules/uuid/dist/esm/parse.d.ts -------------------------------------------------------------------------------- /test/support/collection-scripts/node_modules/uuid/dist/esm/parse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/test/support/collection-scripts/node_modules/uuid/dist/esm/parse.js -------------------------------------------------------------------------------- /test/support/collection-scripts/node_modules/uuid/dist/esm/regex.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/test/support/collection-scripts/node_modules/uuid/dist/esm/regex.d.ts -------------------------------------------------------------------------------- /test/support/collection-scripts/node_modules/uuid/dist/esm/regex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/test/support/collection-scripts/node_modules/uuid/dist/esm/regex.js -------------------------------------------------------------------------------- /test/support/collection-scripts/node_modules/uuid/dist/esm/rng.d.ts: -------------------------------------------------------------------------------- 1 | export default function rng(): Uint8Array; 2 | -------------------------------------------------------------------------------- /test/support/collection-scripts/node_modules/uuid/dist/esm/rng.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/test/support/collection-scripts/node_modules/uuid/dist/esm/rng.js -------------------------------------------------------------------------------- /test/support/collection-scripts/node_modules/uuid/dist/esm/sha1.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/test/support/collection-scripts/node_modules/uuid/dist/esm/sha1.d.ts -------------------------------------------------------------------------------- /test/support/collection-scripts/node_modules/uuid/dist/esm/sha1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/test/support/collection-scripts/node_modules/uuid/dist/esm/sha1.js -------------------------------------------------------------------------------- /test/support/collection-scripts/node_modules/uuid/dist/esm/stringify.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/test/support/collection-scripts/node_modules/uuid/dist/esm/stringify.d.ts -------------------------------------------------------------------------------- /test/support/collection-scripts/node_modules/uuid/dist/esm/stringify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/test/support/collection-scripts/node_modules/uuid/dist/esm/stringify.js -------------------------------------------------------------------------------- /test/support/collection-scripts/node_modules/uuid/dist/esm/types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/test/support/collection-scripts/node_modules/uuid/dist/esm/types.d.ts -------------------------------------------------------------------------------- /test/support/collection-scripts/node_modules/uuid/dist/esm/types.js: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /test/support/collection-scripts/node_modules/uuid/dist/esm/uuid-bin.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /test/support/collection-scripts/node_modules/uuid/dist/esm/uuid-bin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/test/support/collection-scripts/node_modules/uuid/dist/esm/uuid-bin.js -------------------------------------------------------------------------------- /test/support/collection-scripts/node_modules/uuid/dist/esm/v1.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/test/support/collection-scripts/node_modules/uuid/dist/esm/v1.d.ts -------------------------------------------------------------------------------- /test/support/collection-scripts/node_modules/uuid/dist/esm/v1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/test/support/collection-scripts/node_modules/uuid/dist/esm/v1.js -------------------------------------------------------------------------------- /test/support/collection-scripts/node_modules/uuid/dist/esm/v1ToV6.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/test/support/collection-scripts/node_modules/uuid/dist/esm/v1ToV6.d.ts -------------------------------------------------------------------------------- /test/support/collection-scripts/node_modules/uuid/dist/esm/v1ToV6.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/test/support/collection-scripts/node_modules/uuid/dist/esm/v1ToV6.js -------------------------------------------------------------------------------- /test/support/collection-scripts/node_modules/uuid/dist/esm/v3.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/test/support/collection-scripts/node_modules/uuid/dist/esm/v3.d.ts -------------------------------------------------------------------------------- /test/support/collection-scripts/node_modules/uuid/dist/esm/v3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/test/support/collection-scripts/node_modules/uuid/dist/esm/v3.js -------------------------------------------------------------------------------- /test/support/collection-scripts/node_modules/uuid/dist/esm/v35.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/test/support/collection-scripts/node_modules/uuid/dist/esm/v35.d.ts -------------------------------------------------------------------------------- /test/support/collection-scripts/node_modules/uuid/dist/esm/v35.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/test/support/collection-scripts/node_modules/uuid/dist/esm/v35.js -------------------------------------------------------------------------------- /test/support/collection-scripts/node_modules/uuid/dist/esm/v4.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/test/support/collection-scripts/node_modules/uuid/dist/esm/v4.d.ts -------------------------------------------------------------------------------- /test/support/collection-scripts/node_modules/uuid/dist/esm/v4.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/test/support/collection-scripts/node_modules/uuid/dist/esm/v4.js -------------------------------------------------------------------------------- /test/support/collection-scripts/node_modules/uuid/dist/esm/v5.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/test/support/collection-scripts/node_modules/uuid/dist/esm/v5.d.ts -------------------------------------------------------------------------------- /test/support/collection-scripts/node_modules/uuid/dist/esm/v5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/test/support/collection-scripts/node_modules/uuid/dist/esm/v5.js -------------------------------------------------------------------------------- /test/support/collection-scripts/node_modules/uuid/dist/esm/v6.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/test/support/collection-scripts/node_modules/uuid/dist/esm/v6.d.ts -------------------------------------------------------------------------------- /test/support/collection-scripts/node_modules/uuid/dist/esm/v6.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/test/support/collection-scripts/node_modules/uuid/dist/esm/v6.js -------------------------------------------------------------------------------- /test/support/collection-scripts/node_modules/uuid/dist/esm/v6ToV1.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/test/support/collection-scripts/node_modules/uuid/dist/esm/v6ToV1.d.ts -------------------------------------------------------------------------------- /test/support/collection-scripts/node_modules/uuid/dist/esm/v6ToV1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/test/support/collection-scripts/node_modules/uuid/dist/esm/v6ToV1.js -------------------------------------------------------------------------------- /test/support/collection-scripts/node_modules/uuid/dist/esm/v7.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/test/support/collection-scripts/node_modules/uuid/dist/esm/v7.d.ts -------------------------------------------------------------------------------- /test/support/collection-scripts/node_modules/uuid/dist/esm/v7.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/test/support/collection-scripts/node_modules/uuid/dist/esm/v7.js -------------------------------------------------------------------------------- /test/support/collection-scripts/node_modules/uuid/dist/esm/validate.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/test/support/collection-scripts/node_modules/uuid/dist/esm/validate.d.ts -------------------------------------------------------------------------------- /test/support/collection-scripts/node_modules/uuid/dist/esm/validate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/test/support/collection-scripts/node_modules/uuid/dist/esm/validate.js -------------------------------------------------------------------------------- /test/support/collection-scripts/node_modules/uuid/dist/esm/version.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/test/support/collection-scripts/node_modules/uuid/dist/esm/version.d.ts -------------------------------------------------------------------------------- /test/support/collection-scripts/node_modules/uuid/dist/esm/version.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/test/support/collection-scripts/node_modules/uuid/dist/esm/version.js -------------------------------------------------------------------------------- /test/support/collection-scripts/node_modules/uuid/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/test/support/collection-scripts/node_modules/uuid/package.json -------------------------------------------------------------------------------- /test/support/collection-scripts/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/test/support/collection-scripts/package-lock.json -------------------------------------------------------------------------------- /test/support/collection-scripts/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/test/support/collection-scripts/package.json -------------------------------------------------------------------------------- /test/support/collection-scripts/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/test/support/collection-scripts/utils.js -------------------------------------------------------------------------------- /test/support/collection1/.env: -------------------------------------------------------------------------------- 1 | key = password1 2 | -------------------------------------------------------------------------------- /test/support/collection1/bruno.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/test/support/collection1/bruno.json -------------------------------------------------------------------------------- /test/support/collection1/collection.bru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/test/support/collection1/collection.bru -------------------------------------------------------------------------------- /test/support/collection1/environments/dev.bru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/test/support/collection1/environments/dev.bru -------------------------------------------------------------------------------- /test/support/collection1/environments/test.bru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/test/support/collection1/environments/test.bru -------------------------------------------------------------------------------- /test/support/collection1/hello/folder.bru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/test/support/collection1/hello/folder.bru -------------------------------------------------------------------------------- /test/support/collection1/hello/hello.bru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/test/support/collection1/hello/hello.bru -------------------------------------------------------------------------------- /test/support/collection1/json.bru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/test/support/collection1/json.bru -------------------------------------------------------------------------------- /test/support/collection1/my-request.bru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/test/support/collection1/my-request.bru -------------------------------------------------------------------------------- /test/support/collection1/myfolder/five.bru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/test/support/collection1/myfolder/five.bru -------------------------------------------------------------------------------- /test/support/collection1/myfolder/folder.bru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/test/support/collection1/myfolder/folder.bru -------------------------------------------------------------------------------- /test/support/collection1/myfolder/four.bru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/test/support/collection1/myfolder/four.bru -------------------------------------------------------------------------------- /test/support/collection1/myfolder/one.bru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/test/support/collection1/myfolder/one.bru -------------------------------------------------------------------------------- /test/support/collection1/myfolder/three.bru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/test/support/collection1/myfolder/three.bru -------------------------------------------------------------------------------- /test/support/collection1/myfolder/two.bru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/test/support/collection1/myfolder/two.bru -------------------------------------------------------------------------------- /test/support/collection1/test_script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/test/support/collection1/test_script.js -------------------------------------------------------------------------------- /test/support/collection1/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/test/support/collection1/utils.js -------------------------------------------------------------------------------- /test/support/collection2/bruno.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/test/support/collection2/bruno.json -------------------------------------------------------------------------------- /test/support/collection2/collection.bru: -------------------------------------------------------------------------------- 1 | meta { 2 | type: collection 3 | } 4 | -------------------------------------------------------------------------------- /test/support/collection2/test-request.bru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/test/support/collection2/test-request.bru -------------------------------------------------------------------------------- /test/support/database.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/test/support/database.dart -------------------------------------------------------------------------------- /test/support/fake_app_storage.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/test/support/fake_app_storage.dart -------------------------------------------------------------------------------- /test/support/flow_factory.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/test/support/flow_factory.dart -------------------------------------------------------------------------------- /test/support/helpers.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/test/support/helpers.dart -------------------------------------------------------------------------------- /test/support/widget_helpers.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/test/support/widget_helpers.dart -------------------------------------------------------------------------------- /test/test_bundle/unit_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/test/test_bundle/unit_test.dart -------------------------------------------------------------------------------- /test/test_bundle/widget_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/test/test_bundle/widget_test.dart -------------------------------------------------------------------------------- /windows/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/windows/.gitignore -------------------------------------------------------------------------------- /windows/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/windows/CMakeLists.txt -------------------------------------------------------------------------------- /windows/flutter/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/windows/flutter/CMakeLists.txt -------------------------------------------------------------------------------- /windows/flutter/generated_plugin_registrant.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/windows/flutter/generated_plugin_registrant.cc -------------------------------------------------------------------------------- /windows/flutter/generated_plugin_registrant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/windows/flutter/generated_plugin_registrant.h -------------------------------------------------------------------------------- /windows/flutter/generated_plugins.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/windows/flutter/generated_plugins.cmake -------------------------------------------------------------------------------- /windows/runner/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/windows/runner/CMakeLists.txt -------------------------------------------------------------------------------- /windows/runner/Runner.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/windows/runner/Runner.rc -------------------------------------------------------------------------------- /windows/runner/flutter_window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/windows/runner/flutter_window.cpp -------------------------------------------------------------------------------- /windows/runner/flutter_window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/windows/runner/flutter_window.h -------------------------------------------------------------------------------- /windows/runner/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/windows/runner/main.cpp -------------------------------------------------------------------------------- /windows/runner/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/windows/runner/resource.h -------------------------------------------------------------------------------- /windows/runner/resources/app_icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/windows/runner/resources/app_icon.ico -------------------------------------------------------------------------------- /windows/runner/runner.exe.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/windows/runner/runner.exe.manifest -------------------------------------------------------------------------------- /windows/runner/utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/windows/runner/utils.cpp -------------------------------------------------------------------------------- /windows/runner/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/windows/runner/utils.h -------------------------------------------------------------------------------- /windows/runner/win32_window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/windows/runner/win32_window.cpp -------------------------------------------------------------------------------- /windows/runner/win32_window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanrolfe/trayce_gui/HEAD/windows/runner/win32_window.h --------------------------------------------------------------------------------