1. 11 3月, 2021 1 次提交
  2. 27 1月, 2021 1 次提交
    • K
      feat: add tryItOutEnabled configuration (#6865) · 265bdc07
      Kyle Hoskins 提交于
      * feat: add tryItOutEnabled configuration
      
      allow users to set tryItOutEnabled: true to display
      the "Try it out" section by default
      
      tryItOutEnabled to take === "true" for the
      query string value or === true if someone
      implements query string type parsing in the query
      265bdc07
  3. 14 1月, 2021 1 次提交
  4. 22 10月, 2020 1 次提交
  5. 08 10月, 2020 1 次提交
  6. 23 9月, 2020 1 次提交
    • A
      feat(curl): configuration setting to pass additional options to curl command... · cbe99c8c
      Adam David 提交于
      feat(curl): configuration setting to pass additional options to curl command for "Try it out" (#6288)
      
      Allows `requestInterceptor` to add options to the curl command.
      For example:
      
      ```js
      requestInterceptor: function (request) {
        if (request.method === 'GET') {
          request.curlOptions = ['-g']
          request.url = request.url
            .replace('%5B', '[')
            .replace('%5D', ']')
            .replace('%2C', ',');
        }
        return request;
      }
      ```
      cbe99c8c
  7. 12 9月, 2020 1 次提交
  8. 29 7月, 2020 1 次提交
  9. 18 7月, 2020 1 次提交
  10. 12 6月, 2020 1 次提交
    • V
      fix(Markdown): render markdown in more secure way · a616cb47
      Vladimir Gorej 提交于
      This commit changes markdown sanitization behaviour in following way:
      
      class, style and data-* attributes are removed by default. These attributes
      open possible vulnerability vectors to attackers.
      
      The original behavior of sanitizer (before this commit) can be enabled by *useUnsafeMarkdown* configuration option.
      Use this configuration option with caution and only in cases when you know
      what you're doing.
      a616cb47
  11. 11 6月, 2020 1 次提交
  12. 03 10月, 2019 1 次提交
  13. 10 9月, 2019 1 次提交
  14. 27 8月, 2019 1 次提交
  15. 19 7月, 2019 1 次提交
  16. 21 3月, 2019 1 次提交
    • S
      feature: add `withCredentials` configuration key (via #5149) · be72c292
      Segev Finer 提交于
      * Add the withCredentials configuration key
      
      It enables passing credentials in CORS requests. e.g. Cookies and
      Authorization headers.
      
      * Improve withCredentials documentation
      
      * Add unit tests for the withCredentials config
      
      * Update configuration.md
      
      * Update configuration.md
      
      * only set `withCredentials` Fetch flag if the config value is truthy
      
      there are some workarounds in the wild today that involve setting `withCredentials` on `system.fn.fetch` directly. 
      
      this approach avoids mangling those existing workarounds!
      
      * add more test cases
      
      * Update configs-wrap-actions.js
      
      * Update index.js
      be72c292
  17. 05 1月, 2019 1 次提交
  18. 02 11月, 2018 2 次提交
    • K
      feature: Docker OAuth block support (via #4987) · c6eb8edb
      kyle 提交于
      * add `onFound` callback to schemas
      * add warning to method docs (for #4957)
      * implement Docker OAuth2 init block support
      * update docs
      * add OAUTH_SCOPE_SEPARATOR
      * drop OAuth env from Dockerfile and run script
      * don't indent the first oauth block line
      * drop unused `dedent` import
      * touch up warning message
      * add more test cases
      * return an empty block if no OAuth content is generated
      * fix broken doc line
      c6eb8edb
    • K
      feature: full-spectrum runtime Docker configuration (via #4965) · 31a8b137
      kyle 提交于
      * reorganize docker things
      
      * Configurator WIP
      
      * implement Docker runtime config generator
      
      * add tests
      
      * update documentation
      
      * fix Markdown tables
      
      * Move Docker section
      
      * add note to README
      
      * move up `nodejs` install for more aggressive caching
      
      * drop exclusive test
      
      * fix missing `DISPLAY_OPERATION_ID`
      31a8b137
  19. 12 7月, 2018 1 次提交
  20. 08 5月, 2018 1 次提交
  21. 27 4月, 2018 1 次提交
    • H
      feat: option to show common query parameters (#4245) · cbff0251
      Helder Sepulveda 提交于
      * extend getExtensions
      
      Add optional param to getExtensions that can retrieve more stuff
      
      * Add getCommonExtensions
      
      * Trim trailing spaces
      
      * Remove unused parameter
      
      * Move the format inline with the param type
      
      * correction to UnitTest
      cbff0251
  22. 07 4月, 2018 1 次提交
  23. 17 3月, 2018 2 次提交
    • K
      docs: fix broken method table (#4340) · b8cf080e
      kyle 提交于
      b8cf080e
    • K
      feat: preauthorization (#4339) · 245428e7
      kyle 提交于
      * feat: swagger 2.0 preauthorization methods
      * tests: add cases for oas3 preauthorization
      * docs: add new preauth docs; touch up existing auth docs
      * tests: add `rootInject` tests
      * docs: remove unfinished sentence
      245428e7
  24. 16 3月, 2018 1 次提交
  25. 10 2月, 2018 1 次提交
  26. 09 12月, 2017 1 次提交
    • H
      Add defaultModelsExpandDepth · 28c706c7
      HelderSepu 提交于
      This change separates:
      the Model (the one on the model-example section)
      from
      the Models (the ones at the bottom)
      28c706c7
  27. 08 12月, 2017 1 次提交
  28. 06 12月, 2017 8 次提交
  29. 05 12月, 2017 1 次提交
  30. 27 10月, 2017 1 次提交
  31. 05 10月, 2017 1 次提交