@steamsets/client-ts 0.29.1 → 0.31.0

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.
Files changed (152) hide show
  1. package/README.md +14 -14
  2. package/_speakeasy/.github/action-inputs-config.json +53 -0
  3. package/_speakeasy/.github/action-security-config.json +88 -0
  4. package/examples/package-lock.json +1 -1
  5. package/funcs/accountAccountListInventorySets.d.ts +18 -0
  6. package/funcs/accountAccountListInventorySets.d.ts.map +1 -0
  7. package/funcs/{badgesListPrices.js → accountAccountListInventorySets.js} +18 -24
  8. package/funcs/accountAccountListInventorySets.js.map +1 -0
  9. package/funcs/accountAccountRefreshInventory.d.ts +18 -0
  10. package/funcs/accountAccountRefreshInventory.d.ts.map +1 -0
  11. package/funcs/accountAccountRefreshInventory.js +125 -0
  12. package/funcs/accountAccountRefreshInventory.js.map +1 -0
  13. package/jsr.json +1 -1
  14. package/lib/config.d.ts +3 -3
  15. package/lib/config.js +3 -3
  16. package/lib/config.js.map +1 -1
  17. package/lib/encodings.d.ts +1 -0
  18. package/lib/encodings.d.ts.map +1 -1
  19. package/lib/encodings.js +12 -1
  20. package/lib/encodings.js.map +1 -1
  21. package/models/components/card.d.ts +17 -0
  22. package/models/components/card.d.ts.map +1 -0
  23. package/models/components/{v1badgelevel.js → card.js} +8 -8
  24. package/models/components/card.js.map +1 -0
  25. package/models/components/index.d.ts +4 -9
  26. package/models/components/index.d.ts.map +1 -1
  27. package/models/components/index.js +4 -9
  28. package/models/components/index.js.map +1 -1
  29. package/models/components/inventoryset.d.ts +30 -0
  30. package/models/components/inventoryset.d.ts.map +1 -0
  31. package/models/components/{v1badgetypecount.js → inventoryset.js} +12 -9
  32. package/models/components/inventoryset.js.map +1 -0
  33. package/models/components/resource.d.ts +1 -0
  34. package/models/components/resource.d.ts.map +1 -1
  35. package/models/components/resource.js +1 -0
  36. package/models/components/resource.js.map +1 -1
  37. package/models/components/v1accountlistinventorysetsresponsebody.d.ts +26 -0
  38. package/models/components/v1accountlistinventorysetsresponsebody.d.ts.map +1 -0
  39. package/models/components/{v1badgelistbadgepricesresponsebody.js → v1accountlistinventorysetsresponsebody.js} +10 -13
  40. package/models/components/v1accountlistinventorysetsresponsebody.js.map +1 -0
  41. package/models/components/v1accountrefreshinventoryresponsebody.d.ts +17 -0
  42. package/models/components/v1accountrefreshinventoryresponsebody.d.ts.map +1 -0
  43. package/models/components/{errormodel.js → v1accountrefreshinventoryresponsebody.js} +7 -13
  44. package/models/components/v1accountrefreshinventoryresponsebody.js.map +1 -0
  45. package/models/components/v1leaderboardgetaccountleaderboardresponsebody.d.ts +1 -1
  46. package/models/components/v1leaderboardgetaccountleaderboardresponsebody.d.ts.map +1 -1
  47. package/models/components/v1leaderboardgetgroupleaderboardresponsebody.d.ts +1 -1
  48. package/models/components/v1leaderboardgetgroupleaderboardresponsebody.d.ts.map +1 -1
  49. package/models/components/v1leaderboardpreviewaccountrankresponsebody.d.ts +1 -1
  50. package/models/components/v1leaderboardpreviewaccountrankresponsebody.d.ts.map +1 -1
  51. package/models/operations/accountlistinventorysets.d.ts +15 -0
  52. package/models/operations/accountlistinventorysets.d.ts.map +1 -0
  53. package/models/operations/{badgelistbadgeprices.js → accountlistinventorysets.js} +9 -11
  54. package/models/operations/accountlistinventorysets.js.map +1 -0
  55. package/models/operations/accountrefreshinventory.d.ts +15 -0
  56. package/models/operations/accountrefreshinventory.d.ts.map +1 -0
  57. package/models/{components/v1badgeapp.js → operations/accountrefreshinventory.js} +16 -12
  58. package/models/operations/accountrefreshinventory.js.map +1 -0
  59. package/models/operations/index.d.ts +2 -1
  60. package/models/operations/index.d.ts.map +1 -1
  61. package/models/operations/index.js +2 -1
  62. package/models/operations/index.js.map +1 -1
  63. package/package.json +1 -1
  64. package/sdk/account.d.ts +14 -0
  65. package/sdk/account.d.ts.map +1 -1
  66. package/sdk/account.js +20 -0
  67. package/sdk/account.js.map +1 -1
  68. package/sdk/badges.d.ts +0 -11
  69. package/sdk/badges.d.ts.map +1 -1
  70. package/sdk/badges.js +1 -13
  71. package/sdk/badges.js.map +1 -1
  72. package/src/funcs/{badgesListPrices.ts → accountAccountListInventorySets.ts} +24 -29
  73. package/src/funcs/accountAccountRefreshInventory.ts +169 -0
  74. package/src/lib/config.ts +3 -3
  75. package/src/lib/encodings.ts +17 -3
  76. package/src/models/components/card.ts +36 -0
  77. package/src/models/components/index.ts +4 -9
  78. package/src/models/components/inventoryset.ts +55 -0
  79. package/src/models/components/resource.ts +1 -0
  80. package/src/models/components/v1accountlistinventorysetsresponsebody.ts +56 -0
  81. package/src/models/components/v1accountrefreshinventoryresponsebody.ts +45 -0
  82. package/src/models/components/v1leaderboardgetaccountleaderboardresponsebody.ts +1 -1
  83. package/src/models/components/v1leaderboardgetgroupleaderboardresponsebody.ts +1 -1
  84. package/src/models/components/v1leaderboardpreviewaccountrankresponsebody.ts +1 -1
  85. package/src/models/operations/accountlistinventorysets.ts +47 -0
  86. package/src/models/operations/accountrefreshinventory.ts +47 -0
  87. package/src/models/operations/index.ts +2 -1
  88. package/src/sdk/account.ts +32 -0
  89. package/src/sdk/badges.ts +0 -23
  90. package/src/types/enums.ts +1 -21
  91. package/src/types/index.ts +2 -1
  92. package/src/types/unrecognized.ts +35 -0
  93. package/tsconfig.json +1 -2
  94. package/types/enums.d.ts +1 -8
  95. package/types/enums.d.ts.map +1 -1
  96. package/types/enums.js +3 -21
  97. package/types/enums.js.map +1 -1
  98. package/types/index.d.ts +2 -1
  99. package/types/index.d.ts.map +1 -1
  100. package/types/index.js +15 -0
  101. package/types/index.js.map +1 -1
  102. package/types/unrecognized.d.ts +16 -0
  103. package/types/unrecognized.d.ts.map +1 -0
  104. package/types/unrecognized.js +34 -0
  105. package/types/unrecognized.js.map +1 -0
  106. package/funcs/badgesListPrices.d.ts +0 -24
  107. package/funcs/badgesListPrices.d.ts.map +0 -1
  108. package/funcs/badgesListPrices.js.map +0 -1
  109. package/models/components/errormodel.d.ts +0 -38
  110. package/models/components/errormodel.d.ts.map +0 -1
  111. package/models/components/errormodel.js.map +0 -1
  112. package/models/components/v1badgeapp.d.ts +0 -15
  113. package/models/components/v1badgeapp.d.ts.map +0 -1
  114. package/models/components/v1badgeapp.js.map +0 -1
  115. package/models/components/v1badgelevel.d.ts +0 -12
  116. package/models/components/v1badgelevel.d.ts.map +0 -1
  117. package/models/components/v1badgelevel.js.map +0 -1
  118. package/models/components/v1badgelistbadgepricesrequestbody.d.ts +0 -8
  119. package/models/components/v1badgelistbadgepricesrequestbody.d.ts.map +0 -1
  120. package/models/components/v1badgelistbadgepricesrequestbody.js +0 -47
  121. package/models/components/v1badgelistbadgepricesrequestbody.js.map +0 -1
  122. package/models/components/v1badgelistbadgepricesresponsebody.d.ts +0 -31
  123. package/models/components/v1badgelistbadgepricesresponsebody.d.ts.map +0 -1
  124. package/models/components/v1badgelistbadgepricesresponsebody.js.map +0 -1
  125. package/models/components/v1badgeset.d.ts +0 -27
  126. package/models/components/v1badgeset.d.ts.map +0 -1
  127. package/models/components/v1badgeset.js +0 -65
  128. package/models/components/v1badgeset.js.map +0 -1
  129. package/models/components/v1badgesetcount.d.ts +0 -11
  130. package/models/components/v1badgesetcount.d.ts.map +0 -1
  131. package/models/components/v1badgesetcount.js +0 -51
  132. package/models/components/v1badgesetcount.js.map +0 -1
  133. package/models/components/v1badgesetcounts.d.ts +0 -13
  134. package/models/components/v1badgesetcounts.d.ts.map +0 -1
  135. package/models/components/v1badgesetcounts.js +0 -53
  136. package/models/components/v1badgesetcounts.js.map +0 -1
  137. package/models/components/v1badgetypecount.d.ts +0 -12
  138. package/models/components/v1badgetypecount.d.ts.map +0 -1
  139. package/models/components/v1badgetypecount.js.map +0 -1
  140. package/models/operations/badgelistbadgeprices.d.ts +0 -19
  141. package/models/operations/badgelistbadgeprices.d.ts.map +0 -1
  142. package/models/operations/badgelistbadgeprices.js.map +0 -1
  143. package/src/models/components/errormodel.ts +0 -70
  144. package/src/models/components/v1badgeapp.ts +0 -41
  145. package/src/models/components/v1badgelevel.ts +0 -35
  146. package/src/models/components/v1badgelistbadgepricesrequestbody.ts +0 -27
  147. package/src/models/components/v1badgelistbadgepricesresponsebody.ts +0 -63
  148. package/src/models/components/v1badgeset.ts +0 -62
  149. package/src/models/components/v1badgesetcount.ts +0 -33
  150. package/src/models/components/v1badgesetcounts.ts +0 -39
  151. package/src/models/components/v1badgetypecount.ts +0 -35
  152. package/src/models/operations/badgelistbadgeprices.ts +0 -52
