diff --git a/docker/seed/Dockerfile.ts b/docker/seed/Dockerfile.ts index 64663fca2834..57108f1a901c 100644 --- a/docker/seed/Dockerfile.ts +++ b/docker/seed/Dockerfile.ts @@ -24,7 +24,7 @@ RUN git config --global user.email "build@example.com" && \ CGO_ENABLED=0 go build -trimpath -ldflags "-s -w" -o /out/tsgolint ./cmd/tsgolint && \ ls -la /out/tsgolint -FROM node:24.16.0-trixie-slim +FROM node:24.17.0-trixie-slim ENV PNPM_STORE_PATH=/.pnpm-cache ENV YARN_CACHE_FOLDER=/.yarn-cache diff --git a/generators/cli/Dockerfile b/generators/cli/Dockerfile index 238590882091..9f6d8742764c 100644 --- a/generators/cli/Dockerfile +++ b/generators/cli/Dockerfile @@ -1,4 +1,4 @@ -FROM node:24.16-trixie-slim +FROM node:24.17-trixie-slim RUN apt-get update \ && apt-get -y --no-install-recommends dist-upgrade \ && apt-get -y --no-install-recommends install rustfmt \ diff --git a/generators/csharp/model/Dockerfile b/generators/csharp/model/Dockerfile index d60afa203e5a..5b252f2b9f95 100644 --- a/generators/csharp/model/Dockerfile +++ b/generators/csharp/model/Dockerfile @@ -1,4 +1,4 @@ -FROM node:24.16-alpine3.23 AS node +FROM node:24.17-alpine3.23 AS node FROM mcr.microsoft.com/dotnet/sdk:10.0-alpine ENV YARN_CACHE_FOLDER=/.yarn @@ -24,7 +24,7 @@ COPY --from=node /usr/local/lib/node_modules /usr/local/lib/node_modules RUN ln -s ../lib/node_modules/npm/bin/npm-cli.js /usr/local/bin/npm \ && ln -s ../lib/node_modules/npm/bin/npx-cli.js /usr/local/bin/npx -# Patch brace-expansion to 5.0.6 (GHSA-jxxr-4gwj-5jf2; node:24.16 vendors 5.0.5). +# Patch brace-expansion to 5.0.6 (GHSA-jxxr-4gwj-5jf2; node:24.17 vendors 5.0.5). RUN cd /usr/local/lib/node_modules/npm/node_modules && \ npm pack brace-expansion@5.0.6 && \ rm -rf brace-expansion && \ diff --git a/generators/csharp/sdk/Dockerfile b/generators/csharp/sdk/Dockerfile index 6782ae952feb..10679ba179b5 100644 --- a/generators/csharp/sdk/Dockerfile +++ b/generators/csharp/sdk/Dockerfile @@ -1,5 +1,5 @@ # Stage 1: Node.js -FROM node:24.16-alpine3.23 AS node +FROM node:24.17-alpine3.23 AS node FROM mcr.microsoft.com/dotnet/sdk:10.0-alpine diff --git a/generators/go/model/Dockerfile b/generators/go/model/Dockerfile index 77e9e1ada24a..0425ac37c58e 100644 --- a/generators/go/model/Dockerfile +++ b/generators/go/model/Dockerfile @@ -1,4 +1,4 @@ -FROM node:24.16-alpine3.23 AS node +FROM node:24.17-alpine3.23 AS node FROM golang:1.26.4-alpine3.23 diff --git a/generators/go/sdk/Dockerfile b/generators/go/sdk/Dockerfile index 9986e8d95576..c19281a8a779 100644 --- a/generators/go/sdk/Dockerfile +++ b/generators/go/sdk/Dockerfile @@ -1,5 +1,5 @@ # Stage 1: Build Node CLI -FROM node:24.16-alpine3.23 AS node +FROM node:24.17-alpine3.23 AS node RUN apk --no-cache add git zip RUN git config --global user.email "115122769+fern-api[bot]@users.noreply.github.com" && \ diff --git a/generators/java-v2/dynamic-snippets/src/EndpointSnippetGenerator.ts b/generators/java-v2/dynamic-snippets/src/EndpointSnippetGenerator.ts index d1063b30695a..d518f0903c2a 100644 --- a/generators/java-v2/dynamic-snippets/src/EndpointSnippetGenerator.ts +++ b/generators/java-v2/dynamic-snippets/src/EndpointSnippetGenerator.ts @@ -957,7 +957,11 @@ export class EndpointSnippetGenerator { filePropertyInfo: FilePropertyInfo; }): java.BuilderParameter[] { if (this.context.shouldInlineFileProperties()) { - return [...filePropertyInfo.fileFields, ...filePropertyInfo.bodyPropertyFields]; + // Body properties are emitted before file properties so that the snippet's builder call + // follows the generated staged-builder order. The dynamic IR does not expose whether a + // file is optional, so file builder parameters carry a concrete (non-optional) value and + // would otherwise be treated as required and ordered ahead of a required body property. + return [...filePropertyInfo.bodyPropertyFields, ...filePropertyInfo.fileFields]; } return filePropertyInfo.bodyPropertyFields; } diff --git a/generators/java-v2/dynamic-snippets/src/__test__/__snapshots__/DynamicSnippetsGenerator.test.ts.snap b/generators/java-v2/dynamic-snippets/src/__test__/__snapshots__/DynamicSnippetsGenerator.test.ts.snap index 68752d6b7f88..ed7c35a1e24c 100644 --- a/generators/java-v2/dynamic-snippets/src/__test__/__snapshots__/DynamicSnippetsGenerator.test.ts.snap +++ b/generators/java-v2/dynamic-snippets/src/__test__/__snapshots__/DynamicSnippetsGenerator.test.ts.snap @@ -343,10 +343,8 @@ exports[`snippets (default) > file-upload > 'POST /' 1`] = ` "package com.example.usage; import com.acme.acme.AcmeAcmeClient; -import com.acme.acme.core.FileStream; import com.acme.acme.types.MyRequest; -import java.io.ByteArrayInputStream; -import java.nio.charset.StandardCharsets; +import java.io.File; AcmeAcmeClient client = AcmeAcmeClient .builder() @@ -356,10 +354,16 @@ client.service().post( MyRequest .builder() .file( - new FileStream(ByteArrayInputStream("Hello, world!".getBytes(StandardCharsets.UTF_8))) + new File("Hello, world!") ) .fileList( - new FileStream(ByteArrayInputStream("First".getBytes(StandardCharsets.UTF_8))) + new File("First") + ) + .maybeFile( + new File("path/to/file") + ) + .maybeFileList( + new File("path/to/file") ) .build() ); @@ -370,10 +374,8 @@ exports[`snippets (default) > file-upload > 'POST /just-file' 1`] = ` "package com.example.usage; import com.acme.acme.AcmeAcmeClient; -import com.acme.acme.core.FileStream; import com.acme.acme.types.JustFileRequest; -import java.io.ByteArrayInputStream; -import java.nio.charset.StandardCharsets; +import java.io.File; AcmeAcmeClient client = AcmeAcmeClient .builder() @@ -383,7 +385,7 @@ client.service().justFile( JustFileRequest .builder() .file( - new FileStream(ByteArrayInputStream("Hello, world!".getBytes(StandardCharsets.UTF_8))) + new File("Hello, world!") ) .build() ); @@ -394,10 +396,8 @@ exports[`snippets (default) > file-upload > 'POST /just-file-with-query-params' "package com.example.usage; import com.acme.acme.AcmeAcmeClient; -import com.acme.acme.core.FileStream; import com.acme.acme.types.JustFileWithQueryParamsRequest; -import java.io.ByteArrayInputStream; -import java.nio.charset.StandardCharsets; +import java.io.File; AcmeAcmeClient client = AcmeAcmeClient .builder() @@ -408,7 +408,7 @@ client.service().justFileWithQueryParams( .builder() .integer(42) .file( - new FileStream(ByteArrayInputStream("Hello, world!".getBytes(StandardCharsets.UTF_8))) + new File("Hello, world!") ) .maybeString("exists") .build() diff --git a/generators/java-v2/dynamic-snippets/src/context/DynamicSnippetsGeneratorContext.ts b/generators/java-v2/dynamic-snippets/src/context/DynamicSnippetsGeneratorContext.ts index e12819c7fef4..d40dd89bbb6a 100644 --- a/generators/java-v2/dynamic-snippets/src/context/DynamicSnippetsGeneratorContext.ts +++ b/generators/java-v2/dynamic-snippets/src/context/DynamicSnippetsGeneratorContext.ts @@ -191,7 +191,7 @@ export class DynamicSnippetsGeneratorContext extends AbstractDynamicSnippetsGene java.codeblock((writer) => { writer.write("new "); writer.writeNode(this.getFileStreamClassReference()); - writer.write("("); + writer.write("(new "); writer.writeNode(this.getByteArrayInputStreamClassReference()); writer.write("("); writer.writeNode(java.TypeLiteral.string(content)); @@ -202,6 +202,25 @@ export class DynamicSnippetsGeneratorContext extends AbstractDynamicSnippetsGene ); } + public getJavaIoFileFromString(content: string): java.TypeLiteral { + return java.TypeLiteral.reference( + java.codeblock((writer) => { + writer.write("new "); + writer.writeNode(this.getJavaIoFileClassReference()); + writer.write("("); + writer.writeNode(java.TypeLiteral.string(content)); + writer.write(")"); + }) + ); + } + + public getJavaIoFileClassReference(): java.ClassReference { + return java.classReference({ + name: "File", + packageName: "java.io" + }); + } + public getFileStreamClassReference(): java.ClassReference { return java.classReference({ name: "FileStream", diff --git a/generators/java-v2/dynamic-snippets/src/context/FilePropertyMapper.ts b/generators/java-v2/dynamic-snippets/src/context/FilePropertyMapper.ts index 1b139a3a82b8..f176ecedaec4 100644 --- a/generators/java-v2/dynamic-snippets/src/context/FilePropertyMapper.ts +++ b/generators/java-v2/dynamic-snippets/src/context/FilePropertyMapper.ts @@ -63,6 +63,12 @@ export class FilePropertyMapper { record: Record; }): java.TypeLiteral { const fileValue = this.context.getSingleFileValue({ property, record }); + if (this.context.shouldInlineFileProperties()) { + // In inline-file-properties mode the request builder field is typed as `java.io.File`, + // so render a `java.io.File` literal. A required file is a staged builder step that + // cannot be omitted, so fall back to a placeholder path when the example has no value. + return this.context.getJavaIoFileFromString(fileValue ?? "path/to/file"); + } if (fileValue == null) { return java.TypeLiteral.nop(); } @@ -77,6 +83,13 @@ export class FilePropertyMapper { record: Record; }): java.TypeLiteral { const fileValues = this.context.getFileArrayValues({ property, record }); + if (this.context.shouldInlineFileProperties()) { + // In inline-file-properties mode the request builder field is typed as `java.io.File`, + // so render a `java.io.File` literal (the Java SDK does not support file arrays, so a + // single value is emitted) and fall back to a placeholder when no example value exists. + const fileValue = fileValues?.[0] ?? "path/to/file"; + return this.context.getJavaIoFileFromString(fileValue); + } if (fileValues == null) { return java.TypeLiteral.nop(); } diff --git a/generators/java/sdk/Dockerfile b/generators/java/sdk/Dockerfile index fc4cee7848fa..7da1f17a67ad 100644 --- a/generators/java/sdk/Dockerfile +++ b/generators/java/sdk/Dockerfile @@ -1,6 +1,6 @@ # Stage 1: Java V2 # Non-slim trixie because the patch RUN steps below shell out to curl and tar. -FROM node:24.16-trixie AS node +FROM node:24.17-trixie AS node COPY generators/java-v2/sdk/dist/cli.cjs /dist/cli.cjs COPY generators/java-v2/sdk/features.yml /assets/features.yml diff --git a/generators/java/sdk/changes/4.10.2/fix-inline-file-property-snippets.yml b/generators/java/sdk/changes/4.10.2/fix-inline-file-property-snippets.yml new file mode 100644 index 000000000000..2321852c0af3 --- /dev/null +++ b/generators/java/sdk/changes/4.10.2/fix-inline-file-property-snippets.yml @@ -0,0 +1,10 @@ +# yaml-language-server: $schema=../../../../../fern-changes-yml.schema.json + +- summary: | + Dynamic snippets now compile for endpoints that inline file properties into the + request builder (`inline-file-properties: true`). File builder fields are typed as + `java.io.File`, so snippets render `new File("path/to/file")` (with a placeholder + path when the example omits a file) instead of a `FileStream`, and body properties + are emitted before file properties so a required body property's staged-builder step + precedes an optional file step. + type: fix diff --git a/generators/java/sdk/versions.yml b/generators/java/sdk/versions.yml index f3acc8a6286f..ae4c37ddd197 100644 --- a/generators/java/sdk/versions.yml +++ b/generators/java/sdk/versions.yml @@ -1,4 +1,16 @@ # yaml-language-server: $schema=../../../fern-versions-yml.schema.json +- version: 4.10.2 + changelogEntry: + - summary: | + Dynamic snippets now compile for endpoints that inline file properties into the + request builder (`inline-file-properties: true`). File builder fields are typed as + `java.io.File`, so snippets render `new File("path/to/file")` (with a placeholder + path when the example omits a file) instead of a `FileStream`, and body properties + are emitted before file properties so a required body property's staged-builder step + precedes an optional file step. + type: fix + createdAt: "2026-06-18" + irVersion: 66 - version: 4.10.1 changelogEntry: - summary: | diff --git a/generators/openapi/Dockerfile b/generators/openapi/Dockerfile index b1b73bc8d020..b757018815a0 100644 --- a/generators/openapi/Dockerfile +++ b/generators/openapi/Dockerfile @@ -1,4 +1,4 @@ -FROM node:24.16-alpine3.23 +FROM node:24.17-alpine3.23 RUN apk update && apk upgrade --no-cache \ && rm -rf /usr/local/lib/node_modules/npm /usr/local/bin/npm /usr/local/bin/npx COPY dist /dist diff --git a/generators/php/model/Dockerfile b/generators/php/model/Dockerfile index 7f0b4ac2f5d7..d00262dbbfca 100644 --- a/generators/php/model/Dockerfile +++ b/generators/php/model/Dockerfile @@ -1,4 +1,4 @@ -FROM node:24.16-alpine3.23 AS node +FROM node:24.17-alpine3.23 AS node FROM composer:2.9.7 ENV YARN_CACHE_FOLDER=/.yarn diff --git a/generators/php/sdk/Dockerfile b/generators/php/sdk/Dockerfile index 3668a539a2dd..e385096d7c69 100644 --- a/generators/php/sdk/Dockerfile +++ b/generators/php/sdk/Dockerfile @@ -1,4 +1,4 @@ -FROM node:24.16-alpine3.23 AS node +FROM node:24.17-alpine3.23 AS node FROM composer:2.9.7 ENV YARN_CACHE_FOLDER=/.yarn diff --git a/generators/python-v2/pydantic-model/Dockerfile b/generators/python-v2/pydantic-model/Dockerfile index b6302483274c..e0382c6ac824 100644 --- a/generators/python-v2/pydantic-model/Dockerfile +++ b/generators/python-v2/pydantic-model/Dockerfile @@ -1,6 +1,6 @@ # Bundled npm globals are removed below so npm's JS dependencies cannot be # flagged or invoked at runtime — this image only runs the bundled CLI via node. -FROM node:24.16-trixie-slim +FROM node:24.17-trixie-slim # Security update 2026-05-18: trixie's krb5 (1.21.3-5), curl (8.14.1), # and gnutls28 (3.8.9) are still vulnerable to CVE-2026-40355, # CVE-2026-40356 (krb5), CVE-2026-1965/4873/5545/6253/6429 (curl), @@ -20,6 +20,7 @@ RUN echo "Types: deb" > /etc/apt/sources.list.d/sid.sources \ && apt-get install -y --no-install-recommends -t sid \ libkrb5-3 libkrb5support0 libk5crypto3 libgssapi-krb5-2 \ curl libcurl4t64 libgnutls30t64 \ + libssh2-1t64 libtasn1-6 \ perl-base perl \ && rm -f /etc/apt/sources.list.d/sid.sources /etc/apt/preferences.d/sid-low \ && rm -rf /var/lib/apt/lists/* diff --git a/generators/python-v2/sdk/Dockerfile b/generators/python-v2/sdk/Dockerfile index dc0b9719a9c6..b1aaba639088 100644 --- a/generators/python-v2/sdk/Dockerfile +++ b/generators/python-v2/sdk/Dockerfile @@ -1,4 +1,4 @@ -FROM node:24.16-trixie-slim +FROM node:24.17-trixie-slim # Security update 2026-05-18: trixie's krb5 (1.21.3-5), curl (8.14.1), # and gnutls28 (3.8.9) are still vulnerable to CVE-2026-40355, # CVE-2026-40356 (krb5), CVE-2026-1965/4873/5545/6253/6429 (curl), @@ -18,10 +18,11 @@ RUN echo "Types: deb" > /etc/apt/sources.list.d/sid.sources \ && apt-get install -y --no-install-recommends -t sid \ libkrb5-3 libkrb5support0 libk5crypto3 libgssapi-krb5-2 \ curl libcurl4t64 libgnutls30t64 \ + libssh2-1t64 libtasn1-6 \ perl-base perl \ && rm -f /etc/apt/sources.list.d/sid.sources /etc/apt/preferences.d/sid-low \ && rm -rf /var/lib/apt/lists/* -# Patch brace-expansion to 5.0.6 (GHSA-jxxr-4gwj-5jf2; node:24.16 vendors 5.0.5). +# Patch brace-expansion to 5.0.6 (GHSA-jxxr-4gwj-5jf2; node:24.17 vendors 5.0.5). RUN cd /usr/local/lib/node_modules/npm/node_modules && \ npm pack brace-expansion@5.0.6 && \ rm -rf brace-expansion && \ diff --git a/generators/python/sdk/Dockerfile b/generators/python/sdk/Dockerfile index ddb0f0132c57..6323ed72c705 100644 --- a/generators/python/sdk/Dockerfile +++ b/generators/python/sdk/Dockerfile @@ -1,5 +1,5 @@ # Stage 1: Copy Node.js from official image -FROM node:24.16-trixie-slim AS node +FROM node:24.17-trixie-slim AS node # Stage 2: Base Python image with dependencies # Pinned to the latest 3.13 patch release to pull in CPython security fixes @@ -33,6 +33,7 @@ RUN echo "Types: deb" > /etc/apt/sources.list.d/sid.sources \ libkrb5-3 libkrb5support0 libk5crypto3 libgssapi-krb5-2 \ curl libcurl4t64 libgnutls30t64 \ libexpat1 \ + libssh2-1t64 libtasn1-6 \ perl-base perl \ && rm -f /etc/apt/sources.list.d/sid.sources /etc/apt/preferences.d/sid-low \ && rm -rf /var/lib/apt/lists/* diff --git a/generators/rust/model/Dockerfile b/generators/rust/model/Dockerfile index ca96d84cf8dd..8dbb1c6b6a2f 100644 --- a/generators/rust/model/Dockerfile +++ b/generators/rust/model/Dockerfile @@ -8,7 +8,7 @@ RUN rustup component add rustfmt \ && cp "$RUSTFMT" /rustfmt/rustfmt \ && cp "$(dirname "$RUSTFMT")/../lib"/librustc_driver-*.so /rustfmt/lib/ -FROM node:24.16-alpine3.23 +FROM node:24.17-alpine3.23 RUN apk update && apk upgrade --no-cache @@ -24,7 +24,7 @@ ENV PATH=/usr/local/lib/rustfmt:$PATH \ LD_LIBRARY_PATH=/usr/local/lib/rustfmt/lib RUN rustfmt --version -# Patch brace-expansion to 5.0.6 (GHSA-jxxr-4gwj-5jf2; node:24.16 vendors 5.0.5). +# Patch brace-expansion to 5.0.6 (GHSA-jxxr-4gwj-5jf2; node:24.17 vendors 5.0.5). RUN cd /usr/local/lib/node_modules/npm/node_modules && \ npm pack brace-expansion@5.0.6 && \ rm -rf brace-expansion && \ diff --git a/generators/rust/sdk/Dockerfile b/generators/rust/sdk/Dockerfile index a63c062ee1cb..334a43402ba3 100644 --- a/generators/rust/sdk/Dockerfile +++ b/generators/rust/sdk/Dockerfile @@ -5,7 +5,7 @@ FROM rust:1.91-alpine3.23 AS rust RUN rustup component add rustfmt -FROM node:24.16-alpine3.23 +FROM node:24.17-alpine3.23 RUN apk update && apk upgrade --no-cache diff --git a/generators/swift/model/Dockerfile b/generators/swift/model/Dockerfile index b0bd5b0b9a6b..2128e3b5eb76 100644 --- a/generators/swift/model/Dockerfile +++ b/generators/swift/model/Dockerfile @@ -1,10 +1,10 @@ -FROM node:24.16-alpine3.23 +FROM node:24.17-alpine3.23 RUN apk update && apk upgrade --no-cache && apk --no-cache add curl # Patch npm's bundled picomatch@4.0.3 -> 4.0.4 (GHSA-c2c7-rcm5-vvqj, # GHSA-3v7f-55p6-f55p) and brace-expansion@5.0.4 -> 5.0.6 -# (GHSA-jxxr-4gwj-5jf2) in node:24.16's bundled npm 11.12.1. +# (GHSA-jxxr-4gwj-5jf2) in node:24.17's bundled npm 11.12.1. RUN for dir in \ /usr/local/lib/node_modules/npm/node_modules/picomatch \ /usr/local/lib/node_modules/npm/node_modules/tinyglobby/node_modules/picomatch; do \ diff --git a/generators/swift/sdk/Dockerfile b/generators/swift/sdk/Dockerfile index 991aaee60f3c..d3e6a0e47d44 100644 --- a/generators/swift/sdk/Dockerfile +++ b/generators/swift/sdk/Dockerfile @@ -1,4 +1,4 @@ -FROM node:24.16-alpine3.23 +FROM node:24.17-alpine3.23 RUN apk update && apk upgrade --no-cache RUN apk --no-cache add bash curl git zip @@ -8,7 +8,7 @@ RUN git config --global user.email "115122769+fern-api[bot]@users.noreply.github # Patch picomatch to 4.0.4 (GHSA-c2c7-rcm5-vvqj ReDoS via extglob quantifiers, # GHSA-3v7f-55p6-f55p method injection in POSIX character classes) and # brace-expansion to 5.0.6 (GHSA-jxxr-4gwj-5jf2 zero-step sequence hangs) -# in npm's bundled node_modules. node:24.16 ships npm 11.12.1 with +# in npm's bundled node_modules. node:24.17 ships npm 11.12.1 with # picomatch@4.0.3 and brace-expansion@5.0.4. RUN for dir in \ /usr/local/lib/node_modules/npm/node_modules/picomatch \ diff --git a/generators/swift/sdk/changes/0.35.15/fix-stream-parameter-response-type.yml b/generators/swift/sdk/changes/0.35.15/fix-stream-parameter-response-type.yml new file mode 100644 index 000000000000..2a1b2ac85ca7 --- /dev/null +++ b/generators/swift/sdk/changes/0.35.15/fix-stream-parameter-response-type.yml @@ -0,0 +1,7 @@ +- summary: | + Fix endpoints with a stream-parameter response generating a `JSONValue` return + type, which broke generated wire tests that compared the result against the + concrete response model. The Swift SDK does not yet implement response + streaming, so these endpoints are now generated against their non-streaming + response shape (e.g. the declared JSON response model). + type: fix diff --git a/generators/swift/sdk/src/generators/client/EndpointMethodGenerator.ts b/generators/swift/sdk/src/generators/client/EndpointMethodGenerator.ts index 747c57534899..7b14d870e3bf 100644 --- a/generators/swift/sdk/src/generators/client/EndpointMethodGenerator.ts +++ b/generators/swift/sdk/src/generators/client/EndpointMethodGenerator.ts @@ -195,7 +195,22 @@ export class EndpointMethodGenerator { text: () => this.referencer.referenceSwiftType("String"), bytes: () => this.referencer.referenceAsIsType("JSONValue"), // TODO(kafkas): Handle bytes responses streaming: () => this.referencer.referenceAsIsType("JSONValue"), // TODO(kafkas): Handle streaming responses - streamParameter: () => this.referencer.referenceAsIsType("JSONValue"), // TODO(kafkas): Handle stream parameter responses + // The Swift SDK does not yet implement response streaming, so a stream-parameter + // endpoint is generated against its non-streaming response shape. + streamParameter: (resp) => this.getMethodReturnTypeForNonStreamResponse(resp.nonStreamResponse), + _other: () => this.referencer.referenceAsIsType("JSONValue") + }); + } + + private getMethodReturnTypeForNonStreamResponse( + nonStreamResponse: FernIr.NonStreamHttpResponseBody + ): swift.TypeReference { + return nonStreamResponse._visit({ + json: (resp) => + this.sdkGeneratorContext.getSwiftTypeReferenceFromScope(resp.responseBodyType, this.parentClassSymbol), + fileDownload: () => this.referencer.referenceFoundationType("Data"), + text: () => this.referencer.referenceSwiftType("String"), + bytes: () => this.referencer.referenceAsIsType("JSONValue"), // TODO(kafkas): Handle bytes responses _other: () => this.referencer.referenceAsIsType("JSONValue") }); } diff --git a/generators/swift/sdk/versions.yml b/generators/swift/sdk/versions.yml index ab169239d468..ece9b5b1b2d7 100644 --- a/generators/swift/sdk/versions.yml +++ b/generators/swift/sdk/versions.yml @@ -1,4 +1,15 @@ # yaml-language-server: $schema=../../../fern-versions-yml.schema.json +- version: 0.35.15 + changelogEntry: + - summary: | + Fix endpoints with a stream-parameter response generating a `JSONValue` return + type, which broke generated wire tests that compared the result against the + concrete response model. The Swift SDK does not yet implement response + streaming, so these endpoints are now generated against their non-streaming + response shape (e.g. the declared JSON response model). + type: fix + createdAt: "2026-06-18" + irVersion: 66 - version: 0.35.14 changelogEntry: - summary: | diff --git a/generators/typescript/sdk/cli/Dockerfile b/generators/typescript/sdk/cli/Dockerfile index 6db0575456e0..8a2ff219fc51 100644 --- a/generators/typescript/sdk/cli/Dockerfile +++ b/generators/typescript/sdk/cli/Dockerfile @@ -19,7 +19,7 @@ RUN git config --global user.email "build@example.com" && \ CGO_ENABLED=0 go build -trimpath -ldflags "-s -w" -o /out/tsgolint ./cmd/tsgolint && \ ls -la /out/tsgolint -FROM node:24.16-trixie-slim +FROM node:24.17-trixie-slim # Apply latest Debian security updates so that grype-tracked OS package # vulnerabilities (glibc, dpkg, nghttp2, libcap2, systemd, libgcrypt20, @@ -46,6 +46,7 @@ RUN echo "Types: deb" > /etc/apt/sources.list.d/sid.sources \ libkrb5-3 libkrb5support0 libk5crypto3 libgssapi-krb5-2 \ curl libcurl4t64 libgnutls30t64 \ libexpat1 \ + libssh2-1t64 libtasn1-6 \ perl-base perl \ && rm -f /etc/apt/sources.list.d/sid.sources /etc/apt/preferences.d/sid-low \ && rm -rf /var/lib/apt/lists/* diff --git a/generators/typescript/sdk/validator/Dockerfile b/generators/typescript/sdk/validator/Dockerfile index 71e6a3231e6c..c2e142bd2d99 100644 --- a/generators/typescript/sdk/validator/Dockerfile +++ b/generators/typescript/sdk/validator/Dockerfile @@ -1,4 +1,4 @@ -FROM node:24.16-trixie-slim +FROM node:24.17-trixie-slim # Apply latest Debian security updates so that grype-tracked OS package # vulnerabilities (glibc, dpkg, nghttp2, libcap2, systemd, libgcrypt20, @@ -35,7 +35,7 @@ RUN cd /tmp/warm-cache \ && pnpm install --ignore-scripts --prefer-offline \ && rm -rf /tmp/warm-cache/node_modules -# Patch brace-expansion to 5.0.6 (GHSA-jxxr-4gwj-5jf2; node:24.16 vendors 5.0.5). +# Patch brace-expansion to 5.0.6 (GHSA-jxxr-4gwj-5jf2; node:24.17 vendors 5.0.5). RUN cd /usr/local/lib/node_modules/npm/node_modules && \ npm pack brace-expansion@5.0.6 && \ rm -rf brace-expansion && \ diff --git a/packages/cli/cli/changes/5.50.1/fix-js-yaml-cve.yml b/packages/cli/cli/changes/5.50.1/fix-js-yaml-cve.yml new file mode 100644 index 000000000000..6543ab519549 --- /dev/null +++ b/packages/cli/cli/changes/5.50.1/fix-js-yaml-cve.yml @@ -0,0 +1,4 @@ +- summary: | + Bump js-yaml to 4.2.0 across all transitive dependencies to fix + CVE-2026-53550 (quadratic-complexity DoS in merge key handling). + type: chore diff --git a/packages/cli/cli/versions.yml b/packages/cli/cli/versions.yml index ee9528519fd1..58e0f1d6a626 100644 --- a/packages/cli/cli/versions.yml +++ b/packages/cli/cli/versions.yml @@ -1,4 +1,12 @@ # yaml-language-server: $schema=../../../fern-versions-yml.schema.json +- version: 5.50.1 + changelogEntry: + - summary: | + Bump js-yaml to 4.2.0 across all transitive dependencies to fix + CVE-2026-53550 (quadratic-complexity DoS in merge key handling). + type: chore + createdAt: "2026-06-18" + irVersion: 67 - version: 5.50.0 changelogEntry: - summary: | diff --git a/packages/cli/docs-markdown-utils/src/__test__/parseImagePaths.test.ts b/packages/cli/docs-markdown-utils/src/__test__/parseImagePaths.test.ts index 20ca33146fbb..fc20a47a0f93 100644 --- a/packages/cli/docs-markdown-utils/src/__test__/parseImagePaths.test.ts +++ b/packages/cli/docs-markdown-utils/src/__test__/parseImagePaths.test.ts @@ -108,21 +108,21 @@ describe("parseImagePaths", () => { const page = '---\nimage: { type: "url", value: "https://someurl.com" }\n---'; const result = parseImagePaths(page, PATHS); expect(result.filepaths).toEqual([]); - expect(result.markdown.trim()).toEqual("---\nimage:\n type: url\n value: 'https://someurl.com'\n---"); + expect(result.markdown.trim()).toEqual("---\nimage:\n type: url\n value: https://someurl.com\n---"); }); it("should parse url from frontmatter yaml", () => { const page = '---\nimage:\n type: url\n value: "https://someurl.com"\n---'; const result = parseImagePaths(page, PATHS); expect(result.filepaths).toEqual([]); - expect(result.markdown.trim()).toEqual("---\nimage:\n type: url\n value: 'https://someurl.com'\n---"); + expect(result.markdown.trim()).toEqual("---\nimage:\n type: url\n value: https://someurl.com\n---"); }); it("should parse url from frontmatter text", () => { const page = '---\nimage: "https://someurl.com"\n---'; const result = parseImagePaths(page, PATHS); expect(result.filepaths).toEqual([]); - expect(result.markdown.trim()).toEqual("---\nimage:\n type: url\n value: 'https://someurl.com'\n---"); + expect(result.markdown.trim()).toEqual("---\nimage:\n type: url\n value: https://someurl.com\n---"); }); it("should parse images from frontmatter text", () => { @@ -139,7 +139,7 @@ describe("parseImagePaths", () => { const result = parseImagePaths(page, PATHS); expect(result.filepaths).toEqual(["/Volume/git/fern/my/docs/folder/path/to/image.png"]); expect(result.markdown.trim()).toEqual( - "---\n'og:image':\n type: fileId\n value: /Volume/git/fern/my/docs/folder/path/to/image.png\n---" + "---\nog:image:\n type: fileId\n value: /Volume/git/fern/my/docs/folder/path/to/image.png\n---" ); }); @@ -167,7 +167,7 @@ describe("parseImagePaths", () => { "--- logo: type: url - value: 'https://someurl.com' + value: https://someurl.com ---" ` ); @@ -1140,7 +1140,8 @@ describe("consistency between AST and streaming parsers", () => { it("should preserve quoted leading-zero title through parse+stringify round-trip", () => { const page = "---\ntitle: '001999'\ndescription: test\n---\nBody content"; const result = parseImagePaths(page, PATHS); - expect(result.markdown).toContain('"001999"'); + // js-yaml v4 correctly single-quotes leading-zero strings + expect(result.markdown).toMatch(/title: '001999'/); expect(result.markdown).not.toMatch(/title: 001999\n/); }); @@ -1156,12 +1157,13 @@ describe("consistency between AST and streaming parsers", () => { expect(result.markdown).toMatch(/title: '000000'/); }); - it("should preserve non-octal leading-zero titles that js-yaml would leave unquoted", () => { + it("should preserve non-octal leading-zero titles that js-yaml v4 quotes correctly", () => { const nonOctalCases = ["009999", "001599", "002996", "002997", "002998"]; for (const val of nonOctalCases) { const page = `---\ntitle: '${val}'\ndescription: test\n---\nBody content`; const result = parseImagePaths(page, PATHS); - expect(result.markdown).toContain(`"${val}"`); + // js-yaml v4 correctly quotes these with single quotes + expect(result.markdown).toMatch(new RegExp(`title: '${val}'`)); expect(result.markdown).not.toMatch(new RegExp(`title: ${val}\n`)); } }); diff --git a/patches/gray-matter@4.0.3.patch b/patches/gray-matter@4.0.3.patch new file mode 100644 index 000000000000..3bf28f4ee893 --- /dev/null +++ b/patches/gray-matter@4.0.3.patch @@ -0,0 +1,15 @@ +diff --git a/lib/engines.js b/lib/engines.js +index 38f993db06cf364191ac635a6590c2d29303297d..bba7b012fb901eb37498cb953a34cfdc44098fd7 100644 +--- a/lib/engines.js ++++ b/lib/engines.js +@@ -13,8 +13,8 @@ const engines = exports = module.exports; + */ + + engines.yaml = { +- parse: yaml.safeLoad.bind(yaml), +- stringify: yaml.safeDump.bind(yaml) ++ parse: (yaml.load || yaml.safeLoad).bind(yaml), ++ stringify: (yaml.dump || yaml.safeDump).bind(yaml) + }; + + /** diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 23edfcb4e83c..a6d091004204 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -354,9 +354,6 @@ catalogs: is-ci: specifier: ^3.0.1 version: 3.0.1 - js-yaml: - specifier: ^4.2.0 - version: 4.2.0 js-yaml-source-map: specifier: ^0.2.2 version: 0.2.2 @@ -597,13 +594,17 @@ overrides: esbuild: ^0.28.1 yauzl: ^3.2.1 '@opentelemetry/core': '>=2.8.0' + js-yaml: '>=4.2.0' + +patchedDependencies: + gray-matter@4.0.3: 0e2b238ee6601ee9b92d68bebc85640d09c5c5fb08f0d4d1b832a6084098ff73 importers: .: dependencies: js-yaml: - specifier: 'catalog:' + specifier: '>=4.2.0' version: 4.2.0 devDependencies: '@babel/core': @@ -715,7 +716,7 @@ importers: specifier: ^10.48.0 version: 10.49.0 js-yaml: - specifier: 'catalog:' + specifier: '>=4.2.0' version: 4.2.0 lodash-es: specifier: 'catalog:' @@ -1441,7 +1442,7 @@ importers: specifier: ^4.0.3 version: 4.0.3 js-yaml: - specifier: 'catalog:' + specifier: '>=4.2.0' version: 4.2.0 lodash-es: specifier: 'catalog:' @@ -3840,7 +3841,7 @@ importers: specifier: workspace:* version: link:../../../task-context js-yaml: - specifier: 'catalog:' + specifier: '>=4.2.0' version: 4.2.0 devDependencies: '@fern-api/configs': @@ -4112,7 +4113,7 @@ importers: specifier: workspace:* version: link:../../../workspace/loader js-yaml: - specifier: 'catalog:' + specifier: '>=4.2.0' version: 4.2.0 openapi-types: specifier: ^12.1.3 @@ -4204,7 +4205,7 @@ importers: specifier: workspace:* version: link:../../task-context js-yaml: - specifier: 'catalog:' + specifier: '>=4.2.0' version: 4.2.0 js-yaml-source-map: specifier: 'catalog:' @@ -4553,12 +4554,12 @@ importers: version: 16.13.2 gray-matter: specifier: 'catalog:' - version: 4.0.3 + version: 4.0.3(patch_hash=0e2b238ee6601ee9b92d68bebc85640d09c5c5fb08f0d4d1b832a6084098ff73) immer: specifier: ^10.1.1 version: 10.2.0 js-yaml: - specifier: 'catalog:' + specifier: '>=4.2.0' version: 4.2.0 latest-version: specifier: 'catalog:' @@ -4695,7 +4696,7 @@ importers: specifier: ^9.2.23 version: 9.3.8(@types/node@22.19.17) js-yaml: - specifier: 'catalog:' + specifier: '>=4.2.0' version: 4.2.0 yaml: specifier: 'catalog:' @@ -4972,7 +4973,7 @@ importers: version: 7.2.0 gray-matter: specifier: 'catalog:' - version: 4.0.3 + version: 4.0.3(patch_hash=0e2b238ee6601ee9b92d68bebc85640d09c5c5fb08f0d4d1b832a6084098ff73) inquirer: specifier: ^9.2.15 version: 9.3.8(@types/node@22.19.17) @@ -4980,7 +4981,7 @@ importers: specifier: 'catalog:' version: 3.0.1 js-yaml: - specifier: 'catalog:' + specifier: '>=4.2.0' version: 4.2.0 json-stream-stringify: specifier: 'catalog:' @@ -5109,9 +5110,9 @@ importers: version: 6.3.0 gray-matter: specifier: 'catalog:' - version: 4.0.3 + version: 4.0.3(patch_hash=0e2b238ee6601ee9b92d68bebc85640d09c5c5fb08f0d4d1b832a6084098ff73) js-yaml: - specifier: 'catalog:' + specifier: '>=4.2.0' version: 4.2.0 lodash-es: specifier: 'catalog:' @@ -5172,7 +5173,7 @@ importers: specifier: workspace:* version: link:../../task-context js-yaml: - specifier: 'catalog:' + specifier: '>=4.2.0' version: 4.2.0 devDependencies: '@fern-api/configs': @@ -5216,7 +5217,7 @@ importers: version: link:../../task-context gray-matter: specifier: 'catalog:' - version: 4.0.3 + version: 4.0.3(patch_hash=0e2b238ee6601ee9b92d68bebc85640d09c5c5fb08f0d4d1b832a6084098ff73) devDependencies: '@fern-api/configs': specifier: workspace:* @@ -5256,7 +5257,7 @@ importers: version: link:../../task-context gray-matter: specifier: 'catalog:' - version: 4.0.3 + version: 4.0.3(patch_hash=0e2b238ee6601ee9b92d68bebc85640d09c5c5fb08f0d4d1b832a6084098ff73) hast-util-to-mdast: specifier: 'catalog:' version: 10.1.2 @@ -5323,7 +5324,7 @@ importers: version: 3.0.3 gray-matter: specifier: 'catalog:' - version: 4.0.3 + version: 4.0.3(patch_hash=0e2b238ee6601ee9b92d68bebc85640d09c5c5fb08f0d4d1b832a6084098ff73) mdast-util-from-markdown: specifier: 'catalog:' version: 2.0.3 @@ -5444,7 +5445,7 @@ importers: version: 4.22.1 gray-matter: specifier: 'catalog:' - version: 4.0.3 + version: 4.0.3(patch_hash=0e2b238ee6601ee9b92d68bebc85640d09c5c5fb08f0d4d1b832a6084098ff73) tmp-promise: specifier: 'catalog:' version: 3.0.3 @@ -5562,12 +5563,12 @@ importers: version: 3.0.0 gray-matter: specifier: 'catalog:' - version: 4.0.3 + version: 4.0.3(patch_hash=0e2b238ee6601ee9b92d68bebc85640d09c5c5fb08f0d4d1b832a6084098ff73) heap-js: specifier: 'catalog:' version: 2.7.1 js-yaml: - specifier: 'catalog:' + specifier: '>=4.2.0' version: 4.2.0 lodash-es: specifier: 'catalog:' @@ -5637,7 +5638,7 @@ importers: specifier: 'catalog:' version: 4.22.1 js-yaml: - specifier: 'catalog:' + specifier: '>=4.2.0' version: 4.2.0 node-fetch: specifier: 'catalog:' @@ -6203,7 +6204,7 @@ importers: specifier: 'catalog:' version: 4.2.1 js-yaml: - specifier: 'catalog:' + specifier: '>=4.2.0' version: 4.2.0 semver: specifier: ^7.6.3 @@ -6378,7 +6379,7 @@ importers: specifier: 'catalog:' version: 1.2.1 js-yaml: - specifier: 'catalog:' + specifier: '>=4.2.0' version: 4.2.0 lodash-es: specifier: 'catalog:' @@ -6503,7 +6504,7 @@ importers: specifier: 'catalog:' version: 11.3.4 js-yaml: - specifier: 'catalog:' + specifier: '>=4.2.0' version: 4.2.0 lodash-es: specifier: 'catalog:' @@ -6558,7 +6559,7 @@ importers: specifier: 'catalog:' version: 5.6.2 js-yaml: - specifier: 'catalog:' + specifier: '>=4.2.0' version: 4.2.0 tmp-promise: specifier: 'catalog:' @@ -6831,7 +6832,7 @@ importers: specifier: 'catalog:' version: 4.0.9 js-yaml: - specifier: 'catalog:' + specifier: '>=4.2.0' version: 4.2.0 lodash-es: specifier: 'catalog:' @@ -7136,7 +7137,7 @@ importers: specifier: 'catalog:' version: 5.6.2 js-yaml: - specifier: 'catalog:' + specifier: '>=4.2.0' version: 4.2.0 lodash-es: specifier: 'catalog:' @@ -7224,7 +7225,7 @@ importers: specifier: 'catalog:' version: 5.6.2 js-yaml: - specifier: 'catalog:' + specifier: '>=4.2.0' version: 4.2.0 zod: specifier: 'catalog:' @@ -7365,9 +7366,9 @@ importers: version: 21.3.4 gray-matter: specifier: 'catalog:' - version: 4.0.3 + version: 4.0.3(patch_hash=0e2b238ee6601ee9b92d68bebc85640d09c5c5fb08f0d4d1b832a6084098ff73) js-yaml: - specifier: 'catalog:' + specifier: '>=4.2.0' version: 4.2.0 lodash-es: specifier: 'catalog:' @@ -7565,7 +7566,7 @@ importers: specifier: 'catalog:' version: 1.34.11 js-yaml: - specifier: 'catalog:' + specifier: '>=4.2.0' version: 4.2.0 latest-version: specifier: 'catalog:' @@ -8253,7 +8254,7 @@ importers: specifier: 'catalog:' version: 6.3.0 js-yaml: - specifier: 'catalog:' + specifier: '>=4.2.0' version: 4.2.0 lodash-es: specifier: 'catalog:' @@ -11231,9 +11232,6 @@ packages: arg@1.0.0: resolution: {integrity: sha512-Wk7TEzl1KqvTGs/uyhmHO/3XLd3t1UeU4IstvPXVzGPM522cTjqjNZ99esCkcL52sjqjo8e8CTBcWhkxvGzoAw==} - argparse@1.0.10: - resolution: {integrity: sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==} - argparse@2.0.1: resolution: {integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==} @@ -12958,15 +12956,7 @@ packages: js-yaml-source-map@0.2.2: resolution: {integrity: sha512-z45Aww8oXJh9GuWUnwmvHsAkB7I/oWrkoHU554UQ8Ik4dyhVrk/nwClTI435feU7QIy7E0XaW8jHvZ4QxaAjog==} peerDependencies: - js-yaml: ^4.0.0 - - js-yaml@3.14.2: - resolution: {integrity: sha512-PMSmkqxr106Xa156c2M265Z+FTrPl+oxd/rgOQy2tijQeK5TxQ43psO1ZCwhVOSdnn+RzkzlRz/eY4BgJBYVpg==} - hasBin: true - - js-yaml@4.1.1: - resolution: {integrity: sha512-qQKT4zQxXl8lLwBtHMWwaTcGfFOZviOJet3Oy/xmGk2gZH677CJM9EvtfdSkgWcATZhj/55JZ0rmy3myCT5lsA==} - hasBin: true + js-yaml: '>=4.2.0' js-yaml@4.2.0: resolution: {integrity: sha512-ePWsvanv0DWuDRsW8dnt+R4jQ31SCRCQ7hhNcPXZPsoBZiemuZNYGf7adZdqX2D86j6rvKp3RpCxVTSb8WQlOw==} @@ -14361,9 +14351,6 @@ packages: spdx-license-ids@3.0.23: resolution: {integrity: sha512-CWLcCCH7VLu13TgOH+r8p1O/Znwhqv/dbb6lqWy67G+pT1kHmeD/+V36AVb/vq8QMIQwVShJ6Ssl5FPh0fuSdw==} - sprintf-js@1.0.3: - resolution: {integrity: sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==} - stack-utils@2.0.6: resolution: {integrity: sha512-XlkWvfIm6RmsWtNJx+uqtKLS8eqFbxUg0ZzLXqY0caEy9l7hruX8IpiDnjsLavoBgqCCR71TqWO8MaXYheJ3RQ==} engines: {node: '>=10'} @@ -17528,7 +17515,7 @@ snapshots: colorette: 1.4.0 https-proxy-agent: 7.0.6 js-levenshtein: 1.1.6 - js-yaml: 4.1.1 + js-yaml: 4.2.0 minimatch: 10.2.5 pluralize: 8.0.0 yaml-ast-parser: 0.0.43 @@ -18284,10 +18271,6 @@ snapshots: arg@1.0.0: {} - argparse@1.0.10: - dependencies: - sprintf-js: 1.0.3 - argparse@2.0.1: {} array-flatten@1.1.1: {} @@ -19661,9 +19644,9 @@ snapshots: graphql@16.13.2: {} - gray-matter@4.0.3: + gray-matter@4.0.3(patch_hash=0e2b238ee6601ee9b92d68bebc85640d09c5c5fb08f0d4d1b832a6084098ff73): dependencies: - js-yaml: 3.14.2 + js-yaml: 4.2.0 kind-of: 6.0.3 section-matter: 1.0.0 strip-bom-string: 1.0.0 @@ -20173,15 +20156,6 @@ snapshots: dependencies: js-yaml: 4.2.0 - js-yaml@3.14.2: - dependencies: - argparse: 1.0.10 - esprima: 4.0.1 - - js-yaml@4.1.1: - dependencies: - argparse: 2.0.1 - js-yaml@4.2.0: dependencies: argparse: 2.0.1 @@ -22025,8 +21999,6 @@ snapshots: spdx-license-ids@3.0.23: {} - sprintf-js@1.0.3: {} - stack-utils@2.0.6: dependencies: escape-string-regexp: 2.0.0 diff --git a/pnpm-workspace.yaml b/pnpm-workspace.yaml index 18383104a3f3..5995bc44898c 100644 --- a/pnpm-workspace.yaml +++ b/pnpm-workspace.yaml @@ -277,3 +277,6 @@ overrides: esbuild: ^0.28.1 yauzl: ^3.2.1 "@opentelemetry/core": ">=2.8.0" + js-yaml: ">=4.2.0" +patchedDependencies: + gray-matter@4.0.3: patches/gray-matter@4.0.3.patch diff --git a/seed/java-sdk/accept-header/accept-header/snippet.json b/seed/java-sdk/accept-header/accept-header/snippet.json index 550418b8e717..e2fd48ccf39a 100644 --- a/seed/java-sdk/accept-header/accept-header/snippet.json +++ b/seed/java-sdk/accept-header/accept-header/snippet.json @@ -1,7 +1,7 @@ { "endpoints": [ { - "example_identifier": "82444d62", + "example_identifier": "7cf5c162", "id": { "method": "DELETE", "path": "/container/", diff --git a/seed/java-sdk/alias/snippet.json b/seed/java-sdk/alias/snippet.json index f5bf5fd30249..ba8c2280e251 100644 --- a/seed/java-sdk/alias/snippet.json +++ b/seed/java-sdk/alias/snippet.json @@ -1,7 +1,7 @@ { "endpoints": [ { - "example_identifier": "fc9f2143", + "example_identifier": "fbe6bcc3", "id": { "method": "GET", "path": "/{typeId}", diff --git a/seed/java-sdk/any-auth/snippet.json b/seed/java-sdk/any-auth/snippet.json index 96855aed2a0d..195e2cc660e8 100644 --- a/seed/java-sdk/any-auth/snippet.json +++ b/seed/java-sdk/any-auth/snippet.json @@ -1,7 +1,7 @@ { "endpoints": [ { - "example_identifier": "692a5a2c", + "example_identifier": "3a01340c", "id": { "method": "POST", "path": "/token", @@ -14,7 +14,7 @@ } }, { - "example_identifier": "a12635e3", + "example_identifier": "e61d75e3", "id": { "method": "POST", "path": "/users", @@ -27,7 +27,7 @@ } }, { - "example_identifier": "a12635e3", + "example_identifier": "e61d75e3", "id": { "method": "GET", "path": "/admins", diff --git a/seed/java-sdk/api-wide-base-path/snippet.json b/seed/java-sdk/api-wide-base-path/snippet.json index bd0129bdfc01..0875f772f298 100644 --- a/seed/java-sdk/api-wide-base-path/snippet.json +++ b/seed/java-sdk/api-wide-base-path/snippet.json @@ -1,7 +1,7 @@ { "endpoints": [ { - "example_identifier": "1e6d684c", + "example_identifier": "42ebb2ec", "id": { "method": "POST", "path": "/test/{pathParam}/{serviceParam}/{endpointParam}/{resourceParam}", diff --git a/seed/java-sdk/audiences/snippet.json b/seed/java-sdk/audiences/snippet.json index c2af70aa17ac..8a4b46ac9acc 100644 --- a/seed/java-sdk/audiences/snippet.json +++ b/seed/java-sdk/audiences/snippet.json @@ -1,7 +1,7 @@ { "endpoints": [ { - "example_identifier": "71cb5eb9", + "example_identifier": "6a651c79", "id": { "method": "GET", "path": "/", @@ -14,7 +14,7 @@ } }, { - "example_identifier": "69c5d89f", + "example_identifier": "e2c1c7df", "id": { "method": "GET", "path": "/partner-path", @@ -27,7 +27,7 @@ } }, { - "example_identifier": "c5bd3068", + "example_identifier": "779d0b18", "id": { "method": "POST", "path": "/", diff --git a/seed/java-sdk/basic-auth-environment-variables/snippet.json b/seed/java-sdk/basic-auth-environment-variables/snippet.json index bae0f1f3215b..242e00652360 100644 --- a/seed/java-sdk/basic-auth-environment-variables/snippet.json +++ b/seed/java-sdk/basic-auth-environment-variables/snippet.json @@ -1,7 +1,7 @@ { "endpoints": [ { - "example_identifier": "14b143fa", + "example_identifier": "9f75c8ea", "id": { "method": "GET", "path": "/basic-auth", @@ -14,7 +14,7 @@ } }, { - "example_identifier": "91843eb7", + "example_identifier": "1c752737", "id": { "method": "POST", "path": "/basic-auth", diff --git a/seed/java-sdk/bearer-token-environment-variable/snippet.json b/seed/java-sdk/bearer-token-environment-variable/snippet.json index 2c2cb81cb7c5..f8e242120a5c 100644 --- a/seed/java-sdk/bearer-token-environment-variable/snippet.json +++ b/seed/java-sdk/bearer-token-environment-variable/snippet.json @@ -1,7 +1,7 @@ { "endpoints": [ { - "example_identifier": "34d92e75", + "example_identifier": "6f306605", "id": { "method": "GET", "path": "/apiKey", diff --git a/seed/java-sdk/bytes-download/snippet.json b/seed/java-sdk/bytes-download/snippet.json index f91df0a0f312..7e817430924b 100644 --- a/seed/java-sdk/bytes-download/snippet.json +++ b/seed/java-sdk/bytes-download/snippet.json @@ -1,7 +1,7 @@ { "endpoints": [ { - "example_identifier": "82444d62", + "example_identifier": "7cf5c162", "id": { "method": "POST", "path": "/snippet", diff --git a/seed/java-sdk/client-side-params/default/snippet.json b/seed/java-sdk/client-side-params/default/snippet.json index 4f8c28d8ff9f..7ed3e06cff39 100644 --- a/seed/java-sdk/client-side-params/default/snippet.json +++ b/seed/java-sdk/client-side-params/default/snippet.json @@ -1,7 +1,7 @@ { "endpoints": [ { - "example_identifier": "ccadd52b", + "example_identifier": "ed2addbb", "id": { "method": "GET", "path": "/api/resources", @@ -14,7 +14,7 @@ } }, { - "example_identifier": "d75c4d95", + "example_identifier": "b3ed9185", "id": { "method": "GET", "path": "/api/resources/{resourceId}", @@ -27,7 +27,7 @@ } }, { - "example_identifier": "139c0b1", + "example_identifier": "9d1c0881", "id": { "method": "POST", "path": "/api/resources/search", @@ -40,7 +40,7 @@ } }, { - "example_identifier": "576cb192", + "example_identifier": "2fddd692", "id": { "method": "GET", "path": "/api/users", @@ -53,7 +53,7 @@ } }, { - "example_identifier": "f34e3b3e", + "example_identifier": "bed039de", "id": { "method": "GET", "path": "/api/users/{userId}", @@ -66,7 +66,7 @@ } }, { - "example_identifier": "5b6eef41", + "example_identifier": "1ae50051", "id": { "method": "POST", "path": "/api/users", @@ -79,7 +79,7 @@ } }, { - "example_identifier": "cc0e7c52", + "example_identifier": "506b5072", "id": { "method": "PATCH", "path": "/api/users/{userId}", @@ -92,7 +92,7 @@ } }, { - "example_identifier": "185c468d", + "example_identifier": "ae76111d", "id": { "method": "DELETE", "path": "/api/users/{userId}", @@ -105,7 +105,7 @@ } }, { - "example_identifier": "ed77e01c", + "example_identifier": "a0aebd5c", "id": { "method": "GET", "path": "/api/connections", @@ -118,7 +118,7 @@ } }, { - "example_identifier": "a201664e", + "example_identifier": "7541747e", "id": { "method": "GET", "path": "/api/connections/{connectionId}", @@ -131,7 +131,7 @@ } }, { - "example_identifier": "ed4d07f", + "example_identifier": "59a55b7f", "id": { "method": "GET", "path": "/api/clients", @@ -144,7 +144,7 @@ } }, { - "example_identifier": "375ed54d", + "example_identifier": "7d0f8e3d", "id": { "method": "GET", "path": "/api/clients/{clientId}", diff --git a/seed/java-sdk/content-type/snippet.json b/seed/java-sdk/content-type/snippet.json index aa85a02e2b98..94b3e8bdced3 100644 --- a/seed/java-sdk/content-type/snippet.json +++ b/seed/java-sdk/content-type/snippet.json @@ -1,7 +1,7 @@ { "endpoints": [ { - "example_identifier": "2f941392", + "example_identifier": "230209a2", "id": { "method": "PATCH", "path": "/", @@ -14,7 +14,7 @@ } }, { - "example_identifier": "1b4c8cf0", + "example_identifier": "11310af0", "id": { "method": "PATCH", "path": "/complex/{id}", @@ -27,7 +27,7 @@ } }, { - "example_identifier": "b1ee2326", + "example_identifier": "d856f46", "id": { "method": "PATCH", "path": "/named-mixed/{id}", @@ -40,7 +40,7 @@ } }, { - "example_identifier": "1ca5e1e6", + "example_identifier": "3588a506", "id": { "method": "PATCH", "path": "/optional-merge-patch-test", @@ -53,7 +53,7 @@ } }, { - "example_identifier": "9a5c3aaf", + "example_identifier": "cec0324f", "id": { "method": "PATCH", "path": "/regular/{id}", diff --git a/seed/java-sdk/cross-package-type-names/snippet.json b/seed/java-sdk/cross-package-type-names/snippet.json index ed8f352d5d3b..5791db2a62f0 100644 --- a/seed/java-sdk/cross-package-type-names/snippet.json +++ b/seed/java-sdk/cross-package-type-names/snippet.json @@ -1,7 +1,7 @@ { "endpoints": [ { - "example_identifier": "82348cce", + "example_identifier": "e946492e", "id": { "method": "GET", "path": "/", @@ -14,7 +14,7 @@ } }, { - "example_identifier": "96f724a0", + "example_identifier": "29f81140", "id": { "method": "GET", "path": "/", @@ -27,7 +27,7 @@ } }, { - "example_identifier": "c5bd3068", + "example_identifier": "779d0b18", "id": { "method": "POST", "path": "/", diff --git a/seed/java-sdk/endpoint-security-auth/snippet.json b/seed/java-sdk/endpoint-security-auth/snippet.json index f56c7522b8f4..28573bfe9152 100644 --- a/seed/java-sdk/endpoint-security-auth/snippet.json +++ b/seed/java-sdk/endpoint-security-auth/snippet.json @@ -1,7 +1,7 @@ { "endpoints": [ { - "example_identifier": "692a5a2c", + "example_identifier": "3a01340c", "id": { "method": "POST", "path": "/token", @@ -14,7 +14,7 @@ } }, { - "example_identifier": "a12635e3", + "example_identifier": "e61d75e3", "id": { "method": "GET", "path": "/users", @@ -27,7 +27,7 @@ } }, { - "example_identifier": "a12635e3", + "example_identifier": "e61d75e3", "id": { "method": "GET", "path": "/users", @@ -40,7 +40,7 @@ } }, { - "example_identifier": "a12635e3", + "example_identifier": "e61d75e3", "id": { "method": "GET", "path": "/users", @@ -53,7 +53,7 @@ } }, { - "example_identifier": "a12635e3", + "example_identifier": "e61d75e3", "id": { "method": "GET", "path": "/users", @@ -66,7 +66,7 @@ } }, { - "example_identifier": "a12635e3", + "example_identifier": "e61d75e3", "id": { "method": "GET", "path": "/users", @@ -79,7 +79,7 @@ } }, { - "example_identifier": "a12635e3", + "example_identifier": "e61d75e3", "id": { "method": "GET", "path": "/users", @@ -92,7 +92,7 @@ } }, { - "example_identifier": "a12635e3", + "example_identifier": "e61d75e3", "id": { "method": "GET", "path": "/users", diff --git a/seed/java-sdk/enum/forward-compatible-enums/snippet.json b/seed/java-sdk/enum/forward-compatible-enums/snippet.json index 7faeb49b951d..d35ac46385b9 100644 --- a/seed/java-sdk/enum/forward-compatible-enums/snippet.json +++ b/seed/java-sdk/enum/forward-compatible-enums/snippet.json @@ -1,7 +1,7 @@ { "endpoints": [ { - "example_identifier": "d1180e98", + "example_identifier": "a7344b8", "id": { "method": "POST", "path": "/headers", @@ -53,7 +53,7 @@ } }, { - "example_identifier": "d8e5419f", + "example_identifier": "1002a25f", "id": { "method": "POST", "path": "/query-list", diff --git a/seed/java-sdk/enum/no-custom-config/snippet.json b/seed/java-sdk/enum/no-custom-config/snippet.json index 7faeb49b951d..d35ac46385b9 100644 --- a/seed/java-sdk/enum/no-custom-config/snippet.json +++ b/seed/java-sdk/enum/no-custom-config/snippet.json @@ -1,7 +1,7 @@ { "endpoints": [ { - "example_identifier": "d1180e98", + "example_identifier": "a7344b8", "id": { "method": "POST", "path": "/headers", @@ -53,7 +53,7 @@ } }, { - "example_identifier": "d8e5419f", + "example_identifier": "1002a25f", "id": { "method": "POST", "path": "/query-list", diff --git a/seed/java-sdk/error-property/snippet.json b/seed/java-sdk/error-property/snippet.json index bd07007a7c39..e67908eaefb3 100644 --- a/seed/java-sdk/error-property/snippet.json +++ b/seed/java-sdk/error-property/snippet.json @@ -1,7 +1,7 @@ { "endpoints": [ { - "example_identifier": "34d92e75", + "example_identifier": "6f306605", "id": { "method": "GET", "path": "/property-based-error", diff --git a/seed/java-sdk/errors/snippet.json b/seed/java-sdk/errors/snippet.json index 7225cbd00694..53eb7f09c344 100644 --- a/seed/java-sdk/errors/snippet.json +++ b/seed/java-sdk/errors/snippet.json @@ -1,7 +1,7 @@ { "endpoints": [ { - "example_identifier": "d175c2e7", + "example_identifier": "7a0c3157", "id": { "method": "POST", "path": "/foo1", @@ -14,7 +14,7 @@ } }, { - "example_identifier": "d175c2e7", + "example_identifier": "7a0c3157", "id": { "method": "POST", "path": "/foo2", diff --git a/seed/java-sdk/examples/default/snippet.json b/seed/java-sdk/examples/default/snippet.json index 1bbf1bab408d..108309147005 100644 --- a/seed/java-sdk/examples/default/snippet.json +++ b/seed/java-sdk/examples/default/snippet.json @@ -14,7 +14,7 @@ } }, { - "example_identifier": "40d77421", + "example_identifier": "db309f41", "id": { "method": "POST", "path": "/", @@ -131,7 +131,7 @@ } }, { - "example_identifier": "17212396", + "example_identifier": "18de72d6", "id": { "method": "POST", "path": "/big-entity", diff --git a/seed/java-sdk/examples/inline-file-properties/snippet.json b/seed/java-sdk/examples/inline-file-properties/snippet.json index 1bbf1bab408d..108309147005 100644 --- a/seed/java-sdk/examples/inline-file-properties/snippet.json +++ b/seed/java-sdk/examples/inline-file-properties/snippet.json @@ -14,7 +14,7 @@ } }, { - "example_identifier": "40d77421", + "example_identifier": "db309f41", "id": { "method": "POST", "path": "/", @@ -131,7 +131,7 @@ } }, { - "example_identifier": "17212396", + "example_identifier": "18de72d6", "id": { "method": "POST", "path": "/big-entity", diff --git a/seed/java-sdk/examples/no-custom-config/snippet.json b/seed/java-sdk/examples/no-custom-config/snippet.json index 1bbf1bab408d..108309147005 100644 --- a/seed/java-sdk/examples/no-custom-config/snippet.json +++ b/seed/java-sdk/examples/no-custom-config/snippet.json @@ -14,7 +14,7 @@ } }, { - "example_identifier": "40d77421", + "example_identifier": "db309f41", "id": { "method": "POST", "path": "/", @@ -131,7 +131,7 @@ } }, { - "example_identifier": "17212396", + "example_identifier": "18de72d6", "id": { "method": "POST", "path": "/big-entity", diff --git a/seed/java-sdk/examples/readme-config/snippet.json b/seed/java-sdk/examples/readme-config/snippet.json index 1bbf1bab408d..108309147005 100644 --- a/seed/java-sdk/examples/readme-config/snippet.json +++ b/seed/java-sdk/examples/readme-config/snippet.json @@ -14,7 +14,7 @@ } }, { - "example_identifier": "40d77421", + "example_identifier": "db309f41", "id": { "method": "POST", "path": "/", @@ -131,7 +131,7 @@ } }, { - "example_identifier": "17212396", + "example_identifier": "18de72d6", "id": { "method": "POST", "path": "/big-entity", diff --git a/seed/java-sdk/exhaustive/custom-client-class-name/snippet.json b/seed/java-sdk/exhaustive/custom-client-class-name/snippet.json index 4ba53e3efb95..f89ac42c80dd 100644 --- a/seed/java-sdk/exhaustive/custom-client-class-name/snippet.json +++ b/seed/java-sdk/exhaustive/custom-client-class-name/snippet.json @@ -1,7 +1,7 @@ { "endpoints": [ { - "example_identifier": "b07bc8d3", + "example_identifier": "d027c523", "id": { "method": "POST", "path": "/container/list-of-primitives", @@ -14,7 +14,7 @@ } }, { - "example_identifier": "fdac9ebb", + "example_identifier": "ebfd118b", "id": { "method": "POST", "path": "/container/list-of-objects", @@ -27,7 +27,7 @@ } }, { - "example_identifier": "638c8d5f", + "example_identifier": "2b21bccf", "id": { "method": "POST", "path": "/container/set-of-primitives", @@ -40,7 +40,7 @@ } }, { - "example_identifier": "5d48d875", + "example_identifier": "8fba1825", "id": { "method": "POST", "path": "/container/set-of-objects", @@ -53,7 +53,7 @@ } }, { - "example_identifier": "baa0e67f", + "example_identifier": "ce9e7f2f", "id": { "method": "POST", "path": "/container/map-prim-to-prim", @@ -66,7 +66,7 @@ } }, { - "example_identifier": "276bf059", + "example_identifier": "cc36e609", "id": { "method": "POST", "path": "/container/map-prim-to-object", @@ -79,7 +79,7 @@ } }, { - "example_identifier": "4c633c5f", + "example_identifier": "d57d494f", "id": { "method": "POST", "path": "/container/map-prim-to-union", @@ -92,7 +92,7 @@ } }, { - "example_identifier": "e3741b1b", + "example_identifier": "5cea1cb", "id": { "method": "POST", "path": "/container/opt-objects", @@ -105,7 +105,7 @@ } }, { - "example_identifier": "6d2eae78", + "example_identifier": "2781ed28", "id": { "method": "POST", "path": "/foo/bar", @@ -118,7 +118,7 @@ } }, { - "example_identifier": "6d2eae78", + "example_identifier": "2781ed28", "id": { "method": "POST", "path": "/foo/baz", @@ -131,7 +131,7 @@ } }, { - "example_identifier": "950e289b", + "example_identifier": "5565160b", "id": { "method": "POST", "path": "/enum", @@ -144,7 +144,7 @@ } }, { - "example_identifier": "cbd386bb", + "example_identifier": "afaed85b", "id": { "method": "GET", "path": "/http-methods/{id}", @@ -157,7 +157,7 @@ } }, { - "example_identifier": "d5925de4", + "example_identifier": "1ee0ae54", "id": { "method": "POST", "path": "/http-methods", @@ -170,7 +170,7 @@ } }, { - "example_identifier": "17411d4a", + "example_identifier": "6b525e4a", "id": { "method": "PUT", "path": "/http-methods/{id}", @@ -183,7 +183,7 @@ } }, { - "example_identifier": "5853ee71", + "example_identifier": "342e2a31", "id": { "method": "PATCH", "path": "/http-methods/{id}", @@ -196,7 +196,7 @@ } }, { - "example_identifier": "75d0bb44", + "example_identifier": "1404ab24", "id": { "method": "DELETE", "path": "/http-methods/{id}", @@ -209,7 +209,7 @@ } }, { - "example_identifier": "114cc607", + "example_identifier": "d6beb177", "id": { "method": "POST", "path": "/object/get-and-return-with-optional-field", @@ -222,7 +222,7 @@ } }, { - "example_identifier": "f16c47b", + "example_identifier": "151df06b", "id": { "method": "POST", "path": "/object/get-and-return-with-required-field", @@ -235,7 +235,7 @@ } }, { - "example_identifier": "67d98fff", + "example_identifier": "d9405baf", "id": { "method": "POST", "path": "/object/get-and-return-with-map-of-map", @@ -248,7 +248,7 @@ } }, { - "example_identifier": "26d2c7ff", + "example_identifier": "8e720a2f", "id": { "method": "POST", "path": "/object/get-and-return-nested-with-optional-field", @@ -261,7 +261,7 @@ } }, { - "example_identifier": "7dd80f99", + "example_identifier": "5f48279", "id": { "method": "POST", "path": "/object/get-and-return-nested-with-required-field/{string}", @@ -274,7 +274,7 @@ } }, { - "example_identifier": "549e214e", + "example_identifier": "4b2dd0be", "id": { "method": "POST", "path": "/object/get-and-return-nested-with-required-field-list", @@ -300,7 +300,7 @@ } }, { - "example_identifier": "75f55e6b", + "example_identifier": "3f685fb", "id": { "method": "POST", "path": "/object/get-and-return-with-documented-unknown-type", @@ -313,7 +313,7 @@ } }, { - "example_identifier": "47385897", + "example_identifier": "a4a25e67", "id": { "method": "POST", "path": "/object/get-and-return-map-of-documented-unknown-type", @@ -365,7 +365,7 @@ } }, { - "example_identifier": "82d9b4d0", + "example_identifier": "b71a59a0", "id": { "method": "GET", "path": "/pagination", @@ -378,7 +378,7 @@ } }, { - "example_identifier": "59976c27", + "example_identifier": "5cd55167", "id": { "method": "GET", "path": "/params/path/{param}", @@ -391,7 +391,7 @@ } }, { - "example_identifier": "59976c27", + "example_identifier": "5cd55167", "id": { "method": "GET", "path": "/params/path/{param}", @@ -404,7 +404,7 @@ } }, { - "example_identifier": "cbf60b2e", + "example_identifier": "e99efb2e", "id": { "method": "GET", "path": "/params", @@ -417,7 +417,7 @@ } }, { - "example_identifier": "a497824e", + "example_identifier": "2a102e", "id": { "method": "GET", "path": "/params", @@ -430,7 +430,7 @@ } }, { - "example_identifier": "7ac7b87", + "example_identifier": "1394f747", "id": { "method": "GET", "path": "/params/path-query/{param}", @@ -443,7 +443,7 @@ } }, { - "example_identifier": "7ac7b87", + "example_identifier": "1394f747", "id": { "method": "GET", "path": "/params/path-query/{param}", @@ -456,7 +456,7 @@ } }, { - "example_identifier": "eb5b1e57", + "example_identifier": "6e3468b7", "id": { "method": "PUT", "path": "/params/path/{param}", @@ -469,7 +469,7 @@ } }, { - "example_identifier": "eb5b1e57", + "example_identifier": "6e3468b7", "id": { "method": "PUT", "path": "/params/path/{param}", @@ -495,7 +495,7 @@ } }, { - "example_identifier": "89cf23de", + "example_identifier": "b08339be", "id": { "method": "GET", "path": "/params/path-bool/{param}", @@ -508,7 +508,7 @@ } }, { - "example_identifier": "59976c27", + "example_identifier": "5cd55167", "id": { "method": "GET", "path": "/params/path/{param}", @@ -521,7 +521,7 @@ } }, { - "example_identifier": "d8492cb1", + "example_identifier": "f9cf49e1", "id": { "method": "POST", "path": "/primitive/string", @@ -534,7 +534,7 @@ } }, { - "example_identifier": "44f8b59b", + "example_identifier": "38740cab", "id": { "method": "POST", "path": "/primitive/integer", @@ -547,7 +547,7 @@ } }, { - "example_identifier": "6757feff", + "example_identifier": "6371c64f", "id": { "method": "POST", "path": "/primitive/long", @@ -560,7 +560,7 @@ } }, { - "example_identifier": "9c532ef", + "example_identifier": "a311febf", "id": { "method": "POST", "path": "/primitive/double", @@ -573,7 +573,7 @@ } }, { - "example_identifier": "653ac8bb", + "example_identifier": "f353028b", "id": { "method": "POST", "path": "/primitive/boolean", @@ -586,7 +586,7 @@ } }, { - "example_identifier": "c4328e7f", + "example_identifier": "a3160a8f", "id": { "method": "POST", "path": "/primitive/datetime", @@ -599,7 +599,7 @@ } }, { - "example_identifier": "aa994713", + "example_identifier": "4d07d0e3", "id": { "method": "POST", "path": "/primitive/date", @@ -612,7 +612,7 @@ } }, { - "example_identifier": "c723c473", + "example_identifier": "59b6e903", "id": { "method": "POST", "path": "/primitive/uuid", @@ -625,7 +625,7 @@ } }, { - "example_identifier": "51535e73", + "example_identifier": "e7874543", "id": { "method": "POST", "path": "/primitive/base64", @@ -638,7 +638,7 @@ } }, { - "example_identifier": "e9d2ae72", + "example_identifier": "efa1ea32", "id": { "method": "PUT", "path": "/{id}", @@ -651,7 +651,7 @@ } }, { - "example_identifier": "2fff63df", + "example_identifier": "9da5060f", "id": { "method": "POST", "path": "/union", @@ -664,7 +664,7 @@ } }, { - "example_identifier": "34d92e75", + "example_identifier": "6f306605", "id": { "method": "GET", "path": "/urls/MixedCase", @@ -677,7 +677,7 @@ } }, { - "example_identifier": "34d92e75", + "example_identifier": "6f306605", "id": { "method": "GET", "path": "/urls/no-ending-slash", @@ -690,7 +690,7 @@ } }, { - "example_identifier": "34d92e75", + "example_identifier": "6f306605", "id": { "method": "GET", "path": "/urls/with-ending-slash/", @@ -703,7 +703,7 @@ } }, { - "example_identifier": "34d92e75", + "example_identifier": "6f306605", "id": { "method": "GET", "path": "/urls/with_underscores", @@ -716,7 +716,7 @@ } }, { - "example_identifier": "35a47ee2", + "example_identifier": "af506932", "id": { "method": "POST", "path": "/req-bodies/object", @@ -729,7 +729,7 @@ } }, { - "example_identifier": "78731579", + "example_identifier": "44880629", "id": { "method": "POST", "path": "/req-bodies/array-body-with-headers", @@ -742,7 +742,7 @@ } }, { - "example_identifier": "91843eb7", + "example_identifier": "1c752737", "id": { "method": "POST", "path": "/no-auth", @@ -755,7 +755,7 @@ } }, { - "example_identifier": "3d2c2d55", + "example_identifier": "33f25755", "id": { "method": "GET", "path": "/no-req-body", @@ -768,7 +768,7 @@ } }, { - "example_identifier": "34d92e75", + "example_identifier": "6f306605", "id": { "method": "POST", "path": "/no-req-body", @@ -781,7 +781,7 @@ } }, { - "example_identifier": "9d22bd38", + "example_identifier": "2f09fef8", "id": { "method": "POST", "path": "/test-headers/custom-header", diff --git a/seed/java-sdk/exhaustive/custom-dependency/snippet.json b/seed/java-sdk/exhaustive/custom-dependency/snippet.json index fdbdd74f7f6f..f7a876ae5d86 100644 --- a/seed/java-sdk/exhaustive/custom-dependency/snippet.json +++ b/seed/java-sdk/exhaustive/custom-dependency/snippet.json @@ -1,7 +1,7 @@ { "endpoints": [ { - "example_identifier": "b07bc8d3", + "example_identifier": "d027c523", "id": { "method": "POST", "path": "/container/list-of-primitives", @@ -14,7 +14,7 @@ } }, { - "example_identifier": "fdac9ebb", + "example_identifier": "ebfd118b", "id": { "method": "POST", "path": "/container/list-of-objects", @@ -27,7 +27,7 @@ } }, { - "example_identifier": "638c8d5f", + "example_identifier": "2b21bccf", "id": { "method": "POST", "path": "/container/set-of-primitives", @@ -40,7 +40,7 @@ } }, { - "example_identifier": "5d48d875", + "example_identifier": "8fba1825", "id": { "method": "POST", "path": "/container/set-of-objects", @@ -53,7 +53,7 @@ } }, { - "example_identifier": "baa0e67f", + "example_identifier": "ce9e7f2f", "id": { "method": "POST", "path": "/container/map-prim-to-prim", @@ -66,7 +66,7 @@ } }, { - "example_identifier": "276bf059", + "example_identifier": "cc36e609", "id": { "method": "POST", "path": "/container/map-prim-to-object", @@ -79,7 +79,7 @@ } }, { - "example_identifier": "4c633c5f", + "example_identifier": "d57d494f", "id": { "method": "POST", "path": "/container/map-prim-to-union", @@ -92,7 +92,7 @@ } }, { - "example_identifier": "e3741b1b", + "example_identifier": "5cea1cb", "id": { "method": "POST", "path": "/container/opt-objects", @@ -105,7 +105,7 @@ } }, { - "example_identifier": "6d2eae78", + "example_identifier": "2781ed28", "id": { "method": "POST", "path": "/foo/bar", @@ -118,7 +118,7 @@ } }, { - "example_identifier": "6d2eae78", + "example_identifier": "2781ed28", "id": { "method": "POST", "path": "/foo/baz", @@ -131,7 +131,7 @@ } }, { - "example_identifier": "950e289b", + "example_identifier": "5565160b", "id": { "method": "POST", "path": "/enum", @@ -144,7 +144,7 @@ } }, { - "example_identifier": "cbd386bb", + "example_identifier": "afaed85b", "id": { "method": "GET", "path": "/http-methods/{id}", @@ -157,7 +157,7 @@ } }, { - "example_identifier": "d5925de4", + "example_identifier": "1ee0ae54", "id": { "method": "POST", "path": "/http-methods", @@ -170,7 +170,7 @@ } }, { - "example_identifier": "17411d4a", + "example_identifier": "6b525e4a", "id": { "method": "PUT", "path": "/http-methods/{id}", @@ -183,7 +183,7 @@ } }, { - "example_identifier": "5853ee71", + "example_identifier": "342e2a31", "id": { "method": "PATCH", "path": "/http-methods/{id}", @@ -196,7 +196,7 @@ } }, { - "example_identifier": "75d0bb44", + "example_identifier": "1404ab24", "id": { "method": "DELETE", "path": "/http-methods/{id}", @@ -209,7 +209,7 @@ } }, { - "example_identifier": "114cc607", + "example_identifier": "d6beb177", "id": { "method": "POST", "path": "/object/get-and-return-with-optional-field", @@ -222,7 +222,7 @@ } }, { - "example_identifier": "f16c47b", + "example_identifier": "151df06b", "id": { "method": "POST", "path": "/object/get-and-return-with-required-field", @@ -235,7 +235,7 @@ } }, { - "example_identifier": "67d98fff", + "example_identifier": "d9405baf", "id": { "method": "POST", "path": "/object/get-and-return-with-map-of-map", @@ -248,7 +248,7 @@ } }, { - "example_identifier": "26d2c7ff", + "example_identifier": "8e720a2f", "id": { "method": "POST", "path": "/object/get-and-return-nested-with-optional-field", @@ -261,7 +261,7 @@ } }, { - "example_identifier": "7dd80f99", + "example_identifier": "5f48279", "id": { "method": "POST", "path": "/object/get-and-return-nested-with-required-field/{string}", @@ -274,7 +274,7 @@ } }, { - "example_identifier": "549e214e", + "example_identifier": "4b2dd0be", "id": { "method": "POST", "path": "/object/get-and-return-nested-with-required-field-list", @@ -300,7 +300,7 @@ } }, { - "example_identifier": "75f55e6b", + "example_identifier": "3f685fb", "id": { "method": "POST", "path": "/object/get-and-return-with-documented-unknown-type", @@ -313,7 +313,7 @@ } }, { - "example_identifier": "47385897", + "example_identifier": "a4a25e67", "id": { "method": "POST", "path": "/object/get-and-return-map-of-documented-unknown-type", @@ -365,7 +365,7 @@ } }, { - "example_identifier": "82d9b4d0", + "example_identifier": "b71a59a0", "id": { "method": "GET", "path": "/pagination", @@ -378,7 +378,7 @@ } }, { - "example_identifier": "59976c27", + "example_identifier": "5cd55167", "id": { "method": "GET", "path": "/params/path/{param}", @@ -391,7 +391,7 @@ } }, { - "example_identifier": "59976c27", + "example_identifier": "5cd55167", "id": { "method": "GET", "path": "/params/path/{param}", @@ -404,7 +404,7 @@ } }, { - "example_identifier": "cbf60b2e", + "example_identifier": "e99efb2e", "id": { "method": "GET", "path": "/params", @@ -417,7 +417,7 @@ } }, { - "example_identifier": "a497824e", + "example_identifier": "2a102e", "id": { "method": "GET", "path": "/params", @@ -430,7 +430,7 @@ } }, { - "example_identifier": "7ac7b87", + "example_identifier": "1394f747", "id": { "method": "GET", "path": "/params/path-query/{param}", @@ -443,7 +443,7 @@ } }, { - "example_identifier": "7ac7b87", + "example_identifier": "1394f747", "id": { "method": "GET", "path": "/params/path-query/{param}", @@ -456,7 +456,7 @@ } }, { - "example_identifier": "eb5b1e57", + "example_identifier": "6e3468b7", "id": { "method": "PUT", "path": "/params/path/{param}", @@ -469,7 +469,7 @@ } }, { - "example_identifier": "eb5b1e57", + "example_identifier": "6e3468b7", "id": { "method": "PUT", "path": "/params/path/{param}", @@ -495,7 +495,7 @@ } }, { - "example_identifier": "89cf23de", + "example_identifier": "b08339be", "id": { "method": "GET", "path": "/params/path-bool/{param}", @@ -508,7 +508,7 @@ } }, { - "example_identifier": "59976c27", + "example_identifier": "5cd55167", "id": { "method": "GET", "path": "/params/path/{param}", @@ -521,7 +521,7 @@ } }, { - "example_identifier": "d8492cb1", + "example_identifier": "f9cf49e1", "id": { "method": "POST", "path": "/primitive/string", @@ -534,7 +534,7 @@ } }, { - "example_identifier": "44f8b59b", + "example_identifier": "38740cab", "id": { "method": "POST", "path": "/primitive/integer", @@ -547,7 +547,7 @@ } }, { - "example_identifier": "6757feff", + "example_identifier": "6371c64f", "id": { "method": "POST", "path": "/primitive/long", @@ -560,7 +560,7 @@ } }, { - "example_identifier": "9c532ef", + "example_identifier": "a311febf", "id": { "method": "POST", "path": "/primitive/double", @@ -573,7 +573,7 @@ } }, { - "example_identifier": "653ac8bb", + "example_identifier": "f353028b", "id": { "method": "POST", "path": "/primitive/boolean", @@ -586,7 +586,7 @@ } }, { - "example_identifier": "c4328e7f", + "example_identifier": "a3160a8f", "id": { "method": "POST", "path": "/primitive/datetime", @@ -599,7 +599,7 @@ } }, { - "example_identifier": "aa994713", + "example_identifier": "4d07d0e3", "id": { "method": "POST", "path": "/primitive/date", @@ -612,7 +612,7 @@ } }, { - "example_identifier": "c723c473", + "example_identifier": "59b6e903", "id": { "method": "POST", "path": "/primitive/uuid", @@ -625,7 +625,7 @@ } }, { - "example_identifier": "51535e73", + "example_identifier": "e7874543", "id": { "method": "POST", "path": "/primitive/base64", @@ -638,7 +638,7 @@ } }, { - "example_identifier": "e9d2ae72", + "example_identifier": "efa1ea32", "id": { "method": "PUT", "path": "/{id}", @@ -651,7 +651,7 @@ } }, { - "example_identifier": "2fff63df", + "example_identifier": "9da5060f", "id": { "method": "POST", "path": "/union", @@ -664,7 +664,7 @@ } }, { - "example_identifier": "34d92e75", + "example_identifier": "6f306605", "id": { "method": "GET", "path": "/urls/MixedCase", @@ -677,7 +677,7 @@ } }, { - "example_identifier": "34d92e75", + "example_identifier": "6f306605", "id": { "method": "GET", "path": "/urls/no-ending-slash", @@ -690,7 +690,7 @@ } }, { - "example_identifier": "34d92e75", + "example_identifier": "6f306605", "id": { "method": "GET", "path": "/urls/with-ending-slash/", @@ -703,7 +703,7 @@ } }, { - "example_identifier": "34d92e75", + "example_identifier": "6f306605", "id": { "method": "GET", "path": "/urls/with_underscores", @@ -716,7 +716,7 @@ } }, { - "example_identifier": "35a47ee2", + "example_identifier": "af506932", "id": { "method": "POST", "path": "/req-bodies/object", @@ -729,7 +729,7 @@ } }, { - "example_identifier": "78731579", + "example_identifier": "44880629", "id": { "method": "POST", "path": "/req-bodies/array-body-with-headers", @@ -742,7 +742,7 @@ } }, { - "example_identifier": "91843eb7", + "example_identifier": "1c752737", "id": { "method": "POST", "path": "/no-auth", @@ -755,7 +755,7 @@ } }, { - "example_identifier": "3d2c2d55", + "example_identifier": "33f25755", "id": { "method": "GET", "path": "/no-req-body", @@ -768,7 +768,7 @@ } }, { - "example_identifier": "34d92e75", + "example_identifier": "6f306605", "id": { "method": "POST", "path": "/no-req-body", @@ -781,7 +781,7 @@ } }, { - "example_identifier": "9d22bd38", + "example_identifier": "2f09fef8", "id": { "method": "POST", "path": "/test-headers/custom-header", diff --git a/seed/java-sdk/exhaustive/custom-error-names/snippet.json b/seed/java-sdk/exhaustive/custom-error-names/snippet.json index fdbdd74f7f6f..f7a876ae5d86 100644 --- a/seed/java-sdk/exhaustive/custom-error-names/snippet.json +++ b/seed/java-sdk/exhaustive/custom-error-names/snippet.json @@ -1,7 +1,7 @@ { "endpoints": [ { - "example_identifier": "b07bc8d3", + "example_identifier": "d027c523", "id": { "method": "POST", "path": "/container/list-of-primitives", @@ -14,7 +14,7 @@ } }, { - "example_identifier": "fdac9ebb", + "example_identifier": "ebfd118b", "id": { "method": "POST", "path": "/container/list-of-objects", @@ -27,7 +27,7 @@ } }, { - "example_identifier": "638c8d5f", + "example_identifier": "2b21bccf", "id": { "method": "POST", "path": "/container/set-of-primitives", @@ -40,7 +40,7 @@ } }, { - "example_identifier": "5d48d875", + "example_identifier": "8fba1825", "id": { "method": "POST", "path": "/container/set-of-objects", @@ -53,7 +53,7 @@ } }, { - "example_identifier": "baa0e67f", + "example_identifier": "ce9e7f2f", "id": { "method": "POST", "path": "/container/map-prim-to-prim", @@ -66,7 +66,7 @@ } }, { - "example_identifier": "276bf059", + "example_identifier": "cc36e609", "id": { "method": "POST", "path": "/container/map-prim-to-object", @@ -79,7 +79,7 @@ } }, { - "example_identifier": "4c633c5f", + "example_identifier": "d57d494f", "id": { "method": "POST", "path": "/container/map-prim-to-union", @@ -92,7 +92,7 @@ } }, { - "example_identifier": "e3741b1b", + "example_identifier": "5cea1cb", "id": { "method": "POST", "path": "/container/opt-objects", @@ -105,7 +105,7 @@ } }, { - "example_identifier": "6d2eae78", + "example_identifier": "2781ed28", "id": { "method": "POST", "path": "/foo/bar", @@ -118,7 +118,7 @@ } }, { - "example_identifier": "6d2eae78", + "example_identifier": "2781ed28", "id": { "method": "POST", "path": "/foo/baz", @@ -131,7 +131,7 @@ } }, { - "example_identifier": "950e289b", + "example_identifier": "5565160b", "id": { "method": "POST", "path": "/enum", @@ -144,7 +144,7 @@ } }, { - "example_identifier": "cbd386bb", + "example_identifier": "afaed85b", "id": { "method": "GET", "path": "/http-methods/{id}", @@ -157,7 +157,7 @@ } }, { - "example_identifier": "d5925de4", + "example_identifier": "1ee0ae54", "id": { "method": "POST", "path": "/http-methods", @@ -170,7 +170,7 @@ } }, { - "example_identifier": "17411d4a", + "example_identifier": "6b525e4a", "id": { "method": "PUT", "path": "/http-methods/{id}", @@ -183,7 +183,7 @@ } }, { - "example_identifier": "5853ee71", + "example_identifier": "342e2a31", "id": { "method": "PATCH", "path": "/http-methods/{id}", @@ -196,7 +196,7 @@ } }, { - "example_identifier": "75d0bb44", + "example_identifier": "1404ab24", "id": { "method": "DELETE", "path": "/http-methods/{id}", @@ -209,7 +209,7 @@ } }, { - "example_identifier": "114cc607", + "example_identifier": "d6beb177", "id": { "method": "POST", "path": "/object/get-and-return-with-optional-field", @@ -222,7 +222,7 @@ } }, { - "example_identifier": "f16c47b", + "example_identifier": "151df06b", "id": { "method": "POST", "path": "/object/get-and-return-with-required-field", @@ -235,7 +235,7 @@ } }, { - "example_identifier": "67d98fff", + "example_identifier": "d9405baf", "id": { "method": "POST", "path": "/object/get-and-return-with-map-of-map", @@ -248,7 +248,7 @@ } }, { - "example_identifier": "26d2c7ff", + "example_identifier": "8e720a2f", "id": { "method": "POST", "path": "/object/get-and-return-nested-with-optional-field", @@ -261,7 +261,7 @@ } }, { - "example_identifier": "7dd80f99", + "example_identifier": "5f48279", "id": { "method": "POST", "path": "/object/get-and-return-nested-with-required-field/{string}", @@ -274,7 +274,7 @@ } }, { - "example_identifier": "549e214e", + "example_identifier": "4b2dd0be", "id": { "method": "POST", "path": "/object/get-and-return-nested-with-required-field-list", @@ -300,7 +300,7 @@ } }, { - "example_identifier": "75f55e6b", + "example_identifier": "3f685fb", "id": { "method": "POST", "path": "/object/get-and-return-with-documented-unknown-type", @@ -313,7 +313,7 @@ } }, { - "example_identifier": "47385897", + "example_identifier": "a4a25e67", "id": { "method": "POST", "path": "/object/get-and-return-map-of-documented-unknown-type", @@ -365,7 +365,7 @@ } }, { - "example_identifier": "82d9b4d0", + "example_identifier": "b71a59a0", "id": { "method": "GET", "path": "/pagination", @@ -378,7 +378,7 @@ } }, { - "example_identifier": "59976c27", + "example_identifier": "5cd55167", "id": { "method": "GET", "path": "/params/path/{param}", @@ -391,7 +391,7 @@ } }, { - "example_identifier": "59976c27", + "example_identifier": "5cd55167", "id": { "method": "GET", "path": "/params/path/{param}", @@ -404,7 +404,7 @@ } }, { - "example_identifier": "cbf60b2e", + "example_identifier": "e99efb2e", "id": { "method": "GET", "path": "/params", @@ -417,7 +417,7 @@ } }, { - "example_identifier": "a497824e", + "example_identifier": "2a102e", "id": { "method": "GET", "path": "/params", @@ -430,7 +430,7 @@ } }, { - "example_identifier": "7ac7b87", + "example_identifier": "1394f747", "id": { "method": "GET", "path": "/params/path-query/{param}", @@ -443,7 +443,7 @@ } }, { - "example_identifier": "7ac7b87", + "example_identifier": "1394f747", "id": { "method": "GET", "path": "/params/path-query/{param}", @@ -456,7 +456,7 @@ } }, { - "example_identifier": "eb5b1e57", + "example_identifier": "6e3468b7", "id": { "method": "PUT", "path": "/params/path/{param}", @@ -469,7 +469,7 @@ } }, { - "example_identifier": "eb5b1e57", + "example_identifier": "6e3468b7", "id": { "method": "PUT", "path": "/params/path/{param}", @@ -495,7 +495,7 @@ } }, { - "example_identifier": "89cf23de", + "example_identifier": "b08339be", "id": { "method": "GET", "path": "/params/path-bool/{param}", @@ -508,7 +508,7 @@ } }, { - "example_identifier": "59976c27", + "example_identifier": "5cd55167", "id": { "method": "GET", "path": "/params/path/{param}", @@ -521,7 +521,7 @@ } }, { - "example_identifier": "d8492cb1", + "example_identifier": "f9cf49e1", "id": { "method": "POST", "path": "/primitive/string", @@ -534,7 +534,7 @@ } }, { - "example_identifier": "44f8b59b", + "example_identifier": "38740cab", "id": { "method": "POST", "path": "/primitive/integer", @@ -547,7 +547,7 @@ } }, { - "example_identifier": "6757feff", + "example_identifier": "6371c64f", "id": { "method": "POST", "path": "/primitive/long", @@ -560,7 +560,7 @@ } }, { - "example_identifier": "9c532ef", + "example_identifier": "a311febf", "id": { "method": "POST", "path": "/primitive/double", @@ -573,7 +573,7 @@ } }, { - "example_identifier": "653ac8bb", + "example_identifier": "f353028b", "id": { "method": "POST", "path": "/primitive/boolean", @@ -586,7 +586,7 @@ } }, { - "example_identifier": "c4328e7f", + "example_identifier": "a3160a8f", "id": { "method": "POST", "path": "/primitive/datetime", @@ -599,7 +599,7 @@ } }, { - "example_identifier": "aa994713", + "example_identifier": "4d07d0e3", "id": { "method": "POST", "path": "/primitive/date", @@ -612,7 +612,7 @@ } }, { - "example_identifier": "c723c473", + "example_identifier": "59b6e903", "id": { "method": "POST", "path": "/primitive/uuid", @@ -625,7 +625,7 @@ } }, { - "example_identifier": "51535e73", + "example_identifier": "e7874543", "id": { "method": "POST", "path": "/primitive/base64", @@ -638,7 +638,7 @@ } }, { - "example_identifier": "e9d2ae72", + "example_identifier": "efa1ea32", "id": { "method": "PUT", "path": "/{id}", @@ -651,7 +651,7 @@ } }, { - "example_identifier": "2fff63df", + "example_identifier": "9da5060f", "id": { "method": "POST", "path": "/union", @@ -664,7 +664,7 @@ } }, { - "example_identifier": "34d92e75", + "example_identifier": "6f306605", "id": { "method": "GET", "path": "/urls/MixedCase", @@ -677,7 +677,7 @@ } }, { - "example_identifier": "34d92e75", + "example_identifier": "6f306605", "id": { "method": "GET", "path": "/urls/no-ending-slash", @@ -690,7 +690,7 @@ } }, { - "example_identifier": "34d92e75", + "example_identifier": "6f306605", "id": { "method": "GET", "path": "/urls/with-ending-slash/", @@ -703,7 +703,7 @@ } }, { - "example_identifier": "34d92e75", + "example_identifier": "6f306605", "id": { "method": "GET", "path": "/urls/with_underscores", @@ -716,7 +716,7 @@ } }, { - "example_identifier": "35a47ee2", + "example_identifier": "af506932", "id": { "method": "POST", "path": "/req-bodies/object", @@ -729,7 +729,7 @@ } }, { - "example_identifier": "78731579", + "example_identifier": "44880629", "id": { "method": "POST", "path": "/req-bodies/array-body-with-headers", @@ -742,7 +742,7 @@ } }, { - "example_identifier": "91843eb7", + "example_identifier": "1c752737", "id": { "method": "POST", "path": "/no-auth", @@ -755,7 +755,7 @@ } }, { - "example_identifier": "3d2c2d55", + "example_identifier": "33f25755", "id": { "method": "GET", "path": "/no-req-body", @@ -768,7 +768,7 @@ } }, { - "example_identifier": "34d92e75", + "example_identifier": "6f306605", "id": { "method": "POST", "path": "/no-req-body", @@ -781,7 +781,7 @@ } }, { - "example_identifier": "9d22bd38", + "example_identifier": "2f09fef8", "id": { "method": "POST", "path": "/test-headers/custom-header", diff --git a/seed/java-sdk/exhaustive/custom-interceptors/snippet.json b/seed/java-sdk/exhaustive/custom-interceptors/snippet.json index 03ad40fd9f96..f9e942e37645 100644 --- a/seed/java-sdk/exhaustive/custom-interceptors/snippet.json +++ b/seed/java-sdk/exhaustive/custom-interceptors/snippet.json @@ -1,7 +1,7 @@ { "endpoints": [ { - "example_identifier": "b07bc8d3", + "example_identifier": "d027c523", "id": { "method": "POST", "path": "/container/list-of-primitives", @@ -14,7 +14,7 @@ } }, { - "example_identifier": "fdac9ebb", + "example_identifier": "ebfd118b", "id": { "method": "POST", "path": "/container/list-of-objects", @@ -27,7 +27,7 @@ } }, { - "example_identifier": "638c8d5f", + "example_identifier": "2b21bccf", "id": { "method": "POST", "path": "/container/set-of-primitives", @@ -40,7 +40,7 @@ } }, { - "example_identifier": "5d48d875", + "example_identifier": "8fba1825", "id": { "method": "POST", "path": "/container/set-of-objects", @@ -53,7 +53,7 @@ } }, { - "example_identifier": "baa0e67f", + "example_identifier": "ce9e7f2f", "id": { "method": "POST", "path": "/container/map-prim-to-prim", @@ -66,7 +66,7 @@ } }, { - "example_identifier": "276bf059", + "example_identifier": "cc36e609", "id": { "method": "POST", "path": "/container/map-prim-to-object", @@ -79,7 +79,7 @@ } }, { - "example_identifier": "4c633c5f", + "example_identifier": "d57d494f", "id": { "method": "POST", "path": "/container/map-prim-to-union", @@ -92,7 +92,7 @@ } }, { - "example_identifier": "e3741b1b", + "example_identifier": "5cea1cb", "id": { "method": "POST", "path": "/container/opt-objects", @@ -105,7 +105,7 @@ } }, { - "example_identifier": "6d2eae78", + "example_identifier": "2781ed28", "id": { "method": "POST", "path": "/foo/bar", @@ -118,7 +118,7 @@ } }, { - "example_identifier": "6d2eae78", + "example_identifier": "2781ed28", "id": { "method": "POST", "path": "/foo/baz", @@ -131,7 +131,7 @@ } }, { - "example_identifier": "950e289b", + "example_identifier": "5565160b", "id": { "method": "POST", "path": "/enum", @@ -144,7 +144,7 @@ } }, { - "example_identifier": "cbd386bb", + "example_identifier": "afaed85b", "id": { "method": "GET", "path": "/http-methods/{id}", @@ -157,7 +157,7 @@ } }, { - "example_identifier": "d5925de4", + "example_identifier": "1ee0ae54", "id": { "method": "POST", "path": "/http-methods", @@ -170,7 +170,7 @@ } }, { - "example_identifier": "17411d4a", + "example_identifier": "6b525e4a", "id": { "method": "PUT", "path": "/http-methods/{id}", @@ -183,7 +183,7 @@ } }, { - "example_identifier": "5853ee71", + "example_identifier": "342e2a31", "id": { "method": "PATCH", "path": "/http-methods/{id}", @@ -196,7 +196,7 @@ } }, { - "example_identifier": "75d0bb44", + "example_identifier": "1404ab24", "id": { "method": "DELETE", "path": "/http-methods/{id}", @@ -209,7 +209,7 @@ } }, { - "example_identifier": "114cc607", + "example_identifier": "d6beb177", "id": { "method": "POST", "path": "/object/get-and-return-with-optional-field", @@ -222,7 +222,7 @@ } }, { - "example_identifier": "f16c47b", + "example_identifier": "151df06b", "id": { "method": "POST", "path": "/object/get-and-return-with-required-field", @@ -235,7 +235,7 @@ } }, { - "example_identifier": "67d98fff", + "example_identifier": "d9405baf", "id": { "method": "POST", "path": "/object/get-and-return-with-map-of-map", @@ -248,7 +248,7 @@ } }, { - "example_identifier": "26d2c7ff", + "example_identifier": "8e720a2f", "id": { "method": "POST", "path": "/object/get-and-return-nested-with-optional-field", @@ -261,7 +261,7 @@ } }, { - "example_identifier": "7dd80f99", + "example_identifier": "5f48279", "id": { "method": "POST", "path": "/object/get-and-return-nested-with-required-field/{string}", @@ -274,7 +274,7 @@ } }, { - "example_identifier": "549e214e", + "example_identifier": "4b2dd0be", "id": { "method": "POST", "path": "/object/get-and-return-nested-with-required-field-list", @@ -300,7 +300,7 @@ } }, { - "example_identifier": "75f55e6b", + "example_identifier": "3f685fb", "id": { "method": "POST", "path": "/object/get-and-return-with-documented-unknown-type", @@ -313,7 +313,7 @@ } }, { - "example_identifier": "47385897", + "example_identifier": "a4a25e67", "id": { "method": "POST", "path": "/object/get-and-return-map-of-documented-unknown-type", @@ -365,7 +365,7 @@ } }, { - "example_identifier": "82d9b4d0", + "example_identifier": "b71a59a0", "id": { "method": "GET", "path": "/pagination", @@ -378,7 +378,7 @@ } }, { - "example_identifier": "59976c27", + "example_identifier": "5cd55167", "id": { "method": "GET", "path": "/params/path/{param}", @@ -391,7 +391,7 @@ } }, { - "example_identifier": "59976c27", + "example_identifier": "5cd55167", "id": { "method": "GET", "path": "/params/path/{param}", @@ -404,7 +404,7 @@ } }, { - "example_identifier": "cbf60b2e", + "example_identifier": "e99efb2e", "id": { "method": "GET", "path": "/params", @@ -417,7 +417,7 @@ } }, { - "example_identifier": "a497824e", + "example_identifier": "2a102e", "id": { "method": "GET", "path": "/params", @@ -430,7 +430,7 @@ } }, { - "example_identifier": "7ac7b87", + "example_identifier": "1394f747", "id": { "method": "GET", "path": "/params/path-query/{param}", @@ -443,7 +443,7 @@ } }, { - "example_identifier": "7ac7b87", + "example_identifier": "1394f747", "id": { "method": "GET", "path": "/params/path-query/{param}", @@ -456,7 +456,7 @@ } }, { - "example_identifier": "eb5b1e57", + "example_identifier": "6e3468b7", "id": { "method": "PUT", "path": "/params/path/{param}", @@ -469,7 +469,7 @@ } }, { - "example_identifier": "eb5b1e57", + "example_identifier": "6e3468b7", "id": { "method": "PUT", "path": "/params/path/{param}", @@ -495,7 +495,7 @@ } }, { - "example_identifier": "89cf23de", + "example_identifier": "b08339be", "id": { "method": "GET", "path": "/params/path-bool/{param}", @@ -508,7 +508,7 @@ } }, { - "example_identifier": "59976c27", + "example_identifier": "5cd55167", "id": { "method": "GET", "path": "/params/path/{param}", @@ -521,7 +521,7 @@ } }, { - "example_identifier": "d8492cb1", + "example_identifier": "f9cf49e1", "id": { "method": "POST", "path": "/primitive/string", @@ -534,7 +534,7 @@ } }, { - "example_identifier": "44f8b59b", + "example_identifier": "38740cab", "id": { "method": "POST", "path": "/primitive/integer", @@ -547,7 +547,7 @@ } }, { - "example_identifier": "6757feff", + "example_identifier": "6371c64f", "id": { "method": "POST", "path": "/primitive/long", @@ -560,7 +560,7 @@ } }, { - "example_identifier": "9c532ef", + "example_identifier": "a311febf", "id": { "method": "POST", "path": "/primitive/double", @@ -573,7 +573,7 @@ } }, { - "example_identifier": "653ac8bb", + "example_identifier": "f353028b", "id": { "method": "POST", "path": "/primitive/boolean", @@ -586,7 +586,7 @@ } }, { - "example_identifier": "c4328e7f", + "example_identifier": "a3160a8f", "id": { "method": "POST", "path": "/primitive/datetime", @@ -599,7 +599,7 @@ } }, { - "example_identifier": "aa994713", + "example_identifier": "4d07d0e3", "id": { "method": "POST", "path": "/primitive/date", @@ -612,7 +612,7 @@ } }, { - "example_identifier": "c723c473", + "example_identifier": "59b6e903", "id": { "method": "POST", "path": "/primitive/uuid", @@ -625,7 +625,7 @@ } }, { - "example_identifier": "51535e73", + "example_identifier": "e7874543", "id": { "method": "POST", "path": "/primitive/base64", @@ -638,7 +638,7 @@ } }, { - "example_identifier": "e9d2ae72", + "example_identifier": "efa1ea32", "id": { "method": "PUT", "path": "/{id}", @@ -651,7 +651,7 @@ } }, { - "example_identifier": "2fff63df", + "example_identifier": "9da5060f", "id": { "method": "POST", "path": "/union", @@ -664,7 +664,7 @@ } }, { - "example_identifier": "34d92e75", + "example_identifier": "6f306605", "id": { "method": "GET", "path": "/urls/MixedCase", @@ -677,7 +677,7 @@ } }, { - "example_identifier": "34d92e75", + "example_identifier": "6f306605", "id": { "method": "GET", "path": "/urls/no-ending-slash", @@ -690,7 +690,7 @@ } }, { - "example_identifier": "34d92e75", + "example_identifier": "6f306605", "id": { "method": "GET", "path": "/urls/with-ending-slash/", @@ -703,7 +703,7 @@ } }, { - "example_identifier": "34d92e75", + "example_identifier": "6f306605", "id": { "method": "GET", "path": "/urls/with_underscores", @@ -716,7 +716,7 @@ } }, { - "example_identifier": "35a47ee2", + "example_identifier": "af506932", "id": { "method": "POST", "path": "/req-bodies/object", @@ -729,7 +729,7 @@ } }, { - "example_identifier": "78731579", + "example_identifier": "44880629", "id": { "method": "POST", "path": "/req-bodies/array-body-with-headers", @@ -742,7 +742,7 @@ } }, { - "example_identifier": "91843eb7", + "example_identifier": "1c752737", "id": { "method": "POST", "path": "/no-auth", @@ -755,7 +755,7 @@ } }, { - "example_identifier": "3d2c2d55", + "example_identifier": "33f25755", "id": { "method": "GET", "path": "/no-req-body", @@ -768,7 +768,7 @@ } }, { - "example_identifier": "34d92e75", + "example_identifier": "6f306605", "id": { "method": "POST", "path": "/no-req-body", @@ -781,7 +781,7 @@ } }, { - "example_identifier": "9d22bd38", + "example_identifier": "2f09fef8", "id": { "method": "POST", "path": "/test-headers/custom-header", diff --git a/seed/java-sdk/exhaustive/custom-license/snippet.json b/seed/java-sdk/exhaustive/custom-license/snippet.json index 03ad40fd9f96..f9e942e37645 100644 --- a/seed/java-sdk/exhaustive/custom-license/snippet.json +++ b/seed/java-sdk/exhaustive/custom-license/snippet.json @@ -1,7 +1,7 @@ { "endpoints": [ { - "example_identifier": "b07bc8d3", + "example_identifier": "d027c523", "id": { "method": "POST", "path": "/container/list-of-primitives", @@ -14,7 +14,7 @@ } }, { - "example_identifier": "fdac9ebb", + "example_identifier": "ebfd118b", "id": { "method": "POST", "path": "/container/list-of-objects", @@ -27,7 +27,7 @@ } }, { - "example_identifier": "638c8d5f", + "example_identifier": "2b21bccf", "id": { "method": "POST", "path": "/container/set-of-primitives", @@ -40,7 +40,7 @@ } }, { - "example_identifier": "5d48d875", + "example_identifier": "8fba1825", "id": { "method": "POST", "path": "/container/set-of-objects", @@ -53,7 +53,7 @@ } }, { - "example_identifier": "baa0e67f", + "example_identifier": "ce9e7f2f", "id": { "method": "POST", "path": "/container/map-prim-to-prim", @@ -66,7 +66,7 @@ } }, { - "example_identifier": "276bf059", + "example_identifier": "cc36e609", "id": { "method": "POST", "path": "/container/map-prim-to-object", @@ -79,7 +79,7 @@ } }, { - "example_identifier": "4c633c5f", + "example_identifier": "d57d494f", "id": { "method": "POST", "path": "/container/map-prim-to-union", @@ -92,7 +92,7 @@ } }, { - "example_identifier": "e3741b1b", + "example_identifier": "5cea1cb", "id": { "method": "POST", "path": "/container/opt-objects", @@ -105,7 +105,7 @@ } }, { - "example_identifier": "6d2eae78", + "example_identifier": "2781ed28", "id": { "method": "POST", "path": "/foo/bar", @@ -118,7 +118,7 @@ } }, { - "example_identifier": "6d2eae78", + "example_identifier": "2781ed28", "id": { "method": "POST", "path": "/foo/baz", @@ -131,7 +131,7 @@ } }, { - "example_identifier": "950e289b", + "example_identifier": "5565160b", "id": { "method": "POST", "path": "/enum", @@ -144,7 +144,7 @@ } }, { - "example_identifier": "cbd386bb", + "example_identifier": "afaed85b", "id": { "method": "GET", "path": "/http-methods/{id}", @@ -157,7 +157,7 @@ } }, { - "example_identifier": "d5925de4", + "example_identifier": "1ee0ae54", "id": { "method": "POST", "path": "/http-methods", @@ -170,7 +170,7 @@ } }, { - "example_identifier": "17411d4a", + "example_identifier": "6b525e4a", "id": { "method": "PUT", "path": "/http-methods/{id}", @@ -183,7 +183,7 @@ } }, { - "example_identifier": "5853ee71", + "example_identifier": "342e2a31", "id": { "method": "PATCH", "path": "/http-methods/{id}", @@ -196,7 +196,7 @@ } }, { - "example_identifier": "75d0bb44", + "example_identifier": "1404ab24", "id": { "method": "DELETE", "path": "/http-methods/{id}", @@ -209,7 +209,7 @@ } }, { - "example_identifier": "114cc607", + "example_identifier": "d6beb177", "id": { "method": "POST", "path": "/object/get-and-return-with-optional-field", @@ -222,7 +222,7 @@ } }, { - "example_identifier": "f16c47b", + "example_identifier": "151df06b", "id": { "method": "POST", "path": "/object/get-and-return-with-required-field", @@ -235,7 +235,7 @@ } }, { - "example_identifier": "67d98fff", + "example_identifier": "d9405baf", "id": { "method": "POST", "path": "/object/get-and-return-with-map-of-map", @@ -248,7 +248,7 @@ } }, { - "example_identifier": "26d2c7ff", + "example_identifier": "8e720a2f", "id": { "method": "POST", "path": "/object/get-and-return-nested-with-optional-field", @@ -261,7 +261,7 @@ } }, { - "example_identifier": "7dd80f99", + "example_identifier": "5f48279", "id": { "method": "POST", "path": "/object/get-and-return-nested-with-required-field/{string}", @@ -274,7 +274,7 @@ } }, { - "example_identifier": "549e214e", + "example_identifier": "4b2dd0be", "id": { "method": "POST", "path": "/object/get-and-return-nested-with-required-field-list", @@ -300,7 +300,7 @@ } }, { - "example_identifier": "75f55e6b", + "example_identifier": "3f685fb", "id": { "method": "POST", "path": "/object/get-and-return-with-documented-unknown-type", @@ -313,7 +313,7 @@ } }, { - "example_identifier": "47385897", + "example_identifier": "a4a25e67", "id": { "method": "POST", "path": "/object/get-and-return-map-of-documented-unknown-type", @@ -365,7 +365,7 @@ } }, { - "example_identifier": "82d9b4d0", + "example_identifier": "b71a59a0", "id": { "method": "GET", "path": "/pagination", @@ -378,7 +378,7 @@ } }, { - "example_identifier": "59976c27", + "example_identifier": "5cd55167", "id": { "method": "GET", "path": "/params/path/{param}", @@ -391,7 +391,7 @@ } }, { - "example_identifier": "59976c27", + "example_identifier": "5cd55167", "id": { "method": "GET", "path": "/params/path/{param}", @@ -404,7 +404,7 @@ } }, { - "example_identifier": "cbf60b2e", + "example_identifier": "e99efb2e", "id": { "method": "GET", "path": "/params", @@ -417,7 +417,7 @@ } }, { - "example_identifier": "a497824e", + "example_identifier": "2a102e", "id": { "method": "GET", "path": "/params", @@ -430,7 +430,7 @@ } }, { - "example_identifier": "7ac7b87", + "example_identifier": "1394f747", "id": { "method": "GET", "path": "/params/path-query/{param}", @@ -443,7 +443,7 @@ } }, { - "example_identifier": "7ac7b87", + "example_identifier": "1394f747", "id": { "method": "GET", "path": "/params/path-query/{param}", @@ -456,7 +456,7 @@ } }, { - "example_identifier": "eb5b1e57", + "example_identifier": "6e3468b7", "id": { "method": "PUT", "path": "/params/path/{param}", @@ -469,7 +469,7 @@ } }, { - "example_identifier": "eb5b1e57", + "example_identifier": "6e3468b7", "id": { "method": "PUT", "path": "/params/path/{param}", @@ -495,7 +495,7 @@ } }, { - "example_identifier": "89cf23de", + "example_identifier": "b08339be", "id": { "method": "GET", "path": "/params/path-bool/{param}", @@ -508,7 +508,7 @@ } }, { - "example_identifier": "59976c27", + "example_identifier": "5cd55167", "id": { "method": "GET", "path": "/params/path/{param}", @@ -521,7 +521,7 @@ } }, { - "example_identifier": "d8492cb1", + "example_identifier": "f9cf49e1", "id": { "method": "POST", "path": "/primitive/string", @@ -534,7 +534,7 @@ } }, { - "example_identifier": "44f8b59b", + "example_identifier": "38740cab", "id": { "method": "POST", "path": "/primitive/integer", @@ -547,7 +547,7 @@ } }, { - "example_identifier": "6757feff", + "example_identifier": "6371c64f", "id": { "method": "POST", "path": "/primitive/long", @@ -560,7 +560,7 @@ } }, { - "example_identifier": "9c532ef", + "example_identifier": "a311febf", "id": { "method": "POST", "path": "/primitive/double", @@ -573,7 +573,7 @@ } }, { - "example_identifier": "653ac8bb", + "example_identifier": "f353028b", "id": { "method": "POST", "path": "/primitive/boolean", @@ -586,7 +586,7 @@ } }, { - "example_identifier": "c4328e7f", + "example_identifier": "a3160a8f", "id": { "method": "POST", "path": "/primitive/datetime", @@ -599,7 +599,7 @@ } }, { - "example_identifier": "aa994713", + "example_identifier": "4d07d0e3", "id": { "method": "POST", "path": "/primitive/date", @@ -612,7 +612,7 @@ } }, { - "example_identifier": "c723c473", + "example_identifier": "59b6e903", "id": { "method": "POST", "path": "/primitive/uuid", @@ -625,7 +625,7 @@ } }, { - "example_identifier": "51535e73", + "example_identifier": "e7874543", "id": { "method": "POST", "path": "/primitive/base64", @@ -638,7 +638,7 @@ } }, { - "example_identifier": "e9d2ae72", + "example_identifier": "efa1ea32", "id": { "method": "PUT", "path": "/{id}", @@ -651,7 +651,7 @@ } }, { - "example_identifier": "2fff63df", + "example_identifier": "9da5060f", "id": { "method": "POST", "path": "/union", @@ -664,7 +664,7 @@ } }, { - "example_identifier": "34d92e75", + "example_identifier": "6f306605", "id": { "method": "GET", "path": "/urls/MixedCase", @@ -677,7 +677,7 @@ } }, { - "example_identifier": "34d92e75", + "example_identifier": "6f306605", "id": { "method": "GET", "path": "/urls/no-ending-slash", @@ -690,7 +690,7 @@ } }, { - "example_identifier": "34d92e75", + "example_identifier": "6f306605", "id": { "method": "GET", "path": "/urls/with-ending-slash/", @@ -703,7 +703,7 @@ } }, { - "example_identifier": "34d92e75", + "example_identifier": "6f306605", "id": { "method": "GET", "path": "/urls/with_underscores", @@ -716,7 +716,7 @@ } }, { - "example_identifier": "35a47ee2", + "example_identifier": "af506932", "id": { "method": "POST", "path": "/req-bodies/object", @@ -729,7 +729,7 @@ } }, { - "example_identifier": "78731579", + "example_identifier": "44880629", "id": { "method": "POST", "path": "/req-bodies/array-body-with-headers", @@ -742,7 +742,7 @@ } }, { - "example_identifier": "91843eb7", + "example_identifier": "1c752737", "id": { "method": "POST", "path": "/no-auth", @@ -755,7 +755,7 @@ } }, { - "example_identifier": "3d2c2d55", + "example_identifier": "33f25755", "id": { "method": "GET", "path": "/no-req-body", @@ -768,7 +768,7 @@ } }, { - "example_identifier": "34d92e75", + "example_identifier": "6f306605", "id": { "method": "POST", "path": "/no-req-body", @@ -781,7 +781,7 @@ } }, { - "example_identifier": "9d22bd38", + "example_identifier": "2f09fef8", "id": { "method": "POST", "path": "/test-headers/custom-header", diff --git a/seed/java-sdk/exhaustive/custom-plugins/snippet.json b/seed/java-sdk/exhaustive/custom-plugins/snippet.json index fdbdd74f7f6f..f7a876ae5d86 100644 --- a/seed/java-sdk/exhaustive/custom-plugins/snippet.json +++ b/seed/java-sdk/exhaustive/custom-plugins/snippet.json @@ -1,7 +1,7 @@ { "endpoints": [ { - "example_identifier": "b07bc8d3", + "example_identifier": "d027c523", "id": { "method": "POST", "path": "/container/list-of-primitives", @@ -14,7 +14,7 @@ } }, { - "example_identifier": "fdac9ebb", + "example_identifier": "ebfd118b", "id": { "method": "POST", "path": "/container/list-of-objects", @@ -27,7 +27,7 @@ } }, { - "example_identifier": "638c8d5f", + "example_identifier": "2b21bccf", "id": { "method": "POST", "path": "/container/set-of-primitives", @@ -40,7 +40,7 @@ } }, { - "example_identifier": "5d48d875", + "example_identifier": "8fba1825", "id": { "method": "POST", "path": "/container/set-of-objects", @@ -53,7 +53,7 @@ } }, { - "example_identifier": "baa0e67f", + "example_identifier": "ce9e7f2f", "id": { "method": "POST", "path": "/container/map-prim-to-prim", @@ -66,7 +66,7 @@ } }, { - "example_identifier": "276bf059", + "example_identifier": "cc36e609", "id": { "method": "POST", "path": "/container/map-prim-to-object", @@ -79,7 +79,7 @@ } }, { - "example_identifier": "4c633c5f", + "example_identifier": "d57d494f", "id": { "method": "POST", "path": "/container/map-prim-to-union", @@ -92,7 +92,7 @@ } }, { - "example_identifier": "e3741b1b", + "example_identifier": "5cea1cb", "id": { "method": "POST", "path": "/container/opt-objects", @@ -105,7 +105,7 @@ } }, { - "example_identifier": "6d2eae78", + "example_identifier": "2781ed28", "id": { "method": "POST", "path": "/foo/bar", @@ -118,7 +118,7 @@ } }, { - "example_identifier": "6d2eae78", + "example_identifier": "2781ed28", "id": { "method": "POST", "path": "/foo/baz", @@ -131,7 +131,7 @@ } }, { - "example_identifier": "950e289b", + "example_identifier": "5565160b", "id": { "method": "POST", "path": "/enum", @@ -144,7 +144,7 @@ } }, { - "example_identifier": "cbd386bb", + "example_identifier": "afaed85b", "id": { "method": "GET", "path": "/http-methods/{id}", @@ -157,7 +157,7 @@ } }, { - "example_identifier": "d5925de4", + "example_identifier": "1ee0ae54", "id": { "method": "POST", "path": "/http-methods", @@ -170,7 +170,7 @@ } }, { - "example_identifier": "17411d4a", + "example_identifier": "6b525e4a", "id": { "method": "PUT", "path": "/http-methods/{id}", @@ -183,7 +183,7 @@ } }, { - "example_identifier": "5853ee71", + "example_identifier": "342e2a31", "id": { "method": "PATCH", "path": "/http-methods/{id}", @@ -196,7 +196,7 @@ } }, { - "example_identifier": "75d0bb44", + "example_identifier": "1404ab24", "id": { "method": "DELETE", "path": "/http-methods/{id}", @@ -209,7 +209,7 @@ } }, { - "example_identifier": "114cc607", + "example_identifier": "d6beb177", "id": { "method": "POST", "path": "/object/get-and-return-with-optional-field", @@ -222,7 +222,7 @@ } }, { - "example_identifier": "f16c47b", + "example_identifier": "151df06b", "id": { "method": "POST", "path": "/object/get-and-return-with-required-field", @@ -235,7 +235,7 @@ } }, { - "example_identifier": "67d98fff", + "example_identifier": "d9405baf", "id": { "method": "POST", "path": "/object/get-and-return-with-map-of-map", @@ -248,7 +248,7 @@ } }, { - "example_identifier": "26d2c7ff", + "example_identifier": "8e720a2f", "id": { "method": "POST", "path": "/object/get-and-return-nested-with-optional-field", @@ -261,7 +261,7 @@ } }, { - "example_identifier": "7dd80f99", + "example_identifier": "5f48279", "id": { "method": "POST", "path": "/object/get-and-return-nested-with-required-field/{string}", @@ -274,7 +274,7 @@ } }, { - "example_identifier": "549e214e", + "example_identifier": "4b2dd0be", "id": { "method": "POST", "path": "/object/get-and-return-nested-with-required-field-list", @@ -300,7 +300,7 @@ } }, { - "example_identifier": "75f55e6b", + "example_identifier": "3f685fb", "id": { "method": "POST", "path": "/object/get-and-return-with-documented-unknown-type", @@ -313,7 +313,7 @@ } }, { - "example_identifier": "47385897", + "example_identifier": "a4a25e67", "id": { "method": "POST", "path": "/object/get-and-return-map-of-documented-unknown-type", @@ -365,7 +365,7 @@ } }, { - "example_identifier": "82d9b4d0", + "example_identifier": "b71a59a0", "id": { "method": "GET", "path": "/pagination", @@ -378,7 +378,7 @@ } }, { - "example_identifier": "59976c27", + "example_identifier": "5cd55167", "id": { "method": "GET", "path": "/params/path/{param}", @@ -391,7 +391,7 @@ } }, { - "example_identifier": "59976c27", + "example_identifier": "5cd55167", "id": { "method": "GET", "path": "/params/path/{param}", @@ -404,7 +404,7 @@ } }, { - "example_identifier": "cbf60b2e", + "example_identifier": "e99efb2e", "id": { "method": "GET", "path": "/params", @@ -417,7 +417,7 @@ } }, { - "example_identifier": "a497824e", + "example_identifier": "2a102e", "id": { "method": "GET", "path": "/params", @@ -430,7 +430,7 @@ } }, { - "example_identifier": "7ac7b87", + "example_identifier": "1394f747", "id": { "method": "GET", "path": "/params/path-query/{param}", @@ -443,7 +443,7 @@ } }, { - "example_identifier": "7ac7b87", + "example_identifier": "1394f747", "id": { "method": "GET", "path": "/params/path-query/{param}", @@ -456,7 +456,7 @@ } }, { - "example_identifier": "eb5b1e57", + "example_identifier": "6e3468b7", "id": { "method": "PUT", "path": "/params/path/{param}", @@ -469,7 +469,7 @@ } }, { - "example_identifier": "eb5b1e57", + "example_identifier": "6e3468b7", "id": { "method": "PUT", "path": "/params/path/{param}", @@ -495,7 +495,7 @@ } }, { - "example_identifier": "89cf23de", + "example_identifier": "b08339be", "id": { "method": "GET", "path": "/params/path-bool/{param}", @@ -508,7 +508,7 @@ } }, { - "example_identifier": "59976c27", + "example_identifier": "5cd55167", "id": { "method": "GET", "path": "/params/path/{param}", @@ -521,7 +521,7 @@ } }, { - "example_identifier": "d8492cb1", + "example_identifier": "f9cf49e1", "id": { "method": "POST", "path": "/primitive/string", @@ -534,7 +534,7 @@ } }, { - "example_identifier": "44f8b59b", + "example_identifier": "38740cab", "id": { "method": "POST", "path": "/primitive/integer", @@ -547,7 +547,7 @@ } }, { - "example_identifier": "6757feff", + "example_identifier": "6371c64f", "id": { "method": "POST", "path": "/primitive/long", @@ -560,7 +560,7 @@ } }, { - "example_identifier": "9c532ef", + "example_identifier": "a311febf", "id": { "method": "POST", "path": "/primitive/double", @@ -573,7 +573,7 @@ } }, { - "example_identifier": "653ac8bb", + "example_identifier": "f353028b", "id": { "method": "POST", "path": "/primitive/boolean", @@ -586,7 +586,7 @@ } }, { - "example_identifier": "c4328e7f", + "example_identifier": "a3160a8f", "id": { "method": "POST", "path": "/primitive/datetime", @@ -599,7 +599,7 @@ } }, { - "example_identifier": "aa994713", + "example_identifier": "4d07d0e3", "id": { "method": "POST", "path": "/primitive/date", @@ -612,7 +612,7 @@ } }, { - "example_identifier": "c723c473", + "example_identifier": "59b6e903", "id": { "method": "POST", "path": "/primitive/uuid", @@ -625,7 +625,7 @@ } }, { - "example_identifier": "51535e73", + "example_identifier": "e7874543", "id": { "method": "POST", "path": "/primitive/base64", @@ -638,7 +638,7 @@ } }, { - "example_identifier": "e9d2ae72", + "example_identifier": "efa1ea32", "id": { "method": "PUT", "path": "/{id}", @@ -651,7 +651,7 @@ } }, { - "example_identifier": "2fff63df", + "example_identifier": "9da5060f", "id": { "method": "POST", "path": "/union", @@ -664,7 +664,7 @@ } }, { - "example_identifier": "34d92e75", + "example_identifier": "6f306605", "id": { "method": "GET", "path": "/urls/MixedCase", @@ -677,7 +677,7 @@ } }, { - "example_identifier": "34d92e75", + "example_identifier": "6f306605", "id": { "method": "GET", "path": "/urls/no-ending-slash", @@ -690,7 +690,7 @@ } }, { - "example_identifier": "34d92e75", + "example_identifier": "6f306605", "id": { "method": "GET", "path": "/urls/with-ending-slash/", @@ -703,7 +703,7 @@ } }, { - "example_identifier": "34d92e75", + "example_identifier": "6f306605", "id": { "method": "GET", "path": "/urls/with_underscores", @@ -716,7 +716,7 @@ } }, { - "example_identifier": "35a47ee2", + "example_identifier": "af506932", "id": { "method": "POST", "path": "/req-bodies/object", @@ -729,7 +729,7 @@ } }, { - "example_identifier": "78731579", + "example_identifier": "44880629", "id": { "method": "POST", "path": "/req-bodies/array-body-with-headers", @@ -742,7 +742,7 @@ } }, { - "example_identifier": "91843eb7", + "example_identifier": "1c752737", "id": { "method": "POST", "path": "/no-auth", @@ -755,7 +755,7 @@ } }, { - "example_identifier": "3d2c2d55", + "example_identifier": "33f25755", "id": { "method": "GET", "path": "/no-req-body", @@ -768,7 +768,7 @@ } }, { - "example_identifier": "34d92e75", + "example_identifier": "6f306605", "id": { "method": "POST", "path": "/no-req-body", @@ -781,7 +781,7 @@ } }, { - "example_identifier": "9d22bd38", + "example_identifier": "2f09fef8", "id": { "method": "POST", "path": "/test-headers/custom-header", diff --git a/seed/java-sdk/exhaustive/enable-public-constructors/snippet.json b/seed/java-sdk/exhaustive/enable-public-constructors/snippet.json index fdbdd74f7f6f..f7a876ae5d86 100644 --- a/seed/java-sdk/exhaustive/enable-public-constructors/snippet.json +++ b/seed/java-sdk/exhaustive/enable-public-constructors/snippet.json @@ -1,7 +1,7 @@ { "endpoints": [ { - "example_identifier": "b07bc8d3", + "example_identifier": "d027c523", "id": { "method": "POST", "path": "/container/list-of-primitives", @@ -14,7 +14,7 @@ } }, { - "example_identifier": "fdac9ebb", + "example_identifier": "ebfd118b", "id": { "method": "POST", "path": "/container/list-of-objects", @@ -27,7 +27,7 @@ } }, { - "example_identifier": "638c8d5f", + "example_identifier": "2b21bccf", "id": { "method": "POST", "path": "/container/set-of-primitives", @@ -40,7 +40,7 @@ } }, { - "example_identifier": "5d48d875", + "example_identifier": "8fba1825", "id": { "method": "POST", "path": "/container/set-of-objects", @@ -53,7 +53,7 @@ } }, { - "example_identifier": "baa0e67f", + "example_identifier": "ce9e7f2f", "id": { "method": "POST", "path": "/container/map-prim-to-prim", @@ -66,7 +66,7 @@ } }, { - "example_identifier": "276bf059", + "example_identifier": "cc36e609", "id": { "method": "POST", "path": "/container/map-prim-to-object", @@ -79,7 +79,7 @@ } }, { - "example_identifier": "4c633c5f", + "example_identifier": "d57d494f", "id": { "method": "POST", "path": "/container/map-prim-to-union", @@ -92,7 +92,7 @@ } }, { - "example_identifier": "e3741b1b", + "example_identifier": "5cea1cb", "id": { "method": "POST", "path": "/container/opt-objects", @@ -105,7 +105,7 @@ } }, { - "example_identifier": "6d2eae78", + "example_identifier": "2781ed28", "id": { "method": "POST", "path": "/foo/bar", @@ -118,7 +118,7 @@ } }, { - "example_identifier": "6d2eae78", + "example_identifier": "2781ed28", "id": { "method": "POST", "path": "/foo/baz", @@ -131,7 +131,7 @@ } }, { - "example_identifier": "950e289b", + "example_identifier": "5565160b", "id": { "method": "POST", "path": "/enum", @@ -144,7 +144,7 @@ } }, { - "example_identifier": "cbd386bb", + "example_identifier": "afaed85b", "id": { "method": "GET", "path": "/http-methods/{id}", @@ -157,7 +157,7 @@ } }, { - "example_identifier": "d5925de4", + "example_identifier": "1ee0ae54", "id": { "method": "POST", "path": "/http-methods", @@ -170,7 +170,7 @@ } }, { - "example_identifier": "17411d4a", + "example_identifier": "6b525e4a", "id": { "method": "PUT", "path": "/http-methods/{id}", @@ -183,7 +183,7 @@ } }, { - "example_identifier": "5853ee71", + "example_identifier": "342e2a31", "id": { "method": "PATCH", "path": "/http-methods/{id}", @@ -196,7 +196,7 @@ } }, { - "example_identifier": "75d0bb44", + "example_identifier": "1404ab24", "id": { "method": "DELETE", "path": "/http-methods/{id}", @@ -209,7 +209,7 @@ } }, { - "example_identifier": "114cc607", + "example_identifier": "d6beb177", "id": { "method": "POST", "path": "/object/get-and-return-with-optional-field", @@ -222,7 +222,7 @@ } }, { - "example_identifier": "f16c47b", + "example_identifier": "151df06b", "id": { "method": "POST", "path": "/object/get-and-return-with-required-field", @@ -235,7 +235,7 @@ } }, { - "example_identifier": "67d98fff", + "example_identifier": "d9405baf", "id": { "method": "POST", "path": "/object/get-and-return-with-map-of-map", @@ -248,7 +248,7 @@ } }, { - "example_identifier": "26d2c7ff", + "example_identifier": "8e720a2f", "id": { "method": "POST", "path": "/object/get-and-return-nested-with-optional-field", @@ -261,7 +261,7 @@ } }, { - "example_identifier": "7dd80f99", + "example_identifier": "5f48279", "id": { "method": "POST", "path": "/object/get-and-return-nested-with-required-field/{string}", @@ -274,7 +274,7 @@ } }, { - "example_identifier": "549e214e", + "example_identifier": "4b2dd0be", "id": { "method": "POST", "path": "/object/get-and-return-nested-with-required-field-list", @@ -300,7 +300,7 @@ } }, { - "example_identifier": "75f55e6b", + "example_identifier": "3f685fb", "id": { "method": "POST", "path": "/object/get-and-return-with-documented-unknown-type", @@ -313,7 +313,7 @@ } }, { - "example_identifier": "47385897", + "example_identifier": "a4a25e67", "id": { "method": "POST", "path": "/object/get-and-return-map-of-documented-unknown-type", @@ -365,7 +365,7 @@ } }, { - "example_identifier": "82d9b4d0", + "example_identifier": "b71a59a0", "id": { "method": "GET", "path": "/pagination", @@ -378,7 +378,7 @@ } }, { - "example_identifier": "59976c27", + "example_identifier": "5cd55167", "id": { "method": "GET", "path": "/params/path/{param}", @@ -391,7 +391,7 @@ } }, { - "example_identifier": "59976c27", + "example_identifier": "5cd55167", "id": { "method": "GET", "path": "/params/path/{param}", @@ -404,7 +404,7 @@ } }, { - "example_identifier": "cbf60b2e", + "example_identifier": "e99efb2e", "id": { "method": "GET", "path": "/params", @@ -417,7 +417,7 @@ } }, { - "example_identifier": "a497824e", + "example_identifier": "2a102e", "id": { "method": "GET", "path": "/params", @@ -430,7 +430,7 @@ } }, { - "example_identifier": "7ac7b87", + "example_identifier": "1394f747", "id": { "method": "GET", "path": "/params/path-query/{param}", @@ -443,7 +443,7 @@ } }, { - "example_identifier": "7ac7b87", + "example_identifier": "1394f747", "id": { "method": "GET", "path": "/params/path-query/{param}", @@ -456,7 +456,7 @@ } }, { - "example_identifier": "eb5b1e57", + "example_identifier": "6e3468b7", "id": { "method": "PUT", "path": "/params/path/{param}", @@ -469,7 +469,7 @@ } }, { - "example_identifier": "eb5b1e57", + "example_identifier": "6e3468b7", "id": { "method": "PUT", "path": "/params/path/{param}", @@ -495,7 +495,7 @@ } }, { - "example_identifier": "89cf23de", + "example_identifier": "b08339be", "id": { "method": "GET", "path": "/params/path-bool/{param}", @@ -508,7 +508,7 @@ } }, { - "example_identifier": "59976c27", + "example_identifier": "5cd55167", "id": { "method": "GET", "path": "/params/path/{param}", @@ -521,7 +521,7 @@ } }, { - "example_identifier": "d8492cb1", + "example_identifier": "f9cf49e1", "id": { "method": "POST", "path": "/primitive/string", @@ -534,7 +534,7 @@ } }, { - "example_identifier": "44f8b59b", + "example_identifier": "38740cab", "id": { "method": "POST", "path": "/primitive/integer", @@ -547,7 +547,7 @@ } }, { - "example_identifier": "6757feff", + "example_identifier": "6371c64f", "id": { "method": "POST", "path": "/primitive/long", @@ -560,7 +560,7 @@ } }, { - "example_identifier": "9c532ef", + "example_identifier": "a311febf", "id": { "method": "POST", "path": "/primitive/double", @@ -573,7 +573,7 @@ } }, { - "example_identifier": "653ac8bb", + "example_identifier": "f353028b", "id": { "method": "POST", "path": "/primitive/boolean", @@ -586,7 +586,7 @@ } }, { - "example_identifier": "c4328e7f", + "example_identifier": "a3160a8f", "id": { "method": "POST", "path": "/primitive/datetime", @@ -599,7 +599,7 @@ } }, { - "example_identifier": "aa994713", + "example_identifier": "4d07d0e3", "id": { "method": "POST", "path": "/primitive/date", @@ -612,7 +612,7 @@ } }, { - "example_identifier": "c723c473", + "example_identifier": "59b6e903", "id": { "method": "POST", "path": "/primitive/uuid", @@ -625,7 +625,7 @@ } }, { - "example_identifier": "51535e73", + "example_identifier": "e7874543", "id": { "method": "POST", "path": "/primitive/base64", @@ -638,7 +638,7 @@ } }, { - "example_identifier": "e9d2ae72", + "example_identifier": "efa1ea32", "id": { "method": "PUT", "path": "/{id}", @@ -651,7 +651,7 @@ } }, { - "example_identifier": "2fff63df", + "example_identifier": "9da5060f", "id": { "method": "POST", "path": "/union", @@ -664,7 +664,7 @@ } }, { - "example_identifier": "34d92e75", + "example_identifier": "6f306605", "id": { "method": "GET", "path": "/urls/MixedCase", @@ -677,7 +677,7 @@ } }, { - "example_identifier": "34d92e75", + "example_identifier": "6f306605", "id": { "method": "GET", "path": "/urls/no-ending-slash", @@ -690,7 +690,7 @@ } }, { - "example_identifier": "34d92e75", + "example_identifier": "6f306605", "id": { "method": "GET", "path": "/urls/with-ending-slash/", @@ -703,7 +703,7 @@ } }, { - "example_identifier": "34d92e75", + "example_identifier": "6f306605", "id": { "method": "GET", "path": "/urls/with_underscores", @@ -716,7 +716,7 @@ } }, { - "example_identifier": "35a47ee2", + "example_identifier": "af506932", "id": { "method": "POST", "path": "/req-bodies/object", @@ -729,7 +729,7 @@ } }, { - "example_identifier": "78731579", + "example_identifier": "44880629", "id": { "method": "POST", "path": "/req-bodies/array-body-with-headers", @@ -742,7 +742,7 @@ } }, { - "example_identifier": "91843eb7", + "example_identifier": "1c752737", "id": { "method": "POST", "path": "/no-auth", @@ -755,7 +755,7 @@ } }, { - "example_identifier": "3d2c2d55", + "example_identifier": "33f25755", "id": { "method": "GET", "path": "/no-req-body", @@ -768,7 +768,7 @@ } }, { - "example_identifier": "34d92e75", + "example_identifier": "6f306605", "id": { "method": "POST", "path": "/no-req-body", @@ -781,7 +781,7 @@ } }, { - "example_identifier": "9d22bd38", + "example_identifier": "2f09fef8", "id": { "method": "POST", "path": "/test-headers/custom-header", diff --git a/seed/java-sdk/exhaustive/flat-package-layout/snippet.json b/seed/java-sdk/exhaustive/flat-package-layout/snippet.json index 93d402d31aaf..60e69bc2b351 100644 --- a/seed/java-sdk/exhaustive/flat-package-layout/snippet.json +++ b/seed/java-sdk/exhaustive/flat-package-layout/snippet.json @@ -1,7 +1,7 @@ { "endpoints": [ { - "example_identifier": "b07bc8d3", + "example_identifier": "d027c523", "id": { "method": "POST", "path": "/container/list-of-primitives", @@ -14,7 +14,7 @@ } }, { - "example_identifier": "fdac9ebb", + "example_identifier": "ebfd118b", "id": { "method": "POST", "path": "/container/list-of-objects", @@ -27,7 +27,7 @@ } }, { - "example_identifier": "638c8d5f", + "example_identifier": "2b21bccf", "id": { "method": "POST", "path": "/container/set-of-primitives", @@ -40,7 +40,7 @@ } }, { - "example_identifier": "5d48d875", + "example_identifier": "8fba1825", "id": { "method": "POST", "path": "/container/set-of-objects", @@ -53,7 +53,7 @@ } }, { - "example_identifier": "baa0e67f", + "example_identifier": "ce9e7f2f", "id": { "method": "POST", "path": "/container/map-prim-to-prim", @@ -66,7 +66,7 @@ } }, { - "example_identifier": "276bf059", + "example_identifier": "cc36e609", "id": { "method": "POST", "path": "/container/map-prim-to-object", @@ -79,7 +79,7 @@ } }, { - "example_identifier": "4c633c5f", + "example_identifier": "d57d494f", "id": { "method": "POST", "path": "/container/map-prim-to-union", @@ -92,7 +92,7 @@ } }, { - "example_identifier": "e3741b1b", + "example_identifier": "5cea1cb", "id": { "method": "POST", "path": "/container/opt-objects", @@ -105,7 +105,7 @@ } }, { - "example_identifier": "6d2eae78", + "example_identifier": "2781ed28", "id": { "method": "POST", "path": "/foo/bar", @@ -118,7 +118,7 @@ } }, { - "example_identifier": "6d2eae78", + "example_identifier": "2781ed28", "id": { "method": "POST", "path": "/foo/baz", @@ -131,7 +131,7 @@ } }, { - "example_identifier": "950e289b", + "example_identifier": "5565160b", "id": { "method": "POST", "path": "/enum", @@ -144,7 +144,7 @@ } }, { - "example_identifier": "cbd386bb", + "example_identifier": "afaed85b", "id": { "method": "GET", "path": "/http-methods/{id}", @@ -157,7 +157,7 @@ } }, { - "example_identifier": "d5925de4", + "example_identifier": "1ee0ae54", "id": { "method": "POST", "path": "/http-methods", @@ -170,7 +170,7 @@ } }, { - "example_identifier": "17411d4a", + "example_identifier": "6b525e4a", "id": { "method": "PUT", "path": "/http-methods/{id}", @@ -183,7 +183,7 @@ } }, { - "example_identifier": "5853ee71", + "example_identifier": "342e2a31", "id": { "method": "PATCH", "path": "/http-methods/{id}", @@ -196,7 +196,7 @@ } }, { - "example_identifier": "75d0bb44", + "example_identifier": "1404ab24", "id": { "method": "DELETE", "path": "/http-methods/{id}", @@ -209,7 +209,7 @@ } }, { - "example_identifier": "114cc607", + "example_identifier": "d6beb177", "id": { "method": "POST", "path": "/object/get-and-return-with-optional-field", @@ -222,7 +222,7 @@ } }, { - "example_identifier": "f16c47b", + "example_identifier": "151df06b", "id": { "method": "POST", "path": "/object/get-and-return-with-required-field", @@ -235,7 +235,7 @@ } }, { - "example_identifier": "67d98fff", + "example_identifier": "d9405baf", "id": { "method": "POST", "path": "/object/get-and-return-with-map-of-map", @@ -248,7 +248,7 @@ } }, { - "example_identifier": "26d2c7ff", + "example_identifier": "8e720a2f", "id": { "method": "POST", "path": "/object/get-and-return-nested-with-optional-field", @@ -261,7 +261,7 @@ } }, { - "example_identifier": "7dd80f99", + "example_identifier": "5f48279", "id": { "method": "POST", "path": "/object/get-and-return-nested-with-required-field/{string}", @@ -274,7 +274,7 @@ } }, { - "example_identifier": "549e214e", + "example_identifier": "4b2dd0be", "id": { "method": "POST", "path": "/object/get-and-return-nested-with-required-field-list", @@ -300,7 +300,7 @@ } }, { - "example_identifier": "75f55e6b", + "example_identifier": "3f685fb", "id": { "method": "POST", "path": "/object/get-and-return-with-documented-unknown-type", @@ -313,7 +313,7 @@ } }, { - "example_identifier": "47385897", + "example_identifier": "a4a25e67", "id": { "method": "POST", "path": "/object/get-and-return-map-of-documented-unknown-type", @@ -365,7 +365,7 @@ } }, { - "example_identifier": "82d9b4d0", + "example_identifier": "b71a59a0", "id": { "method": "GET", "path": "/pagination", @@ -378,7 +378,7 @@ } }, { - "example_identifier": "59976c27", + "example_identifier": "5cd55167", "id": { "method": "GET", "path": "/params/path/{param}", @@ -391,7 +391,7 @@ } }, { - "example_identifier": "59976c27", + "example_identifier": "5cd55167", "id": { "method": "GET", "path": "/params/path/{param}", @@ -404,7 +404,7 @@ } }, { - "example_identifier": "cbf60b2e", + "example_identifier": "e99efb2e", "id": { "method": "GET", "path": "/params", @@ -417,7 +417,7 @@ } }, { - "example_identifier": "a497824e", + "example_identifier": "2a102e", "id": { "method": "GET", "path": "/params", @@ -430,7 +430,7 @@ } }, { - "example_identifier": "7ac7b87", + "example_identifier": "1394f747", "id": { "method": "GET", "path": "/params/path-query/{param}", @@ -443,7 +443,7 @@ } }, { - "example_identifier": "7ac7b87", + "example_identifier": "1394f747", "id": { "method": "GET", "path": "/params/path-query/{param}", @@ -456,7 +456,7 @@ } }, { - "example_identifier": "eb5b1e57", + "example_identifier": "6e3468b7", "id": { "method": "PUT", "path": "/params/path/{param}", @@ -469,7 +469,7 @@ } }, { - "example_identifier": "eb5b1e57", + "example_identifier": "6e3468b7", "id": { "method": "PUT", "path": "/params/path/{param}", @@ -495,7 +495,7 @@ } }, { - "example_identifier": "89cf23de", + "example_identifier": "b08339be", "id": { "method": "GET", "path": "/params/path-bool/{param}", @@ -508,7 +508,7 @@ } }, { - "example_identifier": "59976c27", + "example_identifier": "5cd55167", "id": { "method": "GET", "path": "/params/path/{param}", @@ -521,7 +521,7 @@ } }, { - "example_identifier": "d8492cb1", + "example_identifier": "f9cf49e1", "id": { "method": "POST", "path": "/primitive/string", @@ -534,7 +534,7 @@ } }, { - "example_identifier": "44f8b59b", + "example_identifier": "38740cab", "id": { "method": "POST", "path": "/primitive/integer", @@ -547,7 +547,7 @@ } }, { - "example_identifier": "6757feff", + "example_identifier": "6371c64f", "id": { "method": "POST", "path": "/primitive/long", @@ -560,7 +560,7 @@ } }, { - "example_identifier": "9c532ef", + "example_identifier": "a311febf", "id": { "method": "POST", "path": "/primitive/double", @@ -573,7 +573,7 @@ } }, { - "example_identifier": "653ac8bb", + "example_identifier": "f353028b", "id": { "method": "POST", "path": "/primitive/boolean", @@ -586,7 +586,7 @@ } }, { - "example_identifier": "c4328e7f", + "example_identifier": "a3160a8f", "id": { "method": "POST", "path": "/primitive/datetime", @@ -599,7 +599,7 @@ } }, { - "example_identifier": "aa994713", + "example_identifier": "4d07d0e3", "id": { "method": "POST", "path": "/primitive/date", @@ -612,7 +612,7 @@ } }, { - "example_identifier": "c723c473", + "example_identifier": "59b6e903", "id": { "method": "POST", "path": "/primitive/uuid", @@ -625,7 +625,7 @@ } }, { - "example_identifier": "51535e73", + "example_identifier": "e7874543", "id": { "method": "POST", "path": "/primitive/base64", @@ -638,7 +638,7 @@ } }, { - "example_identifier": "e9d2ae72", + "example_identifier": "efa1ea32", "id": { "method": "PUT", "path": "/{id}", @@ -651,7 +651,7 @@ } }, { - "example_identifier": "2fff63df", + "example_identifier": "9da5060f", "id": { "method": "POST", "path": "/union", @@ -664,7 +664,7 @@ } }, { - "example_identifier": "34d92e75", + "example_identifier": "6f306605", "id": { "method": "GET", "path": "/urls/MixedCase", @@ -677,7 +677,7 @@ } }, { - "example_identifier": "34d92e75", + "example_identifier": "6f306605", "id": { "method": "GET", "path": "/urls/no-ending-slash", @@ -690,7 +690,7 @@ } }, { - "example_identifier": "34d92e75", + "example_identifier": "6f306605", "id": { "method": "GET", "path": "/urls/with-ending-slash/", @@ -703,7 +703,7 @@ } }, { - "example_identifier": "34d92e75", + "example_identifier": "6f306605", "id": { "method": "GET", "path": "/urls/with_underscores", @@ -716,7 +716,7 @@ } }, { - "example_identifier": "35a47ee2", + "example_identifier": "af506932", "id": { "method": "POST", "path": "/req-bodies/object", @@ -729,7 +729,7 @@ } }, { - "example_identifier": "78731579", + "example_identifier": "44880629", "id": { "method": "POST", "path": "/req-bodies/array-body-with-headers", @@ -742,7 +742,7 @@ } }, { - "example_identifier": "91843eb7", + "example_identifier": "1c752737", "id": { "method": "POST", "path": "/no-auth", @@ -755,7 +755,7 @@ } }, { - "example_identifier": "3d2c2d55", + "example_identifier": "33f25755", "id": { "method": "GET", "path": "/no-req-body", @@ -768,7 +768,7 @@ } }, { - "example_identifier": "34d92e75", + "example_identifier": "6f306605", "id": { "method": "POST", "path": "/no-req-body", @@ -781,7 +781,7 @@ } }, { - "example_identifier": "9d22bd38", + "example_identifier": "2f09fef8", "id": { "method": "POST", "path": "/test-headers/custom-header", diff --git a/seed/java-sdk/exhaustive/forward-compatible-enums/snippet.json b/seed/java-sdk/exhaustive/forward-compatible-enums/snippet.json index fdbdd74f7f6f..f7a876ae5d86 100644 --- a/seed/java-sdk/exhaustive/forward-compatible-enums/snippet.json +++ b/seed/java-sdk/exhaustive/forward-compatible-enums/snippet.json @@ -1,7 +1,7 @@ { "endpoints": [ { - "example_identifier": "b07bc8d3", + "example_identifier": "d027c523", "id": { "method": "POST", "path": "/container/list-of-primitives", @@ -14,7 +14,7 @@ } }, { - "example_identifier": "fdac9ebb", + "example_identifier": "ebfd118b", "id": { "method": "POST", "path": "/container/list-of-objects", @@ -27,7 +27,7 @@ } }, { - "example_identifier": "638c8d5f", + "example_identifier": "2b21bccf", "id": { "method": "POST", "path": "/container/set-of-primitives", @@ -40,7 +40,7 @@ } }, { - "example_identifier": "5d48d875", + "example_identifier": "8fba1825", "id": { "method": "POST", "path": "/container/set-of-objects", @@ -53,7 +53,7 @@ } }, { - "example_identifier": "baa0e67f", + "example_identifier": "ce9e7f2f", "id": { "method": "POST", "path": "/container/map-prim-to-prim", @@ -66,7 +66,7 @@ } }, { - "example_identifier": "276bf059", + "example_identifier": "cc36e609", "id": { "method": "POST", "path": "/container/map-prim-to-object", @@ -79,7 +79,7 @@ } }, { - "example_identifier": "4c633c5f", + "example_identifier": "d57d494f", "id": { "method": "POST", "path": "/container/map-prim-to-union", @@ -92,7 +92,7 @@ } }, { - "example_identifier": "e3741b1b", + "example_identifier": "5cea1cb", "id": { "method": "POST", "path": "/container/opt-objects", @@ -105,7 +105,7 @@ } }, { - "example_identifier": "6d2eae78", + "example_identifier": "2781ed28", "id": { "method": "POST", "path": "/foo/bar", @@ -118,7 +118,7 @@ } }, { - "example_identifier": "6d2eae78", + "example_identifier": "2781ed28", "id": { "method": "POST", "path": "/foo/baz", @@ -131,7 +131,7 @@ } }, { - "example_identifier": "950e289b", + "example_identifier": "5565160b", "id": { "method": "POST", "path": "/enum", @@ -144,7 +144,7 @@ } }, { - "example_identifier": "cbd386bb", + "example_identifier": "afaed85b", "id": { "method": "GET", "path": "/http-methods/{id}", @@ -157,7 +157,7 @@ } }, { - "example_identifier": "d5925de4", + "example_identifier": "1ee0ae54", "id": { "method": "POST", "path": "/http-methods", @@ -170,7 +170,7 @@ } }, { - "example_identifier": "17411d4a", + "example_identifier": "6b525e4a", "id": { "method": "PUT", "path": "/http-methods/{id}", @@ -183,7 +183,7 @@ } }, { - "example_identifier": "5853ee71", + "example_identifier": "342e2a31", "id": { "method": "PATCH", "path": "/http-methods/{id}", @@ -196,7 +196,7 @@ } }, { - "example_identifier": "75d0bb44", + "example_identifier": "1404ab24", "id": { "method": "DELETE", "path": "/http-methods/{id}", @@ -209,7 +209,7 @@ } }, { - "example_identifier": "114cc607", + "example_identifier": "d6beb177", "id": { "method": "POST", "path": "/object/get-and-return-with-optional-field", @@ -222,7 +222,7 @@ } }, { - "example_identifier": "f16c47b", + "example_identifier": "151df06b", "id": { "method": "POST", "path": "/object/get-and-return-with-required-field", @@ -235,7 +235,7 @@ } }, { - "example_identifier": "67d98fff", + "example_identifier": "d9405baf", "id": { "method": "POST", "path": "/object/get-and-return-with-map-of-map", @@ -248,7 +248,7 @@ } }, { - "example_identifier": "26d2c7ff", + "example_identifier": "8e720a2f", "id": { "method": "POST", "path": "/object/get-and-return-nested-with-optional-field", @@ -261,7 +261,7 @@ } }, { - "example_identifier": "7dd80f99", + "example_identifier": "5f48279", "id": { "method": "POST", "path": "/object/get-and-return-nested-with-required-field/{string}", @@ -274,7 +274,7 @@ } }, { - "example_identifier": "549e214e", + "example_identifier": "4b2dd0be", "id": { "method": "POST", "path": "/object/get-and-return-nested-with-required-field-list", @@ -300,7 +300,7 @@ } }, { - "example_identifier": "75f55e6b", + "example_identifier": "3f685fb", "id": { "method": "POST", "path": "/object/get-and-return-with-documented-unknown-type", @@ -313,7 +313,7 @@ } }, { - "example_identifier": "47385897", + "example_identifier": "a4a25e67", "id": { "method": "POST", "path": "/object/get-and-return-map-of-documented-unknown-type", @@ -365,7 +365,7 @@ } }, { - "example_identifier": "82d9b4d0", + "example_identifier": "b71a59a0", "id": { "method": "GET", "path": "/pagination", @@ -378,7 +378,7 @@ } }, { - "example_identifier": "59976c27", + "example_identifier": "5cd55167", "id": { "method": "GET", "path": "/params/path/{param}", @@ -391,7 +391,7 @@ } }, { - "example_identifier": "59976c27", + "example_identifier": "5cd55167", "id": { "method": "GET", "path": "/params/path/{param}", @@ -404,7 +404,7 @@ } }, { - "example_identifier": "cbf60b2e", + "example_identifier": "e99efb2e", "id": { "method": "GET", "path": "/params", @@ -417,7 +417,7 @@ } }, { - "example_identifier": "a497824e", + "example_identifier": "2a102e", "id": { "method": "GET", "path": "/params", @@ -430,7 +430,7 @@ } }, { - "example_identifier": "7ac7b87", + "example_identifier": "1394f747", "id": { "method": "GET", "path": "/params/path-query/{param}", @@ -443,7 +443,7 @@ } }, { - "example_identifier": "7ac7b87", + "example_identifier": "1394f747", "id": { "method": "GET", "path": "/params/path-query/{param}", @@ -456,7 +456,7 @@ } }, { - "example_identifier": "eb5b1e57", + "example_identifier": "6e3468b7", "id": { "method": "PUT", "path": "/params/path/{param}", @@ -469,7 +469,7 @@ } }, { - "example_identifier": "eb5b1e57", + "example_identifier": "6e3468b7", "id": { "method": "PUT", "path": "/params/path/{param}", @@ -495,7 +495,7 @@ } }, { - "example_identifier": "89cf23de", + "example_identifier": "b08339be", "id": { "method": "GET", "path": "/params/path-bool/{param}", @@ -508,7 +508,7 @@ } }, { - "example_identifier": "59976c27", + "example_identifier": "5cd55167", "id": { "method": "GET", "path": "/params/path/{param}", @@ -521,7 +521,7 @@ } }, { - "example_identifier": "d8492cb1", + "example_identifier": "f9cf49e1", "id": { "method": "POST", "path": "/primitive/string", @@ -534,7 +534,7 @@ } }, { - "example_identifier": "44f8b59b", + "example_identifier": "38740cab", "id": { "method": "POST", "path": "/primitive/integer", @@ -547,7 +547,7 @@ } }, { - "example_identifier": "6757feff", + "example_identifier": "6371c64f", "id": { "method": "POST", "path": "/primitive/long", @@ -560,7 +560,7 @@ } }, { - "example_identifier": "9c532ef", + "example_identifier": "a311febf", "id": { "method": "POST", "path": "/primitive/double", @@ -573,7 +573,7 @@ } }, { - "example_identifier": "653ac8bb", + "example_identifier": "f353028b", "id": { "method": "POST", "path": "/primitive/boolean", @@ -586,7 +586,7 @@ } }, { - "example_identifier": "c4328e7f", + "example_identifier": "a3160a8f", "id": { "method": "POST", "path": "/primitive/datetime", @@ -599,7 +599,7 @@ } }, { - "example_identifier": "aa994713", + "example_identifier": "4d07d0e3", "id": { "method": "POST", "path": "/primitive/date", @@ -612,7 +612,7 @@ } }, { - "example_identifier": "c723c473", + "example_identifier": "59b6e903", "id": { "method": "POST", "path": "/primitive/uuid", @@ -625,7 +625,7 @@ } }, { - "example_identifier": "51535e73", + "example_identifier": "e7874543", "id": { "method": "POST", "path": "/primitive/base64", @@ -638,7 +638,7 @@ } }, { - "example_identifier": "e9d2ae72", + "example_identifier": "efa1ea32", "id": { "method": "PUT", "path": "/{id}", @@ -651,7 +651,7 @@ } }, { - "example_identifier": "2fff63df", + "example_identifier": "9da5060f", "id": { "method": "POST", "path": "/union", @@ -664,7 +664,7 @@ } }, { - "example_identifier": "34d92e75", + "example_identifier": "6f306605", "id": { "method": "GET", "path": "/urls/MixedCase", @@ -677,7 +677,7 @@ } }, { - "example_identifier": "34d92e75", + "example_identifier": "6f306605", "id": { "method": "GET", "path": "/urls/no-ending-slash", @@ -690,7 +690,7 @@ } }, { - "example_identifier": "34d92e75", + "example_identifier": "6f306605", "id": { "method": "GET", "path": "/urls/with-ending-slash/", @@ -703,7 +703,7 @@ } }, { - "example_identifier": "34d92e75", + "example_identifier": "6f306605", "id": { "method": "GET", "path": "/urls/with_underscores", @@ -716,7 +716,7 @@ } }, { - "example_identifier": "35a47ee2", + "example_identifier": "af506932", "id": { "method": "POST", "path": "/req-bodies/object", @@ -729,7 +729,7 @@ } }, { - "example_identifier": "78731579", + "example_identifier": "44880629", "id": { "method": "POST", "path": "/req-bodies/array-body-with-headers", @@ -742,7 +742,7 @@ } }, { - "example_identifier": "91843eb7", + "example_identifier": "1c752737", "id": { "method": "POST", "path": "/no-auth", @@ -755,7 +755,7 @@ } }, { - "example_identifier": "3d2c2d55", + "example_identifier": "33f25755", "id": { "method": "GET", "path": "/no-req-body", @@ -768,7 +768,7 @@ } }, { - "example_identifier": "34d92e75", + "example_identifier": "6f306605", "id": { "method": "POST", "path": "/no-req-body", @@ -781,7 +781,7 @@ } }, { - "example_identifier": "9d22bd38", + "example_identifier": "2f09fef8", "id": { "method": "POST", "path": "/test-headers/custom-header", diff --git a/seed/java-sdk/exhaustive/json-include-non-empty/snippet.json b/seed/java-sdk/exhaustive/json-include-non-empty/snippet.json index fdbdd74f7f6f..f7a876ae5d86 100644 --- a/seed/java-sdk/exhaustive/json-include-non-empty/snippet.json +++ b/seed/java-sdk/exhaustive/json-include-non-empty/snippet.json @@ -1,7 +1,7 @@ { "endpoints": [ { - "example_identifier": "b07bc8d3", + "example_identifier": "d027c523", "id": { "method": "POST", "path": "/container/list-of-primitives", @@ -14,7 +14,7 @@ } }, { - "example_identifier": "fdac9ebb", + "example_identifier": "ebfd118b", "id": { "method": "POST", "path": "/container/list-of-objects", @@ -27,7 +27,7 @@ } }, { - "example_identifier": "638c8d5f", + "example_identifier": "2b21bccf", "id": { "method": "POST", "path": "/container/set-of-primitives", @@ -40,7 +40,7 @@ } }, { - "example_identifier": "5d48d875", + "example_identifier": "8fba1825", "id": { "method": "POST", "path": "/container/set-of-objects", @@ -53,7 +53,7 @@ } }, { - "example_identifier": "baa0e67f", + "example_identifier": "ce9e7f2f", "id": { "method": "POST", "path": "/container/map-prim-to-prim", @@ -66,7 +66,7 @@ } }, { - "example_identifier": "276bf059", + "example_identifier": "cc36e609", "id": { "method": "POST", "path": "/container/map-prim-to-object", @@ -79,7 +79,7 @@ } }, { - "example_identifier": "4c633c5f", + "example_identifier": "d57d494f", "id": { "method": "POST", "path": "/container/map-prim-to-union", @@ -92,7 +92,7 @@ } }, { - "example_identifier": "e3741b1b", + "example_identifier": "5cea1cb", "id": { "method": "POST", "path": "/container/opt-objects", @@ -105,7 +105,7 @@ } }, { - "example_identifier": "6d2eae78", + "example_identifier": "2781ed28", "id": { "method": "POST", "path": "/foo/bar", @@ -118,7 +118,7 @@ } }, { - "example_identifier": "6d2eae78", + "example_identifier": "2781ed28", "id": { "method": "POST", "path": "/foo/baz", @@ -131,7 +131,7 @@ } }, { - "example_identifier": "950e289b", + "example_identifier": "5565160b", "id": { "method": "POST", "path": "/enum", @@ -144,7 +144,7 @@ } }, { - "example_identifier": "cbd386bb", + "example_identifier": "afaed85b", "id": { "method": "GET", "path": "/http-methods/{id}", @@ -157,7 +157,7 @@ } }, { - "example_identifier": "d5925de4", + "example_identifier": "1ee0ae54", "id": { "method": "POST", "path": "/http-methods", @@ -170,7 +170,7 @@ } }, { - "example_identifier": "17411d4a", + "example_identifier": "6b525e4a", "id": { "method": "PUT", "path": "/http-methods/{id}", @@ -183,7 +183,7 @@ } }, { - "example_identifier": "5853ee71", + "example_identifier": "342e2a31", "id": { "method": "PATCH", "path": "/http-methods/{id}", @@ -196,7 +196,7 @@ } }, { - "example_identifier": "75d0bb44", + "example_identifier": "1404ab24", "id": { "method": "DELETE", "path": "/http-methods/{id}", @@ -209,7 +209,7 @@ } }, { - "example_identifier": "114cc607", + "example_identifier": "d6beb177", "id": { "method": "POST", "path": "/object/get-and-return-with-optional-field", @@ -222,7 +222,7 @@ } }, { - "example_identifier": "f16c47b", + "example_identifier": "151df06b", "id": { "method": "POST", "path": "/object/get-and-return-with-required-field", @@ -235,7 +235,7 @@ } }, { - "example_identifier": "67d98fff", + "example_identifier": "d9405baf", "id": { "method": "POST", "path": "/object/get-and-return-with-map-of-map", @@ -248,7 +248,7 @@ } }, { - "example_identifier": "26d2c7ff", + "example_identifier": "8e720a2f", "id": { "method": "POST", "path": "/object/get-and-return-nested-with-optional-field", @@ -261,7 +261,7 @@ } }, { - "example_identifier": "7dd80f99", + "example_identifier": "5f48279", "id": { "method": "POST", "path": "/object/get-and-return-nested-with-required-field/{string}", @@ -274,7 +274,7 @@ } }, { - "example_identifier": "549e214e", + "example_identifier": "4b2dd0be", "id": { "method": "POST", "path": "/object/get-and-return-nested-with-required-field-list", @@ -300,7 +300,7 @@ } }, { - "example_identifier": "75f55e6b", + "example_identifier": "3f685fb", "id": { "method": "POST", "path": "/object/get-and-return-with-documented-unknown-type", @@ -313,7 +313,7 @@ } }, { - "example_identifier": "47385897", + "example_identifier": "a4a25e67", "id": { "method": "POST", "path": "/object/get-and-return-map-of-documented-unknown-type", @@ -365,7 +365,7 @@ } }, { - "example_identifier": "82d9b4d0", + "example_identifier": "b71a59a0", "id": { "method": "GET", "path": "/pagination", @@ -378,7 +378,7 @@ } }, { - "example_identifier": "59976c27", + "example_identifier": "5cd55167", "id": { "method": "GET", "path": "/params/path/{param}", @@ -391,7 +391,7 @@ } }, { - "example_identifier": "59976c27", + "example_identifier": "5cd55167", "id": { "method": "GET", "path": "/params/path/{param}", @@ -404,7 +404,7 @@ } }, { - "example_identifier": "cbf60b2e", + "example_identifier": "e99efb2e", "id": { "method": "GET", "path": "/params", @@ -417,7 +417,7 @@ } }, { - "example_identifier": "a497824e", + "example_identifier": "2a102e", "id": { "method": "GET", "path": "/params", @@ -430,7 +430,7 @@ } }, { - "example_identifier": "7ac7b87", + "example_identifier": "1394f747", "id": { "method": "GET", "path": "/params/path-query/{param}", @@ -443,7 +443,7 @@ } }, { - "example_identifier": "7ac7b87", + "example_identifier": "1394f747", "id": { "method": "GET", "path": "/params/path-query/{param}", @@ -456,7 +456,7 @@ } }, { - "example_identifier": "eb5b1e57", + "example_identifier": "6e3468b7", "id": { "method": "PUT", "path": "/params/path/{param}", @@ -469,7 +469,7 @@ } }, { - "example_identifier": "eb5b1e57", + "example_identifier": "6e3468b7", "id": { "method": "PUT", "path": "/params/path/{param}", @@ -495,7 +495,7 @@ } }, { - "example_identifier": "89cf23de", + "example_identifier": "b08339be", "id": { "method": "GET", "path": "/params/path-bool/{param}", @@ -508,7 +508,7 @@ } }, { - "example_identifier": "59976c27", + "example_identifier": "5cd55167", "id": { "method": "GET", "path": "/params/path/{param}", @@ -521,7 +521,7 @@ } }, { - "example_identifier": "d8492cb1", + "example_identifier": "f9cf49e1", "id": { "method": "POST", "path": "/primitive/string", @@ -534,7 +534,7 @@ } }, { - "example_identifier": "44f8b59b", + "example_identifier": "38740cab", "id": { "method": "POST", "path": "/primitive/integer", @@ -547,7 +547,7 @@ } }, { - "example_identifier": "6757feff", + "example_identifier": "6371c64f", "id": { "method": "POST", "path": "/primitive/long", @@ -560,7 +560,7 @@ } }, { - "example_identifier": "9c532ef", + "example_identifier": "a311febf", "id": { "method": "POST", "path": "/primitive/double", @@ -573,7 +573,7 @@ } }, { - "example_identifier": "653ac8bb", + "example_identifier": "f353028b", "id": { "method": "POST", "path": "/primitive/boolean", @@ -586,7 +586,7 @@ } }, { - "example_identifier": "c4328e7f", + "example_identifier": "a3160a8f", "id": { "method": "POST", "path": "/primitive/datetime", @@ -599,7 +599,7 @@ } }, { - "example_identifier": "aa994713", + "example_identifier": "4d07d0e3", "id": { "method": "POST", "path": "/primitive/date", @@ -612,7 +612,7 @@ } }, { - "example_identifier": "c723c473", + "example_identifier": "59b6e903", "id": { "method": "POST", "path": "/primitive/uuid", @@ -625,7 +625,7 @@ } }, { - "example_identifier": "51535e73", + "example_identifier": "e7874543", "id": { "method": "POST", "path": "/primitive/base64", @@ -638,7 +638,7 @@ } }, { - "example_identifier": "e9d2ae72", + "example_identifier": "efa1ea32", "id": { "method": "PUT", "path": "/{id}", @@ -651,7 +651,7 @@ } }, { - "example_identifier": "2fff63df", + "example_identifier": "9da5060f", "id": { "method": "POST", "path": "/union", @@ -664,7 +664,7 @@ } }, { - "example_identifier": "34d92e75", + "example_identifier": "6f306605", "id": { "method": "GET", "path": "/urls/MixedCase", @@ -677,7 +677,7 @@ } }, { - "example_identifier": "34d92e75", + "example_identifier": "6f306605", "id": { "method": "GET", "path": "/urls/no-ending-slash", @@ -690,7 +690,7 @@ } }, { - "example_identifier": "34d92e75", + "example_identifier": "6f306605", "id": { "method": "GET", "path": "/urls/with-ending-slash/", @@ -703,7 +703,7 @@ } }, { - "example_identifier": "34d92e75", + "example_identifier": "6f306605", "id": { "method": "GET", "path": "/urls/with_underscores", @@ -716,7 +716,7 @@ } }, { - "example_identifier": "35a47ee2", + "example_identifier": "af506932", "id": { "method": "POST", "path": "/req-bodies/object", @@ -729,7 +729,7 @@ } }, { - "example_identifier": "78731579", + "example_identifier": "44880629", "id": { "method": "POST", "path": "/req-bodies/array-body-with-headers", @@ -742,7 +742,7 @@ } }, { - "example_identifier": "91843eb7", + "example_identifier": "1c752737", "id": { "method": "POST", "path": "/no-auth", @@ -755,7 +755,7 @@ } }, { - "example_identifier": "3d2c2d55", + "example_identifier": "33f25755", "id": { "method": "GET", "path": "/no-req-body", @@ -768,7 +768,7 @@ } }, { - "example_identifier": "34d92e75", + "example_identifier": "6f306605", "id": { "method": "POST", "path": "/no-req-body", @@ -781,7 +781,7 @@ } }, { - "example_identifier": "9d22bd38", + "example_identifier": "2f09fef8", "id": { "method": "POST", "path": "/test-headers/custom-header", diff --git a/seed/java-sdk/exhaustive/local-files/snippet.json b/seed/java-sdk/exhaustive/local-files/snippet.json index f637b5b45da9..c573e0ad1232 100644 --- a/seed/java-sdk/exhaustive/local-files/snippet.json +++ b/seed/java-sdk/exhaustive/local-files/snippet.json @@ -1,7 +1,7 @@ { "endpoints": [ { - "example_identifier": "b07bc8d3", + "example_identifier": "d027c523", "id": { "method": "POST", "path": "/container/list-of-primitives", @@ -14,7 +14,7 @@ } }, { - "example_identifier": "fdac9ebb", + "example_identifier": "ebfd118b", "id": { "method": "POST", "path": "/container/list-of-objects", @@ -27,7 +27,7 @@ } }, { - "example_identifier": "638c8d5f", + "example_identifier": "2b21bccf", "id": { "method": "POST", "path": "/container/set-of-primitives", @@ -40,7 +40,7 @@ } }, { - "example_identifier": "5d48d875", + "example_identifier": "8fba1825", "id": { "method": "POST", "path": "/container/set-of-objects", @@ -53,7 +53,7 @@ } }, { - "example_identifier": "baa0e67f", + "example_identifier": "ce9e7f2f", "id": { "method": "POST", "path": "/container/map-prim-to-prim", @@ -66,7 +66,7 @@ } }, { - "example_identifier": "276bf059", + "example_identifier": "cc36e609", "id": { "method": "POST", "path": "/container/map-prim-to-object", @@ -79,7 +79,7 @@ } }, { - "example_identifier": "4c633c5f", + "example_identifier": "d57d494f", "id": { "method": "POST", "path": "/container/map-prim-to-union", @@ -92,7 +92,7 @@ } }, { - "example_identifier": "e3741b1b", + "example_identifier": "5cea1cb", "id": { "method": "POST", "path": "/container/opt-objects", @@ -105,7 +105,7 @@ } }, { - "example_identifier": "6d2eae78", + "example_identifier": "2781ed28", "id": { "method": "POST", "path": "/foo/bar", @@ -118,7 +118,7 @@ } }, { - "example_identifier": "6d2eae78", + "example_identifier": "2781ed28", "id": { "method": "POST", "path": "/foo/baz", @@ -131,7 +131,7 @@ } }, { - "example_identifier": "950e289b", + "example_identifier": "5565160b", "id": { "method": "POST", "path": "/enum", @@ -144,7 +144,7 @@ } }, { - "example_identifier": "cbd386bb", + "example_identifier": "afaed85b", "id": { "method": "GET", "path": "/http-methods/{id}", @@ -157,7 +157,7 @@ } }, { - "example_identifier": "d5925de4", + "example_identifier": "1ee0ae54", "id": { "method": "POST", "path": "/http-methods", @@ -170,7 +170,7 @@ } }, { - "example_identifier": "17411d4a", + "example_identifier": "6b525e4a", "id": { "method": "PUT", "path": "/http-methods/{id}", @@ -183,7 +183,7 @@ } }, { - "example_identifier": "5853ee71", + "example_identifier": "342e2a31", "id": { "method": "PATCH", "path": "/http-methods/{id}", @@ -196,7 +196,7 @@ } }, { - "example_identifier": "75d0bb44", + "example_identifier": "1404ab24", "id": { "method": "DELETE", "path": "/http-methods/{id}", @@ -209,7 +209,7 @@ } }, { - "example_identifier": "114cc607", + "example_identifier": "d6beb177", "id": { "method": "POST", "path": "/object/get-and-return-with-optional-field", @@ -222,7 +222,7 @@ } }, { - "example_identifier": "f16c47b", + "example_identifier": "151df06b", "id": { "method": "POST", "path": "/object/get-and-return-with-required-field", @@ -235,7 +235,7 @@ } }, { - "example_identifier": "67d98fff", + "example_identifier": "d9405baf", "id": { "method": "POST", "path": "/object/get-and-return-with-map-of-map", @@ -248,7 +248,7 @@ } }, { - "example_identifier": "26d2c7ff", + "example_identifier": "8e720a2f", "id": { "method": "POST", "path": "/object/get-and-return-nested-with-optional-field", @@ -261,7 +261,7 @@ } }, { - "example_identifier": "7dd80f99", + "example_identifier": "5f48279", "id": { "method": "POST", "path": "/object/get-and-return-nested-with-required-field/{string}", @@ -274,7 +274,7 @@ } }, { - "example_identifier": "549e214e", + "example_identifier": "4b2dd0be", "id": { "method": "POST", "path": "/object/get-and-return-nested-with-required-field-list", @@ -300,7 +300,7 @@ } }, { - "example_identifier": "75f55e6b", + "example_identifier": "3f685fb", "id": { "method": "POST", "path": "/object/get-and-return-with-documented-unknown-type", @@ -313,7 +313,7 @@ } }, { - "example_identifier": "47385897", + "example_identifier": "a4a25e67", "id": { "method": "POST", "path": "/object/get-and-return-map-of-documented-unknown-type", @@ -365,7 +365,7 @@ } }, { - "example_identifier": "82d9b4d0", + "example_identifier": "b71a59a0", "id": { "method": "GET", "path": "/pagination", @@ -378,7 +378,7 @@ } }, { - "example_identifier": "59976c27", + "example_identifier": "5cd55167", "id": { "method": "GET", "path": "/params/path/{param}", @@ -391,7 +391,7 @@ } }, { - "example_identifier": "59976c27", + "example_identifier": "5cd55167", "id": { "method": "GET", "path": "/params/path/{param}", @@ -404,7 +404,7 @@ } }, { - "example_identifier": "cbf60b2e", + "example_identifier": "e99efb2e", "id": { "method": "GET", "path": "/params", @@ -417,7 +417,7 @@ } }, { - "example_identifier": "a497824e", + "example_identifier": "2a102e", "id": { "method": "GET", "path": "/params", @@ -430,7 +430,7 @@ } }, { - "example_identifier": "7ac7b87", + "example_identifier": "1394f747", "id": { "method": "GET", "path": "/params/path-query/{param}", @@ -443,7 +443,7 @@ } }, { - "example_identifier": "7ac7b87", + "example_identifier": "1394f747", "id": { "method": "GET", "path": "/params/path-query/{param}", @@ -456,7 +456,7 @@ } }, { - "example_identifier": "eb5b1e57", + "example_identifier": "6e3468b7", "id": { "method": "PUT", "path": "/params/path/{param}", @@ -469,7 +469,7 @@ } }, { - "example_identifier": "eb5b1e57", + "example_identifier": "6e3468b7", "id": { "method": "PUT", "path": "/params/path/{param}", @@ -495,7 +495,7 @@ } }, { - "example_identifier": "89cf23de", + "example_identifier": "b08339be", "id": { "method": "GET", "path": "/params/path-bool/{param}", @@ -508,7 +508,7 @@ } }, { - "example_identifier": "59976c27", + "example_identifier": "5cd55167", "id": { "method": "GET", "path": "/params/path/{param}", @@ -521,7 +521,7 @@ } }, { - "example_identifier": "d8492cb1", + "example_identifier": "f9cf49e1", "id": { "method": "POST", "path": "/primitive/string", @@ -534,7 +534,7 @@ } }, { - "example_identifier": "44f8b59b", + "example_identifier": "38740cab", "id": { "method": "POST", "path": "/primitive/integer", @@ -547,7 +547,7 @@ } }, { - "example_identifier": "6757feff", + "example_identifier": "6371c64f", "id": { "method": "POST", "path": "/primitive/long", @@ -560,7 +560,7 @@ } }, { - "example_identifier": "9c532ef", + "example_identifier": "a311febf", "id": { "method": "POST", "path": "/primitive/double", @@ -573,7 +573,7 @@ } }, { - "example_identifier": "653ac8bb", + "example_identifier": "f353028b", "id": { "method": "POST", "path": "/primitive/boolean", @@ -586,7 +586,7 @@ } }, { - "example_identifier": "c4328e7f", + "example_identifier": "a3160a8f", "id": { "method": "POST", "path": "/primitive/datetime", @@ -599,7 +599,7 @@ } }, { - "example_identifier": "aa994713", + "example_identifier": "4d07d0e3", "id": { "method": "POST", "path": "/primitive/date", @@ -612,7 +612,7 @@ } }, { - "example_identifier": "c723c473", + "example_identifier": "59b6e903", "id": { "method": "POST", "path": "/primitive/uuid", @@ -625,7 +625,7 @@ } }, { - "example_identifier": "51535e73", + "example_identifier": "e7874543", "id": { "method": "POST", "path": "/primitive/base64", @@ -638,7 +638,7 @@ } }, { - "example_identifier": "e9d2ae72", + "example_identifier": "efa1ea32", "id": { "method": "PUT", "path": "/{id}", @@ -651,7 +651,7 @@ } }, { - "example_identifier": "2fff63df", + "example_identifier": "9da5060f", "id": { "method": "POST", "path": "/union", @@ -664,7 +664,7 @@ } }, { - "example_identifier": "34d92e75", + "example_identifier": "6f306605", "id": { "method": "GET", "path": "/urls/MixedCase", @@ -677,7 +677,7 @@ } }, { - "example_identifier": "34d92e75", + "example_identifier": "6f306605", "id": { "method": "GET", "path": "/urls/no-ending-slash", @@ -690,7 +690,7 @@ } }, { - "example_identifier": "34d92e75", + "example_identifier": "6f306605", "id": { "method": "GET", "path": "/urls/with-ending-slash/", @@ -703,7 +703,7 @@ } }, { - "example_identifier": "34d92e75", + "example_identifier": "6f306605", "id": { "method": "GET", "path": "/urls/with_underscores", @@ -716,7 +716,7 @@ } }, { - "example_identifier": "35a47ee2", + "example_identifier": "af506932", "id": { "method": "POST", "path": "/req-bodies/object", @@ -729,7 +729,7 @@ } }, { - "example_identifier": "78731579", + "example_identifier": "44880629", "id": { "method": "POST", "path": "/req-bodies/array-body-with-headers", @@ -742,7 +742,7 @@ } }, { - "example_identifier": "91843eb7", + "example_identifier": "1c752737", "id": { "method": "POST", "path": "/no-auth", @@ -755,7 +755,7 @@ } }, { - "example_identifier": "3d2c2d55", + "example_identifier": "33f25755", "id": { "method": "GET", "path": "/no-req-body", @@ -768,7 +768,7 @@ } }, { - "example_identifier": "34d92e75", + "example_identifier": "6f306605", "id": { "method": "POST", "path": "/no-req-body", @@ -781,7 +781,7 @@ } }, { - "example_identifier": "9d22bd38", + "example_identifier": "2f09fef8", "id": { "method": "POST", "path": "/test-headers/custom-header", diff --git a/seed/java-sdk/exhaustive/no-custom-config/snippet.json b/seed/java-sdk/exhaustive/no-custom-config/snippet.json index 03ad40fd9f96..f9e942e37645 100644 --- a/seed/java-sdk/exhaustive/no-custom-config/snippet.json +++ b/seed/java-sdk/exhaustive/no-custom-config/snippet.json @@ -1,7 +1,7 @@ { "endpoints": [ { - "example_identifier": "b07bc8d3", + "example_identifier": "d027c523", "id": { "method": "POST", "path": "/container/list-of-primitives", @@ -14,7 +14,7 @@ } }, { - "example_identifier": "fdac9ebb", + "example_identifier": "ebfd118b", "id": { "method": "POST", "path": "/container/list-of-objects", @@ -27,7 +27,7 @@ } }, { - "example_identifier": "638c8d5f", + "example_identifier": "2b21bccf", "id": { "method": "POST", "path": "/container/set-of-primitives", @@ -40,7 +40,7 @@ } }, { - "example_identifier": "5d48d875", + "example_identifier": "8fba1825", "id": { "method": "POST", "path": "/container/set-of-objects", @@ -53,7 +53,7 @@ } }, { - "example_identifier": "baa0e67f", + "example_identifier": "ce9e7f2f", "id": { "method": "POST", "path": "/container/map-prim-to-prim", @@ -66,7 +66,7 @@ } }, { - "example_identifier": "276bf059", + "example_identifier": "cc36e609", "id": { "method": "POST", "path": "/container/map-prim-to-object", @@ -79,7 +79,7 @@ } }, { - "example_identifier": "4c633c5f", + "example_identifier": "d57d494f", "id": { "method": "POST", "path": "/container/map-prim-to-union", @@ -92,7 +92,7 @@ } }, { - "example_identifier": "e3741b1b", + "example_identifier": "5cea1cb", "id": { "method": "POST", "path": "/container/opt-objects", @@ -105,7 +105,7 @@ } }, { - "example_identifier": "6d2eae78", + "example_identifier": "2781ed28", "id": { "method": "POST", "path": "/foo/bar", @@ -118,7 +118,7 @@ } }, { - "example_identifier": "6d2eae78", + "example_identifier": "2781ed28", "id": { "method": "POST", "path": "/foo/baz", @@ -131,7 +131,7 @@ } }, { - "example_identifier": "950e289b", + "example_identifier": "5565160b", "id": { "method": "POST", "path": "/enum", @@ -144,7 +144,7 @@ } }, { - "example_identifier": "cbd386bb", + "example_identifier": "afaed85b", "id": { "method": "GET", "path": "/http-methods/{id}", @@ -157,7 +157,7 @@ } }, { - "example_identifier": "d5925de4", + "example_identifier": "1ee0ae54", "id": { "method": "POST", "path": "/http-methods", @@ -170,7 +170,7 @@ } }, { - "example_identifier": "17411d4a", + "example_identifier": "6b525e4a", "id": { "method": "PUT", "path": "/http-methods/{id}", @@ -183,7 +183,7 @@ } }, { - "example_identifier": "5853ee71", + "example_identifier": "342e2a31", "id": { "method": "PATCH", "path": "/http-methods/{id}", @@ -196,7 +196,7 @@ } }, { - "example_identifier": "75d0bb44", + "example_identifier": "1404ab24", "id": { "method": "DELETE", "path": "/http-methods/{id}", @@ -209,7 +209,7 @@ } }, { - "example_identifier": "114cc607", + "example_identifier": "d6beb177", "id": { "method": "POST", "path": "/object/get-and-return-with-optional-field", @@ -222,7 +222,7 @@ } }, { - "example_identifier": "f16c47b", + "example_identifier": "151df06b", "id": { "method": "POST", "path": "/object/get-and-return-with-required-field", @@ -235,7 +235,7 @@ } }, { - "example_identifier": "67d98fff", + "example_identifier": "d9405baf", "id": { "method": "POST", "path": "/object/get-and-return-with-map-of-map", @@ -248,7 +248,7 @@ } }, { - "example_identifier": "26d2c7ff", + "example_identifier": "8e720a2f", "id": { "method": "POST", "path": "/object/get-and-return-nested-with-optional-field", @@ -261,7 +261,7 @@ } }, { - "example_identifier": "7dd80f99", + "example_identifier": "5f48279", "id": { "method": "POST", "path": "/object/get-and-return-nested-with-required-field/{string}", @@ -274,7 +274,7 @@ } }, { - "example_identifier": "549e214e", + "example_identifier": "4b2dd0be", "id": { "method": "POST", "path": "/object/get-and-return-nested-with-required-field-list", @@ -300,7 +300,7 @@ } }, { - "example_identifier": "75f55e6b", + "example_identifier": "3f685fb", "id": { "method": "POST", "path": "/object/get-and-return-with-documented-unknown-type", @@ -313,7 +313,7 @@ } }, { - "example_identifier": "47385897", + "example_identifier": "a4a25e67", "id": { "method": "POST", "path": "/object/get-and-return-map-of-documented-unknown-type", @@ -365,7 +365,7 @@ } }, { - "example_identifier": "82d9b4d0", + "example_identifier": "b71a59a0", "id": { "method": "GET", "path": "/pagination", @@ -378,7 +378,7 @@ } }, { - "example_identifier": "59976c27", + "example_identifier": "5cd55167", "id": { "method": "GET", "path": "/params/path/{param}", @@ -391,7 +391,7 @@ } }, { - "example_identifier": "59976c27", + "example_identifier": "5cd55167", "id": { "method": "GET", "path": "/params/path/{param}", @@ -404,7 +404,7 @@ } }, { - "example_identifier": "cbf60b2e", + "example_identifier": "e99efb2e", "id": { "method": "GET", "path": "/params", @@ -417,7 +417,7 @@ } }, { - "example_identifier": "a497824e", + "example_identifier": "2a102e", "id": { "method": "GET", "path": "/params", @@ -430,7 +430,7 @@ } }, { - "example_identifier": "7ac7b87", + "example_identifier": "1394f747", "id": { "method": "GET", "path": "/params/path-query/{param}", @@ -443,7 +443,7 @@ } }, { - "example_identifier": "7ac7b87", + "example_identifier": "1394f747", "id": { "method": "GET", "path": "/params/path-query/{param}", @@ -456,7 +456,7 @@ } }, { - "example_identifier": "eb5b1e57", + "example_identifier": "6e3468b7", "id": { "method": "PUT", "path": "/params/path/{param}", @@ -469,7 +469,7 @@ } }, { - "example_identifier": "eb5b1e57", + "example_identifier": "6e3468b7", "id": { "method": "PUT", "path": "/params/path/{param}", @@ -495,7 +495,7 @@ } }, { - "example_identifier": "89cf23de", + "example_identifier": "b08339be", "id": { "method": "GET", "path": "/params/path-bool/{param}", @@ -508,7 +508,7 @@ } }, { - "example_identifier": "59976c27", + "example_identifier": "5cd55167", "id": { "method": "GET", "path": "/params/path/{param}", @@ -521,7 +521,7 @@ } }, { - "example_identifier": "d8492cb1", + "example_identifier": "f9cf49e1", "id": { "method": "POST", "path": "/primitive/string", @@ -534,7 +534,7 @@ } }, { - "example_identifier": "44f8b59b", + "example_identifier": "38740cab", "id": { "method": "POST", "path": "/primitive/integer", @@ -547,7 +547,7 @@ } }, { - "example_identifier": "6757feff", + "example_identifier": "6371c64f", "id": { "method": "POST", "path": "/primitive/long", @@ -560,7 +560,7 @@ } }, { - "example_identifier": "9c532ef", + "example_identifier": "a311febf", "id": { "method": "POST", "path": "/primitive/double", @@ -573,7 +573,7 @@ } }, { - "example_identifier": "653ac8bb", + "example_identifier": "f353028b", "id": { "method": "POST", "path": "/primitive/boolean", @@ -586,7 +586,7 @@ } }, { - "example_identifier": "c4328e7f", + "example_identifier": "a3160a8f", "id": { "method": "POST", "path": "/primitive/datetime", @@ -599,7 +599,7 @@ } }, { - "example_identifier": "aa994713", + "example_identifier": "4d07d0e3", "id": { "method": "POST", "path": "/primitive/date", @@ -612,7 +612,7 @@ } }, { - "example_identifier": "c723c473", + "example_identifier": "59b6e903", "id": { "method": "POST", "path": "/primitive/uuid", @@ -625,7 +625,7 @@ } }, { - "example_identifier": "51535e73", + "example_identifier": "e7874543", "id": { "method": "POST", "path": "/primitive/base64", @@ -638,7 +638,7 @@ } }, { - "example_identifier": "e9d2ae72", + "example_identifier": "efa1ea32", "id": { "method": "PUT", "path": "/{id}", @@ -651,7 +651,7 @@ } }, { - "example_identifier": "2fff63df", + "example_identifier": "9da5060f", "id": { "method": "POST", "path": "/union", @@ -664,7 +664,7 @@ } }, { - "example_identifier": "34d92e75", + "example_identifier": "6f306605", "id": { "method": "GET", "path": "/urls/MixedCase", @@ -677,7 +677,7 @@ } }, { - "example_identifier": "34d92e75", + "example_identifier": "6f306605", "id": { "method": "GET", "path": "/urls/no-ending-slash", @@ -690,7 +690,7 @@ } }, { - "example_identifier": "34d92e75", + "example_identifier": "6f306605", "id": { "method": "GET", "path": "/urls/with-ending-slash/", @@ -703,7 +703,7 @@ } }, { - "example_identifier": "34d92e75", + "example_identifier": "6f306605", "id": { "method": "GET", "path": "/urls/with_underscores", @@ -716,7 +716,7 @@ } }, { - "example_identifier": "35a47ee2", + "example_identifier": "af506932", "id": { "method": "POST", "path": "/req-bodies/object", @@ -729,7 +729,7 @@ } }, { - "example_identifier": "78731579", + "example_identifier": "44880629", "id": { "method": "POST", "path": "/req-bodies/array-body-with-headers", @@ -742,7 +742,7 @@ } }, { - "example_identifier": "91843eb7", + "example_identifier": "1c752737", "id": { "method": "POST", "path": "/no-auth", @@ -755,7 +755,7 @@ } }, { - "example_identifier": "3d2c2d55", + "example_identifier": "33f25755", "id": { "method": "GET", "path": "/no-req-body", @@ -768,7 +768,7 @@ } }, { - "example_identifier": "34d92e75", + "example_identifier": "6f306605", "id": { "method": "POST", "path": "/no-req-body", @@ -781,7 +781,7 @@ } }, { - "example_identifier": "9d22bd38", + "example_identifier": "2f09fef8", "id": { "method": "POST", "path": "/test-headers/custom-header", diff --git a/seed/java-sdk/exhaustive/publish-to/snippet.json b/seed/java-sdk/exhaustive/publish-to/snippet.json index 03ad40fd9f96..f9e942e37645 100644 --- a/seed/java-sdk/exhaustive/publish-to/snippet.json +++ b/seed/java-sdk/exhaustive/publish-to/snippet.json @@ -1,7 +1,7 @@ { "endpoints": [ { - "example_identifier": "b07bc8d3", + "example_identifier": "d027c523", "id": { "method": "POST", "path": "/container/list-of-primitives", @@ -14,7 +14,7 @@ } }, { - "example_identifier": "fdac9ebb", + "example_identifier": "ebfd118b", "id": { "method": "POST", "path": "/container/list-of-objects", @@ -27,7 +27,7 @@ } }, { - "example_identifier": "638c8d5f", + "example_identifier": "2b21bccf", "id": { "method": "POST", "path": "/container/set-of-primitives", @@ -40,7 +40,7 @@ } }, { - "example_identifier": "5d48d875", + "example_identifier": "8fba1825", "id": { "method": "POST", "path": "/container/set-of-objects", @@ -53,7 +53,7 @@ } }, { - "example_identifier": "baa0e67f", + "example_identifier": "ce9e7f2f", "id": { "method": "POST", "path": "/container/map-prim-to-prim", @@ -66,7 +66,7 @@ } }, { - "example_identifier": "276bf059", + "example_identifier": "cc36e609", "id": { "method": "POST", "path": "/container/map-prim-to-object", @@ -79,7 +79,7 @@ } }, { - "example_identifier": "4c633c5f", + "example_identifier": "d57d494f", "id": { "method": "POST", "path": "/container/map-prim-to-union", @@ -92,7 +92,7 @@ } }, { - "example_identifier": "e3741b1b", + "example_identifier": "5cea1cb", "id": { "method": "POST", "path": "/container/opt-objects", @@ -105,7 +105,7 @@ } }, { - "example_identifier": "6d2eae78", + "example_identifier": "2781ed28", "id": { "method": "POST", "path": "/foo/bar", @@ -118,7 +118,7 @@ } }, { - "example_identifier": "6d2eae78", + "example_identifier": "2781ed28", "id": { "method": "POST", "path": "/foo/baz", @@ -131,7 +131,7 @@ } }, { - "example_identifier": "950e289b", + "example_identifier": "5565160b", "id": { "method": "POST", "path": "/enum", @@ -144,7 +144,7 @@ } }, { - "example_identifier": "cbd386bb", + "example_identifier": "afaed85b", "id": { "method": "GET", "path": "/http-methods/{id}", @@ -157,7 +157,7 @@ } }, { - "example_identifier": "d5925de4", + "example_identifier": "1ee0ae54", "id": { "method": "POST", "path": "/http-methods", @@ -170,7 +170,7 @@ } }, { - "example_identifier": "17411d4a", + "example_identifier": "6b525e4a", "id": { "method": "PUT", "path": "/http-methods/{id}", @@ -183,7 +183,7 @@ } }, { - "example_identifier": "5853ee71", + "example_identifier": "342e2a31", "id": { "method": "PATCH", "path": "/http-methods/{id}", @@ -196,7 +196,7 @@ } }, { - "example_identifier": "75d0bb44", + "example_identifier": "1404ab24", "id": { "method": "DELETE", "path": "/http-methods/{id}", @@ -209,7 +209,7 @@ } }, { - "example_identifier": "114cc607", + "example_identifier": "d6beb177", "id": { "method": "POST", "path": "/object/get-and-return-with-optional-field", @@ -222,7 +222,7 @@ } }, { - "example_identifier": "f16c47b", + "example_identifier": "151df06b", "id": { "method": "POST", "path": "/object/get-and-return-with-required-field", @@ -235,7 +235,7 @@ } }, { - "example_identifier": "67d98fff", + "example_identifier": "d9405baf", "id": { "method": "POST", "path": "/object/get-and-return-with-map-of-map", @@ -248,7 +248,7 @@ } }, { - "example_identifier": "26d2c7ff", + "example_identifier": "8e720a2f", "id": { "method": "POST", "path": "/object/get-and-return-nested-with-optional-field", @@ -261,7 +261,7 @@ } }, { - "example_identifier": "7dd80f99", + "example_identifier": "5f48279", "id": { "method": "POST", "path": "/object/get-and-return-nested-with-required-field/{string}", @@ -274,7 +274,7 @@ } }, { - "example_identifier": "549e214e", + "example_identifier": "4b2dd0be", "id": { "method": "POST", "path": "/object/get-and-return-nested-with-required-field-list", @@ -300,7 +300,7 @@ } }, { - "example_identifier": "75f55e6b", + "example_identifier": "3f685fb", "id": { "method": "POST", "path": "/object/get-and-return-with-documented-unknown-type", @@ -313,7 +313,7 @@ } }, { - "example_identifier": "47385897", + "example_identifier": "a4a25e67", "id": { "method": "POST", "path": "/object/get-and-return-map-of-documented-unknown-type", @@ -365,7 +365,7 @@ } }, { - "example_identifier": "82d9b4d0", + "example_identifier": "b71a59a0", "id": { "method": "GET", "path": "/pagination", @@ -378,7 +378,7 @@ } }, { - "example_identifier": "59976c27", + "example_identifier": "5cd55167", "id": { "method": "GET", "path": "/params/path/{param}", @@ -391,7 +391,7 @@ } }, { - "example_identifier": "59976c27", + "example_identifier": "5cd55167", "id": { "method": "GET", "path": "/params/path/{param}", @@ -404,7 +404,7 @@ } }, { - "example_identifier": "cbf60b2e", + "example_identifier": "e99efb2e", "id": { "method": "GET", "path": "/params", @@ -417,7 +417,7 @@ } }, { - "example_identifier": "a497824e", + "example_identifier": "2a102e", "id": { "method": "GET", "path": "/params", @@ -430,7 +430,7 @@ } }, { - "example_identifier": "7ac7b87", + "example_identifier": "1394f747", "id": { "method": "GET", "path": "/params/path-query/{param}", @@ -443,7 +443,7 @@ } }, { - "example_identifier": "7ac7b87", + "example_identifier": "1394f747", "id": { "method": "GET", "path": "/params/path-query/{param}", @@ -456,7 +456,7 @@ } }, { - "example_identifier": "eb5b1e57", + "example_identifier": "6e3468b7", "id": { "method": "PUT", "path": "/params/path/{param}", @@ -469,7 +469,7 @@ } }, { - "example_identifier": "eb5b1e57", + "example_identifier": "6e3468b7", "id": { "method": "PUT", "path": "/params/path/{param}", @@ -495,7 +495,7 @@ } }, { - "example_identifier": "89cf23de", + "example_identifier": "b08339be", "id": { "method": "GET", "path": "/params/path-bool/{param}", @@ -508,7 +508,7 @@ } }, { - "example_identifier": "59976c27", + "example_identifier": "5cd55167", "id": { "method": "GET", "path": "/params/path/{param}", @@ -521,7 +521,7 @@ } }, { - "example_identifier": "d8492cb1", + "example_identifier": "f9cf49e1", "id": { "method": "POST", "path": "/primitive/string", @@ -534,7 +534,7 @@ } }, { - "example_identifier": "44f8b59b", + "example_identifier": "38740cab", "id": { "method": "POST", "path": "/primitive/integer", @@ -547,7 +547,7 @@ } }, { - "example_identifier": "6757feff", + "example_identifier": "6371c64f", "id": { "method": "POST", "path": "/primitive/long", @@ -560,7 +560,7 @@ } }, { - "example_identifier": "9c532ef", + "example_identifier": "a311febf", "id": { "method": "POST", "path": "/primitive/double", @@ -573,7 +573,7 @@ } }, { - "example_identifier": "653ac8bb", + "example_identifier": "f353028b", "id": { "method": "POST", "path": "/primitive/boolean", @@ -586,7 +586,7 @@ } }, { - "example_identifier": "c4328e7f", + "example_identifier": "a3160a8f", "id": { "method": "POST", "path": "/primitive/datetime", @@ -599,7 +599,7 @@ } }, { - "example_identifier": "aa994713", + "example_identifier": "4d07d0e3", "id": { "method": "POST", "path": "/primitive/date", @@ -612,7 +612,7 @@ } }, { - "example_identifier": "c723c473", + "example_identifier": "59b6e903", "id": { "method": "POST", "path": "/primitive/uuid", @@ -625,7 +625,7 @@ } }, { - "example_identifier": "51535e73", + "example_identifier": "e7874543", "id": { "method": "POST", "path": "/primitive/base64", @@ -638,7 +638,7 @@ } }, { - "example_identifier": "e9d2ae72", + "example_identifier": "efa1ea32", "id": { "method": "PUT", "path": "/{id}", @@ -651,7 +651,7 @@ } }, { - "example_identifier": "2fff63df", + "example_identifier": "9da5060f", "id": { "method": "POST", "path": "/union", @@ -664,7 +664,7 @@ } }, { - "example_identifier": "34d92e75", + "example_identifier": "6f306605", "id": { "method": "GET", "path": "/urls/MixedCase", @@ -677,7 +677,7 @@ } }, { - "example_identifier": "34d92e75", + "example_identifier": "6f306605", "id": { "method": "GET", "path": "/urls/no-ending-slash", @@ -690,7 +690,7 @@ } }, { - "example_identifier": "34d92e75", + "example_identifier": "6f306605", "id": { "method": "GET", "path": "/urls/with-ending-slash/", @@ -703,7 +703,7 @@ } }, { - "example_identifier": "34d92e75", + "example_identifier": "6f306605", "id": { "method": "GET", "path": "/urls/with_underscores", @@ -716,7 +716,7 @@ } }, { - "example_identifier": "35a47ee2", + "example_identifier": "af506932", "id": { "method": "POST", "path": "/req-bodies/object", @@ -729,7 +729,7 @@ } }, { - "example_identifier": "78731579", + "example_identifier": "44880629", "id": { "method": "POST", "path": "/req-bodies/array-body-with-headers", @@ -742,7 +742,7 @@ } }, { - "example_identifier": "91843eb7", + "example_identifier": "1c752737", "id": { "method": "POST", "path": "/no-auth", @@ -755,7 +755,7 @@ } }, { - "example_identifier": "3d2c2d55", + "example_identifier": "33f25755", "id": { "method": "GET", "path": "/no-req-body", @@ -768,7 +768,7 @@ } }, { - "example_identifier": "34d92e75", + "example_identifier": "6f306605", "id": { "method": "POST", "path": "/no-req-body", @@ -781,7 +781,7 @@ } }, { - "example_identifier": "9d22bd38", + "example_identifier": "2f09fef8", "id": { "method": "POST", "path": "/test-headers/custom-header", diff --git a/seed/java-sdk/exhaustive/signed_publish/snippet.json b/seed/java-sdk/exhaustive/signed_publish/snippet.json index 03ad40fd9f96..f9e942e37645 100644 --- a/seed/java-sdk/exhaustive/signed_publish/snippet.json +++ b/seed/java-sdk/exhaustive/signed_publish/snippet.json @@ -1,7 +1,7 @@ { "endpoints": [ { - "example_identifier": "b07bc8d3", + "example_identifier": "d027c523", "id": { "method": "POST", "path": "/container/list-of-primitives", @@ -14,7 +14,7 @@ } }, { - "example_identifier": "fdac9ebb", + "example_identifier": "ebfd118b", "id": { "method": "POST", "path": "/container/list-of-objects", @@ -27,7 +27,7 @@ } }, { - "example_identifier": "638c8d5f", + "example_identifier": "2b21bccf", "id": { "method": "POST", "path": "/container/set-of-primitives", @@ -40,7 +40,7 @@ } }, { - "example_identifier": "5d48d875", + "example_identifier": "8fba1825", "id": { "method": "POST", "path": "/container/set-of-objects", @@ -53,7 +53,7 @@ } }, { - "example_identifier": "baa0e67f", + "example_identifier": "ce9e7f2f", "id": { "method": "POST", "path": "/container/map-prim-to-prim", @@ -66,7 +66,7 @@ } }, { - "example_identifier": "276bf059", + "example_identifier": "cc36e609", "id": { "method": "POST", "path": "/container/map-prim-to-object", @@ -79,7 +79,7 @@ } }, { - "example_identifier": "4c633c5f", + "example_identifier": "d57d494f", "id": { "method": "POST", "path": "/container/map-prim-to-union", @@ -92,7 +92,7 @@ } }, { - "example_identifier": "e3741b1b", + "example_identifier": "5cea1cb", "id": { "method": "POST", "path": "/container/opt-objects", @@ -105,7 +105,7 @@ } }, { - "example_identifier": "6d2eae78", + "example_identifier": "2781ed28", "id": { "method": "POST", "path": "/foo/bar", @@ -118,7 +118,7 @@ } }, { - "example_identifier": "6d2eae78", + "example_identifier": "2781ed28", "id": { "method": "POST", "path": "/foo/baz", @@ -131,7 +131,7 @@ } }, { - "example_identifier": "950e289b", + "example_identifier": "5565160b", "id": { "method": "POST", "path": "/enum", @@ -144,7 +144,7 @@ } }, { - "example_identifier": "cbd386bb", + "example_identifier": "afaed85b", "id": { "method": "GET", "path": "/http-methods/{id}", @@ -157,7 +157,7 @@ } }, { - "example_identifier": "d5925de4", + "example_identifier": "1ee0ae54", "id": { "method": "POST", "path": "/http-methods", @@ -170,7 +170,7 @@ } }, { - "example_identifier": "17411d4a", + "example_identifier": "6b525e4a", "id": { "method": "PUT", "path": "/http-methods/{id}", @@ -183,7 +183,7 @@ } }, { - "example_identifier": "5853ee71", + "example_identifier": "342e2a31", "id": { "method": "PATCH", "path": "/http-methods/{id}", @@ -196,7 +196,7 @@ } }, { - "example_identifier": "75d0bb44", + "example_identifier": "1404ab24", "id": { "method": "DELETE", "path": "/http-methods/{id}", @@ -209,7 +209,7 @@ } }, { - "example_identifier": "114cc607", + "example_identifier": "d6beb177", "id": { "method": "POST", "path": "/object/get-and-return-with-optional-field", @@ -222,7 +222,7 @@ } }, { - "example_identifier": "f16c47b", + "example_identifier": "151df06b", "id": { "method": "POST", "path": "/object/get-and-return-with-required-field", @@ -235,7 +235,7 @@ } }, { - "example_identifier": "67d98fff", + "example_identifier": "d9405baf", "id": { "method": "POST", "path": "/object/get-and-return-with-map-of-map", @@ -248,7 +248,7 @@ } }, { - "example_identifier": "26d2c7ff", + "example_identifier": "8e720a2f", "id": { "method": "POST", "path": "/object/get-and-return-nested-with-optional-field", @@ -261,7 +261,7 @@ } }, { - "example_identifier": "7dd80f99", + "example_identifier": "5f48279", "id": { "method": "POST", "path": "/object/get-and-return-nested-with-required-field/{string}", @@ -274,7 +274,7 @@ } }, { - "example_identifier": "549e214e", + "example_identifier": "4b2dd0be", "id": { "method": "POST", "path": "/object/get-and-return-nested-with-required-field-list", @@ -300,7 +300,7 @@ } }, { - "example_identifier": "75f55e6b", + "example_identifier": "3f685fb", "id": { "method": "POST", "path": "/object/get-and-return-with-documented-unknown-type", @@ -313,7 +313,7 @@ } }, { - "example_identifier": "47385897", + "example_identifier": "a4a25e67", "id": { "method": "POST", "path": "/object/get-and-return-map-of-documented-unknown-type", @@ -365,7 +365,7 @@ } }, { - "example_identifier": "82d9b4d0", + "example_identifier": "b71a59a0", "id": { "method": "GET", "path": "/pagination", @@ -378,7 +378,7 @@ } }, { - "example_identifier": "59976c27", + "example_identifier": "5cd55167", "id": { "method": "GET", "path": "/params/path/{param}", @@ -391,7 +391,7 @@ } }, { - "example_identifier": "59976c27", + "example_identifier": "5cd55167", "id": { "method": "GET", "path": "/params/path/{param}", @@ -404,7 +404,7 @@ } }, { - "example_identifier": "cbf60b2e", + "example_identifier": "e99efb2e", "id": { "method": "GET", "path": "/params", @@ -417,7 +417,7 @@ } }, { - "example_identifier": "a497824e", + "example_identifier": "2a102e", "id": { "method": "GET", "path": "/params", @@ -430,7 +430,7 @@ } }, { - "example_identifier": "7ac7b87", + "example_identifier": "1394f747", "id": { "method": "GET", "path": "/params/path-query/{param}", @@ -443,7 +443,7 @@ } }, { - "example_identifier": "7ac7b87", + "example_identifier": "1394f747", "id": { "method": "GET", "path": "/params/path-query/{param}", @@ -456,7 +456,7 @@ } }, { - "example_identifier": "eb5b1e57", + "example_identifier": "6e3468b7", "id": { "method": "PUT", "path": "/params/path/{param}", @@ -469,7 +469,7 @@ } }, { - "example_identifier": "eb5b1e57", + "example_identifier": "6e3468b7", "id": { "method": "PUT", "path": "/params/path/{param}", @@ -495,7 +495,7 @@ } }, { - "example_identifier": "89cf23de", + "example_identifier": "b08339be", "id": { "method": "GET", "path": "/params/path-bool/{param}", @@ -508,7 +508,7 @@ } }, { - "example_identifier": "59976c27", + "example_identifier": "5cd55167", "id": { "method": "GET", "path": "/params/path/{param}", @@ -521,7 +521,7 @@ } }, { - "example_identifier": "d8492cb1", + "example_identifier": "f9cf49e1", "id": { "method": "POST", "path": "/primitive/string", @@ -534,7 +534,7 @@ } }, { - "example_identifier": "44f8b59b", + "example_identifier": "38740cab", "id": { "method": "POST", "path": "/primitive/integer", @@ -547,7 +547,7 @@ } }, { - "example_identifier": "6757feff", + "example_identifier": "6371c64f", "id": { "method": "POST", "path": "/primitive/long", @@ -560,7 +560,7 @@ } }, { - "example_identifier": "9c532ef", + "example_identifier": "a311febf", "id": { "method": "POST", "path": "/primitive/double", @@ -573,7 +573,7 @@ } }, { - "example_identifier": "653ac8bb", + "example_identifier": "f353028b", "id": { "method": "POST", "path": "/primitive/boolean", @@ -586,7 +586,7 @@ } }, { - "example_identifier": "c4328e7f", + "example_identifier": "a3160a8f", "id": { "method": "POST", "path": "/primitive/datetime", @@ -599,7 +599,7 @@ } }, { - "example_identifier": "aa994713", + "example_identifier": "4d07d0e3", "id": { "method": "POST", "path": "/primitive/date", @@ -612,7 +612,7 @@ } }, { - "example_identifier": "c723c473", + "example_identifier": "59b6e903", "id": { "method": "POST", "path": "/primitive/uuid", @@ -625,7 +625,7 @@ } }, { - "example_identifier": "51535e73", + "example_identifier": "e7874543", "id": { "method": "POST", "path": "/primitive/base64", @@ -638,7 +638,7 @@ } }, { - "example_identifier": "e9d2ae72", + "example_identifier": "efa1ea32", "id": { "method": "PUT", "path": "/{id}", @@ -651,7 +651,7 @@ } }, { - "example_identifier": "2fff63df", + "example_identifier": "9da5060f", "id": { "method": "POST", "path": "/union", @@ -664,7 +664,7 @@ } }, { - "example_identifier": "34d92e75", + "example_identifier": "6f306605", "id": { "method": "GET", "path": "/urls/MixedCase", @@ -677,7 +677,7 @@ } }, { - "example_identifier": "34d92e75", + "example_identifier": "6f306605", "id": { "method": "GET", "path": "/urls/no-ending-slash", @@ -690,7 +690,7 @@ } }, { - "example_identifier": "34d92e75", + "example_identifier": "6f306605", "id": { "method": "GET", "path": "/urls/with-ending-slash/", @@ -703,7 +703,7 @@ } }, { - "example_identifier": "34d92e75", + "example_identifier": "6f306605", "id": { "method": "GET", "path": "/urls/with_underscores", @@ -716,7 +716,7 @@ } }, { - "example_identifier": "35a47ee2", + "example_identifier": "af506932", "id": { "method": "POST", "path": "/req-bodies/object", @@ -729,7 +729,7 @@ } }, { - "example_identifier": "78731579", + "example_identifier": "44880629", "id": { "method": "POST", "path": "/req-bodies/array-body-with-headers", @@ -742,7 +742,7 @@ } }, { - "example_identifier": "91843eb7", + "example_identifier": "1c752737", "id": { "method": "POST", "path": "/no-auth", @@ -755,7 +755,7 @@ } }, { - "example_identifier": "3d2c2d55", + "example_identifier": "33f25755", "id": { "method": "GET", "path": "/no-req-body", @@ -768,7 +768,7 @@ } }, { - "example_identifier": "34d92e75", + "example_identifier": "6f306605", "id": { "method": "POST", "path": "/no-req-body", @@ -781,7 +781,7 @@ } }, { - "example_identifier": "9d22bd38", + "example_identifier": "2f09fef8", "id": { "method": "POST", "path": "/test-headers/custom-header", diff --git a/seed/java-sdk/extends/snippet.json b/seed/java-sdk/extends/snippet.json index 1731779a529b..bcc9c1aa5724 100644 --- a/seed/java-sdk/extends/snippet.json +++ b/seed/java-sdk/extends/snippet.json @@ -1,7 +1,7 @@ { "endpoints": [ { - "example_identifier": "c1dcb943", + "example_identifier": "98071ca3", "id": { "method": "POST", "path": "/extends/extended-inline-request-body", diff --git a/seed/java-sdk/file-download/snippet.json b/seed/java-sdk/file-download/snippet.json index 9283a7c358bf..15cbd6c8976b 100644 --- a/seed/java-sdk/file-download/snippet.json +++ b/seed/java-sdk/file-download/snippet.json @@ -1,7 +1,7 @@ { "endpoints": [ { - "example_identifier": "82444d62", + "example_identifier": "7cf5c162", "id": { "method": "POST", "path": "/snippet", diff --git a/seed/java-sdk/file-upload/inline-file-properties/README.md b/seed/java-sdk/file-upload/inline-file-properties/README.md index a53b8304196c..6acbbaa0dced 100644 --- a/seed/java-sdk/file-upload/inline-file-properties/README.md +++ b/seed/java-sdk/file-upload/inline-file-properties/README.md @@ -57,6 +57,7 @@ package com.example.usage; import com.seed.fileUpload.SeedFileUploadClient; import com.seed.fileUpload.resources.service.requests.JustFileRequest; +import java.io.File; public class Example { public static void main(String[] args) { @@ -67,6 +68,9 @@ public class Example { client.service().justFile( JustFileRequest .builder() + .file( + new File("path/to/file") + ) .build() ); } diff --git a/seed/java-sdk/file-upload/inline-file-properties/reference.md b/seed/java-sdk/file-upload/inline-file-properties/reference.md index c7c22da85b00..5b1d1fb69cba 100644 --- a/seed/java-sdk/file-upload/inline-file-properties/reference.md +++ b/seed/java-sdk/file-upload/inline-file-properties/reference.md @@ -16,6 +16,9 @@ client.service().justFile( JustFileRequest .builder() + .file( + new File("path/to/file") + ) .build() ); ``` @@ -45,6 +48,9 @@ client.service().justFile( client.service().optionalArgs( OptionalArgsRequest .builder() + .imageFile( + new File("path/to/file") + ) .build() ); ``` @@ -80,6 +86,9 @@ client.service().withRefBody( .foo("bar") .build() ) + .imageFile( + new File("path/to/file") + ) .build() ); ``` diff --git a/seed/java-sdk/file-upload/inline-file-properties/snippet.json b/seed/java-sdk/file-upload/inline-file-properties/snippet.json index b2b55bdcb1af..6e56d8aa2e5b 100644 --- a/seed/java-sdk/file-upload/inline-file-properties/snippet.json +++ b/seed/java-sdk/file-upload/inline-file-properties/snippet.json @@ -9,8 +9,8 @@ }, "snippet": { "type": "java", - "sync_client": "package com.example.usage;\n\nimport com.seed.fileUpload.SeedFileUploadClient;\nimport com.seed.fileUpload.resources.service.requests.JustFileRequest;\n\npublic class Example {\n public static void main(String[] args) {\n SeedFileUploadClient client = SeedFileUploadClient\n .builder()\n .build();\n\n client.service().justFile(\n JustFileRequest\n .builder()\n .build()\n );\n }\n}\n", - "async_client": "package com.example.usage;\n\nimport com.seed.fileUpload.SeedFileUploadClient;\nimport com.seed.fileUpload.resources.service.requests.JustFileRequest;\n\npublic class Example {\n public static void main(String[] args) {\n SeedFileUploadClient client = SeedFileUploadClient\n .builder()\n .build();\n\n client.service().justFile(\n JustFileRequest\n .builder()\n .build()\n );\n }\n}\n" + "sync_client": "package com.example.usage;\n\nimport com.seed.fileUpload.SeedFileUploadClient;\nimport com.seed.fileUpload.resources.service.requests.JustFileRequest;\nimport java.io.File;\n\npublic class Example {\n public static void main(String[] args) {\n SeedFileUploadClient client = SeedFileUploadClient\n .builder()\n .build();\n\n client.service().justFile(\n JustFileRequest\n .builder()\n .file(\n new File(\"path/to/file\")\n )\n .build()\n );\n }\n}\n", + "async_client": "package com.example.usage;\n\nimport com.seed.fileUpload.SeedFileUploadClient;\nimport com.seed.fileUpload.resources.service.requests.JustFileRequest;\nimport java.io.File;\n\npublic class Example {\n public static void main(String[] args) {\n SeedFileUploadClient client = SeedFileUploadClient\n .builder()\n .build();\n\n client.service().justFile(\n JustFileRequest\n .builder()\n .file(\n new File(\"path/to/file\")\n )\n .build()\n );\n }\n}\n" } }, { @@ -22,8 +22,8 @@ }, "snippet": { "type": "java", - "sync_client": "package com.example.usage;\n\nimport com.seed.fileUpload.SeedFileUploadClient;\nimport com.seed.fileUpload.resources.service.requests.OptionalArgsRequest;\n\npublic class Example {\n public static void main(String[] args) {\n SeedFileUploadClient client = SeedFileUploadClient\n .builder()\n .build();\n\n client.service().optionalArgs(\n OptionalArgsRequest\n .builder()\n .build()\n );\n }\n}\n", - "async_client": "package com.example.usage;\n\nimport com.seed.fileUpload.SeedFileUploadClient;\nimport com.seed.fileUpload.resources.service.requests.OptionalArgsRequest;\n\npublic class Example {\n public static void main(String[] args) {\n SeedFileUploadClient client = SeedFileUploadClient\n .builder()\n .build();\n\n client.service().optionalArgs(\n OptionalArgsRequest\n .builder()\n .build()\n );\n }\n}\n" + "sync_client": "package com.example.usage;\n\nimport com.seed.fileUpload.SeedFileUploadClient;\nimport com.seed.fileUpload.resources.service.requests.OptionalArgsRequest;\nimport java.io.File;\n\npublic class Example {\n public static void main(String[] args) {\n SeedFileUploadClient client = SeedFileUploadClient\n .builder()\n .build();\n\n client.service().optionalArgs(\n OptionalArgsRequest\n .builder()\n .imageFile(\n new File(\"path/to/file\")\n )\n .build()\n );\n }\n}\n", + "async_client": "package com.example.usage;\n\nimport com.seed.fileUpload.SeedFileUploadClient;\nimport com.seed.fileUpload.resources.service.requests.OptionalArgsRequest;\nimport java.io.File;\n\npublic class Example {\n public static void main(String[] args) {\n SeedFileUploadClient client = SeedFileUploadClient\n .builder()\n .build();\n\n client.service().optionalArgs(\n OptionalArgsRequest\n .builder()\n .imageFile(\n new File(\"path/to/file\")\n )\n .build()\n );\n }\n}\n" } }, { @@ -35,12 +35,12 @@ }, "snippet": { "type": "java", - "sync_client": "package com.example.usage;\n\nimport com.seed.fileUpload.SeedFileUploadClient;\nimport com.seed.fileUpload.resources.service.requests.WithRefBodyRequest;\nimport com.seed.fileUpload.resources.service.types.MyObject;\n\npublic class Example {\n public static void main(String[] args) {\n SeedFileUploadClient client = SeedFileUploadClient\n .builder()\n .build();\n\n client.service().withRefBody(\n WithRefBodyRequest\n .builder()\n .request(\n MyObject\n .builder()\n .foo(\"bar\")\n .build()\n )\n .build()\n );\n }\n}\n", - "async_client": "package com.example.usage;\n\nimport com.seed.fileUpload.SeedFileUploadClient;\nimport com.seed.fileUpload.resources.service.requests.WithRefBodyRequest;\nimport com.seed.fileUpload.resources.service.types.MyObject;\n\npublic class Example {\n public static void main(String[] args) {\n SeedFileUploadClient client = SeedFileUploadClient\n .builder()\n .build();\n\n client.service().withRefBody(\n WithRefBodyRequest\n .builder()\n .request(\n MyObject\n .builder()\n .foo(\"bar\")\n .build()\n )\n .build()\n );\n }\n}\n" + "sync_client": "package com.example.usage;\n\nimport com.seed.fileUpload.SeedFileUploadClient;\nimport com.seed.fileUpload.resources.service.requests.WithRefBodyRequest;\nimport com.seed.fileUpload.resources.service.types.MyObject;\nimport java.io.File;\n\npublic class Example {\n public static void main(String[] args) {\n SeedFileUploadClient client = SeedFileUploadClient\n .builder()\n .build();\n\n client.service().withRefBody(\n WithRefBodyRequest\n .builder()\n .request(\n MyObject\n .builder()\n .foo(\"bar\")\n .build()\n )\n .imageFile(\n new File(\"path/to/file\")\n )\n .build()\n );\n }\n}\n", + "async_client": "package com.example.usage;\n\nimport com.seed.fileUpload.SeedFileUploadClient;\nimport com.seed.fileUpload.resources.service.requests.WithRefBodyRequest;\nimport com.seed.fileUpload.resources.service.types.MyObject;\nimport java.io.File;\n\npublic class Example {\n public static void main(String[] args) {\n SeedFileUploadClient client = SeedFileUploadClient\n .builder()\n .build();\n\n client.service().withRefBody(\n WithRefBodyRequest\n .builder()\n .request(\n MyObject\n .builder()\n .foo(\"bar\")\n .build()\n )\n .imageFile(\n new File(\"path/to/file\")\n )\n .build()\n );\n }\n}\n" } }, { - "example_identifier": "82444d62", + "example_identifier": "7cf5c162", "id": { "method": "POST", "path": "/snippet", diff --git a/seed/java-sdk/file-upload/inline-file-properties/src/main/java/com/snippets/Example0.java b/seed/java-sdk/file-upload/inline-file-properties/src/main/java/com/snippets/Example0.java index 229f07d3c7a4..a9d7f53b9053 100644 --- a/seed/java-sdk/file-upload/inline-file-properties/src/main/java/com/snippets/Example0.java +++ b/seed/java-sdk/file-upload/inline-file-properties/src/main/java/com/snippets/Example0.java @@ -2,12 +2,15 @@ import com.seed.fileUpload.SeedFileUploadClient; import com.seed.fileUpload.resources.service.requests.JustFileRequest; +import java.io.File; public class Example0 { public static void main(String[] args) { SeedFileUploadClient client = SeedFileUploadClient.builder().url("https://api.fern.com").build(); - client.service().justFile(JustFileRequest.builder().build()); + client.service() + .justFile( + JustFileRequest.builder().file(new File("path/to/file")).build()); } } diff --git a/seed/java-sdk/file-upload/inline-file-properties/src/main/java/com/snippets/Example1.java b/seed/java-sdk/file-upload/inline-file-properties/src/main/java/com/snippets/Example1.java index 2cbb25a17bb3..1fc422862a2a 100644 --- a/seed/java-sdk/file-upload/inline-file-properties/src/main/java/com/snippets/Example1.java +++ b/seed/java-sdk/file-upload/inline-file-properties/src/main/java/com/snippets/Example1.java @@ -2,12 +2,16 @@ import com.seed.fileUpload.SeedFileUploadClient; import com.seed.fileUpload.resources.service.requests.OptionalArgsRequest; +import java.io.File; public class Example1 { public static void main(String[] args) { SeedFileUploadClient client = SeedFileUploadClient.builder().url("https://api.fern.com").build(); - client.service().optionalArgs(OptionalArgsRequest.builder().build()); + client.service() + .optionalArgs(OptionalArgsRequest.builder() + .imageFile(new File("path/to/file")) + .build()); } } diff --git a/seed/java-sdk/file-upload/inline-file-properties/src/main/java/com/snippets/Example2.java b/seed/java-sdk/file-upload/inline-file-properties/src/main/java/com/snippets/Example2.java index 1a869ecd11ba..46e2be24091b 100644 --- a/seed/java-sdk/file-upload/inline-file-properties/src/main/java/com/snippets/Example2.java +++ b/seed/java-sdk/file-upload/inline-file-properties/src/main/java/com/snippets/Example2.java @@ -3,6 +3,7 @@ import com.seed.fileUpload.SeedFileUploadClient; import com.seed.fileUpload.resources.service.requests.WithRefBodyRequest; import com.seed.fileUpload.resources.service.types.MyObject; +import java.io.File; public class Example2 { public static void main(String[] args) { @@ -12,6 +13,7 @@ public static void main(String[] args) { client.service() .withRefBody(WithRefBodyRequest.builder() .request(MyObject.builder().foo("bar").build()) + .imageFile(new File("path/to/file")) .build()); } } diff --git a/seed/java-sdk/file-upload/no-custom-config/snippet.json b/seed/java-sdk/file-upload/no-custom-config/snippet.json index 489030e37bbe..0f03d83734b3 100644 --- a/seed/java-sdk/file-upload/no-custom-config/snippet.json +++ b/seed/java-sdk/file-upload/no-custom-config/snippet.json @@ -40,7 +40,7 @@ } }, { - "example_identifier": "82444d62", + "example_identifier": "7cf5c162", "id": { "method": "POST", "path": "/snippet", diff --git a/seed/java-sdk/file-upload/wrapped-aliases/snippet.json b/seed/java-sdk/file-upload/wrapped-aliases/snippet.json index 489030e37bbe..0f03d83734b3 100644 --- a/seed/java-sdk/file-upload/wrapped-aliases/snippet.json +++ b/seed/java-sdk/file-upload/wrapped-aliases/snippet.json @@ -40,7 +40,7 @@ } }, { - "example_identifier": "82444d62", + "example_identifier": "7cf5c162", "id": { "method": "POST", "path": "/snippet", diff --git a/seed/java-sdk/folders/snippet.json b/seed/java-sdk/folders/snippet.json index bd5910ee8399..dc0b0bd07976 100644 --- a/seed/java-sdk/folders/snippet.json +++ b/seed/java-sdk/folders/snippet.json @@ -1,7 +1,7 @@ { "endpoints": [ { - "example_identifier": "82444d62", + "example_identifier": "7cf5c162", "id": { "method": "POST", "path": "/", @@ -14,7 +14,7 @@ } }, { - "example_identifier": "82444d62", + "example_identifier": "7cf5c162", "id": { "method": "POST", "path": "/", @@ -27,7 +27,7 @@ } }, { - "example_identifier": "82444d62", + "example_identifier": "7cf5c162", "id": { "method": "POST", "path": "/", @@ -40,7 +40,7 @@ } }, { - "example_identifier": "82444d62", + "example_identifier": "7cf5c162", "id": { "method": "POST", "path": "/", @@ -53,7 +53,7 @@ } }, { - "example_identifier": "82444d62", + "example_identifier": "7cf5c162", "id": { "method": "GET", "path": "/service", @@ -66,7 +66,7 @@ } }, { - "example_identifier": "f7429229", + "example_identifier": "1cd509b9", "id": { "method": "POST", "path": "/service", diff --git a/seed/java-sdk/header-auth-environment-variable/snippet.json b/seed/java-sdk/header-auth-environment-variable/snippet.json index 896c4af78591..8ee2808b1120 100644 --- a/seed/java-sdk/header-auth-environment-variable/snippet.json +++ b/seed/java-sdk/header-auth-environment-variable/snippet.json @@ -1,7 +1,7 @@ { "endpoints": [ { - "example_identifier": "34d92e75", + "example_identifier": "6f306605", "id": { "method": "GET", "path": "/apiKey", diff --git a/seed/java-sdk/header-auth/header-auth/snippet.json b/seed/java-sdk/header-auth/header-auth/snippet.json index 70816d20b64c..08beefd4a946 100644 --- a/seed/java-sdk/header-auth/header-auth/snippet.json +++ b/seed/java-sdk/header-auth/header-auth/snippet.json @@ -1,7 +1,7 @@ { "endpoints": [ { - "example_identifier": "34d92e75", + "example_identifier": "6f306605", "id": { "method": "GET", "path": "/apiKey", diff --git a/seed/java-sdk/http-head/snippet.json b/seed/java-sdk/http-head/snippet.json index c2ebffe7c43a..a9c8d7ffb024 100644 --- a/seed/java-sdk/http-head/snippet.json +++ b/seed/java-sdk/http-head/snippet.json @@ -1,7 +1,7 @@ { "endpoints": [ { - "example_identifier": "82444d62", + "example_identifier": "7cf5c162", "id": { "method": "HEAD", "path": "/users", @@ -14,7 +14,7 @@ } }, { - "example_identifier": "583813bc", + "example_identifier": "3c4e652c", "id": { "method": "GET", "path": "/users", diff --git a/seed/java-sdk/idempotency-headers/snippet.json b/seed/java-sdk/idempotency-headers/snippet.json index 7e9bbfa865d9..90760c430385 100644 --- a/seed/java-sdk/idempotency-headers/snippet.json +++ b/seed/java-sdk/idempotency-headers/snippet.json @@ -1,7 +1,7 @@ { "endpoints": [ { - "example_identifier": "ec3c18c2", + "example_identifier": "c4af9402", "id": { "method": "POST", "path": "/payment", @@ -14,7 +14,7 @@ } }, { - "example_identifier": "b8386e0e", + "example_identifier": "4bc590fe", "id": { "method": "DELETE", "path": "/payment/{paymentId}", diff --git a/seed/java-sdk/inferred-auth-explicit/snippet.json b/seed/java-sdk/inferred-auth-explicit/snippet.json index 23d15fbaa158..570f8746915b 100644 --- a/seed/java-sdk/inferred-auth-explicit/snippet.json +++ b/seed/java-sdk/inferred-auth-explicit/snippet.json @@ -1,7 +1,7 @@ { "endpoints": [ { - "example_identifier": "6de97fd4", + "example_identifier": "c0726844", "id": { "method": "POST", "path": "/token", @@ -14,7 +14,7 @@ } }, { - "example_identifier": "1076a6cc", + "example_identifier": "51c2908c", "id": { "method": "POST", "path": "/token/refresh", @@ -27,7 +27,7 @@ } }, { - "example_identifier": "82444d62", + "example_identifier": "7cf5c162", "id": { "method": "GET", "path": "/nested-no-auth/get-something", @@ -40,7 +40,7 @@ } }, { - "example_identifier": "82444d62", + "example_identifier": "7cf5c162", "id": { "method": "GET", "path": "/nested/get-something", @@ -53,7 +53,7 @@ } }, { - "example_identifier": "82444d62", + "example_identifier": "7cf5c162", "id": { "method": "GET", "path": "/get-something", diff --git a/seed/java-sdk/inferred-auth-implicit-api-key/snippet.json b/seed/java-sdk/inferred-auth-implicit-api-key/snippet.json index cfa5ca35c1ca..fb72fdf5a5de 100644 --- a/seed/java-sdk/inferred-auth-implicit-api-key/snippet.json +++ b/seed/java-sdk/inferred-auth-implicit-api-key/snippet.json @@ -1,7 +1,7 @@ { "endpoints": [ { - "example_identifier": "e553776b", + "example_identifier": "5f2f761b", "id": { "method": "POST", "path": "/token", @@ -14,7 +14,7 @@ } }, { - "example_identifier": "82444d62", + "example_identifier": "7cf5c162", "id": { "method": "GET", "path": "/nested-no-auth/get-something", @@ -27,7 +27,7 @@ } }, { - "example_identifier": "82444d62", + "example_identifier": "7cf5c162", "id": { "method": "GET", "path": "/nested/get-something", @@ -40,7 +40,7 @@ } }, { - "example_identifier": "82444d62", + "example_identifier": "7cf5c162", "id": { "method": "GET", "path": "/get-something", diff --git a/seed/java-sdk/inferred-auth-implicit-no-expiry/snippet.json b/seed/java-sdk/inferred-auth-implicit-no-expiry/snippet.json index fe590afa3fa1..4163c44142cb 100644 --- a/seed/java-sdk/inferred-auth-implicit-no-expiry/snippet.json +++ b/seed/java-sdk/inferred-auth-implicit-no-expiry/snippet.json @@ -1,7 +1,7 @@ { "endpoints": [ { - "example_identifier": "d8c92b17", + "example_identifier": "ea1c60d7", "id": { "method": "POST", "path": "/token", @@ -14,7 +14,7 @@ } }, { - "example_identifier": "87332aef", + "example_identifier": "9172d11f", "id": { "method": "POST", "path": "/token/refresh", @@ -27,7 +27,7 @@ } }, { - "example_identifier": "82444d62", + "example_identifier": "7cf5c162", "id": { "method": "GET", "path": "/nested-no-auth/get-something", @@ -40,7 +40,7 @@ } }, { - "example_identifier": "82444d62", + "example_identifier": "7cf5c162", "id": { "method": "GET", "path": "/nested/get-something", @@ -53,7 +53,7 @@ } }, { - "example_identifier": "82444d62", + "example_identifier": "7cf5c162", "id": { "method": "GET", "path": "/get-something", diff --git a/seed/java-sdk/inferred-auth-implicit-reference/snippet.json b/seed/java-sdk/inferred-auth-implicit-reference/snippet.json index ff3f986cb4b0..7e7d01573fb6 100644 --- a/seed/java-sdk/inferred-auth-implicit-reference/snippet.json +++ b/seed/java-sdk/inferred-auth-implicit-reference/snippet.json @@ -1,7 +1,7 @@ { "endpoints": [ { - "example_identifier": "903651b0", + "example_identifier": "db0b1700", "id": { "method": "POST", "path": "/token", @@ -14,7 +14,7 @@ } }, { - "example_identifier": "4b9bc14d", + "example_identifier": "3ad0a9ed", "id": { "method": "POST", "path": "/token/refresh", @@ -27,7 +27,7 @@ } }, { - "example_identifier": "82444d62", + "example_identifier": "7cf5c162", "id": { "method": "GET", "path": "/nested-no-auth/get-something", @@ -40,7 +40,7 @@ } }, { - "example_identifier": "82444d62", + "example_identifier": "7cf5c162", "id": { "method": "GET", "path": "/nested/get-something", @@ -53,7 +53,7 @@ } }, { - "example_identifier": "82444d62", + "example_identifier": "7cf5c162", "id": { "method": "GET", "path": "/get-something", diff --git a/seed/java-sdk/inferred-auth-implicit/snippet.json b/seed/java-sdk/inferred-auth-implicit/snippet.json index 572be1fc0422..acae4241cc49 100644 --- a/seed/java-sdk/inferred-auth-implicit/snippet.json +++ b/seed/java-sdk/inferred-auth-implicit/snippet.json @@ -1,7 +1,7 @@ { "endpoints": [ { - "example_identifier": "6de97fd4", + "example_identifier": "c0726844", "id": { "method": "POST", "path": "/token", @@ -14,7 +14,7 @@ } }, { - "example_identifier": "1076a6cc", + "example_identifier": "51c2908c", "id": { "method": "POST", "path": "/token/refresh", @@ -27,7 +27,7 @@ } }, { - "example_identifier": "82444d62", + "example_identifier": "7cf5c162", "id": { "method": "GET", "path": "/nested-no-auth/get-something", @@ -40,7 +40,7 @@ } }, { - "example_identifier": "82444d62", + "example_identifier": "7cf5c162", "id": { "method": "GET", "path": "/nested/get-something", @@ -53,7 +53,7 @@ } }, { - "example_identifier": "82444d62", + "example_identifier": "7cf5c162", "id": { "method": "GET", "path": "/get-something", diff --git a/seed/java-sdk/java-builder-extension/base-client/snippet.json b/seed/java-sdk/java-builder-extension/base-client/snippet.json index 2b54390804d0..77aa364c1a71 100644 --- a/seed/java-sdk/java-builder-extension/base-client/snippet.json +++ b/seed/java-sdk/java-builder-extension/base-client/snippet.json @@ -1,7 +1,7 @@ { "endpoints": [ { - "example_identifier": "9d37c6d8", + "example_identifier": "4c53bbf8", "id": { "method": "GET", "path": "/api/hello", diff --git a/seed/java-sdk/java-builder-extension/extensible-builders/snippet.json b/seed/java-sdk/java-builder-extension/extensible-builders/snippet.json index 2b54390804d0..77aa364c1a71 100644 --- a/seed/java-sdk/java-builder-extension/extensible-builders/snippet.json +++ b/seed/java-sdk/java-builder-extension/extensible-builders/snippet.json @@ -1,7 +1,7 @@ { "endpoints": [ { - "example_identifier": "9d37c6d8", + "example_identifier": "4c53bbf8", "id": { "method": "GET", "path": "/api/hello", diff --git a/seed/java-sdk/java-custom-package-prefix/java-custom-package-prefix/snippet.json b/seed/java-sdk/java-custom-package-prefix/java-custom-package-prefix/snippet.json index 052964a38122..13fa5cf710d9 100644 --- a/seed/java-sdk/java-custom-package-prefix/java-custom-package-prefix/snippet.json +++ b/seed/java-sdk/java-custom-package-prefix/java-custom-package-prefix/snippet.json @@ -1,7 +1,7 @@ { "endpoints": [ { - "example_identifier": "987cdcd2", + "example_identifier": "e887aa12", "id": { "method": "POST", "path": "/movies/create-movie", @@ -14,7 +14,7 @@ } }, { - "example_identifier": "c0c8e16f", + "example_identifier": "ac4858ff", "id": { "method": "GET", "path": "/movies/{movieId}", diff --git a/seed/java-sdk/java-default-timeout/default/snippet.json b/seed/java-sdk/java-default-timeout/default/snippet.json index bcd51e3bde70..a0aa7d941d5d 100644 --- a/seed/java-sdk/java-default-timeout/default/snippet.json +++ b/seed/java-sdk/java-default-timeout/default/snippet.json @@ -1,7 +1,7 @@ { "endpoints": [ { - "example_identifier": "241e0a02", + "example_identifier": "1e761412", "id": { "method": "GET", "path": "/user", diff --git a/seed/java-sdk/java-inline-types/enable-forward-compatible-enums/snippet.json b/seed/java-sdk/java-inline-types/enable-forward-compatible-enums/snippet.json index 9e55e72441cd..60736cc4f4c6 100644 --- a/seed/java-sdk/java-inline-types/enable-forward-compatible-enums/snippet.json +++ b/seed/java-sdk/java-inline-types/enable-forward-compatible-enums/snippet.json @@ -1,7 +1,7 @@ { "endpoints": [ { - "example_identifier": "73e3485", + "example_identifier": "eb26ffd5", "id": { "method": "POST", "path": "/root/root", @@ -14,7 +14,7 @@ } }, { - "example_identifier": "9516a5ec", + "example_identifier": "78d1533c", "id": { "method": "POST", "path": "/root/discriminated-union", @@ -27,7 +27,7 @@ } }, { - "example_identifier": "37cb5902", + "example_identifier": "2c877e92", "id": { "method": "POST", "path": "/root/undiscriminated-union", @@ -40,7 +40,7 @@ } }, { - "example_identifier": "bbccdaf0", + "example_identifier": "1fec8a00", "id": { "method": "GET", "path": "/root/map-response", @@ -53,7 +53,7 @@ } }, { - "example_identifier": "daa48610", + "example_identifier": "993d4080", "id": { "method": "GET", "path": "/root/shared-child", @@ -66,7 +66,7 @@ } }, { - "example_identifier": "84cf4e9b", + "example_identifier": "dfe68f2b", "id": { "method": "GET", "path": "/root/orphan-parent", diff --git a/seed/java-sdk/java-inline-types/inline/snippet.json b/seed/java-sdk/java-inline-types/inline/snippet.json index 9e55e72441cd..60736cc4f4c6 100644 --- a/seed/java-sdk/java-inline-types/inline/snippet.json +++ b/seed/java-sdk/java-inline-types/inline/snippet.json @@ -1,7 +1,7 @@ { "endpoints": [ { - "example_identifier": "73e3485", + "example_identifier": "eb26ffd5", "id": { "method": "POST", "path": "/root/root", @@ -14,7 +14,7 @@ } }, { - "example_identifier": "9516a5ec", + "example_identifier": "78d1533c", "id": { "method": "POST", "path": "/root/discriminated-union", @@ -27,7 +27,7 @@ } }, { - "example_identifier": "37cb5902", + "example_identifier": "2c877e92", "id": { "method": "POST", "path": "/root/undiscriminated-union", @@ -40,7 +40,7 @@ } }, { - "example_identifier": "bbccdaf0", + "example_identifier": "1fec8a00", "id": { "method": "GET", "path": "/root/map-response", @@ -53,7 +53,7 @@ } }, { - "example_identifier": "daa48610", + "example_identifier": "993d4080", "id": { "method": "GET", "path": "/root/shared-child", @@ -66,7 +66,7 @@ } }, { - "example_identifier": "84cf4e9b", + "example_identifier": "dfe68f2b", "id": { "method": "GET", "path": "/root/orphan-parent", diff --git a/seed/java-sdk/java-inline-types/no-inline/snippet.json b/seed/java-sdk/java-inline-types/no-inline/snippet.json index 9e55e72441cd..60736cc4f4c6 100644 --- a/seed/java-sdk/java-inline-types/no-inline/snippet.json +++ b/seed/java-sdk/java-inline-types/no-inline/snippet.json @@ -1,7 +1,7 @@ { "endpoints": [ { - "example_identifier": "73e3485", + "example_identifier": "eb26ffd5", "id": { "method": "POST", "path": "/root/root", @@ -14,7 +14,7 @@ } }, { - "example_identifier": "9516a5ec", + "example_identifier": "78d1533c", "id": { "method": "POST", "path": "/root/discriminated-union", @@ -27,7 +27,7 @@ } }, { - "example_identifier": "37cb5902", + "example_identifier": "2c877e92", "id": { "method": "POST", "path": "/root/undiscriminated-union", @@ -40,7 +40,7 @@ } }, { - "example_identifier": "bbccdaf0", + "example_identifier": "1fec8a00", "id": { "method": "GET", "path": "/root/map-response", @@ -53,7 +53,7 @@ } }, { - "example_identifier": "daa48610", + "example_identifier": "993d4080", "id": { "method": "GET", "path": "/root/shared-child", @@ -66,7 +66,7 @@ } }, { - "example_identifier": "84cf4e9b", + "example_identifier": "dfe68f2b", "id": { "method": "GET", "path": "/root/orphan-parent", diff --git a/seed/java-sdk/java-inline-types/no-wrapped-aliases/snippet.json b/seed/java-sdk/java-inline-types/no-wrapped-aliases/snippet.json index 9e55e72441cd..60736cc4f4c6 100644 --- a/seed/java-sdk/java-inline-types/no-wrapped-aliases/snippet.json +++ b/seed/java-sdk/java-inline-types/no-wrapped-aliases/snippet.json @@ -1,7 +1,7 @@ { "endpoints": [ { - "example_identifier": "73e3485", + "example_identifier": "eb26ffd5", "id": { "method": "POST", "path": "/root/root", @@ -14,7 +14,7 @@ } }, { - "example_identifier": "9516a5ec", + "example_identifier": "78d1533c", "id": { "method": "POST", "path": "/root/discriminated-union", @@ -27,7 +27,7 @@ } }, { - "example_identifier": "37cb5902", + "example_identifier": "2c877e92", "id": { "method": "POST", "path": "/root/undiscriminated-union", @@ -40,7 +40,7 @@ } }, { - "example_identifier": "bbccdaf0", + "example_identifier": "1fec8a00", "id": { "method": "GET", "path": "/root/map-response", @@ -53,7 +53,7 @@ } }, { - "example_identifier": "daa48610", + "example_identifier": "993d4080", "id": { "method": "GET", "path": "/root/shared-child", @@ -66,7 +66,7 @@ } }, { - "example_identifier": "84cf4e9b", + "example_identifier": "dfe68f2b", "id": { "method": "GET", "path": "/root/orphan-parent", diff --git a/seed/java-sdk/java-optional-nullable-query-params/default/snippet.json b/seed/java-sdk/java-optional-nullable-query-params/default/snippet.json index b4fb2635fa0d..318812243e8a 100644 --- a/seed/java-sdk/java-optional-nullable-query-params/default/snippet.json +++ b/seed/java-sdk/java-optional-nullable-query-params/default/snippet.json @@ -1,7 +1,7 @@ { "endpoints": [ { - "example_identifier": "5fedf77a", + "example_identifier": "c7dff3a", "id": { "method": "GET", "path": "/api/search", diff --git a/seed/java-sdk/java-optional-query-params-overloads/snippet.json b/seed/java-sdk/java-optional-query-params-overloads/snippet.json index 7a5237972b94..9bb598f57c7f 100644 --- a/seed/java-sdk/java-optional-query-params-overloads/snippet.json +++ b/seed/java-sdk/java-optional-query-params-overloads/snippet.json @@ -1,7 +1,7 @@ { "endpoints": [ { - "example_identifier": "a2ac24a", + "example_identifier": "f8eaaeaa", "id": { "method": "GET", "path": "/api/users/{userId}/insurance", @@ -14,7 +14,7 @@ } }, { - "example_identifier": "c4328437", + "example_identifier": "9a2fb4a7", "id": { "method": "GET", "path": "/api/policies/search", @@ -27,7 +27,7 @@ } }, { - "example_identifier": "61c06522", + "example_identifier": "2d340502", "id": { "method": "GET", "path": "/api/policies", diff --git a/seed/java-sdk/java-output-directory/no-config/snippet.json b/seed/java-sdk/java-output-directory/no-config/snippet.json index 3e6e5d89b4ba..32e9bfaab4fd 100644 --- a/seed/java-sdk/java-output-directory/no-config/snippet.json +++ b/seed/java-sdk/java-output-directory/no-config/snippet.json @@ -1,7 +1,7 @@ { "endpoints": [ { - "example_identifier": "8711c232", + "example_identifier": "c9606ad2", "id": { "method": "GET", "path": "/users/{userId}", diff --git a/seed/java-sdk/java-output-directory/project-root/snippet.json b/seed/java-sdk/java-output-directory/project-root/snippet.json index 3e6e5d89b4ba..32e9bfaab4fd 100644 --- a/seed/java-sdk/java-output-directory/project-root/snippet.json +++ b/seed/java-sdk/java-output-directory/project-root/snippet.json @@ -1,7 +1,7 @@ { "endpoints": [ { - "example_identifier": "8711c232", + "example_identifier": "c9606ad2", "id": { "method": "GET", "path": "/users/{userId}", diff --git a/seed/java-sdk/java-output-directory/source-root/snippet.json b/seed/java-sdk/java-output-directory/source-root/snippet.json index 3e6e5d89b4ba..32e9bfaab4fd 100644 --- a/seed/java-sdk/java-output-directory/source-root/snippet.json +++ b/seed/java-sdk/java-output-directory/source-root/snippet.json @@ -1,7 +1,7 @@ { "endpoints": [ { - "example_identifier": "8711c232", + "example_identifier": "c9606ad2", "id": { "method": "GET", "path": "/users/{userId}", diff --git a/seed/java-sdk/java-pagination-deep-cursor-path/java-pagination-deep-cursor-path/snippet.json b/seed/java-sdk/java-pagination-deep-cursor-path/java-pagination-deep-cursor-path/snippet.json index bba21f3b5a23..6f9e9debecca 100644 --- a/seed/java-sdk/java-pagination-deep-cursor-path/java-pagination-deep-cursor-path/snippet.json +++ b/seed/java-sdk/java-pagination-deep-cursor-path/java-pagination-deep-cursor-path/snippet.json @@ -1,7 +1,7 @@ { "endpoints": [ { - "example_identifier": "85c6bed4", + "example_identifier": "9c6848a4", "id": { "method": "POST", "path": "/", @@ -14,7 +14,7 @@ } }, { - "example_identifier": "68eff97f", + "example_identifier": "6013755f", "id": { "method": "POST", "path": "/", @@ -27,7 +27,7 @@ } }, { - "example_identifier": "cd87c862", + "example_identifier": "2bfdfcf2", "id": { "method": "POST", "path": "/", diff --git a/seed/java-sdk/java-pagination-deep-cursor-path/wire-tests/snippet.json b/seed/java-sdk/java-pagination-deep-cursor-path/wire-tests/snippet.json index bba21f3b5a23..6f9e9debecca 100644 --- a/seed/java-sdk/java-pagination-deep-cursor-path/wire-tests/snippet.json +++ b/seed/java-sdk/java-pagination-deep-cursor-path/wire-tests/snippet.json @@ -1,7 +1,7 @@ { "endpoints": [ { - "example_identifier": "85c6bed4", + "example_identifier": "9c6848a4", "id": { "method": "POST", "path": "/", @@ -14,7 +14,7 @@ } }, { - "example_identifier": "68eff97f", + "example_identifier": "6013755f", "id": { "method": "POST", "path": "/", @@ -27,7 +27,7 @@ } }, { - "example_identifier": "cd87c862", + "example_identifier": "2bfdfcf2", "id": { "method": "POST", "path": "/", diff --git a/seed/java-sdk/java-required-body-optional-headers/snippet.json b/seed/java-sdk/java-required-body-optional-headers/snippet.json index e265ddafd945..0333f9ea1962 100644 --- a/seed/java-sdk/java-required-body-optional-headers/snippet.json +++ b/seed/java-sdk/java-required-body-optional-headers/snippet.json @@ -1,7 +1,7 @@ { "endpoints": [ { - "example_identifier": "4ca68f6", + "example_identifier": "bce61c86", "id": { "method": "POST", "path": "/api/users", @@ -14,7 +14,7 @@ } }, { - "example_identifier": "db475037", + "example_identifier": "c359b0b7", "id": { "method": "PUT", "path": "/api/users/{userId}", @@ -27,7 +27,7 @@ } }, { - "example_identifier": "c3c2cdcd", + "example_identifier": "c7e4a85d", "id": { "method": "POST", "path": "/api/users/with-options", @@ -40,7 +40,7 @@ } }, { - "example_identifier": "62ef2c5", + "example_identifier": "9d404ac5", "id": { "method": "POST", "path": "/api/users/required-header", @@ -53,7 +53,7 @@ } }, { - "example_identifier": "9691aa15", + "example_identifier": "12a4d4b5", "id": { "method": "POST", "path": "/api/users/required-query", @@ -66,7 +66,7 @@ } }, { - "example_identifier": "44f8f130", + "example_identifier": "9878ff90", "id": { "method": "GET", "path": "/api/users", @@ -79,7 +79,7 @@ } }, { - "example_identifier": "fa282186", + "example_identifier": "baae7f86", "id": { "method": "POST", "path": "/api/users/inlined", diff --git a/seed/java-sdk/java-single-property-endpoint/java-single-property-endpoint/snippet.json b/seed/java-sdk/java-single-property-endpoint/java-single-property-endpoint/snippet.json index b458c1ad3040..43bcc22b17db 100644 --- a/seed/java-sdk/java-single-property-endpoint/java-single-property-endpoint/snippet.json +++ b/seed/java-sdk/java-single-property-endpoint/java-single-property-endpoint/snippet.json @@ -1,7 +1,7 @@ { "endpoints": [ { - "example_identifier": "87f215da", + "example_identifier": "23d281a", "id": { "method": "GET", "path": "/{id}", diff --git a/seed/java-sdk/java-streaming-accept-header/snippet.json b/seed/java-sdk/java-streaming-accept-header/snippet.json index 97eee849b803..0c1bef3f969a 100644 --- a/seed/java-sdk/java-streaming-accept-header/snippet.json +++ b/seed/java-sdk/java-streaming-accept-header/snippet.json @@ -1,7 +1,7 @@ { "endpoints": [ { - "example_identifier": "9a74d1cd", + "example_identifier": "9de4eed", "id": { "method": "POST", "path": "/generate-stream", diff --git a/seed/java-sdk/license/snippet.json b/seed/java-sdk/license/snippet.json index 61c8149d5e30..221d3aa69d0d 100644 --- a/seed/java-sdk/license/snippet.json +++ b/seed/java-sdk/license/snippet.json @@ -1,7 +1,7 @@ { "endpoints": [ { - "example_identifier": "82444d62", + "example_identifier": "7cf5c162", "id": { "method": "GET", "path": "/", diff --git a/seed/java-sdk/literal-user-agent/snippet.json b/seed/java-sdk/literal-user-agent/snippet.json index f5eba0710821..d90fc0f2c191 100644 --- a/seed/java-sdk/literal-user-agent/snippet.json +++ b/seed/java-sdk/literal-user-agent/snippet.json @@ -1,7 +1,7 @@ { "endpoints": [ { - "example_identifier": "34d92e75", + "example_identifier": "6f306605", "id": { "method": "GET", "path": "/ping", diff --git a/seed/java-sdk/mixed-file-directory/snippet.json b/seed/java-sdk/mixed-file-directory/snippet.json index 97568867826e..539d74fb17aa 100644 --- a/seed/java-sdk/mixed-file-directory/snippet.json +++ b/seed/java-sdk/mixed-file-directory/snippet.json @@ -1,7 +1,7 @@ { "endpoints": [ { - "example_identifier": "2b4409ef", + "example_identifier": "cd4e751f", "id": { "method": "POST", "path": "/organizations/", @@ -14,7 +14,7 @@ } }, { - "example_identifier": "6980ef79", + "example_identifier": "ed119079", "id": { "method": "GET", "path": "/users/", @@ -27,7 +27,7 @@ } }, { - "example_identifier": "e054c41d", + "example_identifier": "a3e1bf5d", "id": { "method": "GET", "path": "/users/events/", @@ -40,7 +40,7 @@ } }, { - "example_identifier": "523daf45", + "example_identifier": "4ee75bb5", "id": { "method": "GET", "path": "/users/events/metadata/", diff --git a/seed/java-sdk/multi-line-docs/snippet.json b/seed/java-sdk/multi-line-docs/snippet.json index 76ea18648e00..3eb303db6afa 100644 --- a/seed/java-sdk/multi-line-docs/snippet.json +++ b/seed/java-sdk/multi-line-docs/snippet.json @@ -1,7 +1,7 @@ { "endpoints": [ { - "example_identifier": "185c468d", + "example_identifier": "ae76111d", "id": { "method": "GET", "path": "/users/{userId}", @@ -14,7 +14,7 @@ } }, { - "example_identifier": "45c77c08", + "example_identifier": "89040178", "id": { "method": "POST", "path": "/users", diff --git a/seed/java-sdk/multi-url-environment-no-default/snippet.json b/seed/java-sdk/multi-url-environment-no-default/snippet.json index 2758119440ec..04ec17b7ff5e 100644 --- a/seed/java-sdk/multi-url-environment-no-default/snippet.json +++ b/seed/java-sdk/multi-url-environment-no-default/snippet.json @@ -1,7 +1,7 @@ { "endpoints": [ { - "example_identifier": "7d39b9b1", + "example_identifier": "9dc52631", "id": { "method": "POST", "path": "/ec2/boot", @@ -14,7 +14,7 @@ } }, { - "example_identifier": "adf0c6ea", + "example_identifier": "ba52b93a", "id": { "method": "POST", "path": "/s3/presigned-url", diff --git a/seed/java-sdk/multi-url-environment/snippet.json b/seed/java-sdk/multi-url-environment/snippet.json index 1000b328ff77..18ced2dddca3 100644 --- a/seed/java-sdk/multi-url-environment/snippet.json +++ b/seed/java-sdk/multi-url-environment/snippet.json @@ -1,7 +1,7 @@ { "endpoints": [ { - "example_identifier": "7d39b9b1", + "example_identifier": "9dc52631", "id": { "method": "POST", "path": "/ec2/boot", @@ -14,7 +14,7 @@ } }, { - "example_identifier": "adf0c6ea", + "example_identifier": "ba52b93a", "id": { "method": "POST", "path": "/s3/presigned-url", diff --git a/seed/java-sdk/no-environment/snippet.json b/seed/java-sdk/no-environment/snippet.json index 2322ecf4529d..ae923c7019d8 100644 --- a/seed/java-sdk/no-environment/snippet.json +++ b/seed/java-sdk/no-environment/snippet.json @@ -1,7 +1,7 @@ { "endpoints": [ { - "example_identifier": "34d92e75", + "example_identifier": "6f306605", "id": { "method": "GET", "path": "/dummy", diff --git a/seed/java-sdk/no-retries/snippet.json b/seed/java-sdk/no-retries/snippet.json index 09cbb6e20930..12b32808c669 100644 --- a/seed/java-sdk/no-retries/snippet.json +++ b/seed/java-sdk/no-retries/snippet.json @@ -1,7 +1,7 @@ { "endpoints": [ { - "example_identifier": "bdd68942", + "example_identifier": "86c507e2", "id": { "method": "GET", "path": "/users", diff --git a/seed/java-sdk/nullable-optional/collapse-optional-nullable/snippet.json b/seed/java-sdk/nullable-optional/collapse-optional-nullable/snippet.json index a15615d4e0f9..f99cdb4ed4fa 100644 --- a/seed/java-sdk/nullable-optional/collapse-optional-nullable/snippet.json +++ b/seed/java-sdk/nullable-optional/collapse-optional-nullable/snippet.json @@ -1,7 +1,7 @@ { "endpoints": [ { - "example_identifier": "ddd19a7", + "example_identifier": "4e7589e7", "id": { "method": "GET", "path": "/api/users/{userId}", @@ -14,7 +14,7 @@ } }, { - "example_identifier": "c4dc6872", + "example_identifier": "40eb8372", "id": { "method": "POST", "path": "/api/users", @@ -27,7 +27,7 @@ } }, { - "example_identifier": "5779d2ad", + "example_identifier": "5e92705d", "id": { "method": "PATCH", "path": "/api/users/{userId}", @@ -40,7 +40,7 @@ } }, { - "example_identifier": "6cfc74b8", + "example_identifier": "38c1e988", "id": { "method": "GET", "path": "/api/users", @@ -53,7 +53,7 @@ } }, { - "example_identifier": "15583b2d", + "example_identifier": "11bca12d", "id": { "method": "GET", "path": "/api/users/search", @@ -66,7 +66,7 @@ } }, { - "example_identifier": "7d4bc061", + "example_identifier": "45a14ef1", "id": { "method": "POST", "path": "/api/profiles/complex", @@ -79,7 +79,7 @@ } }, { - "example_identifier": "264ae274", + "example_identifier": "ed875da4", "id": { "method": "GET", "path": "/api/profiles/complex/{profileId}", @@ -92,7 +92,7 @@ } }, { - "example_identifier": "ecef32fb", + "example_identifier": "2474c2eb", "id": { "method": "PATCH", "path": "/api/profiles/complex/{profileId}", @@ -105,7 +105,7 @@ } }, { - "example_identifier": "4611856c", + "example_identifier": "19badd7c", "id": { "method": "POST", "path": "/api/test/deserialization", @@ -118,7 +118,7 @@ } }, { - "example_identifier": "13a3ede5", + "example_identifier": "ecf32c35", "id": { "method": "GET", "path": "/api/users/filter", @@ -131,7 +131,7 @@ } }, { - "example_identifier": "c47e0b0b", + "example_identifier": "262de21b", "id": { "method": "GET", "path": "/api/users/{userId}/notifications", @@ -144,7 +144,7 @@ } }, { - "example_identifier": "170d4110", + "example_identifier": "49248850", "id": { "method": "PUT", "path": "/api/users/{userId}/tags", @@ -157,7 +157,7 @@ } }, { - "example_identifier": "a00d0f74", + "example_identifier": "b1ed1cc4", "id": { "method": "POST", "path": "/api/search", diff --git a/seed/java-sdk/nullable-optional/legacy/snippet.json b/seed/java-sdk/nullable-optional/legacy/snippet.json index 780e148b8e62..ea0c90e02a75 100644 --- a/seed/java-sdk/nullable-optional/legacy/snippet.json +++ b/seed/java-sdk/nullable-optional/legacy/snippet.json @@ -1,7 +1,7 @@ { "endpoints": [ { - "example_identifier": "ddd19a7", + "example_identifier": "4e7589e7", "id": { "method": "GET", "path": "/api/users/{userId}", @@ -14,7 +14,7 @@ } }, { - "example_identifier": "c4dc6872", + "example_identifier": "40eb8372", "id": { "method": "POST", "path": "/api/users", @@ -27,7 +27,7 @@ } }, { - "example_identifier": "5779d2ad", + "example_identifier": "5e92705d", "id": { "method": "PATCH", "path": "/api/users/{userId}", @@ -40,7 +40,7 @@ } }, { - "example_identifier": "6cfc74b8", + "example_identifier": "38c1e988", "id": { "method": "GET", "path": "/api/users", @@ -53,7 +53,7 @@ } }, { - "example_identifier": "15583b2d", + "example_identifier": "11bca12d", "id": { "method": "GET", "path": "/api/users/search", @@ -66,7 +66,7 @@ } }, { - "example_identifier": "7d4bc061", + "example_identifier": "45a14ef1", "id": { "method": "POST", "path": "/api/profiles/complex", @@ -79,7 +79,7 @@ } }, { - "example_identifier": "264ae274", + "example_identifier": "ed875da4", "id": { "method": "GET", "path": "/api/profiles/complex/{profileId}", @@ -92,7 +92,7 @@ } }, { - "example_identifier": "ecef32fb", + "example_identifier": "2474c2eb", "id": { "method": "PATCH", "path": "/api/profiles/complex/{profileId}", @@ -105,7 +105,7 @@ } }, { - "example_identifier": "4611856c", + "example_identifier": "19badd7c", "id": { "method": "POST", "path": "/api/test/deserialization", @@ -118,7 +118,7 @@ } }, { - "example_identifier": "13a3ede5", + "example_identifier": "ecf32c35", "id": { "method": "GET", "path": "/api/users/filter", @@ -131,7 +131,7 @@ } }, { - "example_identifier": "c47e0b0b", + "example_identifier": "262de21b", "id": { "method": "GET", "path": "/api/users/{userId}/notifications", @@ -144,7 +144,7 @@ } }, { - "example_identifier": "170d4110", + "example_identifier": "49248850", "id": { "method": "PUT", "path": "/api/users/{userId}/tags", @@ -157,7 +157,7 @@ } }, { - "example_identifier": "a00d0f74", + "example_identifier": "b1ed1cc4", "id": { "method": "POST", "path": "/api/search", diff --git a/seed/java-sdk/nullable-optional/with-nullable-annotation/snippet.json b/seed/java-sdk/nullable-optional/with-nullable-annotation/snippet.json index 780e148b8e62..ea0c90e02a75 100644 --- a/seed/java-sdk/nullable-optional/with-nullable-annotation/snippet.json +++ b/seed/java-sdk/nullable-optional/with-nullable-annotation/snippet.json @@ -1,7 +1,7 @@ { "endpoints": [ { - "example_identifier": "ddd19a7", + "example_identifier": "4e7589e7", "id": { "method": "GET", "path": "/api/users/{userId}", @@ -14,7 +14,7 @@ } }, { - "example_identifier": "c4dc6872", + "example_identifier": "40eb8372", "id": { "method": "POST", "path": "/api/users", @@ -27,7 +27,7 @@ } }, { - "example_identifier": "5779d2ad", + "example_identifier": "5e92705d", "id": { "method": "PATCH", "path": "/api/users/{userId}", @@ -40,7 +40,7 @@ } }, { - "example_identifier": "6cfc74b8", + "example_identifier": "38c1e988", "id": { "method": "GET", "path": "/api/users", @@ -53,7 +53,7 @@ } }, { - "example_identifier": "15583b2d", + "example_identifier": "11bca12d", "id": { "method": "GET", "path": "/api/users/search", @@ -66,7 +66,7 @@ } }, { - "example_identifier": "7d4bc061", + "example_identifier": "45a14ef1", "id": { "method": "POST", "path": "/api/profiles/complex", @@ -79,7 +79,7 @@ } }, { - "example_identifier": "264ae274", + "example_identifier": "ed875da4", "id": { "method": "GET", "path": "/api/profiles/complex/{profileId}", @@ -92,7 +92,7 @@ } }, { - "example_identifier": "ecef32fb", + "example_identifier": "2474c2eb", "id": { "method": "PATCH", "path": "/api/profiles/complex/{profileId}", @@ -105,7 +105,7 @@ } }, { - "example_identifier": "4611856c", + "example_identifier": "19badd7c", "id": { "method": "POST", "path": "/api/test/deserialization", @@ -118,7 +118,7 @@ } }, { - "example_identifier": "13a3ede5", + "example_identifier": "ecf32c35", "id": { "method": "GET", "path": "/api/users/filter", @@ -131,7 +131,7 @@ } }, { - "example_identifier": "c47e0b0b", + "example_identifier": "262de21b", "id": { "method": "GET", "path": "/api/users/{userId}/notifications", @@ -144,7 +144,7 @@ } }, { - "example_identifier": "170d4110", + "example_identifier": "49248850", "id": { "method": "PUT", "path": "/api/users/{userId}/tags", @@ -157,7 +157,7 @@ } }, { - "example_identifier": "a00d0f74", + "example_identifier": "b1ed1cc4", "id": { "method": "POST", "path": "/api/search", diff --git a/seed/java-sdk/nullable/no-custom-config/snippet.json b/seed/java-sdk/nullable/no-custom-config/snippet.json index 696bc578ae0b..20dc60ee0d46 100644 --- a/seed/java-sdk/nullable/no-custom-config/snippet.json +++ b/seed/java-sdk/nullable/no-custom-config/snippet.json @@ -1,7 +1,7 @@ { "endpoints": [ { - "example_identifier": "4e79952c", + "example_identifier": "543e594c", "id": { "method": "GET", "path": "/users", @@ -14,7 +14,7 @@ } }, { - "example_identifier": "83d860d2", + "example_identifier": "c9d613b2", "id": { "method": "POST", "path": "/users", @@ -27,7 +27,7 @@ } }, { - "example_identifier": "bc6c70e5", + "example_identifier": "83434d15", "id": { "method": "DELETE", "path": "/users", diff --git a/seed/java-sdk/nullable/wrapped-aliases/snippet.json b/seed/java-sdk/nullable/wrapped-aliases/snippet.json index 696bc578ae0b..20dc60ee0d46 100644 --- a/seed/java-sdk/nullable/wrapped-aliases/snippet.json +++ b/seed/java-sdk/nullable/wrapped-aliases/snippet.json @@ -1,7 +1,7 @@ { "endpoints": [ { - "example_identifier": "4e79952c", + "example_identifier": "543e594c", "id": { "method": "GET", "path": "/users", @@ -14,7 +14,7 @@ } }, { - "example_identifier": "83d860d2", + "example_identifier": "c9d613b2", "id": { "method": "POST", "path": "/users", @@ -27,7 +27,7 @@ } }, { - "example_identifier": "bc6c70e5", + "example_identifier": "83434d15", "id": { "method": "DELETE", "path": "/users", diff --git a/seed/java-sdk/oauth-client-credentials-custom/snippet.json b/seed/java-sdk/oauth-client-credentials-custom/snippet.json index 26d2e457690a..64a8376c3664 100644 --- a/seed/java-sdk/oauth-client-credentials-custom/snippet.json +++ b/seed/java-sdk/oauth-client-credentials-custom/snippet.json @@ -1,7 +1,7 @@ { "endpoints": [ { - "example_identifier": "72a2286c", + "example_identifier": "cf43d20c", "id": { "method": "POST", "path": "/token", @@ -14,7 +14,7 @@ } }, { - "example_identifier": "6cae8dfc", + "example_identifier": "28bf3b8c", "id": { "method": "POST", "path": "/token", @@ -27,7 +27,7 @@ } }, { - "example_identifier": "82444d62", + "example_identifier": "7cf5c162", "id": { "method": "GET", "path": "/nested-no-auth/get-something", @@ -40,7 +40,7 @@ } }, { - "example_identifier": "82444d62", + "example_identifier": "7cf5c162", "id": { "method": "GET", "path": "/nested/get-something", @@ -53,7 +53,7 @@ } }, { - "example_identifier": "82444d62", + "example_identifier": "7cf5c162", "id": { "method": "GET", "path": "/get-something", diff --git a/seed/java-sdk/oauth-client-credentials-default/snippet.json b/seed/java-sdk/oauth-client-credentials-default/snippet.json index a37cda42adfe..02e3432dfa52 100644 --- a/seed/java-sdk/oauth-client-credentials-default/snippet.json +++ b/seed/java-sdk/oauth-client-credentials-default/snippet.json @@ -1,7 +1,7 @@ { "endpoints": [ { - "example_identifier": "c0497487", + "example_identifier": "28a1cf47", "id": { "method": "POST", "path": "/token", @@ -14,7 +14,7 @@ } }, { - "example_identifier": "82444d62", + "example_identifier": "7cf5c162", "id": { "method": "GET", "path": "/nested-no-auth/get-something", @@ -27,7 +27,7 @@ } }, { - "example_identifier": "82444d62", + "example_identifier": "7cf5c162", "id": { "method": "GET", "path": "/nested/get-something", @@ -40,7 +40,7 @@ } }, { - "example_identifier": "82444d62", + "example_identifier": "7cf5c162", "id": { "method": "GET", "path": "/get-something", diff --git a/seed/java-sdk/oauth-client-credentials-environment-variables/snippet.json b/seed/java-sdk/oauth-client-credentials-environment-variables/snippet.json index b724d3509f39..97f65902318c 100644 --- a/seed/java-sdk/oauth-client-credentials-environment-variables/snippet.json +++ b/seed/java-sdk/oauth-client-credentials-environment-variables/snippet.json @@ -1,7 +1,7 @@ { "endpoints": [ { - "example_identifier": "be027004", + "example_identifier": "5e845b44", "id": { "method": "POST", "path": "/token", @@ -14,7 +14,7 @@ } }, { - "example_identifier": "6cae8dfc", + "example_identifier": "28bf3b8c", "id": { "method": "POST", "path": "/token", @@ -27,7 +27,7 @@ } }, { - "example_identifier": "82444d62", + "example_identifier": "7cf5c162", "id": { "method": "GET", "path": "/nested-no-auth/get-something", @@ -40,7 +40,7 @@ } }, { - "example_identifier": "82444d62", + "example_identifier": "7cf5c162", "id": { "method": "GET", "path": "/nested/get-something", @@ -53,7 +53,7 @@ } }, { - "example_identifier": "82444d62", + "example_identifier": "7cf5c162", "id": { "method": "GET", "path": "/get-something", diff --git a/seed/java-sdk/oauth-client-credentials-mandatory-auth/no-custom-config/snippet.json b/seed/java-sdk/oauth-client-credentials-mandatory-auth/no-custom-config/snippet.json index f1d60c4f3f4d..029a8906877d 100644 --- a/seed/java-sdk/oauth-client-credentials-mandatory-auth/no-custom-config/snippet.json +++ b/seed/java-sdk/oauth-client-credentials-mandatory-auth/no-custom-config/snippet.json @@ -27,7 +27,7 @@ } }, { - "example_identifier": "82444d62", + "example_identifier": "7cf5c162", "id": { "method": "GET", "path": "/nested/get-something", @@ -40,7 +40,7 @@ } }, { - "example_identifier": "82444d62", + "example_identifier": "7cf5c162", "id": { "method": "GET", "path": "/get-something", diff --git a/seed/java-sdk/oauth-client-credentials-nested-root/snippet.json b/seed/java-sdk/oauth-client-credentials-nested-root/snippet.json index 8fa2a78e8e97..8cebe02f463e 100644 --- a/seed/java-sdk/oauth-client-credentials-nested-root/snippet.json +++ b/seed/java-sdk/oauth-client-credentials-nested-root/snippet.json @@ -1,7 +1,7 @@ { "endpoints": [ { - "example_identifier": "771edf1a", + "example_identifier": "ee01661a", "id": { "method": "POST", "path": "/token", @@ -14,7 +14,7 @@ } }, { - "example_identifier": "82444d62", + "example_identifier": "7cf5c162", "id": { "method": "GET", "path": "/nested-no-auth/get-something", @@ -27,7 +27,7 @@ } }, { - "example_identifier": "82444d62", + "example_identifier": "7cf5c162", "id": { "method": "GET", "path": "/nested/get-something", @@ -40,7 +40,7 @@ } }, { - "example_identifier": "82444d62", + "example_identifier": "7cf5c162", "id": { "method": "GET", "path": "/get-something", diff --git a/seed/java-sdk/oauth-client-credentials-reference/snippet.json b/seed/java-sdk/oauth-client-credentials-reference/snippet.json index 0df5836b7392..458d4e3ee6d2 100644 --- a/seed/java-sdk/oauth-client-credentials-reference/snippet.json +++ b/seed/java-sdk/oauth-client-credentials-reference/snippet.json @@ -14,7 +14,7 @@ } }, { - "example_identifier": "82444d62", + "example_identifier": "7cf5c162", "id": { "method": "GET", "path": "/get-something", diff --git a/seed/java-sdk/oauth-client-credentials-with-variables/snippet.json b/seed/java-sdk/oauth-client-credentials-with-variables/snippet.json index c497cc9cc530..3cbadc11c9ec 100644 --- a/seed/java-sdk/oauth-client-credentials-with-variables/snippet.json +++ b/seed/java-sdk/oauth-client-credentials-with-variables/snippet.json @@ -1,7 +1,7 @@ { "endpoints": [ { - "example_identifier": "be027004", + "example_identifier": "5e845b44", "id": { "method": "POST", "path": "/token", @@ -14,7 +14,7 @@ } }, { - "example_identifier": "6cae8dfc", + "example_identifier": "28bf3b8c", "id": { "method": "POST", "path": "/token", @@ -27,7 +27,7 @@ } }, { - "example_identifier": "82444d62", + "example_identifier": "7cf5c162", "id": { "method": "GET", "path": "/nested-no-auth/get-something", @@ -40,7 +40,7 @@ } }, { - "example_identifier": "82444d62", + "example_identifier": "7cf5c162", "id": { "method": "GET", "path": "/nested/get-something", @@ -53,7 +53,7 @@ } }, { - "example_identifier": "75519417", + "example_identifier": "770ab567", "id": { "method": "POST", "path": "/service/{endpointParam}", @@ -66,7 +66,7 @@ } }, { - "example_identifier": "82444d62", + "example_identifier": "7cf5c162", "id": { "method": "GET", "path": "/get-something", diff --git a/seed/java-sdk/oauth-client-credentials/custom-interceptors/snippet.json b/seed/java-sdk/oauth-client-credentials/custom-interceptors/snippet.json index dd8d90956c92..5b2cd39c2320 100644 --- a/seed/java-sdk/oauth-client-credentials/custom-interceptors/snippet.json +++ b/seed/java-sdk/oauth-client-credentials/custom-interceptors/snippet.json @@ -27,7 +27,7 @@ } }, { - "example_identifier": "82444d62", + "example_identifier": "7cf5c162", "id": { "method": "GET", "path": "/nested-no-auth/get-something", @@ -40,7 +40,7 @@ } }, { - "example_identifier": "82444d62", + "example_identifier": "7cf5c162", "id": { "method": "GET", "path": "/nested/get-something", @@ -53,7 +53,7 @@ } }, { - "example_identifier": "82444d62", + "example_identifier": "7cf5c162", "id": { "method": "GET", "path": "/get-something", diff --git a/seed/java-sdk/oauth-client-credentials/oauth-client-credentials/snippet.json b/seed/java-sdk/oauth-client-credentials/oauth-client-credentials/snippet.json index dd8d90956c92..5b2cd39c2320 100644 --- a/seed/java-sdk/oauth-client-credentials/oauth-client-credentials/snippet.json +++ b/seed/java-sdk/oauth-client-credentials/oauth-client-credentials/snippet.json @@ -27,7 +27,7 @@ } }, { - "example_identifier": "82444d62", + "example_identifier": "7cf5c162", "id": { "method": "GET", "path": "/nested-no-auth/get-something", @@ -40,7 +40,7 @@ } }, { - "example_identifier": "82444d62", + "example_identifier": "7cf5c162", "id": { "method": "GET", "path": "/nested/get-something", @@ -53,7 +53,7 @@ } }, { - "example_identifier": "82444d62", + "example_identifier": "7cf5c162", "id": { "method": "GET", "path": "/get-something", diff --git a/seed/java-sdk/optional/wire-tests/snippet.json b/seed/java-sdk/optional/wire-tests/snippet.json index cd35c0e48aef..0288236b877c 100644 --- a/seed/java-sdk/optional/wire-tests/snippet.json +++ b/seed/java-sdk/optional/wire-tests/snippet.json @@ -1,7 +1,7 @@ { "endpoints": [ { - "example_identifier": "6fab11ee", + "example_identifier": "dd39da9e", "id": { "method": "POST", "path": "/send-optional-body", @@ -14,7 +14,7 @@ } }, { - "example_identifier": "4d44a9aa", + "example_identifier": "cace408a", "id": { "method": "POST", "path": "/send-optional-typed-body", @@ -27,7 +27,7 @@ } }, { - "example_identifier": "6c2b5482", + "example_identifier": "3d637762", "id": { "method": "POST", "path": "/deploy/{actionId}/versions/{id}", diff --git a/seed/java-sdk/pagination-custom/default/snippet.json b/seed/java-sdk/pagination-custom/default/snippet.json index 4c6a547faae9..1035255869f6 100644 --- a/seed/java-sdk/pagination-custom/default/snippet.json +++ b/seed/java-sdk/pagination-custom/default/snippet.json @@ -1,7 +1,7 @@ { "endpoints": [ { - "example_identifier": "372663bc", + "example_identifier": "5df56e1c", "id": { "method": "GET", "path": "/users", diff --git a/seed/java-sdk/pagination-uri-path/wire-tests/snippet.json b/seed/java-sdk/pagination-uri-path/wire-tests/snippet.json index 8ec262f2623a..ce72c1ef24b7 100644 --- a/seed/java-sdk/pagination-uri-path/wire-tests/snippet.json +++ b/seed/java-sdk/pagination-uri-path/wire-tests/snippet.json @@ -1,7 +1,7 @@ { "endpoints": [ { - "example_identifier": "180cce7f", + "example_identifier": "9e19b9ef", "id": { "method": "GET", "path": "/users/uri", @@ -14,7 +14,7 @@ } }, { - "example_identifier": "aa6a3345", + "example_identifier": "d0e023f5", "id": { "method": "GET", "path": "/users/path", diff --git a/seed/java-sdk/pagination/default/snippet.json b/seed/java-sdk/pagination/default/snippet.json index 073e5dedda4e..74aaed87fa99 100644 --- a/seed/java-sdk/pagination/default/snippet.json +++ b/seed/java-sdk/pagination/default/snippet.json @@ -1,7 +1,7 @@ { "endpoints": [ { - "example_identifier": "d43ff4cb", + "example_identifier": "566d92db", "id": { "method": "POST", "path": "/{index}/conversations/search", @@ -14,7 +14,7 @@ } }, { - "example_identifier": "42d442e7", + "example_identifier": "d65f2e77", "id": { "method": "GET", "path": "/inline-users", @@ -27,7 +27,7 @@ } }, { - "example_identifier": "2994ef3d", + "example_identifier": "7a375b8d", "id": { "method": "POST", "path": "/inline-users", @@ -40,7 +40,7 @@ } }, { - "example_identifier": "5f87117b", + "example_identifier": "5f203b5b", "id": { "method": "POST", "path": "/inline-users", @@ -53,7 +53,7 @@ } }, { - "example_identifier": "2a9f8ed7", + "example_identifier": "9b2d8fa7", "id": { "method": "GET", "path": "/inline-users", @@ -66,7 +66,7 @@ } }, { - "example_identifier": "5b7acca3", + "example_identifier": "6721d253", "id": { "method": "GET", "path": "/inline-users", @@ -79,7 +79,7 @@ } }, { - "example_identifier": "3c4bbea", + "example_identifier": "e57d124a", "id": { "method": "POST", "path": "/inline-users", @@ -92,7 +92,7 @@ } }, { - "example_identifier": "bc4610a0", + "example_identifier": "35ccf150", "id": { "method": "GET", "path": "/inline-users", @@ -105,7 +105,7 @@ } }, { - "example_identifier": "bc4610a0", + "example_identifier": "35ccf150", "id": { "method": "GET", "path": "/inline-users", @@ -118,7 +118,7 @@ } }, { - "example_identifier": "51e77e2b", + "example_identifier": "aa3b769b", "id": { "method": "GET", "path": "/inline-users", @@ -131,7 +131,7 @@ } }, { - "example_identifier": "4b255138", + "example_identifier": "9229b3e8", "id": { "method": "GET", "path": "/inline-users", @@ -144,7 +144,7 @@ } }, { - "example_identifier": "fdccf19a", + "example_identifier": "3bfc80aa", "id": { "method": "GET", "path": "/inline-users", @@ -157,7 +157,7 @@ } }, { - "example_identifier": "6267ab94", + "example_identifier": "1725374", "id": { "method": "GET", "path": "/inline-users", @@ -170,7 +170,7 @@ } }, { - "example_identifier": "2ba1a91f", + "example_identifier": "75685a9f", "id": { "method": "GET", "path": "/users", @@ -183,7 +183,7 @@ } }, { - "example_identifier": "b47f5999", + "example_identifier": "ca11979", "id": { "method": "POST", "path": "/users", @@ -196,7 +196,7 @@ } }, { - "example_identifier": "8db9c65a", + "example_identifier": "cc63046a", "id": { "method": "POST", "path": "/users", @@ -222,7 +222,7 @@ } }, { - "example_identifier": "da96568f", + "example_identifier": "585a45cf", "id": { "method": "GET", "path": "/users", @@ -235,7 +235,7 @@ } }, { - "example_identifier": "f21cccbb", + "example_identifier": "6a5c245b", "id": { "method": "GET", "path": "/users", @@ -248,7 +248,7 @@ } }, { - "example_identifier": "9123505d", + "example_identifier": "75e2ca4d", "id": { "method": "POST", "path": "/users", @@ -261,7 +261,7 @@ } }, { - "example_identifier": "c3eb1c94", + "example_identifier": "65bb84d4", "id": { "method": "GET", "path": "/users", @@ -300,7 +300,7 @@ } }, { - "example_identifier": "652f9754", + "example_identifier": "c1faa2e4", "id": { "method": "GET", "path": "/users", @@ -313,7 +313,7 @@ } }, { - "example_identifier": "d155acc0", + "example_identifier": "b9ef63d0", "id": { "method": "GET", "path": "/users", @@ -326,7 +326,7 @@ } }, { - "example_identifier": "fdccf19a", + "example_identifier": "3bfc80aa", "id": { "method": "GET", "path": "/users", @@ -339,7 +339,7 @@ } }, { - "example_identifier": "ad6517ae", + "example_identifier": "29ddfebe", "id": { "method": "GET", "path": "/users", @@ -352,7 +352,7 @@ } }, { - "example_identifier": "27b19490", + "example_identifier": "8bcd2db0", "id": { "method": "GET", "path": "/users", @@ -391,7 +391,7 @@ } }, { - "example_identifier": "6b370bc1", + "example_identifier": "4fdd4c01", "id": { "method": "GET", "path": "/users/aliased-data", diff --git a/seed/java-sdk/pagination/item-index-semantics/snippet.json b/seed/java-sdk/pagination/item-index-semantics/snippet.json index 073e5dedda4e..74aaed87fa99 100644 --- a/seed/java-sdk/pagination/item-index-semantics/snippet.json +++ b/seed/java-sdk/pagination/item-index-semantics/snippet.json @@ -1,7 +1,7 @@ { "endpoints": [ { - "example_identifier": "d43ff4cb", + "example_identifier": "566d92db", "id": { "method": "POST", "path": "/{index}/conversations/search", @@ -14,7 +14,7 @@ } }, { - "example_identifier": "42d442e7", + "example_identifier": "d65f2e77", "id": { "method": "GET", "path": "/inline-users", @@ -27,7 +27,7 @@ } }, { - "example_identifier": "2994ef3d", + "example_identifier": "7a375b8d", "id": { "method": "POST", "path": "/inline-users", @@ -40,7 +40,7 @@ } }, { - "example_identifier": "5f87117b", + "example_identifier": "5f203b5b", "id": { "method": "POST", "path": "/inline-users", @@ -53,7 +53,7 @@ } }, { - "example_identifier": "2a9f8ed7", + "example_identifier": "9b2d8fa7", "id": { "method": "GET", "path": "/inline-users", @@ -66,7 +66,7 @@ } }, { - "example_identifier": "5b7acca3", + "example_identifier": "6721d253", "id": { "method": "GET", "path": "/inline-users", @@ -79,7 +79,7 @@ } }, { - "example_identifier": "3c4bbea", + "example_identifier": "e57d124a", "id": { "method": "POST", "path": "/inline-users", @@ -92,7 +92,7 @@ } }, { - "example_identifier": "bc4610a0", + "example_identifier": "35ccf150", "id": { "method": "GET", "path": "/inline-users", @@ -105,7 +105,7 @@ } }, { - "example_identifier": "bc4610a0", + "example_identifier": "35ccf150", "id": { "method": "GET", "path": "/inline-users", @@ -118,7 +118,7 @@ } }, { - "example_identifier": "51e77e2b", + "example_identifier": "aa3b769b", "id": { "method": "GET", "path": "/inline-users", @@ -131,7 +131,7 @@ } }, { - "example_identifier": "4b255138", + "example_identifier": "9229b3e8", "id": { "method": "GET", "path": "/inline-users", @@ -144,7 +144,7 @@ } }, { - "example_identifier": "fdccf19a", + "example_identifier": "3bfc80aa", "id": { "method": "GET", "path": "/inline-users", @@ -157,7 +157,7 @@ } }, { - "example_identifier": "6267ab94", + "example_identifier": "1725374", "id": { "method": "GET", "path": "/inline-users", @@ -170,7 +170,7 @@ } }, { - "example_identifier": "2ba1a91f", + "example_identifier": "75685a9f", "id": { "method": "GET", "path": "/users", @@ -183,7 +183,7 @@ } }, { - "example_identifier": "b47f5999", + "example_identifier": "ca11979", "id": { "method": "POST", "path": "/users", @@ -196,7 +196,7 @@ } }, { - "example_identifier": "8db9c65a", + "example_identifier": "cc63046a", "id": { "method": "POST", "path": "/users", @@ -222,7 +222,7 @@ } }, { - "example_identifier": "da96568f", + "example_identifier": "585a45cf", "id": { "method": "GET", "path": "/users", @@ -235,7 +235,7 @@ } }, { - "example_identifier": "f21cccbb", + "example_identifier": "6a5c245b", "id": { "method": "GET", "path": "/users", @@ -248,7 +248,7 @@ } }, { - "example_identifier": "9123505d", + "example_identifier": "75e2ca4d", "id": { "method": "POST", "path": "/users", @@ -261,7 +261,7 @@ } }, { - "example_identifier": "c3eb1c94", + "example_identifier": "65bb84d4", "id": { "method": "GET", "path": "/users", @@ -300,7 +300,7 @@ } }, { - "example_identifier": "652f9754", + "example_identifier": "c1faa2e4", "id": { "method": "GET", "path": "/users", @@ -313,7 +313,7 @@ } }, { - "example_identifier": "d155acc0", + "example_identifier": "b9ef63d0", "id": { "method": "GET", "path": "/users", @@ -326,7 +326,7 @@ } }, { - "example_identifier": "fdccf19a", + "example_identifier": "3bfc80aa", "id": { "method": "GET", "path": "/users", @@ -339,7 +339,7 @@ } }, { - "example_identifier": "ad6517ae", + "example_identifier": "29ddfebe", "id": { "method": "GET", "path": "/users", @@ -352,7 +352,7 @@ } }, { - "example_identifier": "27b19490", + "example_identifier": "8bcd2db0", "id": { "method": "GET", "path": "/users", @@ -391,7 +391,7 @@ } }, { - "example_identifier": "6b370bc1", + "example_identifier": "4fdd4c01", "id": { "method": "GET", "path": "/users/aliased-data", diff --git a/seed/java-sdk/path-parameters/snippet.json b/seed/java-sdk/path-parameters/snippet.json index afea09178ddf..bfb85f53c718 100644 --- a/seed/java-sdk/path-parameters/snippet.json +++ b/seed/java-sdk/path-parameters/snippet.json @@ -1,7 +1,7 @@ { "endpoints": [ { - "example_identifier": "4fa1ea13", + "example_identifier": "cbfe2d83", "id": { "method": "GET", "path": "/{tenant_id}/organizations/{organization_id}/", @@ -14,7 +14,7 @@ } }, { - "example_identifier": "8481d7b2", + "example_identifier": "360d4d2", "id": { "method": "GET", "path": "/{tenant_id}/organizations/{organization_id}/users/{user_id}", @@ -27,7 +27,7 @@ } }, { - "example_identifier": "c648e6a9", + "example_identifier": "f97e8729", "id": { "method": "GET", "path": "/{tenant_id}/organizations/{organization_id}/search", @@ -40,7 +40,7 @@ } }, { - "example_identifier": "69bbe44", + "example_identifier": "5a70b7d4", "id": { "method": "GET", "path": "/{tenant_id}/user/{user_id}", @@ -53,7 +53,7 @@ } }, { - "example_identifier": "526a0c1c", + "example_identifier": "f4726ebc", "id": { "method": "POST", "path": "/{tenant_id}/user/", @@ -66,7 +66,7 @@ } }, { - "example_identifier": "fb9649f2", + "example_identifier": "997e5462", "id": { "method": "PATCH", "path": "/{tenant_id}/user/{user_id}", @@ -79,7 +79,7 @@ } }, { - "example_identifier": "55cbea54", + "example_identifier": "9166a8b4", "id": { "method": "GET", "path": "/{tenant_id}/user/{user_id}/search", @@ -92,7 +92,7 @@ } }, { - "example_identifier": "6787da72", + "example_identifier": "8e2f9f52", "id": { "method": "GET", "path": "/{tenant_id}/user/{user_id}/metadata/v/{version}", @@ -105,7 +105,7 @@ } }, { - "example_identifier": "5407a9f6", + "example_identifier": "7dad4426", "id": { "method": "GET", "path": "/{tenant_id}/user/{user_id}/specifics/{version}/{thought}", diff --git a/seed/java-sdk/plain-text/snippet.json b/seed/java-sdk/plain-text/snippet.json index 9c7c044352e8..51c48ed57cd1 100644 --- a/seed/java-sdk/plain-text/snippet.json +++ b/seed/java-sdk/plain-text/snippet.json @@ -1,7 +1,7 @@ { "endpoints": [ { - "example_identifier": "34d92e75", + "example_identifier": "6f306605", "id": { "method": "POST", "path": "/text", @@ -14,7 +14,7 @@ } }, { - "example_identifier": "34d92e75", + "example_identifier": "6f306605", "id": { "method": "GET", "path": "/csv", @@ -27,7 +27,7 @@ } }, { - "example_identifier": "34d92e75", + "example_identifier": "6f306605", "id": { "method": "GET", "path": "/xml", diff --git a/seed/java-sdk/property-access/snippet.json b/seed/java-sdk/property-access/snippet.json index a926a106ca21..b783e73fd0bc 100644 --- a/seed/java-sdk/property-access/snippet.json +++ b/seed/java-sdk/property-access/snippet.json @@ -1,7 +1,7 @@ { "endpoints": [ { - "example_identifier": "4bbb9df1", + "example_identifier": "be600c1", "id": { "method": "POST", "path": "/users", diff --git a/seed/java-sdk/query-parameters-openapi-as-objects/snippet.json b/seed/java-sdk/query-parameters-openapi-as-objects/snippet.json index a3e708a67a1f..5d3195f9eaf7 100644 --- a/seed/java-sdk/query-parameters-openapi-as-objects/snippet.json +++ b/seed/java-sdk/query-parameters-openapi-as-objects/snippet.json @@ -1,7 +1,7 @@ { "endpoints": [ { - "example_identifier": "35362ae3", + "example_identifier": "333ce713", "id": { "method": "GET", "path": "/user/getUsername", diff --git a/seed/java-sdk/query-parameters-openapi/snippet.json b/seed/java-sdk/query-parameters-openapi/snippet.json index a3e708a67a1f..5d3195f9eaf7 100644 --- a/seed/java-sdk/query-parameters-openapi/snippet.json +++ b/seed/java-sdk/query-parameters-openapi/snippet.json @@ -1,7 +1,7 @@ { "endpoints": [ { - "example_identifier": "35362ae3", + "example_identifier": "333ce713", "id": { "method": "GET", "path": "/user/getUsername", diff --git a/seed/java-sdk/query-parameters/snippet.json b/seed/java-sdk/query-parameters/snippet.json index 09464bea42d5..2c73c63b202e 100644 --- a/seed/java-sdk/query-parameters/snippet.json +++ b/seed/java-sdk/query-parameters/snippet.json @@ -1,7 +1,7 @@ { "endpoints": [ { - "example_identifier": "55dd135a", + "example_identifier": "ec7906a", "id": { "method": "GET", "path": "/user", diff --git a/seed/java-sdk/request-parameters/snippet.json b/seed/java-sdk/request-parameters/snippet.json index dc4aa57a5d24..3c4cb2cbc128 100644 --- a/seed/java-sdk/request-parameters/snippet.json +++ b/seed/java-sdk/request-parameters/snippet.json @@ -1,7 +1,7 @@ { "endpoints": [ { - "example_identifier": "5e7d2974", + "example_identifier": "74eeb864", "id": { "method": "POST", "path": "/user/username", @@ -14,7 +14,7 @@ } }, { - "example_identifier": "7e9614fe", + "example_identifier": "b5ad77be", "id": { "method": "POST", "path": "/user/username-referenced", @@ -40,7 +40,7 @@ } }, { - "example_identifier": "78f7cd59", + "example_identifier": "3a9947a9", "id": { "method": "GET", "path": "/user", diff --git a/seed/java-sdk/required-nullable/snippet.json b/seed/java-sdk/required-nullable/snippet.json index bab0bdb70908..3ce74ac20c73 100644 --- a/seed/java-sdk/required-nullable/snippet.json +++ b/seed/java-sdk/required-nullable/snippet.json @@ -14,7 +14,7 @@ } }, { - "example_identifier": "bf58a2e9", + "example_identifier": "96ae2fe9", "id": { "method": "PATCH", "path": "/foo/{id}", diff --git a/seed/java-sdk/reserved-keywords/snippet.json b/seed/java-sdk/reserved-keywords/snippet.json index 4bf05c496e0c..1c26144b6972 100644 --- a/seed/java-sdk/reserved-keywords/snippet.json +++ b/seed/java-sdk/reserved-keywords/snippet.json @@ -1,7 +1,7 @@ { "endpoints": [ { - "example_identifier": "569d63b2", + "example_identifier": "4c484602", "id": { "method": "POST", "path": "/", diff --git a/seed/java-sdk/response-property/snippet.json b/seed/java-sdk/response-property/snippet.json index 2411243f09da..964d4c9e2957 100644 --- a/seed/java-sdk/response-property/snippet.json +++ b/seed/java-sdk/response-property/snippet.json @@ -1,7 +1,7 @@ { "endpoints": [ { - "example_identifier": "5aec11b3", + "example_identifier": "ba384db3", "id": { "method": "POST", "path": "/movie", @@ -14,7 +14,7 @@ } }, { - "example_identifier": "5aec11b3", + "example_identifier": "ba384db3", "id": { "method": "POST", "path": "/movie", @@ -27,7 +27,7 @@ } }, { - "example_identifier": "949d09f5", + "example_identifier": "68814bf5", "id": { "method": "POST", "path": "/movie", @@ -40,7 +40,7 @@ } }, { - "example_identifier": "5aec11b3", + "example_identifier": "ba384db3", "id": { "method": "POST", "path": "/movie", @@ -53,7 +53,7 @@ } }, { - "example_identifier": "2cea6315", + "example_identifier": "59530c35", "id": { "method": "POST", "path": "/movie", @@ -66,7 +66,7 @@ } }, { - "example_identifier": "3c3f0760", + "example_identifier": "af671950", "id": { "method": "POST", "path": "/movie", @@ -79,7 +79,7 @@ } }, { - "example_identifier": "bbb72c89", + "example_identifier": "f7881099", "id": { "method": "POST", "path": "/movie", diff --git a/seed/java-sdk/seed.yml b/seed/java-sdk/seed.yml index 52ee6043ce3a..8750e13f98f6 100644 --- a/seed/java-sdk/seed.yml +++ b/seed/java-sdk/seed.yml @@ -418,10 +418,6 @@ allowedFailures: # Bug with how java-sdk creates nightly balanced files - java-pagination-deep-cursor-path - # Staged builder snippets don't provide required file arguments (separate from positional shift fix) - - file-upload:inline-file-properties - - # Optional wire tests have snippet generation bug with optional(nullable(T)) # Snippet generator doesn't wrap value in Optional.of() for optional request bodies - optional:wire-tests diff --git a/seed/java-sdk/simple-api/snippet.json b/seed/java-sdk/simple-api/snippet.json index 20f93fc439bd..4e30bf2ce841 100644 --- a/seed/java-sdk/simple-api/snippet.json +++ b/seed/java-sdk/simple-api/snippet.json @@ -1,7 +1,7 @@ { "endpoints": [ { - "example_identifier": "a56f8dcd", + "example_identifier": "9d0e6dd", "id": { "method": "GET", "path": "/users/{id}", diff --git a/seed/java-sdk/simple-fhir/snippet.json b/seed/java-sdk/simple-fhir/snippet.json index 791a6dc0aeed..befd0bfc54e8 100644 --- a/seed/java-sdk/simple-fhir/snippet.json +++ b/seed/java-sdk/simple-fhir/snippet.json @@ -1,7 +1,7 @@ { "endpoints": [ { - "example_identifier": "423857f6", + "example_identifier": "f9692a36", "id": { "method": "GET", "path": "/account/{account_id}", diff --git a/seed/java-sdk/single-url-environment-default/snippet.json b/seed/java-sdk/single-url-environment-default/snippet.json index d32a2c6d9d35..c762ee4464ae 100644 --- a/seed/java-sdk/single-url-environment-default/snippet.json +++ b/seed/java-sdk/single-url-environment-default/snippet.json @@ -1,7 +1,7 @@ { "endpoints": [ { - "example_identifier": "34d92e75", + "example_identifier": "6f306605", "id": { "method": "GET", "path": "/dummy", diff --git a/seed/java-sdk/single-url-environment-no-default/snippet.json b/seed/java-sdk/single-url-environment-no-default/snippet.json index 14d4917f6eec..8769f69a2e1d 100644 --- a/seed/java-sdk/single-url-environment-no-default/snippet.json +++ b/seed/java-sdk/single-url-environment-no-default/snippet.json @@ -1,7 +1,7 @@ { "endpoints": [ { - "example_identifier": "34d92e75", + "example_identifier": "6f306605", "id": { "method": "GET", "path": "/dummy", diff --git a/seed/java-sdk/streaming/streaming/snippet.json b/seed/java-sdk/streaming/streaming/snippet.json index 13445d196fa3..4d6cce6df06e 100644 --- a/seed/java-sdk/streaming/streaming/snippet.json +++ b/seed/java-sdk/streaming/streaming/snippet.json @@ -1,7 +1,7 @@ { "endpoints": [ { - "example_identifier": "1eb0a3ea", + "example_identifier": "9e91d70a", "id": { "method": "POST", "path": "/generate-stream", diff --git a/seed/java-sdk/trace/snippet.json b/seed/java-sdk/trace/snippet.json index 40de4713819a..e77f536c7243 100644 --- a/seed/java-sdk/trace/snippet.json +++ b/seed/java-sdk/trace/snippet.json @@ -1,7 +1,7 @@ { "endpoints": [ { - "example_identifier": "82444d62", + "example_identifier": "7cf5c162", "id": { "method": "GET", "path": "/", @@ -14,7 +14,7 @@ } }, { - "example_identifier": "8110467b", + "example_identifier": "1b16a9db", "id": { "method": "POST", "path": "/admin/store-test-submission-status/{submissionId}", @@ -27,7 +27,7 @@ } }, { - "example_identifier": "384f3115", + "example_identifier": "600c3625", "id": { "method": "POST", "path": "/admin/store-test-submission-status-v2/{submissionId}", @@ -40,7 +40,7 @@ } }, { - "example_identifier": "769c3ced", + "example_identifier": "387ececd", "id": { "method": "POST", "path": "/admin/store-workspace-submission-status/{submissionId}", @@ -53,7 +53,7 @@ } }, { - "example_identifier": "adf1ce9", + "example_identifier": "6e21cb9", "id": { "method": "POST", "path": "/admin/store-workspace-submission-status-v2/{submissionId}", @@ -66,7 +66,7 @@ } }, { - "example_identifier": "d9ce988", + "example_identifier": "56b94338", "id": { "method": "POST", "path": "/admin/store-test-trace/submission/{submissionId}/testCase/{testCaseId}", @@ -79,7 +79,7 @@ } }, { - "example_identifier": "9591da72", + "example_identifier": "f54c88c2", "id": { "method": "POST", "path": "/admin/store-test-trace-v2/submission/{submissionId}/testCase/{testCaseId}", @@ -92,7 +92,7 @@ } }, { - "example_identifier": "44ed360e", + "example_identifier": "115a35ce", "id": { "method": "POST", "path": "/admin/store-workspace-trace/submission/{submissionId}", @@ -105,7 +105,7 @@ } }, { - "example_identifier": "44a2997f", + "example_identifier": "6fc9df6f", "id": { "method": "POST", "path": "/admin/store-workspace-trace-v2/submission/{submissionId}", @@ -118,7 +118,7 @@ } }, { - "example_identifier": "9cb8503a", + "example_identifier": "1e76b95a", "id": { "method": "GET", "path": "/homepage-problems", @@ -131,7 +131,7 @@ } }, { - "example_identifier": "266e865", + "example_identifier": "c2c664f5", "id": { "method": "POST", "path": "/homepage-problems", @@ -144,7 +144,7 @@ } }, { - "example_identifier": "4095659e", + "example_identifier": "4399ab6e", "id": { "method": "GET", "path": "/migration-info/all", @@ -157,7 +157,7 @@ } }, { - "example_identifier": "d3d30f88", + "example_identifier": "824d4aa8", "id": { "method": "POST", "path": "/v2/playlist/{serviceParam}/create", @@ -170,7 +170,7 @@ } }, { - "example_identifier": "e725a46", + "example_identifier": "918ac866", "id": { "method": "GET", "path": "/v2/playlist/{serviceParam}/all", @@ -183,7 +183,7 @@ } }, { - "example_identifier": "7e159cbb", + "example_identifier": "91c059ab", "id": { "method": "GET", "path": "/v2/playlist/{serviceParam}/{playlistId}", @@ -196,7 +196,7 @@ } }, { - "example_identifier": "74f85a66", + "example_identifier": "b07d6b66", "id": { "method": "PUT", "path": "/v2/playlist/{serviceParam}/{playlistId}", @@ -209,7 +209,7 @@ } }, { - "example_identifier": "a3c3872f", + "example_identifier": "ce9e961f", "id": { "method": "DELETE", "path": "/v2/playlist/{serviceParam}/{playlist_id}", @@ -222,7 +222,7 @@ } }, { - "example_identifier": "961933c4", + "example_identifier": "6fdafef4", "id": { "method": "POST", "path": "/problem-crud/create", @@ -235,7 +235,7 @@ } }, { - "example_identifier": "a5d5c06e", + "example_identifier": "c046332e", "id": { "method": "POST", "path": "/problem-crud/update/{problemId}", @@ -248,7 +248,7 @@ } }, { - "example_identifier": "58e1766b", + "example_identifier": "c845912b", "id": { "method": "DELETE", "path": "/problem-crud/delete/{problemId}", @@ -261,7 +261,7 @@ } }, { - "example_identifier": "f3025df", + "example_identifier": "491863bf", "id": { "method": "POST", "path": "/problem-crud/default-starter-files", @@ -274,7 +274,7 @@ } }, { - "example_identifier": "f0cbd3df", + "example_identifier": "c12513af", "id": { "method": "POST", "path": "/sessions/create-session/{language}", @@ -287,7 +287,7 @@ } }, { - "example_identifier": "b771444b", + "example_identifier": "ba31135b", "id": { "method": "GET", "path": "/sessions/{sessionId}", @@ -300,7 +300,7 @@ } }, { - "example_identifier": "f1199788", + "example_identifier": "5189bdb8", "id": { "method": "DELETE", "path": "/sessions/stop/{sessionId}", @@ -313,7 +313,7 @@ } }, { - "example_identifier": "225bb070", + "example_identifier": "6300e4f0", "id": { "method": "GET", "path": "/sessions/execution-sessions-state", @@ -326,7 +326,7 @@ } }, { - "example_identifier": "4a424812", + "example_identifier": "99fd0bb2", "id": { "method": "PUT", "path": "/sysprop/num-warm-instances/{language}/{numWarmInstances}", @@ -339,7 +339,7 @@ } }, { - "example_identifier": "3b4cce92", + "example_identifier": "bcfaa9b2", "id": { "method": "GET", "path": "/sysprop/num-warm-instances", @@ -352,7 +352,7 @@ } }, { - "example_identifier": "4bd36f0a", + "example_identifier": "47881fca", "id": { "method": "GET", "path": "/problems-v2/lightweight-problem-info", @@ -365,7 +365,7 @@ } }, { - "example_identifier": "ae1356", + "example_identifier": "496dbb96", "id": { "method": "GET", "path": "/problems-v2/problem-info", @@ -378,7 +378,7 @@ } }, { - "example_identifier": "e878ea25", + "example_identifier": "40edbf95", "id": { "method": "GET", "path": "/problems-v2/problem-info/{problemId}", @@ -391,7 +391,7 @@ } }, { - "example_identifier": "97c402f2", + "example_identifier": "9cf73592", "id": { "method": "GET", "path": "/problems-v2/problem-info/{problemId}/version/{problemVersion}", @@ -404,7 +404,7 @@ } }, { - "example_identifier": "689169f8", + "example_identifier": "8a8f3ef8", "id": { "method": "GET", "path": "/problems-v2/lightweight-problem-info", @@ -417,7 +417,7 @@ } }, { - "example_identifier": "3228b6e", + "example_identifier": "a350b80e", "id": { "method": "GET", "path": "/problems-v2/problem-info", @@ -430,7 +430,7 @@ } }, { - "example_identifier": "7d3b6c93", + "example_identifier": "2dedc723", "id": { "method": "GET", "path": "/problems-v2/problem-info/{problemId}", @@ -443,7 +443,7 @@ } }, { - "example_identifier": "e242c276", + "example_identifier": "c67a5d16", "id": { "method": "GET", "path": "/problems-v2/problem-info/{problemId}/version/{problemVersion}", diff --git a/seed/java-sdk/undiscriminated-union-with-response-property/snippet.json b/seed/java-sdk/undiscriminated-union-with-response-property/snippet.json index 1db0cfa5868b..86bfd175ae28 100644 --- a/seed/java-sdk/undiscriminated-union-with-response-property/snippet.json +++ b/seed/java-sdk/undiscriminated-union-with-response-property/snippet.json @@ -1,7 +1,7 @@ { "endpoints": [ { - "example_identifier": "627a6d11", + "example_identifier": "91de9871", "id": { "method": "GET", "path": "/union", @@ -14,7 +14,7 @@ } }, { - "example_identifier": "6fce9fb8", + "example_identifier": "9e0bf4e8", "id": { "method": "GET", "path": "/unions", diff --git a/seed/java-sdk/undiscriminated-unions/snippet.json b/seed/java-sdk/undiscriminated-unions/snippet.json index 605dd552056c..340a6e28f7b3 100644 --- a/seed/java-sdk/undiscriminated-unions/snippet.json +++ b/seed/java-sdk/undiscriminated-unions/snippet.json @@ -1,7 +1,7 @@ { "endpoints": [ { - "example_identifier": "6077f6cf", + "example_identifier": "101471f", "id": { "method": "POST", "path": "/", @@ -53,7 +53,7 @@ } }, { - "example_identifier": "1a3de9b7", + "example_identifier": "85e1a307", "id": { "method": "POST", "path": "/duplicate", @@ -66,7 +66,7 @@ } }, { - "example_identifier": "b191b93d", + "example_identifier": "fb1bb25d", "id": { "method": "POST", "path": "/nested", @@ -79,7 +79,7 @@ } }, { - "example_identifier": "7ae22e69", + "example_identifier": "385d03c9", "id": { "method": "POST", "path": "/nested-objects", @@ -92,7 +92,7 @@ } }, { - "example_identifier": "b3d21111", + "example_identifier": "6d4eeae1", "id": { "method": "POST", "path": "/aliased-object", @@ -105,7 +105,7 @@ } }, { - "example_identifier": "9577442f", + "example_identifier": "d1024f1f", "id": { "method": "POST", "path": "/with-base-properties", diff --git a/seed/java-sdk/union-query-parameters/snippet.json b/seed/java-sdk/union-query-parameters/snippet.json index 9680cc02bb77..9bd4cf3900e7 100644 --- a/seed/java-sdk/union-query-parameters/snippet.json +++ b/seed/java-sdk/union-query-parameters/snippet.json @@ -1,7 +1,7 @@ { "endpoints": [ { - "example_identifier": "a068a41a", + "example_identifier": "d86d966a", "id": { "method": "GET", "path": "/events", diff --git a/seed/java-sdk/unions-with-local-date/default/snippet.json b/seed/java-sdk/unions-with-local-date/default/snippet.json index 095b1b36b112..10e0b5317875 100644 --- a/seed/java-sdk/unions-with-local-date/default/snippet.json +++ b/seed/java-sdk/unions-with-local-date/default/snippet.json @@ -1,7 +1,7 @@ { "endpoints": [ { - "example_identifier": "612e2c19", + "example_identifier": "10544409", "id": { "method": "GET", "path": "/{id}", @@ -14,7 +14,7 @@ } }, { - "example_identifier": "a8b3f22c", + "example_identifier": "2c8845ec", "id": { "method": "PATCH", "path": "/", @@ -27,7 +27,7 @@ } }, { - "example_identifier": "27b5bc61", + "example_identifier": "2cc29e81", "id": { "method": "PATCH", "path": "/many", @@ -92,7 +92,7 @@ } }, { - "example_identifier": "f11647a", + "example_identifier": "c6431ffa", "id": { "method": "GET", "path": "/{id}", @@ -105,7 +105,7 @@ } }, { - "example_identifier": "68950139", + "example_identifier": "f7f9969", "id": { "method": "PATCH", "path": "/", diff --git a/seed/java-sdk/unions/default/snippet.json b/seed/java-sdk/unions/default/snippet.json index e6ad9ca8381b..10068378121b 100644 --- a/seed/java-sdk/unions/default/snippet.json +++ b/seed/java-sdk/unions/default/snippet.json @@ -1,7 +1,7 @@ { "endpoints": [ { - "example_identifier": "612e2c19", + "example_identifier": "10544409", "id": { "method": "GET", "path": "/bigunion/{id}", @@ -14,7 +14,7 @@ } }, { - "example_identifier": "a8b3f22c", + "example_identifier": "2c8845ec", "id": { "method": "PATCH", "path": "/bigunion", @@ -27,7 +27,7 @@ } }, { - "example_identifier": "27b5bc61", + "example_identifier": "2cc29e81", "id": { "method": "PATCH", "path": "/bigunion/many", @@ -40,7 +40,7 @@ } }, { - "example_identifier": "f11647a", + "example_identifier": "c6431ffa", "id": { "method": "GET", "path": "/{id}", @@ -53,7 +53,7 @@ } }, { - "example_identifier": "68950139", + "example_identifier": "f7f9969", "id": { "method": "PATCH", "path": "/", diff --git a/seed/java-sdk/unknown/snippet.json b/seed/java-sdk/unknown/snippet.json index 92b2a0ac86e3..fd1ea4c12bc8 100644 --- a/seed/java-sdk/unknown/snippet.json +++ b/seed/java-sdk/unknown/snippet.json @@ -1,7 +1,7 @@ { "endpoints": [ { - "example_identifier": "469a0f5a", + "example_identifier": "41a8430a", "id": { "method": "POST", "path": "/", @@ -14,7 +14,7 @@ } }, { - "example_identifier": "1a67c5ce", + "example_identifier": "ac88f08e", "id": { "method": "POST", "path": "/with-object", diff --git a/seed/java-sdk/validation/snippet.json b/seed/java-sdk/validation/snippet.json index da49c94cc3ae..aaca91b734f3 100644 --- a/seed/java-sdk/validation/snippet.json +++ b/seed/java-sdk/validation/snippet.json @@ -1,7 +1,7 @@ { "endpoints": [ { - "example_identifier": "ad52f1f2", + "example_identifier": "f25bb0d2", "id": { "method": "POST", "path": "/create", @@ -14,7 +14,7 @@ } }, { - "example_identifier": "7504d5e2", + "example_identifier": "998c8be2", "id": { "method": "GET", "path": "/", diff --git a/seed/java-sdk/version-no-default/snippet.json b/seed/java-sdk/version-no-default/snippet.json index e6a3bb9f2ff4..6a3aba3d4d69 100644 --- a/seed/java-sdk/version-no-default/snippet.json +++ b/seed/java-sdk/version-no-default/snippet.json @@ -1,7 +1,7 @@ { "endpoints": [ { - "example_identifier": "6fd46b1f", + "example_identifier": "a87d1ddf", "id": { "method": "GET", "path": "/users/{userId}", diff --git a/seed/java-sdk/version/forward-compatible-enums/snippet.json b/seed/java-sdk/version/forward-compatible-enums/snippet.json index e6a3bb9f2ff4..6a3aba3d4d69 100644 --- a/seed/java-sdk/version/forward-compatible-enums/snippet.json +++ b/seed/java-sdk/version/forward-compatible-enums/snippet.json @@ -1,7 +1,7 @@ { "endpoints": [ { - "example_identifier": "6fd46b1f", + "example_identifier": "a87d1ddf", "id": { "method": "GET", "path": "/users/{userId}", diff --git a/seed/java-sdk/version/no-custom-config/snippet.json b/seed/java-sdk/version/no-custom-config/snippet.json index e6a3bb9f2ff4..6a3aba3d4d69 100644 --- a/seed/java-sdk/version/no-custom-config/snippet.json +++ b/seed/java-sdk/version/no-custom-config/snippet.json @@ -1,7 +1,7 @@ { "endpoints": [ { - "example_identifier": "6fd46b1f", + "example_identifier": "a87d1ddf", "id": { "method": "GET", "path": "/users/{userId}", diff --git a/seed/java-sdk/websocket-inferred-auth/snippet.json b/seed/java-sdk/websocket-inferred-auth/snippet.json index 7409bba5141b..86eead2c9f2a 100644 --- a/seed/java-sdk/websocket-inferred-auth/snippet.json +++ b/seed/java-sdk/websocket-inferred-auth/snippet.json @@ -1,7 +1,7 @@ { "endpoints": [ { - "example_identifier": "d8c92b17", + "example_identifier": "ea1c60d7", "id": { "method": "POST", "path": "/token", @@ -14,7 +14,7 @@ } }, { - "example_identifier": "87332aef", + "example_identifier": "9172d11f", "id": { "method": "POST", "path": "/token/refresh", diff --git a/seed/java-sdk/websocket/snippet.json b/seed/java-sdk/websocket/snippet.json index 38a95320326a..12473cc5d5f4 100644 --- a/seed/java-sdk/websocket/snippet.json +++ b/seed/java-sdk/websocket/snippet.json @@ -1,7 +1,7 @@ { "endpoints": [ { - "example_identifier": "d3eed189", + "example_identifier": "d5c8ce49", "id": { "method": "GET", "path": "/status", diff --git a/seed/python-sdk/exhaustive/deps_with_min_python_version/poetry.lock b/seed/python-sdk/exhaustive/deps_with_min_python_version/poetry.lock index c1c7728bbb0e..9c62f3f90157 100644 --- a/seed/python-sdk/exhaustive/deps_with_min_python_version/poetry.lock +++ b/seed/python-sdk/exhaustive/deps_with_min_python_version/poetry.lock @@ -993,14 +993,14 @@ tiktoken = ">=0.7.0,<1.0.0" [[package]] name = "langchain-protocol" -version = "0.0.17" +version = "0.0.18" description = "Python bindings for the LangChain agent streaming protocol" optional = false python-versions = "<4.0.0,>=3.10.0" groups = ["dev"] files = [ - {file = "langchain_protocol-0.0.17-py3-none-any.whl", hash = "sha256:982a08fe152586ed10d4ff3d538c2e0b5766e5f307cdea325e10be3f2c17cae6"}, - {file = "langchain_protocol-0.0.17.tar.gz", hash = "sha256:e7cbe58c205df4b4fd87dc6d5bb23f10e13b236d0e2e1b0b9d05bc2b648f3eea"}, + {file = "langchain_protocol-0.0.18-py3-none-any.whl", hash = "sha256:70b53a86fbf9cedc863555effe44da192ab02d556ddbf2cf95b8873adcf41b5a"}, + {file = "langchain_protocol-0.0.18.tar.gz", hash = "sha256:ec3e11782f1ed0c9db38e5a9ed01b0e7a0d3fba406faa8aef6594b73c56a63e6"}, ] [package.dependencies] @@ -1339,14 +1339,14 @@ files = [ [[package]] name = "openai" -version = "2.42.0" +version = "2.43.0" description = "The official Python library for the openai API" optional = false python-versions = ">=3.9" groups = ["dev"] files = [ - {file = "openai-2.42.0-py3-none-any.whl", hash = "sha256:8cd46b1877cfd4aea7ade9474940cc4f78dbd41cce3893de11c12510d0b70caf"}, - {file = "openai-2.42.0.tar.gz", hash = "sha256:5263ee2868608571499df225471770238c8f3ff1ac296874bfc096bbabb6da3a"}, + {file = "openai-2.43.0-py3-none-any.whl", hash = "sha256:65a670b54fadf2268c9e1330133373c963eb779ee969e5cbad419ec2c21dce97"}, + {file = "openai-2.43.0.tar.gz", hash = "sha256:e74d238200a26868977002190fb6631613480a93dfe0c9c982e77021ed60a017"}, ] [package.dependencies] @@ -2473,105 +2473,105 @@ zstd = ["backports-zstd (>=1.0.0) ; python_version < \"3.14\""] [[package]] name = "uuid-utils" -version = "0.16.1" +version = "0.16.2" description = "Fast, drop-in replacement for Python's uuid module, powered by Rust." optional = false python-versions = ">=3.10" groups = ["dev"] files = [ - {file = "uuid_utils-0.16.1-cp310-cp310-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl", hash = "sha256:e67f7b9e7955e442ed261369dadce0b277d1a6693e36f365b4a81b5bdaba6450"}, - {file = "uuid_utils-0.16.1-cp310-cp310-macosx_10_12_x86_64.whl", hash = "sha256:ea3b1ed2d7ad271d220ea69d76c336d253f493ae0b0b34c3b21925d8bea1f630"}, - {file = "uuid_utils-0.16.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ad28628a73da6bc1512fab8f53ad61350683a63cb5d391fe07b7864eee8ba640"}, - {file = "uuid_utils-0.16.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:f6e7e54aadbdd7e2a1c0e41b4e57ccdde1df91ee32a09a368cac12fcdd190f33"}, - {file = "uuid_utils-0.16.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:dbff94632989dac51117f2f1c0f58268859aa18f797357f176d46aa53c6ed6ba"}, - {file = "uuid_utils-0.16.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:40303a81816156aca750663c0cf11ecacb3369f561ebb38c992efa9c6af94285"}, - {file = "uuid_utils-0.16.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:1d26448ea50c6c43aac153d521afb26b271d9cb751f3877b180c683263b2a42b"}, - {file = "uuid_utils-0.16.1-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:dbb29b9066c6eda402e196b62ef84b0202f2c3f5b425358da4fd2912609bd99f"}, - {file = "uuid_utils-0.16.1-cp310-cp310-musllinux_1_2_armv7l.whl", hash = "sha256:4d4f1b28b082074cab627d07185d29ed7d601eb59490f136f4d31f4d252c0af8"}, - {file = "uuid_utils-0.16.1-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:9ccb2e5b1b104ae579b23d0a5ecbc21fcccdd8a7ad7bc95f5b7543a4f472208a"}, - {file = "uuid_utils-0.16.1-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:b12f8e7cda30ecce24bdc20fc1f1b21d5f597541afc816034fd1701db034226a"}, - {file = "uuid_utils-0.16.1-cp310-cp310-win32.whl", hash = "sha256:ab2a2322a3203977d02c15e836c1f531fd37905f66cfa6b029b82b647a6e8622"}, - {file = "uuid_utils-0.16.1-cp310-cp310-win_amd64.whl", hash = "sha256:6a78cfd838f00225ef3acfbbf0ab2c2e9e7a43f2876c2f0bf30eef771e86c4e0"}, - {file = "uuid_utils-0.16.1-cp311-cp311-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl", hash = "sha256:05a98f47805dce1658dd143503e85a3eb4aed9d9638c8138948a72c626850a55"}, - {file = "uuid_utils-0.16.1-cp311-cp311-macosx_10_12_x86_64.whl", hash = "sha256:6703961c037c783c88b2770a7fe8e4027b85144f5625da51a16eb4141903627d"}, - {file = "uuid_utils-0.16.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e2d57530d894e8bbb04c9a81f1cc577a71d373f1303c69382ad1d486fe3b4780"}, - {file = "uuid_utils-0.16.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:b05bebcd4f428b6a4a43c94e85bb65522714a99f4ef62ecb8991fab9a349c52d"}, - {file = "uuid_utils-0.16.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:21a39b304540400c3398fff922cbb240f402c0e15f68057f83e2bb80d98e30ef"}, - {file = "uuid_utils-0.16.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:72085b587d100e8e724addea0c3c20274f1e3ebfd04dfabd239cb60db6818554"}, - {file = "uuid_utils-0.16.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:de2172b3a22653127643903e4293cda737a79f6dc902e0dc56be2d297c1a1ecb"}, - {file = "uuid_utils-0.16.1-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:a3d345bc9df1767d7c3ab772af320579c22d9a87ee04bd22f5c6590c50ca7282"}, - {file = "uuid_utils-0.16.1-cp311-cp311-musllinux_1_2_armv7l.whl", hash = "sha256:0fa88f567c5bd4a6d9a69833b36351fb7922f29d763e52e0c6b0d1d5689e1c6b"}, - {file = "uuid_utils-0.16.1-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:33e17731701cfa5f4625d0050eba9bc7cdec652baeeabf0e3f162f42ac4f248e"}, - {file = "uuid_utils-0.16.1-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:957cde5afdc85a59708e533d8e1194d2d3224fc1b5013008868864657aa73cdf"}, - {file = "uuid_utils-0.16.1-cp311-cp311-win32.whl", hash = "sha256:2f30ffeecde5c57903b03f526225131dadf7fd14b7134f12ff65234e3769668a"}, - {file = "uuid_utils-0.16.1-cp311-cp311-win_amd64.whl", hash = "sha256:9f5eef68f0c8bd341bff3ad6e8a05c13f153113b8d8c71f724bf224ba7bbfd21"}, - {file = "uuid_utils-0.16.1-cp311-cp311-win_arm64.whl", hash = "sha256:9fa28ac6ec2210c49b4359b0e061473b8d6c79cff8612668ed7f092b73a81976"}, - {file = "uuid_utils-0.16.1-cp312-cp312-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl", hash = "sha256:c9bad1c6e47bb9ac56faea8c23c3214eb7be55612e12ea3c05b0c01aa824083c"}, - {file = "uuid_utils-0.16.1-cp312-cp312-macosx_10_12_x86_64.whl", hash = "sha256:1653e4d45fdd2159e242b8fe382cb48c1955a3eb6a3f25009357b1e7d910f374"}, - {file = "uuid_utils-0.16.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:fcc71914c555cd11d88d3f3a9c5e971b9aa5921423d5495b286cec4f09f6ba12"}, - {file = "uuid_utils-0.16.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:d0e4a28ed6eca38ce71423c27d13ba16d0da77f04315a2ed391a4f0565abecc6"}, - {file = "uuid_utils-0.16.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:82b0a3abf892aa0c7c7657f81359e2388cf8b20e64e7f897934720198e9d3975"}, - {file = "uuid_utils-0.16.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:47ea8f2544a301f6cbd81377d638f4ac1f6f860f21133f4d18a450bb4baf9d42"}, - {file = "uuid_utils-0.16.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:75bfa6af766bc73b1a36e49ebb3c35b61fe9f1e5e584c26a2ad32ba01c5b8513"}, - {file = "uuid_utils-0.16.1-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:463e7fb4ad94d8ef9fc32bd118c39cab45e2ba7e14c61b7d0e859c0767323bdc"}, - {file = "uuid_utils-0.16.1-cp312-cp312-musllinux_1_2_armv7l.whl", hash = "sha256:59f9ccb7b0d022cb184be56e0c7bd908f1b1129ba946c8e4b1ea0e39784597c8"}, - {file = "uuid_utils-0.16.1-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:c3c4f3d5d22deaab29d17c5def41d45733d043dc667492cbb5c85b1bd8301ad5"}, - {file = "uuid_utils-0.16.1-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:931732efbcece3399ea5250732c0a75f91c2f5172b74641bbf707cdcaf58bd1b"}, - {file = "uuid_utils-0.16.1-cp312-cp312-win32.whl", hash = "sha256:89a160cb85331b271f73903bbc4a6d47c668497d3c10abfbcdd670329fcec218"}, - {file = "uuid_utils-0.16.1-cp312-cp312-win_amd64.whl", hash = "sha256:4f57d1d08e8b304a44e350d873b8343780b83b111d85ebac11db2661ca68b701"}, - {file = "uuid_utils-0.16.1-cp312-cp312-win_arm64.whl", hash = "sha256:7e77476788e1db2b5a7c53fa7437a259af7d872c910e379ee4b6e3f780785dc8"}, - {file = "uuid_utils-0.16.1-cp313-cp313-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl", hash = "sha256:1808d4453c0d0469092c7d84c90e695229e26275287f10d1717d1be8f6c08acf"}, - {file = "uuid_utils-0.16.1-cp313-cp313-macosx_10_12_x86_64.whl", hash = "sha256:6c1af7d68f53b4c91dc8c291a347a74bf2b0a25c9a28a66a24197c2c593ce024"}, - {file = "uuid_utils-0.16.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e82e709fb3f260a2680fa8a4918b600de153357fb5c9f69463a8c28b5a737e00"}, - {file = "uuid_utils-0.16.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:2dd909678ee21a77d21c81b394c99f9a40ec11ec8b60a7074f1b01a765e70b97"}, - {file = "uuid_utils-0.16.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:9c6cc68b3e08164b09bdcec302fd597584739dc45e701b2a0473fcf2406ae5ba"}, - {file = "uuid_utils-0.16.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:2be8a39895ddc1f4b1814c7f08178755e77e53197f609232f19ef0798bcb68bf"}, - {file = "uuid_utils-0.16.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:5069e78a05010bd7e8ee1add95ca030d1365014f68de5fbbcb6dc1a313ec19a4"}, - {file = "uuid_utils-0.16.1-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:6c95a339679edca5908b0769c404f103ab4c39b20eb424059b1219709d75d56b"}, - {file = "uuid_utils-0.16.1-cp313-cp313-musllinux_1_2_armv7l.whl", hash = "sha256:1f547598a5afc1456768a6b7eb2952e9db936d730fdf2b3e60740d4417e1eecd"}, - {file = "uuid_utils-0.16.1-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:07a9c972f7e22e3a937671415cc006999ebe6e243051bf8f22e553e2a089bcc5"}, - {file = "uuid_utils-0.16.1-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:327ec607b6386c99c50486bd0f2a7d0c5996e6085764a923425327f3fa8c8787"}, - {file = "uuid_utils-0.16.1-cp313-cp313-pyemscripten_2025_0_wasm32.whl", hash = "sha256:c8188ffd368ab005833e51b304b0f5f2967fa97bb10b01a4c91ab2ea01d4f33c"}, - {file = "uuid_utils-0.16.1-cp313-cp313-win32.whl", hash = "sha256:717696c17f1d15f577bcf90464163d39f7b36d8925b3cbbd044032855c59050b"}, - {file = "uuid_utils-0.16.1-cp313-cp313-win_amd64.whl", hash = "sha256:4702353d3ca02d36db089af40ab963a0b7231c496f5012433e8deda1027a4d6b"}, - {file = "uuid_utils-0.16.1-cp313-cp313-win_arm64.whl", hash = "sha256:5915ed4face0439d566360db0040aa91236be8f1d717dffd92e312da52f14434"}, - {file = "uuid_utils-0.16.1-cp314-cp314-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl", hash = "sha256:f3fa8c13516ecb3f8fdc6d454f2aa82412ea155071d003ef592522f7248eff2e"}, - {file = "uuid_utils-0.16.1-cp314-cp314-macosx_10_12_x86_64.whl", hash = "sha256:647f53c992ae2799924c870065f2615a0e1e3dd1394273b7b64de1d965ffe251"}, - {file = "uuid_utils-0.16.1-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f4e72deb0c4fc48ffceec4b5776460734ccfdd26cdc4f466e6b525db528cf3c9"}, - {file = "uuid_utils-0.16.1-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:554379de42217d21fa4cb141877df317d015bc75e6f80cc86d87054dd8c63aa2"}, - {file = "uuid_utils-0.16.1-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ec209a454806b34e2d6fd41706d62a77c2f671192388369f65947b50f8dce14b"}, - {file = "uuid_utils-0.16.1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3e1f5958466456ba330273320baa9a1e78a0773f3c4af22bfdcbf3ea49b77277"}, - {file = "uuid_utils-0.16.1-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:1bc891f047c29e4e5947942fa386eab642fed082bccb932e4b1f29fb98c760f5"}, - {file = "uuid_utils-0.16.1-cp314-cp314-musllinux_1_2_aarch64.whl", hash = "sha256:f74c53f01aa5a0d5f69d44f9c18b4ae676b9456ff914340c7c37032547c36553"}, - {file = "uuid_utils-0.16.1-cp314-cp314-musllinux_1_2_armv7l.whl", hash = "sha256:1168f364da715143e58c1cf3f0533fc62be18cb08d89ff934faa0b3911b07f4b"}, - {file = "uuid_utils-0.16.1-cp314-cp314-musllinux_1_2_i686.whl", hash = "sha256:e13d6f28174ff47cc2c956d1b1ced15ecb41b485dc567f0868c242fef767d6ab"}, - {file = "uuid_utils-0.16.1-cp314-cp314-musllinux_1_2_x86_64.whl", hash = "sha256:3474a0aa88a59451bfe1053e59c342ce9c57efaca864d26106ffe40f1d18ad2e"}, - {file = "uuid_utils-0.16.1-cp314-cp314-win32.whl", hash = "sha256:3823a2aa06b912ff119d2ed1da19f549ffb2b0ac3187560d1afd5d5e0f905e21"}, - {file = "uuid_utils-0.16.1-cp314-cp314-win_amd64.whl", hash = "sha256:8c29a69b1710716ef356e3e4adf557f122381cf0622bd8034900f33f3621ad10"}, - {file = "uuid_utils-0.16.1-cp314-cp314-win_arm64.whl", hash = "sha256:793ce3c40cb6690de63ba5859ba1a7d324dd317368a6d941a9a069cc3121f80e"}, - {file = "uuid_utils-0.16.1-cp314-cp314t-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl", hash = "sha256:a60cec7b6b0a8fa6048f386b50fa3741ec31e4a4c64682d9d4a6cc809381d655"}, - {file = "uuid_utils-0.16.1-cp314-cp314t-macosx_10_12_x86_64.whl", hash = "sha256:856507775e45660a00e603622108ad07be666ea2f0c333c51d8d857c490d25e7"}, - {file = "uuid_utils-0.16.1-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d41154865431e6e9b3bf28c8ecead4af3653f24029f64561dc0968537ebd890c"}, - {file = "uuid_utils-0.16.1-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:9ca3ab4579e7335b1e7cf0be5a889cd2f9561150377e88264663235ed94f0c44"}, - {file = "uuid_utils-0.16.1-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:43e981840285825ece6a861c600b3e0da93575a67aac20fcf77d185e615a6ef6"}, - {file = "uuid_utils-0.16.1-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:79b42065d01244c04c92ba252e6cf877edf845cf5a55ed7d5a14e1ad3f3efee3"}, - {file = "uuid_utils-0.16.1-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:d6c492464bccfab7872bbd6a7257841f70259bf9eb16f98e1b78648ed40ea2dc"}, - {file = "uuid_utils-0.16.1-cp314-cp314t-musllinux_1_2_aarch64.whl", hash = "sha256:8c0bedc59f321b299ff6626ef76c163e4731614066103708c0158054b7fee184"}, - {file = "uuid_utils-0.16.1-cp314-cp314t-musllinux_1_2_armv7l.whl", hash = "sha256:a99383f696d5f8b3621a8d5f8501e8760539276f05ae341b26b842b414f25c28"}, - {file = "uuid_utils-0.16.1-cp314-cp314t-musllinux_1_2_i686.whl", hash = "sha256:684efe2e5980a516f369d393b87d30ddfcc1d30ab9d50d47881d86b719f07e30"}, - {file = "uuid_utils-0.16.1-cp314-cp314t-musllinux_1_2_x86_64.whl", hash = "sha256:5480507adc72cda50a4d923c68c7f82f39e7833a92379298743efdb084646bda"}, - {file = "uuid_utils-0.16.1-cp314-cp314t-win32.whl", hash = "sha256:f330f1ab05ad26a6bdd4717136c2a4e417b853688ceb40b1a537130cf542cf0c"}, - {file = "uuid_utils-0.16.1-cp314-cp314t-win_amd64.whl", hash = "sha256:8f29c7afeff321567b47cd5ce26560bef2528f317f398f127ac5d1c3c8b864f7"}, - {file = "uuid_utils-0.16.1-cp314-cp314t-win_arm64.whl", hash = "sha256:702559aad80d8be2ff31a425004654153b2d7ed9448dceea32cf7e83ecc5e403"}, - {file = "uuid_utils-0.16.1-pp311-pypy311_pp73-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl", hash = "sha256:67c7381a5673d8227dbe205f130b425af9f47dafd844e6fe65be0cd7c0ad4c32"}, - {file = "uuid_utils-0.16.1-pp311-pypy311_pp73-macosx_10_12_x86_64.whl", hash = "sha256:4f97514417941797014c4a29280be571586a8e29b6e0e467a13c9738e124247a"}, - {file = "uuid_utils-0.16.1-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5f666ec673f6722de62619dbfc5fa4ff4518674caba8a2bb0e5a99d720b9d9af"}, - {file = "uuid_utils-0.16.1-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:6abcd34ef51ff5ede64c565fc19bca662b529990edf22172fa15f7e7a7598085"}, - {file = "uuid_utils-0.16.1-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:85fb3d570e0fb939c480a932e7e7abea88f45d5e9dd1175ea52382d8a6db0106"}, - {file = "uuid_utils-0.16.1-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ec1e7c073113f80137c12f76003b8100c2b8509c8462eb4bde9f4d9ead4ff372"}, - {file = "uuid_utils-0.16.1-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:65b41989f392087b78c1bc5bf2edc79cff7d277a1284d60cb1c901b6c52ba3fe"}, - {file = "uuid_utils-0.16.1-pp311-pypy311_pp73-win_amd64.whl", hash = "sha256:c509fa21729f9400eaea60d7891e6b20ec9193799794e1f0acfad5324fb7d9ee"}, - {file = "uuid_utils-0.16.1.tar.gz", hash = "sha256:60add5671aaf99cb2fe03359d9f04da27443eadd03ce523e3c64635acd3123fb"}, + {file = "uuid_utils-0.16.2-cp310-cp310-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl", hash = "sha256:89a627f74cb55aa508809592ab9149806649e4ee37f4bc91b60c7ec10929f0eb"}, + {file = "uuid_utils-0.16.2-cp310-cp310-macosx_10_12_x86_64.whl", hash = "sha256:e92875a315f3cc4fe7a2324c17b3c7ac5e3fd0e24b14fc4deb28370431fe6a2b"}, + {file = "uuid_utils-0.16.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:945e1819dde4cce6828683ce11311977e73e6d46c6cc18e5fb9fcab2051b94bb"}, + {file = "uuid_utils-0.16.2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:2cd4612085e6bbf6a00b9890779023ea97fe1ee8dd1758381022f7588a06e123"}, + {file = "uuid_utils-0.16.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:887efa34701d197239ec3b0e89993ee8c0cea1746483b606e54746ea81c966f4"}, + {file = "uuid_utils-0.16.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:22446af2ae47d1054562b159bcd65714a022713e56697eef77cb5f291dc5ef13"}, + {file = "uuid_utils-0.16.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:41165aa4059e3b03605c1c8c48df6c887a16f8f6a1fc4cb2155360a61aad8666"}, + {file = "uuid_utils-0.16.2-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:2ef60e0a91675cfd9850e8aefd0d899fe09c4afb572bbe0ac2de4f8848d7663d"}, + {file = "uuid_utils-0.16.2-cp310-cp310-musllinux_1_2_armv7l.whl", hash = "sha256:6fe3fb4bcecef69cacf3a11e182e204ce778998bd439152a173bdd2e9e8e9cfa"}, + {file = "uuid_utils-0.16.2-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:fcc212dec731aeba110953643c214982e667cab9802f7d99d066e03ba0c44c90"}, + {file = "uuid_utils-0.16.2-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:3aa5c2ebc843e85a078ec27c1ad677871c44065b3dd58748166783a3c454859f"}, + {file = "uuid_utils-0.16.2-cp310-cp310-win32.whl", hash = "sha256:dcf20151d2aa451013f2b3c2cce06958f43b7573b5f616adb91786c7b777715b"}, + {file = "uuid_utils-0.16.2-cp310-cp310-win_amd64.whl", hash = "sha256:f709169579a356132f224d525ed589f88d466bbb922b9d752d8d86b1fb57ad46"}, + {file = "uuid_utils-0.16.2-cp311-cp311-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl", hash = "sha256:fadd23eee409237fb8637a35796a6e108873c28b40f7de89a36685f18ca055ad"}, + {file = "uuid_utils-0.16.2-cp311-cp311-macosx_10_12_x86_64.whl", hash = "sha256:79c5a3bd4301257b9a524efd16baf61ea65cd0d1b60b47d80f20b151fd65a09f"}, + {file = "uuid_utils-0.16.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:90903ab7fcdfb0300390c15f5a68cb91f15139d9a1a93f134c783d7a973fa269"}, + {file = "uuid_utils-0.16.2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:f7a44f8250ec178c0af703c3f1b6e81865a771272ae735ca403f27c95c62f132"}, + {file = "uuid_utils-0.16.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:9e97ab941660f781a8e45f15aba9ee01b40dbb96adb5c43617c1671a4604b25b"}, + {file = "uuid_utils-0.16.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1a30b6a5790acb854e4b65fae7875e5d3c6f8076fa9c91dac43ff9e28380bc52"}, + {file = "uuid_utils-0.16.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:5dfc3e9e75139a84898771d31958ece6cdee8e8f127700aa8aa26a4f1a348d57"}, + {file = "uuid_utils-0.16.2-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:0529b1ef0788f663e1211d221b59a38ec67f9b084f1ea5342ba84358b3d87e98"}, + {file = "uuid_utils-0.16.2-cp311-cp311-musllinux_1_2_armv7l.whl", hash = "sha256:cae08df8695f4b01fce2a8ab50e9e310971276d85dfc7103e977bed52d365094"}, + {file = "uuid_utils-0.16.2-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:f69658c42411540cf58be958a47e317fd2302cc0b613ea5cff1e60d87be2846d"}, + {file = "uuid_utils-0.16.2-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:503f020acc7dbeb39c47fa33cf2971cf5960fa11f8394513fac461762a90c556"}, + {file = "uuid_utils-0.16.2-cp311-cp311-win32.whl", hash = "sha256:aab7cdf28a3e2859ca4f40a3e3bf53eb35895039c80d4d8d8c5e15b90346c55c"}, + {file = "uuid_utils-0.16.2-cp311-cp311-win_amd64.whl", hash = "sha256:71192a59d473f3f638e2a238905046e2942006ad90ac5ec10d578e58ff9a08ce"}, + {file = "uuid_utils-0.16.2-cp311-cp311-win_arm64.whl", hash = "sha256:ea175649789f1e93edbf1a0440cab18c9838977703917221777691d8d988d7bf"}, + {file = "uuid_utils-0.16.2-cp312-cp312-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl", hash = "sha256:6f064dc54c6abecb09eb104d953bfb079f3c395e0d6b18899979f852d1083549"}, + {file = "uuid_utils-0.16.2-cp312-cp312-macosx_10_12_x86_64.whl", hash = "sha256:dd7aa18db5cc826d482d876a826fee445839701f81f78567e7c74b4458d57a84"}, + {file = "uuid_utils-0.16.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:cc25ad320c9b44c2d3ed33aff4f85b0b277bef4ff79b12c01ee58b52ea44be1d"}, + {file = "uuid_utils-0.16.2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:d0ca752d51d1004caff65fccffd44b32a26cb099b546e0512cfa09facb683d6c"}, + {file = "uuid_utils-0.16.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:8323136bb02355c1b973492ab98b0722206dfdedfb148e4115c35fcdf3889bad"}, + {file = "uuid_utils-0.16.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9bf8bfdffb22f620635580b17fd178272f30a9841b824b19b935c8db64bf09b6"}, + {file = "uuid_utils-0.16.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:61454f2139424a6cff14eca7849c28b3350f261453b74075aa20fe99592dbb16"}, + {file = "uuid_utils-0.16.2-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:725110434a1d482a639a9ac467a24f1cb531d84ab52e454a13fe145b10b42cae"}, + {file = "uuid_utils-0.16.2-cp312-cp312-musllinux_1_2_armv7l.whl", hash = "sha256:8197870739a3094990743a80f075fa0b17beafd6c187e5f360e021d90a12a6d1"}, + {file = "uuid_utils-0.16.2-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:e10a02b3a31ed44c7c9a96abde335f5fa222735e73f3081d693414377eb3b016"}, + {file = "uuid_utils-0.16.2-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:fd32dbca0792b9683160151dc07fad11b915020eed7c82b43faf0862c2ff06a0"}, + {file = "uuid_utils-0.16.2-cp312-cp312-win32.whl", hash = "sha256:dcdfcab60562d12dd43c1a6f495b1d089e41f0e10fac37d94db285d72b678c23"}, + {file = "uuid_utils-0.16.2-cp312-cp312-win_amd64.whl", hash = "sha256:97ee6f5e803ea571f5f6da42efc97d8c5a13f121043680177f8470529b94e855"}, + {file = "uuid_utils-0.16.2-cp312-cp312-win_arm64.whl", hash = "sha256:72cfd9ff1e8a7c371a044687e77eb873721c4a9f4814e453439bfba595b84303"}, + {file = "uuid_utils-0.16.2-cp313-cp313-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl", hash = "sha256:c19b7d595d12923da682ed13d313c2333b9ebf214e65a47a24927a8a3a81b191"}, + {file = "uuid_utils-0.16.2-cp313-cp313-macosx_10_12_x86_64.whl", hash = "sha256:909e26fa2451c8db31b9ed1d3c8e4ecf513b6d1619db4205997fe99eb6b4ef4f"}, + {file = "uuid_utils-0.16.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:27271b37fbc6812bb1542c4b8e22ee00223a6bf7f62b1f38d3bcf8e92f6d9acd"}, + {file = "uuid_utils-0.16.2-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:dc4b9d96a2c689d664cf3fc7f7db46b82d2821fb2ce8a4f0798fc0a92c1569f8"}, + {file = "uuid_utils-0.16.2-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:c3bf41b696b0fe808df1b4091c70273a52ea033b0fe97341cd67ecd76d22bb3a"}, + {file = "uuid_utils-0.16.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:fcc329be41bb6534ecb03e50596179ab76c7643ced33d13c66967d5ae1869663"}, + {file = "uuid_utils-0.16.2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:4125bf6ed3ae443c05e140f8585d174b9d647295b12034d5ec94ae2ae38edefa"}, + {file = "uuid_utils-0.16.2-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:840b21e609a9b203eee06bdc73e18397154447a9814a8e78d9b68e5104d9802f"}, + {file = "uuid_utils-0.16.2-cp313-cp313-musllinux_1_2_armv7l.whl", hash = "sha256:5119bec75f56bd028d97472f72b1ed723a0d60b09a48017dc70a3cb1892ed081"}, + {file = "uuid_utils-0.16.2-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:9fe600ab7d3d4eb56986e814042c917e728ac92cd8a41f099a6b59b84d8bf9e6"}, + {file = "uuid_utils-0.16.2-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:e44020a4532229ccfbba353138539774686350dda71cf4368e257973dd8ba403"}, + {file = "uuid_utils-0.16.2-cp313-cp313-pyemscripten_2025_0_wasm32.whl", hash = "sha256:280d4f1f22dd2e79c1cc31ffc7fc26dc3534ffc114dedcdd29cc8489c5ce9c98"}, + {file = "uuid_utils-0.16.2-cp313-cp313-win32.whl", hash = "sha256:4942b26ad12c5187bac52b7fb4685040139ff0df9a19cde33e5025326f6180fc"}, + {file = "uuid_utils-0.16.2-cp313-cp313-win_amd64.whl", hash = "sha256:01f81c71cf2185de0707e9d2f248e17025ba50af0acd3cbf51cd8aea96c2e0be"}, + {file = "uuid_utils-0.16.2-cp313-cp313-win_arm64.whl", hash = "sha256:c1dbe65ce6d46c5f645356d64bfb2de7564e2426ca8c9b1a0a401d6f7ae5cc22"}, + {file = "uuid_utils-0.16.2-cp314-cp314-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl", hash = "sha256:617955f4b3f649617c0388127d8a257202189d5cc3c720313f8b207df1cdb2a4"}, + {file = "uuid_utils-0.16.2-cp314-cp314-macosx_10_12_x86_64.whl", hash = "sha256:0aa2569908bdb21ccb216cd6bd06cb934351ee65ea7cd5e351e19f633a99b577"}, + {file = "uuid_utils-0.16.2-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f4af7673e84e1ec6029f18d3a0408095c471c4e2691b6e46b4e1f0a2051734ba"}, + {file = "uuid_utils-0.16.2-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:ecadf55ed6b8fb72e7966b52fd02919e7d7bb8e7bffeaf285803b82e774debfb"}, + {file = "uuid_utils-0.16.2-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:026b96b2f1e6b004579e030692d2f6568ccd0b29d40687213c31694abf570c78"}, + {file = "uuid_utils-0.16.2-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:273679723e88544dd2de0564ab7f2fddfa2270faf05cabfdf63c275be67ec2a1"}, + {file = "uuid_utils-0.16.2-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:ec5b1a338b92d1eb121e9eaf06ae3db1b9a5cd794ce318a475f6dc6f9e89c3a8"}, + {file = "uuid_utils-0.16.2-cp314-cp314-musllinux_1_2_aarch64.whl", hash = "sha256:e75f9429d4533ce275c98bc68bf47fb237ae7b32c954266dabc5edab0c7d682e"}, + {file = "uuid_utils-0.16.2-cp314-cp314-musllinux_1_2_armv7l.whl", hash = "sha256:7f3cca9ca5e2c2dfd7b885f0d34c10b993a070d3593f3cdfef785195da36fb0f"}, + {file = "uuid_utils-0.16.2-cp314-cp314-musllinux_1_2_i686.whl", hash = "sha256:1ef8c561fdf88fec205e3d54037824cfe2addce16b509a8d2ecb69daa904cbb7"}, + {file = "uuid_utils-0.16.2-cp314-cp314-musllinux_1_2_x86_64.whl", hash = "sha256:3e3acb5e1451232381daea01645a98c69de4bb9ad88d77a1f7c1df4d83d54e62"}, + {file = "uuid_utils-0.16.2-cp314-cp314-win32.whl", hash = "sha256:b5f8e7d0bb2c6e6180176237f92d2e949626e04fcf701c49d73f128e1f64e1d1"}, + {file = "uuid_utils-0.16.2-cp314-cp314-win_amd64.whl", hash = "sha256:bf922bad7df257336b594d316a1657df569860bb5389602919001fa6fb17f06e"}, + {file = "uuid_utils-0.16.2-cp314-cp314-win_arm64.whl", hash = "sha256:fad82e6482129c58ba9b00da6c247ab6e767645ab17981599229cce19d7b2ce9"}, + {file = "uuid_utils-0.16.2-cp314-cp314t-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl", hash = "sha256:e0609e7e906c08386b7f33141254df05dcab24f1c4884150988dc7a287516aca"}, + {file = "uuid_utils-0.16.2-cp314-cp314t-macosx_10_12_x86_64.whl", hash = "sha256:9ad2adeb941292fe02e1e5c70b80a5746c45b1b77594506c2a1421455d8384f9"}, + {file = "uuid_utils-0.16.2-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d906c00f965d5c5f4812d0086dc49bf813285ea84c97e8816405200e146f805b"}, + {file = "uuid_utils-0.16.2-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:a59205fc15463dd0f978f14df14307737e3d4e8ef4aefa29a9d0fa766d84d16b"}, + {file = "uuid_utils-0.16.2-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:aac82500329ffaf2788dac36cf133e1e4e23b6d5e1118274ea6749c3b512f4f1"}, + {file = "uuid_utils-0.16.2-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3d8257329f26905f009aed694bd3b17f334f43748b03134dc7bc99d6c5b4e371"}, + {file = "uuid_utils-0.16.2-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:e04b5c10c6fcf9d9801084d1e86c9d7ada7eb48fe07ee4ae5e7fe5b1a852db8a"}, + {file = "uuid_utils-0.16.2-cp314-cp314t-musllinux_1_2_aarch64.whl", hash = "sha256:3d4805c4739dd06d539f8f4fa94f5aaf26eca4b3ece1ef134d4ff904c6b08dcf"}, + {file = "uuid_utils-0.16.2-cp314-cp314t-musllinux_1_2_armv7l.whl", hash = "sha256:76632d2e16e26de777851ec07961ceaea14e65167d0603a0b17fb169fa9ca37b"}, + {file = "uuid_utils-0.16.2-cp314-cp314t-musllinux_1_2_i686.whl", hash = "sha256:6c02f85f49c9c2abbf247a8622458c30232332a28711755aa191da5f38015af6"}, + {file = "uuid_utils-0.16.2-cp314-cp314t-musllinux_1_2_x86_64.whl", hash = "sha256:f668035ea9faa763e8f1ea42040e8439db88cf2517056d47c348a62a257a1d02"}, + {file = "uuid_utils-0.16.2-cp314-cp314t-win32.whl", hash = "sha256:62b8841895eff1c0afbaf5f0050411667231160478c8ff9f411742abffd3b619"}, + {file = "uuid_utils-0.16.2-cp314-cp314t-win_amd64.whl", hash = "sha256:e9064805881c30dd80a4189a0da7130e3d684de353ea36edd99c1b994bdf429e"}, + {file = "uuid_utils-0.16.2-cp314-cp314t-win_arm64.whl", hash = "sha256:3324bac95084e63e28553c92fac5a0394c636a76e03e50a7dab0c0bbddf87fa5"}, + {file = "uuid_utils-0.16.2-pp311-pypy311_pp73-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl", hash = "sha256:8b8e325e61f918caf74ca540e3384b81e6e22aea782e57f615d15fc9773b96c8"}, + {file = "uuid_utils-0.16.2-pp311-pypy311_pp73-macosx_10_12_x86_64.whl", hash = "sha256:9282677ebf2ea5b437c20d16e75bcd7629bdc205018f95557b33b76868d8bb5b"}, + {file = "uuid_utils-0.16.2-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2e9ca7f5e215373cc9c147172170a0b1a4ab0dee9cc62fe446d9b075f31e3241"}, + {file = "uuid_utils-0.16.2-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:43cc72a92694d08ade8faadacf928857d9cceb84b449473246ae4e4f263d7d22"}, + {file = "uuid_utils-0.16.2-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:511b5fde12d29c37a9badd399af62105bb2f4696aa10eb18be74e7b9ca84413a"}, + {file = "uuid_utils-0.16.2-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:585d3adf73afa60348bf2bd529491c640a692350e76d8ff3974455e273aadfe7"}, + {file = "uuid_utils-0.16.2-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:ae5fa2007fd26d26f7b09e76259d5ca99bec191616207ca929f8dca12da08129"}, + {file = "uuid_utils-0.16.2-pp311-pypy311_pp73-win_amd64.whl", hash = "sha256:9b4520521aa46a2582fe1829c535fe60b78999b89257db998df3816eb895bdf3"}, + {file = "uuid_utils-0.16.2.tar.gz", hash = "sha256:fa637e4f314ad5b59ff6d8e809d506443d68bef30bfaecdfcfe02cce689abb2f"}, ] [[package]] diff --git a/seed/swift-sdk/seed.yml b/seed/swift-sdk/seed.yml index 3ddc7990e773..9a9af31de632 100644 --- a/seed/swift-sdk/seed.yml +++ b/seed/swift-sdk/seed.yml @@ -137,11 +137,8 @@ allowedFailures: - oauth-client-credentials-with-variables - query-parameters - request-parameters - - streaming - - streaming-parameter - trace - undiscriminated-unions # Server URL templating not yet supported in Swift SDK - - server-sent-events-openapi - server-url-templating - variables diff --git a/seed/swift-sdk/streaming-parameter/Sources/Resources/Dummy/DummyClient.swift b/seed/swift-sdk/streaming-parameter/Sources/Resources/Dummy/DummyClient.swift index c136f0daccb4..c41eb70985d0 100644 --- a/seed/swift-sdk/streaming-parameter/Sources/Resources/Dummy/DummyClient.swift +++ b/seed/swift-sdk/streaming-parameter/Sources/Resources/Dummy/DummyClient.swift @@ -7,13 +7,13 @@ public final class DummyClient: Sendable { self.httpClient = HTTPClient(config: config) } - public func generate(request: Requests.GenerateRequest, requestOptions: RequestOptions? = nil) async throws -> JSONValue { + public func generate(request: Requests.GenerateRequest, requestOptions: RequestOptions? = nil) async throws -> RegularResponse { return try await httpClient.performRequest( method: .post, path: "/generate", body: request, requestOptions: requestOptions, - responseType: JSONValue.self + responseType: RegularResponse.self ) } } \ No newline at end of file diff --git a/seed/swift-sdk/streaming-parameter/reference.md b/seed/swift-sdk/streaming-parameter/reference.md index 0f8b6abc269e..6e2803f38521 100644 --- a/seed/swift-sdk/streaming-parameter/reference.md +++ b/seed/swift-sdk/streaming-parameter/reference.md @@ -1,6 +1,6 @@ # Reference ## Dummy -
client.dummy.generate(request: Requests.GenerateRequest, requestOptions: RequestOptions?) -> JSONValue +
client.dummy.generate(request: Requests.GenerateRequest, requestOptions: RequestOptions?) -> RegularResponse