diff --git a/lib/rest/api/v2010/account.ts b/lib/rest/api/v2010/account.ts index 8e39043284..a5b11c4932 100644 --- a/lib/rest/api/v2010/account.ts +++ b/lib/rest/api/v2010/account.ts @@ -473,7 +473,7 @@ interface AccountResource { owner_account_sid: string; sid: string; status: AccountStatus; - subresource_uris: object; + subresource_uris: Record; type: AccountType; uri: string; } @@ -529,7 +529,7 @@ export class AccountInstance { /** * Account Instance Subresources */ - subresourceUris: object; + subresourceUris: Record; type: AccountType; /** * The URI for this resource, relative to `https://api.twilio.com` diff --git a/lib/rest/api/v2010/account/availablePhoneNumberCountry.ts b/lib/rest/api/v2010/account/availablePhoneNumberCountry.ts index ff8595062f..4653e96991 100644 --- a/lib/rest/api/v2010/account/availablePhoneNumberCountry.ts +++ b/lib/rest/api/v2010/account/availablePhoneNumberCountry.ts @@ -262,7 +262,7 @@ interface AvailablePhoneNumberCountryResource { country: string; uri: string; beta: boolean; - subresource_uris: object; + subresource_uris: Record; } export class AvailablePhoneNumberCountryInstance { @@ -306,7 +306,7 @@ export class AvailablePhoneNumberCountryInstance { /** * A list of related resources identified by their relative URIs */ - subresourceUris: object; + subresourceUris: Record; private get _proxy(): AvailablePhoneNumberCountryContext { this._context = diff --git a/lib/rest/api/v2010/account/call.ts b/lib/rest/api/v2010/account/call.ts index b9b9858176..616e9679ad 100644 --- a/lib/rest/api/v2010/account/call.ts +++ b/lib/rest/api/v2010/account/call.ts @@ -578,7 +578,7 @@ interface CallResource { queue_time: string; trunk_sid: string; uri: string; - subresource_uris: object; + subresource_uris: Record; } export class CallInstance { @@ -721,7 +721,7 @@ export class CallInstance { /** * A list of related subresources identified by their relative URIs */ - subresourceUris: object; + subresourceUris: Record; private get _proxy(): CallContext { this._context = diff --git a/lib/rest/api/v2010/account/conference.ts b/lib/rest/api/v2010/account/conference.ts index 3f3e54427c..75833b539a 100644 --- a/lib/rest/api/v2010/account/conference.ts +++ b/lib/rest/api/v2010/account/conference.ts @@ -325,7 +325,7 @@ interface ConferenceResource { sid: string; status: ConferenceStatus; uri: string; - subresource_uris: object; + subresource_uris: Record; reason_conference_ended: ConferenceReasonConferenceEnded; call_sid_ending_conference: string; } @@ -392,7 +392,7 @@ export class ConferenceInstance { /** * A list of related resources identified by their relative URIs */ - subresourceUris: object; + subresourceUris: Record; reasonConferenceEnded: ConferenceReasonConferenceEnded; /** * The call SID that caused the conference to end diff --git a/lib/rest/api/v2010/account/incomingPhoneNumber/assignedAddOn.ts b/lib/rest/api/v2010/account/incomingPhoneNumber/assignedAddOn.ts index 4a0bd7a9e5..97b94548ca 100644 --- a/lib/rest/api/v2010/account/incomingPhoneNumber/assignedAddOn.ts +++ b/lib/rest/api/v2010/account/incomingPhoneNumber/assignedAddOn.ts @@ -216,7 +216,7 @@ interface AssignedAddOnResource { date_created: Date; date_updated: Date; uri: string; - subresource_uris: object; + subresource_uris: Record; } export class AssignedAddOnInstance { @@ -288,7 +288,7 @@ export class AssignedAddOnInstance { /** * A list of related resources identified by their relative URIs */ - subresourceUris: object; + subresourceUris: Record; private get _proxy(): AssignedAddOnContext { this._context = diff --git a/lib/rest/api/v2010/account/message.ts b/lib/rest/api/v2010/account/message.ts index 343beb193d..338e79a0b2 100644 --- a/lib/rest/api/v2010/account/message.ts +++ b/lib/rest/api/v2010/account/message.ts @@ -408,7 +408,7 @@ interface MessageResource { error_code: number; price_unit: string; api_version: string; - subresource_uris: object; + subresource_uris: Record; } export class MessageInstance { @@ -518,7 +518,7 @@ export class MessageInstance { /** * A list of related resources identified by their relative URIs */ - subresourceUris: object; + subresourceUris: Record; private get _proxy(): MessageContext { this._context = diff --git a/lib/rest/api/v2010/account/recording.ts b/lib/rest/api/v2010/account/recording.ts index f81f759dcd..f3346389ff 100644 --- a/lib/rest/api/v2010/account/recording.ts +++ b/lib/rest/api/v2010/account/recording.ts @@ -310,7 +310,7 @@ interface RecordingResource { error_code: number; uri: string; encryption_details: any; - subresource_uris: object; + subresource_uris: Record; media_url: string; } @@ -412,7 +412,7 @@ export class RecordingInstance { /** * A list of related resources identified by their relative URIs */ - subresourceUris: object; + subresourceUris: Record; /** * The URL of the media file. */ diff --git a/lib/rest/api/v2010/account/recording/addOnResult.ts b/lib/rest/api/v2010/account/recording/addOnResult.ts index 4fc9ed23f2..5a0cf05917 100644 --- a/lib/rest/api/v2010/account/recording/addOnResult.ts +++ b/lib/rest/api/v2010/account/recording/addOnResult.ts @@ -218,7 +218,7 @@ interface AddOnResultResource { date_updated: Date; date_completed: Date; reference_sid: string; - subresource_uris: object; + subresource_uris: Record; } export class AddOnResultInstance { @@ -282,7 +282,7 @@ export class AddOnResultInstance { /** * A list of related resources identified by their relative URIs */ - subresourceUris: object; + subresourceUris: Record; private get _proxy(): AddOnResultContext { this._context = diff --git a/lib/rest/api/v2010/account/recording/addOnResult/payload.ts b/lib/rest/api/v2010/account/recording/addOnResult/payload.ts index 962c088e62..07a95ec81c 100644 --- a/lib/rest/api/v2010/account/recording/addOnResult/payload.ts +++ b/lib/rest/api/v2010/account/recording/addOnResult/payload.ts @@ -199,7 +199,7 @@ interface PayloadResource { date_created: Date; date_updated: Date; reference_sid: string; - subresource_uris: object; + subresource_uris: Record; } export class PayloadInstance { @@ -277,7 +277,7 @@ export class PayloadInstance { /** * A list of related resources identified by their relative URIs */ - subresourceUris: object; + subresourceUris: Record; private get _proxy(): PayloadContext { this._context = diff --git a/lib/rest/api/v2010/account/sip/credentialList.ts b/lib/rest/api/v2010/account/sip/credentialList.ts index a587ffc488..4c487e7268 100644 --- a/lib/rest/api/v2010/account/sip/credentialList.ts +++ b/lib/rest/api/v2010/account/sip/credentialList.ts @@ -273,7 +273,7 @@ interface CredentialListResource { date_updated: Date; friendly_name: string; sid: string; - subresource_uris: object; + subresource_uris: Record; uri: string; } @@ -321,7 +321,7 @@ export class CredentialListInstance { /** * The list of credentials associated with this credential list. */ - subresourceUris: object; + subresourceUris: Record; /** * The URI for this resource */ diff --git a/lib/rest/api/v2010/account/sip/domain.ts b/lib/rest/api/v2010/account/sip/domain.ts index 4c96904394..c4527ba91b 100644 --- a/lib/rest/api/v2010/account/sip/domain.ts +++ b/lib/rest/api/v2010/account/sip/domain.ts @@ -410,7 +410,7 @@ interface DomainResource { voice_status_callback_method: DomainVoiceStatusCallbackMethod; voice_status_callback_url: string; voice_url: string; - subresource_uris: object; + subresource_uris: Record; sip_registration: boolean; emergency_calling_enabled: boolean; secure: boolean; @@ -516,7 +516,7 @@ export class DomainInstance { /** * A list mapping resources associated with the SIP Domain resource */ - subresourceUris: object; + subresourceUris: Record; /** * Whether SIP registration is allowed */ diff --git a/lib/rest/api/v2010/account/sip/ipAccessControlList.ts b/lib/rest/api/v2010/account/sip/ipAccessControlList.ts index 44cfea0b30..2c3b7f0a4a 100644 --- a/lib/rest/api/v2010/account/sip/ipAccessControlList.ts +++ b/lib/rest/api/v2010/account/sip/ipAccessControlList.ts @@ -275,7 +275,7 @@ interface IpAccessControlListResource { friendly_name: string; date_created: Date; date_updated: Date; - subresource_uris: object; + subresource_uris: Record; uri: string; } @@ -323,7 +323,7 @@ export class IpAccessControlListInstance { /** * The IP addresses associated with this resource. */ - subresourceUris: object; + subresourceUris: Record; /** * The URI for this resource */ diff --git a/lib/rest/api/v2010/account/usage/record.ts b/lib/rest/api/v2010/account/usage/record.ts index 9224be82dc..9fe8e2c901 100644 --- a/lib/rest/api/v2010/account/usage/record.ts +++ b/lib/rest/api/v2010/account/usage/record.ts @@ -644,7 +644,7 @@ interface RecordResource { price: number; price_unit: string; start_date: Date; - subresource_uris: object; + subresource_uris: Record; uri: string; usage: string; usage_unit: string; @@ -717,7 +717,7 @@ export class RecordInstance { /** * A list of related resources identified by their relative URIs */ - subresourceUris: object; + subresourceUris: Record; /** * The URI of the resource, relative to `https://api.twilio.com` */ diff --git a/lib/rest/api/v2010/account/usage/record/allTime.ts b/lib/rest/api/v2010/account/usage/record/allTime.ts index 48ff8b9cee..7418018b7b 100644 --- a/lib/rest/api/v2010/account/usage/record/allTime.ts +++ b/lib/rest/api/v2010/account/usage/record/allTime.ts @@ -524,7 +524,7 @@ interface AllTimeResource { price: number; price_unit: string; start_date: Date; - subresource_uris: object; + subresource_uris: Record; uri: string; usage: string; usage_unit: string; @@ -597,7 +597,7 @@ export class AllTimeInstance { /** * A list of related resources identified by their relative URIs */ - subresourceUris: object; + subresourceUris: Record; /** * The URI of the resource, relative to `https://api.twilio.com` */ diff --git a/lib/rest/api/v2010/account/usage/record/daily.ts b/lib/rest/api/v2010/account/usage/record/daily.ts index 83cb2bcb3e..cff9bb0541 100644 --- a/lib/rest/api/v2010/account/usage/record/daily.ts +++ b/lib/rest/api/v2010/account/usage/record/daily.ts @@ -522,7 +522,7 @@ interface DailyResource { price: number; price_unit: string; start_date: Date; - subresource_uris: object; + subresource_uris: Record; uri: string; usage: string; usage_unit: string; @@ -595,7 +595,7 @@ export class DailyInstance { /** * A list of related resources identified by their relative URIs */ - subresourceUris: object; + subresourceUris: Record; /** * The URI of the resource, relative to `https://api.twilio.com` */ diff --git a/lib/rest/api/v2010/account/usage/record/lastMonth.ts b/lib/rest/api/v2010/account/usage/record/lastMonth.ts index e4d1fa852d..99def1ae25 100644 --- a/lib/rest/api/v2010/account/usage/record/lastMonth.ts +++ b/lib/rest/api/v2010/account/usage/record/lastMonth.ts @@ -524,7 +524,7 @@ interface LastMonthResource { price: number; price_unit: string; start_date: Date; - subresource_uris: object; + subresource_uris: Record; uri: string; usage: string; usage_unit: string; @@ -597,7 +597,7 @@ export class LastMonthInstance { /** * A list of related resources identified by their relative URIs */ - subresourceUris: object; + subresourceUris: Record; /** * The URI of the resource, relative to `https://api.twilio.com` */ diff --git a/lib/rest/api/v2010/account/usage/record/monthly.ts b/lib/rest/api/v2010/account/usage/record/monthly.ts index 697984a21d..b7a6a99455 100644 --- a/lib/rest/api/v2010/account/usage/record/monthly.ts +++ b/lib/rest/api/v2010/account/usage/record/monthly.ts @@ -524,7 +524,7 @@ interface MonthlyResource { price: number; price_unit: string; start_date: Date; - subresource_uris: object; + subresource_uris: Record; uri: string; usage: string; usage_unit: string; @@ -597,7 +597,7 @@ export class MonthlyInstance { /** * A list of related resources identified by their relative URIs */ - subresourceUris: object; + subresourceUris: Record; /** * The URI of the resource, relative to `https://api.twilio.com` */ diff --git a/lib/rest/api/v2010/account/usage/record/thisMonth.ts b/lib/rest/api/v2010/account/usage/record/thisMonth.ts index 79f3ae7846..7dc36022c6 100644 --- a/lib/rest/api/v2010/account/usage/record/thisMonth.ts +++ b/lib/rest/api/v2010/account/usage/record/thisMonth.ts @@ -524,7 +524,7 @@ interface ThisMonthResource { price: number; price_unit: string; start_date: Date; - subresource_uris: object; + subresource_uris: Record; uri: string; usage: string; usage_unit: string; @@ -597,7 +597,7 @@ export class ThisMonthInstance { /** * A list of related resources identified by their relative URIs */ - subresourceUris: object; + subresourceUris: Record; /** * The URI of the resource, relative to `https://api.twilio.com` */ diff --git a/lib/rest/api/v2010/account/usage/record/today.ts b/lib/rest/api/v2010/account/usage/record/today.ts index ff12c9aa69..93e43aea6f 100644 --- a/lib/rest/api/v2010/account/usage/record/today.ts +++ b/lib/rest/api/v2010/account/usage/record/today.ts @@ -522,7 +522,7 @@ interface TodayResource { price: number; price_unit: string; start_date: Date; - subresource_uris: object; + subresource_uris: Record; uri: string; usage: string; usage_unit: string; @@ -595,7 +595,7 @@ export class TodayInstance { /** * A list of related resources identified by their relative URIs */ - subresourceUris: object; + subresourceUris: Record; /** * The URI of the resource, relative to `https://api.twilio.com` */ diff --git a/lib/rest/api/v2010/account/usage/record/yearly.ts b/lib/rest/api/v2010/account/usage/record/yearly.ts index be28475e2b..ffb478e055 100644 --- a/lib/rest/api/v2010/account/usage/record/yearly.ts +++ b/lib/rest/api/v2010/account/usage/record/yearly.ts @@ -523,7 +523,7 @@ interface YearlyResource { price: number; price_unit: string; start_date: Date; - subresource_uris: object; + subresource_uris: Record; uri: string; usage: string; usage_unit: string; @@ -596,7 +596,7 @@ export class YearlyInstance { /** * A list of related resources identified by their relative URIs */ - subresourceUris: object; + subresourceUris: Record; /** * The URI of the resource, relative to `https://api.twilio.com` */ diff --git a/lib/rest/api/v2010/account/usage/record/yesterday.ts b/lib/rest/api/v2010/account/usage/record/yesterday.ts index cd1b5454e6..70a530b09d 100644 --- a/lib/rest/api/v2010/account/usage/record/yesterday.ts +++ b/lib/rest/api/v2010/account/usage/record/yesterday.ts @@ -524,7 +524,7 @@ interface YesterdayResource { price: number; price_unit: string; start_date: Date; - subresource_uris: object; + subresource_uris: Record; uri: string; usage: string; usage_unit: string; @@ -597,7 +597,7 @@ export class YesterdayInstance { /** * A list of related resources identified by their relative URIs */ - subresourceUris: object; + subresourceUris: Record; /** * The URI of the resource, relative to `https://api.twilio.com` */ diff --git a/lib/rest/autopilot/v1/assistant.ts b/lib/rest/autopilot/v1/assistant.ts index c286905103..2c690fa138 100644 --- a/lib/rest/autopilot/v1/assistant.ts +++ b/lib/rest/autopilot/v1/assistant.ts @@ -364,7 +364,7 @@ interface AssistantResource { date_updated: Date; friendly_name: string; latest_model_build_sid: string; - links: object; + links: Record; log_queries: boolean; development_stage: string; needs_model_build: boolean; @@ -425,7 +425,7 @@ export class AssistantInstance { /** * A list of the URLs of the Assistant\'s related resources */ - links: object; + links: Record; /** * Whether queries should be logged and kept after training */ diff --git a/lib/rest/autopilot/v1/assistant/fieldType.ts b/lib/rest/autopilot/v1/assistant/fieldType.ts index d06b831827..e46f3fe472 100644 --- a/lib/rest/autopilot/v1/assistant/fieldType.ts +++ b/lib/rest/autopilot/v1/assistant/fieldType.ts @@ -282,7 +282,7 @@ interface FieldTypeResource { date_created: Date; date_updated: Date; friendly_name: string; - links: object; + links: Record; assistant_sid: string; sid: string; unique_name: string; @@ -331,7 +331,7 @@ export class FieldTypeInstance { /** * A list of the URLs of related resources */ - links: object; + links: Record; /** * The SID of the Assistant that is the parent of the resource */ diff --git a/lib/rest/autopilot/v1/assistant/task.ts b/lib/rest/autopilot/v1/assistant/task.ts index dec55d327b..e5f0f99fc0 100644 --- a/lib/rest/autopilot/v1/assistant/task.ts +++ b/lib/rest/autopilot/v1/assistant/task.ts @@ -336,7 +336,7 @@ interface TaskResource { date_created: Date; date_updated: Date; friendly_name: string; - links: object; + links: Record; assistant_sid: string; sid: string; unique_name: string; @@ -387,7 +387,7 @@ export class TaskInstance { /** * A list of the URLs of related resources */ - links: object; + links: Record; /** * The SID of the Assistant that is the parent of the resource */ diff --git a/lib/rest/bulkexports/v1/export.ts b/lib/rest/bulkexports/v1/export.ts index d05302a437..90bac47d5d 100644 --- a/lib/rest/bulkexports/v1/export.ts +++ b/lib/rest/bulkexports/v1/export.ts @@ -121,7 +121,7 @@ interface ExportPayload extends ExportResource {} interface ExportResource { resource_type: string; url: string; - links: object; + links: Record; } export class ExportInstance { @@ -151,7 +151,7 @@ export class ExportInstance { /** * Nested resource URLs. */ - links: object; + links: Record; private get _proxy(): ExportContext { this._context = diff --git a/lib/rest/chat/v1/service.ts b/lib/rest/chat/v1/service.ts index ca82bc98a2..1dcb3d023f 100644 --- a/lib/rest/chat/v1/service.ts +++ b/lib/rest/chat/v1/service.ts @@ -547,7 +547,7 @@ interface ServiceResource { webhook_filters: Array; notifications: any; url: string; - links: object; + links: Record; } export class ServiceInstance { @@ -668,7 +668,7 @@ export class ServiceInstance { /** * The absolute URLs of the Service\'s Channels, Roles, and Users */ - links: object; + links: Record; private get _proxy(): ServiceContext { this._context = diff --git a/lib/rest/chat/v1/service/channel.ts b/lib/rest/chat/v1/service/channel.ts index 386c655636..e6065a4300 100644 --- a/lib/rest/chat/v1/service/channel.ts +++ b/lib/rest/chat/v1/service/channel.ts @@ -335,7 +335,7 @@ interface ChannelResource { members_count: number; messages_count: number; url: string; - links: object; + links: Record; } export class ChannelInstance { @@ -418,7 +418,7 @@ export class ChannelInstance { /** * Absolute URLs to access the Members, Messages , Invites and, if it exists, the last Message for the Channel */ - links: object; + links: Record; private get _proxy(): ChannelContext { this._context = diff --git a/lib/rest/chat/v1/service/user.ts b/lib/rest/chat/v1/service/user.ts index 8c38d2c631..c830eedae8 100644 --- a/lib/rest/chat/v1/service/user.ts +++ b/lib/rest/chat/v1/service/user.ts @@ -297,7 +297,7 @@ interface UserResource { date_created: Date; date_updated: Date; joined_channels_count: number; - links: object; + links: Record; url: string; } @@ -382,7 +382,7 @@ export class UserInstance { /** * The absolute URLs of the Channel and Binding resources related to the user */ - links: object; + links: Record; /** * The absolute URL of the User resource */ diff --git a/lib/rest/chat/v1/service/user/userChannel.ts b/lib/rest/chat/v1/service/user/userChannel.ts index 119507c6cb..b6a6f67231 100644 --- a/lib/rest/chat/v1/service/user/userChannel.ts +++ b/lib/rest/chat/v1/service/user/userChannel.ts @@ -250,7 +250,7 @@ interface UserChannelResource { status: UserChannelChannelStatus; last_consumed_message_index: number; unread_messages_count: number; - links: object; + links: Record; } export class UserChannelInstance { @@ -302,7 +302,7 @@ export class UserChannelInstance { /** * Absolute URLs to access the Members, Messages , Invites and, if it exists, the last Message for the Channel */ - links: object; + links: Record; /** * Provide a user-friendly representation diff --git a/lib/rest/chat/v2/service.ts b/lib/rest/chat/v2/service.ts index 141a28a20a..c10be04a89 100644 --- a/lib/rest/chat/v2/service.ts +++ b/lib/rest/chat/v2/service.ts @@ -447,7 +447,7 @@ interface ServiceResource { notifications: any; media: any; url: string; - links: object; + links: Record; } export class ServiceInstance { @@ -582,7 +582,7 @@ export class ServiceInstance { /** * The absolute URLs of the Service\'s Channels, Roles, and Users */ - links: object; + links: Record; private get _proxy(): ServiceContext { this._context = diff --git a/lib/rest/chat/v2/service/binding.ts b/lib/rest/chat/v2/service/binding.ts index cceaae8e3e..3dbf630561 100644 --- a/lib/rest/chat/v2/service/binding.ts +++ b/lib/rest/chat/v2/service/binding.ts @@ -196,7 +196,7 @@ interface BindingResource { binding_type: BindingBindingType; message_types: Array; url: string; - links: object; + links: Record; } export class BindingInstance { @@ -269,7 +269,7 @@ export class BindingInstance { /** * The absolute URLs of the Binding\'s User */ - links: object; + links: Record; private get _proxy(): BindingContext { this._context = diff --git a/lib/rest/chat/v2/service/channel.ts b/lib/rest/chat/v2/service/channel.ts index 03b563257f..faff3f389f 100644 --- a/lib/rest/chat/v2/service/channel.ts +++ b/lib/rest/chat/v2/service/channel.ts @@ -413,7 +413,7 @@ interface ChannelResource { members_count: number; messages_count: number; url: string; - links: object; + links: Record; } export class ChannelInstance { @@ -496,7 +496,7 @@ export class ChannelInstance { /** * Absolute URLs to access the Members, Messages , Invites and, if it exists, the last Message for the Channel */ - links: object; + links: Record; private get _proxy(): ChannelContext { this._context = diff --git a/lib/rest/chat/v2/service/user.ts b/lib/rest/chat/v2/service/user.ts index 40b71ffa8e..96bbcbcd88 100644 --- a/lib/rest/chat/v2/service/user.ts +++ b/lib/rest/chat/v2/service/user.ts @@ -319,7 +319,7 @@ interface UserResource { date_created: Date; date_updated: Date; joined_channels_count: number; - links: object; + links: Record; url: string; } @@ -404,7 +404,7 @@ export class UserInstance { /** * The absolute URLs of the Channel and Binding resources related to the user */ - links: object; + links: Record; /** * The absolute URL of the User resource */ diff --git a/lib/rest/chat/v2/service/user/userChannel.ts b/lib/rest/chat/v2/service/user/userChannel.ts index 8c2bb1bb85..b57bc41dbe 100644 --- a/lib/rest/chat/v2/service/user/userChannel.ts +++ b/lib/rest/chat/v2/service/user/userChannel.ts @@ -322,7 +322,7 @@ interface UserChannelResource { status: UserChannelChannelStatus; last_consumed_message_index: number; unread_messages_count: number; - links: object; + links: Record; url: string; notification_level: UserChannelNotificationLevel; } @@ -393,7 +393,7 @@ export class UserChannelInstance { /** * Absolute URLs to access the Members, Messages , Invites and, if it exists, the last Message for the Channel */ - links: object; + links: Record; /** * The absolute URL of the resource */ diff --git a/lib/rest/content/v1/content.ts b/lib/rest/content/v1/content.ts index 4c93041dc1..4db5bf24f2 100644 --- a/lib/rest/content/v1/content.ts +++ b/lib/rest/content/v1/content.ts @@ -182,7 +182,7 @@ interface ContentResource { variables: any; types: any; url: string; - links: object; + links: Record; } export class ContentInstance { @@ -243,7 +243,7 @@ export class ContentInstance { /** * A list of links related to the Content resource */ - links: object; + links: Record; private get _proxy(): ContentContext { this._context = diff --git a/lib/rest/conversations/v1/configuration.ts b/lib/rest/conversations/v1/configuration.ts index 70f203fe46..08e9d230ab 100644 --- a/lib/rest/conversations/v1/configuration.ts +++ b/lib/rest/conversations/v1/configuration.ts @@ -177,7 +177,7 @@ interface ConfigurationResource { default_inactive_timer: string; default_closed_timer: string; url: string; - links: object; + links: Record; } export class ConfigurationInstance { @@ -223,7 +223,7 @@ export class ConfigurationInstance { /** * Absolute URLs to access the webhook and default service configurations. */ - links: object; + links: Record; private get _proxy(): ConfigurationContext { this._context = diff --git a/lib/rest/conversations/v1/conversation.ts b/lib/rest/conversations/v1/conversation.ts index da6c9cbb97..73bd4a382b 100644 --- a/lib/rest/conversations/v1/conversation.ts +++ b/lib/rest/conversations/v1/conversation.ts @@ -386,7 +386,7 @@ interface ConversationResource { date_updated: Date; timers: any; url: string; - links: object; + links: Record; bindings: any; } @@ -465,7 +465,7 @@ export class ConversationInstance { /** * Absolute URLs to access the participants, messages and webhooks of this conversation. */ - links: object; + links: Record; bindings: any; private get _proxy(): ConversationContext { diff --git a/lib/rest/conversations/v1/conversation/message.ts b/lib/rest/conversations/v1/conversation/message.ts index 6274c654d7..ddc7163731 100644 --- a/lib/rest/conversations/v1/conversation/message.ts +++ b/lib/rest/conversations/v1/conversation/message.ts @@ -363,7 +363,7 @@ interface MessageResource { date_updated: Date; url: string; delivery: any; - links: object; + links: Record; } export class MessageInstance { @@ -449,7 +449,7 @@ export class MessageInstance { /** * Absolute URL to access the receipts of this message. */ - links: object; + links: Record; private get _proxy(): MessageContext { this._context = diff --git a/lib/rest/conversations/v1/participantConversation.ts b/lib/rest/conversations/v1/participantConversation.ts index 68a5529c1a..269ca7838d 100644 --- a/lib/rest/conversations/v1/participantConversation.ts +++ b/lib/rest/conversations/v1/participantConversation.ts @@ -282,7 +282,7 @@ interface ParticipantConversationResource { conversation_created_by: string; conversation_state: ParticipantConversationState; conversation_timers: any; - links: object; + links: Record; } export class ParticipantConversationInstance { @@ -372,7 +372,7 @@ export class ParticipantConversationInstance { /** * Absolute URLs to access the participant and conversation of this Participant Conversation. */ - links: object; + links: Record; /** * Provide a user-friendly representation diff --git a/lib/rest/conversations/v1/service.ts b/lib/rest/conversations/v1/service.ts index a3f9f96170..bde99972a8 100644 --- a/lib/rest/conversations/v1/service.ts +++ b/lib/rest/conversations/v1/service.ts @@ -233,7 +233,7 @@ interface ServiceResource { date_created: Date; date_updated: Date; url: string; - links: object; + links: Record; } export class ServiceInstance { @@ -279,7 +279,7 @@ export class ServiceInstance { /** * Absolute URLs to access the conversations, users, roles, bindings and configuration of this service. */ - links: object; + links: Record; private get _proxy(): ServiceContext { this._context = diff --git a/lib/rest/conversations/v1/service/configuration.ts b/lib/rest/conversations/v1/service/configuration.ts index 0f56ee8d8c..d19edda749 100644 --- a/lib/rest/conversations/v1/service/configuration.ts +++ b/lib/rest/conversations/v1/service/configuration.ts @@ -196,7 +196,7 @@ interface ConfigurationResource { default_conversation_role_sid: string; default_chat_service_role_sid: string; url: string; - links: object; + links: Record; reachability_enabled: boolean; } @@ -244,7 +244,7 @@ export class ConfigurationInstance { /** * Absolute URL to access the push notifications configuration of this service. */ - links: object; + links: Record; /** * Whether the Reachability Indicator feature is enabled for this Conversations Service */ diff --git a/lib/rest/conversations/v1/service/conversation.ts b/lib/rest/conversations/v1/service/conversation.ts index fc9c06809d..ef12203e1d 100644 --- a/lib/rest/conversations/v1/service/conversation.ts +++ b/lib/rest/conversations/v1/service/conversation.ts @@ -407,7 +407,7 @@ interface ConversationResource { date_updated: Date; timers: any; url: string; - links: object; + links: Record; bindings: any; } @@ -487,7 +487,7 @@ export class ConversationInstance { /** * Absolute URLs to access the participants, messages and webhooks of this conversation. */ - links: object; + links: Record; bindings: any; private get _proxy(): ConversationContext { diff --git a/lib/rest/conversations/v1/service/conversation/message.ts b/lib/rest/conversations/v1/service/conversation/message.ts index e2ed6d5675..2885af38e3 100644 --- a/lib/rest/conversations/v1/service/conversation/message.ts +++ b/lib/rest/conversations/v1/service/conversation/message.ts @@ -377,7 +377,7 @@ interface MessageResource { date_updated: Date; delivery: any; url: string; - links: object; + links: Record; } export class MessageInstance { @@ -469,7 +469,7 @@ export class MessageInstance { /** * Absolute URL to access the receipts of this message. */ - links: object; + links: Record; private get _proxy(): MessageContext { this._context = diff --git a/lib/rest/conversations/v1/service/participantConversation.ts b/lib/rest/conversations/v1/service/participantConversation.ts index 56b598a4c9..32c12975fd 100644 --- a/lib/rest/conversations/v1/service/participantConversation.ts +++ b/lib/rest/conversations/v1/service/participantConversation.ts @@ -289,7 +289,7 @@ interface ParticipantConversationResource { conversation_created_by: string; conversation_state: ServiceParticipantConversationState; conversation_timers: any; - links: object; + links: Record; } export class ParticipantConversationInstance { @@ -380,7 +380,7 @@ export class ParticipantConversationInstance { /** * Absolute URLs to access the participant and conversation of this Participant Conversation. */ - links: object; + links: Record; /** * Provide a user-friendly representation diff --git a/lib/rest/conversations/v1/service/user.ts b/lib/rest/conversations/v1/service/user.ts index 9345269535..9f6b192481 100644 --- a/lib/rest/conversations/v1/service/user.ts +++ b/lib/rest/conversations/v1/service/user.ts @@ -343,7 +343,7 @@ interface UserResource { date_created: Date; date_updated: Date; url: string; - links: object; + links: Record; } export class UserInstance { @@ -421,7 +421,7 @@ export class UserInstance { * An absolute URL for this user. */ url: string; - links: object; + links: Record; private get _proxy(): UserContext { this._context = diff --git a/lib/rest/conversations/v1/service/user/userConversation.ts b/lib/rest/conversations/v1/service/user/userConversation.ts index 4d6bb0aee8..613febaca9 100644 --- a/lib/rest/conversations/v1/service/user/userConversation.ts +++ b/lib/rest/conversations/v1/service/user/userConversation.ts @@ -294,7 +294,7 @@ interface UserConversationResource { notification_level: ServiceUserConversationNotificationLevel; unique_name: string; url: string; - links: object; + links: Record; } export class UserConversationInstance { @@ -400,7 +400,7 @@ export class UserConversationInstance { /** * Absolute URLs to access the participant and conversation of this user conversation. */ - links: object; + links: Record; private get _proxy(): UserConversationContext { this._context = diff --git a/lib/rest/conversations/v1/user.ts b/lib/rest/conversations/v1/user.ts index 9134cfa839..51667a2c12 100644 --- a/lib/rest/conversations/v1/user.ts +++ b/lib/rest/conversations/v1/user.ts @@ -324,7 +324,7 @@ interface UserResource { date_created: Date; date_updated: Date; url: string; - links: object; + links: Record; } export class UserInstance { @@ -397,7 +397,7 @@ export class UserInstance { * An absolute URL for this user. */ url: string; - links: object; + links: Record; private get _proxy(): UserContext { this._context = diff --git a/lib/rest/conversations/v1/user/userConversation.ts b/lib/rest/conversations/v1/user/userConversation.ts index 4f5c40a1b3..9cd986cd81 100644 --- a/lib/rest/conversations/v1/user/userConversation.ts +++ b/lib/rest/conversations/v1/user/userConversation.ts @@ -286,7 +286,7 @@ interface UserConversationResource { notification_level: UserConversationNotificationLevel; unique_name: string; url: string; - links: object; + links: Record; } export class UserConversationInstance { @@ -390,7 +390,7 @@ export class UserConversationInstance { /** * Absolute URLs to access the participant and conversation of this user conversation. */ - links: object; + links: Record; private get _proxy(): UserConversationContext { this._context = diff --git a/lib/rest/events/v1/eventType.ts b/lib/rest/events/v1/eventType.ts index 4a60878c3a..b07bf48d78 100644 --- a/lib/rest/events/v1/eventType.ts +++ b/lib/rest/events/v1/eventType.ts @@ -149,7 +149,7 @@ interface EventTypeResource { date_updated: Date; description: string; url: string; - links: object; + links: Record; } export class EventTypeInstance { @@ -196,7 +196,7 @@ export class EventTypeInstance { * The URL of this resource. */ url: string; - links: object; + links: Record; private get _proxy(): EventTypeContext { this._context = diff --git a/lib/rest/events/v1/schema.ts b/lib/rest/events/v1/schema.ts index 9548f83b74..be0e98dca8 100644 --- a/lib/rest/events/v1/schema.ts +++ b/lib/rest/events/v1/schema.ts @@ -107,7 +107,7 @@ interface SchemaPayload extends SchemaResource {} interface SchemaResource { id: string; url: string; - links: object; + links: Record; latest_version_date_created: Date; latest_version: number; } @@ -139,7 +139,7 @@ export class SchemaInstance { /** * Nested resource URLs. */ - links: object; + links: Record; /** * The date that the latest schema version was created. */ diff --git a/lib/rest/events/v1/sink.ts b/lib/rest/events/v1/sink.ts index dcbba5007f..22951cf12f 100644 --- a/lib/rest/events/v1/sink.ts +++ b/lib/rest/events/v1/sink.ts @@ -280,7 +280,7 @@ interface SinkResource { sink_type: SinkSinkType; status: SinkStatus; url: string; - links: object; + links: Record; } export class SinkInstance { @@ -330,7 +330,7 @@ export class SinkInstance { /** * Nested resource URLs. */ - links: object; + links: Record; private get _proxy(): SinkContext { this._context = diff --git a/lib/rest/events/v1/subscription.ts b/lib/rest/events/v1/subscription.ts index afc622bf2c..515fe5608b 100644 --- a/lib/rest/events/v1/subscription.ts +++ b/lib/rest/events/v1/subscription.ts @@ -281,7 +281,7 @@ interface SubscriptionResource { description: string; sink_sid: string; url: string; - links: object; + links: Record; } export class SubscriptionInstance { @@ -336,7 +336,7 @@ export class SubscriptionInstance { /** * Nested resource URLs. */ - links: object; + links: Record; private get _proxy(): SubscriptionContext { this._context = diff --git a/lib/rest/flexApi/v1/interaction.ts b/lib/rest/flexApi/v1/interaction.ts index e0297f5e67..c635957cd4 100644 --- a/lib/rest/flexApi/v1/interaction.ts +++ b/lib/rest/flexApi/v1/interaction.ts @@ -123,7 +123,7 @@ interface InteractionResource { channel: any; routing: any; url: string; - links: object; + links: Record; } export class InteractionInstance { @@ -157,7 +157,7 @@ export class InteractionInstance { */ routing: any; url: string; - links: object; + links: Record; private get _proxy(): InteractionContext { this._context = diff --git a/lib/rest/flexApi/v1/interaction/interactionChannel.ts b/lib/rest/flexApi/v1/interaction/interactionChannel.ts index b6c7f51f7c..7872fc4327 100644 --- a/lib/rest/flexApi/v1/interaction/interactionChannel.ts +++ b/lib/rest/flexApi/v1/interaction/interactionChannel.ts @@ -270,7 +270,7 @@ interface InteractionChannelResource { error_code: number; error_message: string; url: string; - links: object; + links: Record; } export class InteractionChannelInstance { @@ -314,7 +314,7 @@ export class InteractionChannelInstance { */ errorMessage: string; url: string; - links: object; + links: Record; private get _proxy(): InteractionChannelContext { this._context = diff --git a/lib/rest/insights/v1/call.ts b/lib/rest/insights/v1/call.ts index 2d720e857b..34236273fd 100644 --- a/lib/rest/insights/v1/call.ts +++ b/lib/rest/insights/v1/call.ts @@ -135,7 +135,7 @@ interface CallPayload extends CallResource {} interface CallResource { sid: string; url: string; - links: object; + links: Record; } export class CallInstance { @@ -152,7 +152,7 @@ export class CallInstance { sid: string; url: string; - links: object; + links: Record; private get _proxy(): CallContext { this._context = diff --git a/lib/rest/insights/v1/conference.ts b/lib/rest/insights/v1/conference.ts index 3bf9012e75..68c0bb3066 100644 --- a/lib/rest/insights/v1/conference.ts +++ b/lib/rest/insights/v1/conference.ts @@ -264,7 +264,7 @@ interface ConferenceResource { tag_info: any; processing_state: ConferenceProcessingState; url: string; - links: object; + links: Record; } export class ConferenceInstance { @@ -383,7 +383,7 @@ export class ConferenceInstance { /** * Nested resource URLs. */ - links: object; + links: Record; private get _proxy(): ConferenceContext { this._context = diff --git a/lib/rest/insights/v1/room.ts b/lib/rest/insights/v1/room.ts index e44cf196df..f10b094f9b 100644 --- a/lib/rest/insights/v1/room.ts +++ b/lib/rest/insights/v1/room.ts @@ -243,7 +243,7 @@ interface RoomResource { recording_enabled: boolean; edge_location: VideoRoomSummaryEdgeLocation; url: string; - links: object; + links: Record; } export class RoomInstance { @@ -369,7 +369,7 @@ export class RoomInstance { /** * Room subresources. */ - links: object; + links: Record; private get _proxy(): RoomContext { this._context = diff --git a/lib/rest/ipMessaging/v1/service.ts b/lib/rest/ipMessaging/v1/service.ts index e63882e64d..1524d9f613 100644 --- a/lib/rest/ipMessaging/v1/service.ts +++ b/lib/rest/ipMessaging/v1/service.ts @@ -547,7 +547,7 @@ interface ServiceResource { webhook_filters: Array; notifications: any; url: string; - links: object; + links: Record; } export class ServiceInstance { @@ -605,7 +605,7 @@ export class ServiceInstance { webhookFilters: Array; notifications: any; url: string; - links: object; + links: Record; private get _proxy(): ServiceContext { this._context = diff --git a/lib/rest/ipMessaging/v1/service/channel.ts b/lib/rest/ipMessaging/v1/service/channel.ts index c8c86fbbfb..271d529a4b 100644 --- a/lib/rest/ipMessaging/v1/service/channel.ts +++ b/lib/rest/ipMessaging/v1/service/channel.ts @@ -335,7 +335,7 @@ interface ChannelResource { members_count: number; messages_count: number; url: string; - links: object; + links: Record; } export class ChannelInstance { @@ -379,7 +379,7 @@ export class ChannelInstance { membersCount: number; messagesCount: number; url: string; - links: object; + links: Record; private get _proxy(): ChannelContext { this._context = diff --git a/lib/rest/ipMessaging/v1/service/user.ts b/lib/rest/ipMessaging/v1/service/user.ts index 0aa429fc4f..9438d2fa40 100644 --- a/lib/rest/ipMessaging/v1/service/user.ts +++ b/lib/rest/ipMessaging/v1/service/user.ts @@ -297,7 +297,7 @@ interface UserResource { date_created: Date; date_updated: Date; joined_channels_count: number; - links: object; + links: Record; url: string; } @@ -343,7 +343,7 @@ export class UserInstance { dateCreated: Date; dateUpdated: Date; joinedChannelsCount: number; - links: object; + links: Record; url: string; private get _proxy(): UserContext { diff --git a/lib/rest/ipMessaging/v1/service/user/userChannel.ts b/lib/rest/ipMessaging/v1/service/user/userChannel.ts index 23e81e7333..f5b957eef4 100644 --- a/lib/rest/ipMessaging/v1/service/user/userChannel.ts +++ b/lib/rest/ipMessaging/v1/service/user/userChannel.ts @@ -250,7 +250,7 @@ interface UserChannelResource { status: UserChannelChannelStatus; last_consumed_message_index: number; unread_messages_count: number; - links: object; + links: Record; } export class UserChannelInstance { @@ -281,7 +281,7 @@ export class UserChannelInstance { status: UserChannelChannelStatus; lastConsumedMessageIndex: number; unreadMessagesCount: number; - links: object; + links: Record; /** * Provide a user-friendly representation diff --git a/lib/rest/ipMessaging/v2/service.ts b/lib/rest/ipMessaging/v2/service.ts index 0efc3f713f..caad37b653 100644 --- a/lib/rest/ipMessaging/v2/service.ts +++ b/lib/rest/ipMessaging/v2/service.ts @@ -447,7 +447,7 @@ interface ServiceResource { notifications: any; media: any; url: string; - links: object; + links: Record; } export class ServiceInstance { @@ -513,7 +513,7 @@ export class ServiceInstance { notifications: any; media: any; url: string; - links: object; + links: Record; private get _proxy(): ServiceContext { this._context = diff --git a/lib/rest/ipMessaging/v2/service/binding.ts b/lib/rest/ipMessaging/v2/service/binding.ts index 133ce711d9..465390de81 100644 --- a/lib/rest/ipMessaging/v2/service/binding.ts +++ b/lib/rest/ipMessaging/v2/service/binding.ts @@ -196,7 +196,7 @@ interface BindingResource { binding_type: BindingBindingType; message_types: Array; url: string; - links: object; + links: Record; } export class BindingInstance { @@ -236,7 +236,7 @@ export class BindingInstance { bindingType: BindingBindingType; messageTypes: Array; url: string; - links: object; + links: Record; private get _proxy(): BindingContext { this._context = diff --git a/lib/rest/ipMessaging/v2/service/channel.ts b/lib/rest/ipMessaging/v2/service/channel.ts index 5944f08154..d4d7d7cf34 100644 --- a/lib/rest/ipMessaging/v2/service/channel.ts +++ b/lib/rest/ipMessaging/v2/service/channel.ts @@ -413,7 +413,7 @@ interface ChannelResource { members_count: number; messages_count: number; url: string; - links: object; + links: Record; } export class ChannelInstance { @@ -457,7 +457,7 @@ export class ChannelInstance { membersCount: number; messagesCount: number; url: string; - links: object; + links: Record; private get _proxy(): ChannelContext { this._context = diff --git a/lib/rest/ipMessaging/v2/service/user.ts b/lib/rest/ipMessaging/v2/service/user.ts index ab5c9251d3..84acfd9a83 100644 --- a/lib/rest/ipMessaging/v2/service/user.ts +++ b/lib/rest/ipMessaging/v2/service/user.ts @@ -319,7 +319,7 @@ interface UserResource { date_created: Date; date_updated: Date; joined_channels_count: number; - links: object; + links: Record; url: string; } @@ -365,7 +365,7 @@ export class UserInstance { dateCreated: Date; dateUpdated: Date; joinedChannelsCount: number; - links: object; + links: Record; url: string; private get _proxy(): UserContext { diff --git a/lib/rest/ipMessaging/v2/service/user/userChannel.ts b/lib/rest/ipMessaging/v2/service/user/userChannel.ts index 140d775c75..51f1035d3e 100644 --- a/lib/rest/ipMessaging/v2/service/user/userChannel.ts +++ b/lib/rest/ipMessaging/v2/service/user/userChannel.ts @@ -282,7 +282,7 @@ interface UserChannelResource { status: UserChannelChannelStatus; last_consumed_message_index: number; unread_messages_count: number; - links: object; + links: Record; url: string; notification_level: UserChannelNotificationLevel; } @@ -329,7 +329,7 @@ export class UserChannelInstance { status: UserChannelChannelStatus; lastConsumedMessageIndex: number; unreadMessagesCount: number; - links: object; + links: Record; url: string; notificationLevel: UserChannelNotificationLevel; diff --git a/lib/rest/lookups/v1/phoneNumber.ts b/lib/rest/lookups/v1/phoneNumber.ts index 427bb833d3..a4bc065833 100644 --- a/lib/rest/lookups/v1/phoneNumber.ts +++ b/lib/rest/lookups/v1/phoneNumber.ts @@ -29,7 +29,7 @@ export interface PhoneNumberContextFetchOptions { /** The `unique_name` of an Add-on you would like to invoke. Can be the `unique_name` of an Add-on that is installed on your account. You can specify multiple instances of this parameter to invoke multiple Add-ons. For more information about Add-ons, see the [Add-ons documentation](https://www.twilio.com/docs/add-ons). */ addOns?: Array; /** Data specific to the add-on you would like to invoke. The content and format of this value depends on the add-on. */ - addOnsData?: object; + addOnsData?: Record; } export interface PhoneNumberContext { diff --git a/lib/rest/media/v1/mediaRecording.ts b/lib/rest/media/v1/mediaRecording.ts index 523418df06..b7d5332cfb 100644 --- a/lib/rest/media/v1/mediaRecording.ts +++ b/lib/rest/media/v1/mediaRecording.ts @@ -211,7 +211,7 @@ interface MediaRecordingResource { date_updated: Date; duration: number; format: MediaRecordingFormat; - links: object; + links: Record; processor_sid: string; resolution: string; source_sid: string; @@ -271,7 +271,7 @@ export class MediaRecordingInstance { /** * The URLs of related resources */ - links: object; + links: Record; /** * The SID of the MediaProcessor */ diff --git a/lib/rest/media/v1/playerStreamer.ts b/lib/rest/media/v1/playerStreamer.ts index 66b94171bb..66f9f2fb20 100644 --- a/lib/rest/media/v1/playerStreamer.ts +++ b/lib/rest/media/v1/playerStreamer.ts @@ -268,7 +268,7 @@ interface PlayerStreamerResource { date_created: Date; date_updated: Date; video: boolean; - links: object; + links: Record; sid: string; status: PlayerStreamerStatus; url: string; @@ -322,7 +322,7 @@ export class PlayerStreamerInstance { /** * The URLs of related resources */ - links: object; + links: Record; /** * The unique string that identifies the resource */ diff --git a/lib/rest/messaging/v1/brandRegistration.ts b/lib/rest/messaging/v1/brandRegistration.ts index d9ab6a468d..9a2d749bee 100644 --- a/lib/rest/messaging/v1/brandRegistration.ts +++ b/lib/rest/messaging/v1/brandRegistration.ts @@ -243,7 +243,7 @@ interface BrandRegistrationResource { tax_exempt_status: string; skip_automatic_sec_vet: boolean; mock: boolean; - links: object; + links: Record; } export class BrandRegistrationInstance { @@ -349,7 +349,7 @@ export class BrandRegistrationInstance { * A boolean that specifies whether brand should be a mock or not. If true, brand will be registered as a mock brand. Defaults to false if no value is provided. */ mock: boolean; - links: object; + links: Record; private get _proxy(): BrandRegistrationContext { this._context = diff --git a/lib/rest/messaging/v1/service.ts b/lib/rest/messaging/v1/service.ts index a541a94fd0..fe68310c20 100644 --- a/lib/rest/messaging/v1/service.ts +++ b/lib/rest/messaging/v1/service.ts @@ -422,7 +422,7 @@ interface ServiceResource { synchronous_validation: boolean; validity_period: number; url: string; - links: object; + links: Record; usecase: string; us_app_to_person_registered: boolean; use_inbound_webhook_on_number: boolean; @@ -536,7 +536,7 @@ export class ServiceInstance { /** * The absolute URLs of related resources */ - links: object; + links: Record; /** * A string describing the scenario in which the Messaging Service will be used */ diff --git a/lib/rest/microvisor/v1/device.ts b/lib/rest/microvisor/v1/device.ts index beb30f81e4..11257974b7 100644 --- a/lib/rest/microvisor/v1/device.ts +++ b/lib/rest/microvisor/v1/device.ts @@ -221,7 +221,7 @@ interface DeviceResource { date_created: Date; date_updated: Date; url: string; - links: object; + links: Record; } export class DeviceInstance { @@ -277,7 +277,7 @@ export class DeviceInstance { /** * The absolute URLs of related resources */ - links: object; + links: Record; private get _proxy(): DeviceContext { this._context = diff --git a/lib/rest/monitor/v1/event.ts b/lib/rest/monitor/v1/event.ts index 3449a3ada7..57a989a9a3 100644 --- a/lib/rest/monitor/v1/event.ts +++ b/lib/rest/monitor/v1/event.ts @@ -182,7 +182,7 @@ interface EventResource { source: string; source_ip_address: string; url: string; - links: object; + links: Record; } export class EventInstance { @@ -263,7 +263,7 @@ export class EventInstance { /** * The absolute URLs of related resources */ - links: object; + links: Record; private get _proxy(): EventContext { this._context = diff --git a/lib/rest/notify/v1/service.ts b/lib/rest/notify/v1/service.ts index 5cffbfa637..3207234b84 100644 --- a/lib/rest/notify/v1/service.ts +++ b/lib/rest/notify/v1/service.ts @@ -367,7 +367,7 @@ interface ServiceResource { default_fcm_notification_protocol_version: string; log_enabled: boolean; url: string; - links: object; + links: Record; alexa_skill_id: string; default_alexa_notification_protocol_version: string; delivery_callback_url: string; @@ -470,7 +470,7 @@ export class ServiceInstance { /** * The URLs of the resources related to the service */ - links: object; + links: Record; /** * Deprecated */ diff --git a/lib/rest/notify/v1/service/binding.ts b/lib/rest/notify/v1/service/binding.ts index 2a8cd0f36e..72cf6d0025 100644 --- a/lib/rest/notify/v1/service/binding.ts +++ b/lib/rest/notify/v1/service/binding.ts @@ -235,7 +235,7 @@ interface BindingResource { address: string; tags: Array; url: string; - links: object; + links: Record; } export class BindingInstance { @@ -321,7 +321,7 @@ export class BindingInstance { /** * The URLs of related resources */ - links: object; + links: Record; private get _proxy(): BindingContext { this._context = diff --git a/lib/rest/numbers/v2/regulatoryCompliance/bundle.ts b/lib/rest/numbers/v2/regulatoryCompliance/bundle.ts index 519421d9b2..bf2302739b 100644 --- a/lib/rest/numbers/v2/regulatoryCompliance/bundle.ts +++ b/lib/rest/numbers/v2/regulatoryCompliance/bundle.ts @@ -396,7 +396,7 @@ interface BundleResource { date_created: Date; date_updated: Date; url: string; - links: object; + links: Record; } export class BundleInstance { @@ -464,7 +464,7 @@ export class BundleInstance { /** * The URLs of the Assigned Items of the Bundle resource */ - links: object; + links: Record; private get _proxy(): BundleContext { this._context = diff --git a/lib/rest/preview/deployed_devices/fleet.ts b/lib/rest/preview/deployed_devices/fleet.ts index ed1b068f1d..ee2187d814 100644 --- a/lib/rest/preview/deployed_devices/fleet.ts +++ b/lib/rest/preview/deployed_devices/fleet.ts @@ -293,7 +293,7 @@ interface FleetResource { default_deployment_sid: string; date_created: Date; date_updated: Date; - links: object; + links: Record; } export class FleetInstance { @@ -353,7 +353,7 @@ export class FleetInstance { /** * Nested resource URLs. */ - links: object; + links: Record; private get _proxy(): FleetContext { this._context = diff --git a/lib/rest/preview/hosted_numbers/authorizationDocument.ts b/lib/rest/preview/hosted_numbers/authorizationDocument.ts index 71a86db0c2..6bd6e83d0d 100644 --- a/lib/rest/preview/hosted_numbers/authorizationDocument.ts +++ b/lib/rest/preview/hosted_numbers/authorizationDocument.ts @@ -315,7 +315,7 @@ interface AuthorizationDocumentResource { date_created: Date; date_updated: Date; url: string; - links: object; + links: Record; } export class AuthorizationDocumentInstance { @@ -366,7 +366,7 @@ export class AuthorizationDocumentInstance { */ dateUpdated: Date; url: string; - links: object; + links: Record; private get _proxy(): AuthorizationDocumentContext { this._context = diff --git a/lib/rest/preview/marketplace/availableAddOn.ts b/lib/rest/preview/marketplace/availableAddOn.ts index 57323888a7..900b98ef22 100644 --- a/lib/rest/preview/marketplace/availableAddOn.ts +++ b/lib/rest/preview/marketplace/availableAddOn.ts @@ -158,7 +158,7 @@ interface AvailableAddOnResource { pricing_type: string; configuration_schema: any; url: string; - links: object; + links: Record; } export class AvailableAddOnInstance { @@ -208,7 +208,7 @@ export class AvailableAddOnInstance { /** * The URLs of related resources */ - links: object; + links: Record; private get _proxy(): AvailableAddOnContext { this._context = diff --git a/lib/rest/preview/marketplace/installedAddOn.ts b/lib/rest/preview/marketplace/installedAddOn.ts index d33c6a47bc..76a3dac81e 100644 --- a/lib/rest/preview/marketplace/installedAddOn.ts +++ b/lib/rest/preview/marketplace/installedAddOn.ts @@ -283,7 +283,7 @@ interface InstalledAddOnResource { date_created: Date; date_updated: Date; url: string; - links: object; + links: Record; } export class InstalledAddOnInstance { @@ -348,7 +348,7 @@ export class InstalledAddOnInstance { /** * The URLs of related resources */ - links: object; + links: Record; private get _proxy(): InstalledAddOnContext { this._context = diff --git a/lib/rest/preview/sync/service.ts b/lib/rest/preview/sync/service.ts index 9991263cee..29992cbd07 100644 --- a/lib/rest/preview/sync/service.ts +++ b/lib/rest/preview/sync/service.ts @@ -301,7 +301,7 @@ interface ServiceResource { webhook_url: string; reachability_webhooks_enabled: boolean; acl_enabled: boolean; - links: object; + links: Record; } export class ServiceInstance { @@ -336,7 +336,7 @@ export class ServiceInstance { webhookUrl: string; reachabilityWebhooksEnabled: boolean; aclEnabled: boolean; - links: object; + links: Record; private get _proxy(): ServiceContext { this._context = diff --git a/lib/rest/preview/sync/service/document.ts b/lib/rest/preview/sync/service/document.ts index 5022ceac28..33e8e11f93 100644 --- a/lib/rest/preview/sync/service/document.ts +++ b/lib/rest/preview/sync/service/document.ts @@ -273,7 +273,7 @@ interface DocumentResource { account_sid: string; service_sid: string; url: string; - links: object; + links: Record; revision: string; data: any; date_created: Date; @@ -311,7 +311,7 @@ export class DocumentInstance { accountSid: string; serviceSid: string; url: string; - links: object; + links: Record; revision: string; data: any; dateCreated: Date; diff --git a/lib/rest/preview/sync/service/syncList.ts b/lib/rest/preview/sync/service/syncList.ts index d7e9484d6d..ff60cfcd61 100644 --- a/lib/rest/preview/sync/service/syncList.ts +++ b/lib/rest/preview/sync/service/syncList.ts @@ -213,7 +213,7 @@ interface SyncListResource { account_sid: string; service_sid: string; url: string; - links: object; + links: Record; revision: string; date_created: Date; date_updated: Date; @@ -249,7 +249,7 @@ export class SyncListInstance { accountSid: string; serviceSid: string; url: string; - links: object; + links: Record; revision: string; dateCreated: Date; dateUpdated: Date; diff --git a/lib/rest/preview/sync/service/syncMap.ts b/lib/rest/preview/sync/service/syncMap.ts index 2a54df7eea..e06a62bc93 100644 --- a/lib/rest/preview/sync/service/syncMap.ts +++ b/lib/rest/preview/sync/service/syncMap.ts @@ -213,7 +213,7 @@ interface SyncMapResource { account_sid: string; service_sid: string; url: string; - links: object; + links: Record; revision: string; date_created: Date; date_updated: Date; @@ -249,7 +249,7 @@ export class SyncMapInstance { accountSid: string; serviceSid: string; url: string; - links: object; + links: Record; revision: string; dateCreated: Date; dateUpdated: Date; diff --git a/lib/rest/preview/understand/assistant.ts b/lib/rest/preview/understand/assistant.ts index 35c660a7aa..da4b867b31 100644 --- a/lib/rest/preview/understand/assistant.ts +++ b/lib/rest/preview/understand/assistant.ts @@ -368,7 +368,7 @@ interface AssistantResource { date_updated: Date; friendly_name: string; latest_model_build_sid: string; - links: object; + links: Record; log_queries: boolean; sid: string; unique_name: string; @@ -422,7 +422,7 @@ export class AssistantInstance { * The unique ID (Sid) of the latest model build. Null if no model has been built. */ latestModelBuildSid: string; - links: object; + links: Record; /** * A boolean that specifies whether queries should be logged for 30 days further training. If false, no queries will be stored, if true, queries will be stored for 30 days and deleted thereafter. */ diff --git a/lib/rest/preview/understand/assistant/fieldType.ts b/lib/rest/preview/understand/assistant/fieldType.ts index 15f2e4fec4..454ad9ebd6 100644 --- a/lib/rest/preview/understand/assistant/fieldType.ts +++ b/lib/rest/preview/understand/assistant/fieldType.ts @@ -286,7 +286,7 @@ interface FieldTypeResource { date_created: Date; date_updated: Date; friendly_name: string; - links: object; + links: Record; assistant_sid: string; sid: string; unique_name: string; @@ -332,7 +332,7 @@ export class FieldTypeInstance { * A user-provided string that identifies this resource. It is non-unique and can up to 255 characters long. */ friendlyName: string; - links: object; + links: Record; /** * The unique ID of the Assistant. */ diff --git a/lib/rest/preview/understand/assistant/task.ts b/lib/rest/preview/understand/assistant/task.ts index 2a60e17b69..c172bc9c04 100644 --- a/lib/rest/preview/understand/assistant/task.ts +++ b/lib/rest/preview/understand/assistant/task.ts @@ -340,7 +340,7 @@ interface TaskResource { date_created: Date; date_updated: Date; friendly_name: string; - links: object; + links: Record; assistant_sid: string; sid: string; unique_name: string; @@ -388,7 +388,7 @@ export class TaskInstance { * A user-provided string that identifies this resource. It is non-unique and can up to 255 characters long. */ friendlyName: string; - links: object; + links: Record; /** * The unique ID of the Assistant. */ diff --git a/lib/rest/preview/wireless/sim.ts b/lib/rest/preview/wireless/sim.ts index e6fd617d33..c8d05cc287 100644 --- a/lib/rest/preview/wireless/sim.ts +++ b/lib/rest/preview/wireless/sim.ts @@ -346,7 +346,7 @@ interface SimResource { date_created: Date; date_updated: Date; url: string; - links: object; + links: Record; } export class SimInstance { @@ -405,7 +405,7 @@ export class SimInstance { dateCreated: Date; dateUpdated: Date; url: string; - links: object; + links: Record; private get _proxy(): SimContext { this._context = diff --git a/lib/rest/proxy/v1/service.ts b/lib/rest/proxy/v1/service.ts index 05190b5013..35ace8e7ac 100644 --- a/lib/rest/proxy/v1/service.ts +++ b/lib/rest/proxy/v1/service.ts @@ -331,7 +331,7 @@ interface ServiceResource { date_created: Date; date_updated: Date; url: string; - links: object; + links: Record; } export class ServiceInstance { @@ -406,7 +406,7 @@ export class ServiceInstance { /** * The URLs of resources related to the Service */ - links: object; + links: Record; private get _proxy(): ServiceContext { this._context = diff --git a/lib/rest/proxy/v1/service/session.ts b/lib/rest/proxy/v1/service/session.ts index a5198b7487..704ba68d4c 100644 --- a/lib/rest/proxy/v1/service/session.ts +++ b/lib/rest/proxy/v1/service/session.ts @@ -321,7 +321,7 @@ interface SessionResource { date_created: Date; date_updated: Date; url: string; - links: object; + links: Record; } export class SessionInstance { @@ -413,7 +413,7 @@ export class SessionInstance { /** * The URLs of resources related to the Session */ - links: object; + links: Record; private get _proxy(): SessionContext { this._context = diff --git a/lib/rest/proxy/v1/service/session/participant.ts b/lib/rest/proxy/v1/service/session/participant.ts index 0fde9fb49a..fd8a60a102 100644 --- a/lib/rest/proxy/v1/service/session/participant.ts +++ b/lib/rest/proxy/v1/service/session/participant.ts @@ -224,7 +224,7 @@ interface ParticipantResource { date_created: Date; date_updated: Date; url: string; - links: object; + links: Record; } export class ParticipantInstance { @@ -306,7 +306,7 @@ export class ParticipantInstance { /** * The URLs to resources related the participant */ - links: object; + links: Record; private get _proxy(): ParticipantContext { this._context = diff --git a/lib/rest/serverless/v1/service.ts b/lib/rest/serverless/v1/service.ts index bd72e337d3..96ff5bfb76 100644 --- a/lib/rest/serverless/v1/service.ts +++ b/lib/rest/serverless/v1/service.ts @@ -305,7 +305,7 @@ interface ServiceResource { date_created: Date; date_updated: Date; url: string; - links: object; + links: Record; } export class ServiceInstance { @@ -371,7 +371,7 @@ export class ServiceInstance { /** * The URLs of the Service\'s nested resources */ - links: object; + links: Record; private get _proxy(): ServiceContext { this._context = diff --git a/lib/rest/serverless/v1/service/asset.ts b/lib/rest/serverless/v1/service/asset.ts index 836c990f91..369b8f9868 100644 --- a/lib/rest/serverless/v1/service/asset.ts +++ b/lib/rest/serverless/v1/service/asset.ts @@ -272,7 +272,7 @@ interface AssetResource { date_created: Date; date_updated: Date; url: string; - links: object; + links: Record; } export class AssetInstance { @@ -328,7 +328,7 @@ export class AssetInstance { /** * The URLs of the Asset resource\'s nested resources */ - links: object; + links: Record; private get _proxy(): AssetContext { this._context = diff --git a/lib/rest/serverless/v1/service/build.ts b/lib/rest/serverless/v1/service/build.ts index 113d23806a..256ae662e7 100644 --- a/lib/rest/serverless/v1/service/build.ts +++ b/lib/rest/serverless/v1/service/build.ts @@ -215,7 +215,7 @@ interface BuildResource { date_created: Date; date_updated: Date; url: string; - links: object; + links: Record; } export class BuildInstance { @@ -282,7 +282,7 @@ export class BuildInstance { * The absolute URL of the Build resource */ url: string; - links: object; + links: Record; private get _proxy(): BuildContext { this._context = diff --git a/lib/rest/serverless/v1/service/environment.ts b/lib/rest/serverless/v1/service/environment.ts index 04e43dcfb2..42f740e458 100644 --- a/lib/rest/serverless/v1/service/environment.ts +++ b/lib/rest/serverless/v1/service/environment.ts @@ -234,7 +234,7 @@ interface EnvironmentResource { date_created: Date; date_updated: Date; url: string; - links: object; + links: Record; } export class EnvironmentInstance { @@ -305,7 +305,7 @@ export class EnvironmentInstance { /** * The URLs of the Environment resource\'s nested resources */ - links: object; + links: Record; private get _proxy(): EnvironmentContext { this._context = diff --git a/lib/rest/serverless/v1/service/function.ts b/lib/rest/serverless/v1/service/function.ts index e565b31d72..6393b3602f 100644 --- a/lib/rest/serverless/v1/service/function.ts +++ b/lib/rest/serverless/v1/service/function.ts @@ -272,7 +272,7 @@ interface FunctionResource { date_created: Date; date_updated: Date; url: string; - links: object; + links: Record; } export class FunctionInstance { @@ -328,7 +328,7 @@ export class FunctionInstance { /** * The URLs of nested resources of the Function resource */ - links: object; + links: Record; private get _proxy(): FunctionContext { this._context = diff --git a/lib/rest/serverless/v1/service/function/functionVersion.ts b/lib/rest/serverless/v1/service/function/functionVersion.ts index 880b7bc018..f98aa06979 100644 --- a/lib/rest/serverless/v1/service/function/functionVersion.ts +++ b/lib/rest/serverless/v1/service/function/functionVersion.ts @@ -184,7 +184,7 @@ interface FunctionVersionResource { visibility: FunctionVersionVisibility; date_created: Date; url: string; - links: object; + links: Record; } export class FunctionVersionInstance { @@ -240,7 +240,7 @@ export class FunctionVersionInstance { * The absolute URL of the Function Version resource */ url: string; - links: object; + links: Record; private get _proxy(): FunctionVersionContext { this._context = diff --git a/lib/rest/studio/v1/flow.ts b/lib/rest/studio/v1/flow.ts index 6483dc89f6..4637b97c3c 100644 --- a/lib/rest/studio/v1/flow.ts +++ b/lib/rest/studio/v1/flow.ts @@ -193,7 +193,7 @@ interface FlowResource { date_created: Date; date_updated: Date; url: string; - links: object; + links: Record; } export class FlowInstance { @@ -246,7 +246,7 @@ export class FlowInstance { /** * Nested resource URLs */ - links: object; + links: Record; private get _proxy(): FlowContext { this._context = diff --git a/lib/rest/studio/v1/flow/engagement.ts b/lib/rest/studio/v1/flow/engagement.ts index 3a7b384784..d6e1ccc7ff 100644 --- a/lib/rest/studio/v1/flow/engagement.ts +++ b/lib/rest/studio/v1/flow/engagement.ts @@ -224,7 +224,7 @@ interface EngagementResource { date_created: Date; date_updated: Date; url: string; - links: object; + links: Record; } export class EngagementInstance { @@ -292,7 +292,7 @@ export class EngagementInstance { /** * The URLs of the Engagement\'s nested resources */ - links: object; + links: Record; private get _proxy(): EngagementContext { this._context = diff --git a/lib/rest/studio/v1/flow/engagement/step.ts b/lib/rest/studio/v1/flow/engagement/step.ts index 478640720e..036bdb89fc 100644 --- a/lib/rest/studio/v1/flow/engagement/step.ts +++ b/lib/rest/studio/v1/flow/engagement/step.ts @@ -182,7 +182,7 @@ interface StepResource { date_created: Date; date_updated: Date; url: string; - links: object; + links: Record; } export class StepInstance { @@ -259,7 +259,7 @@ export class StepInstance { /** * The URLs of related resources */ - links: object; + links: Record; private get _proxy(): StepContext { this._context = diff --git a/lib/rest/studio/v1/flow/execution.ts b/lib/rest/studio/v1/flow/execution.ts index dc0adbec26..2ed1663fe2 100644 --- a/lib/rest/studio/v1/flow/execution.ts +++ b/lib/rest/studio/v1/flow/execution.ts @@ -304,7 +304,7 @@ interface ExecutionResource { date_created: Date; date_updated: Date; url: string; - links: object; + links: Record; } export class ExecutionInstance { @@ -372,7 +372,7 @@ export class ExecutionInstance { /** * Nested resource URLs */ - links: object; + links: Record; private get _proxy(): ExecutionContext { this._context = diff --git a/lib/rest/studio/v1/flow/execution/executionStep.ts b/lib/rest/studio/v1/flow/execution/executionStep.ts index 416035cdd8..e3cd2170fd 100644 --- a/lib/rest/studio/v1/flow/execution/executionStep.ts +++ b/lib/rest/studio/v1/flow/execution/executionStep.ts @@ -182,7 +182,7 @@ interface ExecutionStepResource { date_created: Date; date_updated: Date; url: string; - links: object; + links: Record; } export class ExecutionStepInstance { @@ -259,7 +259,7 @@ export class ExecutionStepInstance { /** * The URLs of related resources */ - links: object; + links: Record; private get _proxy(): ExecutionStepContext { this._context = diff --git a/lib/rest/studio/v2/flow.ts b/lib/rest/studio/v2/flow.ts index 105ffa8422..039515f716 100644 --- a/lib/rest/studio/v2/flow.ts +++ b/lib/rest/studio/v2/flow.ts @@ -297,7 +297,7 @@ interface FlowResource { date_updated: Date; webhook_url: string; url: string; - links: object; + links: Record; } export class FlowInstance { @@ -377,7 +377,7 @@ export class FlowInstance { /** * Nested resource URLs */ - links: object; + links: Record; private get _proxy(): FlowContext { this._context = diff --git a/lib/rest/studio/v2/flow/execution.ts b/lib/rest/studio/v2/flow/execution.ts index bb0e8cc048..96842a0b23 100644 --- a/lib/rest/studio/v2/flow/execution.ts +++ b/lib/rest/studio/v2/flow/execution.ts @@ -303,7 +303,7 @@ interface ExecutionResource { date_created: Date; date_updated: Date; url: string; - links: object; + links: Record; } export class ExecutionInstance { @@ -366,7 +366,7 @@ export class ExecutionInstance { /** * Nested resource URLs */ - links: object; + links: Record; private get _proxy(): ExecutionContext { this._context = diff --git a/lib/rest/studio/v2/flow/execution/executionStep.ts b/lib/rest/studio/v2/flow/execution/executionStep.ts index a42094657c..322109f697 100644 --- a/lib/rest/studio/v2/flow/execution/executionStep.ts +++ b/lib/rest/studio/v2/flow/execution/executionStep.ts @@ -182,7 +182,7 @@ interface ExecutionStepResource { date_created: Date; date_updated: Date; url: string; - links: object; + links: Record; } export class ExecutionStepInstance { @@ -259,7 +259,7 @@ export class ExecutionStepInstance { /** * The URLs of related resources */ - links: object; + links: Record; private get _proxy(): ExecutionStepContext { this._context = diff --git a/lib/rest/supersim/v1/networkAccessProfile.ts b/lib/rest/supersim/v1/networkAccessProfile.ts index 77e690bde9..8ef8ea62e1 100644 --- a/lib/rest/supersim/v1/networkAccessProfile.ts +++ b/lib/rest/supersim/v1/networkAccessProfile.ts @@ -249,7 +249,7 @@ interface NetworkAccessProfileResource { date_created: Date; date_updated: Date; url: string; - links: object; + links: Record; } export class NetworkAccessProfileInstance { @@ -296,7 +296,7 @@ export class NetworkAccessProfileInstance { * The absolute URL of the resource */ url: string; - links: object; + links: Record; private get _proxy(): NetworkAccessProfileContext { this._context = diff --git a/lib/rest/supersim/v1/sim.ts b/lib/rest/supersim/v1/sim.ts index 58a9f8adfd..4db062422b 100644 --- a/lib/rest/supersim/v1/sim.ts +++ b/lib/rest/supersim/v1/sim.ts @@ -286,7 +286,7 @@ interface SimResource { date_created: Date; date_updated: Date; url: string; - links: object; + links: Record; } export class SimInstance { @@ -341,7 +341,7 @@ export class SimInstance { * The absolute URL of the Sim Resource */ url: string; - links: object; + links: Record; private get _proxy(): SimContext { this._context = diff --git a/lib/rest/sync/v1/service.ts b/lib/rest/sync/v1/service.ts index 0eb0730ff6..e06a5a668e 100644 --- a/lib/rest/sync/v1/service.ts +++ b/lib/rest/sync/v1/service.ts @@ -338,7 +338,7 @@ interface ServiceResource { acl_enabled: boolean; reachability_debouncing_enabled: boolean; reachability_debouncing_window: number; - links: object; + links: Record; } export class ServiceInstance { @@ -422,7 +422,7 @@ export class ServiceInstance { /** * The URLs of related resources */ - links: object; + links: Record; private get _proxy(): ServiceContext { this._context = diff --git a/lib/rest/sync/v1/service/document.ts b/lib/rest/sync/v1/service/document.ts index 5cb06fdbac..05028c4652 100644 --- a/lib/rest/sync/v1/service/document.ts +++ b/lib/rest/sync/v1/service/document.ts @@ -288,7 +288,7 @@ interface DocumentResource { account_sid: string; service_sid: string; url: string; - links: object; + links: Record; revision: string; data: any; date_expires: Date; @@ -346,7 +346,7 @@ export class DocumentInstance { /** * The URLs of resources related to the Sync Document */ - links: object; + links: Record; /** * The current revision of the Sync Document, represented by a string identifier */ diff --git a/lib/rest/sync/v1/service/syncList.ts b/lib/rest/sync/v1/service/syncList.ts index 1aa8461aa6..78c5c54259 100644 --- a/lib/rest/sync/v1/service/syncList.ts +++ b/lib/rest/sync/v1/service/syncList.ts @@ -298,7 +298,7 @@ interface SyncListResource { account_sid: string; service_sid: string; url: string; - links: object; + links: Record; revision: string; date_expires: Date; date_created: Date; @@ -354,7 +354,7 @@ export class SyncListInstance { /** * The URLs of the Sync List\'s nested resources */ - links: object; + links: Record; /** * The current revision of the Sync List, represented as a string */ diff --git a/lib/rest/sync/v1/service/syncMap.ts b/lib/rest/sync/v1/service/syncMap.ts index da33d99201..ffeb07f5e3 100644 --- a/lib/rest/sync/v1/service/syncMap.ts +++ b/lib/rest/sync/v1/service/syncMap.ts @@ -298,7 +298,7 @@ interface SyncMapResource { account_sid: string; service_sid: string; url: string; - links: object; + links: Record; revision: string; date_expires: Date; date_created: Date; @@ -354,7 +354,7 @@ export class SyncMapInstance { /** * The URLs of the Sync Map\'s nested resources */ - links: object; + links: Record; /** * The current revision of the Sync Map, represented as a string */ diff --git a/lib/rest/sync/v1/service/syncStream.ts b/lib/rest/sync/v1/service/syncStream.ts index 2c6b0f899c..01b3b87887 100644 --- a/lib/rest/sync/v1/service/syncStream.ts +++ b/lib/rest/sync/v1/service/syncStream.ts @@ -278,7 +278,7 @@ interface SyncStreamResource { account_sid: string; service_sid: string; url: string; - links: object; + links: Record; date_expires: Date; date_created: Date; date_updated: Date; @@ -332,7 +332,7 @@ export class SyncStreamInstance { /** * The URLs of the Stream\'s nested resources */ - links: object; + links: Record; /** * The ISO 8601 date and time in GMT when the Message Stream expires */ diff --git a/lib/rest/taskrouter/v1/workspace.ts b/lib/rest/taskrouter/v1/workspace.ts index 728f4921f6..2a267391f6 100644 --- a/lib/rest/taskrouter/v1/workspace.ts +++ b/lib/rest/taskrouter/v1/workspace.ts @@ -402,7 +402,7 @@ interface WorkspaceResource { timeout_activity_sid: string; prioritize_queue_order: WorkspaceQueueOrder; url: string; - links: object; + links: Record; } export class WorkspaceInstance { @@ -489,7 +489,7 @@ export class WorkspaceInstance { /** * The URLs of related resources */ - links: object; + links: Record; private get _proxy(): WorkspaceContext { this._context = diff --git a/lib/rest/taskrouter/v1/workspace/activity.ts b/lib/rest/taskrouter/v1/workspace/activity.ts index 8a4412584b..01beac7d53 100644 --- a/lib/rest/taskrouter/v1/workspace/activity.ts +++ b/lib/rest/taskrouter/v1/workspace/activity.ts @@ -278,7 +278,7 @@ interface ActivityResource { sid: string; workspace_sid: string; url: string; - links: object; + links: Record; } export class ActivityInstance { @@ -336,7 +336,7 @@ export class ActivityInstance { * The absolute URL of the Activity resource */ url: string; - links: object; + links: Record; private get _proxy(): ActivityContext { this._context = diff --git a/lib/rest/taskrouter/v1/workspace/task.ts b/lib/rest/taskrouter/v1/workspace/task.ts index c282b9eb7b..1d126b7323 100644 --- a/lib/rest/taskrouter/v1/workspace/task.ts +++ b/lib/rest/taskrouter/v1/workspace/task.ts @@ -418,7 +418,7 @@ interface TaskResource { workflow_friendly_name: string; workspace_sid: string; url: string; - links: object; + links: Record; } export class TaskInstance { @@ -538,7 +538,7 @@ export class TaskInstance { /** * The URLs of related resources */ - links: object; + links: Record; private get _proxy(): TaskContext { this._context = diff --git a/lib/rest/taskrouter/v1/workspace/task/reservation.ts b/lib/rest/taskrouter/v1/workspace/task/reservation.ts index 7775564551..d3b4540816 100644 --- a/lib/rest/taskrouter/v1/workspace/task/reservation.ts +++ b/lib/rest/taskrouter/v1/workspace/task/reservation.ts @@ -505,7 +505,7 @@ interface ReservationResource { worker_sid: string; workspace_sid: string; url: string; - links: object; + links: Record; } export class ReservationInstance { @@ -574,7 +574,7 @@ export class ReservationInstance { /** * The URLs of related resources */ - links: object; + links: Record; private get _proxy(): ReservationContext { this._context = diff --git a/lib/rest/taskrouter/v1/workspace/taskChannel.ts b/lib/rest/taskrouter/v1/workspace/taskChannel.ts index 337872b038..ce678e3013 100644 --- a/lib/rest/taskrouter/v1/workspace/taskChannel.ts +++ b/lib/rest/taskrouter/v1/workspace/taskChannel.ts @@ -275,7 +275,7 @@ interface TaskChannelResource { workspace_sid: string; channel_optimized_routing: boolean; url: string; - links: object; + links: Record; } export class TaskChannelInstance { @@ -341,7 +341,7 @@ export class TaskChannelInstance { /** * The URLs of related resources */ - links: object; + links: Record; private get _proxy(): TaskChannelContext { this._context = diff --git a/lib/rest/taskrouter/v1/workspace/taskQueue.ts b/lib/rest/taskrouter/v1/workspace/taskQueue.ts index 48d07da3c1..32d512877f 100644 --- a/lib/rest/taskrouter/v1/workspace/taskQueue.ts +++ b/lib/rest/taskrouter/v1/workspace/taskQueue.ts @@ -371,7 +371,7 @@ interface TaskQueueResource { task_order: TaskQueueTaskOrder; url: string; workspace_sid: string; - links: object; + links: Record; } export class TaskQueueInstance { @@ -459,7 +459,7 @@ export class TaskQueueInstance { /** * The URLs of related resources */ - links: object; + links: Record; private get _proxy(): TaskQueueContext { this._context = diff --git a/lib/rest/taskrouter/v1/workspace/worker.ts b/lib/rest/taskrouter/v1/workspace/worker.ts index 7c1b085820..296625d7dc 100644 --- a/lib/rest/taskrouter/v1/workspace/worker.ts +++ b/lib/rest/taskrouter/v1/workspace/worker.ts @@ -423,7 +423,7 @@ interface WorkerResource { sid: string; workspace_sid: string; url: string; - links: object; + links: Record; } export class WorkerInstance { @@ -506,7 +506,7 @@ export class WorkerInstance { /** * The URLs of related resources */ - links: object; + links: Record; private get _proxy(): WorkerContext { this._context = diff --git a/lib/rest/taskrouter/v1/workspace/worker/reservation.ts b/lib/rest/taskrouter/v1/workspace/worker/reservation.ts index 772e65bf67..121e4725d7 100644 --- a/lib/rest/taskrouter/v1/workspace/worker/reservation.ts +++ b/lib/rest/taskrouter/v1/workspace/worker/reservation.ts @@ -489,7 +489,7 @@ interface ReservationResource { worker_sid: string; workspace_sid: string; url: string; - links: object; + links: Record; } export class ReservationInstance { @@ -558,7 +558,7 @@ export class ReservationInstance { /** * The URLs of related resources */ - links: object; + links: Record; private get _proxy(): ReservationContext { this._context = diff --git a/lib/rest/taskrouter/v1/workspace/workflow.ts b/lib/rest/taskrouter/v1/workspace/workflow.ts index 01270ed9cb..a586bcacd5 100644 --- a/lib/rest/taskrouter/v1/workspace/workflow.ts +++ b/lib/rest/taskrouter/v1/workspace/workflow.ts @@ -347,7 +347,7 @@ interface WorkflowResource { task_reservation_timeout: number; workspace_sid: string; url: string; - links: object; + links: Record; } export class WorkflowInstance { @@ -431,7 +431,7 @@ export class WorkflowInstance { /** * The URLs of related resources */ - links: object; + links: Record; private get _proxy(): WorkflowContext { this._context = diff --git a/lib/rest/trunking/v1/trunk.ts b/lib/rest/trunking/v1/trunk.ts index 0bbaafa7fd..851d882053 100644 --- a/lib/rest/trunking/v1/trunk.ts +++ b/lib/rest/trunking/v1/trunk.ts @@ -363,7 +363,7 @@ interface TrunkResource { date_updated: Date; sid: string; url: string; - links: object; + links: Record; } export class TrunkInstance { @@ -453,7 +453,7 @@ export class TrunkInstance { /** * The URLs of related resources */ - links: object; + links: Record; private get _proxy(): TrunkContext { this._context = diff --git a/lib/rest/trunking/v1/trunk/phoneNumber.ts b/lib/rest/trunking/v1/trunk/phoneNumber.ts index 0921856e51..b5335caf8a 100644 --- a/lib/rest/trunking/v1/trunk/phoneNumber.ts +++ b/lib/rest/trunking/v1/trunk/phoneNumber.ts @@ -220,11 +220,11 @@ interface PhoneNumberResource { address_requirements: PhoneNumberAddressRequirement; api_version: string; beta: boolean; - capabilities: object; + capabilities: Record; date_created: Date; date_updated: Date; friendly_name: string; - links: object; + links: Record; phone_number: string; sid: string; sms_application_sid: string; @@ -300,7 +300,7 @@ export class PhoneNumberInstance { /** * Indicate if a phone can receive calls or messages */ - capabilities: object; + capabilities: Record; /** * The RFC 2822 date and time in GMT when the resource was created */ @@ -316,7 +316,7 @@ export class PhoneNumberInstance { /** * The URLs of related resources */ - links: object; + links: Record; /** * The phone number in E.164 format */ diff --git a/lib/rest/trusthub/v1/customerProfiles.ts b/lib/rest/trusthub/v1/customerProfiles.ts index 3a1f6c3a2f..1d90828380 100644 --- a/lib/rest/trusthub/v1/customerProfiles.ts +++ b/lib/rest/trusthub/v1/customerProfiles.ts @@ -345,7 +345,7 @@ interface CustomerProfilesResource { date_created: Date; date_updated: Date; url: string; - links: object; + links: Record; } export class CustomerProfilesInstance { @@ -417,7 +417,7 @@ export class CustomerProfilesInstance { /** * The URLs of the Assigned Items of the Customer-Profile resource */ - links: object; + links: Record; private get _proxy(): CustomerProfilesContext { this._context = diff --git a/lib/rest/trusthub/v1/trustProducts.ts b/lib/rest/trusthub/v1/trustProducts.ts index 6160ef312b..ff32b6aac9 100644 --- a/lib/rest/trusthub/v1/trustProducts.ts +++ b/lib/rest/trusthub/v1/trustProducts.ts @@ -339,7 +339,7 @@ interface TrustProductsResource { date_created: Date; date_updated: Date; url: string; - links: object; + links: Record; } export class TrustProductsInstance { @@ -411,7 +411,7 @@ export class TrustProductsInstance { /** * The URLs of the Assigned Items of the Customer-Profile resource */ - links: object; + links: Record; private get _proxy(): TrustProductsContext { this._context = diff --git a/lib/rest/verify/v2/service.ts b/lib/rest/verify/v2/service.ts index 101828216c..d7758579d6 100644 --- a/lib/rest/verify/v2/service.ts +++ b/lib/rest/verify/v2/service.ts @@ -425,7 +425,7 @@ interface ServiceResource { date_created: Date; date_updated: Date; url: string; - links: object; + links: Record; } export class ServiceInstance { @@ -523,7 +523,7 @@ export class ServiceInstance { /** * The URLs of related resources */ - links: object; + links: Record; private get _proxy(): ServiceContext { this._context = diff --git a/lib/rest/verify/v2/service/entity.ts b/lib/rest/verify/v2/service/entity.ts index 34a7af6d79..04146ed1dd 100644 --- a/lib/rest/verify/v2/service/entity.ts +++ b/lib/rest/verify/v2/service/entity.ts @@ -229,7 +229,7 @@ interface EntityResource { date_created: Date; date_updated: Date; url: string; - links: object; + links: Record; } export class EntityInstance { @@ -285,7 +285,7 @@ export class EntityInstance { /** * Nested resource URLs. */ - links: object; + links: Record; private get _proxy(): EntityContext { this._context = diff --git a/lib/rest/verify/v2/service/entity/challenge.ts b/lib/rest/verify/v2/service/entity/challenge.ts index d1641942bf..ffb25006e8 100644 --- a/lib/rest/verify/v2/service/entity/challenge.ts +++ b/lib/rest/verify/v2/service/entity/challenge.ts @@ -314,7 +314,7 @@ interface ChallengeResource { metadata: any; factor_type: ChallengeFactorTypes; url: string; - links: object; + links: Record; } export class ChallengeInstance { @@ -412,7 +412,7 @@ export class ChallengeInstance { /** * Nested resource URLs. */ - links: object; + links: Record; private get _proxy(): ChallengeContext { this._context = diff --git a/lib/rest/verify/v2/service/rateLimit.ts b/lib/rest/verify/v2/service/rateLimit.ts index fba1735464..620cfcaead 100644 --- a/lib/rest/verify/v2/service/rateLimit.ts +++ b/lib/rest/verify/v2/service/rateLimit.ts @@ -282,7 +282,7 @@ interface RateLimitResource { date_created: Date; date_updated: Date; url: string; - links: object; + links: Record; } export class RateLimitInstance { @@ -343,7 +343,7 @@ export class RateLimitInstance { /** * The URLs of related resources */ - links: object; + links: Record; private get _proxy(): RateLimitContext { this._context = diff --git a/lib/rest/video/v1/composition.ts b/lib/rest/video/v1/composition.ts index 8efa43e807..e194508831 100644 --- a/lib/rest/video/v1/composition.ts +++ b/lib/rest/video/v1/composition.ts @@ -249,7 +249,7 @@ interface CompositionResource { status_callback: string; status_callback_method: CompositionStatusCallbackMethod; url: string; - links: object; + links: Record; } export class CompositionInstance { @@ -363,7 +363,7 @@ export class CompositionInstance { /** * The URL of the media file associated with the composition */ - links: object; + links: Record; private get _proxy(): CompositionContext { this._context = diff --git a/lib/rest/video/v1/recording.ts b/lib/rest/video/v1/recording.ts index 1b3e100a7e..bf6248b843 100644 --- a/lib/rest/video/v1/recording.ts +++ b/lib/rest/video/v1/recording.ts @@ -230,7 +230,7 @@ interface RecordingResource { media_external_location: string; status_callback: string; status_callback_method: RecordingStatusCallbackMethod; - links: object; + links: Record; } export class RecordingInstance { @@ -323,7 +323,7 @@ export class RecordingInstance { /** * The URLs of related resources */ - links: object; + links: Record; private get _proxy(): RecordingContext { this._context = diff --git a/lib/rest/video/v1/room.ts b/lib/rest/video/v1/room.ts index 0403066cac..95e381555d 100644 --- a/lib/rest/video/v1/room.ts +++ b/lib/rest/video/v1/room.ts @@ -324,7 +324,7 @@ interface RoomResource { unused_room_timeout: number; large_room: boolean; url: string; - links: object; + links: Record; } export class RoomInstance { @@ -453,7 +453,7 @@ export class RoomInstance { /** * The URLs of related resources */ - links: object; + links: Record; private get _proxy(): RoomContext { this._context = diff --git a/lib/rest/video/v1/room/participant.ts b/lib/rest/video/v1/room/participant.ts index ba899dcfd8..9302803da6 100644 --- a/lib/rest/video/v1/room/participant.ts +++ b/lib/rest/video/v1/room/participant.ts @@ -314,7 +314,7 @@ interface ParticipantResource { end_time: Date; duration: number; url: string; - links: object; + links: Record; } export class ParticipantInstance { @@ -387,7 +387,7 @@ export class ParticipantInstance { /** * The URLs of related resources */ - links: object; + links: Record; private get _proxy(): ParticipantContext { this._context = diff --git a/lib/rest/video/v1/room/roomRecording.ts b/lib/rest/video/v1/room/roomRecording.ts index c99bb6c95a..c27ea3b7ff 100644 --- a/lib/rest/video/v1/room/roomRecording.ts +++ b/lib/rest/video/v1/room/roomRecording.ts @@ -219,7 +219,7 @@ interface RoomRecordingResource { offset: number; media_external_location: string; room_sid: string; - links: object; + links: Record; } export class RoomRecordingInstance { @@ -308,7 +308,7 @@ export class RoomRecordingInstance { /** * The URLs of related resources */ - links: object; + links: Record; private get _proxy(): RoomRecordingContext { this._context = diff --git a/lib/rest/voice/v1/connectionPolicy.ts b/lib/rest/voice/v1/connectionPolicy.ts index f70e5ccd4b..63e8b1d566 100644 --- a/lib/rest/voice/v1/connectionPolicy.ts +++ b/lib/rest/voice/v1/connectionPolicy.ts @@ -270,7 +270,7 @@ interface ConnectionPolicyResource { date_created: Date; date_updated: Date; url: string; - links: object; + links: Record; } export class ConnectionPolicyInstance { @@ -320,7 +320,7 @@ export class ConnectionPolicyInstance { /** * The URLs of related resources */ - links: object; + links: Record; private get _proxy(): ConnectionPolicyContext { this._context = diff --git a/lib/rest/voice/v1/dialingPermissions/country.ts b/lib/rest/voice/v1/dialingPermissions/country.ts index 42c5f83b87..d0e45968a4 100644 --- a/lib/rest/voice/v1/dialingPermissions/country.ts +++ b/lib/rest/voice/v1/dialingPermissions/country.ts @@ -193,7 +193,7 @@ interface CountryResource { high_risk_special_numbers_enabled: boolean; high_risk_tollfraud_numbers_enabled: boolean; url: string; - links: object; + links: Record; } export class CountryInstance { @@ -255,7 +255,7 @@ export class CountryInstance { /** * A list of URLs related to this resource */ - links: object; + links: Record; private get _proxy(): CountryContext { this._context = diff --git a/lib/rest/wireless/v1/sim.ts b/lib/rest/wireless/v1/sim.ts index fb7566bff4..2807d5ff47 100644 --- a/lib/rest/wireless/v1/sim.ts +++ b/lib/rest/wireless/v1/sim.ts @@ -413,7 +413,7 @@ interface SimResource { date_created: Date; date_updated: Date; url: string; - links: object; + links: Record; ip_address: string; } @@ -535,7 +535,7 @@ export class SimInstance { /** * The URLs of related subresources */ - links: object; + links: Record; /** * Deprecated */