@@ -2,6 +2,8 @@
2
2
  * Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT.
3
3
  */
4
4
 
5
+ import { accountAccountListInventorySets } from "../funcs/accountAccountListInventorySets.js";
6
+ import { accountAccountRefreshInventory } from "../funcs/accountAccountRefreshInventory.js";
5
7
  import { accountBookmarkBadge } from "../funcs/accountBookmarkBadge.js";
6
8
  import { accountCreateConnection } from "../funcs/accountCreateConnection.js";
7
9
  import { accountCreateDeveloperApp } from "../funcs/accountCreateDeveloperApp.js";
@@ -288,6 +290,21 @@ export class Account extends ClientSDK {
288
290
  ));
289
291
  }
290
292
 
293
+ /**
294
+ * List inventory sets
295
+ *
296
+ * @remarks
297
+ * Get all trading card sets with ownership information for the authenticated user
298
+ */
299
+ async accountListInventorySets(
300
+ options?: RequestOptions,
301
+ ): Promise<operations.AccountListInventorySetsResponse> {
302
+ return unwrapAsync(accountAccountListInventorySets(
303
+ this,
304
+ options,
305
+ ));
306
+ }
307
+
291
308
  /**
292
309
  * Get leaderboard history
293
310
  */
@@ -368,6 +385,21 @@ export class Account extends ClientSDK {
368
385
  ));
369
386
  }
370
387
 
388
+ /**
389
+ * Refresh inventory
390
+ *
391
+ * @remarks
392
+ * Trigger a refresh of the authenticated user's Steam inventory. Rate limited based on account tier.
393
+ */
394
+ async accountRefreshInventory(
395
+ options?: RequestOptions,
396
+ ): Promise<operations.AccountRefreshInventoryResponse> {
397
+ return unwrapAsync(accountAccountRefreshInventory(
398
+ this,
399
+ options,
400
+ ));
401
+ }
402
+
371
403
  /**
372
404
  * Refresh session token
373
405
  */
package/src/sdk/badges.ts CHANGED
@@ -2,10 +2,6 @@
2
2
  * Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT.
3
3
  */
4
4
 
5
- import {
6
- badgesListPrices,
7
- ListPricesAcceptEnum,
8
- } from "../funcs/badgesListPrices.js";
9
5
  import { badgesListTags } from "../funcs/badgesListTags.js";
10
6
  import { badgesTag } from "../funcs/badgesTag.js";
11
7
  import { ClientSDK, RequestOptions } from "../lib/sdks.js";
@@ -13,26 +9,7 @@ import * as components from "../models/components/index.js";
13
9
  import * as operations from "../models/operations/index.js";
14
10
  import { unwrapAsync } from "../types/fp.js";
15
11
 
