Skip to content

Commit 508c61b

Browse files
speakeasybotfrankie567
authored andcommitted
ci: regenerated with OpenAPI Doc , Speakeasy CLI 1.525.0
1 parent fe28ea8 commit 508c61b

File tree

415 files changed

+3137
-2823
lines changed

Some content is hidden

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

415 files changed

+3137
-2823
lines changed

.speakeasy/gen.lock

+18-14
Large diffs are not rendered by default.

.speakeasy/gen.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ generation:
1818
oAuth2ClientCredentialsEnabled: true
1919
oAuth2PasswordEnabled: false
2020
typescript:
21-
version: 0.32.2
21+
version: 0.32.3
2222
additionalDependencies:
2323
dependencies:
2424
standardwebhooks: ^1.0.0

.speakeasy/workflow.lock

+7-7
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,21 @@
1-
speakeasyVersion: 1.523.2
1+
speakeasyVersion: 1.525.0
22
sources:
33
Polar-OAS:
44
sourceNamespace: polar-oas
5-
sourceRevisionDigest: sha256:8870ef2804c580a3273d5b59989cb5f5f76c26f44532667cc1021f25bbcaabaf
6-
sourceBlobDigest: sha256:89511768d90f66b243db9ee6a29e2e5c2e9b8d810c196be56a26e95382886c60
5+
sourceRevisionDigest: sha256:43cf020332ad288de6c1047de8c709870910f668b2852d814c599b29cd4ebe30
6+
sourceBlobDigest: sha256:293c202fa1574e2c421b80a501274a3b08c89ef0864764677462200a39c4e88c
77
tags:
88
- latest
9-
- speakeasy-sdk-regen-1742916882
9+
- speakeasy-sdk-regen-1743066731
1010
- 0.1.0
1111
targets:
1212
polar:
1313
source: Polar-OAS
1414
sourceNamespace: polar-oas
15-
sourceRevisionDigest: sha256:8870ef2804c580a3273d5b59989cb5f5f76c26f44532667cc1021f25bbcaabaf
16-
sourceBlobDigest: sha256:89511768d90f66b243db9ee6a29e2e5c2e9b8d810c196be56a26e95382886c60
15+
sourceRevisionDigest: sha256:43cf020332ad288de6c1047de8c709870910f668b2852d814c599b29cd4ebe30
16+
sourceBlobDigest: sha256:293c202fa1574e2c421b80a501274a3b08c89ef0864764677462200a39c4e88c
1717
codeSamplesNamespace: polar-oas-ts-code-samples
18-
codeSamplesRevisionDigest: sha256:be8e29c2c4a4dea137c33c9ec0b9b10538985b2de4baa868168e31361791d652
18+
codeSamplesRevisionDigest: sha256:f6aedcbb23f4715541ab9e28248ce973d854f00ac4bd78ec4704fe187feb56de
1919
workflow:
2020
workflowVersion: 1.0.0
2121
speakeasyVersion: latest

RELEASES.md

+11-1
Original file line numberDiff line numberDiff line change
@@ -608,4 +608,14 @@ Based on:
608608
### Generated
609609
- [typescript v0.32.2] .
610610
### Releases
611-
- [NPM v0.32.2] https://www.npmjs.com/package/@polar-sh/sdk/v/0.32.2 - .
611+
- [NPM v0.32.2] https://www.npmjs.com/package/@polar-sh/sdk/v/0.32.2 - .
612+
613+
## 2025-03-27 09:11:52
614+
### Changes
615+
Based on:
616+
- OpenAPI Doc
617+
- Speakeasy CLI 1.525.0 (2.562.2) https://github.com/speakeasy-api/speakeasy
618+
### Generated
619+
- [typescript v0.32.3] .
620+
### Releases
621+
- [NPM v0.32.3] https://www.npmjs.com/package/@polar-sh/sdk/v/0.32.3 - .

