Skip to content

Commit

Permalink
[Librarian] Regenerated @ 6112a581d3189fe96d26eb29eb9adfdbd1c2ada5
Browse files Browse the repository at this point in the history
  • Loading branch information
twilio-dx committed Feb 8, 2023
1 parent 709c5b2 commit 3b07f7a
Show file tree
Hide file tree
Showing 19 changed files with 5,028 additions and 37 deletions.
10 changes: 10 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,16 @@
twilio-node changelog
=====================

[2023-02-08] Version 4.7.2
--------------------------
**Library - Fix**
- [PR #911](https://github.com/twilio/twilio-node/pull/911): restore test-docker rule. Thanks to [@beebzz](https://github.com/beebzz)!

**Lookups**
- Add `disposable_phone_number_risk` package to the lookup response
- Add `sms_pumping_risk` package to the lookup response


[2023-02-01] Version 4.7.1
--------------------------
**Library - Fix**
Expand Down
10 changes: 10 additions & 0 deletions src/rest/content/V1.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
import ContentBase from "../ContentBase";
import Version from "../../base/Version";
import { ContentListInstance } from "./v1/content";
import { LegacyContentListInstance } from "./v1/legacyContent";

export default class V1 extends Version {
/**
Expand All @@ -28,10 +29,19 @@ export default class V1 extends Version {

/** contents - { Twilio.Content.V1.ContentListInstance } resource */
protected _contents?: ContentListInstance;
/** legacyContents - { Twilio.Content.V1.LegacyContentListInstance } resource */
protected _legacyContents?: LegacyContentListInstance;

/** Getter for contents resource */
get contents(): ContentListInstance {
this._contents = this._contents || ContentListInstance(this);
return this._contents;
}

/** Getter for legacyContents resource */
get legacyContents(): LegacyContentListInstance {
this._legacyContents =
this._legacyContents || LegacyContentListInstance(this);
return this._legacyContents;
}
}
Loading

0 comments on commit 3b07f7a

Please sign in to comment.