Skip to content

Commit 8a6b986

Browse files
committed
[Librarian] Regenerated @ 063fefeb406fa3d6866703c240040a1e9146ca75
1 parent 2f1949f commit 8a6b986

File tree

16 files changed

+1869
-18
lines changed

16 files changed

+1869
-18
lines changed

CHANGES.md

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,33 @@
11
twilio-node changelog
22
=====================
33

4+
[2023-03-22] Version 4.9.0
5+
--------------------------
6+
**Library - Fix**
7+
- [PR #925](https://github.com/twilio/twilio-node/pull/925): use correct Headers type. Thanks to [@Methuselah96](https://github.com/Methuselah96)!
8+
- [PR #921](https://github.com/twilio/twilio-node/pull/921): correct the enum names. Thanks to [@childish-sambino](https://github.com/childish-sambino)!
9+
- [PR #920](https://github.com/twilio/twilio-node/pull/920): revert the structural changes to the AccessToken class/namespace. Thanks to [@childish-sambino](https://github.com/childish-sambino)!
10+
11+
**Library - Docs**
12+
- [PR #918](https://github.com/twilio/twilio-node/pull/918): Show auth token in webhook validation example. Thanks to [@asportnoy](https://github.com/asportnoy)!
13+
14+
**Api**
15+
- Revert Corrected the data type for `friendly_name` in Available Phone Number Local, Mobile and TollFree resources
16+
- Corrected the data type for `friendly_name` in Available Phone Number Local, Mobile and TollFree resources **(breaking change)**
17+
- Add new categories for whatsapp template
18+
19+
**Lookups**
20+
- Remove `validation_results` from the `default_output_properties`
21+
22+
**Messaging**
23+
- Add `linkshortening_messaging_service` resource
24+
- Add new endpoint for GetDomainConfigByMessagingServiceSid
25+
- Remove `validated` parameter and add `cert_in_validation` parameter to Link Shortening API **(breaking change)**
26+
27+
**Supersim**
28+
- Add ESimProfile's `matching_id` and `activation_code` parameters to libraries
29+
30+
431
[2023-02-22] Version 4.8.0
532
--------------------------
633
**Library - Feature**

src/rest/api/v2010/account/queue.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ import { MemberListInstance } from "./queue/member";
2727
export interface QueueContextUpdateOptions {
2828
/** A descriptive string that you created to describe this resource. It can be up to 64 characters long. */
2929
friendlyName?: string;
30-
/** The maximum number of calls allowed to be in the queue. The default is 100. The maximum is 5000. */
30+
/** The maximum number of calls allowed to be in the queue. The default is 1000. The maximum is 5000. */
3131
maxSize?: number;
3232
}
3333

@@ -37,7 +37,7 @@ export interface QueueContextUpdateOptions {
3737
export interface QueueListInstanceCreateOptions {
3838
/** A descriptive string that you created to describe this resource. It can be up to 64 characters long. */
3939
friendlyName: string;
40-
/** The maximum number of calls allowed to be in the queue. The default is 100. The maximum is 5000. */
40+
/** The maximum number of calls allowed to be in the queue. The default is 1000. The maximum is 5000. */
4141
maxSize?: number;
4242
}
4343
/**
@@ -344,7 +344,7 @@ export class QueueInstance {
344344
*/
345345
dateCreated: Date;
346346
/**
347-
* The maximum number of calls that can be in the queue. The default is 100 and the maximum is 5000.
347+
* The maximum number of calls that can be in the queue. The default is 1000 and the maximum is 5000.
348348
*/
349349
maxSize: number;
350350

src/rest/content/V1.ts

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@
1515
import ContentBase from "../ContentBase";
1616
import Version from "../../base/Version";
1717
import { ContentListInstance } from "./v1/content";
18+
import { ContentAndApprovalsListInstance } from "./v1/contentAndApprovals";
1819
import { LegacyContentListInstance } from "./v1/legacyContent";
1920

2021
export default class V1 extends Version {
@@ -29,6 +30,8 @@ export default class V1 extends Version {
2930

3031
/** contents - { Twilio.Content.V1.ContentListInstance } resource */
3132
protected _contents?: ContentListInstance;
33+
/** contentAndApprovals - { Twilio.Content.V1.ContentAndApprovalsListInstance } resource */
34+
protected _contentAndApprovals?: ContentAndApprovalsListInstance;
3235
/** legacyContents - { Twilio.Content.V1.LegacyContentListInstance } resource */
3336
protected _legacyContents?: LegacyContentListInstance;
3437

@@ -38,6 +41,13 @@ export default class V1 extends Version {
3841
return this._contents;
3942
}
4043

44+
/** Getter for contentAndApprovals resource */
45+
get contentAndApprovals(): ContentAndApprovalsListInstance {
46+
this._contentAndApprovals =
47+
this._contentAndApprovals || ContentAndApprovalsListInstance(this);
48+
return this._contentAndApprovals;
49+
}
50+
4151
/** Getter for legacyContents resource */
4252
get legacyContents(): LegacyContentListInstance {
4353
this._legacyContents =

0 commit comments

Comments
 (0)