syllable-sdk 1.0.1 → 1.0.2-rc.1

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 (86) hide show
  1. package/README.md +6 -0
  2. package/bin/mcp-server.js +480 -84
  3. package/bin/mcp-server.js.map +18 -7
  4. package/docs/sdks/batches/README.md +4 -4
  5. package/docs/sdks/pronunciations/README.md +207 -0
  6. package/docs/sdks/workflows/README.md +8 -8
  7. package/examples/package-lock.json +1 -1
  8. package/funcs/pronunciationsPronunciationsDownloadCsv.d.ts +13 -0
  9. package/funcs/pronunciationsPronunciationsDownloadCsv.d.ts.map +1 -0
  10. package/funcs/pronunciationsPronunciationsDownloadCsv.js +101 -0
  11. package/funcs/pronunciationsPronunciationsDownloadCsv.js.map +1 -0
  12. package/funcs/pronunciationsPronunciationsGet.d.ts +14 -0
  13. package/funcs/pronunciationsPronunciationsGet.d.ts.map +1 -0
  14. package/funcs/pronunciationsPronunciationsGet.js +101 -0
  15. package/funcs/pronunciationsPronunciationsGet.js.map +1 -0
  16. package/funcs/pronunciationsPronunciationsGetMetadata.d.ts +14 -0
  17. package/funcs/pronunciationsPronunciationsGetMetadata.d.ts.map +1 -0
  18. package/funcs/pronunciationsPronunciationsGetMetadata.js +101 -0
  19. package/funcs/pronunciationsPronunciationsGetMetadata.js.map +1 -0
  20. package/jsr.json +1 -1
  21. package/lib/config.d.ts +3 -3
  22. package/lib/config.js +3 -3
  23. package/lib/config.js.map +1 -1
  24. package/mcp-server/mcp-server.js +1 -1
  25. package/mcp-server/mcp-server.js.map +1 -1
  26. package/mcp-server/server.d.ts.map +1 -1
  27. package/mcp-server/server.js +7 -1
  28. package/mcp-server/server.js.map +1 -1
  29. package/mcp-server/tools/pronunciationsPronunciationsDownloadCsv.d.ts +3 -0
  30. package/mcp-server/tools/pronunciationsPronunciationsDownloadCsv.d.ts.map +1 -0
  31. package/mcp-server/tools/pronunciationsPronunciationsDownloadCsv.js +23 -0
  32. package/mcp-server/tools/pronunciationsPronunciationsDownloadCsv.js.map +1 -0
  33. package/mcp-server/tools/pronunciationsPronunciationsGet.d.ts +3 -0
  34. package/mcp-server/tools/pronunciationsPronunciationsGet.d.ts.map +1 -0
  35. package/mcp-server/tools/pronunciationsPronunciationsGet.js +24 -0
  36. package/mcp-server/tools/pronunciationsPronunciationsGet.js.map +1 -0
  37. package/mcp-server/tools/pronunciationsPronunciationsGetMetadata.d.ts +3 -0
  38. package/mcp-server/tools/pronunciationsPronunciationsGetMetadata.d.ts.map +1 -0
  39. package/mcp-server/tools/pronunciationsPronunciationsGetMetadata.js +24 -0
  40. package/mcp-server/tools/pronunciationsPronunciationsGetMetadata.js.map +1 -0
  41. package/models/components/dictionarymetadata.d.ts +36 -0
  42. package/models/components/dictionarymetadata.d.ts.map +1 -0
  43. package/models/components/dictionarymetadata.js +73 -0
  44. package/models/components/dictionarymetadata.js.map +1 -0
  45. package/models/components/index.d.ts +5 -0
  46. package/models/components/index.d.ts.map +1 -1
  47. package/models/components/index.js +5 -0
  48. package/models/components/index.js.map +1 -1
  49. package/models/components/matchtype.d.ts +31 -0
  50. package/models/components/matchtype.d.ts.map +1 -0
  51. package/models/components/matchtype.js +63 -0
  52. package/models/components/matchtype.js.map +1 -0
  53. package/models/components/pronunciationoverride.d.ts +73 -0
  54. package/models/components/pronunciationoverride.d.ts.map +1 -0
  55. package/models/components/pronunciationoverride.js +120 -0
  56. package/models/components/pronunciationoverride.js.map +1 -0
  57. package/models/components/pronunciationoverridesdictionary.d.ts +68 -0
  58. package/models/components/pronunciationoverridesdictionary.d.ts.map +1 -0
  59. package/models/components/pronunciationoverridesdictionary.js +78 -0
  60. package/models/components/pronunciationoverridesdictionary.js.map +1 -0
  61. package/models/components/voicedisplayinfo.d.ts +34 -0
  62. package/models/components/voicedisplayinfo.d.ts.map +1 -0
  63. package/models/components/voicedisplayinfo.js +80 -0
  64. package/models/components/voicedisplayinfo.js.map +1 -0
  65. package/openapi.json +284 -33
  66. package/package.json +1 -1
  67. package/sdk/pronunciations.d.ts +12 -0
  68. package/sdk/pronunciations.d.ts.map +1 -1
  69. package/sdk/pronunciations.js +21 -0
  70. package/sdk/pronunciations.js.map +1 -1
  71. package/src/funcs/pronunciationsPronunciationsDownloadCsv.ts +139 -0
  72. package/src/funcs/pronunciationsPronunciationsGet.ts +139 -0
  73. package/src/funcs/pronunciationsPronunciationsGetMetadata.ts +139 -0
  74. package/src/lib/config.ts +3 -3
  75. package/src/mcp-server/mcp-server.ts +1 -1
  76. package/src/mcp-server/server.ts +7 -1
  77. package/src/mcp-server/tools/pronunciationsPronunciationsDownloadCsv.ts +26 -0
  78. package/src/mcp-server/tools/pronunciationsPronunciationsGet.ts +28 -0
  79. package/src/mcp-server/tools/pronunciationsPronunciationsGetMetadata.ts +28 -0
  80. package/src/models/components/dictionarymetadata.ts +77 -0
  81. package/src/models/components/index.ts +5 -0
  82. package/src/models/components/matchtype.ts +36 -0
  83. package/src/models/components/pronunciationoverride.ts +166 -0
  84. package/src/models/components/pronunciationoverridesdictionary.ts +124 -0
  85. package/src/models/components/voicedisplayinfo.ts +82 -0
  86. package/src/sdk/pronunciations.ts +39 -0
