syllable-sdk 0.1.0-alpha.20 → 0.1.0-alpha.21

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.
@@ -88,7 +88,7 @@ run();
88
88
 
89
89
  ## create
90
90
 
91
- Create a new greeting
91
+ Create a new custom message
92
92
 
93
93
  ### Example Usage
94
94
 
@@ -167,7 +167,7 @@ run();
167
167
 
168
168
  ## update
169
169
 
170
- Update a greeting
170
+ Update a custom message
171
171
 
172
172
  ### Example Usage
173
173
 
@@ -248,7 +248,7 @@ run();
248
248
 
249
249
  ## getById
250
250
 
251
- Get the greeting by its ID
251
+ Get the custom message by its ID
252
252
 
253
253
  ### Example Usage
254
254
 
@@ -325,7 +325,7 @@ run();
325
325
 
326
326
  ## delete
327
327
 
328
- Delete greeting by ID
328
+ Delete custom message by ID
329
329
 
330
330
  ### Example Usage
331
331
 
@@ -10,7 +10,7 @@ import { Result } from "../types/fp.js";
10
10
  * Create Custom Message
11
11
  *
12
12
  * @remarks
13
- * Create a new greeting
13
+ * Create a new custom message
14
14
  */
15
15
  export declare function customMessagesCreate(client: SyllableSDKCore, request: components.CustomMessageCreateRequest, options?: RequestOptions): Promise<Result<components.CustomMessageResponse, errors.HTTPValidationError | SDKError | SDKValidationError | UnexpectedClientError | InvalidRequestError | RequestAbortedError | RequestTimeoutError | ConnectionError>>;
16
16
  //# sourceMappingURL=customMessagesCreate.d.ts.map
@@ -38,7 +38,7 @@ const errors = __importStar(require("../models/errors/index.js"));
38
38
  * Create Custom Message
39
39
  *
40
40
  * @remarks
41
- * Create a new greeting
41
+ * Create a new custom message
42
42
  */
