Skip to content

Commit afd7f37

Browse files
speakeasybotfrankie567
authored andcommitted
ci: regenerated with OpenAPI Doc , Speakeasy CLI 1.505.2
1 parent 593c5cf commit afd7f37

File tree

77 files changed

+1822
-452
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

77 files changed

+1822
-452
lines changed

.speakeasy/gen.lock

Lines changed: 110 additions & 41 deletions
Large diffs are not rendered by default.

.speakeasy/gen.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ generation:
1818
oAuth2ClientCredentialsEnabled: true
1919
oAuth2PasswordEnabled: true
2020
go:
21-
version: 0.4.0
21+
version: 0.4.1
2222
additionalDependencies: {}
2323
allowUnknownFieldsInWeakUnions: false
2424
clientServerStatusCodesAsErrors: true

.speakeasy/workflow.lock

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,21 @@
1-
speakeasyVersion: 1.503.0
1+
speakeasyVersion: 1.505.2
22
sources:
33
Polar-OAS:
44
sourceNamespace: polar-oas
5-
sourceRevisionDigest: sha256:11ecd95e33d2843cb03b1f80d3dd4608b8d275da915c7ffce3f955ff2457a538
6-
sourceBlobDigest: sha256:8576f7abe4e3ede26dd81dcf754e97232ff5907f92d61e89e4c3649729d62af7
5+
sourceRevisionDigest: sha256:c8824dee43efde7a9686cf75a3ca50badefdac87a71af86d06d21627d0651023
6+
sourceBlobDigest: sha256:e8c271d918ce36481891a718e7a8729e4ba758d2057c51727b947fb5d8413ca4
77
tags:
88
- latest
9-
- speakeasy-sdk-regen-1740505850
9+
- speakeasy-sdk-regen-1740615907
1010
- 0.1.0
1111
targets:
1212
polar:
1313
source: Polar-OAS
1414
sourceNamespace: polar-oas
15-
sourceRevisionDigest: sha256:11ecd95e33d2843cb03b1f80d3dd4608b8d275da915c7ffce3f955ff2457a538
16-
sourceBlobDigest: sha256:8576f7abe4e3ede26dd81dcf754e97232ff5907f92d61e89e4c3649729d62af7
15+
sourceRevisionDigest: sha256:c8824dee43efde7a9686cf75a3ca50badefdac87a71af86d06d21627d0651023
16+
sourceBlobDigest: sha256:e8c271d918ce36481891a718e7a8729e4ba758d2057c51727b947fb5d8413ca4
1717
codeSamplesNamespace: polar-oas-code-samples-go
18-
codeSamplesRevisionDigest: sha256:0cf580a2439774206e3c0e6f1bb02ba60e504b43637860babce33f262757041b
18+
codeSamplesRevisionDigest: sha256:a8154f9642bfeb9aa971d0aa6e43e8b56eccc37dbb1fe3c19cb31ba971f17bca
1919
workflow:
2020
workflowVersion: 1.0.0
2121
speakeasyVersion: latest

