Auto-commit 2026-04-29 16:31

This commit is contained in:
2026-04-29 16:31:27 -04:00
parent e8687bb6b2
commit 0495ee5bd2
19691 changed files with 3272886 additions and 138 deletions

19
node_modules/twilio/lib/rest/Accounts.d.ts generated vendored Normal file
View File

@@ -0,0 +1,19 @@
import { AuthTokenPromotionListInstance } from "./accounts/v1/authTokenPromotion";
import { CredentialListInstance } from "./accounts/v1/credential";
import { SecondaryAuthTokenListInstance } from "./accounts/v1/secondaryAuthToken";
import AccountsBase from "./AccountsBase";
declare class Accounts extends AccountsBase {
/**
* @deprecated - Use v1.authTokenPromotion; instead
*/
get authTokenPromotion(): AuthTokenPromotionListInstance;
/**
* @deprecated - Use v1.credentials; instead
*/
get credentials(): CredentialListInstance;
/**
* @deprecated - Use v1.secondaryAuthToken; instead
*/
get secondaryAuthToken(): SecondaryAuthTokenListInstance;
}
export = Accounts;

29
node_modules/twilio/lib/rest/Accounts.js generated vendored Normal file
View File

@@ -0,0 +1,29 @@
"use strict";
var __importDefault = (this && this.__importDefault) || function (mod) {
return (mod && mod.__esModule) ? mod : { "default": mod };
};
const AccountsBase_1 = __importDefault(require("./AccountsBase"));
class Accounts extends AccountsBase_1.default {
/**
* @deprecated - Use v1.authTokenPromotion; instead
*/
get authTokenPromotion() {
console.warn("authTokenPromotion is deprecated. Use v1.authTokenPromotion; instead.");
return this.v1.authTokenPromotion;
}
/**
* @deprecated - Use v1.credentials; instead
*/
get credentials() {
console.warn("credentials is deprecated. Use v1.credentials; instead.");
return this.v1.credentials;
}
/**
* @deprecated - Use v1.secondaryAuthToken; instead
*/
get secondaryAuthToken() {
console.warn("secondaryAuthToken is deprecated. Use v1.secondaryAuthToken; instead.");
return this.v1.secondaryAuthToken;
}
}
module.exports = Accounts;

13
node_modules/twilio/lib/rest/AccountsBase.d.ts generated vendored Normal file
View File

@@ -0,0 +1,13 @@
import Domain from "../base/Domain";
import V1 from "./accounts/V1";
declare class AccountsBase extends Domain {
_v1?: V1;
/**
* Initialize accounts domain
*
* @param twilio - The twilio client
*/
constructor(twilio: any);
get v1(): V1;
}
export = AccountsBase;

31
node_modules/twilio/lib/rest/AccountsBase.js generated vendored Normal file
View File

@@ -0,0 +1,31 @@
"use strict";
/*
* This code was generated by
* ___ _ _ _ _ _ _ ____ ____ ____ _ ____ ____ _ _ ____ ____ ____ ___ __ __
* | | | | | | | | | __ | | |__| | __ | __ |___ |\ | |___ |__/ |__| | | | |__/
* | |_|_| | |___ | |__| |__| | | | |__] |___ | \| |___ | \ | | | |__| | \
*
* NOTE: This class is auto generated by OpenAPI Generator.
* https://openapi-generator.tech
* Do not edit the class manually.
*/
var __importDefault = (this && this.__importDefault) || function (mod) {
return (mod && mod.__esModule) ? mod : { "default": mod };
};
const Domain_1 = __importDefault(require("../base/Domain"));
const V1_1 = __importDefault(require("./accounts/V1"));
class AccountsBase extends Domain_1.default {
/**
* Initialize accounts domain
*
* @param twilio - The twilio client
*/
constructor(twilio) {
super(twilio, "https://accounts.twilio.com");
}
get v1() {
this._v1 = this._v1 || new V1_1.default(this);
return this._v1;
}
}
module.exports = AccountsBase;

127
node_modules/twilio/lib/rest/Api.d.ts generated vendored Normal file
View File

@@ -0,0 +1,127 @@
import { AccountContext, AccountListInstance } from "./api/v2010/account";
import { AddressListInstance } from "./api/v2010/account/address";
import { ApplicationListInstance } from "./api/v2010/account/application";
import { AuthorizedConnectAppListInstance } from "./api/v2010/account/authorizedConnectApp";
import { AvailablePhoneNumberCountryListInstance } from "./api/v2010/account/availablePhoneNumberCountry";
import { BalanceListInstance } from "./api/v2010/account/balance";
import { CallListInstance } from "./api/v2010/account/call";
import { ConferenceListInstance } from "./api/v2010/account/conference";
import { ConnectAppListInstance } from "./api/v2010/account/connectApp";
import { IncomingPhoneNumberListInstance } from "./api/v2010/account/incomingPhoneNumber";
import { KeyListInstance } from "./api/v2010/account/key";
import { MessageListInstance } from "./api/v2010/account/message";
import { NewKeyListInstance } from "./api/v2010/account/newKey";
import { NewSigningKeyListInstance } from "./api/v2010/account/newSigningKey";
import { NotificationListInstance } from "./api/v2010/account/notification";
import { OutgoingCallerIdListInstance } from "./api/v2010/account/outgoingCallerId";
import { QueueListInstance } from "./api/v2010/account/queue";
import { RecordingListInstance } from "./api/v2010/account/recording";
import { ShortCodeListInstance } from "./api/v2010/account/shortCode";
import { SigningKeyListInstance } from "./api/v2010/account/signingKey";
import { SipListInstance } from "./api/v2010/account/sip";
import { TokenListInstance } from "./api/v2010/account/token";
import { TranscriptionListInstance } from "./api/v2010/account/transcription";
import { UsageListInstance } from "./api/v2010/account/usage";
import { ValidationRequestListInstance } from "./api/v2010/account/validationRequest";
import ApiBase from "./ApiBase";
declare class Api extends ApiBase {
get account(): AccountContext;
get accounts(): AccountListInstance;
/**
* @deprecated - Use account.addresses instead
*/
get addresses(): AddressListInstance;
/**
* @deprecated - Use account.applications instead
*/
get applications(): ApplicationListInstance;
/**
* @deprecated - Use account.authorizedConnectApps instead
*/
get authorizedConnectApps(): AuthorizedConnectAppListInstance;
/**
* @deprecated - Use account.availablePhoneNumbers instead
*/
get availablePhoneNumbers(): AvailablePhoneNumberCountryListInstance;
/**
* @deprecated - Use account.balance instead
*/
get balance(): BalanceListInstance;
/**
* @deprecated - Use account.calls instead
*/
get calls(): CallListInstance;
/**
* @deprecated - Use account.conferences instead
*/
get conferences(): ConferenceListInstance;
/**
* @deprecated - Use account.connectApps instead
*/
get connectApps(): ConnectAppListInstance;
/**
* @deprecated - Use account.incomingPhoneNumbers instead
*/
get incomingPhoneNumbers(): IncomingPhoneNumberListInstance;
/**
* @deprecated - Use account.keys instead
*/
get keys(): KeyListInstance;
/**
* @deprecated - Use account.messages instead
*/
get messages(): MessageListInstance;
/**
* @deprecated - Use account.newKeys instead
*/
get newKeys(): NewKeyListInstance;
/**
* @deprecated - Use account.newSigningKeys instead
*/
get newSigningKeys(): NewSigningKeyListInstance;
/**
* @deprecated - Use account.notifications instead
*/
get notifications(): NotificationListInstance;
/**
* @deprecated - Use account.outgoingCallerIds instead
*/
get outgoingCallerIds(): OutgoingCallerIdListInstance;
/**
* @deprecated - Use account.queues instead
*/
get queues(): QueueListInstance;
/**
* @deprecated - Use account.recordings instead
*/
get recordings(): RecordingListInstance;
/**
* @deprecated - Use account.signingKeys instead
*/
get signingKeys(): SigningKeyListInstance;
/**
* @deprecated - Use account.sip instead
*/
get sip(): SipListInstance;
/**
* @deprecated - Use account.shortCodes instead
*/
get shortCodes(): ShortCodeListInstance;
/**
* @deprecated - Use account.tokens instead
*/
get tokens(): TokenListInstance;
/**
* @deprecated - Use account.transcriptions instead
*/
get transcriptions(): TranscriptionListInstance;
/**
* @deprecated - Use account.usage instead
*/
get usage(): UsageListInstance;
/**
* @deprecated - Use account.validationRequests instead
*/
get validationRequests(): ValidationRequestListInstance;
}
export = Api;

182
node_modules/twilio/lib/rest/Api.js generated vendored Normal file
View File

@@ -0,0 +1,182 @@
"use strict";
var __importDefault = (this && this.__importDefault) || function (mod) {
return (mod && mod.__esModule) ? mod : { "default": mod };
};
const ApiBase_1 = __importDefault(require("./ApiBase"));
class Api extends ApiBase_1.default {
get account() {
return this.v2010.account;
}
get accounts() {
return this.v2010.accounts;
}
/**
* @deprecated - Use account.addresses instead
*/
get addresses() {
console.warn("addresses is deprecated. Use account.addresses instead.");
return this.account.addresses;
}
/**
* @deprecated - Use account.applications instead
*/
get applications() {
console.warn("applications is deprecated. Use account.applications instead.");
return this.account.applications;
}
/**
* @deprecated - Use account.authorizedConnectApps instead
*/
get authorizedConnectApps() {
console.warn("authorizedConnectApps is deprecated. Use account.authorizedConnectApps instead.");
return this.account.authorizedConnectApps;
}
/**
* @deprecated - Use account.availablePhoneNumbers instead
*/
get availablePhoneNumbers() {
console.warn("availablePhoneNumbers is deprecated. Use account.availablePhoneNumbers instead.");
return this.account.availablePhoneNumbers;
}
/**
* @deprecated - Use account.balance instead
*/
get balance() {
console.warn("balance is deprecated. Use account.balance instead.");
return this.account.balance;
}
/**
* @deprecated - Use account.calls instead
*/
get calls() {
console.warn("calls is deprecated. Use account.calls instead.");
return this.account.calls;
}
/**
* @deprecated - Use account.conferences instead
*/
get conferences() {
console.warn("conferences is deprecated. Use account.conferences instead.");
return this.account.conferences;
}
/**
* @deprecated - Use account.connectApps instead
*/
get connectApps() {
console.warn("connectApps is deprecated. Use account.connectApps instead.");
return this.account.connectApps;
}
/**
* @deprecated - Use account.incomingPhoneNumbers instead
*/
get incomingPhoneNumbers() {
console.warn("incomingPhoneNumbers is deprecated. Use account.incomingPhoneNumbers instead.");
return this.account.incomingPhoneNumbers;
}
/**
* @deprecated - Use account.keys instead
*/
get keys() {
console.warn("keys is deprecated. Use account.keys instead.");
return this.account.keys;
}
/**
* @deprecated - Use account.messages instead
*/
get messages() {
console.warn("messages is deprecated. Use account.messages instead.");
return this.account.messages;
}
/**
* @deprecated - Use account.newKeys instead
*/
get newKeys() {
console.warn("newKeys is deprecated. Use account.newKeys instead.");
return this.account.newKeys;
}
/**
* @deprecated - Use account.newSigningKeys instead
*/
get newSigningKeys() {
console.warn("newSigningKeys is deprecated. Use account.newSigningKeys instead.");
return this.account.newSigningKeys;
}
/**
* @deprecated - Use account.notifications instead
*/
get notifications() {
console.warn("notifications is deprecated. Use account.notifications instead.");
return this.account.notifications;
}
/**
* @deprecated - Use account.outgoingCallerIds instead
*/
get outgoingCallerIds() {
console.warn("outgoingCallerIds is deprecated. Use account.outgoingCallerIds instead.");
return this.account.outgoingCallerIds;
}
/**
* @deprecated - Use account.queues instead
*/
get queues() {
console.warn("queues is deprecated. Use account.queues instead.");
return this.account.queues;
}
/**
* @deprecated - Use account.recordings instead
*/
get recordings() {
console.warn("recordings is deprecated. Use account.recordings instead.");
return this.account.recordings;
}
/**
* @deprecated - Use account.signingKeys instead
*/
get signingKeys() {
console.warn("signingKeys is deprecated. Use account.signingKeys instead.");
return this.account.signingKeys;
}
/**
* @deprecated - Use account.sip instead
*/
get sip() {
console.warn("sip is deprecated. Use account.sip instead.");
return this.account.sip;
}
/**
* @deprecated - Use account.shortCodes instead
*/
get shortCodes() {
console.warn("shortCodes is deprecated. Use account.shortCodes instead.");
return this.account.shortCodes;
}
/**
* @deprecated - Use account.tokens instead
*/
get tokens() {
console.warn("tokens is deprecated. Use account.tokens instead.");
return this.account.tokens;
}
/**
* @deprecated - Use account.transcriptions instead
*/
get transcriptions() {
console.warn("transcriptions is deprecated. Use account.transcriptions instead.");
return this.account.transcriptions;
}
/**
* @deprecated - Use account.usage instead
*/
get usage() {
console.warn("usage is deprecated. Use account.usage instead.");
return this.account.usage;
}
/**
* @deprecated - Use account.validationRequests instead
*/
get validationRequests() {
console.warn("validationRequests is deprecated. Use account.validationRequests instead.");
return this.account.validationRequests;
}
}
module.exports = Api;

