@polar-sh/sdk 0.17.1 → 0.17.2
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 +17 -12
- package/lib/config.d.ts +3 -3
- package/lib/config.js +3 -3
- package/package.json +1 -1
- package/src/lib/config.ts +3 -3
package/README.md
CHANGED
|
@@ -22,19 +22,24 @@ Read the docs at https://docs.polar.sh/api
|
|
|
22
22
|
|
|
23
23
|
<!-- Start Table of Contents [toc] -->
|
|
24
24
|
## Table of Contents
|
|
25
|
+
<!-- $toc-max-depth=2 -->
|
|
26
|
+
* [@polar-sh/sdk](#polar-shsdk)
|
|
27
|
+
* [SDK Installation](#sdk-installation)
|
|
28
|
+
* [Requirements](#requirements)
|
|
29
|
+
* [SDK Example Usage](#sdk-example-usage)
|
|
30
|
+
* [Available Resources and Operations](#available-resources-and-operations)
|
|
31
|
+
* [Standalone functions](#standalone-functions)
|
|
32
|
+
* [Pagination](#pagination)
|
|
33
|
+
* [Retries](#retries)
|
|
34
|
+
* [Error Handling](#error-handling)
|
|
35
|
+
* [Server Selection](#server-selection)
|
|
36
|
+
* [Custom HTTP Client](#custom-http-client)
|
|
37
|
+
* [Authentication](#authentication)
|
|
38
|
+
* [Debugging](#debugging)
|
|
39
|
+
* [Development](#development)
|
|
40
|
+
* [Maturity](#maturity)
|
|
41
|
+
* [Contributions](#contributions)
|
|
25
42
|
|
|
26
|
-
* [SDK Installation](#sdk-installation)
|
|
27
|
-
* [Requirements](#requirements)
|
|
28
|
-
* [SDK Example Usage](#sdk-example-usage)
|
|
29
|
-
* [Available Resources and Operations](#available-resources-and-operations)
|
|
30
|
-
* [Standalone functions](#standalone-functions)
|
|
31
|
-
* [Pagination](#pagination)
|
|
32
|
-
* [Retries](#retries)
|
|
33
|
-
* [Error Handling](#error-handling)
|
|
34
|
-
* [Server Selection](#server-selection)
|
|
35
|
-
* [Custom HTTP Client](#custom-http-client)
|
|
36
|
-
* [Authentication](#authentication)
|
|
37
|
-
* [Debugging](#debugging)
|
|
38
43
|
<!-- End Table of Contents [toc] -->
|
|
39
44
|
|
|
40
45
|
<!-- Start SDK Installation [installation] -->
|
package/lib/config.d.ts
CHANGED
|
@@ -38,8 +38,8 @@ export declare function serverURLFromOptions(options: SDKOptions): URL | null;
|
|
|
38
38
|
export declare const SDK_METADATA: {
|
|
39
39
|
readonly language: "typescript";
|
|
40
40
|
readonly openapiDocVersion: "0.1.0";
|
|
41
|
-
readonly sdkVersion: "0.17.
|
|
42
|
-
readonly genVersion: "2.
|
|
43
|
-
readonly userAgent: "speakeasy-sdk/typescript 0.17.
|
|
41
|
+
readonly sdkVersion: "0.17.2";
|
|
42
|
+
readonly genVersion: "2.467.4";
|
|
43
|
+
readonly userAgent: "speakeasy-sdk/typescript 0.17.2 2.467.4 0.1.0 @polar-sh/sdk";
|
|
44
44
|
};
|
|
45
45
|
//# sourceMappingURL=config.d.ts.map
|
package/lib/config.js
CHANGED
|
@@ -35,8 +35,8 @@ function serverURLFromOptions(options) {
|
|
|
35
35
|
exports.SDK_METADATA = {
|
|
36
36
|
language: "typescript",
|
|
37
37
|
openapiDocVersion: "0.1.0",
|
|
38
|
-
sdkVersion: "0.17.
|
|
39
|
-
genVersion: "2.
|
|
40
|
-
userAgent: "speakeasy-sdk/typescript 0.17.
|
|
38
|
+
sdkVersion: "0.17.2",
|
|
39
|
+
genVersion: "2.467.4",
|
|
40
|
+
userAgent: "speakeasy-sdk/typescript 0.17.2 2.467.4 0.1.0 @polar-sh/sdk",
|
|
41
41
|
};
|
|
42
42
|
//# sourceMappingURL=config.js.map
|
package/package.json
CHANGED
package/src/lib/config.ts
CHANGED
|
@@ -60,7 +60,7 @@ export function serverURLFromOptions(options: SDKOptions): URL | null {
|
|
|
60
60
|
export const SDK_METADATA = {
|
|
61
61
|
language: "typescript",
|
|
62
62
|
openapiDocVersion: "0.1.0",
|
|
63
|
-
sdkVersion: "0.17.
|
|
64
|
-
genVersion: "2.
|
|
65
|
-
userAgent: "speakeasy-sdk/typescript 0.17.
|
|
63
|
+
sdkVersion: "0.17.2",
|
|
64
|
+
genVersion: "2.467.4",
|
|
65
|
+
userAgent: "speakeasy-sdk/typescript 0.17.2 2.467.4 0.1.0 @polar-sh/sdk",
|
|
66
66
|
} as const;
|