43
43
  async function customMessagesCreate(client, request, options) {
44
44
  const parsed = (0, schemas_js_1.safeParse)(request, (value) => components.CustomMessageCreateRequest$outboundSchema.parse(value), "Input validation failed");
@@ -10,7 +10,7 @@ import { Result } from "../types/fp.js";
10
10
  * Delete Custom Message
11
11
  *
12
12
  * @remarks
13
- * Delete greeting by ID
13
+ * Delete custom message by ID
14
14
  */
15
15
  export declare function customMessagesDelete(client: SyllableSDKCore, request: operations.CustomMessagesDeleteRequest, options?: RequestOptions): Promise<Result<any, errors.HTTPValidationError | SDKError | SDKValidationError | UnexpectedClientError | InvalidRequestError | RequestAbortedError | RequestTimeoutError | ConnectionError>>;
16
16
  //# sourceMappingURL=customMessagesDelete.d.ts.map
@@ -39,7 +39,7 @@ const operations = __importStar(require("../models/operations/index.js"));
39
39
  * Delete Custom Message
40
40
  *
41
41
  * @remarks
42
- * Delete greeting by ID
42
+ * Delete custom message by ID
43
43
  */
44
44
  async function customMessagesDelete(client, request, options) {
45
45
  const parsed = (0, schemas_js_1.safeParse)(request, (value) => operations.CustomMessagesDeleteRequest$outboundSchema.parse(value), "Input validation failed");
@@ -11,7 +11,7 @@ import { Result } from "../types/fp.js";
11
11
  * Get Custom Message By Id
12
12
  *
13
13
  * @remarks
14
- * Get the greeting by its ID
14
+ * Get the custom message by its ID
15
15
  */
16
16
  export declare function customMessagesGetById(client: SyllableSDKCore, request: operations.CustomMessageGetByIdRequest, options?: RequestOptions): Promise<Result<components.CustomMessageResponse, errors.HTTPValidationError | SDKError | SDKValidationError | UnexpectedClientError | InvalidRequestError | RequestAbortedError | RequestTimeoutError | ConnectionError>>;
17
17
  //# sourceMappingURL=customMessagesGetById.d.ts.map
@@ -39,7 +39,7 @@ const operations = __importStar(require("../models/operations/index.js"));
39
39
  * Get Custom Message By Id
40
40
  *
41
41
  * @remarks
42
- * Get the greeting by its ID
42
+ * Get the custom message by its ID
43
43
  */
44
44
  async function customMessagesGetById(client, request, options) {
45
45
  const parsed = (0, schemas_js_1.safeParse)(request, (value) => operations.CustomMessageGetByIdRequest$outboundSchema.parse(value), "Input validation failed");
@@ -10,7 +10,7 @@ import { Result } from "../types/fp.js";
10
10
  * Update Custom Message
11
11
  *
12
12
  * @remarks
13
- * Update a greeting
13
+ * Update a custom message
14
14
  */
15
15
  export declare function customMessagesUpdate(client: SyllableSDKCore, request: components.CustomMessageUpdateRequest, options?: RequestOptions): Promise<Result<components.CustomMessageResponse, errors.HTTPValidationError | SDKError | SDKValidationError | UnexpectedClientError | InvalidRequestError | RequestAbortedError | RequestTimeoutError | ConnectionError>>;
16
16
  //# sourceMappingURL=customMessagesUpdate.d.ts.map
@@ -38,7 +38,7 @@ const errors = __importStar(require("../models/errors/index.js"));
38
38
  * Update Custom Message
39
39
  *
40
40
  * @remarks
41
- * Update a greeting
41
+ * Update a custom message
42
42
  */
43
43
  async function customMessagesUpdate(client, request, options) {
44
44
  const parsed = (0, schemas_js_1.safeParse)(request, (value) => components.CustomMessageUpdateRequest$outboundSchema.parse(value), "Input validation failed");
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: "0.0.2";
30
- readonly sdkVersion: "0.1.0-alpha.20";
30
+ readonly sdkVersion: "0.1.0-alpha.21";
31
31
  readonly genVersion: "2.477.0";
32
- readonly userAgent: "speakeasy-sdk/typescript 0.1.0-alpha.20 2.477.0 0.0.2 syllable-sdk";
32
+ readonly userAgent: "speakeasy-sdk/typescript 0.1.0-alpha.21 2.477.0 0.0.2 syllable-sdk";
33
33
  };
34
34
  //# sourceMappingURL=config.d.ts.map
package/lib/config.js CHANGED
@@ -36,8 +36,8 @@ function serverURLFromOptions(options) {
36
36
  exports.SDK_METADATA = {
37
37
  language: "typescript",
38
38
  openapiDocVersion: "0.0.2",
39
- sdkVersion: "0.1.0-alpha.20",
39
+ sdkVersion: "0.1.0-alpha.21",
40
40
  genVersion: "2.477.0",
41
- userAgent: "speakeasy-sdk/typescript 0.1.0-alpha.20 2.477.0 0.0.2 syllable-sdk",
41
+ userAgent: "speakeasy-sdk/typescript 0.1.0-alpha.21 2.477.0 0.0.2 syllable-sdk",
42
42
  };
43
43
  //# sourceMappingURL=config.js.map
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "syllable-sdk",
3
- "version": "0.1.0-alpha.20",
3
+ "version": "0.1.0-alpha.21",
4
4
  "author": "Speakeasy",
5
5
  "main": "./index.js",
6
6
  "sideEffects": false,
@@ -13,28 +13,28 @@ export declare class CustomMessages extends ClientSDK {
13
13
  * Create Custom Message
14
14
  *
15
15
  * @remarks
16
- * Create a new greeting
16
+ * Create a new custom message
17
17
  */
18
18
  create(request: components.CustomMessageCreateRequest, options?: RequestOptions): Promise<components.CustomMessageResponse>;
19
19
  /**
20
20
  * Update Custom Message
21
21
  *
22
22
  * @remarks
23
- * Update a greeting
23
+ * Update a custom message
24
24
  */
25
25
  update(request: components.CustomMessageUpdateRequest, options?: RequestOptions): Promise<components.CustomMessageResponse>;
26
26
  /**
27
27
  * Get Custom Message By Id
28
28
  *
29
29
  * @remarks
30
- * Get the greeting by its ID
30
+ * Get the custom message by its ID
31
31
  */
32
32
  getById(request: operations.CustomMessageGetByIdRequest, options?: RequestOptions): Promise<components.CustomMessageResponse>;
33
33
  /**
34
34
  * Delete Custom Message
35
35
  *
36
36
  * @remarks
37
- * Delete greeting by ID
37
+ * Delete custom message by ID
38
38
  */
39
39
  delete(request: operations.CustomMessagesDeleteRequest, options?: RequestOptions): Promise<any>;
40
40
  }
@@ -25,7 +25,7 @@ class CustomMessages extends sdks_js_1.ClientSDK {
25
25
  * Create Custom Message
26
26
  *
27
27
  * @remarks
28
- * Create a new greeting
28
+ * Create a new custom message
29
29
  */
30
30
  async create(request, options) {
31
31
  return (0, fp_js_1.unwrapAsync)((0, customMessagesCreate_js_1.customMessagesCreate)(this, request, options));
@@ -34,7 +34,7 @@ class CustomMessages extends sdks_js_1.ClientSDK {
34
34
  * Update Custom Message
35
35
  *
36
36
  * @remarks
37
- * Update a greeting
37
+ * Update a custom message
38
38
  */
39
39
  async update(request, options) {
40
40
  return (0, fp_js_1.unwrapAsync)((0, customMessagesUpdate_js_1.customMessagesUpdate)(this, request, options));
@@ -43,7 +43,7 @@ class CustomMessages extends sdks_js_1.ClientSDK {
43
43
  * Get Custom Message By Id
44
44
  *
45
45
  * @remarks
46
- * Get the greeting by its ID
46
+ * Get the custom message by its ID
47
47
  */
48
48
  async getById(request, options) {
49
49
  return (0, fp_js_1.unwrapAsync)((0, customMessagesGetById_js_1.customMessagesGetById)(this, request, options));
@@ -52,7 +52,7 @@ class CustomMessages extends sdks_js_1.ClientSDK {
52
52
  * Delete Custom Message
53
53
  *
54
54
  * @remarks
55
- * Delete greeting by ID
55
+ * Delete custom message by ID
56
56
  */
57
57
  async delete(request, options) {
58
58
  return (0, fp_js_1.unwrapAsync)((0, customMessagesDelete_js_1.customMessagesDelete)(this, request, options));
@@ -26,7 +26,7 @@ import { Result } from "../types/fp.js";
26
26
  * Create Custom Message
27
27
  *
28
28
  * @remarks
29
- * Create a new greeting
29
+ * Create a new custom message
30
30
  */
31
31
  export async function customMessagesCreate(
32
32
  client: SyllableSDKCore,
@@ -27,7 +27,7 @@ import { Result } from "../types/fp.js";
27
27
  * Delete Custom Message
28
28
  *
29
29
  * @remarks
30
- * Delete greeting by ID
30
+ * Delete custom message by ID
31
31
  */
32
32
  export async function customMessagesDelete(
33
33
  client: SyllableSDKCore,
@@ -27,7 +27,7 @@ import { Result } from "../types/fp.js";
27
27
  * Get Custom Message By Id
28
28
  *
29
29
  * @remarks
30
- * Get the greeting by its ID
30
+ * Get the custom message by its ID
31
31
  */
32
32
  export async function customMessagesGetById(
33
33
  client: SyllableSDKCore,
@@ -26,7 +26,7 @@ import { Result } from "../types/fp.js";
26
26
  * Update Custom Message
27
27
  *
28
28
  * @remarks
29
- * Update a greeting
29
+ * Update a custom message
30
30
  */
31
31
  export async function customMessagesUpdate(
32
32
  client: SyllableSDKCore,
package/src/lib/config.ts CHANGED
@@ -61,8 +61,8 @@ export function serverURLFromOptions(options: SDKOptions): URL | null {
61
61
  export const SDK_METADATA = {
62
62
  language: "typescript",
63
63
  openapiDocVersion: "0.0.2",
64
- sdkVersion: "0.1.0-alpha.20",
64
+ sdkVersion: "0.1.0-alpha.21",
65
65
  genVersion: "2.477.0",
66
66
  userAgent:
67
- "speakeasy-sdk/typescript 0.1.0-alpha.20 2.477.0 0.0.2 syllable-sdk",
67
+ "speakeasy-sdk/typescript 0.1.0-alpha.21 2.477.0 0.0.2 syllable-sdk",
68
68
  } as const;
@@ -34,7 +34,7 @@ export class CustomMessages extends ClientSDK {
34
34
  * Create Custom Message
35
35
  *
36
36
  * @remarks
37
- * Create a new greeting
37
+ * Create a new custom message
38
38
  */
39
39
  async create(
40
40
  request: components.CustomMessageCreateRequest,
@@ -51,7 +51,7 @@ export class CustomMessages extends ClientSDK {
51
51
  * Update Custom Message
52
52
  *
53
53
  * @remarks
54
- * Update a greeting
54
+ * Update a custom message
55
55
  */
56
56
  async update(
57
57
  request: components.CustomMessageUpdateRequest,
@@ -68,7 +68,7 @@ export class CustomMessages extends ClientSDK {
68
68
  * Get Custom Message By Id
69
69
  *
70
70
  * @remarks
71
- * Get the greeting by its ID
71
+ * Get the custom message by its ID
72
72
  */
73
73
  async getById(
74
74
  request: operations.CustomMessageGetByIdRequest,
@@ -85,7 +85,7 @@ export class CustomMessages extends ClientSDK {
85
85
  * Delete Custom Message
86
86
  *
87
87
  * @remarks
88
- * Delete greeting by ID
88
+ * Delete custom message by ID
89
89
  */
90
90
  async delete(
91
91
  request: operations.CustomMessagesDeleteRequest,