gitextract_mi7z9xmv/ ├── .dockerignore ├── .formatter.exs ├── .github/ │ └── workflows/ │ └── tests.yml ├── .gitignore ├── .tool-versions ├── Dockerfile ├── LICENSE ├── README.md ├── docker-compose.yml ├── lib/ │ ├── api_client.ex │ ├── cli.ex │ ├── helpers/ │ │ ├── api_utils.ex │ │ ├── cli_utils.ex │ │ └── struct_utils.ex │ ├── login_flow_wrapper.ex │ ├── pagination_strategies/ │ │ ├── pagination_next_cursor_in_body_to_send_as_json.ex │ │ ├── pagination_next_page_in_body.ex │ │ ├── pagination_offset_params_in_url.ex │ │ ├── pagination_page_params_in_url.ex │ │ ├── pagination_strategy.ex │ │ └── pagination_url_in_body.ex │ ├── recipes/ │ │ ├── action.ex │ │ └── recipe.ex │ ├── recipes.ex │ ├── response_transformer.ex │ └── saas_owl.ex ├── mix.exs ├── owl.sh ├── package.json ├── recipes.yml ├── test/ │ ├── api_client_test.exs │ ├── fixtures/ │ │ └── test_recipes.yml │ ├── helpers/ │ │ ├── api_utils_test.exs │ │ ├── cli_utils_test.exs │ │ └── struct_utils_test.exs │ ├── login_flow_wrapper_test.exs │ ├── recipes_test.exs │ ├── response_transformer_test.exs │ └── test_helper.exs ├── ts_src/ │ ├── login_flow.ts │ ├── main.ts │ ├── recipe_manager.ts │ └── types.ts └── tsconfig.json