13
node_modules/twilio/lib/rest/ApiBase.d.ts generated vendored Normal file
View File

@@ -0,0 +1,13 @@
import Domain from "../base/Domain";
import V2010 from "./api/V2010";
declare class ApiBase extends Domain {
_v2010?: V2010;
/**
* Initialize api domain
*
* @param twilio - The twilio client
*/
constructor(twilio: any);
get v2010(): V2010;
}
export = ApiBase;

31
node_modules/twilio/lib/rest/ApiBase.js generated vendored Normal file
View File

@@ -0,0 +1,31 @@
"use strict";
/*
* This code was generated by
* ___ _ _ _ _ _ _ ____ ____ ____ _ ____ ____ _ _ ____ ____ ____ ___ __ __
* | | | | | | | | | __ | | |__| | __ | __ |___ |\ | |___ |__/ |__| | | | |__/
* | |_|_| | |___ | |__| |__| | | | |__] |___ | \| |___ | \ | | | |__| | \
*
* NOTE: This class is auto generated by OpenAPI Generator.
* https://openapi-generator.tech
* Do not edit the class manually.
*/
var __importDefault = (this && this.__importDefault) || function (mod) {
return (mod && mod.__esModule) ? mod : { "default": mod };
};
const Domain_1 = __importDefault(require("../base/Domain"));
const V2010_1 = __importDefault(require("./api/V2010"));
class ApiBase extends Domain_1.default {
/**
* Initialize api domain
*
* @param twilio - The twilio client
*/
constructor(twilio) {
super(twilio, "https://api.twilio.com");
}
get v2010() {
this._v2010 = this._v2010 || new V2010_1.default(this);
return this._v2010;
}
}
module.exports = ApiBase;

4
node_modules/twilio/lib/rest/Assistants.d.ts generated vendored Normal file
View File

@@ -0,0 +1,4 @@
import AssistantsBase from "./AssistantsBase";
declare class Assistants extends AssistantsBase {
}
export = Assistants;

8
node_modules/twilio/lib/rest/Assistants.js generated vendored Normal file
View File

@@ -0,0 +1,8 @@
"use strict";
var __importDefault = (this && this.__importDefault) || function (mod) {
return (mod && mod.__esModule) ? mod : { "default": mod };
};
const AssistantsBase_1 = __importDefault(require("./AssistantsBase"));
class Assistants extends AssistantsBase_1.default {
}
module.exports = Assistants;

13
node_modules/twilio/lib/rest/AssistantsBase.d.ts generated vendored Normal file
View File

@@ -0,0 +1,13 @@
import Domain from "../base/Domain";
import V1 from "./assistants/V1";
declare class AssistantsBase extends Domain {
_v1?: V1;
/**
* Initialize assistants domain
*
* @param twilio - The twilio client
*/
constructor(twilio: any);
get v1(): V1;
}
export = AssistantsBase;

31
node_modules/twilio/lib/rest/AssistantsBase.js generated vendored Normal file
View File

@@ -0,0 +1,31 @@
"use strict";
/*
* This code was generated by
* ___ _ _ _ _ _ _ ____ ____ ____ _ ____ ____ _ _ ____ ____ ____ ___ __ __
* | | | | | | | | | __ | | |__| | __ | __ |___ |\ | |___ |__/ |__| | | | |__/
* | |_|_| | |___ | |__| |__| | | | |__] |___ | \| |___ | \ | | | |__| | \
*
* NOTE: This class is auto generated by OpenAPI Generator.
* https://openapi-generator.tech
* Do not edit the class manually.
*/
var __importDefault = (this && this.__importDefault) || function (mod) {
return (mod && mod.__esModule) ? mod : { "default": mod };
};
const Domain_1 = __importDefault(require("../base/Domain"));
const V1_1 = __importDefault(require("./assistants/V1"));
class AssistantsBase extends Domain_1.default {
/**
* Initialize assistants domain
*
* @param twilio - The twilio client
*/
constructor(twilio) {
super(twilio, "https://assistants.twilio.com");
}
get v1() {
this._v1 = this._v1 || new V1_1.default(this);
return this._v1;
}
}
module.exports = AssistantsBase;

14
node_modules/twilio/lib/rest/Bulkexports.d.ts generated vendored Normal file
View File

@@ -0,0 +1,14 @@
import { ExportListInstance } from "./bulkexports/v1/export";
import { ExportConfigurationListInstance } from "./bulkexports/v1/exportConfiguration";
import BulkexportsBase from "./BulkexportsBase";
declare class Bulkexports extends BulkexportsBase {
/**
* @deprecated - Use v1.exports instead
*/
get exports(): ExportListInstance;
/**
* @deprecated - Use v1.exportConfiguration instead
*/
get exportConfiguration(): ExportConfigurationListInstance;
}
export = Bulkexports;

22
node_modules/twilio/lib/rest/Bulkexports.js generated vendored Normal file
View File

@@ -0,0 +1,22 @@
"use strict";
var __importDefault = (this && this.__importDefault) || function (mod) {
return (mod && mod.__esModule) ? mod : { "default": mod };
};
const BulkexportsBase_1 = __importDefault(require("./BulkexportsBase"));
class Bulkexports extends BulkexportsBase_1.default {
/**
* @deprecated - Use v1.exports instead
*/
get exports() {
console.warn("exports is deprecated. Use v1.exports instead.");
return this.v1.exports;
}
/**
* @deprecated - Use v1.exportConfiguration instead
*/
get exportConfiguration() {
console.warn("exportConfiguration is deprecated. Use v1.exportConfiguration instead.");
return this.v1.exportConfiguration;
}
}
module.exports = Bulkexports;

13
node_modules/twilio/lib/rest/BulkexportsBase.d.ts generated vendored Normal file
View File

@@ -0,0 +1,13 @@
import Domain from "../base/Domain";
import V1 from "./bulkexports/V1";
declare class BulkexportsBase extends Domain {
_v1?: V1;
/**
* Initialize bulkexports domain
*
* @param twilio - The twilio client
*/
constructor(twilio: any);
get v1(): V1;
}
export = BulkexportsBase;

31
node_modules/twilio/lib/rest/BulkexportsBase.js generated vendored Normal file
View File

@@ -0,0 +1,31 @@
"use strict";
/*
* This code was generated by
* ___ _ _ _ _ _ _ ____ ____ ____ _ ____ ____ _ _ ____ ____ ____ ___ __ __
* | | | | | | | | | __ | | |__| | __ | __ |___ |\ | |___ |__/ |__| | | | |__/
* | |_|_| | |___ | |__| |__| | | | |__] |___ | \| |___ | \ | | | |__| | \
*
* NOTE: This class is auto generated by OpenAPI Generator.
* https://openapi-generator.tech
* Do not edit the class manually.
*/
var __importDefault = (this && this.__importDefault) || function (mod) {
return (mod && mod.__esModule) ? mod : { "default": mod };
};
const Domain_1 = __importDefault(require("../base/Domain"));
const V1_1 = __importDefault(require("./bulkexports/V1"));
class BulkexportsBase extends Domain_1.default {
/**
* Initialize bulkexports domain
*
* @param twilio - The twilio client
*/
constructor(twilio) {
super(twilio, "https://bulkexports.twilio.com");
}
get v1() {
this._v1 = this._v1 || new V1_1.default(this);
return this._v1;
}
}
module.exports = BulkexportsBase;

19
node_modules/twilio/lib/rest/Chat.d.ts generated vendored Normal file
View File

@@ -0,0 +1,19 @@
import { CredentialListInstance } from "./chat/v2/credential";
import { ServiceListInstance } from "./chat/v2/service";
import { ChannelListInstance } from "./chat/v3/channel";
import ChatBase from "./ChatBase";
declare class Chat extends ChatBase {
/**
* @deprecated - Use v2.credentials instead
*/
get credentials(): CredentialListInstance;
/**
* @deprecated - Use v2.services instead
*/
get services(): ServiceListInstance;
/**
* @deprecated - Use v3.channels instead
*/
get channels(): ChannelListInstance;
}
export = Chat;

29
node_modules/twilio/lib/rest/Chat.js generated vendored Normal file
View File

@@ -0,0 +1,29 @@
"use strict";
var __importDefault = (this && this.__importDefault) || function (mod) {
return (mod && mod.__esModule) ? mod : { "default": mod };
};
const ChatBase_1 = __importDefault(require("./ChatBase"));
class Chat extends ChatBase_1.default {
/**
* @deprecated - Use v2.credentials instead
*/
get credentials() {
console.warn("credentials is deprecated. Use v2.credentials instead.");
return this.v2.credentials;
}
/**
* @deprecated - Use v2.services instead
*/
get services() {
console.warn("services is deprecated. Use v2.services instead.");
return this.v2.services;
}
/**
* @deprecated - Use v3.channels instead
*/
get channels() {
console.warn("channels is deprecated. Use v3.channels instead.");
return this.v3.channels;
}
}
module.exports = Chat;

19
node_modules/twilio/lib/rest/ChatBase.d.ts generated vendored Normal file
View File

@@ -0,0 +1,19 @@
import Domain from "../base/Domain";
import V1 from "./chat/V1";
import V2 from "./chat/V2";
import V3 from "./chat/V3";
declare class ChatBase extends Domain {
_v1?: V1;
_v2?: V2;
_v3?: V3;
/**
* Initialize chat domain
*
* @param twilio - The twilio client
*/
constructor(twilio: any);
get v1(): V1;
get v2(): V2;
get v3(): V3;
}
export = ChatBase;

41
node_modules/twilio/lib/rest/ChatBase.js generated vendored Normal file
View File

@@ -0,0 +1,41 @@
"use strict";
/*
* This code was generated by
* ___ _ _ _ _ _ _ ____ ____ ____ _ ____ ____ _ _ ____ ____ ____ ___ __ __
* | | | | | | | | | __ | | |__| | __ | __ |___ |\ | |___ |__/ |__| | | | |__/
* | |_|_| | |___ | |__| |__| | | | |__] |___ | \| |___ | \ | | | |__| | \
*
* NOTE: This class is auto generated by OpenAPI Generator.
* https://openapi-generator.tech
* Do not edit the class manually.
*/
var __importDefault = (this && this.__importDefault) || function (mod) {
return (mod && mod.__esModule) ? mod : { "default": mod };
};
const Domain_1 = __importDefault(require("../base/Domain"));
const V1_1 = __importDefault(require("./chat/V1"));
const V2_1 = __importDefault(require("./chat/V2"));
const V3_1 = __importDefault(require("./chat/V3"));
class ChatBase extends Domain_1.default {
/**
* Initialize chat domain
*
* @param twilio - The twilio client
*/
constructor(twilio) {
super(twilio, "https://chat.twilio.com");
}
get v1() {
this._v1 = this._v1 || new V1_1.default(this);
return this._v1;
}
get v2() {
this._v2 = this._v2 || new V2_1.default(this);
return this._v2;
}
get v3() {
this._v3 = this._v3 || new V3_1.default(this);
return this._v3;
}
}
module.exports = ChatBase;