16
- export { ListPricesAcceptEnum } from "../funcs/badgesListPrices.js";
17
-
18
12
  export class Badges extends ClientSDK {
19
- /**
20
- * List badge prices
21
- *
22
- * @remarks
23
- * Get a list of all badge pricing information
24
- */
25
- async listPrices(
26
- request: components.V1BadgeListBadgePricesRequestBody,
27
- options?: RequestOptions & { acceptHeaderOverride?: ListPricesAcceptEnum },
28
- ): Promise<operations.BadgeListBadgePricesResponse> {
29
- return unwrapAsync(badgesListPrices(
30
- this,
31
- request,
32
- options,
33
- ));
34
- }
35
-
36
13
  /**
37
14
  * List badge tags
38
15
  */
@@ -3,34 +3,14 @@
3
3
  */
4
4
 
5
5
  import * as z from "zod/v3";
6
+ import { Unrecognized, unrecognized } from "./unrecognized.js";
6
7
 
7
- declare const __brand: unique symbol;
8
- export type Unrecognized<T> = T & { [__brand]: "unrecognized" };
9
8
  export type ClosedEnum<T extends Readonly<Record<string, string | number>>> =
10
9
  T[keyof T];
11
10
  export type OpenEnum<T extends Readonly<Record<string, string | number>>> =
12
11
  | T[keyof T]
13
12
  | Unrecognized<T[keyof T] extends number ? number : string>;
14
13
 
15
- function unrecognized<T>(value: T): Unrecognized<T> {
16
- unrecognizedCount++;
17
- return value as Unrecognized<T>;
18
- }
19
-
20
- let unrecognizedCount = 0;
21
- let refCount = 0;
22
- export function unrecognizedCounter() {
23
- refCount++;
24
- const start = unrecognizedCount;
25
- return {
26
- count: () => {
27
- const count = unrecognizedCount - start;
28
- if (--refCount === 0) unrecognizedCount = 0;
29
- return count;
30
- },
31
- };
32
- }
33
-
34
14
  export function inboundSchema<T extends Record<string, string>>(
35
15
  enumObj: T,
36
16
  ): z.ZodType<OpenEnum<T>, z.ZodTypeDef, unknown> {
@@ -3,8 +3,9 @@
3
3
  */
4
4
 
5
5
  export { blobLikeSchema, isBlobLike } from "./blobs.js";
6
- export type { ClosedEnum, OpenEnum, Unrecognized } from "./enums.js";
6
+ export type { ClosedEnum, OpenEnum } from "./enums.js";
7
7
  export type { Result } from "./fp.js";
8
8
  export type { PageIterator, Paginator } from "./operations.js";
9
9
  export { createPageIterator } from "./operations.js";
10
10
  export { RFCDate } from "./rfcdate.js";
11
+ export * from "./unrecognized.js";
@@ -0,0 +1,35 @@
1
+ /*
2
+ * Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT.
3
+ */
4
+
5
+ declare const __brand: unique symbol;
6
+ export type Unrecognized<T> = T & { [__brand]: "unrecognized" };
7
+
8
+ function unrecognized<T>(value: T): Unrecognized<T> {
9
+ globalCount++;
10
+ return value as Unrecognized<T>;
11
+ }
12
+
13
+ let globalCount = 0;
14
+ let refCount = 0;
15
+ export function startCountingUnrecognized() {
16
+ refCount++;
17
+ const start = globalCount;
18
+ return {
19
+ /**
20
+ * Ends counting and returns the delta.
21
+ * @param delta - If provided, only this amount is added to the parent counter
22
+ * (used for nested unions where we only want to record the winning option's count).
23
+ * If not provided, records all counts since start().
24
+ */
25
+ end: (delta?: number) => {
26
+ const count = globalCount - start;
27
+ // Reset globalCount back to start, then add only the specified delta
28
+ globalCount = start + (delta ?? count);
29
+ if (--refCount === 0) globalCount = 0;
30
+ return count;
31
+ },
32
+ };
33
+ }
34
+
35
+ export { unrecognized };
package/tsconfig.json CHANGED
@@ -1,7 +1,6 @@
1
1
  {
2
2
  "compilerOptions": {
3
- "incremental": true,
4
- "tsBuildInfoFile": ".tsbuildinfo",
3
+ "incremental": false,
5
4
  "target": "ES2020",
6
5
  "lib": ["ES2022", "DOM", "DOM.Iterable"],
7
6
  "jsx": "react-jsx",
package/types/enums.d.ts CHANGED
@@ -1,16 +1,9 @@
1
1
  import * as z from "zod/v3";
2
- declare const __brand: unique symbol;
3
- export type Unrecognized<T> = T & {
4
- [__brand]: "unrecognized";
5
- };
2
+ import { Unrecognized } from "./unrecognized.js";
6
3
  export type ClosedEnum<T extends Readonly<Record<string, string | number>>> = T[keyof T];
7
4
  export type OpenEnum<T extends Readonly<Record<string, string | number>>> = T[keyof T] | Unrecognized<T[keyof T] extends number ? number : string>;
8
- export declare function unrecognizedCounter(): {
9
- count: () => number;
10
- };
11
5
  export declare function inboundSchema<T extends Record<string, string>>(enumObj: T): z.ZodType<OpenEnum<T>, z.ZodTypeDef, unknown>;
12
6
  export declare function inboundSchemaInt<T extends Record<string, number | string>>(enumObj: T): z.ZodType<OpenEnum<T>, z.ZodTypeDef, unknown>;
13
7
  export declare function outboundSchema<T extends Record<string, string>>(_: T): z.ZodType<string, z.ZodTypeDef, OpenEnum<T>>;
14
8
  export declare function outboundSchemaInt<T extends Record<string, number | string>>(_: T): z.ZodType<number, z.ZodTypeDef, OpenEnum<T>>;
15
- export {};
16
9
  //# sourceMappingURL=enums.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"enums.d.ts","sourceRoot":"","sources":["../src/types/enums.ts"],"names":[],"mappings":"AAIA,OAAO,KAAK,CAAC,MAAM,QAAQ,CAAC;AAE5B,OAAO,CAAC,MAAM,OAAO,EAAE,OAAO,MAAM,CAAC;AACrC,MAAM,MAAM,YAAY,CAAC,CAAC,IAAI,CAAC,GAAG;IAAE,CAAC,OAAO,CAAC,EAAE,cAAc,CAAA;CAAE,CAAC;AAChE,MAAM,MAAM,UAAU,CAAC,CAAC,SAAS,QAAQ,CAAC,MAAM,CAAC,MAAM,EAAE,MAAM,GAAG,MAAM,CAAC,CAAC,IACxE,CAAC,CAAC,MAAM,CAAC,CAAC,CAAC;AACb,MAAM,MAAM,QAAQ,CAAC,CAAC,SAAS,QAAQ,CAAC,MAAM,CAAC,MAAM,EAAE,MAAM,GAAG,MAAM,CAAC,CAAC,IACpE,CAAC,CAAC,MAAM,CAAC,CAAC,GACV,YAAY,CAAC,CAAC,CAAC,MAAM,CAAC,CAAC,SAAS,MAAM,GAAG,MAAM,GAAG,MAAM,CAAC,CAAC;AAS9D,wBAAgB,mBAAmB;;EAUlC;AAED,wBAAgB,aAAa,CAAC,CAAC,SAAS,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,EAC5D,OAAO,EAAE,CAAC,GACT,CAAC,CAAC,OAAO,CAAC,QAAQ,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,UAAU,EAAE,OAAO,CAAC,CAM/C;AAED,wBAAgB,gBAAgB,CAAC,CAAC,SAAS,MAAM,CAAC,MAAM,EAAE,MAAM,GAAG,MAAM,CAAC,EACxE,OAAO,EAAE,CAAC,GACT,CAAC,CAAC,OAAO,CAAC,QAAQ,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,UAAU,EAAE,OAAO,CAAC,CAO/C;AAED,wBAAgB,cAAc,CAAC,CAAC,SAAS,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,EAC7D,CAAC,EAAE,CAAC,GACH,CAAC,CAAC,OAAO,CAAC,MAAM,EAAE,CAAC,CAAC,UAAU,EAAE,QAAQ,CAAC,CAAC,CAAC,CAAC,CAE9C;AAED,wBAAgB,iBAAiB,CAAC,CAAC,SAAS,MAAM,CAAC,MAAM,EAAE,MAAM,GAAG,MAAM,CAAC,EACzE,CAAC,EAAE,CAAC,GACH,CAAC,CAAC,OAAO,CAAC,MAAM,EAAE,CAAC,CAAC,UAAU,EAAE,QAAQ,CAAC,CAAC,CAAC,CAAC,CAE9C"}
1
+ {"version":3,"file":"enums.d.ts","sourceRoot":"","sources":["../src/types/enums.ts"],"names":[],"mappings":"AAIA,OAAO,KAAK,CAAC,MAAM,QAAQ,CAAC;AAC5B,OAAO,EAAE,YAAY,EAAgB,MAAM,mBAAmB,CAAC;AAE/D,MAAM,MAAM,UAAU,CAAC,CAAC,SAAS,QAAQ,CAAC,MAAM,CAAC,MAAM,EAAE,MAAM,GAAG,MAAM,CAAC,CAAC,IACxE,CAAC,CAAC,MAAM,CAAC,CAAC,CAAC;AACb,MAAM,MAAM,QAAQ,CAAC,CAAC,SAAS,QAAQ,CAAC,MAAM,CAAC,MAAM,EAAE,MAAM,GAAG,MAAM,CAAC,CAAC,IACpE,CAAC,CAAC,MAAM,CAAC,CAAC,GACV,YAAY,CAAC,CAAC,CAAC,MAAM,CAAC,CAAC,SAAS,MAAM,GAAG,MAAM,GAAG,MAAM,CAAC,CAAC;AAE9D,wBAAgB,aAAa,CAAC,CAAC,SAAS,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,EAC5D,OAAO,EAAE,CAAC,GACT,CAAC,CAAC,OAAO,CAAC,QAAQ,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,UAAU,EAAE,OAAO,CAAC,CAM/C;AAED,wBAAgB,gBAAgB,CAAC,CAAC,SAAS,MAAM,CAAC,MAAM,EAAE,MAAM,GAAG,MAAM,CAAC,EACxE,OAAO,EAAE,CAAC,GACT,CAAC,CAAC,OAAO,CAAC,QAAQ,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,UAAU,EAAE,OAAO,CAAC,CAO/C;AAED,wBAAgB,cAAc,CAAC,CAAC,SAAS,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,EAC7D,CAAC,EAAE,CAAC,GACH,CAAC,CAAC,OAAO,CAAC,MAAM,EAAE,CAAC,CAAC,UAAU,EAAE,QAAQ,CAAC,CAAC,CAAC,CAAC,CAE9C;AAED,wBAAgB,iBAAiB,CAAC,CAAC,SAAS,MAAM,CAAC,MAAM,EAAE,MAAM,GAAG,MAAM,CAAC,EACzE,CAAC,EAAE,CAAC,GACH,CAAC,CAAC,OAAO,CAAC,MAAM,EAAE,CAAC,CAAC,UAAU,EAAE,QAAQ,CAAC,CAAC,CAAC,CAAC,CAE9C"}
package/types/enums.js CHANGED
@@ -36,35 +36,17 @@ var __importStar = (this && this.__importStar) || (function () {
36
36
  };
37
37
  })();
38
38
  Object.defineProperty(exports, "__esModule", { value: true });
39
- exports.unrecognizedCounter = unrecognizedCounter;
40
39
  exports.inboundSchema = inboundSchema;
41
40
  exports.inboundSchemaInt = inboundSchemaInt;
42
41
  exports.outboundSchema = outboundSchema;
43
42
  exports.outboundSchemaInt = outboundSchemaInt;
44
43
  const z = __importStar(require("zod/v3"));
45
- function unrecognized(value) {
46
- unrecognizedCount++;
47
- return value;
48
- }
49
- let unrecognizedCount = 0;
50
- let refCount = 0;
51
- function unrecognizedCounter() {
52
- refCount++;
53
- const start = unrecognizedCount;
54
- return {
55
- count: () => {
56
- const count = unrecognizedCount - start;
57
- if (--refCount === 0)
58
- unrecognizedCount = 0;
59
- return count;
60
- },
61
- };
62
- }
44
+ const unrecognized_js_1 = require("./unrecognized.js");
63
45
  function inboundSchema(enumObj) {
64
46
  const options = Object.values(enumObj);
65
47
  return z.union([
66
48
  ...options.map(x => z.literal(x)),
67
- z.string().transform(x => unrecognized(x)),
49
+ z.string().transform(x => (0, unrecognized_js_1.unrecognized)(x)),
68
50
  ]);
69
51
  }
70
52
  function inboundSchemaInt(enumObj) {
@@ -72,7 +54,7 @@ function inboundSchemaInt(enumObj) {
72
54
  const options = Object.values(enumObj).filter(v => typeof v === "number");
73
55
  return z.union([
74
56
  ...options.map(x => z.literal(x)),
75
- z.number().int().transform(x => unrecognized(x)),
57
+ z.number().int().transform(x => (0, unrecognized_js_1.unrecognized)(x)),
76
58
  ]);
77
59
  }
78
60
  function outboundSchema(_) {
@@ -1 +1 @@
1
- {"version":3,"file":"enums.js","sourceRoot":"","sources":["../src/types/enums.ts"],"names":[],"mappings":";AAAA;;GAEG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAmBH,kDAUC;AAED,sCAQC;AAED,4CASC;AAED,wCAIC;AAED,8CAIC;AA5DD,0CAA4B;AAU5B,SAAS,YAAY,CAAI,KAAQ;IAC/B,iBAAiB,EAAE,CAAC;IACpB,OAAO,KAAwB,CAAC;AAClC,CAAC;AAED,IAAI,iBAAiB,GAAG,CAAC,CAAC;AAC1B,IAAI,QAAQ,GAAG,CAAC,CAAC;AACjB,SAAgB,mBAAmB;IACjC,QAAQ,EAAE,CAAC;IACX,MAAM,KAAK,GAAG,iBAAiB,CAAC;IAChC,OAAO;QACL,KAAK,EAAE,GAAG,EAAE;YACV,MAAM,KAAK,GAAG,iBAAiB,GAAG,KAAK,CAAC;YACxC,IAAI,EAAE,QAAQ,KAAK,CAAC;gBAAE,iBAAiB,GAAG,CAAC,CAAC;YAC5C,OAAO,KAAK,CAAC;QACf,CAAC;KACF,CAAC;AACJ,CAAC;AAED,SAAgB,aAAa,CAC3B,OAAU;IAEV,MAAM,OAAO,GAAG,MAAM,CAAC,MAAM,CAAC,OAAO,CAAC,CAAC;IACvC,OAAO,CAAC,CAAC,KAAK,CAAC;QACb,GAAG,OAAO,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC;QACjC,CAAC,CAAC,MAAM,EAAE,CAAC,SAAS,CAAC,CAAC,CAAC,EAAE,CAAC,YAAY,CAAC,CAAC,CAAC,CAAC;KACpC,CAAC,CAAC;AACZ,CAAC;AAED,SAAgB,gBAAgB,CAC9B,OAAU;IAEV,wEAAwE;IACxE,MAAM,OAAO,GAAG,MAAM,CAAC,MAAM,CAAC,OAAO,CAAC,CAAC,MAAM,CAAC,CAAC,CAAC,EAAE,CAAC,OAAO,CAAC,KAAK,QAAQ,CAAC,CAAC;IAC1E,OAAO,CAAC,CAAC,KAAK,CAAC;QACb,GAAG,OAAO,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC;QACjC,CAAC,CAAC,MAAM,EAAE,CAAC,GAAG,EAAE,CAAC,SAAS,CAAC,CAAC,CAAC,EAAE,CAAC,YAAY,CAAC,CAAC,CAAC,CAAC;KAC1C,CAAC,CAAC;AACZ,CAAC;AAED,SAAgB,cAAc,CAC5B,CAAI;IAEJ,OAAO,CAAC,CAAC,MAAM,EAAS,CAAC;AAC3B,CAAC;AAED,SAAgB,iBAAiB,CAC/B,CAAI;IAEJ,OAAO,CAAC,CAAC,MAAM,EAAE,CAAC,GAAG,EAAS,CAAC;AACjC,CAAC"}
1
+ {"version":3,"file":"enums.js","sourceRoot":"","sources":["../src/types/enums.ts"],"names":[],"mappings":";AAAA;;GAEG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAWH,sCAQC;AAED,4CASC;AAED,wCAIC;AAED,8CAIC;AAxCD,0CAA4B;AAC5B,uDAA+D;AAQ/D,SAAgB,aAAa,CAC3B,OAAU;IAEV,MAAM,OAAO,GAAG,MAAM,CAAC,MAAM,CAAC,OAAO,CAAC,CAAC;IACvC,OAAO,CAAC,CAAC,KAAK,CAAC;QACb,GAAG,OAAO,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC;QACjC,CAAC,CAAC,MAAM,EAAE,CAAC,SAAS,CAAC,CAAC,CAAC,EAAE,CAAC,IAAA,8BAAY,EAAC,CAAC,CAAC,CAAC;KACpC,CAAC,CAAC;AACZ,CAAC;AAED,SAAgB,gBAAgB,CAC9B,OAAU;IAEV,wEAAwE;IACxE,MAAM,OAAO,GAAG,MAAM,CAAC,MAAM,CAAC,OAAO,CAAC,CAAC,MAAM,CAAC,CAAC,CAAC,EAAE,CAAC,OAAO,CAAC,KAAK,QAAQ,CAAC,CAAC;IAC1E,OAAO,CAAC,CAAC,KAAK,CAAC;QACb,GAAG,OAAO,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC;QACjC,CAAC,CAAC,MAAM,EAAE,CAAC,GAAG,EAAE,CAAC,SAAS,CAAC,CAAC,CAAC,EAAE,CAAC,IAAA,8BAAY,EAAC,CAAC,CAAC,CAAC;KAC1C,CAAC,CAAC;AACZ,CAAC;AAED,SAAgB,cAAc,CAC5B,CAAI;IAEJ,OAAO,CAAC,CAAC,MAAM,EAAS,CAAC;AAC3B,CAAC;AAED,SAAgB,iBAAiB,CAC/B,CAAI;IAEJ,OAAO,CAAC,CAAC,MAAM,EAAE,CAAC,GAAG,EAAS,CAAC;AACjC,CAAC"}
package/types/index.d.ts CHANGED
@@ -1,7 +1,8 @@
1
1
  export { blobLikeSchema, isBlobLike } from "./blobs.js";
2
- export type { ClosedEnum, OpenEnum, Unrecognized } from "./enums.js";
2
+ export type { ClosedEnum, OpenEnum } from "./enums.js";
3
3
  export type { Result } from "./fp.js";
4
4
  export type { PageIterator, Paginator } from "./operations.js";
5
5
  export { createPageIterator } from "./operations.js";
6
6
  export { RFCDate } from "./rfcdate.js";
7
+ export * from "./unrecognized.js";
7
8
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/types/index.ts"],"names":[],"mappings":"AAIA,OAAO,EAAE,cAAc,EAAE,UAAU,EAAE,MAAM,YAAY,CAAC;AACxD,YAAY,EAAE,UAAU,EAAE,QAAQ,EAAE,YAAY,EAAE,MAAM,YAAY,CAAC;AACrE,YAAY,EAAE,MAAM,EAAE,MAAM,SAAS,CAAC;AACtC,YAAY,EAAE,YAAY,EAAE,SAAS,EAAE,MAAM,iBAAiB,CAAC;AAC/D,OAAO,EAAE,kBAAkB,EAAE,MAAM,iBAAiB,CAAC;AACrD,OAAO,EAAE,OAAO,EAAE,MAAM,cAAc,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/types/index.ts"],"names":[],"mappings":"AAIA,OAAO,EAAE,cAAc,EAAE,UAAU,EAAE,MAAM,YAAY,CAAC;AACxD,YAAY,EAAE,UAAU,EAAE,QAAQ,EAAE,MAAM,YAAY,CAAC;AACvD,YAAY,EAAE,MAAM,EAAE,MAAM,SAAS,CAAC;AACtC,YAAY,EAAE,YAAY,EAAE,SAAS,EAAE,MAAM,iBAAiB,CAAC;AAC/D,OAAO,EAAE,kBAAkB,EAAE,MAAM,iBAAiB,CAAC;AACrD,OAAO,EAAE,OAAO,EAAE,MAAM,cAAc,CAAC;AACvC,cAAc,mBAAmB,CAAC"}
package/types/index.js CHANGED
@@ -2,6 +2,20 @@
2
2
  /*
3
3
  * Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT.
4
4
  */
5
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
6
+ if (k2 === undefined) k2 = k;
7
+ var desc = Object.getOwnPropertyDescriptor(m, k);
8
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
9
+ desc = { enumerable: true, get: function() { return m[k]; } };
10
+ }
11
+ Object.defineProperty(o, k2, desc);
12
+ }) : (function(o, m, k, k2) {
13
+ if (k2 === undefined) k2 = k;
14
+ o[k2] = m[k];
15
+ }));
16
+ var __exportStar = (this && this.__exportStar) || function(m, exports) {
17
+ for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
18
+ };
5
19
  Object.defineProperty(exports, "__esModule", { value: true });
6
20
  exports.RFCDate = exports.createPageIterator = exports.isBlobLike = exports.blobLikeSchema = void 0;
7
21
  var blobs_js_1 = require("./blobs.js");
@@ -11,4 +25,5 @@ var operations_js_1 = require("./operations.js");
11
25
  Object.defineProperty(exports, "createPageIterator", { enumerable: true, get: function () { return operations_js_1.createPageIterator; } });
12
26
  var rfcdate_js_1 = require("./rfcdate.js");
13
27
  Object.defineProperty(exports, "RFCDate", { enumerable: true, get: function () { return rfcdate_js_1.RFCDate; } });
28
+ __exportStar(require("./unrecognized.js"), exports);
14
29
  //# sourceMappingURL=index.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/types/index.ts"],"names":[],"mappings":";AAAA;;GAEG;;;AAEH,uCAAwD;AAA/C,0GAAA,cAAc,OAAA;AAAE,sGAAA,UAAU,OAAA;AAInC,iDAAqD;AAA5C,mHAAA,kBAAkB,OAAA;AAC3B,2CAAuC;AAA9B,qGAAA,OAAO,OAAA"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/types/index.ts"],"names":[],"mappings":";AAAA;;GAEG;;;;;;;;;;;;;;;;;AAEH,uCAAwD;AAA/C,0GAAA,cAAc,OAAA;AAAE,sGAAA,UAAU,OAAA;AAInC,iDAAqD;AAA5C,mHAAA,kBAAkB,OAAA;AAC3B,2CAAuC;AAA9B,qGAAA,OAAO,OAAA;AAChB,oDAAkC"}
@@ -0,0 +1,16 @@
1
+ declare const __brand: unique symbol;
2
+ export type Unrecognized<T> = T & {
3
+ [__brand]: "unrecognized";
4
+ };
5
+ declare function unrecognized<T>(value: T): Unrecognized<T>;
6
+ export declare function startCountingUnrecognized(): {
7
+ /**
8
+ * Ends counting and returns the delta.
9
+ * @param delta - If provided, only this amount is added to the parent counter
10
+ * (used for nested unions where we only want to record the winning option's count).
11
+ * If not provided, records all counts since start().
12
+ */
13
+ end: (delta?: number) => number;
14
+ };
15
+ export { unrecognized };
16
+ //# sourceMappingURL=unrecognized.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"unrecognized.d.ts","sourceRoot":"","sources":["../src/types/unrecognized.ts"],"names":[],"mappings":"AAIA,OAAO,CAAC,MAAM,OAAO,EAAE,OAAO,MAAM,CAAC;AACrC,MAAM,MAAM,YAAY,CAAC,CAAC,IAAI,CAAC,GAAG;IAAE,CAAC,OAAO,CAAC,EAAE,cAAc,CAAA;CAAE,CAAC;AAEhE,iBAAS,YAAY,CAAC,CAAC,EAAE,KAAK,EAAE,CAAC,GAAG,YAAY,CAAC,CAAC,CAAC,CAGlD;AAID,wBAAgB,yBAAyB;IAIrC;;;;;OAKG;kBACW,MAAM;EAQvB;AAED,OAAO,EAAE,YAAY,EAAE,CAAC"}
@@ -0,0 +1,34 @@
1
+ "use strict";
2
+ /*
3
+ * Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT.
4
+ */
5
+ Object.defineProperty(exports, "__esModule", { value: true });
6
+ exports.startCountingUnrecognized = startCountingUnrecognized;
7
+ exports.unrecognized = unrecognized;
8
+ function unrecognized(value) {
9
+ globalCount++;
10
+ return value;
11
+ }
12
+ let globalCount = 0;
13
+ let refCount = 0;
14
+ function startCountingUnrecognized() {
15
+ refCount++;
16
+ const start = globalCount;
17
+ return {
18
+ /**
19
+ * Ends counting and returns the delta.
20
+ * @param delta - If provided, only this amount is added to the parent counter
21
+ * (used for nested unions where we only want to record the winning option's count).
22
+ * If not provided, records all counts since start().
23
+ */
24
+ end: (delta) => {
25
+ const count = globalCount - start;
26
+ // Reset globalCount back to start, then add only the specified delta
27
+ globalCount = start + (delta ?? count);
28
+ if (--refCount === 0)
29
+ globalCount = 0;
30
+ return count;
31
+ },
32
+ };
33
+ }
34
+ //# sourceMappingURL=unrecognized.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"unrecognized.js","sourceRoot":"","sources":["../src/types/unrecognized.ts"],"names":[],"mappings":";AAAA;;GAEG;;AAYH,8DAkBC;AAEQ,oCAAY;AA3BrB,SAAS,YAAY,CAAI,KAAQ;IAC/B,WAAW,EAAE,CAAC;IACd,OAAO,KAAwB,CAAC;AAClC,CAAC;AAED,IAAI,WAAW,GAAG,CAAC,CAAC;AACpB,IAAI,QAAQ,GAAG,CAAC,CAAC;AACjB,SAAgB,yBAAyB;IACvC,QAAQ,EAAE,CAAC;IACX,MAAM,KAAK,GAAG,WAAW,CAAC;IAC1B,OAAO;QACL;;;;;WAKG;QACH,GAAG,EAAE,CAAC,KAAc,EAAE,EAAE;YACtB,MAAM,KAAK,GAAG,WAAW,GAAG,KAAK,CAAC;YAClC,qEAAqE;YACrE,WAAW,GAAG,KAAK,GAAG,CAAC,KAAK,IAAI,KAAK,CAAC,CAAC;YACvC,IAAI,EAAE,QAAQ,KAAK,CAAC;gBAAE,WAAW,GAAG,CAAC,CAAC;YACtC,OAAO,KAAK,CAAC;QACf,CAAC;KACF,CAAC;AACJ,CAAC"}
@@ -1,24 +0,0 @@
1
- import { SteamSetsCore } from "../core.js";
2
- import { RequestOptions } from "../lib/sdks.js";
3
- import * as components from "../models/components/index.js";
4
- import { ConnectionError, InvalidRequestError, RequestAbortedError, RequestTimeoutError, UnexpectedClientError } from "../models/errors/httpclienterrors.js";
5
- import { ResponseValidationError } from "../models/errors/responsevalidationerror.js";
6
- import { SDKValidationError } from "../models/errors/sdkvalidationerror.js";
7
- import { SteamSetsError } from "../models/errors/steamsetserror.js";
8
- import * as operations from "../models/operations/index.js";
9
- import { APIPromise } from "../types/async.js";
10
- import { Result } from "../types/fp.js";
11
- export declare enum ListPricesAcceptEnum {
12
- applicationJson = "application/json",
13
- applicationProblemPlusJson = "application/problem+json"
14
- }
15
- /**
16
- * List badge prices
17
- *
18
- * @remarks
19
- * Get a list of all badge pricing information
20
- */
21
- export declare function badgesListPrices(client: SteamSetsCore, _request: components.V1BadgeListBadgePricesRequestBody, options?: RequestOptions & {
22
- acceptHeaderOverride?: ListPricesAcceptEnum;
23
- }): APIPromise<Result<operations.BadgeListBadgePricesResponse, SteamSetsError | ResponseValidationError | ConnectionError | RequestAbortedError | RequestTimeoutError | InvalidRequestError | UnexpectedClientError | SDKValidationError>>;
24
- //# sourceMappingURL=badgesListPrices.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"badgesListPrices.d.ts","sourceRoot":"","sources":["../src/funcs/badgesListPrices.ts"],"names":[],"mappings":"AAIA,OAAO,EAAE,aAAa,EAAE,MAAM,YAAY,CAAC;AAG3C,OAAO,EAAE,cAAc,EAAE,MAAM,gBAAgB,CAAC;AAGhD,OAAO,KAAK,UAAU,MAAM,+BAA+B,CAAC;AAC5D,OAAO,EACL,eAAe,EACf,mBAAmB,EACnB,mBAAmB,EACnB,mBAAmB,EACnB,qBAAqB,EACtB,MAAM,sCAAsC,CAAC;AAC9C,OAAO,EAAE,uBAAuB,EAAE,MAAM,6CAA6C,CAAC;AACtF,OAAO,EAAE,kBAAkB,EAAE,MAAM,wCAAwC,CAAC;AAC5E,OAAO,EAAE,cAAc,EAAE,MAAM,oCAAoC,CAAC;AACpE,OAAO,KAAK,UAAU,MAAM,+BAA+B,CAAC;AAC5D,OAAO,EAAW,UAAU,EAAE,MAAM,mBAAmB,CAAC;AACxD,OAAO,EAAE,MAAM,EAAE,MAAM,gBAAgB,CAAC;AAExC,oBAAY,oBAAoB;IAC9B,eAAe,qBAAqB;IACpC,0BAA0B,6BAA6B;CACxD;AAED;;;;;GAKG;AACH,wBAAgB,gBAAgB,CAC9B,MAAM,EAAE,aAAa,EACrB,QAAQ,EAAE,UAAU,CAAC,iCAAiC,EACtD,OAAO,CAAC,EAAE,cAAc,GAAG;IAAE,oBAAoB,CAAC,EAAE,oBAAoB,CAAA;CAAE,GACzE,UAAU,CACX,MAAM,CACJ,UAAU,CAAC,4BAA4B,EACrC,cAAc,GACd,uBAAuB,GACvB,eAAe,GACf,mBAAmB,GACnB,mBAAmB,GACnB,mBAAmB,GACnB,qBAAqB,GACrB,kBAAkB,CACrB,CACF,CAMA"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"badgesListPrices.js","sourceRoot":"","sources":["../src/funcs/badgesListPrices.ts"],"names":[],"mappings":"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"}
@@ -1,38 +0,0 @@
1
- import * as z from "zod/v3";
2
- import { Result as SafeParseResult } from "../../types/fp.js";
3
- import { SDKValidationError } from "../errors/sdkvalidationerror.js";
4
- import { ErrorDetail } from "./errordetail.js";
5
- export type ErrorModel = {
6
- /**
7
- * A URL to the JSON Schema for this object.
8
- */
9
- dollarSchema?: string | undefined;
10
- /**
11
- * A human-readable explanation specific to this occurrence of the problem.
12
- */
13
- detail?: string | undefined;
14
- /**
15
- * Optional list of individual error details
16
- */
17
- errors?: Array<ErrorDetail> | null | undefined;
18
- /**
19
- * A URI reference that identifies the specific occurrence of the problem.
20
- */
21
- instance?: string | undefined;
22
- /**
23
- * HTTP status code
24
- */
25
- status?: number | undefined;
26
- /**
27
- * A short, human-readable summary of the problem type. This value should not change between occurrences of the error.
28
- */
29
- title?: string | undefined;
30
- /**
31
- * A URI reference to human-readable documentation for the error.
32
- */
33
- type?: string | undefined;
34
- };
35
- /** @internal */
36
- export declare const ErrorModel$inboundSchema: z.ZodType<ErrorModel, z.ZodTypeDef, unknown>;
37
- export declare function errorModelFromJSON(jsonString: string): SafeParseResult<ErrorModel, SDKValidationError>;
38
- //# sourceMappingURL=errormodel.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"errormodel.d.ts","sourceRoot":"","sources":["../../src/models/components/errormodel.ts"],"names":[],"mappings":"AAIA,OAAO,KAAK,CAAC,MAAM,QAAQ,CAAC;AAG5B,OAAO,EAAE,MAAM,IAAI,eAAe,EAAE,MAAM,mBAAmB,CAAC;AAC9D,OAAO,EAAE,kBAAkB,EAAE,MAAM,iCAAiC,CAAC;AACrE,OAAO,EAAE,WAAW,EAA6B,MAAM,kBAAkB,CAAC;AAE1E,MAAM,MAAM,UAAU,GAAG;IACvB;;OAEG;IACH,YAAY,CAAC,EAAE,MAAM,GAAG,SAAS,CAAC;IAClC;;OAEG;IACH,MAAM,CAAC,EAAE,MAAM,GAAG,SAAS,CAAC;IAC5B;;OAEG;IACH,MAAM,CAAC,EAAE,KAAK,CAAC,WAAW,CAAC,GAAG,IAAI,GAAG,SAAS,CAAC;IAC/C;;OAEG;IACH,QAAQ,CAAC,EAAE,MAAM,GAAG,SAAS,CAAC;IAC9B;;OAEG;IACH,MAAM,CAAC,EAAE,MAAM,GAAG,SAAS,CAAC;IAC5B;;OAEG;IACH,KAAK,CAAC,EAAE,MAAM,GAAG,SAAS,CAAC;IAC3B;;OAEG;IACH,IAAI,CAAC,EAAE,MAAM,GAAG,SAAS,CAAC;CAC3B,CAAC;AAEF,gBAAgB;AAChB,eAAO,MAAM,wBAAwB,EAAE,CAAC,CAAC,OAAO,CAC9C,UAAU,EACV,CAAC,CAAC,UAAU,EACZ,OAAO,CAaP,CAAC;AAEH,wBAAgB,kBAAkB,CAChC,UAAU,EAAE,MAAM,GACjB,eAAe,CAAC,UAAU,EAAE,kBAAkB,CAAC,CAMjD"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"errormodel.js","sourceRoot":"","sources":["../../src/models/components/errormodel.ts"],"names":[],"mappings":";AAAA;;GAEG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AA2DH,gDAQC;AAjED,0CAA4B;AAC5B,2DAA0D;AAC1D,qDAAiD;AAGjD,qDAA0E;AAiC1E,gBAAgB;AACH,QAAA,wBAAwB,GAIjC,CAAC,CAAC,MAAM,CAAC;IACX,OAAO,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IAC9B,MAAM,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IAC7B,MAAM,EAAE,CAAC,CAAC,QAAQ,CAAC,CAAC,CAAC,KAAK,CAAC,0CAAyB,CAAC,CAAC,CAAC,QAAQ,EAAE;IACjE,QAAQ,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IAC/B,MAAM,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,GAAG,EAAE,CAAC,QAAQ,EAAE;IACnC,KAAK,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IAC5B,IAAI,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,OAAO,CAAC,aAAa,CAAC;CACxC,CAAC,CAAC,SAAS,CAAC,CAAC,CAAC,EAAE,EAAE;IACjB,OAAO,IAAA,qBAAM,EAAC,CAAC,EAAE;QACf,SAAS,EAAE,cAAc;KAC1B,CAAC,CAAC;AACL,CAAC,CAAC,CAAC;AAEH,SAAgB,kBAAkB,CAChC,UAAkB;IAElB,OAAO,IAAA,sBAAS,EACd,UAAU,EACV,CAAC,CAAC,EAAE,EAAE,CAAC,gCAAwB,CAAC,KAAK,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,EACpD,wCAAwC,CACzC,CAAC;AACJ,CAAC"}
@@ -1,15 +0,0 @@
1
- import * as z from "zod/v3";
2
- import { Result as SafeParseResult } from "../../types/fp.js";
3
- import { SDKValidationError } from "../errors/sdkvalidationerror.js";
4
- export type V1BadgeApp = {
5
- bgAvg: number;
6
- boosterPrice: number | null;
7
- emoteAvg: number;
8
- image: string;
9
- name: string;
10
- owned: boolean;
11
- };
12
- /** @internal */
13
- export declare const V1BadgeApp$inboundSchema: z.ZodType<V1BadgeApp, z.ZodTypeDef, unknown>;
14
- export declare function v1BadgeAppFromJSON(jsonString: string): SafeParseResult<V1BadgeApp, SDKValidationError>;
15
- //# sourceMappingURL=v1badgeapp.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"v1badgeapp.d.ts","sourceRoot":"","sources":["../../src/models/components/v1badgeapp.ts"],"names":[],"mappings":"AAIA,OAAO,KAAK,CAAC,MAAM,QAAQ,CAAC;AAE5B,OAAO,EAAE,MAAM,IAAI,eAAe,EAAE,MAAM,mBAAmB,CAAC;AAC9D,OAAO,EAAE,kBAAkB,EAAE,MAAM,iCAAiC,CAAC;AAErE,MAAM,MAAM,UAAU,GAAG;IACvB,KAAK,EAAE,MAAM,CAAC;IACd,YAAY,EAAE,MAAM,GAAG,IAAI,CAAC;IAC5B,QAAQ,EAAE,MAAM,CAAC;IACjB,KAAK,EAAE,MAAM,CAAC;IACd,IAAI,EAAE,MAAM,CAAC;IACb,KAAK,EAAE,OAAO,CAAC;CAChB,CAAC;AAEF,gBAAgB;AAChB,eAAO,MAAM,wBAAwB,EAAE,CAAC,CAAC,OAAO,CAC9C,UAAU,EACV,CAAC,CAAC,UAAU,EACZ,OAAO,CAQP,CAAC;AAEH,wBAAgB,kBAAkB,CAChC,UAAU,EAAE,MAAM,GACjB,eAAe,CAAC,UAAU,EAAE,kBAAkB,CAAC,CAMjD"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"v1badgeapp.js","sourceRoot":"","sources":["../../src/models/components/v1badgeapp.ts"],"names":[],"mappings":";AAAA;;GAEG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AA8BH,gDAQC;AApCD,0CAA4B;AAC5B,qDAAiD;AAajD,gBAAgB;AACH,QAAA,wBAAwB,GAIjC,CAAC,CAAC,MAAM,CAAC;IACX,KAAK,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,GAAG,EAAE;IACvB,YAAY,EAAE,CAAC,CAAC,QAAQ,CAAC,CAAC,CAAC,MAAM,EAAE,CAAC,GAAG,EAAE,CAAC;IAC1C,QAAQ,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,GAAG,EAAE;IAC1B,KAAK,EAAE,CAAC,CAAC,MAAM,EAAE;IACjB,IAAI,EAAE,CAAC,CAAC,MAAM,EAAE;IAChB,KAAK,EAAE,CAAC,CAAC,OAAO,EAAE;CACnB,CAAC,CAAC;AAEH,SAAgB,kBAAkB,CAChC,UAAkB;IAElB,OAAO,IAAA,sBAAS,EACd,UAAU,EACV,CAAC,CAAC,EAAE,EAAE,CAAC,gCAAwB,CAAC,KAAK,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,EACpD,wCAAwC,CACzC,CAAC;AACJ,CAAC"}
@@ -1,12 +0,0 @@
1
- import * as z from "zod/v3";
2
- import { Result as SafeParseResult } from "../../types/fp.js";
3
- import { SDKValidationError } from "../errors/sdkvalidationerror.js";
4
- export type V1BadgeLevel = {
5
- image: string;
6
- name: string;
7
- scarcity: number;
8
- };
9
- /** @internal */
10
- export declare const V1BadgeLevel$inboundSchema: z.ZodType<V1BadgeLevel, z.ZodTypeDef, unknown>;
11
- export declare function v1BadgeLevelFromJSON(jsonString: string): SafeParseResult<V1BadgeLevel, SDKValidationError>;
12
- //# sourceMappingURL=v1badgelevel.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"v1badgelevel.d.ts","sourceRoot":"","sources":["../../src/models/components/v1badgelevel.ts"],"names":[],"mappings":"AAIA,OAAO,KAAK,CAAC,MAAM,QAAQ,CAAC;AAE5B,OAAO,EAAE,MAAM,IAAI,eAAe,EAAE,MAAM,mBAAmB,CAAC;AAC9D,OAAO,EAAE,kBAAkB,EAAE,MAAM,iCAAiC,CAAC;AAErE,MAAM,MAAM,YAAY,GAAG;IACzB,KAAK,EAAE,MAAM,CAAC;IACd,IAAI,EAAE,MAAM,CAAC;IACb,QAAQ,EAAE,MAAM,CAAC;CAClB,CAAC;AAEF,gBAAgB;AAChB,eAAO,MAAM,0BAA0B,EAAE,CAAC,CAAC,OAAO,CAChD,YAAY,EACZ,CAAC,CAAC,UAAU,EACZ,OAAO,CAKP,CAAC;AAEH,wBAAgB,oBAAoB,CAClC,UAAU,EAAE,MAAM,GACjB,eAAe,CAAC,YAAY,EAAE,kBAAkB,CAAC,CAMnD"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"v1badgelevel.js","sourceRoot":"","sources":["../../src/models/components/v1badgelevel.ts"],"names":[],"mappings":";AAAA;;GAEG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAwBH,oDAQC;AA9BD,0CAA4B;AAC5B,qDAAiD;AAUjD,gBAAgB;AACH,QAAA,0BAA0B,GAInC,CAAC,CAAC,MAAM,CAAC;IACX,KAAK,EAAE,CAAC,CAAC,MAAM,EAAE;IACjB,IAAI,EAAE,CAAC,CAAC,MAAM,EAAE;IAChB,QAAQ,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,GAAG,EAAE;CAC3B,CAAC,CAAC;AAEH,SAAgB,oBAAoB,CAClC,UAAkB;IAElB,OAAO,IAAA,sBAAS,EACd,UAAU,EACV,CAAC,CAAC,EAAE,EAAE,CAAC,kCAA0B,CAAC,KAAK,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,EACtD,0CAA0C,CAC3C,CAAC;AACJ,CAAC"}
@@ -1,8 +0,0 @@
1
- import * as z from "zod/v3";
2
- export type V1BadgeListBadgePricesRequestBody = {};
3
- /** @internal */
4
- export type V1BadgeListBadgePricesRequestBody$Outbound = {};
5
- /** @internal */
6
- export declare const V1BadgeListBadgePricesRequestBody$outboundSchema: z.ZodType<V1BadgeListBadgePricesRequestBody$Outbound, z.ZodTypeDef, V1BadgeListBadgePricesRequestBody>;
7
- export declare function v1BadgeListBadgePricesRequestBodyToJSON(v1BadgeListBadgePricesRequestBody: V1BadgeListBadgePricesRequestBody): string;
8
- //# sourceMappingURL=v1badgelistbadgepricesrequestbody.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"v1badgelistbadgepricesrequestbody.d.ts","sourceRoot":"","sources":["../../src/models/components/v1badgelistbadgepricesrequestbody.ts"],"names":[],"mappings":"AAIA,OAAO,KAAK,CAAC,MAAM,QAAQ,CAAC;AAE5B,MAAM,MAAM,iCAAiC,GAAG,EAAE,CAAC;AAEnD,gBAAgB;AAChB,MAAM,MAAM,0CAA0C,GAAG,EAAE,CAAC;AAE5D,gBAAgB;AAChB,eAAO,MAAM,gDAAgD,EAAE,CAAC,CAAC,OAAO,CACtE,0CAA0C,EAC1C,CAAC,CAAC,UAAU,EACZ,iCAAiC,CACnB,CAAC;AAEjB,wBAAgB,uCAAuC,CACrD,iCAAiC,EAAE,iCAAiC,GACnE,MAAM,CAMR"}
@@ -1,47 +0,0 @@
1
- "use strict";
2
- /*
3
- * Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT.
4
- */
5
- var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
6
- if (k2 === undefined) k2 = k;
7
- var desc = Object.getOwnPropertyDescriptor(m, k);
8
- if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
9
- desc = { enumerable: true, get: function() { return m[k]; } };
10
- }
11
- Object.defineProperty(o, k2, desc);
12
- }) : (function(o, m, k, k2) {
13
- if (k2 === undefined) k2 = k;
14
- o[k2] = m[k];
15
- }));
16
- var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
17
- Object.defineProperty(o, "default", { enumerable: true, value: v });
18
- }) : function(o, v) {
19
- o["default"] = v;
20
- });
21
- var __importStar = (this && this.__importStar) || (function () {
22
- var ownKeys = function(o) {
23
- ownKeys = Object.getOwnPropertyNames || function (o) {
24
- var ar = [];
25
- for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
26
- return ar;
27
- };
28
- return ownKeys(o);
29
- };
30
- return function (mod) {
31
- if (mod && mod.__esModule) return mod;
32
- var result = {};
33
- if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
34
- __setModuleDefault(result, mod);
35
- return result;
36
- };
37
- })();
38
- Object.defineProperty(exports, "__esModule", { value: true });
39
- exports.V1BadgeListBadgePricesRequestBody$outboundSchema = void 0;
40
- exports.v1BadgeListBadgePricesRequestBodyToJSON = v1BadgeListBadgePricesRequestBodyToJSON;
41
- const z = __importStar(require("zod/v3"));
42
- /** @internal */
43
- exports.V1BadgeListBadgePricesRequestBody$outboundSchema = z.object({});
44
- function v1BadgeListBadgePricesRequestBodyToJSON(v1BadgeListBadgePricesRequestBody) {
45
- return JSON.stringify(exports.V1BadgeListBadgePricesRequestBody$outboundSchema.parse(v1BadgeListBadgePricesRequestBody));
46
- }
47
- //# sourceMappingURL=v1badgelistbadgepricesrequestbody.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"v1badgelistbadgepricesrequestbody.js","sourceRoot":"","sources":["../../src/models/components/v1badgelistbadgepricesrequestbody.ts"],"names":[],"mappings":";AAAA;;GAEG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAgBH,0FAQC;AAtBD,0CAA4B;AAO5B,gBAAgB;AACH,QAAA,gDAAgD,GAIzD,CAAC,CAAC,MAAM,CAAC,EAAE,CAAC,CAAC;AAEjB,SAAgB,uCAAuC,CACrD,iCAAoE;IAEpE,OAAO,IAAI,CAAC,SAAS,CACnB,wDAAgD,CAAC,KAAK,CACpD,iCAAiC,CAClC,CACF,CAAC;AACJ,CAAC"}
@@ -1,31 +0,0 @@
1
- import * as z from "zod/v3";
2
- import { Result as SafeParseResult } from "../../types/fp.js";
3
- import { SDKValidationError } from "../errors/sdkvalidationerror.js";
4
- import { V1BadgeApp } from "./v1badgeapp.js";
5
- import { V1BadgeSet } from "./v1badgeset.js";
6
- import { V1BadgeSetCounts } from "./v1badgesetcounts.js";
7
- export type V1BadgeListBadgePricesResponseBody = {
8
- /**
9
- * A URL to the JSON Schema for this object.
10
- */
11
- dollarSchema?: string | undefined;
12
- /**
13
- * App information indexed by app ID
14
- */
15
- apps: {
16
- [k: string]: V1BadgeApp;
17
- };
18
- setCounts: V1BadgeSetCounts;
19
- /**
20
- * Badge sets with pricing information
21
- */
22
- sets: Array<V1BadgeSet> | null;
23
- /**
24
- * Total number of badge sets
25
- */
26
- total: number;
27
- };
28
- /** @internal */
29
- export declare const V1BadgeListBadgePricesResponseBody$inboundSchema: z.ZodType<V1BadgeListBadgePricesResponseBody, z.ZodTypeDef, unknown>;
30
- export declare function v1BadgeListBadgePricesResponseBodyFromJSON(jsonString: string): SafeParseResult<V1BadgeListBadgePricesResponseBody, SDKValidationError>;
31
- //# sourceMappingURL=v1badgelistbadgepricesresponsebody.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"v1badgelistbadgepricesresponsebody.d.ts","sourceRoot":"","sources":["../../src/models/components/v1badgelistbadgepricesresponsebody.ts"],"names":[],"mappings":"AAIA,OAAO,KAAK,CAAC,MAAM,QAAQ,CAAC;AAG5B,OAAO,EAAE,MAAM,IAAI,eAAe,EAAE,MAAM,mBAAmB,CAAC;AAC9D,OAAO,EAAE,kBAAkB,EAAE,MAAM,iCAAiC,CAAC;AACrE,OAAO,EAAE,UAAU,EAA4B,MAAM,iBAAiB,CAAC;AACvE,OAAO,EAAE,UAAU,EAA4B,MAAM,iBAAiB,CAAC;AACvE,OAAO,EACL,gBAAgB,EAEjB,MAAM,uBAAuB,CAAC;AAE/B,MAAM,MAAM,kCAAkC,GAAG;IAC/C;;OAEG;IACH,YAAY,CAAC,EAAE,MAAM,GAAG,SAAS,CAAC;IAClC;;OAEG;IACH,IAAI,EAAE;QAAE,CAAC,CAAC,EAAE,MAAM,GAAG,UAAU,CAAA;KAAE,CAAC;IAClC,SAAS,EAAE,gBAAgB,CAAC;IAC5B;;OAEG;IACH,IAAI,EAAE,KAAK,CAAC,UAAU,CAAC,GAAG,IAAI,CAAC;IAC/B;;OAEG;IACH,KAAK,EAAE,MAAM,CAAC;CACf,CAAC;AAEF,gBAAgB;AAChB,eAAO,MAAM,gDAAgD,EAAE,CAAC,CAAC,OAAO,CACtE,kCAAkC,EAClC,CAAC,CAAC,UAAU,EACZ,OAAO,CAWP,CAAC;AAEH,wBAAgB,0CAA0C,CACxD,UAAU,EAAE,MAAM,GACjB,eAAe,CAAC,kCAAkC,EAAE,kBAAkB,CAAC,CAOzE"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"v1badgelistbadgepricesresponsebody.js","sourceRoot":"","sources":["../../src/models/components/v1badgelistbadgepricesresponsebody.ts"],"names":[],"mappings":";AAAA;;GAEG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAmDH,gGASC;AA1DD,0CAA4B;AAC5B,2DAA0D;AAC1D,qDAAiD;AAGjD,mDAAuE;AACvE,mDAAuE;AACvE,+DAG+B;AAsB/B,gBAAgB;AACH,QAAA,gDAAgD,GAIzD,CAAC,CAAC,MAAM,CAAC;IACX,OAAO,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IAC9B,IAAI,EAAE,CAAC,CAAC,MAAM,CAAC,wCAAwB,CAAC;IACxC,SAAS,EAAE,oDAA8B;IACzC,IAAI,EAAE,CAAC,CAAC,QAAQ,CAAC,CAAC,CAAC,KAAK,CAAC,wCAAwB,CAAC,CAAC;IACnD,KAAK,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,GAAG,EAAE;CACxB,CAAC,CAAC,SAAS,CAAC,CAAC,CAAC,EAAE,EAAE;IACjB,OAAO,IAAA,qBAAM,EAAC,CAAC,EAAE;QACf,SAAS,EAAE,cAAc;KAC1B,CAAC,CAAC;AACL,CAAC,CAAC,CAAC;AAEH,SAAgB,0CAA0C,CACxD,UAAkB;IAElB,OAAO,IAAA,sBAAS,EACd,UAAU,EACV,CAAC,CAAC,EAAE,EAAE,CACJ,wDAAgD,CAAC,KAAK,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,EACvE,gEAAgE,CACjE,CAAC;AACJ,CAAC"}