codeSamples.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -614,7 +614,7 @@ actions:
614614
"x-codeSamples":
615615
- "lang": "typescript"
616616
"label": "Typescript (SDK)"
617-
"source": "import { Polar } from \"@polar-sh/sdk\";\n\nconst polar = new Polar({\n accessToken: process.env[\"POLAR_ACCESS_TOKEN\"] ?? \"\",\n});\n\nasync function run() {\n const result = await polar.products.create({\n name: \"<value>\",\n recurringInterval: \"month\",\n prices: [\n {\n priceCurrency: \"usd\",\n },\n {\n priceCurrency: \"usd\",\n },\n ],\n organizationId: \"1dbfc517-0bbf-4301-9ba8-555ca42b9737\",\n });\n\n // Handle the result\n console.log(result);\n}\n\nrun();"
617+
"source": "import { Polar } from \"@polar-sh/sdk\";\n\nconst polar = new Polar({\n accessToken: process.env[\"POLAR_ACCESS_TOKEN\"] ?? \"\",\n});\n\nasync function run() {\n const result = await polar.products.create({\n name: \"<value>\",\n recurringInterval: \"month\",\n prices: [\n {\n priceCurrency: \"usd\",\n },\n {},\n ],\n organizationId: \"1dbfc517-0bbf-4301-9ba8-555ca42b9737\",\n });\n\n // Handle the result\n console.log(result);\n}\n\nrun();"
618618
- target: $["paths"]["/v1/products/{id}"]["get"]
619619
update:
620620
"x-codeSamples":

docs/models/components/aggregation.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
```typescript
99
const value: components.PropertyAggregation = {
10-
func: "max",
10+
func: "sum",
1111
property: "<value>",
1212
};
1313
```
@@ -22,7 +22,7 @@ const value: components.CountAggregation = {};
2222

2323
```typescript
2424
const value: components.PropertyAggregation = {
25-
func: "avg",
25+
func: "sum",
2626
property: "<value>",
2727
};
2828
```

docs/models/components/benefitcreate.md