9
node_modules/twilio/lib/rest/Content.d.ts generated vendored Normal file
View File

@@ -0,0 +1,9 @@
import ContentBase from "./ContentBase";
import { ContentListInstance } from "./content/v1/content";
declare class Content extends ContentBase {
/**
* @deprecated - Use v1.contents instead
*/
get contents(): ContentListInstance;
}
export = Content;

15
node_modules/twilio/lib/rest/Content.js generated vendored Normal file
View File

@@ -0,0 +1,15 @@
"use strict";
var __importDefault = (this && this.__importDefault) || function (mod) {
return (mod && mod.__esModule) ? mod : { "default": mod };
};
const ContentBase_1 = __importDefault(require("./ContentBase"));
class Content extends ContentBase_1.default {
/**
* @deprecated - Use v1.contents instead
*/
get contents() {
console.warn("contents is deprecated. Use v1.contents instead.");
return this.v1.contents;
}
}
module.exports = Content;

16
node_modules/twilio/lib/rest/ContentBase.d.ts generated vendored Normal file
View File

@@ -0,0 +1,16 @@
import Domain from "../base/Domain";
import V1 from "./content/V1";
import V2 from "./content/V2";
declare class ContentBase extends Domain {
_v1?: V1;
_v2?: V2;
/**
* Initialize content domain
*
* @param twilio - The twilio client
*/
constructor(twilio: any);
get v1(): V1;
get v2(): V2;
}
export = ContentBase;

36
node_modules/twilio/lib/rest/ContentBase.js generated vendored Normal file
View File

@@ -0,0 +1,36 @@
"use strict";
/*
* This code was generated by
* ___ _ _ _ _ _ _ ____ ____ ____ _ ____ ____ _ _ ____ ____ ____ ___ __ __
* | | | | | | | | | __ | | |__| | __ | __ |___ |\ | |___ |__/ |__| | | | |__/
* | |_|_| | |___ | |__| |__| | | | |__] |___ | \| |___ | \ | | | |__| | \
*
* NOTE: This class is auto generated by OpenAPI Generator.
* https://openapi-generator.tech
* Do not edit the class manually.
*/
var __importDefault = (this && this.__importDefault) || function (mod) {
return (mod && mod.__esModule) ? mod : { "default": mod };
};
const Domain_1 = __importDefault(require("../base/Domain"));
const V1_1 = __importDefault(require("./content/V1"));
const V2_1 = __importDefault(require("./content/V2"));
class ContentBase extends Domain_1.default {
/**
* Initialize content domain
*
* @param twilio - The twilio client
*/
constructor(twilio) {
super(twilio, "https://content.twilio.com");
}
get v1() {
this._v1 = this._v1 || new V1_1.default(this);
return this._v1;
}
get v2() {
this._v2 = this._v2 || new V2_1.default(this);
return this._v2;
}
}
module.exports = ContentBase;

44
node_modules/twilio/lib/rest/Conversations.d.ts generated vendored Normal file
View File

@@ -0,0 +1,44 @@
import { AddressConfigurationListInstance } from "./conversations/v1/addressConfiguration";
import { ConfigurationListInstance } from "./conversations/v1/configuration";
import { ConversationListInstance } from "./conversations/v1/conversation";
import { CredentialListInstance } from "./conversations/v1/credential";
import { ParticipantConversationListInstance } from "./conversations/v1/participantConversation";
import { RoleListInstance } from "./conversations/v1/role";
import { ServiceListInstance } from "./conversations/v1/service";
import { UserListInstance } from "./conversations/v1/user";
import ConversationsBase from "./ConversationsBase";
declare class Conversations extends ConversationsBase {
/**
* @deprecated - Use v1.configuration instead
*/
get configuration(): ConfigurationListInstance;
/**
* @deprecated - Use v1.addressConfigurations instead
*/
get addressConfigurations(): AddressConfigurationListInstance;
/**
* @deprecated - Use v1.conversations instead
*/
get conversations(): ConversationListInstance;
/**
* @deprecated - Use v1.credentials instead
*/
get credentials(): CredentialListInstance;
/**
* @deprecated - Use v1.participantConversations instead
*/
get participantConversations(): ParticipantConversationListInstance;
/**
* @deprecated - Use v1.roles instead
*/
get roles(): RoleListInstance;
/**
* @deprecated - Use v1.services instead
*/
get services(): ServiceListInstance;
/**
* @deprecated - Use v1.users instead
*/
get users(): UserListInstance;
}
export = Conversations;

64
node_modules/twilio/lib/rest/Conversations.js generated vendored Normal file
View File

@@ -0,0 +1,64 @@
"use strict";
var __importDefault = (this && this.__importDefault) || function (mod) {
return (mod && mod.__esModule) ? mod : { "default": mod };
};
const ConversationsBase_1 = __importDefault(require("./ConversationsBase"));
class Conversations extends ConversationsBase_1.default {
/**
* @deprecated - Use v1.configuration instead
*/
get configuration() {
console.warn("configuration is deprecated. Use v1.configuration instead.");
return this.v1.configuration;
}
/**
* @deprecated - Use v1.addressConfigurations instead
*/
get addressConfigurations() {
console.warn("addressConfigurations is deprecated. Use v1.addressConfigurations instead.");
return this.v1.addressConfigurations;
}
/**
* @deprecated - Use v1.conversations instead
*/
get conversations() {
console.warn("conversations is deprecated. Use v1.conversations instead.");
return this.v1.conversations;
}
/**
* @deprecated - Use v1.credentials instead
*/
get credentials() {
console.warn("credentials is deprecated. Use v1.credentials instead.");
return this.v1.credentials;
}
/**
* @deprecated - Use v1.participantConversations instead
*/
get participantConversations() {
console.warn("participantConversations is deprecated. Use v1.participantConversations instead.");
return this.v1.participantConversations;
}
/**
* @deprecated - Use v1.roles instead
*/
get roles() {
console.warn("roles is deprecated. Use v1.roles instead.");
return this.v1.roles;
}
/**
* @deprecated - Use v1.services instead
*/
get services() {
console.warn("services is deprecated. Use v1.services instead.");
return this.v1.services;
}
/**
* @deprecated - Use v1.users instead
*/
get users() {
console.warn("users is deprecated. Use v1.users instead.");
return this.v1.users;
}
}
module.exports = Conversations;

13
node_modules/twilio/lib/rest/ConversationsBase.d.ts generated vendored Normal file
View File

@@ -0,0 +1,13 @@
import Domain from "../base/Domain";
import V1 from "./conversations/V1";
declare class ConversationsBase extends Domain {
_v1?: V1;
/**
* Initialize conversations domain
*
* @param twilio - The twilio client
*/
constructor(twilio: any);
get v1(): V1;
}
export = ConversationsBase;

31
node_modules/twilio/lib/rest/ConversationsBase.js generated vendored Normal file
View File

@@ -0,0 +1,31 @@
"use strict";
/*
* This code was generated by
* ___ _ _ _ _ _ _ ____ ____ ____ _ ____ ____ _ _ ____ ____ ____ ___ __ __
* | | | | | | | | | __ | | |__| | __ | __ |___ |\ | |___ |__/ |__| | | | |__/
* | |_|_| | |___ | |__| |__| | | | |__] |___ | \| |___ | \ | | | |__| | \
*
* NOTE: This class is auto generated by OpenAPI Generator.
* https://openapi-generator.tech
* Do not edit the class manually.
*/
var __importDefault = (this && this.__importDefault) || function (mod) {
return (mod && mod.__esModule) ? mod : { "default": mod };
};
const Domain_1 = __importDefault(require("../base/Domain"));
const V1_1 = __importDefault(require("./conversations/V1"));
class ConversationsBase extends Domain_1.default {
/**
* Initialize conversations domain
*
* @param twilio - The twilio client
*/
constructor(twilio) {
super(twilio, "https://conversations.twilio.com");
}
get v1() {
this._v1 = this._v1 || new V1_1.default(this);
return this._v1;
}
}
module.exports = ConversationsBase;

24
node_modules/twilio/lib/rest/Events.d.ts generated vendored Normal file
View File

@@ -0,0 +1,24 @@
import { EventTypeListInstance } from "./events/v1/eventType";
import { SchemaListInstance } from "./events/v1/schema";
import { SinkListInstance } from "./events/v1/sink";
import { SubscriptionListInstance } from "./events/v1/subscription";
import EventsBase from "./EventsBase";
declare class Events extends EventsBase {
/**
* @deprecated - Use v1.eventTypes instead
*/
get eventTypes(): EventTypeListInstance;
/**
* @deprecated - Use v1.schemas instead
*/
get schemas(): SchemaListInstance;
/**
* @deprecated - Use v1.sinks instead
*/
get sinks(): SinkListInstance;
/**
* @deprecated - Use v1.subscriptions instead
*/
get subscriptions(): SubscriptionListInstance;
}
export = Events;

36
node_modules/twilio/lib/rest/Events.js generated vendored Normal file
View File

@@ -0,0 +1,36 @@
"use strict";
var __importDefault = (this && this.__importDefault) || function (mod) {
return (mod && mod.__esModule) ? mod : { "default": mod };
};
const EventsBase_1 = __importDefault(require("./EventsBase"));
class Events extends EventsBase_1.default {
/**
* @deprecated - Use v1.eventTypes instead
*/
get eventTypes() {
console.warn("eventTypes is deprecated. Use v1.eventTypes instead.");
return this.v1.eventTypes;
}
/**
* @deprecated - Use v1.schemas instead
*/
get schemas() {
console.warn("schemas is deprecated. Use v1.schemas instead.");
return this.v1.schemas;
}
/**
* @deprecated - Use v1.sinks instead
*/
get sinks() {
console.warn("sinks is deprecated. Use v1.sinks instead.");
return this.v1.sinks;
}
/**
* @deprecated - Use v1.subscriptions instead
*/
get subscriptions() {
console.warn("subscriptions is deprecated. Use v1.subscriptions instead.");
return this.v1.subscriptions;
}
}
module.exports = Events;

13
node_modules/twilio/lib/rest/EventsBase.d.ts generated vendored Normal file
View File

@@ -0,0 +1,13 @@
import Domain from "../base/Domain";
import V1 from "./events/V1";
declare class EventsBase extends Domain {
_v1?: V1;
/**
* Initialize events domain
*
* @param twilio - The twilio client
*/
constructor(twilio: any);
get v1(): V1;
}
export = EventsBase;

31
node_modules/twilio/lib/rest/EventsBase.js generated vendored Normal file
View File

@@ -0,0 +1,31 @@
"use strict";
/*
* This code was generated by
* ___ _ _ _ _ _ _ ____ ____ ____ _ ____ ____ _ _ ____ ____ ____ ___ __ __
* | | | | | | | | | __ | | |__| | __ | __ |___ |\ | |___ |__/ |__| | | | |__/
* | |_|_| | |___ | |__| |__| | | | |__] |___ | \| |___ | \ | | | |__| | \
*
* NOTE: This class is auto generated by OpenAPI Generator.
* https://openapi-generator.tech
* Do not edit the class manually.
*/
var __importDefault = (this && this.__importDefault) || function (mod) {
return (mod && mod.__esModule) ? mod : { "default": mod };
};
const Domain_1 = __importDefault(require("../base/Domain"));
const V1_1 = __importDefault(require("./events/V1"));
class EventsBase extends Domain_1.default {
/**
* Initialize events domain
*
* @param twilio - The twilio client
*/
constructor(twilio) {
super(twilio, "https://events.twilio.com");
}
get v1() {
this._v1 = this._v1 || new V1_1.default(this);
return this._v1;
}
}
module.exports = EventsBase;

