Skip to content

Commit

Permalink
[Librarian] Regenerated @ 08c0904bec7ba6e5da9e5db6c4e0f74dfc97fb10
Browse files Browse the repository at this point in the history
  • Loading branch information
twilio-dx committed Dec 14, 2023
1 parent 2a51f83 commit a2f90eb
Show file tree
Hide file tree
Showing 8 changed files with 409 additions and 18 deletions.
24 changes: 24 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,30 @@
twilio-node changelog
=====================

[2023-12-14] Version 4.20.0
---------------------------
**Api**
- Updated service base url for connect apps and authorized connect apps APIs **(breaking change)**

**Events**
- Marked as GA

**Insights**
- decommission voice-qualitystats-endpoint role

**Numbers**
- Add Get Port In request api

**Taskrouter**
- Add `jitter_buffer_size` param in update reservation

**Trusthub**
- Add additional optional fields in compliance_tollfree_inquiry.json

**Verify**
- Remove `Tags` from Public Docs **(breaking change)**


[2023-12-01] Version 4.19.3
---------------------------
**Verify**
Expand Down
14 changes: 0 additions & 14 deletions src/rest/api/v2010/account/authorizedConnectApp.ts
Original file line number Diff line number Diff line change
Expand Up @@ -160,8 +160,6 @@ interface AuthorizedConnectAppResource {
connect_app_friendly_name: string;
connect_app_homepage_url: string;
connect_app_sid: string;
date_created: Date;
date_updated: Date;
permissions: Array<AuthorizedConnectAppPermission>;
uri: string;
}
Expand All @@ -182,8 +180,6 @@ export class AuthorizedConnectAppInstance {
this.connectAppFriendlyName = payload.connect_app_friendly_name;
this.connectAppHomepageUrl = payload.connect_app_homepage_url;
this.connectAppSid = payload.connect_app_sid;
this.dateCreated = deserialize.rfc2822DateTime(payload.date_created);
this.dateUpdated = deserialize.rfc2822DateTime(payload.date_updated);
this.permissions = payload.permissions;
this.uri = payload.uri;

Expand Down Expand Up @@ -217,14 +213,6 @@ export class AuthorizedConnectAppInstance {
* The SID that we assigned to the Connect App.
*/
connectAppSid: string;
/**
* The date and time in GMT that the resource was created specified in [RFC 2822](https://www.ietf.org/rfc/rfc2822.txt) format.
*/
dateCreated: Date;
/**
* The date and time in GMT that the resource was last updated specified in [RFC 2822](https://www.ietf.org/rfc/rfc2822.txt) format.
*/
dateUpdated: Date;
/**
* The set of permissions that you authorized for the Connect App. Can be: `get-all` or `post-all`.
*/
Expand Down Expand Up @@ -271,8 +259,6 @@ export class AuthorizedConnectAppInstance {
connectAppFriendlyName: this.connectAppFriendlyName,
connectAppHomepageUrl: this.connectAppHomepageUrl,
connectAppSid: this.connectAppSid,
dateCreated: this.dateCreated,
dateUpdated: this.dateUpdated,
permissions: this.permissions,
uri: this.uri,
};
Expand Down
6 changes: 3 additions & 3 deletions src/rest/events/v1/subscription/subscribedEvent.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ import { isValidPathParam } from "../../../../base/utility";
* Options to pass to update a SubscribedEventInstance
*/
export interface SubscribedEventContextUpdateOptions {
/** The schema version that the subscription should use. */
/** The schema version that the Subscription should use. */
schemaVersion?: number;
}

Expand All @@ -34,7 +34,7 @@ export interface SubscribedEventContextUpdateOptions {
export interface SubscribedEventListInstanceCreateOptions {
/** Type of event being subscribed to. */
type: string;
/** The schema version that the subscription should use. */
/** The schema version that the Subscription should use. */
schemaVersion?: number;
}
/**
Expand Down Expand Up @@ -296,7 +296,7 @@ export class SubscribedEventInstance {
*/
type: string;
/**
* The schema version that the subscription should use.
* The schema version that the Subscription should use.
*/
schemaVersion: number;
/**
Expand Down
10 changes: 10 additions & 0 deletions src/rest/numbers/V1.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ import NumbersBase from "../NumbersBase";
import Version from "../../base/Version";
import { BulkEligibilityListInstance } from "./v1/bulkEligibility";
import { PortingBulkPortabilityListInstance } from "./v1/portingBulkPortability";
import { PortingPortInFetchListInstance } from "./v1/portingPortInFetch";
import { PortingPortabilityListInstance } from "./v1/portingPortability";

export default class V1 extends Version {
Expand All @@ -32,6 +33,8 @@ export default class V1 extends Version {
protected _bulkEligibilities?: BulkEligibilityListInstance;
/** portingBulkPortabilities - { Twilio.Numbers.V1.PortingBulkPortabilityListInstance } resource */
protected _portingBulkPortabilities?: PortingBulkPortabilityListInstance;
/** portingPortIns - { Twilio.Numbers.V1.PortingPortInFetchListInstance } resource */
protected _portingPortIns?: PortingPortInFetchListInstance;
/** portingPortabilities - { Twilio.Numbers.V1.PortingPortabilityListInstance } resource */
protected _portingPortabilities?: PortingPortabilityListInstance;

Expand All @@ -50,6 +53,13 @@ export default class V1 extends Version {
return this._portingBulkPortabilities;
}

/** Getter for portingPortIns resource */
get portingPortIns(): PortingPortInFetchListInstance {
this._portingPortIns =
this._portingPortIns || PortingPortInFetchListInstance(this);
return this._portingPortIns;
}

/** Getter for portingPortabilities resource */
get portingPortabilities(): PortingPortabilityListInstance {
this._portingPortabilities =
Expand Down
Loading

0 comments on commit a2f90eb

Please sign in to comment.