+6-6
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
```typescript
99
const value: components.BenefitCustomCreate = {
10-
description: "interestingly gape notwithstanding onto fortunately",
10+
description: "shout conclude twist provided charter motionless up chapel",
1111
organizationId: "1dbfc517-0bbf-4301-9ba8-555ca42b9737",
1212
properties: {},
1313
};
@@ -17,7 +17,8 @@ const value: components.BenefitCustomCreate = {
1717

1818
```typescript
1919
const value: components.BenefitDiscordCreate = {
20-
description: "motionless up chapel",
20+
description:
21+
"blank waft tabletop jealously liberalize monthly large democratize",
2122
organizationId: "1dbfc517-0bbf-4301-9ba8-555ca42b9737",
2223
properties: {
2324
guildToken: "<value>",
@@ -30,8 +31,7 @@ const value: components.BenefitDiscordCreate = {
3031

3132
```typescript
3233
const value: components.BenefitDownloadablesCreate = {
33-
description:
34-
"blank waft tabletop jealously liberalize monthly large democratize",
34+
description: "once numeracy horde bore rotten fooey now",
3535
organizationId: "1dbfc517-0bbf-4301-9ba8-555ca42b9737",
3636
properties: {
3737
files: [
@@ -45,7 +45,7 @@ const value: components.BenefitDownloadablesCreate = {
4545

4646
```typescript
4747
const value: components.BenefitGitHubRepositoryCreate = {
48-
description: "once numeracy horde bore rotten fooey now",
48+
description: "meanwhile although phew yowza slump why triumphantly footrest",
4949
organizationId: "1dbfc517-0bbf-4301-9ba8-555ca42b9737",
5050
properties: {
5151
repositoryOwner: "polarsource",
@@ -59,7 +59,7 @@ const value: components.BenefitGitHubRepositoryCreate = {
5959

6060
```typescript
6161
const value: components.BenefitLicenseKeysCreate = {
62-
description: "oh atomize fishery",
62+
description: "notwithstanding cycle intelligent",
6363
organizationId: "1dbfc517-0bbf-4301-9ba8-555ca42b9737",
6464
properties: {},
6565
};

docs/models/components/benefitcustomcreate.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import { BenefitCustomCreate } from "@polar-sh/sdk/models/components/benefitcust
99

1010
let value: BenefitCustomCreate = {
1111
description:
12-
"noisily delightfully ill-fated phooey baritone notwithstanding cycle intelligent upwardly where",
12+
"as phooey an emergent see yuck zowie recommendation smooth since",
1313
organizationId: "1dbfc517-0bbf-4301-9ba8-555ca42b9737",
1414
properties: {},
1515
};

docs/models/components/benefitcustomsubscriber.md

+14-13
Original file line numberDiff line numberDiff line change
@@ -6,43 +6,44 @@
66
import { BenefitCustomSubscriber } from "@polar-sh/sdk/models/components/benefitcustomsubscriber.js";
77

88
let value: BenefitCustomSubscriber = {
9-
createdAt: new Date("2025-08-23T21:58:47.391Z"),
10-
modifiedAt: new Date("2023-01-19T14:46:34.753Z"),
9+
createdAt: new Date("2023-02-07T17:42:25.899Z"),
10+
modifiedAt: new Date("2024-06-15T23:24:38.141Z"),
1111
id: "<value>",
12-
description: "even boo however as before hoot forenenst untimely",
12+
description:
13+
"nervously factorize strategy comparison boohoo new during pigpen times",
1314
selectable: false,
1415
deletable: false,
1516
organizationId: "<value>",
1617
organization: {
17-
createdAt: new Date("2023-12-09T23:28:03.526Z"),
18-
modifiedAt: new Date("2025-05-13T12:44:04.791Z"),
18+
createdAt: new Date("2024-08-01T06:43:02.119Z"),
19+
modifiedAt: new Date("2024-12-10T12:44:47.120Z"),
1920
id: "1dbfc517-0bbf-4301-9ba8-555ca42b9737",
2021
name: "<value>",
2122
slug: "<value>",
22-
avatarUrl: "https://happy-go-lucky-pupil.com",
23-
email: "Cornelius27@gmail.com",
23+
avatarUrl: "https://self-reliant-bidet.net",
24+
email: "Giovanni.Rempel91@hotmail.com",
2425
website: "<value>",
2526
socials: [
2627
{
27-
platform: "other",
28-
url: "https://known-jungle.info",
28+
platform: "instagram",
29+
url: "https://jittery-cope.name/",
2930
},
3031
],
31-
detailsSubmittedAt: new Date("2024-05-20T01:39:36.546Z"),
32+
detailsSubmittedAt: new Date("2025-03-28T19:41:25.300Z"),
3233
featureSettings: {},
3334
subscriptionSettings: {
3435
allowMultipleSubscriptions: false,
3536
allowCustomerUpdates: false,
3637
prorationBehavior: "invoice",
3738
},
3839
bio: "<value>",
39-
company: "Denesik - Thompson",
40+
company: "Carter - Funk",
4041
blog: "<value>",
4142
location: "<value>",
4243
twitterUsername: "<value>",
43-
pledgeMinimumAmount: 689973,
44+
pledgeMinimumAmount: 828422,
4445
pledgeBadgeShowAmount: false,
45-
defaultUpfrontSplitToContributors: 133334,
46+
defaultUpfrontSplitToContributors: 433069,
4647
profileSettings: {},
4748
},
4849
properties: {

docs/models/components/benefitdiscordcreate.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
import { BenefitDiscordCreate } from "@polar-sh/sdk/models/components/benefitdiscordcreate.js";
77

88
let value: BenefitDiscordCreate = {
9-
description: "an emergent see",
9+
description: "ew strange why well-documented poppy guzzle radiant",
1010
organizationId: "1dbfc517-0bbf-4301-9ba8-555ca42b9737",
1111
properties: {
1212
guildToken: "<value>",

docs/models/components/benefitdiscordsubscriber.md

+14-14
Original file line numberDiff line numberDiff line change
@@ -6,43 +6,43 @@
66
import { BenefitDiscordSubscriber } from "@polar-sh/sdk/models/components/benefitdiscordsubscriber.js";
77

88
let value: BenefitDiscordSubscriber = {
9-
createdAt: new Date("2025-08-12T21:27:15.147Z"),
10-
modifiedAt: new Date("2024-03-24T14:39:48.268Z"),
9+
createdAt: new Date("2023-03-06T02:49:57.342Z"),
10+
modifiedAt: new Date("2025-10-04T11:32:48.098Z"),
1111
id: "<value>",
12-
description: "scarcely idolized closely uh-huh now whoa mid failing beside",
12+
description: "monthly daintily synergy",
1313
selectable: false,
1414
deletable: false,
1515
organizationId: "<value>",
1616
organization: {
17-
createdAt: new Date("2025-09-08T18:09:01.569Z"),
18-
modifiedAt: new Date("2023-01-31T04:12:47.832Z"),
17+
createdAt: new Date("2024-02-19T22:48:10.683Z"),
18+
modifiedAt: new Date("2023-01-22T04:05:57.848Z"),
1919
id: "1dbfc517-0bbf-4301-9ba8-555ca42b9737",
2020
name: "<value>",
2121
slug: "<value>",
22-
avatarUrl: "https://stupendous-stir-fry.org/",
23-
email: "Osbaldo.Legros-Fritsch75@gmail.com",
22+
avatarUrl: "https://gruesome-collectivization.net/",
23+
email: "Estelle.Beahan@hotmail.com",
2424
website: "<value>",
2525
socials: [
2626
{
27-
platform: "instagram",
28-
url: "https://infatuated-testimonial.info/",
27+
platform: "linkedin",
28+
url: "https://shy-litter.name/",
2929
},
3030
],
31-
detailsSubmittedAt: new Date("2025-09-27T08:49:35.038Z"),
31+
detailsSubmittedAt: new Date("2023-08-05T03:46:27.102Z"),
3232
featureSettings: {},
3333
subscriptionSettings: {
3434
allowMultipleSubscriptions: false,
3535
allowCustomerUpdates: false,
36-
prorationBehavior: "prorate",
36+
prorationBehavior: "invoice",
3737
},
3838
bio: "<value>",
39-
company: "Hamill - Hills",
39+
company: "Bradtke - Prosacco",
4040
blog: "<value>",
4141
location: "<value>",
4242
twitterUsername: "<value>",
43-
pledgeMinimumAmount: 605647,
43+
pledgeMinimumAmount: 569226,
4444
pledgeBadgeShowAmount: false,
45-
defaultUpfrontSplitToContributors: 674063,
45+
defaultUpfrontSplitToContributors: 793689,
4646
profileSettings: {},
4747
},
4848
properties: {

docs/models/components/benefitdownloadablescreate.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
import { BenefitDownloadablesCreate } from "@polar-sh/sdk/models/components/benefitdownloadablescreate.js";
77

88
let value: BenefitDownloadablesCreate = {
9-
description: "excepting pfft yawningly simple",
9+
description: "around likely bathhouse fooey saturate chilly vacantly",
1010
organizationId: "1dbfc517-0bbf-4301-9ba8-555ca42b9737",
1111
properties: {
1212
files: [

docs/models/components/benefitdownloadablessubscriber.md

+15-14
Original file line numberDiff line numberDiff line change
@@ -6,43 +6,44 @@
66
import { BenefitDownloadablesSubscriber } from "@polar-sh/sdk/models/components/benefitdownloadablessubscriber.js";
77

88
let value: BenefitDownloadablesSubscriber = {
9-
createdAt: new Date("2025-10-06T18:59:00.388Z"),
10-
modifiedAt: new Date("2024-12-12T02:05:45.362Z"),
9+
createdAt: new Date("2024-12-08T03:23:35.917Z"),
10+
modifiedAt: new Date("2024-07-20T20:09:55.663Z"),
1111
id: "<value>",
12-
description: "once because as daily on unlike ew aw",
12+
description:
13+
"whose proliferate apud hefty bakeware why carefree dependable squeaky freely",
1314
selectable: false,
1415
deletable: false,
1516
organizationId: "<value>",
1617
organization: {
17-
createdAt: new Date("2025-03-07T07:35:49.542Z"),
18-
modifiedAt: new Date("2023-05-08T18:50:11.491Z"),
18+
createdAt: new Date("2025-02-09T20:20:37.854Z"),
19+
modifiedAt: new Date("2023-06-21T10:04:50.151Z"),
1920
id: "1dbfc517-0bbf-4301-9ba8-555ca42b9737",
2021
name: "<value>",
2122
slug: "<value>",
22-
avatarUrl: "https://eminent-help.net/",
23-
email: "Kali.Harvey@gmail.com",
23+
avatarUrl: "https://torn-mentor.biz",
24+
email: "Darron_Kiehn45@hotmail.com",
2425
website: "<value>",
2526
socials: [
2627
{
27-
platform: "x",
28-
url: "https://magnificent-governance.org/",
28+
platform: "linkedin",
29+
url: "https://unconscious-slipper.org/",
2930
},
3031
],
31-
detailsSubmittedAt: new Date("2025-04-23T12:04:17.140Z"),
32+
detailsSubmittedAt: new Date("2023-12-11T02:29:40.537Z"),
3233
featureSettings: {},
3334
subscriptionSettings: {
3435
allowMultipleSubscriptions: false,
3536
allowCustomerUpdates: false,
36-
prorationBehavior: "prorate",
37+
prorationBehavior: "invoice",
3738
},
3839
bio: "<value>",
39-
company: "Beatty LLC",
40+
company: "Pfeffer - Crona",
4041
blog: "<value>",
4142
location: "<value>",
4243
twitterUsername: "<value>",
43-
pledgeMinimumAmount: 565430,
44+
pledgeMinimumAmount: 167831,
4445
pledgeBadgeShowAmount: false,
45-
defaultUpfrontSplitToContributors: 515900,
46+
defaultUpfrontSplitToContributors: 230393,
4647
profileSettings: {},
4748
},
4849
properties: {

docs/models/components/benefitgithubrepositorycreate.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,12 @@
66
import { BenefitGitHubRepositoryCreate } from "@polar-sh/sdk/models/components/benefitgithubrepositorycreate.js";
77

88
let value: BenefitGitHubRepositoryCreate = {
9-
description: "correctly siege optimistic lavish",
9+
description: "bah recklessly what motivate how plastic snappy until eek",
1010
organizationId: "1dbfc517-0bbf-4301-9ba8-555ca42b9737",
1111
properties: {
1212
repositoryOwner: "polarsource",
1313
repositoryName: "private_repo",
14-
permission: "maintain",
14+
permission: "triage",
1515
},
1616
};
1717
```

docs/models/components/benefitgithubrepositorycreatepropertiespermission.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ The permission level to grant. Read more about roles and their permissions on [G
77
```typescript
88
import { BenefitGitHubRepositoryCreatePropertiesPermission } from "@polar-sh/sdk/models/components/benefitgithubrepositorycreateproperties.js";
99

10-
let value: BenefitGitHubRepositoryCreatePropertiesPermission = "maintain";
10+
let value: BenefitGitHubRepositoryCreatePropertiesPermission = "push";
1111
```
1212

1313
## Values

0 commit comments

Comments
 (0)