@steamsets/client-ts 0.11.7 → 0.11.8

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 CHANGED
@@ -109,7 +109,7 @@ run();
109
109
 
110
110
  ### [badge](docs/sdks/badge/README.md)
111
111
 
112
- * [badgeV1Tags](docs/sdks/badge/README.md#badgev1tags) - Get all availiable badge tags
112
+ * [badgeV1Tags](docs/sdks/badge/README.md#badgev1tags) - Get all available badge tags
113
113
  * [badgeV1Tag](docs/sdks/badge/README.md#badgev1tag) - Tag a badge
114
114
 
115
115
  ### [connection](docs/sdks/connection/README.md)
@@ -5,12 +5,12 @@
5
5
 
6
6
  ### Available Operations
7
7
 
8
- * [badgeV1Tags](#badgev1tags) - Get all availiable badge tags
8
+ * [badgeV1Tags](#badgev1tags) - Get all available badge tags
9
9
  * [badgeV1Tag](#badgev1tag) - Tag a badge
10
10
 
11
11
  ## badgeV1Tags
12
12
 
13
- Get all availiable badge tags
13
+ Get all available badge tags
14
14
 
15
15
  ### Example Usage
16
16
 
@@ -8,7 +8,7 @@ import { SDKValidationError } from "../models/errors/sdkvalidationerror.js";
8
8
  import * as operations from "../models/operations/index.js";
9
9
  import { Result } from "../types/fp.js";
10
10
  /**
11
- * Get all availiable badge tags
11
+ * Get all available badge tags
12
12
  */
13
13
  export declare function badgeBadgeV1Tags(client: SteamSetsCore, _request: components.V1BadgeTagsRequestBody, options?: RequestOptions): Promise<Result<operations.BadgeV1TagsResponse, errors.ErrorModel | SDKError | SDKValidationError | UnexpectedClientError | InvalidRequestError | RequestAbortedError | RequestTimeoutError | ConnectionError>>;
14
14
  //# sourceMappingURL=badgeBadgeV1Tags.d.ts.map
@@ -33,7 +33,7 @@ const url_js_1 = require("../lib/url.js");
33
33
  const errors = __importStar(require("../models/errors/index.js"));
34
34
  const operations = __importStar(require("../models/operations/index.js"));
35
35
  /**
36
- * Get all availiable badge tags
36
+ * Get all available badge tags
37
37
  */
38
38
  async function badgeBadgeV1Tags(client, _request, options) {
39
39
  const path = (0, url_js_1.pathToFunc)("/badge.v1.BadgeService/GetTags")();
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.11.7";
30
+ readonly sdkVersion: "0.11.8";
31
31
  readonly genVersion: "2.429.0";
32
- readonly userAgent: "speakeasy-sdk/typescript 0.11.7 2.429.0 1.0.0 @steamsets/client-ts";
32
+ readonly userAgent: "speakeasy-sdk/typescript 0.11.8 2.429.0 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.11.7",
33
+ sdkVersion: "0.11.8",
34
34
  genVersion: "2.429.0",
35
- userAgent: "speakeasy-sdk/typescript 0.11.7 2.429.0 1.0.0 @steamsets/client-ts",
35
+ userAgent: "speakeasy-sdk/typescript 0.11.8 2.429.0 1.0.0 @steamsets/client-ts",
36
36
  };
37
37
  //# sourceMappingURL=config.js.map
@@ -7,11 +7,11 @@ export type V1BadgeTagsResponseBody = {
7
7
  */
8
8
  dollarSchema?: string | undefined;
9
9
  /**
10
- * The availiable color tags
10
+ * The available color tags
11
11
  */
12
12
  colorTags: Array<ColorTag> | null;
13
13
  /**
14
- * The availiable design tags
14
+ * The available design tags
15
15
  */
16
16
  designTags: Array<DesignTag> | null;
17
17
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@steamsets/client-ts",
3
- "version": "0.11.7",
3
+ "version": "0.11.8",
4
4
  "author": "Speakeasy",
5
5
  "main": "./index.js",
6
6
  "sideEffects": false,
package/sdk/badge.d.ts CHANGED
@@ -3,7 +3,7 @@ import * as components from "../models/components/index.js";
3
3
  import * as operations from "../models/operations/index.js";
4
4
  export declare class Badge extends ClientSDK {
5
5
  /**
6
- * Get all availiable badge tags
6
+ * Get all available badge tags
7
7
  */
8
8
  badgeV1Tags(request: components.V1BadgeTagsRequestBody, options?: RequestOptions): Promise<operations.BadgeV1TagsResponse>;
9
9
  /**
package/sdk/badge.js CHANGED
@@ -10,7 +10,7 @@ const sdks_js_1 = require("../lib/sdks.js");
10
10
  const fp_js_1 = require("../types/fp.js");
11
11
  class Badge extends sdks_js_1.ClientSDK {
12
12
  /**
13
- * Get all availiable badge tags
13
+ * Get all available badge tags
14
14
  */
15
15
  async badgeV1Tags(request, options) {
16
16
  return (0, fp_js_1.unwrapAsync)((0, badgeBadgeV1Tags_js_1.badgeBadgeV1Tags)(this, request, options));
@@ -22,7 +22,7 @@ import * as operations from "../models/operations/index.js";
22
22
  import { Result } from "../types/fp.js";
23
23
 
24
24
  /**
25
- * Get all availiable badge tags
25
+ * Get all available badge tags
26
26
  */
27
27
  export async function badgeBadgeV1Tags(
28
28
  client: SteamSetsCore,
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.11.7",
58
+ sdkVersion: "0.11.8",
59
59
  genVersion: "2.429.0",
60
60
  userAgent:
61
- "speakeasy-sdk/typescript 0.11.7 2.429.0 1.0.0 @steamsets/client-ts",
61
+ "speakeasy-sdk/typescript 0.11.8 2.429.0 1.0.0 @steamsets/client-ts",
62
62
  } as const;
@@ -23,11 +23,11 @@ export type V1BadgeTagsResponseBody = {
23
23
  */
24
24
  dollarSchema?: string | undefined;
25
25
  /**
26
- * The availiable color tags
26
+ * The available color tags
27
27
  */
28
28
  colorTags: Array<ColorTag> | null;
29
29
  /**
30
- * The availiable design tags
30
+ * The available design tags
31
31
  */
32
32
  designTags: Array<DesignTag> | null;
33
33
  };
package/src/sdk/badge.ts CHANGED
@@ -11,7 +11,7 @@ import { unwrapAsync } from "../types/fp.js";
11
11
 
12
12
  export class Badge extends ClientSDK {
13
13
  /**
14
- * Get all availiable badge tags
14
+ * Get all available badge tags
15
15
  */
16
16
  async badgeV1Tags(
17
17
  request: components.V1BadgeTagsRequestBody,