syllable-sdk 0.1.0-alpha.33 → 0.1.0-alpha.34

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/jsr.json CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  {
4
4
  "name": "syllable-sdk",
5
- "version": "0.1.0-alpha.33",
5
+ "version": "0.1.0-alpha.34",
6
6
  "exports": {
7
7
  ".": "./src/index.ts",
8
8
  "./models/errors": "./src/models/errors/index.ts",
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.33";
30
+ readonly sdkVersion: "0.1.0-alpha.34";
31
31
  readonly genVersion: "2.493.21";
32
- readonly userAgent: "speakeasy-sdk/typescript 0.1.0-alpha.33 2.493.21 0.0.2 syllable-sdk";
32
+ readonly userAgent: "speakeasy-sdk/typescript 0.1.0-alpha.34 2.493.21 0.0.2 syllable-sdk";
33
33
  };
34
34
  //# sourceMappingURL=config.d.ts.map
package/lib/config.js CHANGED
@@ -35,8 +35,8 @@ function serverURLFromOptions(options) {
35
35
  exports.SDK_METADATA = {
36
36
  language: "typescript",
37
37
  openapiDocVersion: "0.0.2",
38
- sdkVersion: "0.1.0-alpha.33",
38
+ sdkVersion: "0.1.0-alpha.34",
39
39
  genVersion: "2.493.21",
40
- userAgent: "speakeasy-sdk/typescript 0.1.0-alpha.33 2.493.21 0.0.2 syllable-sdk",
40
+ userAgent: "speakeasy-sdk/typescript 0.1.0-alpha.34 2.493.21 0.0.2 syllable-sdk",
41
41
  };
42
42
  //# sourceMappingURL=config.js.map
package/openapi.json CHANGED
@@ -4380,15 +4380,7 @@
4380
4380
  "content": {
4381
4381
  "application/json": {
4382
4382
  "schema": {
4383
- "anyOf": [
4384
- {
4385
- "$ref": "#/components/schemas/CommunicationBatch"
4386
- },
4387
- {
4388
- "type": "null"
4389
- }
4390
- ],
4391
- "title": "Response Outbound Batch Get By Id"
4383
+ "$ref": "#/components/schemas/CommunicationBatch"
4392
4384
  }
4393
4385
  }
4394
4386
  }
@@ -4642,15 +4634,7 @@
4642
4634
  "content": {
4643
4635
  "application/json": {
4644
4636
  "schema": {
4645
- "anyOf": [
4646
- {
4647
- "$ref": "#/components/schemas/OutboundCampaign"
4648
- },
4649
- {
4650
- "type": "null"
4651
- }
4652
- ],
4653
- "title": "Response Outbound Campaign Get By Id"
4637
+ "$ref": "#/components/schemas/OutboundCampaign"
4654
4638
  }
4655
4639
  }
4656
4640
  }
@@ -4707,15 +4691,7 @@
4707
4691
  "content": {
4708
4692
  "application/json": {
4709
4693
  "schema": {
4710
- "anyOf": [
4711
- {
4712
- "$ref": "#/components/schemas/OutboundCampaign"
4713
- },
4714
- {
4715
- "type": "null"
4716
- }
4717
- ],
4718
- "title": "Response Outbound Campaign Update"
4694
+ "$ref": "#/components/schemas/OutboundCampaign"
4719
4695
  }
4720
4696
  }
4721
4697
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "syllable-sdk",
3
- "version": "0.1.0-alpha.33",
3
+ "version": "0.1.0-alpha.34",
4
4
  "author": "Speakeasy",
5
5
  "main": "./index.js",
6
6
  "sideEffects": false,
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.33",
64
+ sdkVersion: "0.1.0-alpha.34",
65
65
  genVersion: "2.493.21",
66
66
  userAgent:
67
- "speakeasy-sdk/typescript 0.1.0-alpha.33 2.493.21 0.0.2 syllable-sdk",
67
+ "speakeasy-sdk/typescript 0.1.0-alpha.34 2.493.21 0.0.2 syllable-sdk",
68
68
  } as const;