39
node_modules/twilio/lib/rest/FlexApi.d.ts generated vendored Normal file
View File

@@ -0,0 +1,39 @@
import { ChannelListInstance } from "./flexApi/v1/channel";
import { ConfigurationListInstance } from "./flexApi/v1/configuration";
import { FlexFlowListInstance } from "./flexApi/v1/flexFlow";
import { InteractionListInstance } from "./flexApi/v1/interaction";
import { WebChannelListInstance } from "./flexApi/v1/webChannel";
import { AssessmentsListInstance } from "./flexApi/v1/assessments";
import { WebChannelsListInstance } from "./flexApi/v2/webChannels";
import FlexApiBase from "./FlexApiBase";
declare class FlexApi extends FlexApiBase {
/**
* @deprecated - Use v1.assessments instead
*/
get assessments(): AssessmentsListInstance;
/**
* @deprecated - Use v1.channel instead
*/
get channel(): ChannelListInstance;
/**
* @deprecated - Use v1.configuration instead
*/
get configuration(): ConfigurationListInstance;
/**
* @deprecated - Use v1.flexFlow instead
*/
get flexFlow(): FlexFlowListInstance;
/**
* @deprecated - Use v1.interaction instead
*/
get interaction(): InteractionListInstance;
/**
* @deprecated - Use v1.webChannel instead
*/
get webChannel(): WebChannelListInstance;
/**
* @deprecated - Use v2.webChannels instead
*/
get webChannels(): WebChannelsListInstance;
}
export = FlexApi;

57
node_modules/twilio/lib/rest/FlexApi.js generated vendored Normal file
View File

@@ -0,0 +1,57 @@
"use strict";
var __importDefault = (this && this.__importDefault) || function (mod) {
return (mod && mod.__esModule) ? mod : { "default": mod };
};
const FlexApiBase_1 = __importDefault(require("./FlexApiBase"));
class FlexApi extends FlexApiBase_1.default {
/**
* @deprecated - Use v1.assessments instead
*/
get assessments() {
console.warn("assessments is deprecated. Use v1.assessments instead.");
return this.v1.assessments;
}
/**
* @deprecated - Use v1.channel instead
*/
get channel() {
console.warn("channel is deprecated. Use v1.channel instead.");
return this.v1.channel;
}
/**
* @deprecated - Use v1.configuration instead
*/
get configuration() {
console.warn("configuration is deprecated. Use v1.configuration instead.");
return this.v1.configuration;
}
/**
* @deprecated - Use v1.flexFlow instead
*/
get flexFlow() {
console.warn("flexFlow is deprecated. Use v1.flexFlow instead.");
return this.v1.flexFlow;
}
/**
* @deprecated - Use v1.interaction instead
*/
get interaction() {
console.warn("interaction is deprecated. Use v1.interaction instead.");
return this.v1.interaction;
}
/**
* @deprecated - Use v1.webChannel instead
*/
get webChannel() {
console.warn("webChannel is deprecated. Use v1.webChannel instead.");
return this.v1.webChannel;
}
/**
* @deprecated - Use v2.webChannels instead
*/
get webChannels() {
console.warn("webChannels is deprecated. Use v2.webChannels instead.");
return this.v2.webChannels;
}
}
module.exports = FlexApi;

16
node_modules/twilio/lib/rest/FlexApiBase.d.ts generated vendored Normal file
View File

@@ -0,0 +1,16 @@
import Domain from "../base/Domain";
import V1 from "./flexApi/V1";
import V2 from "./flexApi/V2";
declare class FlexApiBase extends Domain {
_v1?: V1;
_v2?: V2;
/**
* Initialize flexApi domain
*
* @param twilio - The twilio client
*/
constructor(twilio: any);
get v1(): V1;
get v2(): V2;
}
export = FlexApiBase;

36
node_modules/twilio/lib/rest/FlexApiBase.js generated vendored Normal file
View File

@@ -0,0 +1,36 @@
"use strict";
/*
* This code was generated by
* ___ _ _ _ _ _ _ ____ ____ ____ _ ____ ____ _ _ ____ ____ ____ ___ __ __
* | | | | | | | | | __ | | |__| | __ | __ |___ |\ | |___ |__/ |__| | | | |__/
* | |_|_| | |___ | |__| |__| | | | |__] |___ | \| |___ | \ | | | |__| | \
*
* NOTE: This class is auto generated by OpenAPI Generator.
* https://openapi-generator.tech
* Do not edit the class manually.
*/
var __importDefault = (this && this.__importDefault) || function (mod) {
return (mod && mod.__esModule) ? mod : { "default": mod };
};
const Domain_1 = __importDefault(require("../base/Domain"));
const V1_1 = __importDefault(require("./flexApi/V1"));
const V2_1 = __importDefault(require("./flexApi/V2"));
class FlexApiBase extends Domain_1.default {
/**
* Initialize flexApi domain
*
* @param twilio - The twilio client
*/
constructor(twilio) {
super(twilio, "https://flex-api.twilio.com");
}
get v1() {
this._v1 = this._v1 || new V1_1.default(this);
return this._v1;
}
get v2() {
this._v2 = this._v2 || new V2_1.default(this);
return this._v2;
}
}
module.exports = FlexApiBase;

9
node_modules/twilio/lib/rest/FrontlineApi.d.ts generated vendored Normal file
View File

@@ -0,0 +1,9 @@
import { UserListInstance } from "./frontlineApi/v1/user";
import FrontlineApiBase from "./FrontlineApiBase";
declare class FrontlineApi extends FrontlineApiBase {
/**
* @deprecated - Use v1.users instead
*/
get users(): UserListInstance;
}
export = FrontlineApi;

15
node_modules/twilio/lib/rest/FrontlineApi.js generated vendored Normal file
View File

@@ -0,0 +1,15 @@
"use strict";
var __importDefault = (this && this.__importDefault) || function (mod) {
return (mod && mod.__esModule) ? mod : { "default": mod };
};
const FrontlineApiBase_1 = __importDefault(require("./FrontlineApiBase"));
class FrontlineApi extends FrontlineApiBase_1.default {
/**
* @deprecated - Use v1.users instead
*/
get users() {
console.warn("users is deprecated. Use v1.users instead.");
return this.v1.users;
}
}
module.exports = FrontlineApi;

13
node_modules/twilio/lib/rest/FrontlineApiBase.d.ts generated vendored Normal file
View File

@@ -0,0 +1,13 @@
import Domain from "../base/Domain";
import V1 from "./frontlineApi/V1";
declare class FrontlineApiBase extends Domain {
_v1?: V1;
/**
* Initialize frontlineApi domain
*
* @param twilio - The twilio client
*/
constructor(twilio: any);
get v1(): V1;
}
export = FrontlineApiBase;

31
node_modules/twilio/lib/rest/FrontlineApiBase.js generated vendored Normal file
View File

@@ -0,0 +1,31 @@
"use strict";
/*
* This code was generated by
* ___ _ _ _ _ _ _ ____ ____ ____ _ ____ ____ _ _ ____ ____ ____ ___ __ __
* | | | | | | | | | __ | | |__| | __ | __ |___ |\ | |___ |__/ |__| | | | |__/
* | |_|_| | |___ | |__| |__| | | | |__] |___ | \| |___ | \ | | | |__| | \
*
* NOTE: This class is auto generated by OpenAPI Generator.
* https://openapi-generator.tech
* Do not edit the class manually.
*/
var __importDefault = (this && this.__importDefault) || function (mod) {
return (mod && mod.__esModule) ? mod : { "default": mod };
};
const Domain_1 = __importDefault(require("../base/Domain"));
const V1_1 = __importDefault(require("./frontlineApi/V1"));
class FrontlineApiBase extends Domain_1.default {
/**
* Initialize frontlineApi domain
*
* @param twilio - The twilio client
*/
constructor(twilio) {
super(twilio, "https://frontline-api.twilio.com");
}
get v1() {
this._v1 = this._v1 || new V1_1.default(this);
return this._v1;
}
}
module.exports = FrontlineApiBase;

4
node_modules/twilio/lib/rest/Iam.d.ts generated vendored Normal file
View File

@@ -0,0 +1,4 @@
import IamBase from "./IamBase";
declare class Iam extends IamBase {
}
export = Iam;

8
node_modules/twilio/lib/rest/Iam.js generated vendored Normal file
View File

@@ -0,0 +1,8 @@
"use strict";
var __importDefault = (this && this.__importDefault) || function (mod) {
return (mod && mod.__esModule) ? mod : { "default": mod };
};
const IamBase_1 = __importDefault(require("./IamBase"));
class Iam extends IamBase_1.default {
}
module.exports = Iam;

13
node_modules/twilio/lib/rest/IamBase.d.ts generated vendored Normal file
View File

@@ -0,0 +1,13 @@
import Domain from "../base/Domain";
import V1 from "./iam/V1";
declare class IamBase extends Domain {
_v1?: V1;
/**
* Initialize iam domain
*
* @param twilio - The twilio client
*/
constructor(twilio: any);
get v1(): V1;
}
export = IamBase;

31
node_modules/twilio/lib/rest/IamBase.js generated vendored Normal file
View File

@@ -0,0 +1,31 @@
"use strict";
/*
* This code was generated by
* ___ _ _ _ _ _ _ ____ ____ ____ _ ____ ____ _ _ ____ ____ ____ ___ __ __
* | | | | | | | | | __ | | |__| | __ | __ |___ |\ | |___ |__/ |__| | | | |__/
* | |_|_| | |___ | |__| |__| | | | |__] |___ | \| |___ | \ | | | |__| | \
*
* NOTE: This class is auto generated by OpenAPI Generator.
* https://openapi-generator.tech
* Do not edit the class manually.
*/
var __importDefault = (this && this.__importDefault) || function (mod) {
return (mod && mod.__esModule) ? mod : { "default": mod };
};
const Domain_1 = __importDefault(require("../base/Domain"));
const V1_1 = __importDefault(require("./iam/V1"));
class IamBase extends Domain_1.default {
/**
* Initialize iam domain
*
* @param twilio - The twilio client
*/
constructor(twilio) {
super(twilio, "https://iam.twilio.com");
}
get v1() {
this._v1 = this._v1 || new V1_1.default(this);
return this._v1;
}
}
module.exports = IamBase;

29
node_modules/twilio/lib/rest/Insights.d.ts generated vendored Normal file
View File

@@ -0,0 +1,29 @@
import { CallListInstance } from "./insights/v1/call";
import { CallSummariesListInstance } from "./insights/v1/callSummaries";
import { ConferenceListInstance } from "./insights/v1/conference";
import { RoomListInstance } from "./insights/v1/room";
import { SettingListInstance } from "./insights/v1/setting";
import InsightsBase from "./InsightsBase";
declare class Insights extends InsightsBase {
/**
* @deprecated - Use v1.settings instead
*/
get settings(): SettingListInstance;
/**
* @deprecated - Use v1.calls instead
*/
get calls(): CallListInstance;
/**
* @deprecated - Use v1.callSummaries instead
*/
get callSummaries(): CallSummariesListInstance;
/**
* @deprecated - Use v1.conferences instead
*/
get conferences(): ConferenceListInstance;
/**
* @deprecated - Use v1.rooms instead
*/
get rooms(): RoomListInstance;
}
export = Insights;

43
node_modules/twilio/lib/rest/Insights.js generated vendored Normal file
View File