@@ -123,9 +123,9 @@ const syllableSDK = new SyllableSDK({
123
123
 
124
124
  async function run() {
125
125
  const result = await syllableSDK.outbound.batches.create({
126
- batchId: "20251007.9",
126
+ batchId: "20251008.9",
127
127
  campaignId: 1,
128
- expiresOn: new Date("2025-10-08T00:00:00Z"),
128
+ expiresOn: new Date("2025-10-09T00:00:00Z"),
129
129
  paused: true,
130
130
  });
131
131
 
@@ -151,9 +151,9 @@ const syllableSDK = new SyllableSDKCore({
151
151
 
152
152
  async function run() {
153
153
  const res = await outboundBatchesCreate(syllableSDK, {
154
- batchId: "20251007.9",
154
+ batchId: "20251008.9",
155
155
  campaignId: 1,
156
- expiresOn: new Date("2025-10-08T00:00:00Z"),
156
+ expiresOn: new Date("2025-10-09T00:00:00Z"),
157
157
  paused: true,
158
158
  });
159
159
  if (res.ok) {
@@ -5,8 +5,215 @@
5
5
 
6
6
  ### Available Operations
7
7
 
8
+ * [pronunciationsGet](#pronunciationsget) - Get Pronunciations Dictionary
9
+ * [pronunciationsGetMetadata](#pronunciationsgetmetadata) - Get Pronunciations Metadata
10
+ * [pronunciationsDownloadCsv](#pronunciationsdownloadcsv) - Download Pronunciations Csv
8
11
  * [pronunciationsUploadCsv](#pronunciationsuploadcsv) - Upload Pronunciations Csv
9
12
 
13
+ ## pronunciationsGet
14
+
15
+ Get Pronunciations Dictionary
16
+
17
+ ### Example Usage
18
+
19
+ <!-- UsageSnippet language="typescript" operationID="pronunciations_get" method="get" path="/api/v1/pronunciations" -->
20
+ ```typescript
21
+ import { SyllableSDK } from "syllable-sdk";
22
+
23
+ const syllableSDK = new SyllableSDK({
24
+ apiKeyHeader: process.env["SYLLABLESDK_API_KEY_HEADER"] ?? "",
25
+ });
26
+
27
+ async function run() {
28
+ const result = await syllableSDK.pronunciations.pronunciationsGet();
29
+
30
+ console.log(result);
31
+ }
32
+
33
+ run();
34
+ ```
35
+
36
+ ### Standalone function
37
+
38
+ The standalone function version of this method:
39
+
40
+ ```typescript
41
+ import { SyllableSDKCore } from "syllable-sdk/core.js";
42
+ import { pronunciationsPronunciationsGet } from "syllable-sdk/funcs/pronunciationsPronunciationsGet.js";
43
+
44
+ // Use `SyllableSDKCore` for best tree-shaking performance.
45
+ // You can create one instance of it to use across an application.
46
+ const syllableSDK = new SyllableSDKCore({
47
+ apiKeyHeader: process.env["SYLLABLESDK_API_KEY_HEADER"] ?? "",
48
+ });
49
+
50
+ async function run() {
51
+ const res = await pronunciationsPronunciationsGet(syllableSDK);
52
+ if (res.ok) {
53
+ const { value: result } = res;
54
+ console.log(result);
55
+ } else {
56
+ console.log("pronunciationsPronunciationsGet failed:", res.error);
57
+ }
58
+ }
59
+
60
+ run();
61
+ ```
62
+
63
+ ### Parameters
64
+
65
+ | Parameter | Type | Required | Description |
66
+ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ |
67
+ | `options` | RequestOptions | :heavy_minus_sign: | Used to set various options for making HTTP requests. |
68
+ | `options.fetchOptions` | [RequestInit](https://developer.mozilla.org/en-US/docs/Web/API/Request/Request#options) | :heavy_minus_sign: | Options that are passed to the underlying HTTP request. This can be used to inject extra headers for examples. All `Request` options, except `method` and `body`, are allowed. |
69
+ | `options.retries` | [RetryConfig](../../lib/utils/retryconfig.md) | :heavy_minus_sign: | Enables retrying HTTP requests under certain failure conditions. |
70
+
71
+ ### Response
72
+
73
+ **Promise\<[components.PronunciationOverridesDictionary](../../models/components/pronunciationoverridesdictionary.md)\>**
74
+
75
+ ### Errors
76
+
77
+ | Error Type | Status Code | Content Type |
78
+ | --------------- | --------------- | --------------- |
79
+ | errors.SDKError | 4XX, 5XX | \*/\* |
80
+
81
+ ## pronunciationsGetMetadata
82
+
83
+ Get Pronunciations Metadata
84
+
85
+ ### Example Usage
86
+
87
+ <!-- UsageSnippet language="typescript" operationID="pronunciations_get_metadata" method="get" path="/api/v1/pronunciations/metadata" -->
88
+ ```typescript
89
+ import { SyllableSDK } from "syllable-sdk";
90
+
91
+ const syllableSDK = new SyllableSDK({
92
+ apiKeyHeader: process.env["SYLLABLESDK_API_KEY_HEADER"] ?? "",
93
+ });
94
+
95
+ async function run() {
96
+ const result = await syllableSDK.pronunciations.pronunciationsGetMetadata();
97
+
98
+ console.log(result);
99
+ }
100
+
101
+ run();
102
+ ```
103
+
104
+ ### Standalone function
105
+
106
+ The standalone function version of this method:
107
+
108
+ ```typescript
109
+ import { SyllableSDKCore } from "syllable-sdk/core.js";
110
+ import { pronunciationsPronunciationsGetMetadata } from "syllable-sdk/funcs/pronunciationsPronunciationsGetMetadata.js";
111
+
112
+ // Use `SyllableSDKCore` for best tree-shaking performance.
113
+ // You can create one instance of it to use across an application.
114
+ const syllableSDK = new SyllableSDKCore({
115
+ apiKeyHeader: process.env["SYLLABLESDK_API_KEY_HEADER"] ?? "",
116
+ });
117
+
118
+ async function run() {
119
+ const res = await pronunciationsPronunciationsGetMetadata(syllableSDK);
120
+ if (res.ok) {
121
+ const { value: result } = res;
122
+ console.log(result);
123
+ } else {
124
+ console.log("pronunciationsPronunciationsGetMetadata failed:", res.error);
125
+ }
126
+ }
127
+
128
+ run();
129
+ ```
130
+
131
+ ### Parameters
132
+
133
+ | Parameter | Type | Required | Description |
134
+ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ |
135
+ | `options` | RequestOptions | :heavy_minus_sign: | Used to set various options for making HTTP requests. |
136
+ | `options.fetchOptions` | [RequestInit](https://developer.mozilla.org/en-US/docs/Web/API/Request/Request#options) | :heavy_minus_sign: | Options that are passed to the underlying HTTP request. This can be used to inject extra headers for examples. All `Request` options, except `method` and `body`, are allowed. |
137
+ | `options.retries` | [RetryConfig](../../lib/utils/retryconfig.md) | :heavy_minus_sign: | Enables retrying HTTP requests under certain failure conditions. |
138
+
139
+ ### Response
140
+
141
+ **Promise\<[components.DictionaryMetadata](../../models/components/dictionarymetadata.md)\>**
142
+
143
+ ### Errors
144
+
145
+ | Error Type | Status Code | Content Type |
146
+ | --------------- | --------------- | --------------- |
147
+ | errors.SDKError | 4XX, 5XX | \*/\* |
148
+
149
+ ## pronunciationsDownloadCsv
150
+
151
+ Download Pronunciations Csv
152
+
153
+ ### Example Usage
154
+
155
+ <!-- UsageSnippet language="typescript" operationID="pronunciations_download_csv" method="get" path="/api/v1/pronunciations/csv" -->
156
+ ```typescript
157
+ import { SyllableSDK } from "syllable-sdk";
158
+
159
+ const syllableSDK = new SyllableSDK({
160
+ apiKeyHeader: process.env["SYLLABLESDK_API_KEY_HEADER"] ?? "",
161
+ });
162
+
163
+ async function run() {
164
+ await syllableSDK.pronunciations.pronunciationsDownloadCsv();
165
+
166
+
167
+ }
168
+
169
+ run();
170
+ ```
171
+
172
+ ### Standalone function
173
+
174
+ The standalone function version of this method:
175
+
176
+ ```typescript
177
+ import { SyllableSDKCore } from "syllable-sdk/core.js";
178
+ import { pronunciationsPronunciationsDownloadCsv } from "syllable-sdk/funcs/pronunciationsPronunciationsDownloadCsv.js";
179
+
180
+ // Use `SyllableSDKCore` for best tree-shaking performance.
181
+ // You can create one instance of it to use across an application.
182
+ const syllableSDK = new SyllableSDKCore({
183
+ apiKeyHeader: process.env["SYLLABLESDK_API_KEY_HEADER"] ?? "",
184
+ });
185
+
186
+ async function run() {
187
+ const res = await pronunciationsPronunciationsDownloadCsv(syllableSDK);
188
+ if (res.ok) {
189
+ const { value: result } = res;
190
+
191
+ } else {
192
+ console.log("pronunciationsPronunciationsDownloadCsv failed:", res.error);
193
+ }
194
+ }
195
+
196
+ run();
197
+ ```
198
+
199
+ ### Parameters
200
+
201
+ | Parameter | Type | Required | Description |
202
+ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ |
203
+ | `options` | RequestOptions | :heavy_minus_sign: | Used to set various options for making HTTP requests. |
204
+ | `options.fetchOptions` | [RequestInit](https://developer.mozilla.org/en-US/docs/Web/API/Request/Request#options) | :heavy_minus_sign: | Options that are passed to the underlying HTTP request. This can be used to inject extra headers for examples. All `Request` options, except `method` and `body`, are allowed. |
205
+ | `options.retries` | [RetryConfig](../../lib/utils/retryconfig.md) | :heavy_minus_sign: | Enables retrying HTTP requests under certain failure conditions. |
206
+
207
+ ### Response
208
+
209
+ **Promise\<void\>**
210
+
211
+ ### Errors
212
+
213
+ | Error Type | Status Code | Content Type |
214
+ | --------------- | --------------- | --------------- |
215
+ | errors.SDKError | 4XX, 5XX | \*/\* |
216
+
10
217
  ## pronunciationsUploadCsv
11
218
 
12
219
  Upload Pronunciations Csv
@@ -148,8 +148,8 @@ async function run() {
148
148
  "sheet_name": "Q1 Sales Data",
149
149
  },
150
150
  },
151
- startDatetime: new Date("2025-10-06T00:00:00Z"),
152
- endDatetime: new Date("2025-10-07T00:00:00Z"),
151
+ startDatetime: new Date("2025-10-07T00:00:00Z"),
152
+ endDatetime: new Date("2025-10-08T00:00:00Z"),
153
153
  });
154
154
 
155
155
  console.log(result);
@@ -200,8 +200,8 @@ async function run() {
200
200
  "sheet_name": "Q1 Sales Data",
201
201
  },
202
202
  },
203
- startDatetime: new Date("2025-10-06T00:00:00Z"),
204
- endDatetime: new Date("2025-10-07T00:00:00Z"),
203
+ startDatetime: new Date("2025-10-07T00:00:00Z"),
204
+ endDatetime: new Date("2025-10-08T00:00:00Z"),
205
205
  });
206
206
  if (res.ok) {
207
207
  const { value: result } = res;
@@ -352,8 +352,8 @@ async function run() {
352
352
  "sheet_name": "Q1 Sales Data",
353
353
  },
354
354
  },
355
- startDatetime: new Date("2025-10-06T00:00:00Z"),
356
- endDatetime: new Date("2025-10-07T00:00:00Z"),
355
+ startDatetime: new Date("2025-10-07T00:00:00Z"),
356
+ endDatetime: new Date("2025-10-08T00:00:00Z"),
357
357
  },
358
358
  });
359
359
 
@@ -407,8 +407,8 @@ async function run() {
407
407
  "sheet_name": "Q1 Sales Data",
408
408
  },
409
409
  },
410
- startDatetime: new Date("2025-10-06T00:00:00Z"),
411
- endDatetime: new Date("2025-10-07T00:00:00Z"),
410
+ startDatetime: new Date("2025-10-07T00:00:00Z"),
411
+ endDatetime: new Date("2025-10-08T00:00:00Z"),
412
412
  },
413
413
  });
414
414
  if (res.ok) {
@@ -18,7 +18,7 @@
18
18
  },
19
19
  "..": {
20
20
  "name": "syllable-sdk",
21
- "version": "1.0.1",
21
+ "version": "1.0.2-rc.1",
22
22
  "dependencies": {
23
23
  "zod": "^3.20.0"
24
24
  },
@@ -0,0 +1,13 @@
1
+ import { SyllableSDKCore } from "../core.js";
2
+ import { RequestOptions } from "../lib/sdks.js";
3
+ import { ConnectionError, InvalidRequestError, RequestAbortedError, RequestTimeoutError, UnexpectedClientError } from "../models/errors/httpclienterrors.js";
4
+ import { ResponseValidationError } from "../models/errors/responsevalidationerror.js";
5
+ import { SDKValidationError } from "../models/errors/sdkvalidationerror.js";
6
+ import { SyllableSDKError } from "../models/errors/syllablesdkerror.js";
7
+ import { APIPromise } from "../types/async.js";
8
+ import { Result } from "../types/fp.js";
9
+ /**
10
+ * Download Pronunciations Csv
11
+ */
12
+ export declare function pronunciationsPronunciationsDownloadCsv(client: SyllableSDKCore, options?: RequestOptions): APIPromise<Result<void, SyllableSDKError | ResponseValidationError | ConnectionError | RequestAbortedError | RequestTimeoutError | InvalidRequestError | UnexpectedClientError | SDKValidationError>>;
13
+ //# sourceMappingURL=pronunciationsPronunciationsDownloadCsv.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"pronunciationsPronunciationsDownloadCsv.d.ts","sourceRoot":"","sources":["../src/funcs/pronunciationsPronunciationsDownloadCsv.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,eAAe,EAAE,MAAM,YAAY,CAAC;AAG7C,OAAO,EAAE,cAAc,EAAE,MAAM,gBAAgB,CAAC;AAGhD,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,gBAAgB,EAAE,MAAM,sCAAsC,CAAC;AACxE,OAAO,EAAW,UAAU,EAAE,MAAM,mBAAmB,CAAC;AACxD,OAAO,EAAE,MAAM,EAAE,MAAM,gBAAgB,CAAC;AAExC;;GAEG;AACH,wBAAgB,uCAAuC,CACrD,MAAM,EAAE,eAAe,EACvB,OAAO,CAAC,EAAE,cAAc,GACvB,UAAU,CACX,MAAM,CACJ,IAAI,EACF,gBAAgB,GAChB,uBAAuB,GACvB,eAAe,GACf,mBAAmB,GACnB,mBAAmB,GACnB,mBAAmB,GACnB,qBAAqB,GACrB,kBAAkB,CACrB,CACF,CAKA"}
@@ -0,0 +1,101 @@
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.pronunciationsPronunciationsDownloadCsv = pronunciationsPronunciationsDownloadCsv;
40
+ const z = __importStar(require("zod"));
41
+ const M = __importStar(require("../lib/matchers.js"));
42
+ const primitives_js_1 = require("../lib/primitives.js");
43
+ const security_js_1 = require("../lib/security.js");
44
+ const url_js_1 = require("../lib/url.js");
45
+ const async_js_1 = require("../types/async.js");
46
+ /**
47
+ * Download Pronunciations Csv
48
+ */
49
+ function pronunciationsPronunciationsDownloadCsv(client, options) {
50
+ return new async_js_1.APIPromise($do(client, options));
51
+ }
52
+ async function $do(client, options) {
53
+ const path = (0, url_js_1.pathToFunc)("/api/v1/pronunciations/csv")();
54
+ const headers = new Headers((0, primitives_js_1.compactMap)({
55
+ Accept: "*/*",
56
+ }));
57
+ const secConfig = await (0, security_js_1.extractSecurity)(client._options.apiKeyHeader);
58
+ const securityInput = secConfig == null ? {} : { apiKeyHeader: secConfig };
59
+ const requestSecurity = (0, security_js_1.resolveGlobalSecurity)(securityInput);
60
+ const context = {
61
+ options: client._options,
62
+ baseURL: options?.serverURL ?? client._baseURL ?? "",
63
+ operationID: "pronunciations_download_csv",
64
+ oAuth2Scopes: null,
65
+ resolvedSecurity: requestSecurity,
66
+ securitySource: client._options.apiKeyHeader,
67
+ retryConfig: options?.retries
68
+ || client._options.retryConfig
69
+ || { strategy: "none" },
70
+ retryCodes: options?.retryCodes || ["429", "500", "502", "503", "504"],
71
+ };
72
+ const requestRes = client._createRequest(context, {
73
+ security: requestSecurity,
74
+ method: "GET",
75
+ baseURL: options?.serverURL,
76
+ path: path,
77
+ headers: headers,
78
+ userAgent: client._options.userAgent,
79
+ timeoutMs: options?.timeoutMs || client._options.timeoutMs || -1,
80
+ }, options);
81
+ if (!requestRes.ok) {
82
+ return [requestRes, { status: "invalid" }];
83
+ }
84
+ const req = requestRes.value;
85
+ const doResult = await client._do(req, {
86
+ context,
87
+ errorCodes: ["4XX", "5XX"],
88
+ retryConfig: context.retryConfig,
89
+ retryCodes: context.retryCodes,
90
+ });
91
+ if (!doResult.ok) {
92
+ return [doResult, { status: "request-error", request: req }];
93
+ }
94
+ const response = doResult.value;
95
+ const [result] = await M.match(M.nil(200, z.void()), M.fail("4XX"), M.fail("5XX"))(response, req);
96
+ if (!result.ok) {
97
+ return [result, { status: "complete", request: req, response }];
98
+ }
99
+ return [result, { status: "complete", request: req, response }];
100
+ }
101
+ //# sourceMappingURL=pronunciationsPronunciationsDownloadCsv.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"pronunciationsPronunciationsDownloadCsv.js","sourceRoot":"","sources":["../src/funcs/pronunciationsPronunciationsDownloadCsv.ts"],"names":[],"mappings":"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"}
@@ -0,0 +1,14 @@
1
+ import { SyllableSDKCore } 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 { SyllableSDKError } from "../models/errors/syllablesdkerror.js";
8
+ import { APIPromise } from "../types/async.js";
9
+ import { Result } from "../types/fp.js";
10
+ /**
11
+ * Get Pronunciations Dictionary
12
+ */
13
+ export declare function pronunciationsPronunciationsGet(client: SyllableSDKCore, options?: RequestOptions): APIPromise<Result<components.PronunciationOverridesDictionary, SyllableSDKError | ResponseValidationError | ConnectionError | RequestAbortedError | RequestTimeoutError | InvalidRequestError | UnexpectedClientError | SDKValidationError>>;
14
+ //# sourceMappingURL=pronunciationsPronunciationsGet.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"pronunciationsPronunciationsGet.d.ts","sourceRoot":"","sources":["../src/funcs/pronunciationsPronunciationsGet.ts"],"names":[],"mappings":"AAIA,OAAO,EAAE,eAAe,EAAE,MAAM,YAAY,CAAC;AAG7C,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,gBAAgB,EAAE,MAAM,sCAAsC,CAAC;AACxE,OAAO,EAAW,UAAU,EAAE,MAAM,mBAAmB,CAAC;AACxD,OAAO,EAAE,MAAM,EAAE,MAAM,gBAAgB,CAAC;AAExC;;GAEG;AACH,wBAAgB,+BAA+B,CAC7C,MAAM,EAAE,eAAe,EACvB,OAAO,CAAC,EAAE,cAAc,GACvB,UAAU,CACX,MAAM,CACJ,UAAU,CAAC,gCAAgC,EACzC,gBAAgB,GAChB,uBAAuB,GACvB,eAAe,GACf,mBAAmB,GACnB,mBAAmB,GACnB,mBAAmB,GACnB,qBAAqB,GACrB,kBAAkB,CACrB,CACF,CAKA"}
@@ -0,0 +1,101 @@
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.pronunciationsPronunciationsGet = pronunciationsPronunciationsGet;
40
+ const M = __importStar(require("../lib/matchers.js"));
41
+ const primitives_js_1 = require("../lib/primitives.js");
42
+ const security_js_1 = require("../lib/security.js");
43
+ const url_js_1 = require("../lib/url.js");
44
+ const components = __importStar(require("../models/components/index.js"));
45
+ const async_js_1 = require("../types/async.js");
46
+ /**
47
+ * Get Pronunciations Dictionary
48
+ */
49
+ function pronunciationsPronunciationsGet(client, options) {
50
+ return new async_js_1.APIPromise($do(client, options));
51
+ }
52
+ async function $do(client, options) {
53
+ const path = (0, url_js_1.pathToFunc)("/api/v1/pronunciations")();
54
+ const headers = new Headers((0, primitives_js_1.compactMap)({
55
+ Accept: "application/json",
56
+ }));
57
+ const secConfig = await (0, security_js_1.extractSecurity)(client._options.apiKeyHeader);
58
+ const securityInput = secConfig == null ? {} : { apiKeyHeader: secConfig };
59
+ const requestSecurity = (0, security_js_1.resolveGlobalSecurity)(securityInput);
60
+ const context = {
61
+ options: client._options,
62
+ baseURL: options?.serverURL ?? client._baseURL ?? "",
63
+ operationID: "pronunciations_get",
64
+ oAuth2Scopes: null,
65
+ resolvedSecurity: requestSecurity,
66
+ securitySource: client._options.apiKeyHeader,
67
+ retryConfig: options?.retries
68
+ || client._options.retryConfig
69
+ || { strategy: "none" },
70
+ retryCodes: options?.retryCodes || ["429", "500", "502", "503", "504"],
71
+ };
72
+ const requestRes = client._createRequest(context, {
73
+ security: requestSecurity,
74
+ method: "GET",
75
+ baseURL: options?.serverURL,
76
+ path: path,
77
+ headers: headers,
78
+ userAgent: client._options.userAgent,
79
+ timeoutMs: options?.timeoutMs || client._options.timeoutMs || -1,
80
+ }, options);
81
+ if (!requestRes.ok) {
82
+ return [requestRes, { status: "invalid" }];
83
+ }
84
+ const req = requestRes.value;
85
+ const doResult = await client._do(req, {
86
+ context,
87
+ errorCodes: ["4XX", "5XX"],
88
+ retryConfig: context.retryConfig,
89
+ retryCodes: context.retryCodes,
90
+ });
91
+ if (!doResult.ok) {
92
+ return [doResult, { status: "request-error", request: req }];
93
+ }
94
+ const response = doResult.value;
95
+ const [result] = await M.match(M.json(200, components.PronunciationOverridesDictionary$inboundSchema), M.fail("4XX"), M.fail("5XX"))(response, req);
96
+ if (!result.ok) {
97
+ return [result, { status: "complete", request: req, response }];
98
+ }
99
+ return [result, { status: "complete", request: req, response }];
100
+ }
101
+ //# sourceMappingURL=pronunciationsPronunciationsGet.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"pronunciationsPronunciationsGet.js","sourceRoot":"","sources":["../src/funcs/pronunciationsPronunciationsGet.ts"],"names":[],"mappings":"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"}
@@ -0,0 +1,14 @@
1
+ import { SyllableSDKCore } 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 { SyllableSDKError } from "../models/errors/syllablesdkerror.js";
8
+ import { APIPromise } from "../types/async.js";
9
+ import { Result } from "../types/fp.js";
10
+ /**
11
+ * Get Pronunciations Metadata
12
+ */
13
+ export declare function pronunciationsPronunciationsGetMetadata(client: SyllableSDKCore, options?: RequestOptions): APIPromise<Result<components.DictionaryMetadata, SyllableSDKError | ResponseValidationError | ConnectionError | RequestAbortedError | RequestTimeoutError | InvalidRequestError | UnexpectedClientError | SDKValidationError>>;
14
+ //# sourceMappingURL=pronunciationsPronunciationsGetMetadata.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"pronunciationsPronunciationsGetMetadata.d.ts","sourceRoot":"","sources":["../src/funcs/pronunciationsPronunciationsGetMetadata.ts"],"names":[],"mappings":"AAIA,OAAO,EAAE,eAAe,EAAE,MAAM,YAAY,CAAC;AAG7C,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,gBAAgB,EAAE,MAAM,sCAAsC,CAAC;AACxE,OAAO,EAAW,UAAU,EAAE,MAAM,mBAAmB,CAAC;AACxD,OAAO,EAAE,MAAM,EAAE,MAAM,gBAAgB,CAAC;AAExC;;GAEG;AACH,wBAAgB,uCAAuC,CACrD,MAAM,EAAE,eAAe,EACvB,OAAO,CAAC,EAAE,cAAc,GACvB,UAAU,CACX,MAAM,CACJ,UAAU,CAAC,kBAAkB,EAC3B,gBAAgB,GAChB,uBAAuB,GACvB,eAAe,GACf,mBAAmB,GACnB,mBAAmB,GACnB,mBAAmB,GACnB,qBAAqB,GACrB,kBAAkB,CACrB,CACF,CAKA"}