-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: update next client for v2.64.0 (#177)
- Loading branch information
Showing
10 changed files
with
113 additions
and
46 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
goVersion: 1.22 | ||
generatorVersion: 2.3.0 | ||
generatorVersion: 2.4.1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,7 @@ | ||
{ | ||
"openapi": "3.0.0", | ||
"info": { | ||
"contact": { | ||
"name": "Katapult Support", | ||
"email": "[email protected]", | ||
"url": "https://katapult.io/contact" | ||
}, | ||
"termsOfService": "https://katapult.io/terms", | ||
"x-katapult-version": "2.61.1", | ||
"x-katapult-version": "2.64.0", | ||
"version": "1.0.0", | ||
"title": "Katapult Core API", | ||
"description": "Welcome to the documentation for the Katapult Core API" | ||
|
@@ -4175,7 +4169,7 @@ | |
"post": { | ||
"operationId": "post:dns_zone_verify", | ||
"summary": "Verify DNS zone", | ||
"description": "Attempt to verify the nameservers for a given DNS zone\n## Scopes\n- `dns`\n\n### OAuth2 Scopes\nWhen using OAuth2 authentication, scopes are prefixed with `api.katapult.io/core/v1/`.\n", | ||
"description": "Attempt to verify either the nameservers or root TXT record for a given DNS zone\n## Scopes\n- `dns`\n\n### OAuth2 Scopes\nWhen using OAuth2 authentication, scopes are prefixed with `api.katapult.io/core/v1/`.\n", | ||
"tags": [ | ||
"DNS zones" | ||
], | ||
|
@@ -4209,7 +4203,7 @@ | |
}, | ||
"responses": { | ||
"200": { | ||
"description": "Attempt to verify the nameservers for a given DNS zone", | ||
"description": "Attempt to verify either the nameservers or root TXT record for a given DNS zone", | ||
"content": { | ||
"application/json": { | ||
"schema": { | ||
|
@@ -21859,6 +21853,7 @@ | |
"ALIAS", | ||
"CAA", | ||
"CNAME", | ||
"HTTPRedirect", | ||
"IPS", | ||
"MX", | ||
"NS", | ||
|
@@ -21913,6 +21908,14 @@ | |
], | ||
"nullable": true | ||
}, | ||
"HTTPRedirect": { | ||
"allOf": [ | ||
{ | ||
"$ref": "#/components/schemas/RecordContentAttributesForHTTPRedirect" | ||
} | ||
], | ||
"nullable": true | ||
}, | ||
"IPS": { | ||
"allOf": [ | ||
{ | ||
|
@@ -22036,6 +22039,19 @@ | |
} | ||
} | ||
}, | ||
"RecordContentAttributesForHTTPRedirect": { | ||
"type": "object", | ||
"properties": { | ||
"url": { | ||
"type": "string", | ||
"nullable": true | ||
}, | ||
"http_status": { | ||
"type": "string", | ||
"nullable": true | ||
} | ||
} | ||
}, | ||
"RecordContentAttributesForIPS": { | ||
"type": "object", | ||
"properties": { | ||
|
@@ -22163,6 +22179,9 @@ | |
"CNAME": { | ||
"$ref": "#/components/schemas/DNSRecordContentArgumentsForCNAME" | ||
}, | ||
"HTTPRedirect": { | ||
"$ref": "#/components/schemas/DNSRecordContentArgumentsForHTTPRedirect" | ||
}, | ||
"IPS": { | ||
"$ref": "#/components/schemas/DNSRecordContentArgumentsForIPS" | ||
}, | ||
|
@@ -22238,6 +22257,17 @@ | |
} | ||
} | ||
}, | ||
"DNSRecordContentArgumentsForHTTPRedirect": { | ||
"type": "object", | ||
"properties": { | ||
"url": { | ||
"type": "string" | ||
}, | ||
"http_status": { | ||
"type": "string" | ||
} | ||
} | ||
}, | ||
"DNSRecordContentArgumentsForIPS": { | ||
"type": "object", | ||
"properties": { | ||
|
@@ -25467,6 +25497,9 @@ | |
"type": "integer", | ||
"description": "The total storage used in bytes (updated periodically)" | ||
}, | ||
"bucket_count": { | ||
"type": "integer" | ||
}, | ||
"data_center": { | ||
"$ref": "#/components/schemas/DataCenter" | ||
} | ||
|
@@ -26881,7 +26914,7 @@ | |
} | ||
}, | ||
"DNSZoneNotVerifiedResponse": { | ||
"description": "The DNS zone could not be verified, check the nameservers are set correctly", | ||
"description": "The DNS zone could not be verified, check the nameservers or root TXT record are set correctly", | ||
"content": { | ||
"application/json": { | ||
"schema": { | ||
|
@@ -28076,4 +28109,4 @@ | |
] | ||
} | ||
] | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,7 @@ | ||
{ | ||
"openapi": "3.0.0", | ||
"info": { | ||
"contact": { | ||
"name": "Katapult Support", | ||
"email": "[email protected]", | ||
"url": "https://katapult.io/contact" | ||
}, | ||
"termsOfService": "https://katapult.io/terms", | ||
"x-katapult-version": "2.61.1", | ||
"x-katapult-version": "2.64.0", | ||
"version": "1.0.0", | ||
"title": "Katapult Public API", | ||
"description": "Welcome to the documentation for the Katapult Public API" | ||
|
@@ -191,7 +185,7 @@ | |
"post": { | ||
"operationId": "post:signups", | ||
"summary": "Create signup", | ||
"description": "This will create a new signup object and e-mail the appropriate welcome e-mail to the given email address", | ||
"description": "This will create a new signup object, which can be either verified by e-mail or by the user creating an account in Identity", | ||
"tags": [ | ||
"Signups" | ||
], | ||
|
@@ -200,6 +194,10 @@ | |
"application/json": { | ||
"schema": { | ||
"properties": { | ||
"verify_with_email": { | ||
"type": "boolean", | ||
"description": "If true, the user will be sent an email to verify their e-mail address, and if false, the user will need to verify their e-mail address when they create an account in Identity" | ||
}, | ||
"email_address": { | ||
"type": "string", | ||
"description": "The e-mail address that should receive the welcome e-mail" | ||
|
@@ -211,17 +209,14 @@ | |
"campaign": { | ||
"$ref": "#/components/schemas/SignupCampaignArguments" | ||
} | ||
}, | ||
"required": [ | ||
"email_address" | ||
] | ||
} | ||
} | ||
} | ||
} | ||
}, | ||
"responses": { | ||
"200": { | ||
"description": "This will create a new signup object and e-mail the appropriate welcome e-mail to the given email address", | ||
"description": "This will create a new signup object, which can be either verified by e-mail or by the user creating an account in Identity", | ||
"content": { | ||
"application/json": { | ||
"schema": { | ||
|
@@ -232,12 +227,19 @@ | |
}, | ||
"email_address": { | ||
"type": "string", | ||
"description": "The e-mail address that was sent the welcome email" | ||
"description": "The e-mail address that was sent the welcome email", | ||
"nullable": true | ||
}, | ||
"url": { | ||
"type": "string", | ||
"description": "The URL for the user to continue their signup process, only available if verify_with_email is false", | ||
"nullable": true | ||
} | ||
}, | ||
"required": [ | ||
"id", | ||
"email_address" | ||
"email_address", | ||
"url" | ||
] | ||
} | ||
} | ||
|
@@ -1111,4 +1113,4 @@ | |
] | ||
} | ||
] | ||
} | ||
} |
Oops, something went wrong.