├── .github ├── runs-on.yml └── workflows │ ├── ci.yml │ └── release.yml ├── .gitignore ├── .ldrelease ├── build.sh ├── config.yml ├── prepare.sh ├── publish-dry-run.sh ├── publish.sh └── secrets.properties ├── CODEOWNERS ├── LICENSE.txt ├── Makefile ├── README-PREFIX.md ├── README.md ├── dependency-scan-gha.yml ├── samples ├── go │ ├── Makefile │ └── main.go ├── java │ ├── pom.xml │ └── src │ │ └── main │ │ └── java │ │ └── com │ │ └── launchdarkly │ │ └── sample │ │ └── Main.java ├── javascript │ ├── index.js │ ├── package-lock.json │ └── package.json ├── php │ ├── .gitignore │ ├── README.md │ ├── composer.json │ └── index.php ├── python │ └── main.py ├── ruby │ └── main.rb └── typescript-axios │ ├── index.ts │ ├── package.json │ └── tsconfig.json ├── scripts ├── build │ ├── go.sh │ ├── java.sh │ ├── javascript.sh │ ├── python.sh │ ├── ruby.sh │ └── typescript-axios.sh ├── release-dry-run │ ├── java.sh │ ├── javascript.sh │ ├── python.sh │ ├── ruby.sh │ └── typescript-axios.sh ├── release │ ├── build.sh │ ├── java.sh │ ├── javascript.sh │ ├── prepare.sh │ ├── publish-dry-run.sh │ ├── publish.sh │ ├── python.sh │ ├── ruby.sh │ └── typescript-axios.sh └── run-scripts-for-targets.sh └── swagger-codegen-templates ├── go ├── .gitkeep └── go.mod.mustache ├── java ├── build.gradle.mustache └── gitignore.mustache ├── javascript ├── .gitkeep └── package.mustache └── ruby └── .gitkeep /.github/runs-on.yml: -------------------------------------------------------------------------------- 1 | _extends: .github-private -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/launchdarkly/ld-openapi/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/launchdarkly/ld-openapi/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/launchdarkly/ld-openapi/HEAD/.gitignore -------------------------------------------------------------------------------- /.ldrelease/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/launchdarkly/ld-openapi/HEAD/.ldrelease/build.sh -------------------------------------------------------------------------------- /.ldrelease/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/launchdarkly/ld-openapi/HEAD/.ldrelease/config.yml -------------------------------------------------------------------------------- /.ldrelease/prepare.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/launchdarkly/ld-openapi/HEAD/.ldrelease/prepare.sh -------------------------------------------------------------------------------- /.ldrelease/publish-dry-run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/launchdarkly/ld-openapi/HEAD/.ldrelease/publish-dry-run.sh -------------------------------------------------------------------------------- /.ldrelease/publish.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/launchdarkly/ld-openapi/HEAD/.ldrelease/publish.sh -------------------------------------------------------------------------------- /.ldrelease/secrets.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/launchdarkly/ld-openapi/HEAD/.ldrelease/secrets.properties -------------------------------------------------------------------------------- /CODEOWNERS: -------------------------------------------------------------------------------- 1 | * @launchdarkly/team-enterprise 2 | -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/launchdarkly/ld-openapi/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/launchdarkly/ld-openapi/HEAD/Makefile -------------------------------------------------------------------------------- /README-PREFIX.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/launchdarkly/ld-openapi/HEAD/README-PREFIX.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/launchdarkly/ld-openapi/HEAD/README.md -------------------------------------------------------------------------------- /dependency-scan-gha.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/launchdarkly/ld-openapi/HEAD/dependency-scan-gha.yml -------------------------------------------------------------------------------- /samples/go/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/launchdarkly/ld-openapi/HEAD/samples/go/Makefile -------------------------------------------------------------------------------- /samples/go/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/launchdarkly/ld-openapi/HEAD/samples/go/main.go -------------------------------------------------------------------------------- /samples/java/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/launchdarkly/ld-openapi/HEAD/samples/java/pom.xml -------------------------------------------------------------------------------- /samples/java/src/main/java/com/launchdarkly/sample/Main.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/launchdarkly/ld-openapi/HEAD/samples/java/src/main/java/com/launchdarkly/sample/Main.java -------------------------------------------------------------------------------- /samples/javascript/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/launchdarkly/ld-openapi/HEAD/samples/javascript/index.js -------------------------------------------------------------------------------- /samples/javascript/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/launchdarkly/ld-openapi/HEAD/samples/javascript/package-lock.json -------------------------------------------------------------------------------- /samples/javascript/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/launchdarkly/ld-openapi/HEAD/samples/javascript/package.json -------------------------------------------------------------------------------- /samples/php/.gitignore: -------------------------------------------------------------------------------- 1 | vendor 2 | composer.lock 3 | -------------------------------------------------------------------------------- /samples/php/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/launchdarkly/ld-openapi/HEAD/samples/php/README.md -------------------------------------------------------------------------------- /samples/php/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/launchdarkly/ld-openapi/HEAD/samples/php/composer.json -------------------------------------------------------------------------------- /samples/php/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/launchdarkly/ld-openapi/HEAD/samples/php/index.php -------------------------------------------------------------------------------- /samples/python/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/launchdarkly/ld-openapi/HEAD/samples/python/main.py -------------------------------------------------------------------------------- /samples/ruby/main.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/launchdarkly/ld-openapi/HEAD/samples/ruby/main.rb -------------------------------------------------------------------------------- /samples/typescript-axios/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/launchdarkly/ld-openapi/HEAD/samples/typescript-axios/index.ts -------------------------------------------------------------------------------- /samples/typescript-axios/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/launchdarkly/ld-openapi/HEAD/samples/typescript-axios/package.json -------------------------------------------------------------------------------- /samples/typescript-axios/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/launchdarkly/ld-openapi/HEAD/samples/typescript-axios/tsconfig.json -------------------------------------------------------------------------------- /scripts/build/go.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/launchdarkly/ld-openapi/HEAD/scripts/build/go.sh -------------------------------------------------------------------------------- /scripts/build/java.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/launchdarkly/ld-openapi/HEAD/scripts/build/java.sh -------------------------------------------------------------------------------- /scripts/build/javascript.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/launchdarkly/ld-openapi/HEAD/scripts/build/javascript.sh -------------------------------------------------------------------------------- /scripts/build/python.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/launchdarkly/ld-openapi/HEAD/scripts/build/python.sh -------------------------------------------------------------------------------- /scripts/build/ruby.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/launchdarkly/ld-openapi/HEAD/scripts/build/ruby.sh -------------------------------------------------------------------------------- /scripts/build/typescript-axios.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/launchdarkly/ld-openapi/HEAD/scripts/build/typescript-axios.sh -------------------------------------------------------------------------------- /scripts/release-dry-run/java.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/launchdarkly/ld-openapi/HEAD/scripts/release-dry-run/java.sh -------------------------------------------------------------------------------- /scripts/release-dry-run/javascript.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/launchdarkly/ld-openapi/HEAD/scripts/release-dry-run/javascript.sh -------------------------------------------------------------------------------- /scripts/release-dry-run/python.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/launchdarkly/ld-openapi/HEAD/scripts/release-dry-run/python.sh -------------------------------------------------------------------------------- /scripts/release-dry-run/ruby.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/launchdarkly/ld-openapi/HEAD/scripts/release-dry-run/ruby.sh -------------------------------------------------------------------------------- /scripts/release-dry-run/typescript-axios.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/launchdarkly/ld-openapi/HEAD/scripts/release-dry-run/typescript-axios.sh -------------------------------------------------------------------------------- /scripts/release/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/launchdarkly/ld-openapi/HEAD/scripts/release/build.sh -------------------------------------------------------------------------------- /scripts/release/java.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/launchdarkly/ld-openapi/HEAD/scripts/release/java.sh -------------------------------------------------------------------------------- /scripts/release/javascript.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/launchdarkly/ld-openapi/HEAD/scripts/release/javascript.sh -------------------------------------------------------------------------------- /scripts/release/prepare.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/launchdarkly/ld-openapi/HEAD/scripts/release/prepare.sh -------------------------------------------------------------------------------- /scripts/release/publish-dry-run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/launchdarkly/ld-openapi/HEAD/scripts/release/publish-dry-run.sh -------------------------------------------------------------------------------- /scripts/release/publish.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/launchdarkly/ld-openapi/HEAD/scripts/release/publish.sh -------------------------------------------------------------------------------- /scripts/release/python.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/launchdarkly/ld-openapi/HEAD/scripts/release/python.sh -------------------------------------------------------------------------------- /scripts/release/ruby.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/launchdarkly/ld-openapi/HEAD/scripts/release/ruby.sh -------------------------------------------------------------------------------- /scripts/release/typescript-axios.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/launchdarkly/ld-openapi/HEAD/scripts/release/typescript-axios.sh -------------------------------------------------------------------------------- /scripts/run-scripts-for-targets.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/launchdarkly/ld-openapi/HEAD/scripts/run-scripts-for-targets.sh -------------------------------------------------------------------------------- /swagger-codegen-templates/go/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /swagger-codegen-templates/go/go.mod.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/launchdarkly/ld-openapi/HEAD/swagger-codegen-templates/go/go.mod.mustache -------------------------------------------------------------------------------- /swagger-codegen-templates/java/build.gradle.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/launchdarkly/ld-openapi/HEAD/swagger-codegen-templates/java/build.gradle.mustache -------------------------------------------------------------------------------- /swagger-codegen-templates/java/gitignore.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/launchdarkly/ld-openapi/HEAD/swagger-codegen-templates/java/gitignore.mustache -------------------------------------------------------------------------------- /swagger-codegen-templates/javascript/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /swagger-codegen-templates/javascript/package.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/launchdarkly/ld-openapi/HEAD/swagger-codegen-templates/javascript/package.mustache -------------------------------------------------------------------------------- /swagger-codegen-templates/ruby/.gitkeep: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------