├── .gitignore ├── CONTRIBUTING.md ├── LICENSE.txt ├── Makefile ├── README.md ├── api.json ├── generate-sdks ├── swagger-config ├── config-csharp.json ├── config-java.json ├── config-javascript.json ├── config-php.json ├── config-python-marketplaces.json ├── config-python.json ├── config-ruby.json └── config-{lang}.json └── swagger-templates ├── csharp ├── ApiClient.mustache ├── ApiException.mustache ├── ApiResponse.mustache ├── AssemblyInfo.mustache ├── Configuration.mustache ├── ExceptionFactory.mustache ├── FodyWeavers.xml ├── IApiAccessor.mustache ├── Project.mustache ├── README.mustache ├── Solution.mustache ├── TestProject.mustache ├── api.mustache ├── api_doc.mustache ├── api_test.mustache ├── compile-mono.sh.mustache ├── compile.mustache ├── enumClass.mustache ├── git_push.sh.mustache ├── gitignore.mustache ├── model.mustache ├── modelEnum.mustache ├── modelGeneric.mustache ├── modelInnerEnum.mustache ├── model_doc.mustache ├── model_test.mustache ├── mono_nunit_test.mustache ├── nuspec.mustache ├── packages.config.mustache ├── packages_test.config.mustache ├── partial_header.mustache ├── travis.mustache └── visibility.mustache ├── java ├── ApiClient.mustache ├── BeanValidationException.mustache ├── Configuration.mustache ├── Pair.mustache ├── README.mustache ├── RFC3339DateFormat.mustache ├── StringUtil.mustache ├── api.mustache ├── apiException.mustache ├── api_doc.mustache ├── api_test.mustache ├── auth │ ├── ApiKeyAuth.mustache │ ├── Authentication.mustache │ ├── HttpBasicAuth.mustache │ ├── OAuth.mustache │ └── OAuthFlow.mustache ├── beanValidation.mustache ├── beanValidationCore.mustache ├── beanValidationQueryParams.mustache ├── build.gradle.mustache ├── build.sbt.mustache ├── enum_outer_doc.mustache ├── generatedAnnotation.mustache ├── git_push.sh.mustache ├── gitignore.mustache ├── gradle-wrapper.jar ├── gradle-wrapper.properties.mustache ├── gradle.properties.mustache ├── gradlew.bat.mustache ├── gradlew.mustache ├── libraries │ └── jersey2 │ │ ├── ApiClient.mustache │ │ ├── JSON.mustache │ │ ├── api.mustache │ │ ├── build.gradle.mustache │ │ ├── build.sbt.mustache │ │ └── pom.mustache ├── licenseInfo.mustache ├── manifest.mustache ├── model.mustache ├── modelEnum.mustache ├── modelInnerEnum.mustache ├── model_doc.mustache ├── pojo.mustache ├── pojo_doc.mustache ├── pom.mustache ├── settings.gradle.mustache ├── static │ └── java │ │ └── com │ │ └── squareup │ │ └── connect │ │ └── CompleteResponse.java ├── travis.mustache └── typeInfoAnnotation.mustache ├── javascript ├── ApiClient.mustache ├── README.mustache ├── api.mustache ├── api_doc.mustache ├── api_test.mustache ├── enumClass.mustache ├── git_push.sh.mustache ├── gitignore.mustache ├── index.mustache ├── licenseInfo.mustache ├── mocha.opts ├── model.mustache ├── model_doc.mustache ├── model_test.mustache ├── package.mustache ├── partial_model_enum_class.mustache ├── partial_model_generic.mustache ├── partial_model_inner_enum.mustache └── travis.yml ├── php ├── .travis.yml ├── ApiClient.mustache ├── ApiException.mustache ├── ObjectSerializer.mustache ├── README.mustache ├── api.mustache ├── api_doc.mustache ├── api_test.mustache ├── autoload.mustache ├── composer.mustache ├── configuration.mustache ├── model.mustache ├── model_doc.mustache └── model_test.mustache ├── python ├── README.mustache ├── __init__api.mustache ├── __init__model.mustache ├── __init__package.mustache ├── api.mustache ├── api_client.mustache ├── api_doc.mustache ├── api_test.mustache ├── configuration.mustache ├── model.mustache ├── model_doc.mustache ├── model_test.mustache ├── partial_header.mustache ├── rest.mustache ├── setup.mustache └── travis.mustache └── ruby ├── Gemfile.mustache ├── README.mustache ├── Rakefile.mustache ├── api.mustache ├── api_client.mustache ├── api_client_spec.mustache ├── api_doc.mustache ├── api_error.mustache ├── api_info.mustache ├── api_test.mustache ├── base_object.mustache ├── base_object_spec.mustache ├── configuration.mustache ├── configuration_spec.mustache ├── gem.mustache ├── gemspec.mustache ├── git_push.sh.mustache ├── gitignore.mustache ├── model.mustache ├── model_doc.mustache ├── model_test.mustache ├── partial_model_enum_class.mustache ├── partial_model_generic.mustache ├── rspec.mustache ├── spec_helper.mustache └── version.mustache /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/connect-api-specification/HEAD/.gitignore -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/connect-api-specification/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/connect-api-specification/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/connect-api-specification/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/connect-api-specification/HEAD/README.md -------------------------------------------------------------------------------- /api.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/connect-api-specification/HEAD/api.json -------------------------------------------------------------------------------- /generate-sdks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/connect-api-specification/HEAD/generate-sdks -------------------------------------------------------------------------------- /swagger-config/config-csharp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/connect-api-specification/HEAD/swagger-config/config-csharp.json -------------------------------------------------------------------------------- /swagger-config/config-java.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/connect-api-specification/HEAD/swagger-config/config-java.json -------------------------------------------------------------------------------- /swagger-config/config-javascript.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/connect-api-specification/HEAD/swagger-config/config-javascript.json -------------------------------------------------------------------------------- /swagger-config/config-php.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/connect-api-specification/HEAD/swagger-config/config-php.json -------------------------------------------------------------------------------- /swagger-config/config-python-marketplaces.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/connect-api-specification/HEAD/swagger-config/config-python-marketplaces.json -------------------------------------------------------------------------------- /swagger-config/config-python.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/connect-api-specification/HEAD/swagger-config/config-python.json -------------------------------------------------------------------------------- /swagger-config/config-ruby.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/connect-api-specification/HEAD/swagger-config/config-ruby.json -------------------------------------------------------------------------------- /swagger-config/config-{lang}.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/connect-api-specification/HEAD/swagger-config/config-{lang}.json -------------------------------------------------------------------------------- /swagger-templates/csharp/ApiClient.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/connect-api-specification/HEAD/swagger-templates/csharp/ApiClient.mustache -------------------------------------------------------------------------------- /swagger-templates/csharp/ApiException.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/connect-api-specification/HEAD/swagger-templates/csharp/ApiException.mustache -------------------------------------------------------------------------------- /swagger-templates/csharp/ApiResponse.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/connect-api-specification/HEAD/swagger-templates/csharp/ApiResponse.mustache -------------------------------------------------------------------------------- /swagger-templates/csharp/AssemblyInfo.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/connect-api-specification/HEAD/swagger-templates/csharp/AssemblyInfo.mustache -------------------------------------------------------------------------------- /swagger-templates/csharp/Configuration.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/connect-api-specification/HEAD/swagger-templates/csharp/Configuration.mustache -------------------------------------------------------------------------------- /swagger-templates/csharp/ExceptionFactory.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/connect-api-specification/HEAD/swagger-templates/csharp/ExceptionFactory.mustache -------------------------------------------------------------------------------- /swagger-templates/csharp/FodyWeavers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/connect-api-specification/HEAD/swagger-templates/csharp/FodyWeavers.xml -------------------------------------------------------------------------------- /swagger-templates/csharp/IApiAccessor.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/connect-api-specification/HEAD/swagger-templates/csharp/IApiAccessor.mustache -------------------------------------------------------------------------------- /swagger-templates/csharp/Project.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/connect-api-specification/HEAD/swagger-templates/csharp/Project.mustache -------------------------------------------------------------------------------- /swagger-templates/csharp/README.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/connect-api-specification/HEAD/swagger-templates/csharp/README.mustache -------------------------------------------------------------------------------- /swagger-templates/csharp/Solution.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/connect-api-specification/HEAD/swagger-templates/csharp/Solution.mustache -------------------------------------------------------------------------------- /swagger-templates/csharp/TestProject.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/connect-api-specification/HEAD/swagger-templates/csharp/TestProject.mustache -------------------------------------------------------------------------------- /swagger-templates/csharp/api.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/connect-api-specification/HEAD/swagger-templates/csharp/api.mustache -------------------------------------------------------------------------------- /swagger-templates/csharp/api_doc.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/connect-api-specification/HEAD/swagger-templates/csharp/api_doc.mustache -------------------------------------------------------------------------------- /swagger-templates/csharp/api_test.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/connect-api-specification/HEAD/swagger-templates/csharp/api_test.mustache -------------------------------------------------------------------------------- /swagger-templates/csharp/compile-mono.sh.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/connect-api-specification/HEAD/swagger-templates/csharp/compile-mono.sh.mustache -------------------------------------------------------------------------------- /swagger-templates/csharp/compile.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/connect-api-specification/HEAD/swagger-templates/csharp/compile.mustache -------------------------------------------------------------------------------- /swagger-templates/csharp/enumClass.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/connect-api-specification/HEAD/swagger-templates/csharp/enumClass.mustache -------------------------------------------------------------------------------- /swagger-templates/csharp/git_push.sh.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/connect-api-specification/HEAD/swagger-templates/csharp/git_push.sh.mustache -------------------------------------------------------------------------------- /swagger-templates/csharp/gitignore.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/connect-api-specification/HEAD/swagger-templates/csharp/gitignore.mustache -------------------------------------------------------------------------------- /swagger-templates/csharp/model.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/connect-api-specification/HEAD/swagger-templates/csharp/model.mustache -------------------------------------------------------------------------------- /swagger-templates/csharp/modelEnum.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/connect-api-specification/HEAD/swagger-templates/csharp/modelEnum.mustache -------------------------------------------------------------------------------- /swagger-templates/csharp/modelGeneric.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/connect-api-specification/HEAD/swagger-templates/csharp/modelGeneric.mustache -------------------------------------------------------------------------------- /swagger-templates/csharp/modelInnerEnum.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/connect-api-specification/HEAD/swagger-templates/csharp/modelInnerEnum.mustache -------------------------------------------------------------------------------- /swagger-templates/csharp/model_doc.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/connect-api-specification/HEAD/swagger-templates/csharp/model_doc.mustache -------------------------------------------------------------------------------- /swagger-templates/csharp/model_test.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/connect-api-specification/HEAD/swagger-templates/csharp/model_test.mustache -------------------------------------------------------------------------------- /swagger-templates/csharp/mono_nunit_test.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/connect-api-specification/HEAD/swagger-templates/csharp/mono_nunit_test.mustache -------------------------------------------------------------------------------- /swagger-templates/csharp/nuspec.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/connect-api-specification/HEAD/swagger-templates/csharp/nuspec.mustache -------------------------------------------------------------------------------- /swagger-templates/csharp/packages.config.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/connect-api-specification/HEAD/swagger-templates/csharp/packages.config.mustache -------------------------------------------------------------------------------- /swagger-templates/csharp/packages_test.config.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/connect-api-specification/HEAD/swagger-templates/csharp/packages_test.config.mustache -------------------------------------------------------------------------------- /swagger-templates/csharp/partial_header.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/connect-api-specification/HEAD/swagger-templates/csharp/partial_header.mustache -------------------------------------------------------------------------------- /swagger-templates/csharp/travis.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/connect-api-specification/HEAD/swagger-templates/csharp/travis.mustache -------------------------------------------------------------------------------- /swagger-templates/csharp/visibility.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/connect-api-specification/HEAD/swagger-templates/csharp/visibility.mustache -------------------------------------------------------------------------------- /swagger-templates/java/ApiClient.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/connect-api-specification/HEAD/swagger-templates/java/ApiClient.mustache -------------------------------------------------------------------------------- /swagger-templates/java/BeanValidationException.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/connect-api-specification/HEAD/swagger-templates/java/BeanValidationException.mustache -------------------------------------------------------------------------------- /swagger-templates/java/Configuration.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/connect-api-specification/HEAD/swagger-templates/java/Configuration.mustache -------------------------------------------------------------------------------- /swagger-templates/java/Pair.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/connect-api-specification/HEAD/swagger-templates/java/Pair.mustache -------------------------------------------------------------------------------- /swagger-templates/java/README.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/connect-api-specification/HEAD/swagger-templates/java/README.mustache -------------------------------------------------------------------------------- /swagger-templates/java/RFC3339DateFormat.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/connect-api-specification/HEAD/swagger-templates/java/RFC3339DateFormat.mustache -------------------------------------------------------------------------------- /swagger-templates/java/StringUtil.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/connect-api-specification/HEAD/swagger-templates/java/StringUtil.mustache -------------------------------------------------------------------------------- /swagger-templates/java/api.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/connect-api-specification/HEAD/swagger-templates/java/api.mustache -------------------------------------------------------------------------------- /swagger-templates/java/apiException.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/connect-api-specification/HEAD/swagger-templates/java/apiException.mustache -------------------------------------------------------------------------------- /swagger-templates/java/api_doc.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/connect-api-specification/HEAD/swagger-templates/java/api_doc.mustache -------------------------------------------------------------------------------- /swagger-templates/java/api_test.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/connect-api-specification/HEAD/swagger-templates/java/api_test.mustache -------------------------------------------------------------------------------- /swagger-templates/java/auth/ApiKeyAuth.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/connect-api-specification/HEAD/swagger-templates/java/auth/ApiKeyAuth.mustache -------------------------------------------------------------------------------- /swagger-templates/java/auth/Authentication.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/connect-api-specification/HEAD/swagger-templates/java/auth/Authentication.mustache -------------------------------------------------------------------------------- /swagger-templates/java/auth/HttpBasicAuth.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/connect-api-specification/HEAD/swagger-templates/java/auth/HttpBasicAuth.mustache -------------------------------------------------------------------------------- /swagger-templates/java/auth/OAuth.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/connect-api-specification/HEAD/swagger-templates/java/auth/OAuth.mustache -------------------------------------------------------------------------------- /swagger-templates/java/auth/OAuthFlow.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/connect-api-specification/HEAD/swagger-templates/java/auth/OAuthFlow.mustache -------------------------------------------------------------------------------- /swagger-templates/java/beanValidation.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/connect-api-specification/HEAD/swagger-templates/java/beanValidation.mustache -------------------------------------------------------------------------------- /swagger-templates/java/beanValidationCore.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/connect-api-specification/HEAD/swagger-templates/java/beanValidationCore.mustache -------------------------------------------------------------------------------- /swagger-templates/java/beanValidationQueryParams.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/connect-api-specification/HEAD/swagger-templates/java/beanValidationQueryParams.mustache -------------------------------------------------------------------------------- /swagger-templates/java/build.gradle.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/connect-api-specification/HEAD/swagger-templates/java/build.gradle.mustache -------------------------------------------------------------------------------- /swagger-templates/java/build.sbt.mustache: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /swagger-templates/java/enum_outer_doc.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/connect-api-specification/HEAD/swagger-templates/java/enum_outer_doc.mustache -------------------------------------------------------------------------------- /swagger-templates/java/generatedAnnotation.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/connect-api-specification/HEAD/swagger-templates/java/generatedAnnotation.mustache -------------------------------------------------------------------------------- /swagger-templates/java/git_push.sh.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/connect-api-specification/HEAD/swagger-templates/java/git_push.sh.mustache -------------------------------------------------------------------------------- /swagger-templates/java/gitignore.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/connect-api-specification/HEAD/swagger-templates/java/gitignore.mustache -------------------------------------------------------------------------------- /swagger-templates/java/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/connect-api-specification/HEAD/swagger-templates/java/gradle-wrapper.jar -------------------------------------------------------------------------------- /swagger-templates/java/gradle-wrapper.properties.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/connect-api-specification/HEAD/swagger-templates/java/gradle-wrapper.properties.mustache -------------------------------------------------------------------------------- /swagger-templates/java/gradle.properties.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/connect-api-specification/HEAD/swagger-templates/java/gradle.properties.mustache -------------------------------------------------------------------------------- /swagger-templates/java/gradlew.bat.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/connect-api-specification/HEAD/swagger-templates/java/gradlew.bat.mustache -------------------------------------------------------------------------------- /swagger-templates/java/gradlew.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/connect-api-specification/HEAD/swagger-templates/java/gradlew.mustache -------------------------------------------------------------------------------- /swagger-templates/java/libraries/jersey2/ApiClient.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/connect-api-specification/HEAD/swagger-templates/java/libraries/jersey2/ApiClient.mustache -------------------------------------------------------------------------------- /swagger-templates/java/libraries/jersey2/JSON.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/connect-api-specification/HEAD/swagger-templates/java/libraries/jersey2/JSON.mustache -------------------------------------------------------------------------------- /swagger-templates/java/libraries/jersey2/api.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/connect-api-specification/HEAD/swagger-templates/java/libraries/jersey2/api.mustache -------------------------------------------------------------------------------- /swagger-templates/java/libraries/jersey2/build.gradle.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/connect-api-specification/HEAD/swagger-templates/java/libraries/jersey2/build.gradle.mustache -------------------------------------------------------------------------------- /swagger-templates/java/libraries/jersey2/build.sbt.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/connect-api-specification/HEAD/swagger-templates/java/libraries/jersey2/build.sbt.mustache -------------------------------------------------------------------------------- /swagger-templates/java/libraries/jersey2/pom.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/connect-api-specification/HEAD/swagger-templates/java/libraries/jersey2/pom.mustache -------------------------------------------------------------------------------- /swagger-templates/java/licenseInfo.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/connect-api-specification/HEAD/swagger-templates/java/licenseInfo.mustache -------------------------------------------------------------------------------- /swagger-templates/java/manifest.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/connect-api-specification/HEAD/swagger-templates/java/manifest.mustache -------------------------------------------------------------------------------- /swagger-templates/java/model.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/connect-api-specification/HEAD/swagger-templates/java/model.mustache -------------------------------------------------------------------------------- /swagger-templates/java/modelEnum.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/connect-api-specification/HEAD/swagger-templates/java/modelEnum.mustache -------------------------------------------------------------------------------- /swagger-templates/java/modelInnerEnum.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/connect-api-specification/HEAD/swagger-templates/java/modelInnerEnum.mustache -------------------------------------------------------------------------------- /swagger-templates/java/model_doc.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/connect-api-specification/HEAD/swagger-templates/java/model_doc.mustache -------------------------------------------------------------------------------- /swagger-templates/java/pojo.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/connect-api-specification/HEAD/swagger-templates/java/pojo.mustache -------------------------------------------------------------------------------- /swagger-templates/java/pojo_doc.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/connect-api-specification/HEAD/swagger-templates/java/pojo_doc.mustache -------------------------------------------------------------------------------- /swagger-templates/java/pom.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/connect-api-specification/HEAD/swagger-templates/java/pom.mustache -------------------------------------------------------------------------------- /swagger-templates/java/settings.gradle.mustache: -------------------------------------------------------------------------------- 1 | rootProject.name = "{{artifactId}}" -------------------------------------------------------------------------------- /swagger-templates/java/static/java/com/squareup/connect/CompleteResponse.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/connect-api-specification/HEAD/swagger-templates/java/static/java/com/squareup/connect/CompleteResponse.java -------------------------------------------------------------------------------- /swagger-templates/java/travis.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/connect-api-specification/HEAD/swagger-templates/java/travis.mustache -------------------------------------------------------------------------------- /swagger-templates/java/typeInfoAnnotation.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/connect-api-specification/HEAD/swagger-templates/java/typeInfoAnnotation.mustache -------------------------------------------------------------------------------- /swagger-templates/javascript/ApiClient.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/connect-api-specification/HEAD/swagger-templates/javascript/ApiClient.mustache -------------------------------------------------------------------------------- /swagger-templates/javascript/README.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/connect-api-specification/HEAD/swagger-templates/javascript/README.mustache -------------------------------------------------------------------------------- /swagger-templates/javascript/api.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/connect-api-specification/HEAD/swagger-templates/javascript/api.mustache -------------------------------------------------------------------------------- /swagger-templates/javascript/api_doc.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/connect-api-specification/HEAD/swagger-templates/javascript/api_doc.mustache -------------------------------------------------------------------------------- /swagger-templates/javascript/api_test.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/connect-api-specification/HEAD/swagger-templates/javascript/api_test.mustache -------------------------------------------------------------------------------- /swagger-templates/javascript/enumClass.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/connect-api-specification/HEAD/swagger-templates/javascript/enumClass.mustache -------------------------------------------------------------------------------- /swagger-templates/javascript/git_push.sh.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/connect-api-specification/HEAD/swagger-templates/javascript/git_push.sh.mustache -------------------------------------------------------------------------------- /swagger-templates/javascript/gitignore.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/connect-api-specification/HEAD/swagger-templates/javascript/gitignore.mustache -------------------------------------------------------------------------------- /swagger-templates/javascript/index.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/connect-api-specification/HEAD/swagger-templates/javascript/index.mustache -------------------------------------------------------------------------------- /swagger-templates/javascript/licenseInfo.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/connect-api-specification/HEAD/swagger-templates/javascript/licenseInfo.mustache -------------------------------------------------------------------------------- /swagger-templates/javascript/mocha.opts: -------------------------------------------------------------------------------- 1 | --timeout 10000 2 | -------------------------------------------------------------------------------- /swagger-templates/javascript/model.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/connect-api-specification/HEAD/swagger-templates/javascript/model.mustache -------------------------------------------------------------------------------- /swagger-templates/javascript/model_doc.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/connect-api-specification/HEAD/swagger-templates/javascript/model_doc.mustache -------------------------------------------------------------------------------- /swagger-templates/javascript/model_test.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/connect-api-specification/HEAD/swagger-templates/javascript/model_test.mustache -------------------------------------------------------------------------------- /swagger-templates/javascript/package.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/connect-api-specification/HEAD/swagger-templates/javascript/package.mustache -------------------------------------------------------------------------------- /swagger-templates/javascript/partial_model_enum_class.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/connect-api-specification/HEAD/swagger-templates/javascript/partial_model_enum_class.mustache -------------------------------------------------------------------------------- /swagger-templates/javascript/partial_model_generic.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/connect-api-specification/HEAD/swagger-templates/javascript/partial_model_generic.mustache -------------------------------------------------------------------------------- /swagger-templates/javascript/partial_model_inner_enum.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/connect-api-specification/HEAD/swagger-templates/javascript/partial_model_inner_enum.mustache -------------------------------------------------------------------------------- /swagger-templates/javascript/travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/connect-api-specification/HEAD/swagger-templates/javascript/travis.yml -------------------------------------------------------------------------------- /swagger-templates/php/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/connect-api-specification/HEAD/swagger-templates/php/.travis.yml -------------------------------------------------------------------------------- /swagger-templates/php/ApiClient.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/connect-api-specification/HEAD/swagger-templates/php/ApiClient.mustache -------------------------------------------------------------------------------- /swagger-templates/php/ApiException.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/connect-api-specification/HEAD/swagger-templates/php/ApiException.mustache -------------------------------------------------------------------------------- /swagger-templates/php/ObjectSerializer.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/connect-api-specification/HEAD/swagger-templates/php/ObjectSerializer.mustache -------------------------------------------------------------------------------- /swagger-templates/php/README.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/connect-api-specification/HEAD/swagger-templates/php/README.mustache -------------------------------------------------------------------------------- /swagger-templates/php/api.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/connect-api-specification/HEAD/swagger-templates/php/api.mustache -------------------------------------------------------------------------------- /swagger-templates/php/api_doc.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/connect-api-specification/HEAD/swagger-templates/php/api_doc.mustache -------------------------------------------------------------------------------- /swagger-templates/php/api_test.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/connect-api-specification/HEAD/swagger-templates/php/api_test.mustache -------------------------------------------------------------------------------- /swagger-templates/php/autoload.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/connect-api-specification/HEAD/swagger-templates/php/autoload.mustache -------------------------------------------------------------------------------- /swagger-templates/php/composer.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/connect-api-specification/HEAD/swagger-templates/php/composer.mustache -------------------------------------------------------------------------------- /swagger-templates/php/configuration.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/connect-api-specification/HEAD/swagger-templates/php/configuration.mustache -------------------------------------------------------------------------------- /swagger-templates/php/model.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/connect-api-specification/HEAD/swagger-templates/php/model.mustache -------------------------------------------------------------------------------- /swagger-templates/php/model_doc.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/connect-api-specification/HEAD/swagger-templates/php/model_doc.mustache -------------------------------------------------------------------------------- /swagger-templates/php/model_test.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/connect-api-specification/HEAD/swagger-templates/php/model_test.mustache -------------------------------------------------------------------------------- /swagger-templates/python/README.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/connect-api-specification/HEAD/swagger-templates/python/README.mustache -------------------------------------------------------------------------------- /swagger-templates/python/__init__api.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/connect-api-specification/HEAD/swagger-templates/python/__init__api.mustache -------------------------------------------------------------------------------- /swagger-templates/python/__init__model.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/connect-api-specification/HEAD/swagger-templates/python/__init__model.mustache -------------------------------------------------------------------------------- /swagger-templates/python/__init__package.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/connect-api-specification/HEAD/swagger-templates/python/__init__package.mustache -------------------------------------------------------------------------------- /swagger-templates/python/api.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/connect-api-specification/HEAD/swagger-templates/python/api.mustache -------------------------------------------------------------------------------- /swagger-templates/python/api_client.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/connect-api-specification/HEAD/swagger-templates/python/api_client.mustache -------------------------------------------------------------------------------- /swagger-templates/python/api_doc.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/connect-api-specification/HEAD/swagger-templates/python/api_doc.mustache -------------------------------------------------------------------------------- /swagger-templates/python/api_test.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/connect-api-specification/HEAD/swagger-templates/python/api_test.mustache -------------------------------------------------------------------------------- /swagger-templates/python/configuration.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/connect-api-specification/HEAD/swagger-templates/python/configuration.mustache -------------------------------------------------------------------------------- /swagger-templates/python/model.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/connect-api-specification/HEAD/swagger-templates/python/model.mustache -------------------------------------------------------------------------------- /swagger-templates/python/model_doc.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/connect-api-specification/HEAD/swagger-templates/python/model_doc.mustache -------------------------------------------------------------------------------- /swagger-templates/python/model_test.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/connect-api-specification/HEAD/swagger-templates/python/model_test.mustache -------------------------------------------------------------------------------- /swagger-templates/python/partial_header.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/connect-api-specification/HEAD/swagger-templates/python/partial_header.mustache -------------------------------------------------------------------------------- /swagger-templates/python/rest.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/connect-api-specification/HEAD/swagger-templates/python/rest.mustache -------------------------------------------------------------------------------- /swagger-templates/python/setup.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/connect-api-specification/HEAD/swagger-templates/python/setup.mustache -------------------------------------------------------------------------------- /swagger-templates/python/travis.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/connect-api-specification/HEAD/swagger-templates/python/travis.mustache -------------------------------------------------------------------------------- /swagger-templates/ruby/Gemfile.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/connect-api-specification/HEAD/swagger-templates/ruby/Gemfile.mustache -------------------------------------------------------------------------------- /swagger-templates/ruby/README.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/connect-api-specification/HEAD/swagger-templates/ruby/README.mustache -------------------------------------------------------------------------------- /swagger-templates/ruby/Rakefile.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/connect-api-specification/HEAD/swagger-templates/ruby/Rakefile.mustache -------------------------------------------------------------------------------- /swagger-templates/ruby/api.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/connect-api-specification/HEAD/swagger-templates/ruby/api.mustache -------------------------------------------------------------------------------- /swagger-templates/ruby/api_client.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/connect-api-specification/HEAD/swagger-templates/ruby/api_client.mustache -------------------------------------------------------------------------------- /swagger-templates/ruby/api_client_spec.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/connect-api-specification/HEAD/swagger-templates/ruby/api_client_spec.mustache -------------------------------------------------------------------------------- /swagger-templates/ruby/api_doc.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/connect-api-specification/HEAD/swagger-templates/ruby/api_doc.mustache -------------------------------------------------------------------------------- /swagger-templates/ruby/api_error.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/connect-api-specification/HEAD/swagger-templates/ruby/api_error.mustache -------------------------------------------------------------------------------- /swagger-templates/ruby/api_info.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/connect-api-specification/HEAD/swagger-templates/ruby/api_info.mustache -------------------------------------------------------------------------------- /swagger-templates/ruby/api_test.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/connect-api-specification/HEAD/swagger-templates/ruby/api_test.mustache -------------------------------------------------------------------------------- /swagger-templates/ruby/base_object.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/connect-api-specification/HEAD/swagger-templates/ruby/base_object.mustache -------------------------------------------------------------------------------- /swagger-templates/ruby/base_object_spec.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/connect-api-specification/HEAD/swagger-templates/ruby/base_object_spec.mustache -------------------------------------------------------------------------------- /swagger-templates/ruby/configuration.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/connect-api-specification/HEAD/swagger-templates/ruby/configuration.mustache -------------------------------------------------------------------------------- /swagger-templates/ruby/configuration_spec.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/connect-api-specification/HEAD/swagger-templates/ruby/configuration_spec.mustache -------------------------------------------------------------------------------- /swagger-templates/ruby/gem.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/connect-api-specification/HEAD/swagger-templates/ruby/gem.mustache -------------------------------------------------------------------------------- /swagger-templates/ruby/gemspec.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/connect-api-specification/HEAD/swagger-templates/ruby/gemspec.mustache -------------------------------------------------------------------------------- /swagger-templates/ruby/git_push.sh.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/connect-api-specification/HEAD/swagger-templates/ruby/git_push.sh.mustache -------------------------------------------------------------------------------- /swagger-templates/ruby/gitignore.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/connect-api-specification/HEAD/swagger-templates/ruby/gitignore.mustache -------------------------------------------------------------------------------- /swagger-templates/ruby/model.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/connect-api-specification/HEAD/swagger-templates/ruby/model.mustache -------------------------------------------------------------------------------- /swagger-templates/ruby/model_doc.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/connect-api-specification/HEAD/swagger-templates/ruby/model_doc.mustache -------------------------------------------------------------------------------- /swagger-templates/ruby/model_test.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/connect-api-specification/HEAD/swagger-templates/ruby/model_test.mustache -------------------------------------------------------------------------------- /swagger-templates/ruby/partial_model_enum_class.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/connect-api-specification/HEAD/swagger-templates/ruby/partial_model_enum_class.mustache -------------------------------------------------------------------------------- /swagger-templates/ruby/partial_model_generic.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/connect-api-specification/HEAD/swagger-templates/ruby/partial_model_generic.mustache -------------------------------------------------------------------------------- /swagger-templates/ruby/rspec.mustache: -------------------------------------------------------------------------------- 1 | --color 2 | --require spec_helper 3 | -------------------------------------------------------------------------------- /swagger-templates/ruby/spec_helper.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/connect-api-specification/HEAD/swagger-templates/ruby/spec_helper.mustache -------------------------------------------------------------------------------- /swagger-templates/ruby/version.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/connect-api-specification/HEAD/swagger-templates/ruby/version.mustache --------------------------------------------------------------------------------