@@ -0,0 +1,43 @@
"use strict";
var __importDefault = (this && this.__importDefault) || function (mod) {
return (mod && mod.__esModule) ? mod : { "default": mod };
};
const InsightsBase_1 = __importDefault(require("./InsightsBase"));
class Insights extends InsightsBase_1.default {
/**
* @deprecated - Use v1.settings instead
*/
get settings() {
console.warn("settings is deprecated. Use v1.settings instead.");
return this.v1.settings;
}
/**
* @deprecated - Use v1.calls instead
*/
get calls() {
console.warn("calls is deprecated. Use v1.calls instead.");
return this.v1.calls;
}
/**
* @deprecated - Use v1.callSummaries instead
*/
get callSummaries() {
console.warn("callSummaries is deprecated. Use v1.callSummaries instead.");
return this.v1.callSummaries;
}
/**
* @deprecated - Use v1.conferences instead
*/
get conferences() {
console.warn("conferences is deprecated. Use v1.conferences instead.");
return this.v1.conferences;
}
/**
* @deprecated - Use v1.rooms instead
*/
get rooms() {
console.warn("rooms is deprecated. Use v1.rooms instead.");
return this.v1.rooms;
}
}
module.exports = Insights;

16
node_modules/twilio/lib/rest/InsightsBase.d.ts generated vendored Normal file
View File

@@ -0,0 +1,16 @@
import Domain from "../base/Domain";
import V1 from "./insights/V1";
import V2 from "./insights/V2";
declare class InsightsBase extends Domain {
_v1?: V1;
_v2?: V2;
/**
* Initialize insights domain
*
* @param twilio - The twilio client
*/
constructor(twilio: any);
get v1(): V1;
get v2(): V2;
}
export = InsightsBase;

36
node_modules/twilio/lib/rest/InsightsBase.js generated vendored Normal file
View File

@@ -0,0 +1,36 @@
"use strict";
/*
* This code was generated by
* ___ _ _ _ _ _ _ ____ ____ ____ _ ____ ____ _ _ ____ ____ ____ ___ __ __
* | | | | | | | | | __ | | |__| | __ | __ |___ |\ | |___ |__/ |__| | | | |__/
* | |_|_| | |___ | |__| |__| | | | |__] |___ | \| |___ | \ | | | |__| | \
*
* NOTE: This class is auto generated by OpenAPI Generator.
* https://openapi-generator.tech
* Do not edit the class manually.
*/
var __importDefault = (this && this.__importDefault) || function (mod) {
return (mod && mod.__esModule) ? mod : { "default": mod };
};
const Domain_1 = __importDefault(require("../base/Domain"));
const V1_1 = __importDefault(require("./insights/V1"));
const V2_1 = __importDefault(require("./insights/V2"));
class InsightsBase extends Domain_1.default {
/**
* Initialize insights domain
*
* @param twilio - The twilio client
*/
constructor(twilio) {
super(twilio, "https://insights.twilio.com");
}
get v1() {
this._v1 = this._v1 || new V1_1.default(this);
return this._v1;
}
get v2() {
this._v2 = this._v2 || new V2_1.default(this);
return this._v2;
}
}
module.exports = InsightsBase;

4
node_modules/twilio/lib/rest/Intelligence.d.ts generated vendored Normal file
View File

@@ -0,0 +1,4 @@
import IntelligenceBase from "./IntelligenceBase";
declare class Intelligence extends IntelligenceBase {
}
export = Intelligence;

8
node_modules/twilio/lib/rest/Intelligence.js generated vendored Normal file
View File

@@ -0,0 +1,8 @@
"use strict";
var __importDefault = (this && this.__importDefault) || function (mod) {
return (mod && mod.__esModule) ? mod : { "default": mod };
};
const IntelligenceBase_1 = __importDefault(require("./IntelligenceBase"));
class Intelligence extends IntelligenceBase_1.default {
}
module.exports = Intelligence;

13
node_modules/twilio/lib/rest/IntelligenceBase.d.ts generated vendored Normal file
View File

@@ -0,0 +1,13 @@
import Domain from "../base/Domain";
import V2 from "./intelligence/V2";
declare class IntelligenceBase extends Domain {
_v2?: V2;
/**
* Initialize intelligence domain
*
* @param twilio - The twilio client
*/
constructor(twilio: any);
get v2(): V2;
}
export = IntelligenceBase;

31
node_modules/twilio/lib/rest/IntelligenceBase.js generated vendored Normal file
View File

@@ -0,0 +1,31 @@
"use strict";
/*
* This code was generated by
* ___ _ _ _ _ _ _ ____ ____ ____ _ ____ ____ _ _ ____ ____ ____ ___ __ __
* | | | | | | | | | __ | | |__| | __ | __ |___ |\ | |___ |__/ |__| | | | |__/
* | |_|_| | |___ | |__| |__| | | | |__] |___ | \| |___ | \ | | | |__| | \
*
* NOTE: This class is auto generated by OpenAPI Generator.
* https://openapi-generator.tech
* Do not edit the class manually.
*/
var __importDefault = (this && this.__importDefault) || function (mod) {
return (mod && mod.__esModule) ? mod : { "default": mod };
};
const Domain_1 = __importDefault(require("../base/Domain"));
const V2_1 = __importDefault(require("./intelligence/V2"));
class IntelligenceBase extends Domain_1.default {
/**
* Initialize intelligence domain
*
* @param twilio - The twilio client
*/
constructor(twilio) {
super(twilio, "https://intelligence.twilio.com");
}
get v2() {
this._v2 = this._v2 || new V2_1.default(this);
return this._v2;
}
}
module.exports = IntelligenceBase;

14
node_modules/twilio/lib/rest/IpMessaging.d.ts generated vendored Normal file
View File

@@ -0,0 +1,14 @@
import { CredentialListInstance } from "./ipMessaging/v2/credential";
import { ServiceListInstance } from "./ipMessaging/v2/service";
import IpMessagingBase from "./IpMessagingBase";
declare class IpMessaging extends IpMessagingBase {
/**
* @deprecated - Use v2.credentials instead
*/
get credentials(): CredentialListInstance;
/**
* @deprecated - Use v2.services instead
*/
get services(): ServiceListInstance;
}
export = IpMessaging;

22
node_modules/twilio/lib/rest/IpMessaging.js generated vendored Normal file
View File

@@ -0,0 +1,22 @@
"use strict";
var __importDefault = (this && this.__importDefault) || function (mod) {
return (mod && mod.__esModule) ? mod : { "default": mod };
};
const IpMessagingBase_1 = __importDefault(require("./IpMessagingBase"));
class IpMessaging extends IpMessagingBase_1.default {
/**
* @deprecated - Use v2.credentials instead
*/
get credentials() {
console.warn("credentials is deprecated. Use v2.credentials instead.");
return this.v2.credentials;
}
/**
* @deprecated - Use v2.services instead
*/
get services() {
console.warn("services is deprecated. Use v2.services instead.");
return this.v2.services;
}
}
module.exports = IpMessaging;

16
node_modules/twilio/lib/rest/IpMessagingBase.d.ts generated vendored Normal file
View File

@@ -0,0 +1,16 @@
import Domain from "../base/Domain";
import V1 from "./ipMessaging/V1";
import V2 from "./ipMessaging/V2";
declare class IpMessagingBase extends Domain {
_v1?: V1;
_v2?: V2;
/**
* Initialize ipMessaging domain
*
* @param twilio - The twilio client
*/
constructor(twilio: any);
get v1(): V1;
get v2(): V2;
}
export = IpMessagingBase;

36
node_modules/twilio/lib/rest/IpMessagingBase.js generated vendored Normal file
View File

@@ -0,0 +1,36 @@
"use strict";
/*
* This code was generated by
* ___ _ _ _ _ _ _ ____ ____ ____ _ ____ ____ _ _ ____ ____ ____ ___ __ __
* | | | | | | | | | __ | | |__| | __ | __ |___ |\ | |___ |__/ |__| | | | |__/
* | |_|_| | |___ | |__| |__| | | | |__] |___ | \| |___ | \ | | | |__| | \
*
* NOTE: This class is auto generated by OpenAPI Generator.
* https://openapi-generator.tech
* Do not edit the class manually.
*/
var __importDefault = (this && this.__importDefault) || function (mod) {
return (mod && mod.__esModule) ? mod : { "default": mod };
};
const Domain_1 = __importDefault(require("../base/Domain"));
const V1_1 = __importDefault(require("./ipMessaging/V1"));
const V2_1 = __importDefault(require("./ipMessaging/V2"));
class IpMessagingBase extends Domain_1.default {
/**
* Initialize ipMessaging domain
*
* @param twilio - The twilio client
*/
constructor(twilio) {
super(twilio, "https://ip-messaging.twilio.com");
}
get v1() {
this._v1 = this._v1 || new V1_1.default(this);
return this._v1;
}
get v2() {
this._v2 = this._v2 || new V2_1.default(this);
return this._v2;
}
}
module.exports = IpMessagingBase;

4
node_modules/twilio/lib/rest/Knowledge.d.ts generated vendored Normal file
View File

@@ -0,0 +1,4 @@
import KnowledgeBase from "./KnowledgeBase";
declare class Knowledge extends KnowledgeBase {
}
export = Knowledge;

8
node_modules/twilio/lib/rest/Knowledge.js generated vendored Normal file
View File

@@ -0,0 +1,8 @@
"use strict";
var __importDefault = (this && this.__importDefault) || function (mod) {
return (mod && mod.__esModule) ? mod : { "default": mod };
};
const KnowledgeBase_1 = __importDefault(require("./KnowledgeBase"));
class Knowledge extends KnowledgeBase_1.default {
}
module.exports = Knowledge;

13
node_modules/twilio/lib/rest/KnowledgeBase.d.ts generated vendored Normal file
View File

@@ -0,0 +1,13 @@
import Domain from "../base/Domain";
import V1 from "./knowledge/V1";
declare class KnowledgeBase extends Domain {
_v1?: V1;
/**
* Initialize knowledge domain
*
* @param twilio - The twilio client
*/
constructor(twilio: any);
get v1(): V1;
}
export = KnowledgeBase;

31
node_modules/twilio/lib/rest/KnowledgeBase.js generated vendored Normal file
View File

@@ -0,0 +1,31 @@
"use strict";
/*
* This code was generated by
* ___ _ _ _ _ _ _ ____ ____ ____ _ ____ ____ _ _ ____ ____ ____ ___ __ __
* | | | | | | | | | __ | | |__| | __ | __ |___ |\ | |___ |__/ |__| | | | |__/
* | |_|_| | |___ | |__| |__| | | | |__] |___ | \| |___ | \ | | | |__| | \
*
* NOTE: This class is auto generated by OpenAPI Generator.
* https://openapi-generator.tech
* Do not edit the class manually.
*/
var __importDefault = (this && this.__importDefault) || function (mod) {
return (mod && mod.__esModule) ? mod : { "default": mod };
};
const Domain_1 = __importDefault(require("../base/Domain"));
const V1_1 = __importDefault(require("./knowledge/V1"));
class KnowledgeBase extends Domain_1.default {
/**
* Initialize knowledge domain
*
* @param twilio - The twilio client
*/
constructor(twilio) {
super(twilio, "https://knowledge.twilio.com");
}
get v1() {
this._v1 = this._v1 || new V1_1.default(this);
return this._v1;
}
}
module.exports = KnowledgeBase;

9
node_modules/twilio/lib/rest/Lookups.d.ts generated vendored Normal file
View File

@@ -0,0 +1,9 @@
import { PhoneNumberListInstance } from "./lookups/v1/phoneNumber";
import LookupsBase from "./LookupsBase";
declare class Lookups extends LookupsBase {
/**
* @deprecated - Use v1.phoneNumbers instead
*/
get phoneNumbers(): PhoneNumberListInstance;
}
export = Lookups;

15
node_modules/twilio/lib/rest/Lookups.js generated vendored Normal file
View File

