diff --git a/.speakeasy/gen.lock b/.speakeasy/gen.lock index 1ef3bd5..444fbdb 100755 --- a/.speakeasy/gen.lock +++ b/.speakeasy/gen.lock @@ -1,12 +1,12 @@ lockVersion: 2.0.0 id: b81e5def-5b1e-4753-ae7c-0efccc2e6f61 management: - docChecksum: 63fbac813a0aa3fa24ffb199de5fa858 + docChecksum: fa29cc9e179c247d0bd4fc3d22a986e7 docVersion: 0.0.1 - speakeasyVersion: 1.446.1 - generationVersion: 2.462.1 - releaseVersion: 0.1.9 - configChecksum: ea4943250fc3728ab6d9fca49f8d3212 + speakeasyVersion: 1.447.0 + generationVersion: 2.463.0 + releaseVersion: 0.1.10 + configChecksum: c8dc9502d5252fed4b14ed4eff9888c2 features: go: additionalDependencies: 0.1.0 diff --git a/.speakeasy/gen.yaml b/.speakeasy/gen.yaml index 2175c3b..8abac10 100755 --- a/.speakeasy/gen.yaml +++ b/.speakeasy/gen.yaml @@ -13,7 +13,7 @@ generation: oAuth2ClientCredentialsEnabled: false oAuth2PasswordEnabled: false go: - version: 0.1.9 + version: 0.1.10 additionalDependencies: {} allowUnknownFieldsInWeakUnions: false clientServerStatusCodesAsErrors: true diff --git a/docs/models/components/assignroleentityregion.md b/docs/models/components/assignroleentityregion.md index c3274bd..6769350 100644 --- a/docs/models/components/assignroleentityregion.md +++ b/docs/models/components/assignroleentityregion.md @@ -10,4 +10,5 @@ The region of the team. | `AssignRoleEntityRegionUs` | us | | `AssignRoleEntityRegionEu` | eu | | `AssignRoleEntityRegionAu` | au | +| `AssignRoleEntityRegionMe` | me | | `AssignRoleEntityRegionWildcard` | * | \ No newline at end of file diff --git a/docs/models/components/entityregion.md b/docs/models/components/entityregion.md index 25a2d74..b99d6b7 100644 --- a/docs/models/components/entityregion.md +++ b/docs/models/components/entityregion.md @@ -10,4 +10,5 @@ Region of the entity. | `EntityRegionUs` | us | | `EntityRegionEu` | eu | | `EntityRegionAu` | au | +| `EntityRegionMe` | me | | `EntityRegionWildcard` | * | \ No newline at end of file diff --git a/models/components/assignedrole.go b/models/components/assignedrole.go index aa63304..a9e7ac0 100644 --- a/models/components/assignedrole.go +++ b/models/components/assignedrole.go @@ -14,6 +14,7 @@ const ( EntityRegionUs EntityRegion = "us" EntityRegionEu EntityRegion = "eu" EntityRegionAu EntityRegion = "au" + EntityRegionMe EntityRegion = "me" EntityRegionWildcard EntityRegion = "*" ) @@ -32,6 +33,8 @@ func (e *EntityRegion) UnmarshalJSON(data []byte) error { fallthrough case "au": fallthrough + case "me": + fallthrough case "*": *e = EntityRegion(v) return nil diff --git a/models/components/assignrole.go b/models/components/assignrole.go index f25bdae..f83cc93 100644 --- a/models/components/assignrole.go +++ b/models/components/assignrole.go @@ -182,6 +182,7 @@ const ( AssignRoleEntityRegionUs AssignRoleEntityRegion = "us" AssignRoleEntityRegionEu AssignRoleEntityRegion = "eu" AssignRoleEntityRegionAu AssignRoleEntityRegion = "au" + AssignRoleEntityRegionMe AssignRoleEntityRegion = "me" AssignRoleEntityRegionWildcard AssignRoleEntityRegion = "*" ) @@ -200,6 +201,8 @@ func (e *AssignRoleEntityRegion) UnmarshalJSON(data []byte) error { fallthrough case "au": fallthrough + case "me": + fallthrough case "*": *e = AssignRoleEntityRegion(v) return nil diff --git a/openapi.yaml b/openapi.yaml index 1c3d7f8..a068826 100644 --- a/openapi.yaml +++ b/openapi.yaml @@ -6650,6 +6650,7 @@ components: - us - eu - au + - me - '*' example: id: 54cc6168-ebb1-4300-8168-d62a0dd08fc8 @@ -9269,6 +9270,7 @@ components: - us - eu - au + - me - '*' description: The request schema for assigning a role. InviteUser: diff --git a/sdk.go b/sdk.go index b7143d3..f9c2731 100644 --- a/sdk.go +++ b/sdk.go @@ -261,9 +261,9 @@ func New(opts ...SDKOption) *SDK { sdkConfiguration: sdkConfiguration{ Language: "go", OpenAPIDocVersion: "0.0.1", - SDKVersion: "0.1.9", - GenVersion: "2.462.1", - UserAgent: "speakeasy-sdk/go 0.1.9 2.462.1 0.0.1 github.com/Kong/sdk-konnect-go", + SDKVersion: "0.1.10", + GenVersion: "2.463.0", + UserAgent: "speakeasy-sdk/go 0.1.10 2.463.0 0.0.1 github.com/Kong/sdk-konnect-go", Hooks: hooks.New(), }, }