@beyond-pci/sdk 1.0.0 → 1.1.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +4 -4
- package/dist/commonjs/lib/config.d.ts +3 -3
- package/dist/commonjs/lib/config.js +3 -3
- package/dist/commonjs/models/operations/postv1webhooksidtest.d.ts +979 -0
- package/dist/commonjs/models/operations/postv1webhooksidtest.d.ts.map +1 -1
- package/dist/commonjs/models/operations/postv1webhooksidtest.js +1040 -2
- package/dist/commonjs/models/operations/postv1webhooksidtest.js.map +1 -1
- package/dist/esm/lib/config.d.ts +3 -3
- package/dist/esm/lib/config.js +3 -3
- package/dist/esm/models/operations/postv1webhooksidtest.d.ts +979 -0
- package/dist/esm/models/operations/postv1webhooksidtest.d.ts.map +1 -1
- package/dist/esm/models/operations/postv1webhooksidtest.js +986 -0
- package/dist/esm/models/operations/postv1webhooksidtest.js.map +1 -1
- package/jsr.json +1 -1
- package/package.json +1 -1
- package/src/lib/config.ts +3 -3
- package/src/models/operations/postv1webhooksidtest.ts +2293 -0
package/README.md
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
# beyond-pci-
|
|
1
|
+
# beyond-pci-typescript
|
|
2
2
|
|
|
3
|
-
Developer-friendly, idiomatic Typescript SDK for the *beyond-pci-
|
|
3
|
+
Developer-friendly, idiomatic Typescript SDK for the *beyond-pci-typescript* API.
|
|
4
4
|
|
|
5
5
|
<div align="left">
|
|
6
|
-
<a href="https://www.scalar.com/?utm_source=beyond-pci-
|
|
6
|
+
<a href="https://www.scalar.com/?utm_source=beyond-pci-typescript&utm_campaign=typescript"><img src="https://custom-icon-badges.demolab.com/badge/-Built%20By%20scalar+speakeasy-212015?style=for-the-badge&logo=scalar&labelColor=252525" /></a>
|
|
7
7
|
<a href="https://opensource.org/licenses/MIT">
|
|
8
8
|
<img src="https://img.shields.io/badge/License-MIT-blue.svg" style="width: 100px; height: 28px;" />
|
|
9
9
|
</a>
|
|
@@ -541,4 +541,4 @@ const sdk = new BeyondPCI({ debugLogger: console });
|
|
|
541
541
|
While we value open-source contributions to this SDK, this library is generated programmatically. Any manual changes added to internal files will be overwritten on the next generation.
|
|
542
542
|
We look forward to hearing your feedback. Feel free to open a PR or an issue with a proof of concept and we'll do our best to include it in a future release.
|
|
543
543
|
|
|
544
|
-
### SDK Created by [Scalar](https://www.scalar.com/?utm_source=beyond-pci-
|
|
544
|
+
### SDK Created by [Scalar](https://www.scalar.com/?utm_source=beyond-pci-typescript&utm_campaign=typescript)
|
|
@@ -30,9 +30,9 @@ export type SDKOptions = {
|
|
|
30
30
|
export declare function serverURLFromOptions(options: SDKOptions): URL | null;
|
|
31
31
|
export declare const SDK_METADATA: {
|
|
32
32
|
readonly language: "typescript";
|
|
33
|
-
readonly openapiDocVersion: "1.
|
|
34
|
-
readonly sdkVersion: "1.
|
|
33
|
+
readonly openapiDocVersion: "1.1.4";
|
|
34
|
+
readonly sdkVersion: "1.1.4";
|
|
35
35
|
readonly genVersion: "2.634.2";
|
|
36
|
-
readonly userAgent: "speakeasy-sdk/typescript 1.
|
|
36
|
+
readonly userAgent: "speakeasy-sdk/typescript 1.1.4 2.634.2 1.1.4 @beyond-pci/sdk";
|
|
37
37
|
};
|
|
38
38
|
//# sourceMappingURL=config.d.ts.map
|
|
@@ -34,9 +34,9 @@ function serverURLFromOptions(options) {
|
|
|
34
34
|
}
|
|
35
35
|
exports.SDK_METADATA = {
|
|
36
36
|
language: "typescript",
|
|
37
|
-
openapiDocVersion: "1.
|
|
38
|
-
sdkVersion: "1.
|
|
37
|
+
openapiDocVersion: "1.1.4",
|
|
38
|
+
sdkVersion: "1.1.4",
|
|
39
39
|
genVersion: "2.634.2",
|
|
40
|
-
userAgent: "speakeasy-sdk/typescript 1.
|
|
40
|
+
userAgent: "speakeasy-sdk/typescript 1.1.4 2.634.2 1.1.4 @beyond-pci/sdk",
|
|
41
41
|
};
|
|
42
42
|
//# sourceMappingURL=config.js.map
|