@@ -0,0 +1,15 @@
"use strict";
var __importDefault = (this && this.__importDefault) || function (mod) {
return (mod && mod.__esModule) ? mod : { "default": mod };
};
const LookupsBase_1 = __importDefault(require("./LookupsBase"));
class Lookups extends LookupsBase_1.default {
/**
* @deprecated - Use v1.phoneNumbers instead
*/
get phoneNumbers() {
console.warn("phoneNumbers is deprecated. Use v1.phoneNumbers instead.");
return this.v1.phoneNumbers;
}
}
module.exports = Lookups;

16
node_modules/twilio/lib/rest/LookupsBase.d.ts generated vendored Normal file
View File

@@ -0,0 +1,16 @@
import Domain from "../base/Domain";
import V1 from "./lookups/V1";
import V2 from "./lookups/V2";
declare class LookupsBase extends Domain {
_v1?: V1;
_v2?: V2;
/**
* Initialize lookups domain
*
* @param twilio - The twilio client
*/
constructor(twilio: any);
get v1(): V1;
get v2(): V2;
}
export = LookupsBase;

36
node_modules/twilio/lib/rest/LookupsBase.js generated vendored Normal file
View File

@@ -0,0 +1,36 @@
"use strict";
/*
* This code was generated by
* ___ _ _ _ _ _ _ ____ ____ ____ _ ____ ____ _ _ ____ ____ ____ ___ __ __
* | | | | | | | | | __ | | |__| | __ | __ |___ |\ | |___ |__/ |__| | | | |__/
* | |_|_| | |___ | |__| |__| | | | |__] |___ | \| |___ | \ | | | |__| | \
*
* NOTE: This class is auto generated by OpenAPI Generator.
* https://openapi-generator.tech
* Do not edit the class manually.
*/
var __importDefault = (this && this.__importDefault) || function (mod) {
return (mod && mod.__esModule) ? mod : { "default": mod };
};
const Domain_1 = __importDefault(require("../base/Domain"));
const V1_1 = __importDefault(require("./lookups/V1"));
const V2_1 = __importDefault(require("./lookups/V2"));
class LookupsBase extends Domain_1.default {
/**
* Initialize lookups domain
*
* @param twilio - The twilio client
*/
constructor(twilio) {
super(twilio, "https://lookups.twilio.com");
}
get v1() {
this._v1 = this._v1 || new V1_1.default(this);
return this._v1;
}
get v2() {
this._v2 = this._v2 || new V2_1.default(this);
return this._v2;
}
}
module.exports = LookupsBase;

4
node_modules/twilio/lib/rest/Marketplace.d.ts generated vendored Normal file
View File

@@ -0,0 +1,4 @@
import MarketplaceBase from "./MarketplaceBase";
declare class Marketplace extends MarketplaceBase {
}
export = Marketplace;

8
node_modules/twilio/lib/rest/Marketplace.js generated vendored Normal file
View File

@@ -0,0 +1,8 @@
"use strict";
var __importDefault = (this && this.__importDefault) || function (mod) {
return (mod && mod.__esModule) ? mod : { "default": mod };
};
const MarketplaceBase_1 = __importDefault(require("./MarketplaceBase"));
class Marketplace extends MarketplaceBase_1.default {
}
module.exports = Marketplace;

13
node_modules/twilio/lib/rest/MarketplaceBase.d.ts generated vendored Normal file
View File

@@ -0,0 +1,13 @@
import Domain from "../base/Domain";
import V1 from "./marketplace/V1";
declare class MarketplaceBase extends Domain {
_v1?: V1;
/**
* Initialize marketplace domain
*
* @param twilio - The twilio client
*/
constructor(twilio: any);
get v1(): V1;
}
export = MarketplaceBase;

31
node_modules/twilio/lib/rest/MarketplaceBase.js generated vendored Normal file
View File

@@ -0,0 +1,31 @@
"use strict";
/*
* This code was generated by
* ___ _ _ _ _ _ _ ____ ____ ____ _ ____ ____ _ _ ____ ____ ____ ___ __ __
* | | | | | | | | | __ | | |__| | __ | __ |___ |\ | |___ |__/ |__| | | | |__/
* | |_|_| | |___ | |__| |__| | | | |__] |___ | \| |___ | \ | | | |__| | \
*
* NOTE: This class is auto generated by OpenAPI Generator.
* https://openapi-generator.tech
* Do not edit the class manually.
*/
var __importDefault = (this && this.__importDefault) || function (mod) {
return (mod && mod.__esModule) ? mod : { "default": mod };
};
const Domain_1 = __importDefault(require("../base/Domain"));
const V1_1 = __importDefault(require("./marketplace/V1"));
class MarketplaceBase extends Domain_1.default {
/**
* Initialize marketplace domain
*
* @param twilio - The twilio client
*/
constructor(twilio) {
super(twilio, "https://marketplace.twilio.com");
}
get v1() {
this._v1 = this._v1 || new V1_1.default(this);
return this._v1;
}
}
module.exports = MarketplaceBase;

39
node_modules/twilio/lib/rest/Messaging.d.ts generated vendored Normal file
View File

@@ -0,0 +1,39 @@
import { BrandRegistrationListInstance } from "./messaging/v1/brandRegistration";
import { DeactivationsListInstance } from "./messaging/v1/deactivations";
import { ExternalCampaignListInstance } from "./messaging/v1/externalCampaign";
import { ServiceListInstance } from "./messaging/v1/service";
import { UsecaseListInstance } from "./messaging/v1/usecase";
import { DomainCertsListInstance } from "./messaging/v1/domainCerts";
import { DomainConfigListInstance } from "./messaging/v1/domainConfig";
import MessagingBase from "./MessagingBase";
declare class Messaging extends MessagingBase {
/**
* @deprecated - Use v1.brandRegistrations instead
*/
get brandRegistrations(): BrandRegistrationListInstance;
/**
* @deprecated - Use v1.deactivations instead
*/
get deactivations(): DeactivationsListInstance;
/**
* @deprecated - Use v1.domainCerts instead
*/
get domainCerts(): DomainCertsListInstance;
/**
* @deprecated - Use v1.domainConfig instead
*/
get domainConfig(): DomainConfigListInstance;
/**
* @deprecated - Use v1.externalCampaign instead
*/
get externalCampaign(): ExternalCampaignListInstance;
/**
* @deprecated - Use v1.services instead
*/
get services(): ServiceListInstance;
/**
* @deprecated - Use v1.usecases instead
*/
get usecases(): UsecaseListInstance;
}
export = Messaging;

57
node_modules/twilio/lib/rest/Messaging.js generated vendored Normal file
View File

@@ -0,0 +1,57 @@
"use strict";
var __importDefault = (this && this.__importDefault) || function (mod) {
return (mod && mod.__esModule) ? mod : { "default": mod };
};
const MessagingBase_1 = __importDefault(require("./MessagingBase"));
class Messaging extends MessagingBase_1.default {
/**
* @deprecated - Use v1.brandRegistrations instead
*/
get brandRegistrations() {
console.warn("brandRegistrations is deprecated. Use v1.brandRegistrations instead.");
return this.v1.brandRegistrations;
}
/**
* @deprecated - Use v1.deactivations instead
*/
get deactivations() {
console.warn("deactivations is deprecated. Use v1.deactivations instead.");
return this.v1.deactivations;
}
/**
* @deprecated - Use v1.domainCerts instead
*/
get domainCerts() {
console.warn("domainCerts is deprecated. Use v1.domainCerts instead.");
return this.v1.domainCerts;
}
/**
* @deprecated - Use v1.domainConfig instead
*/
get domainConfig() {
console.warn("domainConfig is deprecated. Use v1.domainConfig instead.");
return this.v1.domainConfig;
}
/**
* @deprecated - Use v1.externalCampaign instead
*/
get externalCampaign() {
console.warn("externalCampaign is deprecated. Use v1.externalCampaign instead.");
return this.v1.externalCampaign;
}
/**
* @deprecated - Use v1.services instead
*/
get services() {
console.warn("services is deprecated. Use v1.services instead.");
return this.v1.services;
}
/**
* @deprecated - Use v1.usecases instead
*/
get usecases() {
console.warn("usecases is deprecated. Use v1.usecases instead.");
return this.v1.usecases;
}
}
module.exports = Messaging;

16
node_modules/twilio/lib/rest/MessagingBase.d.ts generated vendored Normal file
View File

@@ -0,0 +1,16 @@
import Domain from "../base/Domain";
import V1 from "./messaging/V1";
import V2 from "./messaging/V2";
declare class MessagingBase extends Domain {
_v1?: V1;
_v2?: V2;
/**
* Initialize messaging domain
*
* @param twilio - The twilio client
*/
constructor(twilio: any);
get v1(): V1;
get v2(): V2;
}
export = MessagingBase;

36
node_modules/twilio/lib/rest/MessagingBase.js generated vendored Normal file
View File

@@ -0,0 +1,36 @@
"use strict";
/*
* This code was generated by
* ___ _ _ _ _ _ _ ____ ____ ____ _ ____ ____ _ _ ____ ____ ____ ___ __ __
* | | | | | | | | | __ | | |__| | __ | __ |___ |\ | |___ |__/ |__| | | | |__/
* | |_|_| | |___ | |__| |__| | | | |__] |___ | \| |___ | \ | | | |__| | \
*
* NOTE: This class is auto generated by OpenAPI Generator.
* https://openapi-generator.tech
* Do not edit the class manually.
*/
var __importDefault = (this && this.__importDefault) || function (mod) {
return (mod && mod.__esModule) ? mod : { "default": mod };
};
const Domain_1 = __importDefault(require("../base/Domain"));
const V1_1 = __importDefault(require("./messaging/V1"));
const V2_1 = __importDefault(require("./messaging/V2"));
class MessagingBase extends Domain_1.default {
/**
* Initialize messaging domain
*
* @param twilio - The twilio client
*/
constructor(twilio) {
super(twilio, "https://messaging.twilio.com");
}
get v1() {
this._v1 = this._v1 || new V1_1.default(this);
return this._v1;
}
get v2() {
this._v2 = this._v2 || new V2_1.default(this);
return this._v2;
}
}
module.exports = MessagingBase;

14
node_modules/twilio/lib/rest/Monitor.d.ts generated vendored Normal file
View File

@@ -0,0 +1,14 @@
import { AlertListInstance } from "./monitor/v1/alert";
import { EventListInstance } from "./monitor/v1/event";
import MonitorBase from "./MonitorBase";
declare class Monitor extends MonitorBase {
/**
* @deprecated - Use v1.alerts instead
*/
get alerts(): AlertListInstance;
/**
* @deprecated - Use v1.events instead
*/
get events(): EventListInstance;
}
export = Monitor;

22
node_modules/twilio/lib/rest/Monitor.js generated vendored Normal file
View File

@@ -0,0 +1,22 @@
"use strict";
var __importDefault = (this && this.__importDefault) || function (mod) {
return (mod && mod.__esModule) ? mod : { "default": mod };
};
const MonitorBase_1 = __importDefault(require("./MonitorBase"));
class Monitor extends MonitorBase_1.default {
/**
* @deprecated - Use v1.alerts instead
*/
get alerts() {
console.warn("alerts is deprecated. Use v1.alerts instead.");
return this.v1.alerts;
}
/**
* @deprecated - Use v1.events instead
*/
get events() {
console.warn("events is deprecated. Use v1.events instead.");
return this.v1.events;
}
}
module.exports = Monitor;

13
node_modules/twilio/lib/rest/MonitorBase.d.ts generated vendored Normal file
View File

@@ -0,0 +1,13 @@
import Domain from "../base/Domain";
import V1 from "./monitor/V1";
declare class MonitorBase extends Domain {
_v1?: V1;
/**
* Initialize monitor domain
*
* @param twilio - The twilio client
*/
constructor(twilio: any);
get v1(): V1;
}
export = MonitorBase;

31
node_modules/twilio/lib/rest/MonitorBase.js generated vendored Normal file
View File

