@steamsets/client-ts 0.12.2 → 0.12.3

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/lib/config.d.ts CHANGED
@@ -27,8 +27,8 @@ export declare function serverURLFromOptions(options: SDKOptions): URL | null;
27
27
  export declare const SDK_METADATA: {
28
28
  readonly language: "typescript";
29
29
  readonly openapiDocVersion: "1.0.0";
30
- readonly sdkVersion: "0.12.2";
30
+ readonly sdkVersion: "0.12.3";
31
31
  readonly genVersion: "2.438.15";
32
- readonly userAgent: "speakeasy-sdk/typescript 0.12.2 2.438.15 1.0.0 @steamsets/client-ts";
32
+ readonly userAgent: "speakeasy-sdk/typescript 0.12.3 2.438.15 1.0.0 @steamsets/client-ts";
33
33
  };
34
34
  //# sourceMappingURL=config.d.ts.map
package/lib/config.js CHANGED
@@ -30,8 +30,8 @@ function serverURLFromOptions(options) {
30
30
  exports.SDK_METADATA = {
31
31
  language: "typescript",
32
32
  openapiDocVersion: "1.0.0",
33
- sdkVersion: "0.12.2",
33
+ sdkVersion: "0.12.3",
34
34
  genVersion: "2.438.15",
35
- userAgent: "speakeasy-sdk/typescript 0.12.2 2.438.15 1.0.0 @steamsets/client-ts",
35
+ userAgent: "speakeasy-sdk/typescript 0.12.3 2.438.15 1.0.0 @steamsets/client-ts",
36
36
  };
37
37
  //# sourceMappingURL=config.js.map
@@ -36,7 +36,7 @@ export type V1AdminGetAccountResponseBody = {
36
36
  */
37
37
  connections: Array<Connection> | null;
38
38
  /**
39
- * The country of the account
39
+ * The country code of the account
40
40
  */
41
41
  country: string | null;
42
42
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@steamsets/client-ts",
3
- "version": "0.12.2",
3
+ "version": "0.12.3",
4
4
  "author": "Speakeasy",
5
5
  "main": "./index.js",
6
6
  "sideEffects": false,
package/src/lib/config.ts CHANGED
@@ -55,8 +55,8 @@ export function serverURLFromOptions(options: SDKOptions): URL | null {
55
55
  export const SDK_METADATA = {
56
56
  language: "typescript",
57
57
  openapiDocVersion: "1.0.0",
58
- sdkVersion: "0.12.2",
58
+ sdkVersion: "0.12.3",
59
59
  genVersion: "2.438.15",
60
60
  userAgent:
61
- "speakeasy-sdk/typescript 0.12.2 2.438.15 1.0.0 @steamsets/client-ts",
61
+ "speakeasy-sdk/typescript 0.12.3 2.438.15 1.0.0 @steamsets/client-ts",
62
62
  } as const;
@@ -75,7 +75,7 @@ export type V1AdminGetAccountResponseBody = {
75
75
  */
76
76
  connections: Array<Connection> | null;
77
77
  /**
78
- * The country of the account
78
+ * The country code of the account
79
79
  */
80
80
  country: string | null;
81
81
  /**