Skip to content

Commit

Permalink
[Librarian] Regenerated @ 125dc871b4170bce0faca169f8a588f6ff356a88 0c…
Browse files Browse the repository at this point in the history
…222649d98edbac6858ea253f9b77fc22386e47
  • Loading branch information
twilio-dx committed Feb 20, 2025
1 parent 58e04bb commit 308f790
Show file tree
Hide file tree
Showing 345 changed files with 1,369 additions and 749 deletions.
16 changes: 16 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,22 @@
twilio-java changelog
=====================

[2025-02-20] Version 10.6.10
----------------------------
**Library - Chore**
- [PR #836](https://github.com/twilio/twilio-java/pull/836): disable java test. Thanks to [@manisha1997](https://github.com/manisha1997)!
- [PR #835](https://github.com/twilio/twilio-java/pull/835): disable java test. Thanks to [@manisha1997](https://github.com/manisha1997)!

**Flex**
- Adding Digital Transfers APIs under v1/Interactions

**Numbers**
- Convert webhook_type to ienum type in v1/Porting/Configuration/Webhook/{webhook_type}

**Trusthub**
- Changing TrustHub SupportingDocument status enum from lowercase to uppercase since kyc-orch returns status capitalized and rest proxy requires strict casing


[2025-02-11] Version 10.6.9
---------------------------
**Api**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,11 +29,11 @@

public class AwsReader extends Reader<Aws> {

private Integer pageSize;
private Long pageSize;

public AwsReader() {}

public AwsReader setPageSize(final Integer pageSize) {
public AwsReader setPageSize(final Long pageSize) {
this.pageSize = pageSize;
return this;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,11 +29,11 @@

public class PublicKeyReader extends Reader<PublicKey> {

private Integer pageSize;
private Long pageSize;

public PublicKeyReader() {}

public PublicKeyReader setPageSize(final Integer pageSize) {
public PublicKeyReader setPageSize(final Long pageSize) {
this.pageSize = pageSize;
return this;
}
Expand Down
4 changes: 2 additions & 2 deletions src/main/java/com/twilio/rest/api/v2010/AccountReader.java
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ public class AccountReader extends Reader<Account> {

private String friendlyName;
private Account.Status status;
private Integer pageSize;
private Long pageSize;

public AccountReader() {}

Expand All @@ -45,7 +45,7 @@ public AccountReader setStatus(final Account.Status status) {
return this;
}

public AccountReader setPageSize(final Integer pageSize) {
public AccountReader setPageSize(final Long pageSize) {
this.pageSize = pageSize;
return this;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ public class AddressReader extends Reader<Address> {
private String customerName;
private String friendlyName;
private String isoCountry;
private Integer pageSize;
private Long pageSize;

public AddressReader() {}

Expand All @@ -56,7 +56,7 @@ public AddressReader setIsoCountry(final String isoCountry) {
return this;
}

public AddressReader setPageSize(final Integer pageSize) {
public AddressReader setPageSize(final Long pageSize) {
this.pageSize = pageSize;
return this;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ public class ApplicationReader extends Reader<Application> {

private String pathAccountSid;
private String friendlyName;
private Integer pageSize;
private Long pageSize;

public ApplicationReader() {}

Expand All @@ -44,7 +44,7 @@ public ApplicationReader setFriendlyName(final String friendlyName) {
return this;
}

public ApplicationReader setPageSize(final Integer pageSize) {
public ApplicationReader setPageSize(final Long pageSize) {
this.pageSize = pageSize;
return this;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,15 +30,15 @@
public class AuthorizedConnectAppReader extends Reader<AuthorizedConnectApp> {

private String pathAccountSid;
private Integer pageSize;
private Long pageSize;

public AuthorizedConnectAppReader() {}

public AuthorizedConnectAppReader(final String pathAccountSid) {
this.pathAccountSid = pathAccountSid;
}

public AuthorizedConnectAppReader setPageSize(final Integer pageSize) {
public AuthorizedConnectAppReader setPageSize(final Long pageSize) {
this.pageSize = pageSize;
return this;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,17 +31,15 @@ public class AvailablePhoneNumberCountryReader
extends Reader<AvailablePhoneNumberCountry> {

private String pathAccountSid;
private Integer pageSize;
private Long pageSize;

public AvailablePhoneNumberCountryReader() {}

public AvailablePhoneNumberCountryReader(final String pathAccountSid) {
this.pathAccountSid = pathAccountSid;
}

public AvailablePhoneNumberCountryReader setPageSize(
final Integer pageSize
) {
public AvailablePhoneNumberCountryReader setPageSize(final Long pageSize) {
this.pageSize = pageSize;
return this;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ public class CallReader extends Reader<Call> {
private ZonedDateTime endTime;
private ZonedDateTime endTimeBefore;
private ZonedDateTime endTimeAfter;
private Integer pageSize;
private Long pageSize;

public CallReader() {}

Expand Down Expand Up @@ -109,7 +109,7 @@ public CallReader setEndTimeAfter(final ZonedDateTime endTimeAfter) {
return this;
}

public CallReader setPageSize(final Integer pageSize) {
public CallReader setPageSize(final Long pageSize) {
this.pageSize = pageSize;
return this;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ public class ConferenceReader extends Reader<Conference> {
private LocalDate dateUpdatedAfter;
private String friendlyName;
private Conference.Status status;
private Integer pageSize;
private Long pageSize;

public ConferenceReader() {}

Expand Down Expand Up @@ -96,7 +96,7 @@ public ConferenceReader setStatus(final Conference.Status status) {
return this;
}

public ConferenceReader setPageSize(final Integer pageSize) {
public ConferenceReader setPageSize(final Long pageSize) {
this.pageSize = pageSize;
return this;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,15 +30,15 @@
public class ConnectAppReader extends Reader<ConnectApp> {

private String pathAccountSid;
private Integer pageSize;
private Long pageSize;

public ConnectAppReader() {}

public ConnectAppReader(final String pathAccountSid) {
this.pathAccountSid = pathAccountSid;
}

public ConnectAppReader setPageSize(final Integer pageSize) {
public ConnectAppReader setPageSize(final Long pageSize) {
this.pageSize = pageSize;
return this;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ public class IncomingPhoneNumberReader extends Reader<IncomingPhoneNumber> {
private String friendlyName;
private com.twilio.type.PhoneNumber phoneNumber;
private String origin;
private Integer pageSize;
private Long pageSize;

public IncomingPhoneNumberReader() {}

Expand Down Expand Up @@ -71,7 +71,7 @@ public IncomingPhoneNumberReader setOrigin(final String origin) {
return this;
}

public IncomingPhoneNumberReader setPageSize(final Integer pageSize) {
public IncomingPhoneNumberReader setPageSize(final Long pageSize) {
this.pageSize = pageSize;
return this;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,15 +30,15 @@
public class KeyReader extends Reader<Key> {

private String pathAccountSid;
private Integer pageSize;
private Long pageSize;

public KeyReader() {}

public KeyReader(final String pathAccountSid) {
this.pathAccountSid = pathAccountSid;
}

public KeyReader setPageSize(final Integer pageSize) {
public KeyReader setPageSize(final Long pageSize) {
this.pageSize = pageSize;
return this;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ public class MessageReader extends Reader<Message> {
private ZonedDateTime dateSent;
private ZonedDateTime dateSentBefore;
private ZonedDateTime dateSentAfter;
private Integer pageSize;
private Long pageSize;

public MessageReader() {}

Expand Down Expand Up @@ -79,7 +79,7 @@ public MessageReader setDateSentAfter(final ZonedDateTime dateSentAfter) {
return this;
}

public MessageReader setPageSize(final Integer pageSize) {
public MessageReader setPageSize(final Long pageSize) {
this.pageSize = pageSize;
return this;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ public class NotificationReader extends Reader<Notification> {
private LocalDate messageDate;
private LocalDate messageDateBefore;
private LocalDate messageDateAfter;
private Integer pageSize;
private Long pageSize;

public NotificationReader() {}

Expand Down Expand Up @@ -68,7 +68,7 @@ public NotificationReader setMessageDateAfter(
return this;
}

public NotificationReader setPageSize(final Integer pageSize) {
public NotificationReader setPageSize(final Long pageSize) {
this.pageSize = pageSize;
return this;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ public class OutgoingCallerIdReader extends Reader<OutgoingCallerId> {
private String pathAccountSid;
private com.twilio.type.PhoneNumber phoneNumber;
private String friendlyName;
private Integer pageSize;
private Long pageSize;

public OutgoingCallerIdReader() {}

Expand All @@ -57,7 +57,7 @@ public OutgoingCallerIdReader setFriendlyName(final String friendlyName) {
return this;
}

public OutgoingCallerIdReader setPageSize(final Integer pageSize) {
public OutgoingCallerIdReader setPageSize(final Long pageSize) {
this.pageSize = pageSize;
return this;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,15 +30,15 @@
public class QueueReader extends Reader<Queue> {

private String pathAccountSid;
private Integer pageSize;
private Long pageSize;

public QueueReader() {}

public QueueReader(final String pathAccountSid) {
this.pathAccountSid = pathAccountSid;
}

public QueueReader setPageSize(final Integer pageSize) {
public QueueReader setPageSize(final Long pageSize) {
this.pageSize = pageSize;
return this;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ public class RecordingReader extends Reader<Recording> {
private String callSid;
private String conferenceSid;
private Boolean includeSoftDeleted;
private Integer pageSize;
private Long pageSize;

public RecordingReader() {}

Expand Down Expand Up @@ -82,7 +82,7 @@ public RecordingReader setIncludeSoftDeleted(
return this;
}

public RecordingReader setPageSize(final Integer pageSize) {
public RecordingReader setPageSize(final Long pageSize) {
this.pageSize = pageSize;
return this;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ public class ShortCodeReader extends Reader<ShortCode> {
private String pathAccountSid;
private String friendlyName;
private String shortCode;
private Integer pageSize;
private Long pageSize;

public ShortCodeReader() {}

Expand All @@ -50,7 +50,7 @@ public ShortCodeReader setShortCode(final String shortCode) {
return this;
}

public ShortCodeReader setPageSize(final Integer pageSize) {
public ShortCodeReader setPageSize(final Long pageSize) {
this.pageSize = pageSize;
return this;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,15 +30,15 @@
public class SigningKeyReader extends Reader<SigningKey> {

private String pathAccountSid;
private Integer pageSize;
private Long pageSize;

public SigningKeyReader() {}

public SigningKeyReader(final String pathAccountSid) {
this.pathAccountSid = pathAccountSid;
}

public SigningKeyReader setPageSize(final Integer pageSize) {
public SigningKeyReader setPageSize(final Long pageSize) {
this.pageSize = pageSize;
return this;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,15 +30,15 @@
public class TranscriptionReader extends Reader<Transcription> {

private String pathAccountSid;
private Integer pageSize;
private Long pageSize;

public TranscriptionReader() {}

public TranscriptionReader(final String pathAccountSid) {
this.pathAccountSid = pathAccountSid;
}

public TranscriptionReader setPageSize(final Integer pageSize) {
public TranscriptionReader setPageSize(final Long pageSize) {
this.pageSize = pageSize;
return this;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ public class DependentPhoneNumberReader extends Reader<DependentPhoneNumber> {

private String pathAddressSid;
private String pathAccountSid;
private Integer pageSize;
private Long pageSize;

public DependentPhoneNumberReader(final String pathAddressSid) {
this.pathAddressSid = pathAddressSid;
Expand All @@ -45,7 +45,7 @@ public DependentPhoneNumberReader(
this.pathAddressSid = pathAddressSid;
}

public DependentPhoneNumberReader setPageSize(final Integer pageSize) {
public DependentPhoneNumberReader setPageSize(final Long pageSize) {
this.pageSize = pageSize;
return this;
}
Expand Down
Loading

0 comments on commit 308f790

Please sign in to comment.