@@ -0,0 +1,31 @@
"use strict";
/*
* This code was generated by
* ___ _ _ _ _ _ _ ____ ____ ____ _ ____ ____ _ _ ____ ____ ____ ___ __ __
* | | | | | | | | | __ | | |__| | __ | __ |___ |\ | |___ |__/ |__| | | | |__/
* | |_|_| | |___ | |__| |__| | | | |__] |___ | \| |___ | \ | | | |__| | \
*
* NOTE: This class is auto generated by OpenAPI Generator.
* https://openapi-generator.tech
* Do not edit the class manually.
*/
var __importDefault = (this && this.__importDefault) || function (mod) {
return (mod && mod.__esModule) ? mod : { "default": mod };
};
const Domain_1 = __importDefault(require("../base/Domain"));
const V1_1 = __importDefault(require("./monitor/V1"));
class MonitorBase extends Domain_1.default {
/**
* Initialize monitor domain
*
* @param twilio - The twilio client
*/
constructor(twilio) {
super(twilio, "https://monitor.twilio.com");
}
get v1() {
this._v1 = this._v1 || new V1_1.default(this);
return this._v1;
}
}
module.exports = MonitorBase;

14
node_modules/twilio/lib/rest/Notify.d.ts generated vendored Normal file
View File

@@ -0,0 +1,14 @@
import { CredentialListInstance } from "./notify/v1/credential";
import { ServiceListInstance } from "./notify/v1/service";
import NotifyBase from "./NotifyBase";
declare class Notify extends NotifyBase {
/**
* @deprecated - Use v1.credentials instead
*/
get credentials(): CredentialListInstance;
/**
* @deprecated - Use v1.services instead
*/
get services(): ServiceListInstance;
}
export = Notify;

22
node_modules/twilio/lib/rest/Notify.js generated vendored Normal file
View File

@@ -0,0 +1,22 @@
"use strict";
var __importDefault = (this && this.__importDefault) || function (mod) {
return (mod && mod.__esModule) ? mod : { "default": mod };
};
const NotifyBase_1 = __importDefault(require("./NotifyBase"));
class Notify extends NotifyBase_1.default {
/**
* @deprecated - Use v1.credentials instead
*/
get credentials() {
console.warn("credentials is deprecated. Use v1.credentials instead.");
return this.v1.credentials;
}
/**
* @deprecated - Use v1.services instead
*/
get services() {
console.warn("services is deprecated. Use v1.services instead.");
return this.v1.services;
}
}
module.exports = Notify;

13
node_modules/twilio/lib/rest/NotifyBase.d.ts generated vendored Normal file
View File

@@ -0,0 +1,13 @@
import Domain from "../base/Domain";
import V1 from "./notify/V1";
declare class NotifyBase extends Domain {
_v1?: V1;
/**
* Initialize notify domain
*
* @param twilio - The twilio client
*/
constructor(twilio: any);
get v1(): V1;
}
export = NotifyBase;

31
node_modules/twilio/lib/rest/NotifyBase.js generated vendored Normal file
View File

@@ -0,0 +1,31 @@
"use strict";
/*
* This code was generated by
* ___ _ _ _ _ _ _ ____ ____ ____ _ ____ ____ _ _ ____ ____ ____ ___ __ __
* | | | | | | | | | __ | | |__| | __ | __ |___ |\ | |___ |__/ |__| | | | |__/
* | |_|_| | |___ | |__| |__| | | | |__] |___ | \| |___ | \ | | | |__| | \
*
* NOTE: This class is auto generated by OpenAPI Generator.
* https://openapi-generator.tech
* Do not edit the class manually.
*/
var __importDefault = (this && this.__importDefault) || function (mod) {
return (mod && mod.__esModule) ? mod : { "default": mod };
};
const Domain_1 = __importDefault(require("../base/Domain"));
const V1_1 = __importDefault(require("./notify/V1"));
class NotifyBase extends Domain_1.default {
/**
* Initialize notify domain
*
* @param twilio - The twilio client
*/
constructor(twilio) {
super(twilio, "https://notify.twilio.com");
}
get v1() {
this._v1 = this._v1 || new V1_1.default(this);
return this._v1;
}
}
module.exports = NotifyBase;

9
node_modules/twilio/lib/rest/Numbers.d.ts generated vendored Normal file
View File

@@ -0,0 +1,9 @@
import { RegulatoryComplianceListInstance } from "./numbers/v2/regulatoryCompliance";
import NumbersBase from "./NumbersBase";
declare class Numbers extends NumbersBase {
/**
* @deprecated - Use v2.regulatoryCompliance instead
*/
get regulatoryCompliance(): RegulatoryComplianceListInstance;
}
export = Numbers;

15
node_modules/twilio/lib/rest/Numbers.js generated vendored Normal file
View File

@@ -0,0 +1,15 @@
"use strict";
var __importDefault = (this && this.__importDefault) || function (mod) {
return (mod && mod.__esModule) ? mod : { "default": mod };
};
const NumbersBase_1 = __importDefault(require("./NumbersBase"));
class Numbers extends NumbersBase_1.default {
/**
* @deprecated - Use v2.regulatoryCompliance instead
*/
get regulatoryCompliance() {
console.warn("regulatoryCompliance is deprecated. Use v2.regulatoryCompliance instead.");
return this.v2.regulatoryCompliance;
}
}
module.exports = Numbers;

19
node_modules/twilio/lib/rest/NumbersBase.d.ts generated vendored Normal file
View File

@@ -0,0 +1,19 @@
import Domain from "../base/Domain";
import V1 from "./numbers/V1";
import V2 from "./numbers/V2";
import V3 from "./numbers/V3";
declare class NumbersBase extends Domain {
_v1?: V1;
_v2?: V2;
_v3?: V3;
/**
* Initialize numbers domain
*
* @param twilio - The twilio client
*/
constructor(twilio: any);
get v1(): V1;
get v2(): V2;
get v3(): V3;
}
export = NumbersBase;

41
node_modules/twilio/lib/rest/NumbersBase.js generated vendored Normal file
View File

@@ -0,0 +1,41 @@
"use strict";
/*
* This code was generated by
* ___ _ _ _ _ _ _ ____ ____ ____ _ ____ ____ _ _ ____ ____ ____ ___ __ __
* | | | | | | | | | __ | | |__| | __ | __ |___ |\ | |___ |__/ |__| | | | |__/
* | |_|_| | |___ | |__| |__| | | | |__] |___ | \| |___ | \ | | | |__| | \
*
* NOTE: This class is auto generated by OpenAPI Generator.
* https://openapi-generator.tech
* Do not edit the class manually.
*/
var __importDefault = (this && this.__importDefault) || function (mod) {
return (mod && mod.__esModule) ? mod : { "default": mod };
};
const Domain_1 = __importDefault(require("../base/Domain"));
const V1_1 = __importDefault(require("./numbers/V1"));
const V2_1 = __importDefault(require("./numbers/V2"));
const V3_1 = __importDefault(require("./numbers/V3"));
class NumbersBase extends Domain_1.default {
/**
* Initialize numbers domain
*
* @param twilio - The twilio client
*/
constructor(twilio) {
super(twilio, "https://numbers.twilio.com");
}
get v1() {
this._v1 = this._v1 || new V1_1.default(this);
return this._v1;
}
get v2() {
this._v2 = this._v2 || new V2_1.default(this);
return this._v2;
}
get v3() {
this._v3 = this._v3 || new V3_1.default(this);
return this._v3;
}
}
module.exports = NumbersBase;

4
node_modules/twilio/lib/rest/Oauth.d.ts generated vendored Normal file
View File

@@ -0,0 +1,4 @@
import OauthBase from "./OauthBase";
declare class Oauth extends OauthBase {
}
export = Oauth;

8
node_modules/twilio/lib/rest/Oauth.js generated vendored Normal file
View File

@@ -0,0 +1,8 @@
"use strict";
var __importDefault = (this && this.__importDefault) || function (mod) {
return (mod && mod.__esModule) ? mod : { "default": mod };
};
const OauthBase_1 = __importDefault(require("./OauthBase"));
class Oauth extends OauthBase_1.default {
}
module.exports = Oauth;

16
node_modules/twilio/lib/rest/OauthBase.d.ts generated vendored Normal file
View File

@@ -0,0 +1,16 @@
import Domain from "../base/Domain";
import V1 from "./oauth/V1";
import V2 from "./oauth/V2";
declare class OauthBase extends Domain {
_v1?: V1;
_v2?: V2;
/**
* Initialize oauth domain
*
* @param twilio - The twilio client
*/
constructor(twilio: any);
get v1(): V1;
get v2(): V2;
}
export = OauthBase;

36
node_modules/twilio/lib/rest/OauthBase.js generated vendored Normal file
View File

@@ -0,0 +1,36 @@
"use strict";
/*
* This code was generated by
* ___ _ _ _ _ _ _ ____ ____ ____ _ ____ ____ _ _ ____ ____ ____ ___ __ __
* | | | | | | | | | __ | | |__| | __ | __ |___ |\ | |___ |__/ |__| | | | |__/
* | |_|_| | |___ | |__| |__| | | | |__] |___ | \| |___ | \ | | | |__| | \
*
* NOTE: This class is auto generated by OpenAPI Generator.
* https://openapi-generator.tech
* Do not edit the class manually.
*/
var __importDefault = (this && this.__importDefault) || function (mod) {
return (mod && mod.__esModule) ? mod : { "default": mod };
};
const Domain_1 = __importDefault(require("../base/Domain"));
const V1_1 = __importDefault(require("./oauth/V1"));
const V2_1 = __importDefault(require("./oauth/V2"));
class OauthBase extends Domain_1.default {
/**
* Initialize oauth domain
*
* @param twilio - The twilio client
*/
constructor(twilio) {
super(twilio, "https://oauth.twilio.com");
}
get v1() {
this._v1 = this._v1 || new V1_1.default(this);
return this._v1;
}
get v2() {
this._v2 = this._v2 || new V2_1.default(this);
return this._v2;
}
}
module.exports = OauthBase;

39
node_modules/twilio/lib/rest/Preview.d.ts generated vendored Normal file
View File

@@ -0,0 +1,39 @@
import { AuthorizationDocumentListInstance } from "./preview/hosted_numbers/authorizationDocument";
import { HostedNumberOrderListInstance } from "./preview/hosted_numbers/hostedNumberOrder";
import { AvailableAddOnListInstance } from "./preview/marketplace/availableAddOn";
import { InstalledAddOnListInstance } from "./preview/marketplace/installedAddOn";
import { CommandListInstance } from "./preview/wireless/command";
import { RatePlanListInstance } from "./preview/wireless/ratePlan";
import { SimListInstance } from "./preview/wireless/sim";
import PreviewBase from "./PreviewBase";
declare class Preview extends PreviewBase {
/**
* @deprecated - Use hosted_numbers.authorizationDocuments instead
*/
get authorizationDocuments(): AuthorizationDocumentListInstance;
/**
* @deprecated - Use hosted_numbers.hostedNumberOrders instead
*/
get hostedNumberOrders(): HostedNumberOrderListInstance;
/**
* @deprecated - Use marketplace.availableAddOns instead
*/
get availableAddOns(): AvailableAddOnListInstance;
/**
* @deprecated - Use marketplace.installedAddOns instead
*/
get installedAddOns(): InstalledAddOnListInstance;
/**
* @deprecated - Use wireless.commands instead
*/
get commands(): CommandListInstance;
/**
* @deprecated - Use wireless.ratePlans instead
*/
get ratePlans(): RatePlanListInstance;
/**
* @deprecated - Use wireless.sims instead
*/
get sims(): SimListInstance;
}
export = Preview;

57
node_modules/twilio/lib/rest/Preview.js generated vendored Normal file
View File

