westfield_swagger 1.2.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/.github/ISSUE_TEMPLATE +16 -0
- data/.github/PULL_REQUEST_TEMPLATE +19 -0
- data/.gitignore +11 -0
- data/.rspec +3 -0
- data/.travis.yml +11 -0
- data/Gemfile +14 -0
- data/LICENSE +201 -0
- data/README.md +46 -0
- data/Rakefile +31 -0
- data/app/controllers/westfield_swagger/application_controller.rb +4 -0
- data/app/controllers/westfield_swagger/swagger_controller.rb +39 -0
- data/app/helpers/westfield_swagger/application_helper.rb +9 -0
- data/app/views/westfield_swagger/swagger/index.html.erb +108 -0
- data/bin/console +15 -0
- data/bin/rails +12 -0
- data/bin/setup +7 -0
- data/config/routes.rb +10 -0
- data/contributing.md +13 -0
- data/lib/generators/swagger/USAGE +9 -0
- data/lib/generators/swagger/swagger_generator.rb +9 -0
- data/lib/generators/swagger/templates/example.yml +104 -0
- data/lib/generators/swagger/templates/spec.rb +22 -0
- data/lib/tasks/westfield_swagger_tasks.rake +4 -0
- data/lib/westfield_swagger/api_specification.rb +123 -0
- data/lib/westfield_swagger/engine.rb +34 -0
- data/lib/westfield_swagger/utilities.rb +10 -0
- data/lib/westfield_swagger/version.rb +3 -0
- data/lib/westfield_swagger.rb +5 -0
- data/public/swagger/css/print.css +1175 -0
- data/public/swagger/css/reset.css +125 -0
- data/public/swagger/css/screen.css +1282 -0
- data/public/swagger/css/style.css +250 -0
- data/public/swagger/css/typography.css +26 -0
- data/public/swagger/fonts/droid-sans-v6-latin-700.eot +0 -0
- data/public/swagger/fonts/droid-sans-v6-latin-700.svg +411 -0
- data/public/swagger/fonts/droid-sans-v6-latin-700.ttf +0 -0
- data/public/swagger/fonts/droid-sans-v6-latin-700.woff +0 -0
- data/public/swagger/fonts/droid-sans-v6-latin-700.woff2 +0 -0
- data/public/swagger/fonts/droid-sans-v6-latin-regular.eot +0 -0
- data/public/swagger/fonts/droid-sans-v6-latin-regular.svg +403 -0
- data/public/swagger/fonts/droid-sans-v6-latin-regular.ttf +0 -0
- data/public/swagger/fonts/droid-sans-v6-latin-regular.woff +0 -0
- data/public/swagger/fonts/droid-sans-v6-latin-regular.woff2 +0 -0
- data/public/swagger/images/explorer_icons.png +0 -0
- data/public/swagger/images/favicon-16x16.png +0 -0
- data/public/swagger/images/favicon-32x32.png +0 -0
- data/public/swagger/images/favicon.ico +0 -0
- data/public/swagger/images/logo_small.png +0 -0
- data/public/swagger/images/pet_store_api.png +0 -0
- data/public/swagger/images/throbber.gif +0 -0
- data/public/swagger/images/wordnik_api.png +0 -0
- data/public/swagger/lang/en.js +53 -0
- data/public/swagger/lang/es.js +52 -0
- data/public/swagger/lang/fr.js +53 -0
- data/public/swagger/lang/ja.js +53 -0
- data/public/swagger/lang/pt.js +53 -0
- data/public/swagger/lang/ru.js +52 -0
- data/public/swagger/lang/tr.js +53 -0
- data/public/swagger/lang/translator.js +39 -0
- data/public/swagger/lang/zh-cn.js +53 -0
- data/public/swagger/lib/backbone-min.js +15 -0
- data/public/swagger/lib/handlebars-2.0.0.js +28 -0
- data/public/swagger/lib/highlight.7.3.pack.js +1 -0
- data/public/swagger/lib/jquery-1.8.0.min.js +2 -0
- data/public/swagger/lib/jquery.ba-bbq.min.js +18 -0
- data/public/swagger/lib/jquery.slideto.min.js +1 -0
- data/public/swagger/lib/jquery.wiggle.min.js +8 -0
- data/public/swagger/lib/marked.js +1272 -0
- data/public/swagger/lib/swagger-oauth.js +294 -0
- data/public/swagger/lib/underscore-min.js +6 -0
- data/public/swagger/lib/underscore-min.map +1 -0
- data/public/swagger/o2c.html +20 -0
- data/public/swagger/swagger-ui.js +32291 -0
- data/westfield_swagger.gemspec +24 -0
- metadata +152 -0
data/bin/console
ADDED
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
#!/usr/bin/env ruby
|
|
2
|
+
|
|
3
|
+
require "bundler/setup"
|
|
4
|
+
require "rails"
|
|
5
|
+
require "westfield_swagger"
|
|
6
|
+
|
|
7
|
+
# You can add fixtures and/or initialization code here to make experimenting
|
|
8
|
+
# with your gem easier. You can also use a different console, if you like.
|
|
9
|
+
|
|
10
|
+
# (If you use this, don't forget to add pry to your Gemfile!)
|
|
11
|
+
# require "pry"
|
|
12
|
+
# Pry.start
|
|
13
|
+
|
|
14
|
+
require "irb"
|
|
15
|
+
IRB.start
|
data/bin/rails
ADDED
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
#!/usr/bin/env ruby
|
|
2
|
+
# This command will automatically be run when you run "rails" with Rails 4 gems installed from the root of your application.
|
|
3
|
+
|
|
4
|
+
ENGINE_ROOT = File.expand_path('../..', __FILE__)
|
|
5
|
+
ENGINE_PATH = File.expand_path('../../lib/westfield_swagger/engine', __FILE__)
|
|
6
|
+
|
|
7
|
+
# Set up gems listed in the Gemfile.
|
|
8
|
+
ENV['BUNDLE_GEMFILE'] ||= File.expand_path('../../Gemfile', __FILE__)
|
|
9
|
+
require 'bundler/setup' if File.exist?(ENV['BUNDLE_GEMFILE'])
|
|
10
|
+
|
|
11
|
+
require 'rails/all'
|
|
12
|
+
require 'rails/engine/commands'
|
data/bin/setup
ADDED
data/config/routes.rb
ADDED
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
WestfieldSwagger::Engine.routes.draw do
|
|
2
|
+
|
|
3
|
+
get '/swagger/:service/:version(.:format)', to: "swagger#index",
|
|
4
|
+
version: /\d+/,
|
|
5
|
+
defaults: {format: 'html', version: WestfieldSwagger.api_version}
|
|
6
|
+
get '/swagger/:version(.:format)', to: "swagger#index",
|
|
7
|
+
version: /\d+/,
|
|
8
|
+
defaults: {format: 'html', version: WestfieldSwagger.api_version}
|
|
9
|
+
|
|
10
|
+
end
|
data/contributing.md
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
## Contributing
|
|
2
|
+
|
|
3
|
+
0. Raise an issue in this project outlining the change you'd like to make. You'll need the `issue_number`
|
|
4
|
+
1. Fork this project into your own Github account
|
|
5
|
+
2. Create your feature branch (`git checkout -b {issue_number}_my-new-feature`)
|
|
6
|
+
4. Push to the branch (`git push -u origin {issue_number}_my-new-feature`)
|
|
7
|
+
5. Write RSpec tests to formalise the outcomes of your change
|
|
8
|
+
6. Write the code to implement the changes, ensuring that the tests eventually pass
|
|
9
|
+
7. Commit your changes (`git commit -am '{issue_number} Added some feature'`)
|
|
10
|
+
8. Push to the branch (`git push -u origin my-new-feature`)
|
|
11
|
+
9. Create a new Pull Request using Github's built-in mechanisms.
|
|
12
|
+
10. Wait for a code review to come back, or an approval.
|
|
13
|
+
11. Either go back and fix whatever the reviewers recommend, or watch and smile as your PR gets merged in and you become part of software development history.
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
class SwaggerGenerator < Rails::Generators::Base
|
|
2
|
+
source_root File.expand_path('../templates', __FILE__)
|
|
3
|
+
|
|
4
|
+
def copy_example_yml
|
|
5
|
+
copy_file 'example.yml', "lib/swagger/#{WestfieldSwagger.api_version}.yml"
|
|
6
|
+
copy_file 'spec.rb', 'spec/requests/swagger_spec.rb'
|
|
7
|
+
route "mount WestfieldSwagger::Engine, at: '/'\n"
|
|
8
|
+
end
|
|
9
|
+
end
|
|
@@ -0,0 +1,104 @@
|
|
|
1
|
+
swagger: '2.0'
|
|
2
|
+
info:
|
|
3
|
+
version: "<%= WestfieldSwagger.api_version %>"
|
|
4
|
+
title: "Westfield Example Service"
|
|
5
|
+
description: "Information on API endpoints for Example Service"
|
|
6
|
+
host: "your.host.path"
|
|
7
|
+
tags: [ { name: "EXAMPLE" } ]
|
|
8
|
+
schemes:
|
|
9
|
+
- http
|
|
10
|
+
- https
|
|
11
|
+
consumes:
|
|
12
|
+
- application/json
|
|
13
|
+
produces:
|
|
14
|
+
- application/json
|
|
15
|
+
|
|
16
|
+
paths:
|
|
17
|
+
|
|
18
|
+
"/examples":
|
|
19
|
+
|
|
20
|
+
get:
|
|
21
|
+
description: "List examples."
|
|
22
|
+
operationId: "examples#index"
|
|
23
|
+
tags: ["EXAMPLE"]
|
|
24
|
+
parameters:
|
|
25
|
+
- name: version
|
|
26
|
+
in: query
|
|
27
|
+
description: "API version. Version number for the API."
|
|
28
|
+
required: true
|
|
29
|
+
default: "1"
|
|
30
|
+
type: string
|
|
31
|
+
responses:
|
|
32
|
+
200:
|
|
33
|
+
description: "Successfully retrieved the list of examples."
|
|
34
|
+
schema:
|
|
35
|
+
type: object
|
|
36
|
+
required:
|
|
37
|
+
- data
|
|
38
|
+
- errors
|
|
39
|
+
- meta
|
|
40
|
+
additionalProperties: false
|
|
41
|
+
properties:
|
|
42
|
+
data:
|
|
43
|
+
type: array
|
|
44
|
+
items:
|
|
45
|
+
$ref: "#/definitions/example"
|
|
46
|
+
errors:
|
|
47
|
+
type: object
|
|
48
|
+
metadata:
|
|
49
|
+
type: object
|
|
50
|
+
|
|
51
|
+
"/examples/{example_id}":
|
|
52
|
+
|
|
53
|
+
get:
|
|
54
|
+
description: "Individual example."
|
|
55
|
+
operationId: "examples#show"
|
|
56
|
+
parameters:
|
|
57
|
+
- name: example_id
|
|
58
|
+
in: path
|
|
59
|
+
type: string
|
|
60
|
+
description: "Example identifier. Request the example with example_id."
|
|
61
|
+
required: true
|
|
62
|
+
- name: version
|
|
63
|
+
in: query
|
|
64
|
+
type: string
|
|
65
|
+
description: "API version. Version number for the API."
|
|
66
|
+
default: "1"
|
|
67
|
+
required: true
|
|
68
|
+
responses:
|
|
69
|
+
200:
|
|
70
|
+
schema:
|
|
71
|
+
description: "Successfully retrieved the individual example."
|
|
72
|
+
type: object
|
|
73
|
+
properties:
|
|
74
|
+
data:
|
|
75
|
+
$ref: "#/definitions/example"
|
|
76
|
+
errors:
|
|
77
|
+
type: object
|
|
78
|
+
metadata:
|
|
79
|
+
type: object
|
|
80
|
+
404:
|
|
81
|
+
description: "Example not found."
|
|
82
|
+
schema:
|
|
83
|
+
type: object
|
|
84
|
+
properties:
|
|
85
|
+
data:
|
|
86
|
+
type: object
|
|
87
|
+
errors:
|
|
88
|
+
type: object
|
|
89
|
+
metadata:
|
|
90
|
+
type: object
|
|
91
|
+
|
|
92
|
+
definitions:
|
|
93
|
+
|
|
94
|
+
example:
|
|
95
|
+
type: object
|
|
96
|
+
required:
|
|
97
|
+
- name
|
|
98
|
+
properties:
|
|
99
|
+
id:
|
|
100
|
+
type: integer
|
|
101
|
+
description: "Identifier. Identifier to retrieve this example."
|
|
102
|
+
name:
|
|
103
|
+
type: string
|
|
104
|
+
description: "Example name."
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
RSpec.describe 'the API', type: :apivore, order: :defined do
|
|
2
|
+
subject { Apivore::SwaggerChecker.instance_for(WestfieldSwagger.path_for(<%= WestfieldSwagger.api_version %>)) }
|
|
3
|
+
|
|
4
|
+
context 'has valid paths' do
|
|
5
|
+
# Tests go here
|
|
6
|
+
|
|
7
|
+
# Example:
|
|
8
|
+
let(:params) { { "example_id" => 1 } }
|
|
9
|
+
specify do
|
|
10
|
+
expect(subject).to validate(
|
|
11
|
+
:get, '/examples/{example_id}.json', 200, params
|
|
12
|
+
)
|
|
13
|
+
end
|
|
14
|
+
|
|
15
|
+
end
|
|
16
|
+
|
|
17
|
+
context 'and' do
|
|
18
|
+
it 'tests all documented routes' do
|
|
19
|
+
expect(subject).to validate_all_paths
|
|
20
|
+
end
|
|
21
|
+
end
|
|
22
|
+
end
|
|
@@ -0,0 +1,123 @@
|
|
|
1
|
+
require_relative 'utilities'
|
|
2
|
+
include WestfieldSwagger::Utilities
|
|
3
|
+
|
|
4
|
+
class WestfieldSwagger::ApiSpecification
|
|
5
|
+
class SpecificationMissing < StandardError; end
|
|
6
|
+
class SpecificationParseError < StandardError; end
|
|
7
|
+
|
|
8
|
+
def initialize(version, context, request, env_prefix = "")
|
|
9
|
+
@version = version
|
|
10
|
+
@context = context
|
|
11
|
+
@request = request
|
|
12
|
+
@env_version = "#{env_prefix}#{version}"
|
|
13
|
+
end
|
|
14
|
+
|
|
15
|
+
attr_reader :version, :env_version
|
|
16
|
+
|
|
17
|
+
def read
|
|
18
|
+
read_json || read_directory || read_yaml || swagger_specifications_not_found
|
|
19
|
+
end
|
|
20
|
+
|
|
21
|
+
def swagger_api_host
|
|
22
|
+
return ENV['API_HOST_URL'] if ENV['API_HOST_URL'].present?
|
|
23
|
+
|
|
24
|
+
# Do not specify the port if it's standard HTTP/HTTPS
|
|
25
|
+
return request.host if [80, 443].include?(request.port)
|
|
26
|
+
|
|
27
|
+
request.host_with_port
|
|
28
|
+
end
|
|
29
|
+
|
|
30
|
+
private
|
|
31
|
+
|
|
32
|
+
attr_reader :request
|
|
33
|
+
|
|
34
|
+
def most_recent_file_modification_date
|
|
35
|
+
individual_swagger_files.map {|file| File.mtime(file) }.sort.last
|
|
36
|
+
end
|
|
37
|
+
|
|
38
|
+
def last_modified_at
|
|
39
|
+
return most_recent_file_modification_date.utc.iso8601 if swagger_directory_exists?
|
|
40
|
+
|
|
41
|
+
path_to_swagger_file = nil
|
|
42
|
+
|
|
43
|
+
if swagger_file_exists?(extension: 'json')
|
|
44
|
+
path_to_swagger_file = file_path(extension: 'json')
|
|
45
|
+
elsif swagger_file_exists?(extension: 'yml')
|
|
46
|
+
path_to_swagger_file = file_path(extension: 'yml')
|
|
47
|
+
end
|
|
48
|
+
|
|
49
|
+
File.mtime(path_to_swagger_file).utc.iso8601 if path_to_swagger_file
|
|
50
|
+
end
|
|
51
|
+
|
|
52
|
+
def add_info_block(doc)
|
|
53
|
+
doc['info']['x-last_modified_at'] = last_modified_at
|
|
54
|
+
doc['info']['license'] = { name: 'Apache 2 License',
|
|
55
|
+
url: 'http://www.apache.org/licenses/LICENSE-2.0' }
|
|
56
|
+
doc['info']['contact'] = { name: 'Westfield Support',
|
|
57
|
+
url: 'http://www.westfieldstatus.com',
|
|
58
|
+
email: 'help@westfieldsupport.com' }
|
|
59
|
+
end
|
|
60
|
+
|
|
61
|
+
def convert_to_json(swagger_document:)
|
|
62
|
+
swagger_document['host'] ||= swagger_api_host
|
|
63
|
+
add_info_block(swagger_document)
|
|
64
|
+
JSON.pretty_generate(swagger_document)
|
|
65
|
+
rescue StandardError => e
|
|
66
|
+
message = "Unable to parse API specification for version '#{version}'"
|
|
67
|
+
if Rails.env.development? || Rails.env.test?
|
|
68
|
+
raise $!, "#{self.class.parent_name}: #{message} Error: #{e}", $!.backtrace
|
|
69
|
+
end
|
|
70
|
+
fail SpecificationParseError, message
|
|
71
|
+
end
|
|
72
|
+
|
|
73
|
+
def swagger_specifications_not_found
|
|
74
|
+
fail SpecificationMissing, "API Specification for version '#{version}' does not exist."
|
|
75
|
+
end
|
|
76
|
+
|
|
77
|
+
def read_json
|
|
78
|
+
File.read(file_path(extension: 'json')) if swagger_file_exists?(extension: 'json')
|
|
79
|
+
end
|
|
80
|
+
|
|
81
|
+
def individual_swagger_files
|
|
82
|
+
Dir.glob(directory_path(wildcard: '**/*.yml'))
|
|
83
|
+
end
|
|
84
|
+
|
|
85
|
+
def read_directory
|
|
86
|
+
convert_to_json(swagger_document: combined_swagger_files) if swagger_directory_exists?
|
|
87
|
+
end
|
|
88
|
+
|
|
89
|
+
def read_yaml
|
|
90
|
+
if swagger_file_exists?(extension: 'yml')
|
|
91
|
+
convert_to_json(swagger_document: read_from_file(file_path(extension: 'yml')))
|
|
92
|
+
end
|
|
93
|
+
end
|
|
94
|
+
|
|
95
|
+
def swagger_file_exists?(extension:)
|
|
96
|
+
File.file?(file_path(extension: extension))
|
|
97
|
+
end
|
|
98
|
+
|
|
99
|
+
def file_path(extension:)
|
|
100
|
+
Rails.root.join('lib', 'swagger', "#{env_version}.#{extension}")
|
|
101
|
+
end
|
|
102
|
+
|
|
103
|
+
def swagger_directory_exists?
|
|
104
|
+
File.directory?(directory_path)
|
|
105
|
+
end
|
|
106
|
+
|
|
107
|
+
def directory_path(wildcard: '')
|
|
108
|
+
Rails.root.join('lib', 'swagger', version, wildcard)
|
|
109
|
+
end
|
|
110
|
+
|
|
111
|
+
def read_from_file(filepath)
|
|
112
|
+
YAML.load(ERB.new(File.read(filepath)).result(@context))
|
|
113
|
+
end
|
|
114
|
+
|
|
115
|
+
def combined_swagger_files
|
|
116
|
+
data = individual_swagger_files.map do |filepath|
|
|
117
|
+
read_from_file(filepath)
|
|
118
|
+
end
|
|
119
|
+
unsorted_data = data.inject({}) { |hash, item| hash.deep_merge(item) }
|
|
120
|
+
deeply_sort_hash(unsorted_data)
|
|
121
|
+
end
|
|
122
|
+
|
|
123
|
+
end
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
module WestfieldSwagger
|
|
2
|
+
class Engine < ::Rails::Engine
|
|
3
|
+
isolate_namespace WestfieldSwagger
|
|
4
|
+
|
|
5
|
+
config.generators do |g|
|
|
6
|
+
g.test_framework :rspec
|
|
7
|
+
g.assets false
|
|
8
|
+
g.helper false
|
|
9
|
+
end
|
|
10
|
+
|
|
11
|
+
initializer 'static assets' do |app|
|
|
12
|
+
app.middleware.use(
|
|
13
|
+
::ActionDispatch::Static,
|
|
14
|
+
"#{root}/public"
|
|
15
|
+
)
|
|
16
|
+
end
|
|
17
|
+
end
|
|
18
|
+
|
|
19
|
+
DEFAULT_API_VERSION = '1'
|
|
20
|
+
|
|
21
|
+
def self.api_version
|
|
22
|
+
if ENV.include? 'SWAGGER_API_VERSION'
|
|
23
|
+
ENV['SWAGGER_API_VERSION'].to_s
|
|
24
|
+
elsif Rails.application.config.respond_to? :api_version
|
|
25
|
+
Rails.application.config.api_version.to_s
|
|
26
|
+
else
|
|
27
|
+
DEFAULT_API_VERSION
|
|
28
|
+
end
|
|
29
|
+
end
|
|
30
|
+
|
|
31
|
+
def self.path_for(version)
|
|
32
|
+
"/swagger/#{version}.json"
|
|
33
|
+
end
|
|
34
|
+
end
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
module WestfieldSwagger::Utilities
|
|
2
|
+
# taken from http://stackoverflow.com/a/13368706
|
|
3
|
+
def deeply_sort_hash(object)
|
|
4
|
+
return object unless object.is_a?(Hash)
|
|
5
|
+
hash = ActiveSupport::OrderedHash.new
|
|
6
|
+
object.each { |k, v| hash[k] = deeply_sort_hash(v) }
|
|
7
|
+
sorted = hash.sort { |a, b| a[0].to_s <=> b[0].to_s }
|
|
8
|
+
hash.class[sorted]
|
|
9
|
+
end
|
|
10
|
+
end
|
|
@@ -0,0 +1,1175 @@
|
|
|
1
|
+
/* Original style from softwaremaniacs.org (c) Ivan Sagalaev <Maniac@SoftwareManiacs.Org> */
|
|
2
|
+
.swagger-section pre code {
|
|
3
|
+
display: block;
|
|
4
|
+
padding: 0.5em;
|
|
5
|
+
background: #F0F0F0;
|
|
6
|
+
}
|
|
7
|
+
.swagger-section pre code,
|
|
8
|
+
.swagger-section pre .subst,
|
|
9
|
+
.swagger-section pre .tag .title,
|
|
10
|
+
.swagger-section pre .lisp .title,
|
|
11
|
+
.swagger-section pre .clojure .built_in,
|
|
12
|
+
.swagger-section pre .nginx .title {
|
|
13
|
+
color: black;
|
|
14
|
+
}
|
|
15
|
+
.swagger-section pre .string,
|
|
16
|
+
.swagger-section pre .title,
|
|
17
|
+
.swagger-section pre .constant,
|
|
18
|
+
.swagger-section pre .parent,
|
|
19
|
+
.swagger-section pre .tag .value,
|
|
20
|
+
.swagger-section pre .rules .value,
|
|
21
|
+
.swagger-section pre .rules .value .number,
|
|
22
|
+
.swagger-section pre .preprocessor,
|
|
23
|
+
.swagger-section pre .ruby .symbol,
|
|
24
|
+
.swagger-section pre .ruby .symbol .string,
|
|
25
|
+
.swagger-section pre .aggregate,
|
|
26
|
+
.swagger-section pre .template_tag,
|
|
27
|
+
.swagger-section pre .django .variable,
|
|
28
|
+
.swagger-section pre .smalltalk .class,
|
|
29
|
+
.swagger-section pre .addition,
|
|
30
|
+
.swagger-section pre .flow,
|
|
31
|
+
.swagger-section pre .stream,
|
|
32
|
+
.swagger-section pre .bash .variable,
|
|
33
|
+
.swagger-section pre .apache .tag,
|
|
34
|
+
.swagger-section pre .apache .cbracket,
|
|
35
|
+
.swagger-section pre .tex .command,
|
|
36
|
+
.swagger-section pre .tex .special,
|
|
37
|
+
.swagger-section pre .erlang_repl .function_or_atom,
|
|
38
|
+
.swagger-section pre .markdown .header {
|
|
39
|
+
color: #800;
|
|
40
|
+
}
|
|
41
|
+
.swagger-section pre .comment,
|
|
42
|
+
.swagger-section pre .annotation,
|
|
43
|
+
.swagger-section pre .template_comment,
|
|
44
|
+
.swagger-section pre .diff .header,
|
|
45
|
+
.swagger-section pre .chunk,
|
|
46
|
+
.swagger-section pre .markdown .blockquote {
|
|
47
|
+
color: #888;
|
|
48
|
+
}
|
|
49
|
+
.swagger-section pre .number,
|
|
50
|
+
.swagger-section pre .date,
|
|
51
|
+
.swagger-section pre .regexp,
|
|
52
|
+
.swagger-section pre .literal,
|
|
53
|
+
.swagger-section pre .smalltalk .symbol,
|
|
54
|
+
.swagger-section pre .smalltalk .char,
|
|
55
|
+
.swagger-section pre .go .constant,
|
|
56
|
+
.swagger-section pre .change,
|
|
57
|
+
.swagger-section pre .markdown .bullet,
|
|
58
|
+
.swagger-section pre .markdown .link_url {
|
|
59
|
+
color: #080;
|
|
60
|
+
}
|
|
61
|
+
.swagger-section pre .label,
|
|
62
|
+
.swagger-section pre .javadoc,
|
|
63
|
+
.swagger-section pre .ruby .string,
|
|
64
|
+
.swagger-section pre .decorator,
|
|
65
|
+
.swagger-section pre .filter .argument,
|
|
66
|
+
.swagger-section pre .localvars,
|
|
67
|
+
.swagger-section pre .array,
|
|
68
|
+
.swagger-section pre .attr_selector,
|
|
69
|
+
.swagger-section pre .important,
|
|
70
|
+
.swagger-section pre .pseudo,
|
|
71
|
+
.swagger-section pre .pi,
|
|
72
|
+
.swagger-section pre .doctype,
|
|
73
|
+
.swagger-section pre .deletion,
|
|
74
|
+
.swagger-section pre .envvar,
|
|
75
|
+
.swagger-section pre .shebang,
|
|
76
|
+
.swagger-section pre .apache .sqbracket,
|
|
77
|
+
.swagger-section pre .nginx .built_in,
|
|
78
|
+
.swagger-section pre .tex .formula,
|
|
79
|
+
.swagger-section pre .erlang_repl .reserved,
|
|
80
|
+
.swagger-section pre .prompt,
|
|
81
|
+
.swagger-section pre .markdown .link_label,
|
|
82
|
+
.swagger-section pre .vhdl .attribute,
|
|
83
|
+
.swagger-section pre .clojure .attribute,
|
|
84
|
+
.swagger-section pre .coffeescript .property {
|
|
85
|
+
color: #8888ff;
|
|
86
|
+
}
|
|
87
|
+
.swagger-section pre .keyword,
|
|
88
|
+
.swagger-section pre .id,
|
|
89
|
+
.swagger-section pre .phpdoc,
|
|
90
|
+
.swagger-section pre .title,
|
|
91
|
+
.swagger-section pre .built_in,
|
|
92
|
+
.swagger-section pre .aggregate,
|
|
93
|
+
.swagger-section pre .css .tag,
|
|
94
|
+
.swagger-section pre .javadoctag,
|
|
95
|
+
.swagger-section pre .phpdoc,
|
|
96
|
+
.swagger-section pre .yardoctag,
|
|
97
|
+
.swagger-section pre .smalltalk .class,
|
|
98
|
+
.swagger-section pre .winutils,
|
|
99
|
+
.swagger-section pre .bash .variable,
|
|
100
|
+
.swagger-section pre .apache .tag,
|
|
101
|
+
.swagger-section pre .go .typename,
|
|
102
|
+
.swagger-section pre .tex .command,
|
|
103
|
+
.swagger-section pre .markdown .strong,
|
|
104
|
+
.swagger-section pre .request,
|
|
105
|
+
.swagger-section pre .status {
|
|
106
|
+
font-weight: bold;
|
|
107
|
+
}
|
|
108
|
+
.swagger-section pre .markdown .emphasis {
|
|
109
|
+
font-style: italic;
|
|
110
|
+
}
|
|
111
|
+
.swagger-section pre .nginx .built_in {
|
|
112
|
+
font-weight: normal;
|
|
113
|
+
}
|
|
114
|
+
.swagger-section pre .coffeescript .javascript,
|
|
115
|
+
.swagger-section pre .javascript .xml,
|
|
116
|
+
.swagger-section pre .tex .formula,
|
|
117
|
+
.swagger-section pre .xml .javascript,
|
|
118
|
+
.swagger-section pre .xml .vbscript,
|
|
119
|
+
.swagger-section pre .xml .css,
|
|
120
|
+
.swagger-section pre .xml .cdata {
|
|
121
|
+
opacity: 0.5;
|
|
122
|
+
}
|
|
123
|
+
.swagger-section .swagger-ui-wrap {
|
|
124
|
+
line-height: 1;
|
|
125
|
+
font-family: "Droid Sans", sans-serif;
|
|
126
|
+
max-width: 960px;
|
|
127
|
+
margin-left: auto;
|
|
128
|
+
margin-right: auto;
|
|
129
|
+
}
|
|
130
|
+
.swagger-section .swagger-ui-wrap b,
|
|
131
|
+
.swagger-section .swagger-ui-wrap strong {
|
|
132
|
+
font-family: "Droid Sans", sans-serif;
|
|
133
|
+
font-weight: bold;
|
|
134
|
+
}
|
|
135
|
+
.swagger-section .swagger-ui-wrap q,
|
|
136
|
+
.swagger-section .swagger-ui-wrap blockquote {
|
|
137
|
+
quotes: none;
|
|
138
|
+
}
|
|
139
|
+
.swagger-section .swagger-ui-wrap p {
|
|
140
|
+
line-height: 1.4em;
|
|
141
|
+
padding: 0 0 10px;
|
|
142
|
+
color: #333333;
|
|
143
|
+
}
|
|
144
|
+
.swagger-section .swagger-ui-wrap q:before,
|
|
145
|
+
.swagger-section .swagger-ui-wrap q:after,
|
|
146
|
+
.swagger-section .swagger-ui-wrap blockquote:before,
|
|
147
|
+
.swagger-section .swagger-ui-wrap blockquote:after {
|
|
148
|
+
content: none;
|
|
149
|
+
}
|
|
150
|
+
.swagger-section .swagger-ui-wrap .heading_with_menu h1,
|
|
151
|
+
.swagger-section .swagger-ui-wrap .heading_with_menu h2,
|
|
152
|
+
.swagger-section .swagger-ui-wrap .heading_with_menu h3,
|
|
153
|
+
.swagger-section .swagger-ui-wrap .heading_with_menu h4,
|
|
154
|
+
.swagger-section .swagger-ui-wrap .heading_with_menu h5,
|
|
155
|
+
.swagger-section .swagger-ui-wrap .heading_with_menu h6 {
|
|
156
|
+
display: block;
|
|
157
|
+
clear: none;
|
|
158
|
+
float: left;
|
|
159
|
+
-moz-box-sizing: border-box;
|
|
160
|
+
-webkit-box-sizing: border-box;
|
|
161
|
+
-ms-box-sizing: border-box;
|
|
162
|
+
box-sizing: border-box;
|
|
163
|
+
width: 60%;
|
|
164
|
+
}
|
|
165
|
+
.swagger-section .swagger-ui-wrap table {
|
|
166
|
+
border-collapse: collapse;
|
|
167
|
+
border-spacing: 0;
|
|
168
|
+
}
|
|
169
|
+
.swagger-section .swagger-ui-wrap table thead tr th {
|
|
170
|
+
padding: 5px;
|
|
171
|
+
font-size: 0.9em;
|
|
172
|
+
color: #666666;
|
|
173
|
+
border-bottom: 1px solid #999999;
|
|
174
|
+
}
|
|
175
|
+
.swagger-section .swagger-ui-wrap table tbody tr:last-child td {
|
|
176
|
+
border-bottom: none;
|
|
177
|
+
}
|
|
178
|
+
.swagger-section .swagger-ui-wrap table tbody tr.offset {
|
|
179
|
+
background-color: #f0f0f0;
|
|
180
|
+
}
|
|
181
|
+
.swagger-section .swagger-ui-wrap table tbody tr td {
|
|
182
|
+
padding: 6px;
|
|
183
|
+
font-size: 0.9em;
|
|
184
|
+
border-bottom: 1px solid #cccccc;
|
|
185
|
+
vertical-align: top;
|
|
186
|
+
line-height: 1.3em;
|
|
187
|
+
}
|
|
188
|
+
.swagger-section .swagger-ui-wrap ol {
|
|
189
|
+
margin: 0px 0 10px;
|
|
190
|
+
padding: 0 0 0 18px;
|
|
191
|
+
list-style-type: decimal;
|
|
192
|
+
}
|
|
193
|
+
.swagger-section .swagger-ui-wrap ol li {
|
|
194
|
+
padding: 5px 0px;
|
|
195
|
+
font-size: 0.9em;
|
|
196
|
+
color: #333333;
|
|
197
|
+
}
|
|
198
|
+
.swagger-section .swagger-ui-wrap ol,
|
|
199
|
+
.swagger-section .swagger-ui-wrap ul {
|
|
200
|
+
list-style: none;
|
|
201
|
+
}
|
|
202
|
+
.swagger-section .swagger-ui-wrap h1 a,
|
|
203
|
+
.swagger-section .swagger-ui-wrap h2 a,
|
|
204
|
+
.swagger-section .swagger-ui-wrap h3 a,
|
|
205
|
+
.swagger-section .swagger-ui-wrap h4 a,
|
|
206
|
+
.swagger-section .swagger-ui-wrap h5 a,
|
|
207
|
+
.swagger-section .swagger-ui-wrap h6 a {
|
|
208
|
+
text-decoration: none;
|
|
209
|
+
}
|
|
210
|
+
.swagger-section .swagger-ui-wrap h1 a:hover,
|
|
211
|
+
.swagger-section .swagger-ui-wrap h2 a:hover,
|
|
212
|
+
.swagger-section .swagger-ui-wrap h3 a:hover,
|
|
213
|
+
.swagger-section .swagger-ui-wrap h4 a:hover,
|
|
214
|
+
.swagger-section .swagger-ui-wrap h5 a:hover,
|
|
215
|
+
.swagger-section .swagger-ui-wrap h6 a:hover {
|
|
216
|
+
text-decoration: underline;
|
|
217
|
+
}
|
|
218
|
+
.swagger-section .swagger-ui-wrap h1 span.divider,
|
|
219
|
+
.swagger-section .swagger-ui-wrap h2 span.divider,
|
|
220
|
+
.swagger-section .swagger-ui-wrap h3 span.divider,
|
|
221
|
+
.swagger-section .swagger-ui-wrap h4 span.divider,
|
|
222
|
+
.swagger-section .swagger-ui-wrap h5 span.divider,
|
|
223
|
+
.swagger-section .swagger-ui-wrap h6 span.divider {
|
|
224
|
+
color: #aaaaaa;
|
|
225
|
+
}
|
|
226
|
+
.swagger-section .swagger-ui-wrap a {
|
|
227
|
+
color: #547f00;
|
|
228
|
+
}
|
|
229
|
+
.swagger-section .swagger-ui-wrap a img {
|
|
230
|
+
border: none;
|
|
231
|
+
}
|
|
232
|
+
.swagger-section .swagger-ui-wrap article,
|
|
233
|
+
.swagger-section .swagger-ui-wrap aside,
|
|
234
|
+
.swagger-section .swagger-ui-wrap details,
|
|
235
|
+
.swagger-section .swagger-ui-wrap figcaption,
|
|
236
|
+
.swagger-section .swagger-ui-wrap figure,
|
|
237
|
+
.swagger-section .swagger-ui-wrap footer,
|
|
238
|
+
.swagger-section .swagger-ui-wrap header,
|
|
239
|
+
.swagger-section .swagger-ui-wrap hgroup,
|
|
240
|
+
.swagger-section .swagger-ui-wrap menu,
|
|
241
|
+
.swagger-section .swagger-ui-wrap nav,
|
|
242
|
+
.swagger-section .swagger-ui-wrap section,
|
|
243
|
+
.swagger-section .swagger-ui-wrap summary {
|
|
244
|
+
display: block;
|
|
245
|
+
}
|
|
246
|
+
.swagger-section .swagger-ui-wrap pre {
|
|
247
|
+
font-family: "Anonymous Pro", "Menlo", "Consolas", "Bitstream Vera Sans Mono", "Courier New", monospace;
|
|
248
|
+
background-color: #fcf6db;
|
|
249
|
+
border: 1px solid #e5e0c6;
|
|
250
|
+
padding: 10px;
|
|
251
|
+
}
|
|
252
|
+
.swagger-section .swagger-ui-wrap pre code {
|
|
253
|
+
line-height: 1.6em;
|
|
254
|
+
background: none;
|
|
255
|
+
}
|
|
256
|
+
.swagger-section .swagger-ui-wrap .content > .content-type > div > label {
|
|
257
|
+
clear: both;
|
|
258
|
+
display: block;
|
|
259
|
+
color: #0F6AB4;
|
|
260
|
+
font-size: 1.1em;
|
|
261
|
+
margin: 0;
|
|
262
|
+
padding: 15px 0 5px;
|
|
263
|
+
}
|
|
264
|
+
.swagger-section .swagger-ui-wrap .content pre {
|
|
265
|
+
font-size: 12px;
|
|
266
|
+
margin-top: 5px;
|
|
267
|
+
padding: 5px;
|
|
268
|
+
}
|
|
269
|
+
.swagger-section .swagger-ui-wrap .icon-btn {
|
|
270
|
+
cursor: pointer;
|
|
271
|
+
}
|
|
272
|
+
.swagger-section .swagger-ui-wrap .info_title {
|
|
273
|
+
padding-bottom: 10px;
|
|
274
|
+
font-weight: bold;
|
|
275
|
+
font-size: 25px;
|
|
276
|
+
}
|
|
277
|
+
.swagger-section .swagger-ui-wrap .footer {
|
|
278
|
+
margin-top: 20px;
|
|
279
|
+
}
|
|
280
|
+
.swagger-section .swagger-ui-wrap p.big,
|
|
281
|
+
.swagger-section .swagger-ui-wrap div.big p {
|
|
282
|
+
font-size: 1em;
|
|
283
|
+
margin-bottom: 10px;
|
|
284
|
+
}
|
|
285
|
+
.swagger-section .swagger-ui-wrap form.fullwidth ol li.string input,
|
|
286
|
+
.swagger-section .swagger-ui-wrap form.fullwidth ol li.url input,
|
|
287
|
+
.swagger-section .swagger-ui-wrap form.fullwidth ol li.text textarea,
|
|
288
|
+
.swagger-section .swagger-ui-wrap form.fullwidth ol li.numeric input {
|
|
289
|
+
width: 500px !important;
|
|
290
|
+
}
|
|
291
|
+
.swagger-section .swagger-ui-wrap .info_license {
|
|
292
|
+
padding-bottom: 5px;
|
|
293
|
+
}
|
|
294
|
+
.swagger-section .swagger-ui-wrap .info_tos {
|
|
295
|
+
padding-bottom: 5px;
|
|
296
|
+
}
|
|
297
|
+
.swagger-section .swagger-ui-wrap .message-fail {
|
|
298
|
+
color: #cc0000;
|
|
299
|
+
}
|
|
300
|
+
.swagger-section .swagger-ui-wrap .info_url {
|
|
301
|
+
padding-bottom: 5px;
|
|
302
|
+
}
|
|
303
|
+
.swagger-section .swagger-ui-wrap .info_email {
|
|
304
|
+
padding-bottom: 5px;
|
|
305
|
+
}
|
|
306
|
+
.swagger-section .swagger-ui-wrap .info_name {
|
|
307
|
+
padding-bottom: 5px;
|
|
308
|
+
}
|
|
309
|
+
.swagger-section .swagger-ui-wrap .info_description {
|
|
310
|
+
padding-bottom: 10px;
|
|
311
|
+
font-size: 15px;
|
|
312
|
+
}
|
|
313
|
+
.swagger-section .swagger-ui-wrap .markdown ol li,
|
|
314
|
+
.swagger-section .swagger-ui-wrap .markdown ul li {
|
|
315
|
+
padding: 3px 0px;
|
|
316
|
+
line-height: 1.4em;
|
|
317
|
+
color: #333333;
|
|
318
|
+
}
|
|
319
|
+
.swagger-section .swagger-ui-wrap form.formtastic fieldset.inputs ol li.string input,
|
|
320
|
+
.swagger-section .swagger-ui-wrap form.formtastic fieldset.inputs ol li.url input,
|
|
321
|
+
.swagger-section .swagger-ui-wrap form.formtastic fieldset.inputs ol li.numeric input {
|
|
322
|
+
display: block;
|
|
323
|
+
padding: 4px;
|
|
324
|
+
width: auto;
|
|
325
|
+
clear: both;
|
|
326
|
+
}
|
|
327
|
+
.swagger-section .swagger-ui-wrap form.formtastic fieldset.inputs ol li.string input.title,
|
|
328
|
+
.swagger-section .swagger-ui-wrap form.formtastic fieldset.inputs ol li.url input.title,
|
|
329
|
+
.swagger-section .swagger-ui-wrap form.formtastic fieldset.inputs ol li.numeric input.title {
|
|
330
|
+
font-size: 1.3em;
|
|
331
|
+
}
|
|
332
|
+
.swagger-section .swagger-ui-wrap table.fullwidth {
|
|
333
|
+
width: 100%;
|
|
334
|
+
}
|
|
335
|
+
.swagger-section .swagger-ui-wrap .model-signature {
|
|
336
|
+
font-family: "Droid Sans", sans-serif;
|
|
337
|
+
font-size: 1em;
|
|
338
|
+
line-height: 1.5em;
|
|
339
|
+
}
|
|
340
|
+
.swagger-section .swagger-ui-wrap .model-signature .signature-nav a {
|
|
341
|
+
text-decoration: none;
|
|
342
|
+
color: #AAA;
|
|
343
|
+
}
|
|
344
|
+
.swagger-section .swagger-ui-wrap .model-signature .signature-nav a:hover {
|
|
345
|
+
text-decoration: underline;
|
|
346
|
+
color: black;
|
|
347
|
+
}
|
|
348
|
+
.swagger-section .swagger-ui-wrap .model-signature .signature-nav .selected {
|
|
349
|
+
color: black;
|
|
350
|
+
text-decoration: none;
|
|
351
|
+
}
|
|
352
|
+
.swagger-section .swagger-ui-wrap .model-signature .propType {
|
|
353
|
+
color: #5555aa;
|
|
354
|
+
}
|
|
355
|
+
.swagger-section .swagger-ui-wrap .model-signature pre:hover {
|
|
356
|
+
background-color: #ffffdd;
|
|
357
|
+
}
|
|
358
|
+
.swagger-section .swagger-ui-wrap .model-signature pre {
|
|
359
|
+
font-size: .85em;
|
|
360
|
+
line-height: 1.2em;
|
|
361
|
+
overflow: auto;
|
|
362
|
+
max-height: 200px;
|
|
363
|
+
cursor: pointer;
|
|
364
|
+
}
|
|
365
|
+
.swagger-section .swagger-ui-wrap .model-signature ul.signature-nav {
|
|
366
|
+
display: block;
|
|
367
|
+
margin: 0;
|
|
368
|
+
padding: 0;
|
|
369
|
+
}
|
|
370
|
+
.swagger-section .swagger-ui-wrap .model-signature ul.signature-nav li:last-child {
|
|
371
|
+
padding-right: 0;
|
|
372
|
+
border-right: none;
|
|
373
|
+
}
|
|
374
|
+
.swagger-section .swagger-ui-wrap .model-signature ul.signature-nav li {
|
|
375
|
+
float: left;
|
|
376
|
+
margin: 0 5px 5px 0;
|
|
377
|
+
padding: 2px 5px 2px 0;
|
|
378
|
+
border-right: 1px solid #ddd;
|
|
379
|
+
}
|
|
380
|
+
.swagger-section .swagger-ui-wrap .model-signature .propOpt {
|
|
381
|
+
color: #555;
|
|
382
|
+
}
|
|
383
|
+
.swagger-section .swagger-ui-wrap .model-signature .snippet small {
|
|
384
|
+
font-size: 0.75em;
|
|
385
|
+
}
|
|
386
|
+
.swagger-section .swagger-ui-wrap .model-signature .propOptKey {
|
|
387
|
+
font-style: italic;
|
|
388
|
+
}
|
|
389
|
+
.swagger-section .swagger-ui-wrap .model-signature .description .strong {
|
|
390
|
+
font-weight: bold;
|
|
391
|
+
color: #000;
|
|
392
|
+
font-size: .9em;
|
|
393
|
+
}
|
|
394
|
+
.swagger-section .swagger-ui-wrap .model-signature .description div {
|
|
395
|
+
font-size: 0.9em;
|
|
396
|
+
line-height: 1.5em;
|
|
397
|
+
margin-left: 1em;
|
|
398
|
+
}
|
|
399
|
+
.swagger-section .swagger-ui-wrap .model-signature .description .stronger {
|
|
400
|
+
font-weight: bold;
|
|
401
|
+
color: #000;
|
|
402
|
+
}
|
|
403
|
+
.swagger-section .swagger-ui-wrap .model-signature .description .propWrap .optionsWrapper {
|
|
404
|
+
border-spacing: 0;
|
|
405
|
+
position: absolute;
|
|
406
|
+
background-color: #ffffff;
|
|
407
|
+
border: 1px solid #bbbbbb;
|
|
408
|
+
display: none;
|
|
409
|
+
font-size: 11px;
|
|
410
|
+
max-width: 400px;
|
|
411
|
+
line-height: 30px;
|
|
412
|
+
color: black;
|
|
413
|
+
padding: 5px;
|
|
414
|
+
margin-left: 10px;
|
|
415
|
+
}
|
|
416
|
+
.swagger-section .swagger-ui-wrap .model-signature .description .propWrap .optionsWrapper th {
|
|
417
|
+
text-align: center;
|
|
418
|
+
background-color: #eeeeee;
|
|
419
|
+
border: 1px solid #bbbbbb;
|
|
420
|
+
font-size: 11px;
|
|
421
|
+
color: #666666;
|
|
422
|
+
font-weight: bold;
|
|
423
|
+
padding: 5px;
|
|
424
|
+
line-height: 15px;
|
|
425
|
+
}
|
|
426
|
+
.swagger-section .swagger-ui-wrap .model-signature .description .propWrap .optionsWrapper .optionName {
|
|
427
|
+
font-weight: bold;
|
|
428
|
+
}
|
|
429
|
+
.swagger-section .swagger-ui-wrap .model-signature .description .propDesc.markdown > p:first-child,
|
|
430
|
+
.swagger-section .swagger-ui-wrap .model-signature .description .propDesc.markdown > p:last-child {
|
|
431
|
+
display: inline;
|
|
432
|
+
}
|
|
433
|
+
.swagger-section .swagger-ui-wrap .model-signature .description .propDesc.markdown > p:not(:first-child):before {
|
|
434
|
+
display: block;
|
|
435
|
+
content: '';
|
|
436
|
+
}
|
|
437
|
+
.swagger-section .swagger-ui-wrap .model-signature .description span:last-of-type.propDesc.markdown > p:only-child {
|
|
438
|
+
margin-right: -3px;
|
|
439
|
+
}
|
|
440
|
+
.swagger-section .swagger-ui-wrap .model-signature .propName {
|
|
441
|
+
font-weight: bold;
|
|
442
|
+
}
|
|
443
|
+
.swagger-section .swagger-ui-wrap .model-signature .signature-container {
|
|
444
|
+
clear: both;
|
|
445
|
+
}
|
|
446
|
+
.swagger-section .swagger-ui-wrap .body-textarea {
|
|
447
|
+
width: 300px;
|
|
448
|
+
height: 100px;
|
|
449
|
+
border: 1px solid #aaa;
|
|
450
|
+
}
|
|
451
|
+
.swagger-section .swagger-ui-wrap .markdown p code,
|
|
452
|
+
.swagger-section .swagger-ui-wrap .markdown li code {
|
|
453
|
+
font-family: "Anonymous Pro", "Menlo", "Consolas", "Bitstream Vera Sans Mono", "Courier New", monospace;
|
|
454
|
+
background-color: #f0f0f0;
|
|
455
|
+
color: black;
|
|
456
|
+
padding: 1px 3px;
|
|
457
|
+
}
|
|
458
|
+
.swagger-section .swagger-ui-wrap .required {
|
|
459
|
+
font-weight: bold;
|
|
460
|
+
}
|
|
461
|
+
.swagger-section .swagger-ui-wrap input.parameter {
|
|
462
|
+
width: 300px;
|
|
463
|
+
border: 1px solid #aaa;
|
|
464
|
+
}
|
|
465
|
+
.swagger-section .swagger-ui-wrap h1 {
|
|
466
|
+
color: black;
|
|
467
|
+
font-size: 1.5em;
|
|
468
|
+
line-height: 1.3em;
|
|
469
|
+
padding: 10px 0 10px 0;
|
|
470
|
+
font-family: "Droid Sans", sans-serif;
|
|
471
|
+
font-weight: bold;
|
|
472
|
+
}
|
|
473
|
+
.swagger-section .swagger-ui-wrap .heading_with_menu {
|
|
474
|
+
float: none;
|
|
475
|
+
clear: both;
|
|
476
|
+
overflow: hidden;
|
|
477
|
+
display: block;
|
|
478
|
+
}
|
|
479
|
+
.swagger-section .swagger-ui-wrap .heading_with_menu ul {
|
|
480
|
+
display: block;
|
|
481
|
+
clear: none;
|
|
482
|
+
float: right;
|
|
483
|
+
-moz-box-sizing: border-box;
|
|
484
|
+
-webkit-box-sizing: border-box;
|
|
485
|
+
-ms-box-sizing: border-box;
|
|
486
|
+
box-sizing: border-box;
|
|
487
|
+
margin-top: 10px;
|
|
488
|
+
}
|
|
489
|
+
.swagger-section .swagger-ui-wrap h2 {
|
|
490
|
+
color: black;
|
|
491
|
+
font-size: 1.3em;
|
|
492
|
+
padding: 10px 0 10px 0;
|
|
493
|
+
}
|
|
494
|
+
.swagger-section .swagger-ui-wrap h2 a {
|
|
495
|
+
color: black;
|
|
496
|
+
}
|
|
497
|
+
.swagger-section .swagger-ui-wrap h2 span.sub {
|
|
498
|
+
font-size: 0.7em;
|
|
499
|
+
color: #999999;
|
|
500
|
+
font-style: italic;
|
|
501
|
+
}
|
|
502
|
+
.swagger-section .swagger-ui-wrap h2 span.sub a {
|
|
503
|
+
color: #777777;
|
|
504
|
+
}
|
|
505
|
+
.swagger-section .swagger-ui-wrap span.weak {
|
|
506
|
+
color: #666666;
|
|
507
|
+
}
|
|
508
|
+
.swagger-section .swagger-ui-wrap .message-success {
|
|
509
|
+
color: #89BF04;
|
|
510
|
+
}
|
|
511
|
+
.swagger-section .swagger-ui-wrap caption,
|
|
512
|
+
.swagger-section .swagger-ui-wrap th,
|
|
513
|
+
.swagger-section .swagger-ui-wrap td {
|
|
514
|
+
text-align: left;
|
|
515
|
+
font-weight: normal;
|
|
516
|
+
vertical-align: middle;
|
|
517
|
+
}
|
|
518
|
+
.swagger-section .swagger-ui-wrap .code {
|
|
519
|
+
font-family: "Anonymous Pro", "Menlo", "Consolas", "Bitstream Vera Sans Mono", "Courier New", monospace;
|
|
520
|
+
}
|
|
521
|
+
.swagger-section .swagger-ui-wrap form.formtastic fieldset.inputs ol li.text textarea {
|
|
522
|
+
font-family: "Droid Sans", sans-serif;
|
|
523
|
+
height: 250px;
|
|
524
|
+
padding: 4px;
|
|
525
|
+
display: block;
|
|
526
|
+
clear: both;
|
|
527
|
+
}
|
|
528
|
+
.swagger-section .swagger-ui-wrap form.formtastic fieldset.inputs ol li.select select {
|
|
529
|
+
display: block;
|
|
530
|
+
clear: both;
|
|
531
|
+
}
|
|
532
|
+
.swagger-section .swagger-ui-wrap form.formtastic fieldset.inputs ol li.boolean {
|
|
533
|
+
float: none;
|
|
534
|
+
clear: both;
|
|
535
|
+
overflow: hidden;
|
|
536
|
+
display: block;
|
|
537
|
+
}
|
|
538
|
+
.swagger-section .swagger-ui-wrap form.formtastic fieldset.inputs ol li.boolean label {
|
|
539
|
+
display: block;
|
|
540
|
+
float: left;
|
|
541
|
+
clear: none;
|
|
542
|
+
margin: 0;
|
|
543
|
+
padding: 0;
|
|
544
|
+
}
|
|
545
|
+
.swagger-section .swagger-ui-wrap form.formtastic fieldset.inputs ol li.boolean input {
|
|
546
|
+
display: block;
|
|
547
|
+
float: left;
|
|
548
|
+
clear: none;
|
|
549
|
+
margin: 0 5px 0 0;
|
|
550
|
+
}
|
|
551
|
+
.swagger-section .swagger-ui-wrap form.formtastic fieldset.inputs ol li.required label {
|
|
552
|
+
color: black;
|
|
553
|
+
}
|
|
554
|
+
.swagger-section .swagger-ui-wrap form.formtastic fieldset.inputs ol li label {
|
|
555
|
+
display: block;
|
|
556
|
+
clear: both;
|
|
557
|
+
width: auto;
|
|
558
|
+
padding: 0 0 3px;
|
|
559
|
+
color: #666666;
|
|
560
|
+
}
|
|
561
|
+
.swagger-section .swagger-ui-wrap form.formtastic fieldset.inputs ol li label abbr {
|
|
562
|
+
padding-left: 3px;
|
|
563
|
+
color: #888888;
|
|
564
|
+
}
|
|
565
|
+
.swagger-section .swagger-ui-wrap form.formtastic fieldset.inputs ol li p.inline-hints {
|
|
566
|
+
margin-left: 0;
|
|
567
|
+
font-style: italic;
|
|
568
|
+
font-size: 0.9em;
|
|
569
|
+
margin: 0;
|
|
570
|
+
}
|
|
571
|
+
.swagger-section .swagger-ui-wrap form.formtastic fieldset.buttons {
|
|
572
|
+
margin: 0;
|
|
573
|
+
padding: 0;
|
|
574
|
+
}
|
|
575
|
+
.swagger-section .swagger-ui-wrap span.blank,
|
|
576
|
+
.swagger-section .swagger-ui-wrap span.empty {
|
|
577
|
+
color: #888888;
|
|
578
|
+
font-style: italic;
|
|
579
|
+
}
|
|
580
|
+
.swagger-section .swagger-ui-wrap .markdown h3 {
|
|
581
|
+
color: #547f00;
|
|
582
|
+
}
|
|
583
|
+
.swagger-section .swagger-ui-wrap .markdown h4 {
|
|
584
|
+
color: #666666;
|
|
585
|
+
}
|
|
586
|
+
.swagger-section .swagger-ui-wrap .markdown pre {
|
|
587
|
+
font-family: "Anonymous Pro", "Menlo", "Consolas", "Bitstream Vera Sans Mono", "Courier New", monospace;
|
|
588
|
+
background-color: #fcf6db;
|
|
589
|
+
border: 1px solid #e5e0c6;
|
|
590
|
+
padding: 10px;
|
|
591
|
+
margin: 0 0 10px 0;
|
|
592
|
+
}
|
|
593
|
+
.swagger-section .swagger-ui-wrap .markdown pre code {
|
|
594
|
+
line-height: 1.6em;
|
|
595
|
+
}
|
|
596
|
+
.swagger-section .swagger-ui-wrap div.gist {
|
|
597
|
+
margin: 20px 0 25px 0 !important;
|
|
598
|
+
}
|
|
599
|
+
.swagger-section .swagger-ui-wrap ul#resources {
|
|
600
|
+
font-family: "Droid Sans", sans-serif;
|
|
601
|
+
font-size: 0.9em;
|
|
602
|
+
}
|
|
603
|
+
.swagger-section .swagger-ui-wrap ul#resources li.resource {
|
|
604
|
+
border-bottom: 1px solid #dddddd;
|
|
605
|
+
}
|
|
606
|
+
.swagger-section .swagger-ui-wrap ul#resources li.resource:hover div.heading h2 a,
|
|
607
|
+
.swagger-section .swagger-ui-wrap ul#resources li.resource.active div.heading h2 a {
|
|
608
|
+
color: black;
|
|
609
|
+
}
|
|
610
|
+
.swagger-section .swagger-ui-wrap ul#resources li.resource:hover div.heading ul.options li a,
|
|
611
|
+
.swagger-section .swagger-ui-wrap ul#resources li.resource.active div.heading ul.options li a {
|
|
612
|
+
color: #555555;
|
|
613
|
+
}
|
|
614
|
+
.swagger-section .swagger-ui-wrap ul#resources li.resource:last-child {
|
|
615
|
+
border-bottom: none;
|
|
616
|
+
}
|
|
617
|
+
.swagger-section .swagger-ui-wrap ul#resources li.resource div.heading {
|
|
618
|
+
border: 1px solid transparent;
|
|
619
|
+
float: none;
|
|
620
|
+
clear: both;
|
|
621
|
+
overflow: hidden;
|
|
622
|
+
display: block;
|
|
623
|
+
}
|
|
624
|
+
.swagger-section .swagger-ui-wrap ul#resources li.resource div.heading ul.options {
|
|
625
|
+
overflow: hidden;
|
|
626
|
+
padding: 0;
|
|
627
|
+
display: block;
|
|
628
|
+
clear: none;
|
|
629
|
+
float: right;
|
|
630
|
+
margin: 14px 10px 0 0;
|
|
631
|
+
}
|
|
632
|
+
.swagger-section .swagger-ui-wrap ul#resources li.resource div.heading ul.options li {
|
|
633
|
+
float: left;
|
|
634
|
+
clear: none;
|
|
635
|
+
margin: 0;
|
|
636
|
+
padding: 2px 10px;
|
|
637
|
+
border-right: 1px solid #dddddd;
|
|
638
|
+
color: #666666;
|
|
639
|
+
font-size: 0.9em;
|
|
640
|
+
}
|
|
641
|
+
.swagger-section .swagger-ui-wrap ul#resources li.resource div.heading ul.options li a {
|
|
642
|
+
color: #aaaaaa;
|
|
643
|
+
text-decoration: none;
|
|
644
|
+
}
|
|
645
|
+
.swagger-section .swagger-ui-wrap ul#resources li.resource div.heading ul.options li a:hover {
|
|
646
|
+
text-decoration: underline;
|
|
647
|
+
color: black;
|
|
648
|
+
}
|
|
649
|
+
.swagger-section .swagger-ui-wrap ul#resources li.resource div.heading ul.options li a:hover,
|
|
650
|
+
.swagger-section .swagger-ui-wrap ul#resources li.resource div.heading ul.options li a:active,
|
|
651
|
+
.swagger-section .swagger-ui-wrap ul#resources li.resource div.heading ul.options li a.active {
|
|
652
|
+
text-decoration: underline;
|
|
653
|
+
}
|
|
654
|
+
.swagger-section .swagger-ui-wrap ul#resources li.resource div.heading ul.options li:first-child,
|
|
655
|
+
.swagger-section .swagger-ui-wrap ul#resources li.resource div.heading ul.options li.first {
|
|
656
|
+
padding-left: 0;
|
|
657
|
+
}
|
|
658
|
+
.swagger-section .swagger-ui-wrap ul#resources li.resource div.heading ul.options li:last-child,
|
|
659
|
+
.swagger-section .swagger-ui-wrap ul#resources li.resource div.heading ul.options li.last {
|
|
660
|
+
padding-right: 0;
|
|
661
|
+
border-right: none;
|
|
662
|
+
}
|
|
663
|
+
.swagger-section .swagger-ui-wrap ul#resources li.resource div.heading ul.options:first-child,
|
|
664
|
+
.swagger-section .swagger-ui-wrap ul#resources li.resource div.heading ul.options.first {
|
|
665
|
+
padding-left: 0;
|
|
666
|
+
}
|
|
667
|
+
.swagger-section .swagger-ui-wrap ul#resources li.resource div.heading h2 {
|
|
668
|
+
color: #999999;
|
|
669
|
+
padding-left: 0;
|
|
670
|
+
display: block;
|
|
671
|
+
clear: none;
|
|
672
|
+
float: left;
|
|
673
|
+
font-family: "Droid Sans", sans-serif;
|
|
674
|
+
font-weight: bold;
|
|
675
|
+
}
|
|
676
|
+
.swagger-section .swagger-ui-wrap ul#resources li.resource div.heading h2 a {
|
|
677
|
+
color: #999999;
|
|
678
|
+
}
|
|
679
|
+
.swagger-section .swagger-ui-wrap ul#resources li.resource div.heading h2 a:hover {
|
|
680
|
+
color: black;
|
|
681
|
+
}
|
|
682
|
+
.swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation {
|
|
683
|
+
float: none;
|
|
684
|
+
clear: both;
|
|
685
|
+
overflow: hidden;
|
|
686
|
+
display: block;
|
|
687
|
+
margin: 0 0 10px;
|
|
688
|
+
padding: 0;
|
|
689
|
+
}
|
|
690
|
+
.swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation div.heading {
|
|
691
|
+
float: none;
|
|
692
|
+
clear: both;
|
|
693
|
+
overflow: hidden;
|
|
694
|
+
display: block;
|
|
695
|
+
margin: 0;
|
|
696
|
+
padding: 0;
|
|
697
|
+
}
|
|
698
|
+
.swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation div.heading h3 {
|
|
699
|
+
display: block;
|
|
700
|
+
clear: none;
|
|
701
|
+
float: left;
|
|
702
|
+
width: auto;
|
|
703
|
+
margin: 0;
|
|
704
|
+
padding: 0;
|
|
705
|
+
line-height: 1.1em;
|
|
706
|
+
color: black;
|
|
707
|
+
}
|
|
708
|
+
.swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation div.heading h3 span.path {
|
|
709
|
+
padding-left: 10px;
|
|
710
|
+
}
|
|
711
|
+
.swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation div.heading h3 span.path a {
|
|
712
|
+
color: black;
|
|
713
|
+
text-decoration: none;
|
|
714
|
+
}
|
|
715
|
+
.swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation div.heading h3 span.path a:hover {
|
|
716
|
+
text-decoration: underline;
|
|
717
|
+
}
|
|
718
|
+
.swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation div.heading h3 span.http_method a {
|
|
719
|
+
text-transform: uppercase;
|
|
720
|
+
text-decoration: none;
|
|
721
|
+
color: white;
|
|
722
|
+
display: inline-block;
|
|
723
|
+
width: 50px;
|
|
724
|
+
font-size: 0.7em;
|
|
725
|
+
text-align: center;
|
|
726
|
+
padding: 7px 0 4px;
|
|
727
|
+
-moz-border-radius: 2px;
|
|
728
|
+
-webkit-border-radius: 2px;
|
|
729
|
+
-o-border-radius: 2px;
|
|
730
|
+
-ms-border-radius: 2px;
|
|
731
|
+
-khtml-border-radius: 2px;
|
|
732
|
+
border-radius: 2px;
|
|
733
|
+
}
|
|
734
|
+
.swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation div.heading h3 span {
|
|
735
|
+
margin: 0;
|
|
736
|
+
padding: 0;
|
|
737
|
+
}
|
|
738
|
+
.swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation div.heading ul.options {
|
|
739
|
+
overflow: hidden;
|
|
740
|
+
padding: 0;
|
|
741
|
+
display: block;
|
|
742
|
+
clear: none;
|
|
743
|
+
float: right;
|
|
744
|
+
margin: 6px 10px 0 0;
|
|
745
|
+
}
|
|
746
|
+
.swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation div.heading ul.options li {
|
|
747
|
+
float: left;
|
|
748
|
+
clear: none;
|
|
749
|
+
margin: 0;
|
|
750
|
+
padding: 2px 10px;
|
|
751
|
+
font-size: 0.9em;
|
|
752
|
+
}
|
|
753
|
+
.swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation div.heading ul.options li a {
|
|
754
|
+
text-decoration: none;
|
|
755
|
+
}
|
|
756
|
+
.swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation div.heading ul.options li.access {
|
|
757
|
+
color: black;
|
|
758
|
+
}
|
|
759
|
+
.swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation div.content {
|
|
760
|
+
border-top: none;
|
|
761
|
+
padding: 10px;
|
|
762
|
+
-moz-border-radius-bottomleft: 6px;
|
|
763
|
+
-webkit-border-bottom-left-radius: 6px;
|
|
764
|
+
-o-border-bottom-left-radius: 6px;
|
|
765
|
+
-ms-border-bottom-left-radius: 6px;
|
|
766
|
+
-khtml-border-bottom-left-radius: 6px;
|
|
767
|
+
border-bottom-left-radius: 6px;
|
|
768
|
+
-moz-border-radius-bottomright: 6px;
|
|
769
|
+
-webkit-border-bottom-right-radius: 6px;
|
|
770
|
+
-o-border-bottom-right-radius: 6px;
|
|
771
|
+
-ms-border-bottom-right-radius: 6px;
|
|
772
|
+
-khtml-border-bottom-right-radius: 6px;
|
|
773
|
+
border-bottom-right-radius: 6px;
|
|
774
|
+
margin: 0 0 20px;
|
|
775
|
+
}
|
|
776
|
+
.swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation div.content h4 {
|
|
777
|
+
font-size: 1.1em;
|
|
778
|
+
margin: 0;
|
|
779
|
+
padding: 15px 0 5px;
|
|
780
|
+
}
|
|
781
|
+
.swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation div.content div.sandbox_header {
|
|
782
|
+
float: none;
|
|
783
|
+
clear: both;
|
|
784
|
+
overflow: hidden;
|
|
785
|
+
display: block;
|
|
786
|
+
}
|
|
787
|
+
.swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation div.content div.sandbox_header a {
|
|
788
|
+
padding: 4px 0 0 10px;
|
|
789
|
+
display: inline-block;
|
|
790
|
+
font-size: 0.9em;
|
|
791
|
+
}
|
|
792
|
+
.swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation div.content div.sandbox_header input.submit {
|
|
793
|
+
display: block;
|
|
794
|
+
clear: none;
|
|
795
|
+
float: left;
|
|
796
|
+
padding: 6px 8px;
|
|
797
|
+
}
|
|
798
|
+
.swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation div.content div.sandbox_header span.response_throbber {
|
|
799
|
+
background-image: url('../images/throbber.gif');
|
|
800
|
+
width: 128px;
|
|
801
|
+
height: 16px;
|
|
802
|
+
display: block;
|
|
803
|
+
clear: none;
|
|
804
|
+
float: right;
|
|
805
|
+
}
|
|
806
|
+
.swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation div.content form input[type='text'].error {
|
|
807
|
+
outline: 2px solid black;
|
|
808
|
+
outline-color: #cc0000;
|
|
809
|
+
}
|
|
810
|
+
.swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation div.content form select[name='parameterContentType'] {
|
|
811
|
+
max-width: 300px;
|
|
812
|
+
}
|
|
813
|
+
.swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation div.content div.response div.block pre {
|
|
814
|
+
font-family: "Anonymous Pro", "Menlo", "Consolas", "Bitstream Vera Sans Mono", "Courier New", monospace;
|
|
815
|
+
padding: 10px;
|
|
816
|
+
font-size: 0.9em;
|
|
817
|
+
max-height: 400px;
|
|
818
|
+
overflow-y: auto;
|
|
819
|
+
}
|
|
820
|
+
.swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.put div.heading {
|
|
821
|
+
background-color: #f9f2e9;
|
|
822
|
+
border: 1px solid #f0e0ca;
|
|
823
|
+
}
|
|
824
|
+
.swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.put div.heading h3 span.http_method a {
|
|
825
|
+
background-color: #c5862b;
|
|
826
|
+
}
|
|
827
|
+
.swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.put div.heading ul.options li {
|
|
828
|
+
border-right: 1px solid #dddddd;
|
|
829
|
+
border-right-color: #f0e0ca;
|
|
830
|
+
color: #c5862b;
|
|
831
|
+
}
|
|
832
|
+
.swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.put div.heading ul.options li a {
|
|
833
|
+
color: #c5862b;
|
|
834
|
+
}
|
|
835
|
+
.swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.put div.content {
|
|
836
|
+
background-color: #faf5ee;
|
|
837
|
+
border: 1px solid #f0e0ca;
|
|
838
|
+
}
|
|
839
|
+
.swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.put div.content h4 {
|
|
840
|
+
color: #c5862b;
|
|
841
|
+
}
|
|
842
|
+
.swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.put div.content div.sandbox_header a {
|
|
843
|
+
color: #dcb67f;
|
|
844
|
+
}
|
|
845
|
+
.swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.head div.heading {
|
|
846
|
+
background-color: #fcffcd;
|
|
847
|
+
border: 1px solid black;
|
|
848
|
+
border-color: #ffd20f;
|
|
849
|
+
}
|
|
850
|
+
.swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.head div.heading h3 span.http_method a {
|
|
851
|
+
text-transform: uppercase;
|
|
852
|
+
background-color: #ffd20f;
|
|
853
|
+
}
|
|
854
|
+
.swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.head div.heading ul.options li {
|
|
855
|
+
border-right: 1px solid #dddddd;
|
|
856
|
+
border-right-color: #ffd20f;
|
|
857
|
+
color: #ffd20f;
|
|
858
|
+
}
|
|
859
|
+
.swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.head div.heading ul.options li a {
|
|
860
|
+
color: #ffd20f;
|
|
861
|
+
}
|
|
862
|
+
.swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.head div.content {
|
|
863
|
+
background-color: #fcffcd;
|
|
864
|
+
border: 1px solid black;
|
|
865
|
+
border-color: #ffd20f;
|
|
866
|
+
}
|
|
867
|
+
.swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.head div.content h4 {
|
|
868
|
+
color: #ffd20f;
|
|
869
|
+
}
|
|
870
|
+
.swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.head div.content div.sandbox_header a {
|
|
871
|
+
color: #6fc992;
|
|
872
|
+
}
|
|
873
|
+
.swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.delete div.heading {
|
|
874
|
+
background-color: #f5e8e8;
|
|
875
|
+
border: 1px solid #e8c6c7;
|
|
876
|
+
}
|
|
877
|
+
.swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.delete div.heading h3 span.http_method a {
|
|
878
|
+
text-transform: uppercase;
|
|
879
|
+
background-color: #a41e22;
|
|
880
|
+
}
|
|
881
|
+
.swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.delete div.heading ul.options li {
|
|
882
|
+
border-right: 1px solid #dddddd;
|
|
883
|
+
border-right-color: #e8c6c7;
|
|
884
|
+
color: #a41e22;
|
|
885
|
+
}
|
|
886
|
+
.swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.delete div.heading ul.options li a {
|
|
887
|
+
color: #a41e22;
|
|
888
|
+
}
|
|
889
|
+
.swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.delete div.content {
|
|
890
|
+
background-color: #f7eded;
|
|
891
|
+
border: 1px solid #e8c6c7;
|
|
892
|
+
}
|
|
893
|
+
.swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.delete div.content h4 {
|
|
894
|
+
color: #a41e22;
|
|
895
|
+
}
|
|
896
|
+
.swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.delete div.content div.sandbox_header a {
|
|
897
|
+
color: #c8787a;
|
|
898
|
+
}
|
|
899
|
+
.swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.post div.heading {
|
|
900
|
+
background-color: #e7f6ec;
|
|
901
|
+
border: 1px solid #c3e8d1;
|
|
902
|
+
}
|
|
903
|
+
.swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.post div.heading h3 span.http_method a {
|
|
904
|
+
background-color: #10a54a;
|
|
905
|
+
}
|
|
906
|
+
.swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.post div.heading ul.options li {
|
|
907
|
+
border-right: 1px solid #dddddd;
|
|
908
|
+
border-right-color: #c3e8d1;
|
|
909
|
+
color: #10a54a;
|
|
910
|
+
}
|
|
911
|
+
.swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.post div.heading ul.options li a {
|
|
912
|
+
color: #10a54a;
|
|
913
|
+
}
|
|
914
|
+
.swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.post div.content {
|
|
915
|
+
background-color: #ebf7f0;
|
|
916
|
+
border: 1px solid #c3e8d1;
|
|
917
|
+
}
|
|
918
|
+
.swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.post div.content h4 {
|
|
919
|
+
color: #10a54a;
|
|
920
|
+
}
|
|
921
|
+
.swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.post div.content div.sandbox_header a {
|
|
922
|
+
color: #6fc992;
|
|
923
|
+
}
|
|
924
|
+
.swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.patch div.heading {
|
|
925
|
+
background-color: #FCE9E3;
|
|
926
|
+
border: 1px solid #F5D5C3;
|
|
927
|
+
}
|
|
928
|
+
.swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.patch div.heading h3 span.http_method a {
|
|
929
|
+
background-color: #D38042;
|
|
930
|
+
}
|
|
931
|
+
.swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.patch div.heading ul.options li {
|
|
932
|
+
border-right: 1px solid #dddddd;
|
|
933
|
+
border-right-color: #f0cecb;
|
|
934
|
+
color: #D38042;
|
|
935
|
+
}
|
|
936
|
+
.swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.patch div.heading ul.options li a {
|
|
937
|
+
color: #D38042;
|
|
938
|
+
}
|
|
939
|
+
.swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.patch div.content {
|
|
940
|
+
background-color: #faf0ef;
|
|
941
|
+
border: 1px solid #f0cecb;
|
|
942
|
+
}
|
|
943
|
+
.swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.patch div.content h4 {
|
|
944
|
+
color: #D38042;
|
|
945
|
+
}
|
|
946
|
+
.swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.patch div.content div.sandbox_header a {
|
|
947
|
+
color: #dcb67f;
|
|
948
|
+
}
|
|
949
|
+
.swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.get div.heading {
|
|
950
|
+
background-color: #e7f0f7;
|
|
951
|
+
border: 1px solid #c3d9ec;
|
|
952
|
+
}
|
|
953
|
+
.swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.get div.heading h3 span.http_method a {
|
|
954
|
+
background-color: #0f6ab4;
|
|
955
|
+
}
|
|
956
|
+
.swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.get div.heading ul.options li {
|
|
957
|
+
border-right: 1px solid #dddddd;
|
|
958
|
+
border-right-color: #c3d9ec;
|
|
959
|
+
color: #0f6ab4;
|
|
960
|
+
}
|
|
961
|
+
.swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.get div.heading ul.options li a {
|
|
962
|
+
color: #0f6ab4;
|
|
963
|
+
}
|
|
964
|
+
.swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.get div.content {
|
|
965
|
+
background-color: #ebf3f9;
|
|
966
|
+
border: 1px solid #c3d9ec;
|
|
967
|
+
}
|
|
968
|
+
.swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.get div.content h4 {
|
|
969
|
+
color: #0f6ab4;
|
|
970
|
+
}
|
|
971
|
+
.swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.get div.content div.sandbox_header a {
|
|
972
|
+
color: #6fa5d2;
|
|
973
|
+
}
|
|
974
|
+
.swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.options div.heading {
|
|
975
|
+
background-color: #e7f0f7;
|
|
976
|
+
border: 1px solid #c3d9ec;
|
|
977
|
+
}
|
|
978
|
+
.swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.options div.heading h3 span.http_method a {
|
|
979
|
+
background-color: #0f6ab4;
|
|
980
|
+
}
|
|
981
|
+
.swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.options div.heading ul.options li {
|
|
982
|
+
border-right: 1px solid #dddddd;
|
|
983
|
+
border-right-color: #c3d9ec;
|
|
984
|
+
color: #0f6ab4;
|
|
985
|
+
}
|
|
986
|
+
.swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.options div.heading ul.options li a {
|
|
987
|
+
color: #0f6ab4;
|
|
988
|
+
}
|
|
989
|
+
.swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.options div.content {
|
|
990
|
+
background-color: #ebf3f9;
|
|
991
|
+
border: 1px solid #c3d9ec;
|
|
992
|
+
}
|
|
993
|
+
.swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.options div.content h4 {
|
|
994
|
+
color: #0f6ab4;
|
|
995
|
+
}
|
|
996
|
+
.swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.options div.content div.sandbox_header a {
|
|
997
|
+
color: #6fa5d2;
|
|
998
|
+
}
|
|
999
|
+
.swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.get div.content,
|
|
1000
|
+
.swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.post div.content,
|
|
1001
|
+
.swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.head div.content,
|
|
1002
|
+
.swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.put div.content,
|
|
1003
|
+
.swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.patch div.content,
|
|
1004
|
+
.swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.delete div.content {
|
|
1005
|
+
border-top: none;
|
|
1006
|
+
}
|
|
1007
|
+
.swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.get div.heading ul.options li:last-child,
|
|
1008
|
+
.swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.post div.heading ul.options li:last-child,
|
|
1009
|
+
.swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.head div.heading ul.options li:last-child,
|
|
1010
|
+
.swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.put div.heading ul.options li:last-child,
|
|
1011
|
+
.swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.patch div.heading ul.options li:last-child,
|
|
1012
|
+
.swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.delete div.heading ul.options li:last-child,
|
|
1013
|
+
.swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.get div.heading ul.options li.last,
|
|
1014
|
+
.swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.post div.heading ul.options li.last,
|
|
1015
|
+
.swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.head div.heading ul.options li.last,
|
|
1016
|
+
.swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.put div.heading ul.options li.last,
|
|
1017
|
+
.swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.patch div.heading ul.options li.last,
|
|
1018
|
+
.swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.delete div.heading ul.options li.last {
|
|
1019
|
+
padding-right: 0;
|
|
1020
|
+
border-right: none;
|
|
1021
|
+
}
|
|
1022
|
+
.swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations ul.options li a:hover,
|
|
1023
|
+
.swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations ul.options li a:active,
|
|
1024
|
+
.swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations ul.options li a.active {
|
|
1025
|
+
text-decoration: underline;
|
|
1026
|
+
}
|
|
1027
|
+
.swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations ul.options li:first-child,
|
|
1028
|
+
.swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations ul.options li.first {
|
|
1029
|
+
padding-left: 0;
|
|
1030
|
+
}
|
|
1031
|
+
.swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations:first-child,
|
|
1032
|
+
.swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations.first {
|
|
1033
|
+
padding-left: 0;
|
|
1034
|
+
}
|
|
1035
|
+
.swagger-section .swagger-ui-wrap p#colophon {
|
|
1036
|
+
margin: 0 15px 40px 15px;
|
|
1037
|
+
padding: 10px 0;
|
|
1038
|
+
font-size: 0.8em;
|
|
1039
|
+
border-top: 1px solid #dddddd;
|
|
1040
|
+
font-family: "Droid Sans", sans-serif;
|
|
1041
|
+
color: #999999;
|
|
1042
|
+
font-style: italic;
|
|
1043
|
+
}
|
|
1044
|
+
.swagger-section .swagger-ui-wrap p#colophon a {
|
|
1045
|
+
text-decoration: none;
|
|
1046
|
+
color: #547f00;
|
|
1047
|
+
}
|
|
1048
|
+
.swagger-section .swagger-ui-wrap h3 {
|
|
1049
|
+
color: black;
|
|
1050
|
+
font-size: 1.1em;
|
|
1051
|
+
padding: 10px 0 10px 0;
|
|
1052
|
+
}
|
|
1053
|
+
.swagger-section .swagger-ui-wrap .markdown ol,
|
|
1054
|
+
.swagger-section .swagger-ui-wrap .markdown ul {
|
|
1055
|
+
font-family: "Droid Sans", sans-serif;
|
|
1056
|
+
margin: 5px 0 10px;
|
|
1057
|
+
padding: 0 0 0 18px;
|
|
1058
|
+
list-style-type: disc;
|
|
1059
|
+
}
|
|
1060
|
+
.swagger-section .swagger-ui-wrap form.form_box {
|
|
1061
|
+
background-color: #ebf3f9;
|
|
1062
|
+
border: 1px solid #c3d9ec;
|
|
1063
|
+
padding: 10px;
|
|
1064
|
+
}
|
|
1065
|
+
.swagger-section .swagger-ui-wrap form.form_box label {
|
|
1066
|
+
color: #0f6ab4 !important;
|
|
1067
|
+
}
|
|
1068
|
+
.swagger-section .swagger-ui-wrap form.form_box input[type=submit] {
|
|
1069
|
+
display: block;
|
|
1070
|
+
padding: 10px;
|
|
1071
|
+
}
|
|
1072
|
+
.swagger-section .swagger-ui-wrap form.form_box p.weak {
|
|
1073
|
+
font-size: 0.8em;
|
|
1074
|
+
}
|
|
1075
|
+
.swagger-section .swagger-ui-wrap form.form_box p {
|
|
1076
|
+
font-size: 0.9em;
|
|
1077
|
+
padding: 0 0 15px;
|
|
1078
|
+
color: #7e7b6d;
|
|
1079
|
+
}
|
|
1080
|
+
.swagger-section .swagger-ui-wrap form.form_box p a {
|
|
1081
|
+
color: #646257;
|
|
1082
|
+
}
|
|
1083
|
+
.swagger-section .swagger-ui-wrap form.form_box p strong {
|
|
1084
|
+
color: black;
|
|
1085
|
+
}
|
|
1086
|
+
.swagger-section .swagger-ui-wrap .operation-status td.markdown > p:last-child {
|
|
1087
|
+
padding-bottom: 0;
|
|
1088
|
+
}
|
|
1089
|
+
.swagger-section .title {
|
|
1090
|
+
font-style: bold;
|
|
1091
|
+
}
|
|
1092
|
+
.swagger-section .secondary_form {
|
|
1093
|
+
display: none;
|
|
1094
|
+
}
|
|
1095
|
+
.swagger-section .main_image {
|
|
1096
|
+
display: block;
|
|
1097
|
+
margin-left: auto;
|
|
1098
|
+
margin-right: auto;
|
|
1099
|
+
}
|
|
1100
|
+
.swagger-section .oauth_body {
|
|
1101
|
+
margin-left: 100px;
|
|
1102
|
+
margin-right: 100px;
|
|
1103
|
+
}
|
|
1104
|
+
.swagger-section .oauth_submit {
|
|
1105
|
+
text-align: center;
|
|
1106
|
+
}
|
|
1107
|
+
.swagger-section .api-popup-dialog {
|
|
1108
|
+
z-index: 10000;
|
|
1109
|
+
position: absolute;
|
|
1110
|
+
width: 500px;
|
|
1111
|
+
background: #FFF;
|
|
1112
|
+
padding: 20px;
|
|
1113
|
+
border: 1px solid #ccc;
|
|
1114
|
+
border-radius: 5px;
|
|
1115
|
+
display: none;
|
|
1116
|
+
font-size: 13px;
|
|
1117
|
+
color: #777;
|
|
1118
|
+
}
|
|
1119
|
+
.swagger-section .api-popup-dialog .api-popup-title {
|
|
1120
|
+
font-size: 24px;
|
|
1121
|
+
padding: 10px 0;
|
|
1122
|
+
}
|
|
1123
|
+
.swagger-section .api-popup-dialog .api-popup-title {
|
|
1124
|
+
font-size: 24px;
|
|
1125
|
+
padding: 10px 0;
|
|
1126
|
+
}
|
|
1127
|
+
.swagger-section .api-popup-dialog p.error-msg {
|
|
1128
|
+
padding-left: 5px;
|
|
1129
|
+
padding-bottom: 5px;
|
|
1130
|
+
}
|
|
1131
|
+
.swagger-section .api-popup-dialog button.api-popup-authbtn {
|
|
1132
|
+
height: 30px;
|
|
1133
|
+
}
|
|
1134
|
+
.swagger-section .api-popup-dialog button.api-popup-cancel {
|
|
1135
|
+
height: 30px;
|
|
1136
|
+
}
|
|
1137
|
+
.swagger-section .api-popup-scopes {
|
|
1138
|
+
padding: 10px 20px;
|
|
1139
|
+
}
|
|
1140
|
+
.swagger-section .api-popup-scopes li {
|
|
1141
|
+
padding: 5px 0;
|
|
1142
|
+
line-height: 20px;
|
|
1143
|
+
}
|
|
1144
|
+
.swagger-section .api-popup-scopes .api-scope-desc {
|
|
1145
|
+
padding-left: 20px;
|
|
1146
|
+
font-style: italic;
|
|
1147
|
+
}
|
|
1148
|
+
.swagger-section .api-popup-scopes li input {
|
|
1149
|
+
position: relative;
|
|
1150
|
+
top: 2px;
|
|
1151
|
+
}
|
|
1152
|
+
.swagger-section .api-popup-actions {
|
|
1153
|
+
padding-top: 10px;
|
|
1154
|
+
}
|
|
1155
|
+
#header {
|
|
1156
|
+
display: none;
|
|
1157
|
+
}
|
|
1158
|
+
.swagger-section .swagger-ui-wrap .model-signature pre {
|
|
1159
|
+
max-height: none;
|
|
1160
|
+
}
|
|
1161
|
+
.swagger-section .swagger-ui-wrap .body-textarea {
|
|
1162
|
+
width: 100px;
|
|
1163
|
+
}
|
|
1164
|
+
.swagger-section .swagger-ui-wrap input.parameter {
|
|
1165
|
+
width: 100px;
|
|
1166
|
+
}
|
|
1167
|
+
.swagger-section .swagger-ui-wrap ul#resources li.resource div.heading ul.options {
|
|
1168
|
+
display: none;
|
|
1169
|
+
}
|
|
1170
|
+
.swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints {
|
|
1171
|
+
display: block !important;
|
|
1172
|
+
}
|
|
1173
|
+
.swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation div.content {
|
|
1174
|
+
display: block !important;
|
|
1175
|
+
}
|