README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -772,6 +772,9 @@ func main() {
772772
* [Get](docs/sdks/customers/README.md#get) - Get Customer
773773
* [Update](docs/sdks/customers/README.md#update) - Update Customer
774774
* [Delete](docs/sdks/customers/README.md#delete) - Delete Customer
775+
* [GetExternal](docs/sdks/customers/README.md#getexternal) - Get Customer by External ID
776+
* [UpdateExternal](docs/sdks/customers/README.md#updateexternal) - Update Customer by External ID
777+
* [DeleteExternal](docs/sdks/customers/README.md#deleteexternal) - Delete Customer by External ID
775778

776779
### [CustomerSessions](docs/sdks/customersessions/README.md)
777780

RELEASES.md

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -148,4 +148,14 @@ Based on:
148148
### Generated
149149
- [go v0.4.0] .
150150
### Releases
151-
- [Go v0.4.0] https://github.com/polarsource/polar-go/releases/tag/v0.4.0 - .
151+
- [Go v0.4.0] https://github.com/polarsource/polar-go/releases/tag/v0.4.0 - .
152+
153+
## 2025-02-27 15:50:04
154+
### Changes
155+
Based on:
156+
- OpenAPI Doc
157+
- Speakeasy CLI 1.505.2 (2.531.3) https://github.com/speakeasy-api/speakeasy
158+
### Generated
159+
- [go v0.4.1] .
160+
### Releases
161+
- [Go v0.4.1] https://github.com/polarsource/polar-go/releases/tag/v0.4.1 - .

checkouts.go

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1612,8 +1612,6 @@ func (s *Checkouts) ClientUpdate(ctx context.Context, clientSecret string, check
16121612
// Confirm a checkout session by client secret.
16131613
//
16141614
// Orders and subscriptions will be processed.
1615-
//
1616-
// **Scopes**:
16171615
func (s *Checkouts) ClientConfirm(ctx context.Context, clientSecret string, checkoutConfirmStripe components.CheckoutConfirmStripe, opts ...operations.Option) (*operations.CheckoutsClientConfirmResponse, error) {
16181616
request := operations.CheckoutsClientConfirmRequest{
16191617
ClientSecret: clientSecret,

clients.go

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,6 @@ func newClients(sdkConfig sdkConfiguration) *Clients {
2929

3030
// List Clients
3131
// List OAuth2 clients.
32-
//
33-
// **Scopes**:
3432
func (s *Clients) List(ctx context.Context, page *int64, limit *int64, opts ...operations.Option) (*operations.Oauth2ClientsListResponse, error) {
3533
request := operations.Oauth2ClientsListRequest{
3634
Page: page,
@@ -324,8 +322,6 @@ func (s *Clients) List(ctx context.Context, page *int64, limit *int64, opts ...o
324322

325323
// Create Client
326324
// Create an OAuth2 client.
327-
//
328-
// **Scopes**:
329325
func (s *Clients) Create(ctx context.Context, request components.OAuth2ClientConfiguration, opts ...operations.Option) (*operations.Oauth2ClientsOauth2CreateClientResponse, error) {
330326
o := operations.Options{}
331327
supportedOptions := []string{
@@ -556,8 +552,6 @@ func (s *Clients) Create(ctx context.Context, request components.OAuth2ClientCon
556552

557553
// Get Client
558554
// Get an OAuth2 client by Client ID.
559-
//
560-
// **Scopes**:
561555
func (s *Clients) Get(ctx context.Context, clientID string, opts ...operations.Option) (*operations.Oauth2ClientsOauth2GetClientResponse, error) {
562556
request := operations.Oauth2ClientsOauth2GetClientRequest{
563557
ClientID: clientID,
@@ -785,8 +779,6 @@ func (s *Clients) Get(ctx context.Context, clientID string, opts ...operations.O
785779

786780
// Update Client
787781
// Update an OAuth2 client.
788-
//
789-
// **Scopes**:
790782
func (s *Clients) Update(ctx context.Context, clientID string, oAuth2ClientConfigurationUpdate components.OAuth2ClientConfigurationUpdate, opts ...operations.Option) (*operations.Oauth2ClientsOauth2UpdateClientResponse, error) {
791783
request := operations.Oauth2ClientsOauth2UpdateClientRequest{
792784
ClientID: clientID,
@@ -1022,8 +1014,6 @@ func (s *Clients) Update(ctx context.Context, clientID string, oAuth2ClientConfi
10221014

10231015
// Delete Client
10241016
// Delete an OAuth2 client.
1025-
//
1026-
// **Scopes**:
10271017
func (s *Clients) Delete(ctx context.Context, clientID string, opts ...operations.Option) (*operations.Oauth2ClientsOauth2DeleteClientResponse, error) {
10281018
request := operations.Oauth2ClientsOauth2DeleteClientRequest{
10291019
ClientID: clientID,

0 commit comments

Comments
 (0)