Skip to content

Commit

Permalink
ci: regenerated with OpenAPI Doc , Speakeasy CLI 1.352.2
Browse files Browse the repository at this point in the history
  • Loading branch information
speakeasybot committed Aug 6, 2024
1 parent 015b1c6 commit 4b22ec2
Show file tree
Hide file tree
Showing 14 changed files with 1,473 additions and 1,336 deletions.
8 changes: 5 additions & 3 deletions .speakeasy/gen.lock
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
lockVersion: 2.0.0
id: caaaa8c3-6dd7-43a5-841e-c3193e68cc73
management:
docChecksum: 4302e3a6306363cdae4631f35837a08f
docChecksum: dd7efeb95cef6daa10a1d8d56e4c9f80
docVersion: "1.0"
speakeasyVersion: 1.352.2
generationVersion: 2.385.2
releaseVersion: 0.7.0
configChecksum: 667ddfd9e17e10eb9bff49fdaa24ee48
releaseVersion: 0.8.0
configChecksum: 7589c0488e2ec56115f50034f3c91a7d
repoURL: https://github.com/panoratech/typescript-sdk.git
installationURL: https://github.com/panoratech/typescript-sdk
published: true
Expand All @@ -23,6 +23,7 @@ features:
groups: 2.81.2
nameOverrides: 2.81.2
nullables: 0.1.0
pagination: 2.82.6
responseFormat: 0.2.3
retries: 2.83.0
sdkHooks: 0.1.0
Expand Down Expand Up @@ -718,6 +719,7 @@ generatedFiles:
- docs/models/operations/verifyeventresponsebody.md
- docs/models/operations/listticketingticketrequest.md
- docs/models/operations/listticketingticketresponsebody.md
- docs/models/operations/listticketingticketresponse.md
- docs/models/operations/createticketingticketrequest.md
- docs/models/operations/retrieveticketingticketrequest.md
- docs/models/operations/listticketingusersrequest.md
Expand Down
2 changes: 1 addition & 1 deletion .speakeasy/gen.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ generation:
auth:
oAuth2ClientCredentialsEnabled: false
typescript:
version: 0.7.0
version: 0.8.0
additionalDependencies:
dependencies: {}
devDependencies: {}
Expand Down
10 changes: 5 additions & 5 deletions .speakeasy/workflow.lock
Original file line number Diff line number Diff line change
Expand Up @@ -2,19 +2,19 @@ speakeasyVersion: 1.352.2
sources:
panora-open-api-swagger:
sourceNamespace: panora-open-api-swagger
sourceRevisionDigest: sha256:3c0bfb5f43a6227de20afc1d490ac62ba907c48d9612bce357c73c54d81ed0d1
sourceBlobDigest: sha256:79690563d75b09999a2a2c5a2ae55890f8d99c9beb8655a030aa8cf65ac8a5e6
sourceRevisionDigest: sha256:d31ee6b03492d006ff057c755b122e4ea6693e7080f1292b0e2aeb4328f05361
sourceBlobDigest: sha256:0ae8f7f57a3bb70f698bd200ddba96884c8d822104c8ba089194956a7b38059b
tags:
- latest
- main
targets:
my-first-target:
source: panora-open-api-swagger
sourceNamespace: panora-open-api-swagger
sourceRevisionDigest: sha256:3c0bfb5f43a6227de20afc1d490ac62ba907c48d9612bce357c73c54d81ed0d1
sourceBlobDigest: sha256:79690563d75b09999a2a2c5a2ae55890f8d99c9beb8655a030aa8cf65ac8a5e6
sourceRevisionDigest: sha256:d31ee6b03492d006ff057c755b122e4ea6693e7080f1292b0e2aeb4328f05361
sourceBlobDigest: sha256:0ae8f7f57a3bb70f698bd200ddba96884c8d822104c8ba089194956a7b38059b
codeSamplesNamespace: code-samples-typescript-my-first-target
codeSamplesRevisionDigest: sha256:b771a1dfd2030fd692dd3ce20d6dec789a2cb4ab290955f90634eccdd327a7de
codeSamplesRevisionDigest: sha256:27673a51cea00662072e057728706c5cf768148f9c06e33d1e6937b7ea0922a9
outLocation: /github/workspace/repo
workflow:
workflowVersion: 1.0.0
Expand Down
37 changes: 37 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -829,6 +829,43 @@ run();
```
<!-- End Authentication [security] -->

<!-- Start Pagination [pagination] -->
## Pagination

Some of the endpoints in this SDK support pagination. To use pagination, you
make your SDK calls as usual, but the returned response object will also be an
async iterable that can be consumed using the [`for await...of`][for-await-of]
syntax.

[for-await-of]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Statements/for-await...of

Here's an example of one such pagination call:

```typescript
import { Panora } from "@panora/sdk";

const panora = new Panora({
apiKey: "<YOUR_API_KEY_HERE>",
});

async function run() {
const result = await panora.ticketing.tickets.list({
xConnectionToken: "<value>",
remoteData: true,
limit: 10,
cursor: "1b8b05bb-5273-4012-b520-8657b0b90874",
});

for await (const page of result) {
// handle page
}
}

run();

```
<!-- End Pagination [pagination] -->

<!-- Placeholder for Future Speakeasy SDK Sections -->

# Development
Expand Down
12 changes: 11 additions & 1 deletion RELEASES.md
Original file line number Diff line number Diff line change
Expand Up @@ -138,4 +138,14 @@ Based on:
### Generated
- [typescript v0.7.0] .
### Releases
- [NPM v0.7.0] https://www.npmjs.com/package/@panora/sdk/v/0.7.0 - .
- [NPM v0.7.0] https://www.npmjs.com/package/@panora/sdk/v/0.7.0 - .

## 2024-08-06 04:22:01
### Changes
Based on:
- OpenAPI Doc
- Speakeasy CLI 1.352.2 (2.385.2) https://github.com/speakeasy-api/speakeasy
### Generated
- [typescript v0.8.0] .
### Releases
- [NPM v0.8.0] https://www.npmjs.com/package/@panora/sdk/v/0.8.0 - .
Loading

0 comments on commit 4b22ec2

Please sign in to comment.