@@ -0,0 +1,57 @@
"use strict";
var __importDefault = (this && this.__importDefault) || function (mod) {
return (mod && mod.__esModule) ? mod : { "default": mod };
};
const PreviewBase_1 = __importDefault(require("./PreviewBase"));
class Preview extends PreviewBase_1.default {
/**
* @deprecated - Use hosted_numbers.authorizationDocuments instead
*/
get authorizationDocuments() {
console.warn("authorizationDocuments is deprecated. Use hosted_numbers.authorizationDocuments instead.");
return this.hosted_numbers.authorizationDocuments;
}
/**
* @deprecated - Use hosted_numbers.hostedNumberOrders instead
*/
get hostedNumberOrders() {
console.warn("hostedNumberOrders is deprecated. Use hosted_numbers.hostedNumberOrders instead.");
return this.hosted_numbers.hostedNumberOrders;
}
/**
* @deprecated - Use marketplace.availableAddOns instead
*/
get availableAddOns() {
console.warn("availableAddOns is deprecated. Use marketplace.availableAddOns instead.");
return this.marketplace.availableAddOns;
}
/**
* @deprecated - Use marketplace.installedAddOns instead
*/
get installedAddOns() {
console.warn("installedAddOns is deprecated. Use marketplace.installedAddOns instead.");
return this.marketplace.installedAddOns;
}
/**
* @deprecated - Use wireless.commands instead
*/
get commands() {
console.warn("commands is deprecated. Use wireless.commands instead.");
return this.wireless.commands;
}
/**
* @deprecated - Use wireless.ratePlans instead
*/
get ratePlans() {
console.warn("ratePlans is deprecated. Use wireless.ratePlans instead.");
return this.wireless.ratePlans;
}
/**
* @deprecated - Use wireless.sims instead
*/
get sims() {
console.warn("sims is deprecated. Use wireless.sims instead.");
return this.wireless.sims;
}
}
module.exports = Preview;

19
node_modules/twilio/lib/rest/PreviewBase.d.ts generated vendored Normal file
View File

@@ -0,0 +1,19 @@
import Domain from "../base/Domain";
import HostedNumbers from "./preview/HostedNumbers";
import Marketplace from "./preview/Marketplace";
import Wireless from "./preview/Wireless";
declare class PreviewBase extends Domain {
_hosted_numbers?: HostedNumbers;
_marketplace?: Marketplace;
_wireless?: Wireless;
/**
* Initialize preview domain
*
* @param twilio - The twilio client
*/
constructor(twilio: any);
get hosted_numbers(): HostedNumbers;
get marketplace(): Marketplace;
get wireless(): Wireless;
}
export = PreviewBase;

41
node_modules/twilio/lib/rest/PreviewBase.js generated vendored Normal file
View File

@@ -0,0 +1,41 @@
"use strict";
/*
* This code was generated by
* ___ _ _ _ _ _ _ ____ ____ ____ _ ____ ____ _ _ ____ ____ ____ ___ __ __
* | | | | | | | | | __ | | |__| | __ | __ |___ |\ | |___ |__/ |__| | | | |__/
* | |_|_| | |___ | |__| |__| | | | |__] |___ | \| |___ | \ | | | |__| | \
*
* NOTE: This class is auto generated by OpenAPI Generator.
* https://openapi-generator.tech
* Do not edit the class manually.
*/
var __importDefault = (this && this.__importDefault) || function (mod) {
return (mod && mod.__esModule) ? mod : { "default": mod };
};
const Domain_1 = __importDefault(require("../base/Domain"));
const HostedNumbers_1 = __importDefault(require("./preview/HostedNumbers"));
const Marketplace_1 = __importDefault(require("./preview/Marketplace"));
const Wireless_1 = __importDefault(require("./preview/Wireless"));
class PreviewBase extends Domain_1.default {
/**
* Initialize preview domain
*
* @param twilio - The twilio client
*/
constructor(twilio) {
super(twilio, "https://preview.twilio.com");
}
get hosted_numbers() {
this._hosted_numbers = this._hosted_numbers || new HostedNumbers_1.default(this);
return this._hosted_numbers;
}
get marketplace() {
this._marketplace = this._marketplace || new Marketplace_1.default(this);
return this._marketplace;
}
get wireless() {
this._wireless = this._wireless || new Wireless_1.default(this);
return this._wireless;
}
}
module.exports = PreviewBase;

18
node_modules/twilio/lib/rest/PreviewIam.d.ts generated vendored Normal file
View File

@@ -0,0 +1,18 @@
import { TokenListInstance } from "./previewIam/v1/token";
import { AuthorizeListInstance } from "./previewIam/v1/authorize";
import PreviewIamBase from "./PreviewIamBase";
import { OrganizationListInstance } from "./previewIam/versionless/organization";
declare class PreviewIam extends PreviewIamBase {
_organization?: OrganizationListInstance;
/**
* @deprecated - Use v1.tokens instead
*/
get tokens(): TokenListInstance;
/**
* @deprecated - Use v1.authorize instead
*/
get authorize(): AuthorizeListInstance;
/** Getter for organization resource */
get organization(): OrganizationListInstance;
}
export = PreviewIam;

29
node_modules/twilio/lib/rest/PreviewIam.js generated vendored Normal file
View File

@@ -0,0 +1,29 @@
"use strict";
var __importDefault = (this && this.__importDefault) || function (mod) {
return (mod && mod.__esModule) ? mod : { "default": mod };
};
const PreviewIamBase_1 = __importDefault(require("./PreviewIamBase"));
const Versionless_1 = __importDefault(require("./previewIam/Versionless"));
class PreviewIam extends PreviewIamBase_1.default {
/**
* @deprecated - Use v1.tokens instead
*/
get tokens() {
console.warn("tokens is deprecated. Use v1.tokens instead.");
return this.v1.token;
}
/**
* @deprecated - Use v1.authorize instead
*/
get authorize() {
console.warn("authorize is deprecated. Use v1.authorize instead.");
return this.v1.authorize;
}
/** Getter for organization resource */
get organization() {
this._organization =
this._organization || new Versionless_1.default(this).organization;
return this._organization;
}
}
module.exports = PreviewIam;

13
node_modules/twilio/lib/rest/PreviewIamBase.d.ts generated vendored Normal file
View File

@@ -0,0 +1,13 @@
import Domain from "../base/Domain";
import V1 from "./previewIam/V1";
declare class PreviewIamBase extends Domain {
_v1?: V1;
/**
* Initialize previewIam domain
*
* @param twilio - The twilio client
*/
constructor(twilio: any);
get v1(): V1;
}
export = PreviewIamBase;

31
node_modules/twilio/lib/rest/PreviewIamBase.js generated vendored Normal file
View File

@@ -0,0 +1,31 @@
"use strict";
/*
* This code was generated by
* ___ _ _ _ _ _ _ ____ ____ ____ _ ____ ____ _ _ ____ ____ ____ ___ __ __
* | | | | | | | | | __ | | |__| | __ | __ |___ |\ | |___ |__/ |__| | | | |__/
* | |_|_| | |___ | |__| |__| | | | |__] |___ | \| |___ | \ | | | |__| | \
*
* NOTE: This class is auto generated by OpenAPI Generator.
* https://openapi-generator.tech
* Do not edit the class manually.
*/
var __importDefault = (this && this.__importDefault) || function (mod) {
return (mod && mod.__esModule) ? mod : { "default": mod };
};
const Domain_1 = __importDefault(require("../base/Domain"));
const V1_1 = __importDefault(require("./previewIam/V1"));
class PreviewIamBase extends Domain_1.default {
/**
* Initialize previewIam domain
*
* @param twilio - The twilio client
*/
constructor(twilio) {
super(twilio, "https://preview-iam.twilio.com");
}
get v1() {
this._v1 = this._v1 || new V1_1.default(this);
return this._v1;
}
}
module.exports = PreviewIamBase;

29
node_modules/twilio/lib/rest/Pricing.d.ts generated vendored Normal file
View File

@@ -0,0 +1,29 @@
import { MessagingListInstance } from "./pricing/v1/messaging";
import { PhoneNumberListInstance } from "./pricing/v1/phoneNumber";
import { VoiceListInstance } from "./pricing/v2/voice";
import { CountryListInstance } from "./pricing/v2/country";
import { NumberListInstance } from "./pricing/v2/number";
import PricingBase from "./PricingBase";
declare class Pricing extends PricingBase {
/**
* @deprecated - Use v1.messaging instead
*/
get messaging(): MessagingListInstance;
/**
* @deprecated - Use v1.phoneNumbers instead
*/
get phoneNumbers(): PhoneNumberListInstance;
/**
* @deprecated - Use v2.voice instead
*/
get voice(): VoiceListInstance;
/**
* @deprecated - Use v2.countries instead
*/
get countries(): CountryListInstance;
/**
* @deprecated - Use v2.numbers instead
*/
get numbers(): NumberListInstance;
}
export = Pricing;

43
node_modules/twilio/lib/rest/Pricing.js generated vendored Normal file
View File

@@ -0,0 +1,43 @@
"use strict";
var __importDefault = (this && this.__importDefault) || function (mod) {
return (mod && mod.__esModule) ? mod : { "default": mod };
};
const PricingBase_1 = __importDefault(require("./PricingBase"));
class Pricing extends PricingBase_1.default {
/**
* @deprecated - Use v1.messaging instead
*/
get messaging() {
console.warn("messaging is deprecated. Use v1.messaging instead.");
return this.v1.messaging;
}
/**
* @deprecated - Use v1.phoneNumbers instead
*/
get phoneNumbers() {
console.warn("phoneNumbers is deprecated. Use v1.phoneNumbers instead.");
return this.v1.phoneNumbers;
}
/**
* @deprecated - Use v2.voice instead
*/
get voice() {
console.warn("voice is deprecated. Use v2.voice instead.");
return this.v2.voice;
}
/**
* @deprecated - Use v2.countries instead
*/
get countries() {
console.warn("countries is deprecated. Use v2.countries instead.");
return this.v2.countries;
}
/**
* @deprecated - Use v2.numbers instead
*/
get numbers() {
console.warn("numbers is deprecated. Use v2.numbers instead.");
return this.v2.numbers;
}
}
module.exports = Pricing;

16
node_modules/twilio/lib/rest/PricingBase.d.ts generated vendored Normal file
View File

@@ -0,0 +1,16 @@
import Domain from "../base/Domain";
import V1 from "./pricing/V1";
import V2 from "./pricing/V2";
declare class PricingBase extends Domain {
_v1?: V1;
_v2?: V2;
/**
* Initialize pricing domain
*
* @param twilio - The twilio client
*/
constructor(twilio: any);
get v1(): V1;
get v2(): V2;
}
export = PricingBase;

36
node_modules/twilio/lib/rest/PricingBase.js generated vendored Normal file
View File

@@ -0,0 +1,36 @@
"use strict";
/*
* This code was generated by
* ___ _ _ _ _ _ _ ____ ____ ____ _ ____ ____ _ _ ____ ____ ____ ___ __ __
* | | | | | | | | | __ | | |__| | __ | __ |___ |\ | |___ |__/ |__| | | | |__/
* | |_|_| | |___ | |__| |__| | | | |__] |___ | \| |___ | \ | | | |__| | \
*
* NOTE: This class is auto generated by OpenAPI Generator.
* https://openapi-generator.tech
* Do not edit the class manually.
*/
var __importDefault = (this && this.__importDefault) || function (mod) {
return (mod && mod.__esModule) ? mod : { "default": mod };
};
const Domain_1 = __importDefault(require("../base/Domain"));
const V1_1 = __importDefault(require("./pricing/V1"));
const V2_1 = __importDefault(require("./pricing/V2"));
class PricingBase extends Domain_1.default {
/**
* Initialize pricing domain
*
* @param twilio - The twilio client
*/
constructor(twilio) {
super(twilio, "https://pricing.twilio.com");
}
get v1() {
this._v1 = this._v1 || new V1_1.default(this);
return this._v1;
}
get v2() {
this._v2 = this._v2 || new V2_1.default(this);
return this._v2;
}
}
module.exports = PricingBase;

Some files were not shown because too many files have changed in this diff Show More