├── .github └── workflows │ ├── publish.yml │ └── release.yml ├── .ruby-version ├── LICENSE ├── README.md ├── actions ├── approve │ └── action.yml ├── enable-auto-merge │ └── action.yml ├── notify-release │ └── action.yml ├── notify-slack │ └── action.yml └── stripe-mock │ └── action.yml └── openapi ├── fixtures3.beta.json ├── fixtures3.beta.yaml ├── fixtures3.json ├── fixtures3.private_preview.json ├── fixtures3.private_preview.yaml ├── fixtures3.yaml ├── spec3.beta.sdk.json ├── spec3.beta.sdk.yaml ├── spec3.json ├── spec3.private_preview.sdk.json ├── spec3.private_preview.sdk.yaml ├── spec3.sdk.json ├── spec3.sdk.yaml ├── spec3.yaml └── upcoming-changes ├── README.md ├── dotnet.md ├── go.md ├── java.md ├── node.md ├── php.md ├── python.md ├── rest.md └── ruby.md /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/openapi/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/openapi/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.ruby-version: -------------------------------------------------------------------------------- 1 | 2.7 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/openapi/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/openapi/HEAD/README.md -------------------------------------------------------------------------------- /actions/approve/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/openapi/HEAD/actions/approve/action.yml -------------------------------------------------------------------------------- /actions/enable-auto-merge/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/openapi/HEAD/actions/enable-auto-merge/action.yml -------------------------------------------------------------------------------- /actions/notify-release/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/openapi/HEAD/actions/notify-release/action.yml -------------------------------------------------------------------------------- /actions/notify-slack/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/openapi/HEAD/actions/notify-slack/action.yml -------------------------------------------------------------------------------- /actions/stripe-mock/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/openapi/HEAD/actions/stripe-mock/action.yml -------------------------------------------------------------------------------- /openapi/fixtures3.beta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/openapi/HEAD/openapi/fixtures3.beta.json -------------------------------------------------------------------------------- /openapi/fixtures3.beta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/openapi/HEAD/openapi/fixtures3.beta.yaml -------------------------------------------------------------------------------- /openapi/fixtures3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/openapi/HEAD/openapi/fixtures3.json -------------------------------------------------------------------------------- /openapi/fixtures3.private_preview.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/openapi/HEAD/openapi/fixtures3.private_preview.json -------------------------------------------------------------------------------- /openapi/fixtures3.private_preview.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/openapi/HEAD/openapi/fixtures3.private_preview.yaml -------------------------------------------------------------------------------- /openapi/fixtures3.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/openapi/HEAD/openapi/fixtures3.yaml -------------------------------------------------------------------------------- /openapi/spec3.beta.sdk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/openapi/HEAD/openapi/spec3.beta.sdk.json -------------------------------------------------------------------------------- /openapi/spec3.beta.sdk.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/openapi/HEAD/openapi/spec3.beta.sdk.yaml -------------------------------------------------------------------------------- /openapi/spec3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/openapi/HEAD/openapi/spec3.json -------------------------------------------------------------------------------- /openapi/spec3.private_preview.sdk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/openapi/HEAD/openapi/spec3.private_preview.sdk.json -------------------------------------------------------------------------------- /openapi/spec3.private_preview.sdk.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/openapi/HEAD/openapi/spec3.private_preview.sdk.yaml -------------------------------------------------------------------------------- /openapi/spec3.sdk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/openapi/HEAD/openapi/spec3.sdk.json -------------------------------------------------------------------------------- /openapi/spec3.sdk.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/openapi/HEAD/openapi/spec3.sdk.yaml -------------------------------------------------------------------------------- /openapi/spec3.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/openapi/HEAD/openapi/spec3.yaml -------------------------------------------------------------------------------- /openapi/upcoming-changes/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/openapi/HEAD/openapi/upcoming-changes/README.md -------------------------------------------------------------------------------- /openapi/upcoming-changes/dotnet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/openapi/HEAD/openapi/upcoming-changes/dotnet.md -------------------------------------------------------------------------------- /openapi/upcoming-changes/go.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/openapi/HEAD/openapi/upcoming-changes/go.md -------------------------------------------------------------------------------- /openapi/upcoming-changes/java.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/openapi/HEAD/openapi/upcoming-changes/java.md -------------------------------------------------------------------------------- /openapi/upcoming-changes/node.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/openapi/HEAD/openapi/upcoming-changes/node.md -------------------------------------------------------------------------------- /openapi/upcoming-changes/php.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/openapi/HEAD/openapi/upcoming-changes/php.md -------------------------------------------------------------------------------- /openapi/upcoming-changes/python.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/openapi/HEAD/openapi/upcoming-changes/python.md -------------------------------------------------------------------------------- /openapi/upcoming-changes/rest.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/openapi/HEAD/openapi/upcoming-changes/rest.md -------------------------------------------------------------------------------- /openapi/upcoming-changes/ruby.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/openapi/HEAD/openapi/upcoming-changes/ruby.md --------------------------------------------------------------------------------