diff --git a/.gitignore b/.gitignore index a3ade1f174..0443610794 100644 --- a/.gitignore +++ b/.gitignore @@ -31,4 +31,4 @@ yarn.lock package-lock.json **/.openapi-generator* -dist +lib diff --git a/.jshintignore b/.jshintignore index f7161f4943..3ffa51b0db 100644 --- a/.jshintignore +++ b/.jshintignore @@ -1,3 +1,3 @@ spec/integration/** -lib/**/*.d.ts +lib/**/* index.d.ts diff --git a/.nycrc.json b/.nycrc.json index f9dab11751..1e81279630 100644 --- a/.nycrc.json +++ b/.nycrc.json @@ -1,6 +1,6 @@ { "exclude": [ - "lib/rest/**/*.js", + "src/rest/**/*.js", "**/*.spec.js" ], "reporter": [ diff --git a/.prettierignore b/.prettierignore index 9502f7e74d..117fd67934 100644 --- a/.prettierignore +++ b/.prettierignore @@ -1,6 +1,6 @@ .github coverage -dist +lib docs babel.config.js diff --git a/Dockerfile b/Dockerfile index ce0493635f..e40055454b 100644 --- a/Dockerfile +++ b/Dockerfile @@ -5,10 +5,10 @@ WORKDIR /twilio ENV NODE_PATH /usr/local/lib/node_modules -COPY lib ./lib +COPY src ./src COPY spec ./spec COPY examples ./examples -COPY index.ts package.json babel.config.js tsconfig.json ./ +COPY index.* package.json babel.config.js tsconfig.json ./ RUN npm config set unsafe-perm true # Needed to run prepublish as root. diff --git a/Makefile b/Makefile index ef8930d423..e47cfdb0df 100644 --- a/Makefile +++ b/Makefile @@ -15,7 +15,7 @@ docs: npm run typedoc clean: - rm -rf node_modules dist + rm -rf node_modules lib prettier: npm run prettier diff --git a/index.ts b/index.d.ts similarity index 100% rename from index.ts rename to index.d.ts diff --git a/index.js b/index.js new file mode 100644 index 0000000000..8513691f09 --- /dev/null +++ b/index.js @@ -0,0 +1,9 @@ +"use strict"; +var __importDefault = + (this && this.__importDefault) || + function (mod) { + return mod && mod.__esModule ? mod : { default: mod }; + }; +Object.defineProperty(exports, "__esModule", { value: true }); +const lib_1 = __importDefault(require("./lib")); +exports.default = lib_1.default; diff --git a/package.json b/package.json index 42628ed03f..977fe607dd 100644 --- a/package.json +++ b/package.json @@ -55,10 +55,10 @@ "test": "npm run test:javascript && npm run test:typescript", "test:javascript": "jest spec/* --coverage --detectOpenHandles", "test:typescript": "tsc --noEmit", - "jshint": "jshint lib/rest/** lib/base/** lib/http/**", - "jscs": "eslint lib/base/**/**.js lib/http/**/**.js --fix", + "jshint": "jshint src/rest/** src/base/** src/http/**", + "jscs": "eslint src/base/**/**.js src/http/**/**.js --fix", "prepublish": "npm run build", - "build": "tsc && cp package.json dist/", + "build": "tsc", "check": "npm run jshint && npm run jscs", "ci": "npm run test && npm run nsp && npm run prettier-check", "nsp": "npm audit --production", @@ -66,13 +66,13 @@ "prettier-check": "prettier --check .", "cluster": "jest ./cluster_test.spec.ts --coverage", "webhook-test": "jest ./webhook_cluster_test.spec.ts --coverage", - "typedoc": "typedoc --entryPointStrategy expand lib --out docs --logLevel Error" + "typedoc": "typedoc --entryPointStrategy expand src --out docs --logLevel Error" }, "files": [ - "dist" + "list" ], - "main": "./dist/lib", - "types": "./dist/index.d.ts", + "main": "./lib", + "types": "./index.d.ts", "engines": { "node": ">=14.0" }, diff --git a/sonar-project.properties b/sonar-project.properties index 5d09ff8240..cc797f3bef 100644 --- a/sonar-project.properties +++ b/sonar-project.properties @@ -2,8 +2,8 @@ sonar.projectKey=twilio_twilio-node sonar.projectName=twilio-node sonar.organization=twilio -sonar.sources=lib -sonar.exclusions=lib/rest/**/*.*,lib/twiml/*Response.ts +sonar.sources=src +sonar.exclusions=src/rest/**/*.*,lib/twiml/*Response.ts sonar.tests=spec # For Code Coverage analysis diff --git a/lib/base/BaseTwilio.ts b/src/base/BaseTwilio.ts similarity index 100% rename from lib/base/BaseTwilio.ts rename to src/base/BaseTwilio.ts diff --git a/lib/base/Domain.ts b/src/base/Domain.ts similarity index 100% rename from lib/base/Domain.ts rename to src/base/Domain.ts diff --git a/lib/base/Page.ts b/src/base/Page.ts similarity index 100% rename from lib/base/Page.ts rename to src/base/Page.ts diff --git a/lib/base/RequestClient.ts b/src/base/RequestClient.ts similarity index 100% rename from lib/base/RequestClient.ts rename to src/base/RequestClient.ts diff --git a/lib/base/RestException.ts b/src/base/RestException.ts similarity index 100% rename from lib/base/RestException.ts rename to src/base/RestException.ts diff --git a/lib/base/Version.ts b/src/base/Version.ts similarity index 100% rename from lib/base/Version.ts rename to src/base/Version.ts diff --git a/lib/base/deserialize.ts b/src/base/deserialize.ts similarity index 100% rename from lib/base/deserialize.ts rename to src/base/deserialize.ts diff --git a/lib/base/serialize.ts b/src/base/serialize.ts similarity index 100% rename from lib/base/serialize.ts rename to src/base/serialize.ts diff --git a/lib/base/utility.ts b/src/base/utility.ts similarity index 100% rename from lib/base/utility.ts rename to src/base/utility.ts diff --git a/lib/base/values.ts b/src/base/values.ts similarity index 100% rename from lib/base/values.ts rename to src/base/values.ts diff --git a/lib/http/request.ts b/src/http/request.ts similarity index 100% rename from lib/http/request.ts rename to src/http/request.ts diff --git a/lib/http/response.ts b/src/http/response.ts similarity index 100% rename from lib/http/response.ts rename to src/http/response.ts diff --git a/lib/index.ts b/src/index.ts similarity index 100% rename from lib/index.ts rename to src/index.ts diff --git a/lib/interfaces.ts b/src/interfaces.ts similarity index 100% rename from lib/interfaces.ts rename to src/interfaces.ts diff --git a/lib/jwt/AccessToken.ts b/src/jwt/AccessToken.ts similarity index 100% rename from lib/jwt/AccessToken.ts rename to src/jwt/AccessToken.ts diff --git a/lib/jwt/ClientCapability.ts b/src/jwt/ClientCapability.ts similarity index 100% rename from lib/jwt/ClientCapability.ts rename to src/jwt/ClientCapability.ts diff --git a/lib/jwt/taskrouter/TaskRouterCapability.ts b/src/jwt/taskrouter/TaskRouterCapability.ts similarity index 100% rename from lib/jwt/taskrouter/TaskRouterCapability.ts rename to src/jwt/taskrouter/TaskRouterCapability.ts diff --git a/lib/jwt/taskrouter/util.ts b/src/jwt/taskrouter/util.ts similarity index 100% rename from lib/jwt/taskrouter/util.ts rename to src/jwt/taskrouter/util.ts diff --git a/lib/rest/Accounts.ts b/src/rest/Accounts.ts similarity index 100% rename from lib/rest/Accounts.ts rename to src/rest/Accounts.ts diff --git a/lib/rest/AccountsBase.ts b/src/rest/AccountsBase.ts similarity index 100% rename from lib/rest/AccountsBase.ts rename to src/rest/AccountsBase.ts diff --git a/lib/rest/Api.ts b/src/rest/Api.ts similarity index 100% rename from lib/rest/Api.ts rename to src/rest/Api.ts diff --git a/lib/rest/ApiBase.ts b/src/rest/ApiBase.ts similarity index 100% rename from lib/rest/ApiBase.ts rename to src/rest/ApiBase.ts diff --git a/lib/rest/Autopilot.ts b/src/rest/Autopilot.ts similarity index 100% rename from lib/rest/Autopilot.ts rename to src/rest/Autopilot.ts diff --git a/lib/rest/AutopilotBase.ts b/src/rest/AutopilotBase.ts similarity index 100% rename from lib/rest/AutopilotBase.ts rename to src/rest/AutopilotBase.ts diff --git a/lib/rest/Bulkexports.ts b/src/rest/Bulkexports.ts similarity index 100% rename from lib/rest/Bulkexports.ts rename to src/rest/Bulkexports.ts diff --git a/lib/rest/BulkexportsBase.ts b/src/rest/BulkexportsBase.ts similarity index 100% rename from lib/rest/BulkexportsBase.ts rename to src/rest/BulkexportsBase.ts diff --git a/lib/rest/Chat.ts b/src/rest/Chat.ts similarity index 100% rename from lib/rest/Chat.ts rename to src/rest/Chat.ts diff --git a/lib/rest/ChatBase.ts b/src/rest/ChatBase.ts similarity index 100% rename from lib/rest/ChatBase.ts rename to src/rest/ChatBase.ts diff --git a/lib/rest/Content.ts b/src/rest/Content.ts similarity index 100% rename from lib/rest/Content.ts rename to src/rest/Content.ts diff --git a/lib/rest/ContentBase.ts b/src/rest/ContentBase.ts similarity index 100% rename from lib/rest/ContentBase.ts rename to src/rest/ContentBase.ts diff --git a/lib/rest/Conversations.ts b/src/rest/Conversations.ts similarity index 100% rename from lib/rest/Conversations.ts rename to src/rest/Conversations.ts diff --git a/lib/rest/ConversationsBase.ts b/src/rest/ConversationsBase.ts similarity index 100% rename from lib/rest/ConversationsBase.ts rename to src/rest/ConversationsBase.ts diff --git a/lib/rest/Events.ts b/src/rest/Events.ts similarity index 100% rename from lib/rest/Events.ts rename to src/rest/Events.ts diff --git a/lib/rest/EventsBase.ts b/src/rest/EventsBase.ts similarity index 100% rename from lib/rest/EventsBase.ts rename to src/rest/EventsBase.ts diff --git a/lib/rest/FlexApi.ts b/src/rest/FlexApi.ts similarity index 100% rename from lib/rest/FlexApi.ts rename to src/rest/FlexApi.ts diff --git a/lib/rest/FlexApiBase.ts b/src/rest/FlexApiBase.ts similarity index 100% rename from lib/rest/FlexApiBase.ts rename to src/rest/FlexApiBase.ts diff --git a/lib/rest/FrontlineApi.ts b/src/rest/FrontlineApi.ts similarity index 100% rename from lib/rest/FrontlineApi.ts rename to src/rest/FrontlineApi.ts diff --git a/lib/rest/FrontlineApiBase.ts b/src/rest/FrontlineApiBase.ts similarity index 100% rename from lib/rest/FrontlineApiBase.ts rename to src/rest/FrontlineApiBase.ts diff --git a/lib/rest/Insights.ts b/src/rest/Insights.ts similarity index 100% rename from lib/rest/Insights.ts rename to src/rest/Insights.ts diff --git a/lib/rest/InsightsBase.ts b/src/rest/InsightsBase.ts similarity index 100% rename from lib/rest/InsightsBase.ts rename to src/rest/InsightsBase.ts diff --git a/lib/rest/IpMessaging.ts b/src/rest/IpMessaging.ts similarity index 100% rename from lib/rest/IpMessaging.ts rename to src/rest/IpMessaging.ts diff --git a/lib/rest/IpMessagingBase.ts b/src/rest/IpMessagingBase.ts similarity index 100% rename from lib/rest/IpMessagingBase.ts rename to src/rest/IpMessagingBase.ts diff --git a/lib/rest/Lookups.ts b/src/rest/Lookups.ts similarity index 100% rename from lib/rest/Lookups.ts rename to src/rest/Lookups.ts diff --git a/lib/rest/LookupsBase.ts b/src/rest/LookupsBase.ts similarity index 100% rename from lib/rest/LookupsBase.ts rename to src/rest/LookupsBase.ts diff --git a/lib/rest/Media.ts b/src/rest/Media.ts similarity index 100% rename from lib/rest/Media.ts rename to src/rest/Media.ts diff --git a/lib/rest/MediaBase.ts b/src/rest/MediaBase.ts similarity index 100% rename from lib/rest/MediaBase.ts rename to src/rest/MediaBase.ts diff --git a/lib/rest/Messaging.ts b/src/rest/Messaging.ts similarity index 100% rename from lib/rest/Messaging.ts rename to src/rest/Messaging.ts diff --git a/lib/rest/MessagingBase.ts b/src/rest/MessagingBase.ts similarity index 100% rename from lib/rest/MessagingBase.ts rename to src/rest/MessagingBase.ts diff --git a/lib/rest/Microvisor.ts b/src/rest/Microvisor.ts similarity index 100% rename from lib/rest/Microvisor.ts rename to src/rest/Microvisor.ts diff --git a/lib/rest/MicrovisorBase.ts b/src/rest/MicrovisorBase.ts similarity index 100% rename from lib/rest/MicrovisorBase.ts rename to src/rest/MicrovisorBase.ts diff --git a/lib/rest/Monitor.ts b/src/rest/Monitor.ts similarity index 100% rename from lib/rest/Monitor.ts rename to src/rest/Monitor.ts diff --git a/lib/rest/MonitorBase.ts b/src/rest/MonitorBase.ts similarity index 100% rename from lib/rest/MonitorBase.ts rename to src/rest/MonitorBase.ts diff --git a/lib/rest/Notify.ts b/src/rest/Notify.ts similarity index 100% rename from lib/rest/Notify.ts rename to src/rest/Notify.ts diff --git a/lib/rest/NotifyBase.ts b/src/rest/NotifyBase.ts similarity index 100% rename from lib/rest/NotifyBase.ts rename to src/rest/NotifyBase.ts diff --git a/lib/rest/Numbers.ts b/src/rest/Numbers.ts similarity index 100% rename from lib/rest/Numbers.ts rename to src/rest/Numbers.ts diff --git a/lib/rest/NumbersBase.ts b/src/rest/NumbersBase.ts similarity index 100% rename from lib/rest/NumbersBase.ts rename to src/rest/NumbersBase.ts diff --git a/lib/rest/Oauth.ts b/src/rest/Oauth.ts similarity index 100% rename from lib/rest/Oauth.ts rename to src/rest/Oauth.ts diff --git a/lib/rest/OauthBase.ts b/src/rest/OauthBase.ts similarity index 100% rename from lib/rest/OauthBase.ts rename to src/rest/OauthBase.ts diff --git a/lib/rest/Preview.ts b/src/rest/Preview.ts similarity index 100% rename from lib/rest/Preview.ts rename to src/rest/Preview.ts diff --git a/lib/rest/PreviewBase.ts b/src/rest/PreviewBase.ts similarity index 100% rename from lib/rest/PreviewBase.ts rename to src/rest/PreviewBase.ts diff --git a/lib/rest/Pricing.ts b/src/rest/Pricing.ts similarity index 100% rename from lib/rest/Pricing.ts rename to src/rest/Pricing.ts diff --git a/lib/rest/PricingBase.ts b/src/rest/PricingBase.ts similarity index 100% rename from lib/rest/PricingBase.ts rename to src/rest/PricingBase.ts diff --git a/lib/rest/Proxy.ts b/src/rest/Proxy.ts similarity index 100% rename from lib/rest/Proxy.ts rename to src/rest/Proxy.ts diff --git a/lib/rest/ProxyBase.ts b/src/rest/ProxyBase.ts similarity index 100% rename from lib/rest/ProxyBase.ts rename to src/rest/ProxyBase.ts diff --git a/lib/rest/Routes.ts b/src/rest/Routes.ts similarity index 100% rename from lib/rest/Routes.ts rename to src/rest/Routes.ts diff --git a/lib/rest/RoutesBase.ts b/src/rest/RoutesBase.ts similarity index 100% rename from lib/rest/RoutesBase.ts rename to src/rest/RoutesBase.ts diff --git a/lib/rest/Serverless.ts b/src/rest/Serverless.ts similarity index 100% rename from lib/rest/Serverless.ts rename to src/rest/Serverless.ts diff --git a/lib/rest/ServerlessBase.ts b/src/rest/ServerlessBase.ts similarity index 100% rename from lib/rest/ServerlessBase.ts rename to src/rest/ServerlessBase.ts diff --git a/lib/rest/Studio.ts b/src/rest/Studio.ts similarity index 100% rename from lib/rest/Studio.ts rename to src/rest/Studio.ts diff --git a/lib/rest/StudioBase.ts b/src/rest/StudioBase.ts similarity index 100% rename from lib/rest/StudioBase.ts rename to src/rest/StudioBase.ts diff --git a/lib/rest/Supersim.ts b/src/rest/Supersim.ts similarity index 100% rename from lib/rest/Supersim.ts rename to src/rest/Supersim.ts diff --git a/lib/rest/SupersimBase.ts b/src/rest/SupersimBase.ts similarity index 100% rename from lib/rest/SupersimBase.ts rename to src/rest/SupersimBase.ts diff --git a/lib/rest/Sync.ts b/src/rest/Sync.ts similarity index 100% rename from lib/rest/Sync.ts rename to src/rest/Sync.ts diff --git a/lib/rest/SyncBase.ts b/src/rest/SyncBase.ts similarity index 100% rename from lib/rest/SyncBase.ts rename to src/rest/SyncBase.ts diff --git a/lib/rest/Taskrouter.ts b/src/rest/Taskrouter.ts similarity index 100% rename from lib/rest/Taskrouter.ts rename to src/rest/Taskrouter.ts diff --git a/lib/rest/TaskrouterBase.ts b/src/rest/TaskrouterBase.ts similarity index 100% rename from lib/rest/TaskrouterBase.ts rename to src/rest/TaskrouterBase.ts diff --git a/lib/rest/Trunking.ts b/src/rest/Trunking.ts similarity index 100% rename from lib/rest/Trunking.ts rename to src/rest/Trunking.ts diff --git a/lib/rest/TrunkingBase.ts b/src/rest/TrunkingBase.ts similarity index 100% rename from lib/rest/TrunkingBase.ts rename to src/rest/TrunkingBase.ts diff --git a/lib/rest/Trusthub.ts b/src/rest/Trusthub.ts similarity index 100% rename from lib/rest/Trusthub.ts rename to src/rest/Trusthub.ts diff --git a/lib/rest/TrusthubBase.ts b/src/rest/TrusthubBase.ts similarity index 100% rename from lib/rest/TrusthubBase.ts rename to src/rest/TrusthubBase.ts diff --git a/lib/rest/Twilio.ts b/src/rest/Twilio.ts similarity index 100% rename from lib/rest/Twilio.ts rename to src/rest/Twilio.ts diff --git a/lib/rest/Verify.ts b/src/rest/Verify.ts similarity index 100% rename from lib/rest/Verify.ts rename to src/rest/Verify.ts diff --git a/lib/rest/VerifyBase.ts b/src/rest/VerifyBase.ts similarity index 100% rename from lib/rest/VerifyBase.ts rename to src/rest/VerifyBase.ts diff --git a/lib/rest/Video.ts b/src/rest/Video.ts similarity index 100% rename from lib/rest/Video.ts rename to src/rest/Video.ts diff --git a/lib/rest/VideoBase.ts b/src/rest/VideoBase.ts similarity index 100% rename from lib/rest/VideoBase.ts rename to src/rest/VideoBase.ts diff --git a/lib/rest/Voice.ts b/src/rest/Voice.ts similarity index 100% rename from lib/rest/Voice.ts rename to src/rest/Voice.ts diff --git a/lib/rest/VoiceBase.ts b/src/rest/VoiceBase.ts similarity index 100% rename from lib/rest/VoiceBase.ts rename to src/rest/VoiceBase.ts diff --git a/lib/rest/Wireless.ts b/src/rest/Wireless.ts similarity index 100% rename from lib/rest/Wireless.ts rename to src/rest/Wireless.ts diff --git a/lib/rest/WirelessBase.ts b/src/rest/WirelessBase.ts similarity index 100% rename from lib/rest/WirelessBase.ts rename to src/rest/WirelessBase.ts diff --git a/lib/rest/accounts/V1.ts b/src/rest/accounts/V1.ts similarity index 100% rename from lib/rest/accounts/V1.ts rename to src/rest/accounts/V1.ts diff --git a/lib/rest/accounts/v1/authTokenPromotion.ts b/src/rest/accounts/v1/authTokenPromotion.ts similarity index 100% rename from lib/rest/accounts/v1/authTokenPromotion.ts rename to src/rest/accounts/v1/authTokenPromotion.ts diff --git a/lib/rest/accounts/v1/credential.ts b/src/rest/accounts/v1/credential.ts similarity index 100% rename from lib/rest/accounts/v1/credential.ts rename to src/rest/accounts/v1/credential.ts diff --git a/lib/rest/accounts/v1/credential/aws.ts b/src/rest/accounts/v1/credential/aws.ts similarity index 100% rename from lib/rest/accounts/v1/credential/aws.ts rename to src/rest/accounts/v1/credential/aws.ts diff --git a/lib/rest/accounts/v1/credential/publicKey.ts b/src/rest/accounts/v1/credential/publicKey.ts similarity index 100% rename from lib/rest/accounts/v1/credential/publicKey.ts rename to src/rest/accounts/v1/credential/publicKey.ts diff --git a/lib/rest/accounts/v1/secondaryAuthToken.ts b/src/rest/accounts/v1/secondaryAuthToken.ts similarity index 100% rename from lib/rest/accounts/v1/secondaryAuthToken.ts rename to src/rest/accounts/v1/secondaryAuthToken.ts diff --git a/lib/rest/api/V2010.ts b/src/rest/api/V2010.ts similarity index 100% rename from lib/rest/api/V2010.ts rename to src/rest/api/V2010.ts diff --git a/lib/rest/api/v2010/account.ts b/src/rest/api/v2010/account.ts similarity index 100% rename from lib/rest/api/v2010/account.ts rename to src/rest/api/v2010/account.ts diff --git a/lib/rest/api/v2010/account/address.ts b/src/rest/api/v2010/account/address.ts similarity index 100% rename from lib/rest/api/v2010/account/address.ts rename to src/rest/api/v2010/account/address.ts diff --git a/lib/rest/api/v2010/account/address/dependentPhoneNumber.ts b/src/rest/api/v2010/account/address/dependentPhoneNumber.ts similarity index 100% rename from lib/rest/api/v2010/account/address/dependentPhoneNumber.ts rename to src/rest/api/v2010/account/address/dependentPhoneNumber.ts diff --git a/lib/rest/api/v2010/account/application.ts b/src/rest/api/v2010/account/application.ts similarity index 100% rename from lib/rest/api/v2010/account/application.ts rename to src/rest/api/v2010/account/application.ts diff --git a/lib/rest/api/v2010/account/authorizedConnectApp.ts b/src/rest/api/v2010/account/authorizedConnectApp.ts similarity index 100% rename from lib/rest/api/v2010/account/authorizedConnectApp.ts rename to src/rest/api/v2010/account/authorizedConnectApp.ts diff --git a/lib/rest/api/v2010/account/availablePhoneNumberCountry.ts b/src/rest/api/v2010/account/availablePhoneNumberCountry.ts similarity index 100% rename from lib/rest/api/v2010/account/availablePhoneNumberCountry.ts rename to src/rest/api/v2010/account/availablePhoneNumberCountry.ts diff --git a/lib/rest/api/v2010/account/availablePhoneNumberCountry/local.ts b/src/rest/api/v2010/account/availablePhoneNumberCountry/local.ts similarity index 99% rename from lib/rest/api/v2010/account/availablePhoneNumberCountry/local.ts rename to src/rest/api/v2010/account/availablePhoneNumberCountry/local.ts index dd956a7a6e..9baab363b5 100644 --- a/lib/rest/api/v2010/account/availablePhoneNumberCountry/local.ts +++ b/src/rest/api/v2010/account/availablePhoneNumberCountry/local.ts @@ -19,7 +19,7 @@ import V2010 from "../../../V2010"; const deserialize = require("../../../../../base/deserialize"); const serialize = require("../../../../../base/serialize"); import { isValidPathParam } from "../../../../../base/utility"; -import { PhoneNumberCapabilities } from "../../../../../../lib/interfaces"; +import { PhoneNumberCapabilities } from "../../../../../../src/interfaces"; /** * Options to pass to each diff --git a/lib/rest/api/v2010/account/availablePhoneNumberCountry/machineToMachine.ts b/src/rest/api/v2010/account/availablePhoneNumberCountry/machineToMachine.ts similarity index 99% rename from lib/rest/api/v2010/account/availablePhoneNumberCountry/machineToMachine.ts rename to src/rest/api/v2010/account/availablePhoneNumberCountry/machineToMachine.ts index bdd047a8cc..bc662514e1 100644 --- a/lib/rest/api/v2010/account/availablePhoneNumberCountry/machineToMachine.ts +++ b/src/rest/api/v2010/account/availablePhoneNumberCountry/machineToMachine.ts @@ -19,7 +19,7 @@ import V2010 from "../../../V2010"; const deserialize = require("../../../../../base/deserialize"); const serialize = require("../../../../../base/serialize"); import { isValidPathParam } from "../../../../../base/utility"; -import { PhoneNumberCapabilities } from "../../../../../../lib/interfaces"; +import { PhoneNumberCapabilities } from "../../../../../../src/interfaces"; /** * Options to pass to each diff --git a/lib/rest/api/v2010/account/availablePhoneNumberCountry/mobile.ts b/src/rest/api/v2010/account/availablePhoneNumberCountry/mobile.ts similarity index 99% rename from lib/rest/api/v2010/account/availablePhoneNumberCountry/mobile.ts rename to src/rest/api/v2010/account/availablePhoneNumberCountry/mobile.ts index cef6243042..7ef14bbaa5 100644 --- a/lib/rest/api/v2010/account/availablePhoneNumberCountry/mobile.ts +++ b/src/rest/api/v2010/account/availablePhoneNumberCountry/mobile.ts @@ -19,7 +19,7 @@ import V2010 from "../../../V2010"; const deserialize = require("../../../../../base/deserialize"); const serialize = require("../../../../../base/serialize"); import { isValidPathParam } from "../../../../../base/utility"; -import { PhoneNumberCapabilities } from "../../../../../../lib/interfaces"; +import { PhoneNumberCapabilities } from "../../../../../../src/interfaces"; /** * Options to pass to each diff --git a/lib/rest/api/v2010/account/availablePhoneNumberCountry/national.ts b/src/rest/api/v2010/account/availablePhoneNumberCountry/national.ts similarity index 99% rename from lib/rest/api/v2010/account/availablePhoneNumberCountry/national.ts rename to src/rest/api/v2010/account/availablePhoneNumberCountry/national.ts index 702008f26f..99f23a271c 100644 --- a/lib/rest/api/v2010/account/availablePhoneNumberCountry/national.ts +++ b/src/rest/api/v2010/account/availablePhoneNumberCountry/national.ts @@ -19,7 +19,7 @@ import V2010 from "../../../V2010"; const deserialize = require("../../../../../base/deserialize"); const serialize = require("../../../../../base/serialize"); import { isValidPathParam } from "../../../../../base/utility"; -import { PhoneNumberCapabilities } from "../../../../../../lib/interfaces"; +import { PhoneNumberCapabilities } from "../../../../../../src/interfaces"; /** * Options to pass to each diff --git a/lib/rest/api/v2010/account/availablePhoneNumberCountry/sharedCost.ts b/src/rest/api/v2010/account/availablePhoneNumberCountry/sharedCost.ts similarity index 99% rename from lib/rest/api/v2010/account/availablePhoneNumberCountry/sharedCost.ts rename to src/rest/api/v2010/account/availablePhoneNumberCountry/sharedCost.ts index 9a96faf3cb..898ea71d95 100644 --- a/lib/rest/api/v2010/account/availablePhoneNumberCountry/sharedCost.ts +++ b/src/rest/api/v2010/account/availablePhoneNumberCountry/sharedCost.ts @@ -19,7 +19,7 @@ import V2010 from "../../../V2010"; const deserialize = require("../../../../../base/deserialize"); const serialize = require("../../../../../base/serialize"); import { isValidPathParam } from "../../../../../base/utility"; -import { PhoneNumberCapabilities } from "../../../../../../lib/interfaces"; +import { PhoneNumberCapabilities } from "../../../../../../src/interfaces"; /** * Options to pass to each diff --git a/lib/rest/api/v2010/account/availablePhoneNumberCountry/tollFree.ts b/src/rest/api/v2010/account/availablePhoneNumberCountry/tollFree.ts similarity index 99% rename from lib/rest/api/v2010/account/availablePhoneNumberCountry/tollFree.ts rename to src/rest/api/v2010/account/availablePhoneNumberCountry/tollFree.ts index 00ec93b9e8..d56242be80 100644 --- a/lib/rest/api/v2010/account/availablePhoneNumberCountry/tollFree.ts +++ b/src/rest/api/v2010/account/availablePhoneNumberCountry/tollFree.ts @@ -19,7 +19,7 @@ import V2010 from "../../../V2010"; const deserialize = require("../../../../../base/deserialize"); const serialize = require("../../../../../base/serialize"); import { isValidPathParam } from "../../../../../base/utility"; -import { PhoneNumberCapabilities } from "../../../../../../lib/interfaces"; +import { PhoneNumberCapabilities } from "../../../../../../src/interfaces"; /** * Options to pass to each diff --git a/lib/rest/api/v2010/account/availablePhoneNumberCountry/voip.ts b/src/rest/api/v2010/account/availablePhoneNumberCountry/voip.ts similarity index 99% rename from lib/rest/api/v2010/account/availablePhoneNumberCountry/voip.ts rename to src/rest/api/v2010/account/availablePhoneNumberCountry/voip.ts index 1241c55cee..aae38ba5cb 100644 --- a/lib/rest/api/v2010/account/availablePhoneNumberCountry/voip.ts +++ b/src/rest/api/v2010/account/availablePhoneNumberCountry/voip.ts @@ -19,7 +19,7 @@ import V2010 from "../../../V2010"; const deserialize = require("../../../../../base/deserialize"); const serialize = require("../../../../../base/serialize"); import { isValidPathParam } from "../../../../../base/utility"; -import { PhoneNumberCapabilities } from "../../../../../../lib/interfaces"; +import { PhoneNumberCapabilities } from "../../../../../../src/interfaces"; /** * Options to pass to each diff --git a/lib/rest/api/v2010/account/balance.ts b/src/rest/api/v2010/account/balance.ts similarity index 100% rename from lib/rest/api/v2010/account/balance.ts rename to src/rest/api/v2010/account/balance.ts diff --git a/lib/rest/api/v2010/account/call.ts b/src/rest/api/v2010/account/call.ts similarity index 99% rename from lib/rest/api/v2010/account/call.ts rename to src/rest/api/v2010/account/call.ts index 914f68c679..862c5a5100 100644 --- a/lib/rest/api/v2010/account/call.ts +++ b/src/rest/api/v2010/account/call.ts @@ -29,7 +29,7 @@ import { SiprecListInstance } from "./call/siprec"; import { StreamListInstance } from "./call/stream"; import { UserDefinedMessageListInstance } from "./call/userDefinedMessage"; import { UserDefinedMessageSubscriptionListInstance } from "./call/userDefinedMessageSubscription"; -import TwiML from "../../../../../lib/twiml/TwiML"; +import TwiML from "../../../../../src/twiml/TwiML"; type CallStatus = | "queued" diff --git a/lib/rest/api/v2010/account/call/event.ts b/src/rest/api/v2010/account/call/event.ts similarity index 100% rename from lib/rest/api/v2010/account/call/event.ts rename to src/rest/api/v2010/account/call/event.ts diff --git a/lib/rest/api/v2010/account/call/feedback.ts b/src/rest/api/v2010/account/call/feedback.ts similarity index 100% rename from lib/rest/api/v2010/account/call/feedback.ts rename to src/rest/api/v2010/account/call/feedback.ts diff --git a/lib/rest/api/v2010/account/call/feedbackSummary.ts b/src/rest/api/v2010/account/call/feedbackSummary.ts similarity index 100% rename from lib/rest/api/v2010/account/call/feedbackSummary.ts rename to src/rest/api/v2010/account/call/feedbackSummary.ts diff --git a/lib/rest/api/v2010/account/call/notification.ts b/src/rest/api/v2010/account/call/notification.ts similarity index 100% rename from lib/rest/api/v2010/account/call/notification.ts rename to src/rest/api/v2010/account/call/notification.ts diff --git a/lib/rest/api/v2010/account/call/payment.ts b/src/rest/api/v2010/account/call/payment.ts similarity index 100% rename from lib/rest/api/v2010/account/call/payment.ts rename to src/rest/api/v2010/account/call/payment.ts diff --git a/lib/rest/api/v2010/account/call/recording.ts b/src/rest/api/v2010/account/call/recording.ts similarity index 100% rename from lib/rest/api/v2010/account/call/recording.ts rename to src/rest/api/v2010/account/call/recording.ts diff --git a/lib/rest/api/v2010/account/call/siprec.ts b/src/rest/api/v2010/account/call/siprec.ts similarity index 100% rename from lib/rest/api/v2010/account/call/siprec.ts rename to src/rest/api/v2010/account/call/siprec.ts diff --git a/lib/rest/api/v2010/account/call/stream.ts b/src/rest/api/v2010/account/call/stream.ts similarity index 100% rename from lib/rest/api/v2010/account/call/stream.ts rename to src/rest/api/v2010/account/call/stream.ts diff --git a/lib/rest/api/v2010/account/call/userDefinedMessage.ts b/src/rest/api/v2010/account/call/userDefinedMessage.ts similarity index 100% rename from lib/rest/api/v2010/account/call/userDefinedMessage.ts rename to src/rest/api/v2010/account/call/userDefinedMessage.ts diff --git a/lib/rest/api/v2010/account/call/userDefinedMessageSubscription.ts b/src/rest/api/v2010/account/call/userDefinedMessageSubscription.ts similarity index 100% rename from lib/rest/api/v2010/account/call/userDefinedMessageSubscription.ts rename to src/rest/api/v2010/account/call/userDefinedMessageSubscription.ts diff --git a/lib/rest/api/v2010/account/conference.ts b/src/rest/api/v2010/account/conference.ts similarity index 100% rename from lib/rest/api/v2010/account/conference.ts rename to src/rest/api/v2010/account/conference.ts diff --git a/lib/rest/api/v2010/account/conference/participant.ts b/src/rest/api/v2010/account/conference/participant.ts similarity index 100% rename from lib/rest/api/v2010/account/conference/participant.ts rename to src/rest/api/v2010/account/conference/participant.ts diff --git a/lib/rest/api/v2010/account/conference/recording.ts b/src/rest/api/v2010/account/conference/recording.ts similarity index 100% rename from lib/rest/api/v2010/account/conference/recording.ts rename to src/rest/api/v2010/account/conference/recording.ts diff --git a/lib/rest/api/v2010/account/connectApp.ts b/src/rest/api/v2010/account/connectApp.ts similarity index 100% rename from lib/rest/api/v2010/account/connectApp.ts rename to src/rest/api/v2010/account/connectApp.ts diff --git a/lib/rest/api/v2010/account/incomingPhoneNumber.ts b/src/rest/api/v2010/account/incomingPhoneNumber.ts similarity index 99% rename from lib/rest/api/v2010/account/incomingPhoneNumber.ts rename to src/rest/api/v2010/account/incomingPhoneNumber.ts index e6359c1551..d1ec7fd841 100644 --- a/lib/rest/api/v2010/account/incomingPhoneNumber.ts +++ b/src/rest/api/v2010/account/incomingPhoneNumber.ts @@ -23,7 +23,7 @@ import { AssignedAddOnListInstance } from "./incomingPhoneNumber/assignedAddOn"; import { LocalListInstance } from "./incomingPhoneNumber/local"; import { MobileListInstance } from "./incomingPhoneNumber/mobile"; import { TollFreeListInstance } from "./incomingPhoneNumber/tollFree"; -import { PhoneNumberCapabilities } from "../../../../../lib/interfaces"; +import { PhoneNumberCapabilities } from "../../../../../src/interfaces"; type IncomingPhoneNumberAddressRequirement = | "none" diff --git a/lib/rest/api/v2010/account/incomingPhoneNumber/assignedAddOn.ts b/src/rest/api/v2010/account/incomingPhoneNumber/assignedAddOn.ts similarity index 100% rename from lib/rest/api/v2010/account/incomingPhoneNumber/assignedAddOn.ts rename to src/rest/api/v2010/account/incomingPhoneNumber/assignedAddOn.ts diff --git a/lib/rest/api/v2010/account/incomingPhoneNumber/assignedAddOn/assignedAddOnExtension.ts b/src/rest/api/v2010/account/incomingPhoneNumber/assignedAddOn/assignedAddOnExtension.ts similarity index 100% rename from lib/rest/api/v2010/account/incomingPhoneNumber/assignedAddOn/assignedAddOnExtension.ts rename to src/rest/api/v2010/account/incomingPhoneNumber/assignedAddOn/assignedAddOnExtension.ts diff --git a/lib/rest/api/v2010/account/incomingPhoneNumber/local.ts b/src/rest/api/v2010/account/incomingPhoneNumber/local.ts similarity index 99% rename from lib/rest/api/v2010/account/incomingPhoneNumber/local.ts rename to src/rest/api/v2010/account/incomingPhoneNumber/local.ts index fd9ec2c46f..d514f449fd 100644 --- a/lib/rest/api/v2010/account/incomingPhoneNumber/local.ts +++ b/src/rest/api/v2010/account/incomingPhoneNumber/local.ts @@ -19,7 +19,7 @@ import V2010 from "../../../V2010"; const deserialize = require("../../../../../base/deserialize"); const serialize = require("../../../../../base/serialize"); import { isValidPathParam } from "../../../../../base/utility"; -import { PhoneNumberCapabilities } from "../../../../../../lib/interfaces"; +import { PhoneNumberCapabilities } from "../../../../../../src/interfaces"; type IncomingPhoneNumberLocalAddressRequirement = | "none" diff --git a/lib/rest/api/v2010/account/incomingPhoneNumber/mobile.ts b/src/rest/api/v2010/account/incomingPhoneNumber/mobile.ts similarity index 99% rename from lib/rest/api/v2010/account/incomingPhoneNumber/mobile.ts rename to src/rest/api/v2010/account/incomingPhoneNumber/mobile.ts index 44c8f1bfed..8b32ddbf04 100644 --- a/lib/rest/api/v2010/account/incomingPhoneNumber/mobile.ts +++ b/src/rest/api/v2010/account/incomingPhoneNumber/mobile.ts @@ -19,7 +19,7 @@ import V2010 from "../../../V2010"; const deserialize = require("../../../../../base/deserialize"); const serialize = require("../../../../../base/serialize"); import { isValidPathParam } from "../../../../../base/utility"; -import { PhoneNumberCapabilities } from "../../../../../../lib/interfaces"; +import { PhoneNumberCapabilities } from "../../../../../../src/interfaces"; type IncomingPhoneNumberMobileAddressRequirement = | "none" diff --git a/lib/rest/api/v2010/account/incomingPhoneNumber/tollFree.ts b/src/rest/api/v2010/account/incomingPhoneNumber/tollFree.ts similarity index 99% rename from lib/rest/api/v2010/account/incomingPhoneNumber/tollFree.ts rename to src/rest/api/v2010/account/incomingPhoneNumber/tollFree.ts index 4a492705dd..d2efb9228b 100644 --- a/lib/rest/api/v2010/account/incomingPhoneNumber/tollFree.ts +++ b/src/rest/api/v2010/account/incomingPhoneNumber/tollFree.ts @@ -19,7 +19,7 @@ import V2010 from "../../../V2010"; const deserialize = require("../../../../../base/deserialize"); const serialize = require("../../../../../base/serialize"); import { isValidPathParam } from "../../../../../base/utility"; -import { PhoneNumberCapabilities } from "../../../../../../lib/interfaces"; +import { PhoneNumberCapabilities } from "../../../../../../src/interfaces"; type IncomingPhoneNumberTollFreeAddressRequirement = | "none" diff --git a/lib/rest/api/v2010/account/key.ts b/src/rest/api/v2010/account/key.ts similarity index 100% rename from lib/rest/api/v2010/account/key.ts rename to src/rest/api/v2010/account/key.ts diff --git a/lib/rest/api/v2010/account/message.ts b/src/rest/api/v2010/account/message.ts similarity index 100% rename from lib/rest/api/v2010/account/message.ts rename to src/rest/api/v2010/account/message.ts diff --git a/lib/rest/api/v2010/account/message/feedback.ts b/src/rest/api/v2010/account/message/feedback.ts similarity index 100% rename from lib/rest/api/v2010/account/message/feedback.ts rename to src/rest/api/v2010/account/message/feedback.ts diff --git a/lib/rest/api/v2010/account/message/media.ts b/src/rest/api/v2010/account/message/media.ts similarity index 100% rename from lib/rest/api/v2010/account/message/media.ts rename to src/rest/api/v2010/account/message/media.ts diff --git a/lib/rest/api/v2010/account/newKey.ts b/src/rest/api/v2010/account/newKey.ts similarity index 100% rename from lib/rest/api/v2010/account/newKey.ts rename to src/rest/api/v2010/account/newKey.ts diff --git a/lib/rest/api/v2010/account/newSigningKey.ts b/src/rest/api/v2010/account/newSigningKey.ts similarity index 100% rename from lib/rest/api/v2010/account/newSigningKey.ts rename to src/rest/api/v2010/account/newSigningKey.ts diff --git a/lib/rest/api/v2010/account/notification.ts b/src/rest/api/v2010/account/notification.ts similarity index 100% rename from lib/rest/api/v2010/account/notification.ts rename to src/rest/api/v2010/account/notification.ts diff --git a/lib/rest/api/v2010/account/outgoingCallerId.ts b/src/rest/api/v2010/account/outgoingCallerId.ts similarity index 100% rename from lib/rest/api/v2010/account/outgoingCallerId.ts rename to src/rest/api/v2010/account/outgoingCallerId.ts diff --git a/lib/rest/api/v2010/account/queue.ts b/src/rest/api/v2010/account/queue.ts similarity index 100% rename from lib/rest/api/v2010/account/queue.ts rename to src/rest/api/v2010/account/queue.ts diff --git a/lib/rest/api/v2010/account/queue/member.ts b/src/rest/api/v2010/account/queue/member.ts similarity index 100% rename from lib/rest/api/v2010/account/queue/member.ts rename to src/rest/api/v2010/account/queue/member.ts diff --git a/lib/rest/api/v2010/account/recording.ts b/src/rest/api/v2010/account/recording.ts similarity index 100% rename from lib/rest/api/v2010/account/recording.ts rename to src/rest/api/v2010/account/recording.ts diff --git a/lib/rest/api/v2010/account/recording/addOnResult.ts b/src/rest/api/v2010/account/recording/addOnResult.ts similarity index 100% rename from lib/rest/api/v2010/account/recording/addOnResult.ts rename to src/rest/api/v2010/account/recording/addOnResult.ts diff --git a/lib/rest/api/v2010/account/recording/addOnResult/payload.ts b/src/rest/api/v2010/account/recording/addOnResult/payload.ts similarity index 100% rename from lib/rest/api/v2010/account/recording/addOnResult/payload.ts rename to src/rest/api/v2010/account/recording/addOnResult/payload.ts diff --git a/lib/rest/api/v2010/account/recording/transcription.ts b/src/rest/api/v2010/account/recording/transcription.ts similarity index 100% rename from lib/rest/api/v2010/account/recording/transcription.ts rename to src/rest/api/v2010/account/recording/transcription.ts diff --git a/lib/rest/api/v2010/account/shortCode.ts b/src/rest/api/v2010/account/shortCode.ts similarity index 100% rename from lib/rest/api/v2010/account/shortCode.ts rename to src/rest/api/v2010/account/shortCode.ts diff --git a/lib/rest/api/v2010/account/signingKey.ts b/src/rest/api/v2010/account/signingKey.ts similarity index 100% rename from lib/rest/api/v2010/account/signingKey.ts rename to src/rest/api/v2010/account/signingKey.ts diff --git a/lib/rest/api/v2010/account/sip.ts b/src/rest/api/v2010/account/sip.ts similarity index 100% rename from lib/rest/api/v2010/account/sip.ts rename to src/rest/api/v2010/account/sip.ts diff --git a/lib/rest/api/v2010/account/sip/credentialList.ts b/src/rest/api/v2010/account/sip/credentialList.ts similarity index 100% rename from lib/rest/api/v2010/account/sip/credentialList.ts rename to src/rest/api/v2010/account/sip/credentialList.ts diff --git a/lib/rest/api/v2010/account/sip/credentialList/credential.ts b/src/rest/api/v2010/account/sip/credentialList/credential.ts similarity index 100% rename from lib/rest/api/v2010/account/sip/credentialList/credential.ts rename to src/rest/api/v2010/account/sip/credentialList/credential.ts diff --git a/lib/rest/api/v2010/account/sip/domain.ts b/src/rest/api/v2010/account/sip/domain.ts similarity index 100% rename from lib/rest/api/v2010/account/sip/domain.ts rename to src/rest/api/v2010/account/sip/domain.ts diff --git a/lib/rest/api/v2010/account/sip/domain/authTypes.ts b/src/rest/api/v2010/account/sip/domain/authTypes.ts similarity index 100% rename from lib/rest/api/v2010/account/sip/domain/authTypes.ts rename to src/rest/api/v2010/account/sip/domain/authTypes.ts diff --git a/lib/rest/api/v2010/account/sip/domain/authTypes/authTypeCalls.ts b/src/rest/api/v2010/account/sip/domain/authTypes/authTypeCalls.ts similarity index 100% rename from lib/rest/api/v2010/account/sip/domain/authTypes/authTypeCalls.ts rename to src/rest/api/v2010/account/sip/domain/authTypes/authTypeCalls.ts diff --git a/lib/rest/api/v2010/account/sip/domain/authTypes/authTypeCalls/authCallsCredentialListMapping.ts b/src/rest/api/v2010/account/sip/domain/authTypes/authTypeCalls/authCallsCredentialListMapping.ts similarity index 100% rename from lib/rest/api/v2010/account/sip/domain/authTypes/authTypeCalls/authCallsCredentialListMapping.ts rename to src/rest/api/v2010/account/sip/domain/authTypes/authTypeCalls/authCallsCredentialListMapping.ts diff --git a/lib/rest/api/v2010/account/sip/domain/authTypes/authTypeCalls/authCallsIpAccessControlListMapping.ts b/src/rest/api/v2010/account/sip/domain/authTypes/authTypeCalls/authCallsIpAccessControlListMapping.ts similarity index 100% rename from lib/rest/api/v2010/account/sip/domain/authTypes/authTypeCalls/authCallsIpAccessControlListMapping.ts rename to src/rest/api/v2010/account/sip/domain/authTypes/authTypeCalls/authCallsIpAccessControlListMapping.ts diff --git a/lib/rest/api/v2010/account/sip/domain/authTypes/authTypeRegistrations.ts b/src/rest/api/v2010/account/sip/domain/authTypes/authTypeRegistrations.ts similarity index 100% rename from lib/rest/api/v2010/account/sip/domain/authTypes/authTypeRegistrations.ts rename to src/rest/api/v2010/account/sip/domain/authTypes/authTypeRegistrations.ts diff --git a/lib/rest/api/v2010/account/sip/domain/authTypes/authTypeRegistrations/authRegistrationsCredentialListMapping.ts b/src/rest/api/v2010/account/sip/domain/authTypes/authTypeRegistrations/authRegistrationsCredentialListMapping.ts similarity index 100% rename from lib/rest/api/v2010/account/sip/domain/authTypes/authTypeRegistrations/authRegistrationsCredentialListMapping.ts rename to src/rest/api/v2010/account/sip/domain/authTypes/authTypeRegistrations/authRegistrationsCredentialListMapping.ts diff --git a/lib/rest/api/v2010/account/sip/domain/credentialListMapping.ts b/src/rest/api/v2010/account/sip/domain/credentialListMapping.ts similarity index 100% rename from lib/rest/api/v2010/account/sip/domain/credentialListMapping.ts rename to src/rest/api/v2010/account/sip/domain/credentialListMapping.ts diff --git a/lib/rest/api/v2010/account/sip/domain/ipAccessControlListMapping.ts b/src/rest/api/v2010/account/sip/domain/ipAccessControlListMapping.ts similarity index 100% rename from lib/rest/api/v2010/account/sip/domain/ipAccessControlListMapping.ts rename to src/rest/api/v2010/account/sip/domain/ipAccessControlListMapping.ts diff --git a/lib/rest/api/v2010/account/sip/ipAccessControlList.ts b/src/rest/api/v2010/account/sip/ipAccessControlList.ts similarity index 100% rename from lib/rest/api/v2010/account/sip/ipAccessControlList.ts rename to src/rest/api/v2010/account/sip/ipAccessControlList.ts diff --git a/lib/rest/api/v2010/account/sip/ipAccessControlList/ipAddress.ts b/src/rest/api/v2010/account/sip/ipAccessControlList/ipAddress.ts similarity index 100% rename from lib/rest/api/v2010/account/sip/ipAccessControlList/ipAddress.ts rename to src/rest/api/v2010/account/sip/ipAccessControlList/ipAddress.ts diff --git a/lib/rest/api/v2010/account/token.ts b/src/rest/api/v2010/account/token.ts similarity index 100% rename from lib/rest/api/v2010/account/token.ts rename to src/rest/api/v2010/account/token.ts diff --git a/lib/rest/api/v2010/account/transcription.ts b/src/rest/api/v2010/account/transcription.ts similarity index 100% rename from lib/rest/api/v2010/account/transcription.ts rename to src/rest/api/v2010/account/transcription.ts diff --git a/lib/rest/api/v2010/account/usage.ts b/src/rest/api/v2010/account/usage.ts similarity index 100% rename from lib/rest/api/v2010/account/usage.ts rename to src/rest/api/v2010/account/usage.ts diff --git a/lib/rest/api/v2010/account/usage/record.ts b/src/rest/api/v2010/account/usage/record.ts similarity index 100% rename from lib/rest/api/v2010/account/usage/record.ts rename to src/rest/api/v2010/account/usage/record.ts diff --git a/lib/rest/api/v2010/account/usage/record/allTime.ts b/src/rest/api/v2010/account/usage/record/allTime.ts similarity index 100% rename from lib/rest/api/v2010/account/usage/record/allTime.ts rename to src/rest/api/v2010/account/usage/record/allTime.ts diff --git a/lib/rest/api/v2010/account/usage/record/daily.ts b/src/rest/api/v2010/account/usage/record/daily.ts similarity index 100% rename from lib/rest/api/v2010/account/usage/record/daily.ts rename to src/rest/api/v2010/account/usage/record/daily.ts diff --git a/lib/rest/api/v2010/account/usage/record/lastMonth.ts b/src/rest/api/v2010/account/usage/record/lastMonth.ts similarity index 100% rename from lib/rest/api/v2010/account/usage/record/lastMonth.ts rename to src/rest/api/v2010/account/usage/record/lastMonth.ts diff --git a/lib/rest/api/v2010/account/usage/record/monthly.ts b/src/rest/api/v2010/account/usage/record/monthly.ts similarity index 100% rename from lib/rest/api/v2010/account/usage/record/monthly.ts rename to src/rest/api/v2010/account/usage/record/monthly.ts diff --git a/lib/rest/api/v2010/account/usage/record/thisMonth.ts b/src/rest/api/v2010/account/usage/record/thisMonth.ts similarity index 100% rename from lib/rest/api/v2010/account/usage/record/thisMonth.ts rename to src/rest/api/v2010/account/usage/record/thisMonth.ts diff --git a/lib/rest/api/v2010/account/usage/record/today.ts b/src/rest/api/v2010/account/usage/record/today.ts similarity index 100% rename from lib/rest/api/v2010/account/usage/record/today.ts rename to src/rest/api/v2010/account/usage/record/today.ts diff --git a/lib/rest/api/v2010/account/usage/record/yearly.ts b/src/rest/api/v2010/account/usage/record/yearly.ts similarity index 100% rename from lib/rest/api/v2010/account/usage/record/yearly.ts rename to src/rest/api/v2010/account/usage/record/yearly.ts diff --git a/lib/rest/api/v2010/account/usage/record/yesterday.ts b/src/rest/api/v2010/account/usage/record/yesterday.ts similarity index 100% rename from lib/rest/api/v2010/account/usage/record/yesterday.ts rename to src/rest/api/v2010/account/usage/record/yesterday.ts diff --git a/lib/rest/api/v2010/account/usage/trigger.ts b/src/rest/api/v2010/account/usage/trigger.ts similarity index 100% rename from lib/rest/api/v2010/account/usage/trigger.ts rename to src/rest/api/v2010/account/usage/trigger.ts diff --git a/lib/rest/api/v2010/account/validationRequest.ts b/src/rest/api/v2010/account/validationRequest.ts similarity index 100% rename from lib/rest/api/v2010/account/validationRequest.ts rename to src/rest/api/v2010/account/validationRequest.ts diff --git a/lib/rest/autopilot/V1.ts b/src/rest/autopilot/V1.ts similarity index 100% rename from lib/rest/autopilot/V1.ts rename to src/rest/autopilot/V1.ts diff --git a/lib/rest/autopilot/v1/assistant.ts b/src/rest/autopilot/v1/assistant.ts similarity index 100% rename from lib/rest/autopilot/v1/assistant.ts rename to src/rest/autopilot/v1/assistant.ts diff --git a/lib/rest/autopilot/v1/assistant/defaults.ts b/src/rest/autopilot/v1/assistant/defaults.ts similarity index 100% rename from lib/rest/autopilot/v1/assistant/defaults.ts rename to src/rest/autopilot/v1/assistant/defaults.ts diff --git a/lib/rest/autopilot/v1/assistant/dialogue.ts b/src/rest/autopilot/v1/assistant/dialogue.ts similarity index 100% rename from lib/rest/autopilot/v1/assistant/dialogue.ts rename to src/rest/autopilot/v1/assistant/dialogue.ts diff --git a/lib/rest/autopilot/v1/assistant/fieldType.ts b/src/rest/autopilot/v1/assistant/fieldType.ts similarity index 100% rename from lib/rest/autopilot/v1/assistant/fieldType.ts rename to src/rest/autopilot/v1/assistant/fieldType.ts diff --git a/lib/rest/autopilot/v1/assistant/fieldType/fieldValue.ts b/src/rest/autopilot/v1/assistant/fieldType/fieldValue.ts similarity index 100% rename from lib/rest/autopilot/v1/assistant/fieldType/fieldValue.ts rename to src/rest/autopilot/v1/assistant/fieldType/fieldValue.ts diff --git a/lib/rest/autopilot/v1/assistant/modelBuild.ts b/src/rest/autopilot/v1/assistant/modelBuild.ts similarity index 100% rename from lib/rest/autopilot/v1/assistant/modelBuild.ts rename to src/rest/autopilot/v1/assistant/modelBuild.ts diff --git a/lib/rest/autopilot/v1/assistant/query.ts b/src/rest/autopilot/v1/assistant/query.ts similarity index 100% rename from lib/rest/autopilot/v1/assistant/query.ts rename to src/rest/autopilot/v1/assistant/query.ts diff --git a/lib/rest/autopilot/v1/assistant/styleSheet.ts b/src/rest/autopilot/v1/assistant/styleSheet.ts similarity index 100% rename from lib/rest/autopilot/v1/assistant/styleSheet.ts rename to src/rest/autopilot/v1/assistant/styleSheet.ts diff --git a/lib/rest/autopilot/v1/assistant/task.ts b/src/rest/autopilot/v1/assistant/task.ts similarity index 100% rename from lib/rest/autopilot/v1/assistant/task.ts rename to src/rest/autopilot/v1/assistant/task.ts diff --git a/lib/rest/autopilot/v1/assistant/task/field.ts b/src/rest/autopilot/v1/assistant/task/field.ts similarity index 100% rename from lib/rest/autopilot/v1/assistant/task/field.ts rename to src/rest/autopilot/v1/assistant/task/field.ts diff --git a/lib/rest/autopilot/v1/assistant/task/sample.ts b/src/rest/autopilot/v1/assistant/task/sample.ts similarity index 100% rename from lib/rest/autopilot/v1/assistant/task/sample.ts rename to src/rest/autopilot/v1/assistant/task/sample.ts diff --git a/lib/rest/autopilot/v1/assistant/task/taskActions.ts b/src/rest/autopilot/v1/assistant/task/taskActions.ts similarity index 100% rename from lib/rest/autopilot/v1/assistant/task/taskActions.ts rename to src/rest/autopilot/v1/assistant/task/taskActions.ts diff --git a/lib/rest/autopilot/v1/assistant/task/taskStatistics.ts b/src/rest/autopilot/v1/assistant/task/taskStatistics.ts similarity index 100% rename from lib/rest/autopilot/v1/assistant/task/taskStatistics.ts rename to src/rest/autopilot/v1/assistant/task/taskStatistics.ts diff --git a/lib/rest/autopilot/v1/assistant/webhook.ts b/src/rest/autopilot/v1/assistant/webhook.ts similarity index 100% rename from lib/rest/autopilot/v1/assistant/webhook.ts rename to src/rest/autopilot/v1/assistant/webhook.ts diff --git a/lib/rest/autopilot/v1/restoreAssistant.ts b/src/rest/autopilot/v1/restoreAssistant.ts similarity index 100% rename from lib/rest/autopilot/v1/restoreAssistant.ts rename to src/rest/autopilot/v1/restoreAssistant.ts diff --git a/lib/rest/bulkexports/V1.ts b/src/rest/bulkexports/V1.ts similarity index 100% rename from lib/rest/bulkexports/V1.ts rename to src/rest/bulkexports/V1.ts diff --git a/lib/rest/bulkexports/v1/export.ts b/src/rest/bulkexports/v1/export.ts similarity index 100% rename from lib/rest/bulkexports/v1/export.ts rename to src/rest/bulkexports/v1/export.ts diff --git a/lib/rest/bulkexports/v1/export/day.ts b/src/rest/bulkexports/v1/export/day.ts similarity index 100% rename from lib/rest/bulkexports/v1/export/day.ts rename to src/rest/bulkexports/v1/export/day.ts diff --git a/lib/rest/bulkexports/v1/export/exportCustomJob.ts b/src/rest/bulkexports/v1/export/exportCustomJob.ts similarity index 100% rename from lib/rest/bulkexports/v1/export/exportCustomJob.ts rename to src/rest/bulkexports/v1/export/exportCustomJob.ts diff --git a/lib/rest/bulkexports/v1/export/job.ts b/src/rest/bulkexports/v1/export/job.ts similarity index 100% rename from lib/rest/bulkexports/v1/export/job.ts rename to src/rest/bulkexports/v1/export/job.ts diff --git a/lib/rest/bulkexports/v1/exportConfiguration.ts b/src/rest/bulkexports/v1/exportConfiguration.ts similarity index 100% rename from lib/rest/bulkexports/v1/exportConfiguration.ts rename to src/rest/bulkexports/v1/exportConfiguration.ts diff --git a/lib/rest/chat/V1.ts b/src/rest/chat/V1.ts similarity index 100% rename from lib/rest/chat/V1.ts rename to src/rest/chat/V1.ts diff --git a/lib/rest/chat/V2.ts b/src/rest/chat/V2.ts similarity index 100% rename from lib/rest/chat/V2.ts rename to src/rest/chat/V2.ts diff --git a/lib/rest/chat/V3.ts b/src/rest/chat/V3.ts similarity index 100% rename from lib/rest/chat/V3.ts rename to src/rest/chat/V3.ts diff --git a/lib/rest/chat/v1/credential.ts b/src/rest/chat/v1/credential.ts similarity index 100% rename from lib/rest/chat/v1/credential.ts rename to src/rest/chat/v1/credential.ts diff --git a/lib/rest/chat/v1/service.ts b/src/rest/chat/v1/service.ts similarity index 100% rename from lib/rest/chat/v1/service.ts rename to src/rest/chat/v1/service.ts diff --git a/lib/rest/chat/v1/service/channel.ts b/src/rest/chat/v1/service/channel.ts similarity index 100% rename from lib/rest/chat/v1/service/channel.ts rename to src/rest/chat/v1/service/channel.ts diff --git a/lib/rest/chat/v1/service/channel/invite.ts b/src/rest/chat/v1/service/channel/invite.ts similarity index 100% rename from lib/rest/chat/v1/service/channel/invite.ts rename to src/rest/chat/v1/service/channel/invite.ts diff --git a/lib/rest/chat/v1/service/channel/member.ts b/src/rest/chat/v1/service/channel/member.ts similarity index 100% rename from lib/rest/chat/v1/service/channel/member.ts rename to src/rest/chat/v1/service/channel/member.ts diff --git a/lib/rest/chat/v1/service/channel/message.ts b/src/rest/chat/v1/service/channel/message.ts similarity index 100% rename from lib/rest/chat/v1/service/channel/message.ts rename to src/rest/chat/v1/service/channel/message.ts diff --git a/lib/rest/chat/v1/service/role.ts b/src/rest/chat/v1/service/role.ts similarity index 100% rename from lib/rest/chat/v1/service/role.ts rename to src/rest/chat/v1/service/role.ts diff --git a/lib/rest/chat/v1/service/user.ts b/src/rest/chat/v1/service/user.ts similarity index 100% rename from lib/rest/chat/v1/service/user.ts rename to src/rest/chat/v1/service/user.ts diff --git a/lib/rest/chat/v1/service/user/userChannel.ts b/src/rest/chat/v1/service/user/userChannel.ts similarity index 100% rename from lib/rest/chat/v1/service/user/userChannel.ts rename to src/rest/chat/v1/service/user/userChannel.ts diff --git a/lib/rest/chat/v2/credential.ts b/src/rest/chat/v2/credential.ts similarity index 100% rename from lib/rest/chat/v2/credential.ts rename to src/rest/chat/v2/credential.ts diff --git a/lib/rest/chat/v2/service.ts b/src/rest/chat/v2/service.ts similarity index 100% rename from lib/rest/chat/v2/service.ts rename to src/rest/chat/v2/service.ts diff --git a/lib/rest/chat/v2/service/binding.ts b/src/rest/chat/v2/service/binding.ts similarity index 100% rename from lib/rest/chat/v2/service/binding.ts rename to src/rest/chat/v2/service/binding.ts diff --git a/lib/rest/chat/v2/service/channel.ts b/src/rest/chat/v2/service/channel.ts similarity index 100% rename from lib/rest/chat/v2/service/channel.ts rename to src/rest/chat/v2/service/channel.ts diff --git a/lib/rest/chat/v2/service/channel/invite.ts b/src/rest/chat/v2/service/channel/invite.ts similarity index 100% rename from lib/rest/chat/v2/service/channel/invite.ts rename to src/rest/chat/v2/service/channel/invite.ts diff --git a/lib/rest/chat/v2/service/channel/member.ts b/src/rest/chat/v2/service/channel/member.ts similarity index 100% rename from lib/rest/chat/v2/service/channel/member.ts rename to src/rest/chat/v2/service/channel/member.ts diff --git a/lib/rest/chat/v2/service/channel/message.ts b/src/rest/chat/v2/service/channel/message.ts similarity index 100% rename from lib/rest/chat/v2/service/channel/message.ts rename to src/rest/chat/v2/service/channel/message.ts diff --git a/lib/rest/chat/v2/service/channel/webhook.ts b/src/rest/chat/v2/service/channel/webhook.ts similarity index 100% rename from lib/rest/chat/v2/service/channel/webhook.ts rename to src/rest/chat/v2/service/channel/webhook.ts diff --git a/lib/rest/chat/v2/service/role.ts b/src/rest/chat/v2/service/role.ts similarity index 100% rename from lib/rest/chat/v2/service/role.ts rename to src/rest/chat/v2/service/role.ts diff --git a/lib/rest/chat/v2/service/user.ts b/src/rest/chat/v2/service/user.ts similarity index 100% rename from lib/rest/chat/v2/service/user.ts rename to src/rest/chat/v2/service/user.ts diff --git a/lib/rest/chat/v2/service/user/userBinding.ts b/src/rest/chat/v2/service/user/userBinding.ts similarity index 100% rename from lib/rest/chat/v2/service/user/userBinding.ts rename to src/rest/chat/v2/service/user/userBinding.ts diff --git a/lib/rest/chat/v2/service/user/userChannel.ts b/src/rest/chat/v2/service/user/userChannel.ts similarity index 100% rename from lib/rest/chat/v2/service/user/userChannel.ts rename to src/rest/chat/v2/service/user/userChannel.ts diff --git a/lib/rest/chat/v3/channel.ts b/src/rest/chat/v3/channel.ts similarity index 100% rename from lib/rest/chat/v3/channel.ts rename to src/rest/chat/v3/channel.ts diff --git a/lib/rest/content/V1.ts b/src/rest/content/V1.ts similarity index 100% rename from lib/rest/content/V1.ts rename to src/rest/content/V1.ts diff --git a/lib/rest/content/v1/content.ts b/src/rest/content/v1/content.ts similarity index 100% rename from lib/rest/content/v1/content.ts rename to src/rest/content/v1/content.ts diff --git a/lib/rest/content/v1/content/approvalFetch.ts b/src/rest/content/v1/content/approvalFetch.ts similarity index 100% rename from lib/rest/content/v1/content/approvalFetch.ts rename to src/rest/content/v1/content/approvalFetch.ts diff --git a/lib/rest/conversations/V1.ts b/src/rest/conversations/V1.ts similarity index 100% rename from lib/rest/conversations/V1.ts rename to src/rest/conversations/V1.ts diff --git a/lib/rest/conversations/v1/addressConfiguration.ts b/src/rest/conversations/v1/addressConfiguration.ts similarity index 100% rename from lib/rest/conversations/v1/addressConfiguration.ts rename to src/rest/conversations/v1/addressConfiguration.ts diff --git a/lib/rest/conversations/v1/configuration.ts b/src/rest/conversations/v1/configuration.ts similarity index 100% rename from lib/rest/conversations/v1/configuration.ts rename to src/rest/conversations/v1/configuration.ts diff --git a/lib/rest/conversations/v1/configuration/webhook.ts b/src/rest/conversations/v1/configuration/webhook.ts similarity index 100% rename from lib/rest/conversations/v1/configuration/webhook.ts rename to src/rest/conversations/v1/configuration/webhook.ts diff --git a/lib/rest/conversations/v1/conversation.ts b/src/rest/conversations/v1/conversation.ts similarity index 100% rename from lib/rest/conversations/v1/conversation.ts rename to src/rest/conversations/v1/conversation.ts diff --git a/lib/rest/conversations/v1/conversation/message.ts b/src/rest/conversations/v1/conversation/message.ts similarity index 100% rename from lib/rest/conversations/v1/conversation/message.ts rename to src/rest/conversations/v1/conversation/message.ts diff --git a/lib/rest/conversations/v1/conversation/message/deliveryReceipt.ts b/src/rest/conversations/v1/conversation/message/deliveryReceipt.ts similarity index 100% rename from lib/rest/conversations/v1/conversation/message/deliveryReceipt.ts rename to src/rest/conversations/v1/conversation/message/deliveryReceipt.ts diff --git a/lib/rest/conversations/v1/conversation/participant.ts b/src/rest/conversations/v1/conversation/participant.ts similarity index 100% rename from lib/rest/conversations/v1/conversation/participant.ts rename to src/rest/conversations/v1/conversation/participant.ts diff --git a/lib/rest/conversations/v1/conversation/webhook.ts b/src/rest/conversations/v1/conversation/webhook.ts similarity index 100% rename from lib/rest/conversations/v1/conversation/webhook.ts rename to src/rest/conversations/v1/conversation/webhook.ts diff --git a/lib/rest/conversations/v1/credential.ts b/src/rest/conversations/v1/credential.ts similarity index 100% rename from lib/rest/conversations/v1/credential.ts rename to src/rest/conversations/v1/credential.ts diff --git a/lib/rest/conversations/v1/participantConversation.ts b/src/rest/conversations/v1/participantConversation.ts similarity index 100% rename from lib/rest/conversations/v1/participantConversation.ts rename to src/rest/conversations/v1/participantConversation.ts diff --git a/lib/rest/conversations/v1/role.ts b/src/rest/conversations/v1/role.ts similarity index 100% rename from lib/rest/conversations/v1/role.ts rename to src/rest/conversations/v1/role.ts diff --git a/lib/rest/conversations/v1/service.ts b/src/rest/conversations/v1/service.ts similarity index 100% rename from lib/rest/conversations/v1/service.ts rename to src/rest/conversations/v1/service.ts diff --git a/lib/rest/conversations/v1/service/binding.ts b/src/rest/conversations/v1/service/binding.ts similarity index 100% rename from lib/rest/conversations/v1/service/binding.ts rename to src/rest/conversations/v1/service/binding.ts diff --git a/lib/rest/conversations/v1/service/configuration.ts b/src/rest/conversations/v1/service/configuration.ts similarity index 100% rename from lib/rest/conversations/v1/service/configuration.ts rename to src/rest/conversations/v1/service/configuration.ts diff --git a/lib/rest/conversations/v1/service/configuration/notification.ts b/src/rest/conversations/v1/service/configuration/notification.ts similarity index 100% rename from lib/rest/conversations/v1/service/configuration/notification.ts rename to src/rest/conversations/v1/service/configuration/notification.ts diff --git a/lib/rest/conversations/v1/service/configuration/webhook.ts b/src/rest/conversations/v1/service/configuration/webhook.ts similarity index 100% rename from lib/rest/conversations/v1/service/configuration/webhook.ts rename to src/rest/conversations/v1/service/configuration/webhook.ts diff --git a/lib/rest/conversations/v1/service/conversation.ts b/src/rest/conversations/v1/service/conversation.ts similarity index 100% rename from lib/rest/conversations/v1/service/conversation.ts rename to src/rest/conversations/v1/service/conversation.ts diff --git a/lib/rest/conversations/v1/service/conversation/message.ts b/src/rest/conversations/v1/service/conversation/message.ts similarity index 100% rename from lib/rest/conversations/v1/service/conversation/message.ts rename to src/rest/conversations/v1/service/conversation/message.ts diff --git a/lib/rest/conversations/v1/service/conversation/message/deliveryReceipt.ts b/src/rest/conversations/v1/service/conversation/message/deliveryReceipt.ts similarity index 100% rename from lib/rest/conversations/v1/service/conversation/message/deliveryReceipt.ts rename to src/rest/conversations/v1/service/conversation/message/deliveryReceipt.ts diff --git a/lib/rest/conversations/v1/service/conversation/participant.ts b/src/rest/conversations/v1/service/conversation/participant.ts similarity index 100% rename from lib/rest/conversations/v1/service/conversation/participant.ts rename to src/rest/conversations/v1/service/conversation/participant.ts diff --git a/lib/rest/conversations/v1/service/conversation/webhook.ts b/src/rest/conversations/v1/service/conversation/webhook.ts similarity index 100% rename from lib/rest/conversations/v1/service/conversation/webhook.ts rename to src/rest/conversations/v1/service/conversation/webhook.ts diff --git a/lib/rest/conversations/v1/service/participantConversation.ts b/src/rest/conversations/v1/service/participantConversation.ts similarity index 100% rename from lib/rest/conversations/v1/service/participantConversation.ts rename to src/rest/conversations/v1/service/participantConversation.ts diff --git a/lib/rest/conversations/v1/service/role.ts b/src/rest/conversations/v1/service/role.ts similarity index 100% rename from lib/rest/conversations/v1/service/role.ts rename to src/rest/conversations/v1/service/role.ts diff --git a/lib/rest/conversations/v1/service/user.ts b/src/rest/conversations/v1/service/user.ts similarity index 100% rename from lib/rest/conversations/v1/service/user.ts rename to src/rest/conversations/v1/service/user.ts diff --git a/lib/rest/conversations/v1/service/user/userConversation.ts b/src/rest/conversations/v1/service/user/userConversation.ts similarity index 100% rename from lib/rest/conversations/v1/service/user/userConversation.ts rename to src/rest/conversations/v1/service/user/userConversation.ts diff --git a/lib/rest/conversations/v1/user.ts b/src/rest/conversations/v1/user.ts similarity index 100% rename from lib/rest/conversations/v1/user.ts rename to src/rest/conversations/v1/user.ts diff --git a/lib/rest/conversations/v1/user/userConversation.ts b/src/rest/conversations/v1/user/userConversation.ts similarity index 100% rename from lib/rest/conversations/v1/user/userConversation.ts rename to src/rest/conversations/v1/user/userConversation.ts diff --git a/lib/rest/events/V1.ts b/src/rest/events/V1.ts similarity index 100% rename from lib/rest/events/V1.ts rename to src/rest/events/V1.ts diff --git a/lib/rest/events/v1/eventType.ts b/src/rest/events/v1/eventType.ts similarity index 100% rename from lib/rest/events/v1/eventType.ts rename to src/rest/events/v1/eventType.ts diff --git a/lib/rest/events/v1/schema.ts b/src/rest/events/v1/schema.ts similarity index 100% rename from lib/rest/events/v1/schema.ts rename to src/rest/events/v1/schema.ts diff --git a/lib/rest/events/v1/schema/schemaVersion.ts b/src/rest/events/v1/schema/schemaVersion.ts similarity index 100% rename from lib/rest/events/v1/schema/schemaVersion.ts rename to src/rest/events/v1/schema/schemaVersion.ts diff --git a/lib/rest/events/v1/sink.ts b/src/rest/events/v1/sink.ts similarity index 100% rename from lib/rest/events/v1/sink.ts rename to src/rest/events/v1/sink.ts diff --git a/lib/rest/events/v1/sink/sinkTest.ts b/src/rest/events/v1/sink/sinkTest.ts similarity index 100% rename from lib/rest/events/v1/sink/sinkTest.ts rename to src/rest/events/v1/sink/sinkTest.ts diff --git a/lib/rest/events/v1/sink/sinkValidate.ts b/src/rest/events/v1/sink/sinkValidate.ts similarity index 100% rename from lib/rest/events/v1/sink/sinkValidate.ts rename to src/rest/events/v1/sink/sinkValidate.ts diff --git a/lib/rest/events/v1/subscription.ts b/src/rest/events/v1/subscription.ts similarity index 100% rename from lib/rest/events/v1/subscription.ts rename to src/rest/events/v1/subscription.ts diff --git a/lib/rest/events/v1/subscription/subscribedEvent.ts b/src/rest/events/v1/subscription/subscribedEvent.ts similarity index 100% rename from lib/rest/events/v1/subscription/subscribedEvent.ts rename to src/rest/events/v1/subscription/subscribedEvent.ts diff --git a/lib/rest/flexApi/V1.ts b/src/rest/flexApi/V1.ts similarity index 100% rename from lib/rest/flexApi/V1.ts rename to src/rest/flexApi/V1.ts diff --git a/lib/rest/flexApi/V2.ts b/src/rest/flexApi/V2.ts similarity index 100% rename from lib/rest/flexApi/V2.ts rename to src/rest/flexApi/V2.ts diff --git a/lib/rest/flexApi/v1/assessments.ts b/src/rest/flexApi/v1/assessments.ts similarity index 100% rename from lib/rest/flexApi/v1/assessments.ts rename to src/rest/flexApi/v1/assessments.ts diff --git a/lib/rest/flexApi/v1/channel.ts b/src/rest/flexApi/v1/channel.ts similarity index 100% rename from lib/rest/flexApi/v1/channel.ts rename to src/rest/flexApi/v1/channel.ts diff --git a/lib/rest/flexApi/v1/configuration.ts b/src/rest/flexApi/v1/configuration.ts similarity index 100% rename from lib/rest/flexApi/v1/configuration.ts rename to src/rest/flexApi/v1/configuration.ts diff --git a/lib/rest/flexApi/v1/flexFlow.ts b/src/rest/flexApi/v1/flexFlow.ts similarity index 100% rename from lib/rest/flexApi/v1/flexFlow.ts rename to src/rest/flexApi/v1/flexFlow.ts diff --git a/lib/rest/flexApi/v1/insightsQuestionnairesCategory.ts b/src/rest/flexApi/v1/insightsQuestionnairesCategory.ts similarity index 100% rename from lib/rest/flexApi/v1/insightsQuestionnairesCategory.ts rename to src/rest/flexApi/v1/insightsQuestionnairesCategory.ts diff --git a/lib/rest/flexApi/v1/insightsQuestionnairesQuestion.ts b/src/rest/flexApi/v1/insightsQuestionnairesQuestion.ts similarity index 100% rename from lib/rest/flexApi/v1/insightsQuestionnairesQuestion.ts rename to src/rest/flexApi/v1/insightsQuestionnairesQuestion.ts diff --git a/lib/rest/flexApi/v1/insightsSession.ts b/src/rest/flexApi/v1/insightsSession.ts similarity index 100% rename from lib/rest/flexApi/v1/insightsSession.ts rename to src/rest/flexApi/v1/insightsSession.ts diff --git a/lib/rest/flexApi/v1/insightsSettingsAnswerSets.ts b/src/rest/flexApi/v1/insightsSettingsAnswerSets.ts similarity index 100% rename from lib/rest/flexApi/v1/insightsSettingsAnswerSets.ts rename to src/rest/flexApi/v1/insightsSettingsAnswerSets.ts diff --git a/lib/rest/flexApi/v1/insightsSettingsComment.ts b/src/rest/flexApi/v1/insightsSettingsComment.ts similarity index 100% rename from lib/rest/flexApi/v1/insightsSettingsComment.ts rename to src/rest/flexApi/v1/insightsSettingsComment.ts diff --git a/lib/rest/flexApi/v1/insightsUserRoles.ts b/src/rest/flexApi/v1/insightsUserRoles.ts similarity index 100% rename from lib/rest/flexApi/v1/insightsUserRoles.ts rename to src/rest/flexApi/v1/insightsUserRoles.ts diff --git a/lib/rest/flexApi/v1/interaction.ts b/src/rest/flexApi/v1/interaction.ts similarity index 100% rename from lib/rest/flexApi/v1/interaction.ts rename to src/rest/flexApi/v1/interaction.ts diff --git a/lib/rest/flexApi/v1/interaction/interactionChannel.ts b/src/rest/flexApi/v1/interaction/interactionChannel.ts similarity index 100% rename from lib/rest/flexApi/v1/interaction/interactionChannel.ts rename to src/rest/flexApi/v1/interaction/interactionChannel.ts diff --git a/lib/rest/flexApi/v1/interaction/interactionChannel/interactionChannelInvite.ts b/src/rest/flexApi/v1/interaction/interactionChannel/interactionChannelInvite.ts similarity index 100% rename from lib/rest/flexApi/v1/interaction/interactionChannel/interactionChannelInvite.ts rename to src/rest/flexApi/v1/interaction/interactionChannel/interactionChannelInvite.ts diff --git a/lib/rest/flexApi/v1/interaction/interactionChannel/interactionChannelParticipant.ts b/src/rest/flexApi/v1/interaction/interactionChannel/interactionChannelParticipant.ts similarity index 100% rename from lib/rest/flexApi/v1/interaction/interactionChannel/interactionChannelParticipant.ts rename to src/rest/flexApi/v1/interaction/interactionChannel/interactionChannelParticipant.ts diff --git a/lib/rest/flexApi/v1/webChannel.ts b/src/rest/flexApi/v1/webChannel.ts similarity index 100% rename from lib/rest/flexApi/v1/webChannel.ts rename to src/rest/flexApi/v1/webChannel.ts diff --git a/lib/rest/flexApi/v2/webChannels.ts b/src/rest/flexApi/v2/webChannels.ts similarity index 100% rename from lib/rest/flexApi/v2/webChannels.ts rename to src/rest/flexApi/v2/webChannels.ts diff --git a/lib/rest/frontlineApi/V1.ts b/src/rest/frontlineApi/V1.ts similarity index 100% rename from lib/rest/frontlineApi/V1.ts rename to src/rest/frontlineApi/V1.ts diff --git a/lib/rest/frontlineApi/v1/user.ts b/src/rest/frontlineApi/v1/user.ts similarity index 100% rename from lib/rest/frontlineApi/v1/user.ts rename to src/rest/frontlineApi/v1/user.ts diff --git a/lib/rest/insights/V1.ts b/src/rest/insights/V1.ts similarity index 100% rename from lib/rest/insights/V1.ts rename to src/rest/insights/V1.ts diff --git a/lib/rest/insights/v1/call.ts b/src/rest/insights/v1/call.ts similarity index 100% rename from lib/rest/insights/v1/call.ts rename to src/rest/insights/v1/call.ts diff --git a/lib/rest/insights/v1/call/annotation.ts b/src/rest/insights/v1/call/annotation.ts similarity index 100% rename from lib/rest/insights/v1/call/annotation.ts rename to src/rest/insights/v1/call/annotation.ts diff --git a/lib/rest/insights/v1/call/callSummary.ts b/src/rest/insights/v1/call/callSummary.ts similarity index 100% rename from lib/rest/insights/v1/call/callSummary.ts rename to src/rest/insights/v1/call/callSummary.ts diff --git a/lib/rest/insights/v1/call/event.ts b/src/rest/insights/v1/call/event.ts similarity index 100% rename from lib/rest/insights/v1/call/event.ts rename to src/rest/insights/v1/call/event.ts diff --git a/lib/rest/insights/v1/call/metric.ts b/src/rest/insights/v1/call/metric.ts similarity index 100% rename from lib/rest/insights/v1/call/metric.ts rename to src/rest/insights/v1/call/metric.ts diff --git a/lib/rest/insights/v1/callSummaries.ts b/src/rest/insights/v1/callSummaries.ts similarity index 100% rename from lib/rest/insights/v1/callSummaries.ts rename to src/rest/insights/v1/callSummaries.ts diff --git a/lib/rest/insights/v1/conference.ts b/src/rest/insights/v1/conference.ts similarity index 100% rename from lib/rest/insights/v1/conference.ts rename to src/rest/insights/v1/conference.ts diff --git a/lib/rest/insights/v1/conference/conferenceParticipant.ts b/src/rest/insights/v1/conference/conferenceParticipant.ts similarity index 100% rename from lib/rest/insights/v1/conference/conferenceParticipant.ts rename to src/rest/insights/v1/conference/conferenceParticipant.ts diff --git a/lib/rest/insights/v1/room.ts b/src/rest/insights/v1/room.ts similarity index 100% rename from lib/rest/insights/v1/room.ts rename to src/rest/insights/v1/room.ts diff --git a/lib/rest/insights/v1/room/participant.ts b/src/rest/insights/v1/room/participant.ts similarity index 100% rename from lib/rest/insights/v1/room/participant.ts rename to src/rest/insights/v1/room/participant.ts diff --git a/lib/rest/insights/v1/setting.ts b/src/rest/insights/v1/setting.ts similarity index 100% rename from lib/rest/insights/v1/setting.ts rename to src/rest/insights/v1/setting.ts diff --git a/lib/rest/ipMessaging/V1.ts b/src/rest/ipMessaging/V1.ts similarity index 100% rename from lib/rest/ipMessaging/V1.ts rename to src/rest/ipMessaging/V1.ts diff --git a/lib/rest/ipMessaging/V2.ts b/src/rest/ipMessaging/V2.ts similarity index 100% rename from lib/rest/ipMessaging/V2.ts rename to src/rest/ipMessaging/V2.ts diff --git a/lib/rest/ipMessaging/v1/credential.ts b/src/rest/ipMessaging/v1/credential.ts similarity index 100% rename from lib/rest/ipMessaging/v1/credential.ts rename to src/rest/ipMessaging/v1/credential.ts diff --git a/lib/rest/ipMessaging/v1/service.ts b/src/rest/ipMessaging/v1/service.ts similarity index 100% rename from lib/rest/ipMessaging/v1/service.ts rename to src/rest/ipMessaging/v1/service.ts diff --git a/lib/rest/ipMessaging/v1/service/channel.ts b/src/rest/ipMessaging/v1/service/channel.ts similarity index 100% rename from lib/rest/ipMessaging/v1/service/channel.ts rename to src/rest/ipMessaging/v1/service/channel.ts diff --git a/lib/rest/ipMessaging/v1/service/channel/invite.ts b/src/rest/ipMessaging/v1/service/channel/invite.ts similarity index 100% rename from lib/rest/ipMessaging/v1/service/channel/invite.ts rename to src/rest/ipMessaging/v1/service/channel/invite.ts diff --git a/lib/rest/ipMessaging/v1/service/channel/member.ts b/src/rest/ipMessaging/v1/service/channel/member.ts similarity index 100% rename from lib/rest/ipMessaging/v1/service/channel/member.ts rename to src/rest/ipMessaging/v1/service/channel/member.ts diff --git a/lib/rest/ipMessaging/v1/service/channel/message.ts b/src/rest/ipMessaging/v1/service/channel/message.ts similarity index 100% rename from lib/rest/ipMessaging/v1/service/channel/message.ts rename to src/rest/ipMessaging/v1/service/channel/message.ts diff --git a/lib/rest/ipMessaging/v1/service/role.ts b/src/rest/ipMessaging/v1/service/role.ts similarity index 100% rename from lib/rest/ipMessaging/v1/service/role.ts rename to src/rest/ipMessaging/v1/service/role.ts diff --git a/lib/rest/ipMessaging/v1/service/user.ts b/src/rest/ipMessaging/v1/service/user.ts similarity index 100% rename from lib/rest/ipMessaging/v1/service/user.ts rename to src/rest/ipMessaging/v1/service/user.ts diff --git a/lib/rest/ipMessaging/v1/service/user/userChannel.ts b/src/rest/ipMessaging/v1/service/user/userChannel.ts similarity index 100% rename from lib/rest/ipMessaging/v1/service/user/userChannel.ts rename to src/rest/ipMessaging/v1/service/user/userChannel.ts diff --git a/lib/rest/ipMessaging/v2/credential.ts b/src/rest/ipMessaging/v2/credential.ts similarity index 100% rename from lib/rest/ipMessaging/v2/credential.ts rename to src/rest/ipMessaging/v2/credential.ts diff --git a/lib/rest/ipMessaging/v2/service.ts b/src/rest/ipMessaging/v2/service.ts similarity index 100% rename from lib/rest/ipMessaging/v2/service.ts rename to src/rest/ipMessaging/v2/service.ts diff --git a/lib/rest/ipMessaging/v2/service/binding.ts b/src/rest/ipMessaging/v2/service/binding.ts similarity index 100% rename from lib/rest/ipMessaging/v2/service/binding.ts rename to src/rest/ipMessaging/v2/service/binding.ts diff --git a/lib/rest/ipMessaging/v2/service/channel.ts b/src/rest/ipMessaging/v2/service/channel.ts similarity index 100% rename from lib/rest/ipMessaging/v2/service/channel.ts rename to src/rest/ipMessaging/v2/service/channel.ts diff --git a/lib/rest/ipMessaging/v2/service/channel/invite.ts b/src/rest/ipMessaging/v2/service/channel/invite.ts similarity index 100% rename from lib/rest/ipMessaging/v2/service/channel/invite.ts rename to src/rest/ipMessaging/v2/service/channel/invite.ts diff --git a/lib/rest/ipMessaging/v2/service/channel/member.ts b/src/rest/ipMessaging/v2/service/channel/member.ts similarity index 100% rename from lib/rest/ipMessaging/v2/service/channel/member.ts rename to src/rest/ipMessaging/v2/service/channel/member.ts diff --git a/lib/rest/ipMessaging/v2/service/channel/message.ts b/src/rest/ipMessaging/v2/service/channel/message.ts similarity index 100% rename from lib/rest/ipMessaging/v2/service/channel/message.ts rename to src/rest/ipMessaging/v2/service/channel/message.ts diff --git a/lib/rest/ipMessaging/v2/service/channel/webhook.ts b/src/rest/ipMessaging/v2/service/channel/webhook.ts similarity index 100% rename from lib/rest/ipMessaging/v2/service/channel/webhook.ts rename to src/rest/ipMessaging/v2/service/channel/webhook.ts diff --git a/lib/rest/ipMessaging/v2/service/role.ts b/src/rest/ipMessaging/v2/service/role.ts similarity index 100% rename from lib/rest/ipMessaging/v2/service/role.ts rename to src/rest/ipMessaging/v2/service/role.ts diff --git a/lib/rest/ipMessaging/v2/service/user.ts b/src/rest/ipMessaging/v2/service/user.ts similarity index 100% rename from lib/rest/ipMessaging/v2/service/user.ts rename to src/rest/ipMessaging/v2/service/user.ts diff --git a/lib/rest/ipMessaging/v2/service/user/userBinding.ts b/src/rest/ipMessaging/v2/service/user/userBinding.ts similarity index 100% rename from lib/rest/ipMessaging/v2/service/user/userBinding.ts rename to src/rest/ipMessaging/v2/service/user/userBinding.ts diff --git a/lib/rest/ipMessaging/v2/service/user/userChannel.ts b/src/rest/ipMessaging/v2/service/user/userChannel.ts similarity index 100% rename from lib/rest/ipMessaging/v2/service/user/userChannel.ts rename to src/rest/ipMessaging/v2/service/user/userChannel.ts diff --git a/lib/rest/lookups/V1.ts b/src/rest/lookups/V1.ts similarity index 100% rename from lib/rest/lookups/V1.ts rename to src/rest/lookups/V1.ts diff --git a/lib/rest/lookups/V2.ts b/src/rest/lookups/V2.ts similarity index 100% rename from lib/rest/lookups/V2.ts rename to src/rest/lookups/V2.ts diff --git a/lib/rest/lookups/v1/phoneNumber.ts b/src/rest/lookups/v1/phoneNumber.ts similarity index 100% rename from lib/rest/lookups/v1/phoneNumber.ts rename to src/rest/lookups/v1/phoneNumber.ts diff --git a/lib/rest/lookups/v2/phoneNumber.ts b/src/rest/lookups/v2/phoneNumber.ts similarity index 100% rename from lib/rest/lookups/v2/phoneNumber.ts rename to src/rest/lookups/v2/phoneNumber.ts diff --git a/lib/rest/media/V1.ts b/src/rest/media/V1.ts similarity index 100% rename from lib/rest/media/V1.ts rename to src/rest/media/V1.ts diff --git a/lib/rest/media/v1/mediaProcessor.ts b/src/rest/media/v1/mediaProcessor.ts similarity index 100% rename from lib/rest/media/v1/mediaProcessor.ts rename to src/rest/media/v1/mediaProcessor.ts diff --git a/lib/rest/media/v1/mediaRecording.ts b/src/rest/media/v1/mediaRecording.ts similarity index 100% rename from lib/rest/media/v1/mediaRecording.ts rename to src/rest/media/v1/mediaRecording.ts diff --git a/lib/rest/media/v1/playerStreamer.ts b/src/rest/media/v1/playerStreamer.ts similarity index 100% rename from lib/rest/media/v1/playerStreamer.ts rename to src/rest/media/v1/playerStreamer.ts diff --git a/lib/rest/media/v1/playerStreamer/playbackGrant.ts b/src/rest/media/v1/playerStreamer/playbackGrant.ts similarity index 100% rename from lib/rest/media/v1/playerStreamer/playbackGrant.ts rename to src/rest/media/v1/playerStreamer/playbackGrant.ts diff --git a/lib/rest/messaging/V1.ts b/src/rest/messaging/V1.ts similarity index 100% rename from lib/rest/messaging/V1.ts rename to src/rest/messaging/V1.ts diff --git a/lib/rest/messaging/v1/brandRegistration.ts b/src/rest/messaging/v1/brandRegistration.ts similarity index 100% rename from lib/rest/messaging/v1/brandRegistration.ts rename to src/rest/messaging/v1/brandRegistration.ts diff --git a/lib/rest/messaging/v1/brandRegistration/brandVetting.ts b/src/rest/messaging/v1/brandRegistration/brandVetting.ts similarity index 100% rename from lib/rest/messaging/v1/brandRegistration/brandVetting.ts rename to src/rest/messaging/v1/brandRegistration/brandVetting.ts diff --git a/lib/rest/messaging/v1/deactivations.ts b/src/rest/messaging/v1/deactivations.ts similarity index 100% rename from lib/rest/messaging/v1/deactivations.ts rename to src/rest/messaging/v1/deactivations.ts diff --git a/lib/rest/messaging/v1/domainCerts.ts b/src/rest/messaging/v1/domainCerts.ts similarity index 100% rename from lib/rest/messaging/v1/domainCerts.ts rename to src/rest/messaging/v1/domainCerts.ts diff --git a/lib/rest/messaging/v1/domainConfig.ts b/src/rest/messaging/v1/domainConfig.ts similarity index 100% rename from lib/rest/messaging/v1/domainConfig.ts rename to src/rest/messaging/v1/domainConfig.ts diff --git a/lib/rest/messaging/v1/externalCampaign.ts b/src/rest/messaging/v1/externalCampaign.ts similarity index 100% rename from lib/rest/messaging/v1/externalCampaign.ts rename to src/rest/messaging/v1/externalCampaign.ts diff --git a/lib/rest/messaging/v1/service.ts b/src/rest/messaging/v1/service.ts similarity index 100% rename from lib/rest/messaging/v1/service.ts rename to src/rest/messaging/v1/service.ts diff --git a/lib/rest/messaging/v1/service/alphaSender.ts b/src/rest/messaging/v1/service/alphaSender.ts similarity index 100% rename from lib/rest/messaging/v1/service/alphaSender.ts rename to src/rest/messaging/v1/service/alphaSender.ts diff --git a/lib/rest/messaging/v1/service/phoneNumber.ts b/src/rest/messaging/v1/service/phoneNumber.ts similarity index 100% rename from lib/rest/messaging/v1/service/phoneNumber.ts rename to src/rest/messaging/v1/service/phoneNumber.ts diff --git a/lib/rest/messaging/v1/service/shortCode.ts b/src/rest/messaging/v1/service/shortCode.ts similarity index 100% rename from lib/rest/messaging/v1/service/shortCode.ts rename to src/rest/messaging/v1/service/shortCode.ts diff --git a/lib/rest/messaging/v1/service/usAppToPerson.ts b/src/rest/messaging/v1/service/usAppToPerson.ts similarity index 100% rename from lib/rest/messaging/v1/service/usAppToPerson.ts rename to src/rest/messaging/v1/service/usAppToPerson.ts diff --git a/lib/rest/messaging/v1/service/usAppToPersonUsecase.ts b/src/rest/messaging/v1/service/usAppToPersonUsecase.ts similarity index 100% rename from lib/rest/messaging/v1/service/usAppToPersonUsecase.ts rename to src/rest/messaging/v1/service/usAppToPersonUsecase.ts diff --git a/lib/rest/messaging/v1/tollfreeVerification.ts b/src/rest/messaging/v1/tollfreeVerification.ts similarity index 100% rename from lib/rest/messaging/v1/tollfreeVerification.ts rename to src/rest/messaging/v1/tollfreeVerification.ts diff --git a/lib/rest/messaging/v1/usecase.ts b/src/rest/messaging/v1/usecase.ts similarity index 100% rename from lib/rest/messaging/v1/usecase.ts rename to src/rest/messaging/v1/usecase.ts diff --git a/lib/rest/microvisor/V1.ts b/src/rest/microvisor/V1.ts similarity index 100% rename from lib/rest/microvisor/V1.ts rename to src/rest/microvisor/V1.ts diff --git a/lib/rest/microvisor/v1/app.ts b/src/rest/microvisor/v1/app.ts similarity index 100% rename from lib/rest/microvisor/v1/app.ts rename to src/rest/microvisor/v1/app.ts diff --git a/lib/rest/microvisor/v1/device.ts b/src/rest/microvisor/v1/device.ts similarity index 100% rename from lib/rest/microvisor/v1/device.ts rename to src/rest/microvisor/v1/device.ts diff --git a/lib/rest/monitor/V1.ts b/src/rest/monitor/V1.ts similarity index 100% rename from lib/rest/monitor/V1.ts rename to src/rest/monitor/V1.ts diff --git a/lib/rest/monitor/v1/alert.ts b/src/rest/monitor/v1/alert.ts similarity index 100% rename from lib/rest/monitor/v1/alert.ts rename to src/rest/monitor/v1/alert.ts diff --git a/lib/rest/monitor/v1/event.ts b/src/rest/monitor/v1/event.ts similarity index 100% rename from lib/rest/monitor/v1/event.ts rename to src/rest/monitor/v1/event.ts diff --git a/lib/rest/notify/V1.ts b/src/rest/notify/V1.ts similarity index 100% rename from lib/rest/notify/V1.ts rename to src/rest/notify/V1.ts diff --git a/lib/rest/notify/v1/credential.ts b/src/rest/notify/v1/credential.ts similarity index 100% rename from lib/rest/notify/v1/credential.ts rename to src/rest/notify/v1/credential.ts diff --git a/lib/rest/notify/v1/service.ts b/src/rest/notify/v1/service.ts similarity index 100% rename from lib/rest/notify/v1/service.ts rename to src/rest/notify/v1/service.ts diff --git a/lib/rest/notify/v1/service/binding.ts b/src/rest/notify/v1/service/binding.ts similarity index 100% rename from lib/rest/notify/v1/service/binding.ts rename to src/rest/notify/v1/service/binding.ts diff --git a/lib/rest/notify/v1/service/notification.ts b/src/rest/notify/v1/service/notification.ts similarity index 100% rename from lib/rest/notify/v1/service/notification.ts rename to src/rest/notify/v1/service/notification.ts diff --git a/lib/rest/numbers/V2.ts b/src/rest/numbers/V2.ts similarity index 100% rename from lib/rest/numbers/V2.ts rename to src/rest/numbers/V2.ts diff --git a/lib/rest/numbers/v2/regulatoryCompliance.ts b/src/rest/numbers/v2/regulatoryCompliance.ts similarity index 100% rename from lib/rest/numbers/v2/regulatoryCompliance.ts rename to src/rest/numbers/v2/regulatoryCompliance.ts diff --git a/lib/rest/numbers/v2/regulatoryCompliance/bundle.ts b/src/rest/numbers/v2/regulatoryCompliance/bundle.ts similarity index 100% rename from lib/rest/numbers/v2/regulatoryCompliance/bundle.ts rename to src/rest/numbers/v2/regulatoryCompliance/bundle.ts diff --git a/lib/rest/numbers/v2/regulatoryCompliance/bundle/bundleCopy.ts b/src/rest/numbers/v2/regulatoryCompliance/bundle/bundleCopy.ts similarity index 100% rename from lib/rest/numbers/v2/regulatoryCompliance/bundle/bundleCopy.ts rename to src/rest/numbers/v2/regulatoryCompliance/bundle/bundleCopy.ts diff --git a/lib/rest/numbers/v2/regulatoryCompliance/bundle/evaluation.ts b/src/rest/numbers/v2/regulatoryCompliance/bundle/evaluation.ts similarity index 100% rename from lib/rest/numbers/v2/regulatoryCompliance/bundle/evaluation.ts rename to src/rest/numbers/v2/regulatoryCompliance/bundle/evaluation.ts diff --git a/lib/rest/numbers/v2/regulatoryCompliance/bundle/itemAssignment.ts b/src/rest/numbers/v2/regulatoryCompliance/bundle/itemAssignment.ts similarity index 100% rename from lib/rest/numbers/v2/regulatoryCompliance/bundle/itemAssignment.ts rename to src/rest/numbers/v2/regulatoryCompliance/bundle/itemAssignment.ts diff --git a/lib/rest/numbers/v2/regulatoryCompliance/bundle/replaceItems.ts b/src/rest/numbers/v2/regulatoryCompliance/bundle/replaceItems.ts similarity index 100% rename from lib/rest/numbers/v2/regulatoryCompliance/bundle/replaceItems.ts rename to src/rest/numbers/v2/regulatoryCompliance/bundle/replaceItems.ts diff --git a/lib/rest/numbers/v2/regulatoryCompliance/endUser.ts b/src/rest/numbers/v2/regulatoryCompliance/endUser.ts similarity index 100% rename from lib/rest/numbers/v2/regulatoryCompliance/endUser.ts rename to src/rest/numbers/v2/regulatoryCompliance/endUser.ts diff --git a/lib/rest/numbers/v2/regulatoryCompliance/endUserType.ts b/src/rest/numbers/v2/regulatoryCompliance/endUserType.ts similarity index 100% rename from lib/rest/numbers/v2/regulatoryCompliance/endUserType.ts rename to src/rest/numbers/v2/regulatoryCompliance/endUserType.ts diff --git a/lib/rest/numbers/v2/regulatoryCompliance/regulation.ts b/src/rest/numbers/v2/regulatoryCompliance/regulation.ts similarity index 100% rename from lib/rest/numbers/v2/regulatoryCompliance/regulation.ts rename to src/rest/numbers/v2/regulatoryCompliance/regulation.ts diff --git a/lib/rest/numbers/v2/regulatoryCompliance/supportingDocument.ts b/src/rest/numbers/v2/regulatoryCompliance/supportingDocument.ts similarity index 100% rename from lib/rest/numbers/v2/regulatoryCompliance/supportingDocument.ts rename to src/rest/numbers/v2/regulatoryCompliance/supportingDocument.ts diff --git a/lib/rest/numbers/v2/regulatoryCompliance/supportingDocumentType.ts b/src/rest/numbers/v2/regulatoryCompliance/supportingDocumentType.ts similarity index 100% rename from lib/rest/numbers/v2/regulatoryCompliance/supportingDocumentType.ts rename to src/rest/numbers/v2/regulatoryCompliance/supportingDocumentType.ts diff --git a/lib/rest/oauth/V1.ts b/src/rest/oauth/V1.ts similarity index 100% rename from lib/rest/oauth/V1.ts rename to src/rest/oauth/V1.ts diff --git a/lib/rest/oauth/v1/deviceCode.ts b/src/rest/oauth/v1/deviceCode.ts similarity index 100% rename from lib/rest/oauth/v1/deviceCode.ts rename to src/rest/oauth/v1/deviceCode.ts diff --git a/lib/rest/oauth/v1/oauth.ts b/src/rest/oauth/v1/oauth.ts similarity index 100% rename from lib/rest/oauth/v1/oauth.ts rename to src/rest/oauth/v1/oauth.ts diff --git a/lib/rest/oauth/v1/openidDiscovery.ts b/src/rest/oauth/v1/openidDiscovery.ts similarity index 100% rename from lib/rest/oauth/v1/openidDiscovery.ts rename to src/rest/oauth/v1/openidDiscovery.ts diff --git a/lib/rest/oauth/v1/token.ts b/src/rest/oauth/v1/token.ts similarity index 100% rename from lib/rest/oauth/v1/token.ts rename to src/rest/oauth/v1/token.ts diff --git a/lib/rest/oauth/v1/userInfo.ts b/src/rest/oauth/v1/userInfo.ts similarity index 100% rename from lib/rest/oauth/v1/userInfo.ts rename to src/rest/oauth/v1/userInfo.ts diff --git a/lib/rest/preview/DeployedDevices.ts b/src/rest/preview/DeployedDevices.ts similarity index 100% rename from lib/rest/preview/DeployedDevices.ts rename to src/rest/preview/DeployedDevices.ts diff --git a/lib/rest/preview/HostedNumbers.ts b/src/rest/preview/HostedNumbers.ts similarity index 100% rename from lib/rest/preview/HostedNumbers.ts rename to src/rest/preview/HostedNumbers.ts diff --git a/lib/rest/preview/Marketplace.ts b/src/rest/preview/Marketplace.ts similarity index 100% rename from lib/rest/preview/Marketplace.ts rename to src/rest/preview/Marketplace.ts diff --git a/lib/rest/preview/Sync.ts b/src/rest/preview/Sync.ts similarity index 100% rename from lib/rest/preview/Sync.ts rename to src/rest/preview/Sync.ts diff --git a/lib/rest/preview/Understand.ts b/src/rest/preview/Understand.ts similarity index 100% rename from lib/rest/preview/Understand.ts rename to src/rest/preview/Understand.ts diff --git a/lib/rest/preview/Wireless.ts b/src/rest/preview/Wireless.ts similarity index 100% rename from lib/rest/preview/Wireless.ts rename to src/rest/preview/Wireless.ts diff --git a/lib/rest/preview/deployed_devices/fleet.ts b/src/rest/preview/deployed_devices/fleet.ts similarity index 100% rename from lib/rest/preview/deployed_devices/fleet.ts rename to src/rest/preview/deployed_devices/fleet.ts diff --git a/lib/rest/preview/deployed_devices/fleet/certificate.ts b/src/rest/preview/deployed_devices/fleet/certificate.ts similarity index 100% rename from lib/rest/preview/deployed_devices/fleet/certificate.ts rename to src/rest/preview/deployed_devices/fleet/certificate.ts diff --git a/lib/rest/preview/deployed_devices/fleet/deployment.ts b/src/rest/preview/deployed_devices/fleet/deployment.ts similarity index 100% rename from lib/rest/preview/deployed_devices/fleet/deployment.ts rename to src/rest/preview/deployed_devices/fleet/deployment.ts diff --git a/lib/rest/preview/deployed_devices/fleet/device.ts b/src/rest/preview/deployed_devices/fleet/device.ts similarity index 100% rename from lib/rest/preview/deployed_devices/fleet/device.ts rename to src/rest/preview/deployed_devices/fleet/device.ts diff --git a/lib/rest/preview/deployed_devices/fleet/key.ts b/src/rest/preview/deployed_devices/fleet/key.ts similarity index 100% rename from lib/rest/preview/deployed_devices/fleet/key.ts rename to src/rest/preview/deployed_devices/fleet/key.ts diff --git a/lib/rest/preview/hosted_numbers/authorizationDocument.ts b/src/rest/preview/hosted_numbers/authorizationDocument.ts similarity index 100% rename from lib/rest/preview/hosted_numbers/authorizationDocument.ts rename to src/rest/preview/hosted_numbers/authorizationDocument.ts diff --git a/lib/rest/preview/hosted_numbers/authorizationDocument/dependentHostedNumberOrder.ts b/src/rest/preview/hosted_numbers/authorizationDocument/dependentHostedNumberOrder.ts similarity index 99% rename from lib/rest/preview/hosted_numbers/authorizationDocument/dependentHostedNumberOrder.ts rename to src/rest/preview/hosted_numbers/authorizationDocument/dependentHostedNumberOrder.ts index 81f23a8907..0156d32f14 100644 --- a/lib/rest/preview/hosted_numbers/authorizationDocument/dependentHostedNumberOrder.ts +++ b/src/rest/preview/hosted_numbers/authorizationDocument/dependentHostedNumberOrder.ts @@ -19,7 +19,7 @@ import HostedNumbers from "../../HostedNumbers"; const deserialize = require("../../../../base/deserialize"); const serialize = require("../../../../base/serialize"); import { isValidPathParam } from "../../../../base/utility"; -import { PhoneNumberCapabilities } from "../../../../../lib/interfaces"; +import { PhoneNumberCapabilities } from "../../../../../src/interfaces"; type DependentHostedNumberOrderStatus = | "received" diff --git a/lib/rest/preview/hosted_numbers/hostedNumberOrder.ts b/src/rest/preview/hosted_numbers/hostedNumberOrder.ts similarity index 99% rename from lib/rest/preview/hosted_numbers/hostedNumberOrder.ts rename to src/rest/preview/hosted_numbers/hostedNumberOrder.ts index f1b3beaaa8..c3b5bb1387 100644 --- a/lib/rest/preview/hosted_numbers/hostedNumberOrder.ts +++ b/src/rest/preview/hosted_numbers/hostedNumberOrder.ts @@ -19,7 +19,7 @@ import HostedNumbers from "../HostedNumbers"; const deserialize = require("../../../base/deserialize"); const serialize = require("../../../base/serialize"); import { isValidPathParam } from "../../../base/utility"; -import { PhoneNumberCapabilities } from "../../../../lib/interfaces"; +import { PhoneNumberCapabilities } from "../../../../src/interfaces"; type HostedNumberOrderStatus = | "received" diff --git a/lib/rest/preview/marketplace/availableAddOn.ts b/src/rest/preview/marketplace/availableAddOn.ts similarity index 100% rename from lib/rest/preview/marketplace/availableAddOn.ts rename to src/rest/preview/marketplace/availableAddOn.ts diff --git a/lib/rest/preview/marketplace/availableAddOn/availableAddOnExtension.ts b/src/rest/preview/marketplace/availableAddOn/availableAddOnExtension.ts similarity index 100% rename from lib/rest/preview/marketplace/availableAddOn/availableAddOnExtension.ts rename to src/rest/preview/marketplace/availableAddOn/availableAddOnExtension.ts diff --git a/lib/rest/preview/marketplace/installedAddOn.ts b/src/rest/preview/marketplace/installedAddOn.ts similarity index 100% rename from lib/rest/preview/marketplace/installedAddOn.ts rename to src/rest/preview/marketplace/installedAddOn.ts diff --git a/lib/rest/preview/marketplace/installedAddOn/installedAddOnExtension.ts b/src/rest/preview/marketplace/installedAddOn/installedAddOnExtension.ts similarity index 100% rename from lib/rest/preview/marketplace/installedAddOn/installedAddOnExtension.ts rename to src/rest/preview/marketplace/installedAddOn/installedAddOnExtension.ts diff --git a/lib/rest/preview/sync/service.ts b/src/rest/preview/sync/service.ts similarity index 100% rename from lib/rest/preview/sync/service.ts rename to src/rest/preview/sync/service.ts diff --git a/lib/rest/preview/sync/service/document.ts b/src/rest/preview/sync/service/document.ts similarity index 100% rename from lib/rest/preview/sync/service/document.ts rename to src/rest/preview/sync/service/document.ts diff --git a/lib/rest/preview/sync/service/document/documentPermission.ts b/src/rest/preview/sync/service/document/documentPermission.ts similarity index 100% rename from lib/rest/preview/sync/service/document/documentPermission.ts rename to src/rest/preview/sync/service/document/documentPermission.ts diff --git a/lib/rest/preview/sync/service/syncList.ts b/src/rest/preview/sync/service/syncList.ts similarity index 100% rename from lib/rest/preview/sync/service/syncList.ts rename to src/rest/preview/sync/service/syncList.ts diff --git a/lib/rest/preview/sync/service/syncList/syncListItem.ts b/src/rest/preview/sync/service/syncList/syncListItem.ts similarity index 100% rename from lib/rest/preview/sync/service/syncList/syncListItem.ts rename to src/rest/preview/sync/service/syncList/syncListItem.ts diff --git a/lib/rest/preview/sync/service/syncList/syncListPermission.ts b/src/rest/preview/sync/service/syncList/syncListPermission.ts similarity index 100% rename from lib/rest/preview/sync/service/syncList/syncListPermission.ts rename to src/rest/preview/sync/service/syncList/syncListPermission.ts diff --git a/lib/rest/preview/sync/service/syncMap.ts b/src/rest/preview/sync/service/syncMap.ts similarity index 100% rename from lib/rest/preview/sync/service/syncMap.ts rename to src/rest/preview/sync/service/syncMap.ts diff --git a/lib/rest/preview/sync/service/syncMap/syncMapItem.ts b/src/rest/preview/sync/service/syncMap/syncMapItem.ts similarity index 100% rename from lib/rest/preview/sync/service/syncMap/syncMapItem.ts rename to src/rest/preview/sync/service/syncMap/syncMapItem.ts diff --git a/lib/rest/preview/sync/service/syncMap/syncMapPermission.ts b/src/rest/preview/sync/service/syncMap/syncMapPermission.ts similarity index 100% rename from lib/rest/preview/sync/service/syncMap/syncMapPermission.ts rename to src/rest/preview/sync/service/syncMap/syncMapPermission.ts diff --git a/lib/rest/preview/understand/assistant.ts b/src/rest/preview/understand/assistant.ts similarity index 100% rename from lib/rest/preview/understand/assistant.ts rename to src/rest/preview/understand/assistant.ts diff --git a/lib/rest/preview/understand/assistant/assistantFallbackActions.ts b/src/rest/preview/understand/assistant/assistantFallbackActions.ts similarity index 100% rename from lib/rest/preview/understand/assistant/assistantFallbackActions.ts rename to src/rest/preview/understand/assistant/assistantFallbackActions.ts diff --git a/lib/rest/preview/understand/assistant/assistantInitiationActions.ts b/src/rest/preview/understand/assistant/assistantInitiationActions.ts similarity index 100% rename from lib/rest/preview/understand/assistant/assistantInitiationActions.ts rename to src/rest/preview/understand/assistant/assistantInitiationActions.ts diff --git a/lib/rest/preview/understand/assistant/dialogue.ts b/src/rest/preview/understand/assistant/dialogue.ts similarity index 100% rename from lib/rest/preview/understand/assistant/dialogue.ts rename to src/rest/preview/understand/assistant/dialogue.ts diff --git a/lib/rest/preview/understand/assistant/fieldType.ts b/src/rest/preview/understand/assistant/fieldType.ts similarity index 100% rename from lib/rest/preview/understand/assistant/fieldType.ts rename to src/rest/preview/understand/assistant/fieldType.ts diff --git a/lib/rest/preview/understand/assistant/fieldType/fieldValue.ts b/src/rest/preview/understand/assistant/fieldType/fieldValue.ts similarity index 100% rename from lib/rest/preview/understand/assistant/fieldType/fieldValue.ts rename to src/rest/preview/understand/assistant/fieldType/fieldValue.ts diff --git a/lib/rest/preview/understand/assistant/modelBuild.ts b/src/rest/preview/understand/assistant/modelBuild.ts similarity index 100% rename from lib/rest/preview/understand/assistant/modelBuild.ts rename to src/rest/preview/understand/assistant/modelBuild.ts diff --git a/lib/rest/preview/understand/assistant/query.ts b/src/rest/preview/understand/assistant/query.ts similarity index 100% rename from lib/rest/preview/understand/assistant/query.ts rename to src/rest/preview/understand/assistant/query.ts diff --git a/lib/rest/preview/understand/assistant/styleSheet.ts b/src/rest/preview/understand/assistant/styleSheet.ts similarity index 100% rename from lib/rest/preview/understand/assistant/styleSheet.ts rename to src/rest/preview/understand/assistant/styleSheet.ts diff --git a/lib/rest/preview/understand/assistant/task.ts b/src/rest/preview/understand/assistant/task.ts similarity index 100% rename from lib/rest/preview/understand/assistant/task.ts rename to src/rest/preview/understand/assistant/task.ts diff --git a/lib/rest/preview/understand/assistant/task/field.ts b/src/rest/preview/understand/assistant/task/field.ts similarity index 100% rename from lib/rest/preview/understand/assistant/task/field.ts rename to src/rest/preview/understand/assistant/task/field.ts diff --git a/lib/rest/preview/understand/assistant/task/sample.ts b/src/rest/preview/understand/assistant/task/sample.ts similarity index 100% rename from lib/rest/preview/understand/assistant/task/sample.ts rename to src/rest/preview/understand/assistant/task/sample.ts diff --git a/lib/rest/preview/understand/assistant/task/taskActions.ts b/src/rest/preview/understand/assistant/task/taskActions.ts similarity index 100% rename from lib/rest/preview/understand/assistant/task/taskActions.ts rename to src/rest/preview/understand/assistant/task/taskActions.ts diff --git a/lib/rest/preview/understand/assistant/task/taskStatistics.ts b/src/rest/preview/understand/assistant/task/taskStatistics.ts similarity index 100% rename from lib/rest/preview/understand/assistant/task/taskStatistics.ts rename to src/rest/preview/understand/assistant/task/taskStatistics.ts diff --git a/lib/rest/preview/wireless/command.ts b/src/rest/preview/wireless/command.ts similarity index 100% rename from lib/rest/preview/wireless/command.ts rename to src/rest/preview/wireless/command.ts diff --git a/lib/rest/preview/wireless/ratePlan.ts b/src/rest/preview/wireless/ratePlan.ts similarity index 100% rename from lib/rest/preview/wireless/ratePlan.ts rename to src/rest/preview/wireless/ratePlan.ts diff --git a/lib/rest/preview/wireless/sim.ts b/src/rest/preview/wireless/sim.ts similarity index 100% rename from lib/rest/preview/wireless/sim.ts rename to src/rest/preview/wireless/sim.ts diff --git a/lib/rest/preview/wireless/sim/usage.ts b/src/rest/preview/wireless/sim/usage.ts similarity index 100% rename from lib/rest/preview/wireless/sim/usage.ts rename to src/rest/preview/wireless/sim/usage.ts diff --git a/lib/rest/pricing/V1.ts b/src/rest/pricing/V1.ts similarity index 100% rename from lib/rest/pricing/V1.ts rename to src/rest/pricing/V1.ts diff --git a/lib/rest/pricing/V2.ts b/src/rest/pricing/V2.ts similarity index 100% rename from lib/rest/pricing/V2.ts rename to src/rest/pricing/V2.ts diff --git a/lib/rest/pricing/v1/messaging.ts b/src/rest/pricing/v1/messaging.ts similarity index 100% rename from lib/rest/pricing/v1/messaging.ts rename to src/rest/pricing/v1/messaging.ts diff --git a/lib/rest/pricing/v1/messaging/country.ts b/src/rest/pricing/v1/messaging/country.ts similarity index 100% rename from lib/rest/pricing/v1/messaging/country.ts rename to src/rest/pricing/v1/messaging/country.ts diff --git a/lib/rest/pricing/v1/phoneNumber.ts b/src/rest/pricing/v1/phoneNumber.ts similarity index 100% rename from lib/rest/pricing/v1/phoneNumber.ts rename to src/rest/pricing/v1/phoneNumber.ts diff --git a/lib/rest/pricing/v1/phoneNumber/country.ts b/src/rest/pricing/v1/phoneNumber/country.ts similarity index 100% rename from lib/rest/pricing/v1/phoneNumber/country.ts rename to src/rest/pricing/v1/phoneNumber/country.ts diff --git a/lib/rest/pricing/v1/voice.ts b/src/rest/pricing/v1/voice.ts similarity index 100% rename from lib/rest/pricing/v1/voice.ts rename to src/rest/pricing/v1/voice.ts diff --git a/lib/rest/pricing/v1/voice/country.ts b/src/rest/pricing/v1/voice/country.ts similarity index 100% rename from lib/rest/pricing/v1/voice/country.ts rename to src/rest/pricing/v1/voice/country.ts diff --git a/lib/rest/pricing/v1/voice/number.ts b/src/rest/pricing/v1/voice/number.ts similarity index 100% rename from lib/rest/pricing/v1/voice/number.ts rename to src/rest/pricing/v1/voice/number.ts diff --git a/lib/rest/pricing/v2/country.ts b/src/rest/pricing/v2/country.ts similarity index 100% rename from lib/rest/pricing/v2/country.ts rename to src/rest/pricing/v2/country.ts diff --git a/lib/rest/pricing/v2/number.ts b/src/rest/pricing/v2/number.ts similarity index 100% rename from lib/rest/pricing/v2/number.ts rename to src/rest/pricing/v2/number.ts diff --git a/lib/rest/pricing/v2/voice.ts b/src/rest/pricing/v2/voice.ts similarity index 100% rename from lib/rest/pricing/v2/voice.ts rename to src/rest/pricing/v2/voice.ts diff --git a/lib/rest/pricing/v2/voice/country.ts b/src/rest/pricing/v2/voice/country.ts similarity index 100% rename from lib/rest/pricing/v2/voice/country.ts rename to src/rest/pricing/v2/voice/country.ts diff --git a/lib/rest/pricing/v2/voice/number.ts b/src/rest/pricing/v2/voice/number.ts similarity index 100% rename from lib/rest/pricing/v2/voice/number.ts rename to src/rest/pricing/v2/voice/number.ts diff --git a/lib/rest/proxy/V1.ts b/src/rest/proxy/V1.ts similarity index 100% rename from lib/rest/proxy/V1.ts rename to src/rest/proxy/V1.ts diff --git a/lib/rest/proxy/v1/service.ts b/src/rest/proxy/v1/service.ts similarity index 100% rename from lib/rest/proxy/v1/service.ts rename to src/rest/proxy/v1/service.ts diff --git a/lib/rest/proxy/v1/service/phoneNumber.ts b/src/rest/proxy/v1/service/phoneNumber.ts similarity index 99% rename from lib/rest/proxy/v1/service/phoneNumber.ts rename to src/rest/proxy/v1/service/phoneNumber.ts index d4689b4e74..5adbf3ab7a 100644 --- a/lib/rest/proxy/v1/service/phoneNumber.ts +++ b/src/rest/proxy/v1/service/phoneNumber.ts @@ -19,7 +19,7 @@ import V1 from "../../V1"; const deserialize = require("../../../../base/deserialize"); const serialize = require("../../../../base/serialize"); import { isValidPathParam } from "../../../../base/utility"; -import { PhoneNumberCapabilities } from "../../../../../lib/interfaces"; +import { PhoneNumberCapabilities } from "../../../../../src/interfaces"; /** * Options to pass to update a PhoneNumberInstance diff --git a/lib/rest/proxy/v1/service/session.ts b/src/rest/proxy/v1/service/session.ts similarity index 100% rename from lib/rest/proxy/v1/service/session.ts rename to src/rest/proxy/v1/service/session.ts diff --git a/lib/rest/proxy/v1/service/session/interaction.ts b/src/rest/proxy/v1/service/session/interaction.ts similarity index 100% rename from lib/rest/proxy/v1/service/session/interaction.ts rename to src/rest/proxy/v1/service/session/interaction.ts diff --git a/lib/rest/proxy/v1/service/session/participant.ts b/src/rest/proxy/v1/service/session/participant.ts similarity index 100% rename from lib/rest/proxy/v1/service/session/participant.ts rename to src/rest/proxy/v1/service/session/participant.ts diff --git a/lib/rest/proxy/v1/service/session/participant/messageInteraction.ts b/src/rest/proxy/v1/service/session/participant/messageInteraction.ts similarity index 100% rename from lib/rest/proxy/v1/service/session/participant/messageInteraction.ts rename to src/rest/proxy/v1/service/session/participant/messageInteraction.ts diff --git a/lib/rest/proxy/v1/service/shortCode.ts b/src/rest/proxy/v1/service/shortCode.ts similarity index 99% rename from lib/rest/proxy/v1/service/shortCode.ts rename to src/rest/proxy/v1/service/shortCode.ts index 62f73b8e1e..5af6039b08 100644 --- a/lib/rest/proxy/v1/service/shortCode.ts +++ b/src/rest/proxy/v1/service/shortCode.ts @@ -19,7 +19,7 @@ import V1 from "../../V1"; const deserialize = require("../../../../base/deserialize"); const serialize = require("../../../../base/serialize"); import { isValidPathParam } from "../../../../base/utility"; -import { PhoneNumberCapabilities } from "../../../../../lib/interfaces"; +import { PhoneNumberCapabilities } from "../../../../../src/interfaces"; /** * Options to pass to update a ShortCodeInstance diff --git a/lib/rest/routes/V2.ts b/src/rest/routes/V2.ts similarity index 100% rename from lib/rest/routes/V2.ts rename to src/rest/routes/V2.ts diff --git a/lib/rest/routes/v2/phoneNumber.ts b/src/rest/routes/v2/phoneNumber.ts similarity index 100% rename from lib/rest/routes/v2/phoneNumber.ts rename to src/rest/routes/v2/phoneNumber.ts diff --git a/lib/rest/routes/v2/sipDomain.ts b/src/rest/routes/v2/sipDomain.ts similarity index 100% rename from lib/rest/routes/v2/sipDomain.ts rename to src/rest/routes/v2/sipDomain.ts diff --git a/lib/rest/routes/v2/trunk.ts b/src/rest/routes/v2/trunk.ts similarity index 100% rename from lib/rest/routes/v2/trunk.ts rename to src/rest/routes/v2/trunk.ts diff --git a/lib/rest/serverless/V1.ts b/src/rest/serverless/V1.ts similarity index 100% rename from lib/rest/serverless/V1.ts rename to src/rest/serverless/V1.ts diff --git a/lib/rest/serverless/v1/service.ts b/src/rest/serverless/v1/service.ts similarity index 100% rename from lib/rest/serverless/v1/service.ts rename to src/rest/serverless/v1/service.ts diff --git a/lib/rest/serverless/v1/service/asset.ts b/src/rest/serverless/v1/service/asset.ts similarity index 100% rename from lib/rest/serverless/v1/service/asset.ts rename to src/rest/serverless/v1/service/asset.ts diff --git a/lib/rest/serverless/v1/service/asset/assetVersion.ts b/src/rest/serverless/v1/service/asset/assetVersion.ts similarity index 100% rename from lib/rest/serverless/v1/service/asset/assetVersion.ts rename to src/rest/serverless/v1/service/asset/assetVersion.ts diff --git a/lib/rest/serverless/v1/service/build.ts b/src/rest/serverless/v1/service/build.ts similarity index 100% rename from lib/rest/serverless/v1/service/build.ts rename to src/rest/serverless/v1/service/build.ts diff --git a/lib/rest/serverless/v1/service/build/buildStatus.ts b/src/rest/serverless/v1/service/build/buildStatus.ts similarity index 100% rename from lib/rest/serverless/v1/service/build/buildStatus.ts rename to src/rest/serverless/v1/service/build/buildStatus.ts diff --git a/lib/rest/serverless/v1/service/environment.ts b/src/rest/serverless/v1/service/environment.ts similarity index 100% rename from lib/rest/serverless/v1/service/environment.ts rename to src/rest/serverless/v1/service/environment.ts diff --git a/lib/rest/serverless/v1/service/environment/deployment.ts b/src/rest/serverless/v1/service/environment/deployment.ts similarity index 100% rename from lib/rest/serverless/v1/service/environment/deployment.ts rename to src/rest/serverless/v1/service/environment/deployment.ts diff --git a/lib/rest/serverless/v1/service/environment/log.ts b/src/rest/serverless/v1/service/environment/log.ts similarity index 100% rename from lib/rest/serverless/v1/service/environment/log.ts rename to src/rest/serverless/v1/service/environment/log.ts diff --git a/lib/rest/serverless/v1/service/environment/variable.ts b/src/rest/serverless/v1/service/environment/variable.ts similarity index 100% rename from lib/rest/serverless/v1/service/environment/variable.ts rename to src/rest/serverless/v1/service/environment/variable.ts diff --git a/lib/rest/serverless/v1/service/function.ts b/src/rest/serverless/v1/service/function.ts similarity index 100% rename from lib/rest/serverless/v1/service/function.ts rename to src/rest/serverless/v1/service/function.ts diff --git a/lib/rest/serverless/v1/service/function/functionVersion.ts b/src/rest/serverless/v1/service/function/functionVersion.ts similarity index 100% rename from lib/rest/serverless/v1/service/function/functionVersion.ts rename to src/rest/serverless/v1/service/function/functionVersion.ts diff --git a/lib/rest/serverless/v1/service/function/functionVersion/functionVersionContent.ts b/src/rest/serverless/v1/service/function/functionVersion/functionVersionContent.ts similarity index 100% rename from lib/rest/serverless/v1/service/function/functionVersion/functionVersionContent.ts rename to src/rest/serverless/v1/service/function/functionVersion/functionVersionContent.ts diff --git a/lib/rest/studio/V1.ts b/src/rest/studio/V1.ts similarity index 100% rename from lib/rest/studio/V1.ts rename to src/rest/studio/V1.ts diff --git a/lib/rest/studio/V2.ts b/src/rest/studio/V2.ts similarity index 100% rename from lib/rest/studio/V2.ts rename to src/rest/studio/V2.ts diff --git a/lib/rest/studio/v1/flow.ts b/src/rest/studio/v1/flow.ts similarity index 100% rename from lib/rest/studio/v1/flow.ts rename to src/rest/studio/v1/flow.ts diff --git a/lib/rest/studio/v1/flow/engagement.ts b/src/rest/studio/v1/flow/engagement.ts similarity index 100% rename from lib/rest/studio/v1/flow/engagement.ts rename to src/rest/studio/v1/flow/engagement.ts diff --git a/lib/rest/studio/v1/flow/engagement/engagementContext.ts b/src/rest/studio/v1/flow/engagement/engagementContext.ts similarity index 100% rename from lib/rest/studio/v1/flow/engagement/engagementContext.ts rename to src/rest/studio/v1/flow/engagement/engagementContext.ts diff --git a/lib/rest/studio/v1/flow/engagement/step.ts b/src/rest/studio/v1/flow/engagement/step.ts similarity index 100% rename from lib/rest/studio/v1/flow/engagement/step.ts rename to src/rest/studio/v1/flow/engagement/step.ts diff --git a/lib/rest/studio/v1/flow/engagement/step/stepContext.ts b/src/rest/studio/v1/flow/engagement/step/stepContext.ts similarity index 100% rename from lib/rest/studio/v1/flow/engagement/step/stepContext.ts rename to src/rest/studio/v1/flow/engagement/step/stepContext.ts diff --git a/lib/rest/studio/v1/flow/execution.ts b/src/rest/studio/v1/flow/execution.ts similarity index 100% rename from lib/rest/studio/v1/flow/execution.ts rename to src/rest/studio/v1/flow/execution.ts diff --git a/lib/rest/studio/v1/flow/execution/executionContext.ts b/src/rest/studio/v1/flow/execution/executionContext.ts similarity index 100% rename from lib/rest/studio/v1/flow/execution/executionContext.ts rename to src/rest/studio/v1/flow/execution/executionContext.ts diff --git a/lib/rest/studio/v1/flow/execution/executionStep.ts b/src/rest/studio/v1/flow/execution/executionStep.ts similarity index 100% rename from lib/rest/studio/v1/flow/execution/executionStep.ts rename to src/rest/studio/v1/flow/execution/executionStep.ts diff --git a/lib/rest/studio/v1/flow/execution/executionStep/executionStepContext.ts b/src/rest/studio/v1/flow/execution/executionStep/executionStepContext.ts similarity index 100% rename from lib/rest/studio/v1/flow/execution/executionStep/executionStepContext.ts rename to src/rest/studio/v1/flow/execution/executionStep/executionStepContext.ts diff --git a/lib/rest/studio/v2/flow.ts b/src/rest/studio/v2/flow.ts similarity index 100% rename from lib/rest/studio/v2/flow.ts rename to src/rest/studio/v2/flow.ts diff --git a/lib/rest/studio/v2/flow/execution.ts b/src/rest/studio/v2/flow/execution.ts similarity index 100% rename from lib/rest/studio/v2/flow/execution.ts rename to src/rest/studio/v2/flow/execution.ts diff --git a/lib/rest/studio/v2/flow/execution/executionContext.ts b/src/rest/studio/v2/flow/execution/executionContext.ts similarity index 100% rename from lib/rest/studio/v2/flow/execution/executionContext.ts rename to src/rest/studio/v2/flow/execution/executionContext.ts diff --git a/lib/rest/studio/v2/flow/execution/executionStep.ts b/src/rest/studio/v2/flow/execution/executionStep.ts similarity index 100% rename from lib/rest/studio/v2/flow/execution/executionStep.ts rename to src/rest/studio/v2/flow/execution/executionStep.ts diff --git a/lib/rest/studio/v2/flow/execution/executionStep/executionStepContext.ts b/src/rest/studio/v2/flow/execution/executionStep/executionStepContext.ts similarity index 100% rename from lib/rest/studio/v2/flow/execution/executionStep/executionStepContext.ts rename to src/rest/studio/v2/flow/execution/executionStep/executionStepContext.ts diff --git a/lib/rest/studio/v2/flow/flowRevision.ts b/src/rest/studio/v2/flow/flowRevision.ts similarity index 100% rename from lib/rest/studio/v2/flow/flowRevision.ts rename to src/rest/studio/v2/flow/flowRevision.ts diff --git a/lib/rest/studio/v2/flow/flowTestUser.ts b/src/rest/studio/v2/flow/flowTestUser.ts similarity index 100% rename from lib/rest/studio/v2/flow/flowTestUser.ts rename to src/rest/studio/v2/flow/flowTestUser.ts diff --git a/lib/rest/studio/v2/flowValidate.ts b/src/rest/studio/v2/flowValidate.ts similarity index 100% rename from lib/rest/studio/v2/flowValidate.ts rename to src/rest/studio/v2/flowValidate.ts diff --git a/lib/rest/supersim/V1.ts b/src/rest/supersim/V1.ts similarity index 100% rename from lib/rest/supersim/V1.ts rename to src/rest/supersim/V1.ts diff --git a/lib/rest/supersim/v1/esimProfile.ts b/src/rest/supersim/v1/esimProfile.ts similarity index 100% rename from lib/rest/supersim/v1/esimProfile.ts rename to src/rest/supersim/v1/esimProfile.ts diff --git a/lib/rest/supersim/v1/fleet.ts b/src/rest/supersim/v1/fleet.ts similarity index 100% rename from lib/rest/supersim/v1/fleet.ts rename to src/rest/supersim/v1/fleet.ts diff --git a/lib/rest/supersim/v1/ipCommand.ts b/src/rest/supersim/v1/ipCommand.ts similarity index 100% rename from lib/rest/supersim/v1/ipCommand.ts rename to src/rest/supersim/v1/ipCommand.ts diff --git a/lib/rest/supersim/v1/network.ts b/src/rest/supersim/v1/network.ts similarity index 100% rename from lib/rest/supersim/v1/network.ts rename to src/rest/supersim/v1/network.ts diff --git a/lib/rest/supersim/v1/networkAccessProfile.ts b/src/rest/supersim/v1/networkAccessProfile.ts similarity index 100% rename from lib/rest/supersim/v1/networkAccessProfile.ts rename to src/rest/supersim/v1/networkAccessProfile.ts diff --git a/lib/rest/supersim/v1/networkAccessProfile/networkAccessProfileNetwork.ts b/src/rest/supersim/v1/networkAccessProfile/networkAccessProfileNetwork.ts similarity index 100% rename from lib/rest/supersim/v1/networkAccessProfile/networkAccessProfileNetwork.ts rename to src/rest/supersim/v1/networkAccessProfile/networkAccessProfileNetwork.ts diff --git a/lib/rest/supersim/v1/settingsUpdate.ts b/src/rest/supersim/v1/settingsUpdate.ts similarity index 100% rename from lib/rest/supersim/v1/settingsUpdate.ts rename to src/rest/supersim/v1/settingsUpdate.ts diff --git a/lib/rest/supersim/v1/sim.ts b/src/rest/supersim/v1/sim.ts similarity index 100% rename from lib/rest/supersim/v1/sim.ts rename to src/rest/supersim/v1/sim.ts diff --git a/lib/rest/supersim/v1/sim/billingPeriod.ts b/src/rest/supersim/v1/sim/billingPeriod.ts similarity index 100% rename from lib/rest/supersim/v1/sim/billingPeriod.ts rename to src/rest/supersim/v1/sim/billingPeriod.ts diff --git a/lib/rest/supersim/v1/sim/simIpAddress.ts b/src/rest/supersim/v1/sim/simIpAddress.ts similarity index 100% rename from lib/rest/supersim/v1/sim/simIpAddress.ts rename to src/rest/supersim/v1/sim/simIpAddress.ts diff --git a/lib/rest/supersim/v1/smsCommand.ts b/src/rest/supersim/v1/smsCommand.ts similarity index 100% rename from lib/rest/supersim/v1/smsCommand.ts rename to src/rest/supersim/v1/smsCommand.ts diff --git a/lib/rest/supersim/v1/usageRecord.ts b/src/rest/supersim/v1/usageRecord.ts similarity index 100% rename from lib/rest/supersim/v1/usageRecord.ts rename to src/rest/supersim/v1/usageRecord.ts diff --git a/lib/rest/sync/V1.ts b/src/rest/sync/V1.ts similarity index 100% rename from lib/rest/sync/V1.ts rename to src/rest/sync/V1.ts diff --git a/lib/rest/sync/v1/service.ts b/src/rest/sync/v1/service.ts similarity index 100% rename from lib/rest/sync/v1/service.ts rename to src/rest/sync/v1/service.ts diff --git a/lib/rest/sync/v1/service/document.ts b/src/rest/sync/v1/service/document.ts similarity index 100% rename from lib/rest/sync/v1/service/document.ts rename to src/rest/sync/v1/service/document.ts diff --git a/lib/rest/sync/v1/service/document/documentPermission.ts b/src/rest/sync/v1/service/document/documentPermission.ts similarity index 100% rename from lib/rest/sync/v1/service/document/documentPermission.ts rename to src/rest/sync/v1/service/document/documentPermission.ts diff --git a/lib/rest/sync/v1/service/syncList.ts b/src/rest/sync/v1/service/syncList.ts similarity index 100% rename from lib/rest/sync/v1/service/syncList.ts rename to src/rest/sync/v1/service/syncList.ts diff --git a/lib/rest/sync/v1/service/syncList/syncListItem.ts b/src/rest/sync/v1/service/syncList/syncListItem.ts similarity index 100% rename from lib/rest/sync/v1/service/syncList/syncListItem.ts rename to src/rest/sync/v1/service/syncList/syncListItem.ts diff --git a/lib/rest/sync/v1/service/syncList/syncListPermission.ts b/src/rest/sync/v1/service/syncList/syncListPermission.ts similarity index 100% rename from lib/rest/sync/v1/service/syncList/syncListPermission.ts rename to src/rest/sync/v1/service/syncList/syncListPermission.ts diff --git a/lib/rest/sync/v1/service/syncMap.ts b/src/rest/sync/v1/service/syncMap.ts similarity index 100% rename from lib/rest/sync/v1/service/syncMap.ts rename to src/rest/sync/v1/service/syncMap.ts diff --git a/lib/rest/sync/v1/service/syncMap/syncMapItem.ts b/src/rest/sync/v1/service/syncMap/syncMapItem.ts similarity index 100% rename from lib/rest/sync/v1/service/syncMap/syncMapItem.ts rename to src/rest/sync/v1/service/syncMap/syncMapItem.ts diff --git a/lib/rest/sync/v1/service/syncMap/syncMapPermission.ts b/src/rest/sync/v1/service/syncMap/syncMapPermission.ts similarity index 100% rename from lib/rest/sync/v1/service/syncMap/syncMapPermission.ts rename to src/rest/sync/v1/service/syncMap/syncMapPermission.ts diff --git a/lib/rest/sync/v1/service/syncStream.ts b/src/rest/sync/v1/service/syncStream.ts similarity index 100% rename from lib/rest/sync/v1/service/syncStream.ts rename to src/rest/sync/v1/service/syncStream.ts diff --git a/lib/rest/sync/v1/service/syncStream/streamMessage.ts b/src/rest/sync/v1/service/syncStream/streamMessage.ts similarity index 100% rename from lib/rest/sync/v1/service/syncStream/streamMessage.ts rename to src/rest/sync/v1/service/syncStream/streamMessage.ts diff --git a/lib/rest/taskrouter/V1.ts b/src/rest/taskrouter/V1.ts similarity index 100% rename from lib/rest/taskrouter/V1.ts rename to src/rest/taskrouter/V1.ts diff --git a/lib/rest/taskrouter/v1/workspace.ts b/src/rest/taskrouter/v1/workspace.ts similarity index 100% rename from lib/rest/taskrouter/v1/workspace.ts rename to src/rest/taskrouter/v1/workspace.ts diff --git a/lib/rest/taskrouter/v1/workspace/activity.ts b/src/rest/taskrouter/v1/workspace/activity.ts similarity index 100% rename from lib/rest/taskrouter/v1/workspace/activity.ts rename to src/rest/taskrouter/v1/workspace/activity.ts diff --git a/lib/rest/taskrouter/v1/workspace/event.ts b/src/rest/taskrouter/v1/workspace/event.ts similarity index 100% rename from lib/rest/taskrouter/v1/workspace/event.ts rename to src/rest/taskrouter/v1/workspace/event.ts diff --git a/lib/rest/taskrouter/v1/workspace/task.ts b/src/rest/taskrouter/v1/workspace/task.ts similarity index 100% rename from lib/rest/taskrouter/v1/workspace/task.ts rename to src/rest/taskrouter/v1/workspace/task.ts diff --git a/lib/rest/taskrouter/v1/workspace/task/reservation.ts b/src/rest/taskrouter/v1/workspace/task/reservation.ts similarity index 100% rename from lib/rest/taskrouter/v1/workspace/task/reservation.ts rename to src/rest/taskrouter/v1/workspace/task/reservation.ts diff --git a/lib/rest/taskrouter/v1/workspace/taskChannel.ts b/src/rest/taskrouter/v1/workspace/taskChannel.ts similarity index 100% rename from lib/rest/taskrouter/v1/workspace/taskChannel.ts rename to src/rest/taskrouter/v1/workspace/taskChannel.ts diff --git a/lib/rest/taskrouter/v1/workspace/taskQueue.ts b/src/rest/taskrouter/v1/workspace/taskQueue.ts similarity index 100% rename from lib/rest/taskrouter/v1/workspace/taskQueue.ts rename to src/rest/taskrouter/v1/workspace/taskQueue.ts diff --git a/lib/rest/taskrouter/v1/workspace/taskQueue/taskQueueCumulativeStatistics.ts b/src/rest/taskrouter/v1/workspace/taskQueue/taskQueueCumulativeStatistics.ts similarity index 100% rename from lib/rest/taskrouter/v1/workspace/taskQueue/taskQueueCumulativeStatistics.ts rename to src/rest/taskrouter/v1/workspace/taskQueue/taskQueueCumulativeStatistics.ts diff --git a/lib/rest/taskrouter/v1/workspace/taskQueue/taskQueueRealTimeStatistics.ts b/src/rest/taskrouter/v1/workspace/taskQueue/taskQueueRealTimeStatistics.ts similarity index 100% rename from lib/rest/taskrouter/v1/workspace/taskQueue/taskQueueRealTimeStatistics.ts rename to src/rest/taskrouter/v1/workspace/taskQueue/taskQueueRealTimeStatistics.ts diff --git a/lib/rest/taskrouter/v1/workspace/taskQueue/taskQueueStatistics.ts b/src/rest/taskrouter/v1/workspace/taskQueue/taskQueueStatistics.ts similarity index 100% rename from lib/rest/taskrouter/v1/workspace/taskQueue/taskQueueStatistics.ts rename to src/rest/taskrouter/v1/workspace/taskQueue/taskQueueStatistics.ts diff --git a/lib/rest/taskrouter/v1/workspace/taskQueue/taskQueuesStatistics.ts b/src/rest/taskrouter/v1/workspace/taskQueue/taskQueuesStatistics.ts similarity index 100% rename from lib/rest/taskrouter/v1/workspace/taskQueue/taskQueuesStatistics.ts rename to src/rest/taskrouter/v1/workspace/taskQueue/taskQueuesStatistics.ts diff --git a/lib/rest/taskrouter/v1/workspace/worker.ts b/src/rest/taskrouter/v1/workspace/worker.ts similarity index 100% rename from lib/rest/taskrouter/v1/workspace/worker.ts rename to src/rest/taskrouter/v1/workspace/worker.ts diff --git a/lib/rest/taskrouter/v1/workspace/worker/reservation.ts b/src/rest/taskrouter/v1/workspace/worker/reservation.ts similarity index 100% rename from lib/rest/taskrouter/v1/workspace/worker/reservation.ts rename to src/rest/taskrouter/v1/workspace/worker/reservation.ts diff --git a/lib/rest/taskrouter/v1/workspace/worker/workerChannel.ts b/src/rest/taskrouter/v1/workspace/worker/workerChannel.ts similarity index 100% rename from lib/rest/taskrouter/v1/workspace/worker/workerChannel.ts rename to src/rest/taskrouter/v1/workspace/worker/workerChannel.ts diff --git a/lib/rest/taskrouter/v1/workspace/worker/workerStatistics.ts b/src/rest/taskrouter/v1/workspace/worker/workerStatistics.ts similarity index 100% rename from lib/rest/taskrouter/v1/workspace/worker/workerStatistics.ts rename to src/rest/taskrouter/v1/workspace/worker/workerStatistics.ts diff --git a/lib/rest/taskrouter/v1/workspace/worker/workersCumulativeStatistics.ts b/src/rest/taskrouter/v1/workspace/worker/workersCumulativeStatistics.ts similarity index 100% rename from lib/rest/taskrouter/v1/workspace/worker/workersCumulativeStatistics.ts rename to src/rest/taskrouter/v1/workspace/worker/workersCumulativeStatistics.ts diff --git a/lib/rest/taskrouter/v1/workspace/worker/workersRealTimeStatistics.ts b/src/rest/taskrouter/v1/workspace/worker/workersRealTimeStatistics.ts similarity index 100% rename from lib/rest/taskrouter/v1/workspace/worker/workersRealTimeStatistics.ts rename to src/rest/taskrouter/v1/workspace/worker/workersRealTimeStatistics.ts diff --git a/lib/rest/taskrouter/v1/workspace/worker/workersStatistics.ts b/src/rest/taskrouter/v1/workspace/worker/workersStatistics.ts similarity index 100% rename from lib/rest/taskrouter/v1/workspace/worker/workersStatistics.ts rename to src/rest/taskrouter/v1/workspace/worker/workersStatistics.ts diff --git a/lib/rest/taskrouter/v1/workspace/workflow.ts b/src/rest/taskrouter/v1/workspace/workflow.ts similarity index 100% rename from lib/rest/taskrouter/v1/workspace/workflow.ts rename to src/rest/taskrouter/v1/workspace/workflow.ts diff --git a/lib/rest/taskrouter/v1/workspace/workflow/workflowCumulativeStatistics.ts b/src/rest/taskrouter/v1/workspace/workflow/workflowCumulativeStatistics.ts similarity index 100% rename from lib/rest/taskrouter/v1/workspace/workflow/workflowCumulativeStatistics.ts rename to src/rest/taskrouter/v1/workspace/workflow/workflowCumulativeStatistics.ts diff --git a/lib/rest/taskrouter/v1/workspace/workflow/workflowRealTimeStatistics.ts b/src/rest/taskrouter/v1/workspace/workflow/workflowRealTimeStatistics.ts similarity index 100% rename from lib/rest/taskrouter/v1/workspace/workflow/workflowRealTimeStatistics.ts rename to src/rest/taskrouter/v1/workspace/workflow/workflowRealTimeStatistics.ts diff --git a/lib/rest/taskrouter/v1/workspace/workflow/workflowStatistics.ts b/src/rest/taskrouter/v1/workspace/workflow/workflowStatistics.ts similarity index 100% rename from lib/rest/taskrouter/v1/workspace/workflow/workflowStatistics.ts rename to src/rest/taskrouter/v1/workspace/workflow/workflowStatistics.ts diff --git a/lib/rest/taskrouter/v1/workspace/workspaceCumulativeStatistics.ts b/src/rest/taskrouter/v1/workspace/workspaceCumulativeStatistics.ts similarity index 100% rename from lib/rest/taskrouter/v1/workspace/workspaceCumulativeStatistics.ts rename to src/rest/taskrouter/v1/workspace/workspaceCumulativeStatistics.ts diff --git a/lib/rest/taskrouter/v1/workspace/workspaceRealTimeStatistics.ts b/src/rest/taskrouter/v1/workspace/workspaceRealTimeStatistics.ts similarity index 100% rename from lib/rest/taskrouter/v1/workspace/workspaceRealTimeStatistics.ts rename to src/rest/taskrouter/v1/workspace/workspaceRealTimeStatistics.ts diff --git a/lib/rest/taskrouter/v1/workspace/workspaceStatistics.ts b/src/rest/taskrouter/v1/workspace/workspaceStatistics.ts similarity index 100% rename from lib/rest/taskrouter/v1/workspace/workspaceStatistics.ts rename to src/rest/taskrouter/v1/workspace/workspaceStatistics.ts diff --git a/lib/rest/trunking/V1.ts b/src/rest/trunking/V1.ts similarity index 100% rename from lib/rest/trunking/V1.ts rename to src/rest/trunking/V1.ts diff --git a/lib/rest/trunking/v1/trunk.ts b/src/rest/trunking/v1/trunk.ts similarity index 100% rename from lib/rest/trunking/v1/trunk.ts rename to src/rest/trunking/v1/trunk.ts diff --git a/lib/rest/trunking/v1/trunk/credentialList.ts b/src/rest/trunking/v1/trunk/credentialList.ts similarity index 100% rename from lib/rest/trunking/v1/trunk/credentialList.ts rename to src/rest/trunking/v1/trunk/credentialList.ts diff --git a/lib/rest/trunking/v1/trunk/ipAccessControlList.ts b/src/rest/trunking/v1/trunk/ipAccessControlList.ts similarity index 100% rename from lib/rest/trunking/v1/trunk/ipAccessControlList.ts rename to src/rest/trunking/v1/trunk/ipAccessControlList.ts diff --git a/lib/rest/trunking/v1/trunk/originationUrl.ts b/src/rest/trunking/v1/trunk/originationUrl.ts similarity index 100% rename from lib/rest/trunking/v1/trunk/originationUrl.ts rename to src/rest/trunking/v1/trunk/originationUrl.ts diff --git a/lib/rest/trunking/v1/trunk/phoneNumber.ts b/src/rest/trunking/v1/trunk/phoneNumber.ts similarity index 100% rename from lib/rest/trunking/v1/trunk/phoneNumber.ts rename to src/rest/trunking/v1/trunk/phoneNumber.ts diff --git a/lib/rest/trunking/v1/trunk/recording.ts b/src/rest/trunking/v1/trunk/recording.ts similarity index 100% rename from lib/rest/trunking/v1/trunk/recording.ts rename to src/rest/trunking/v1/trunk/recording.ts diff --git a/lib/rest/trusthub/V1.ts b/src/rest/trusthub/V1.ts similarity index 100% rename from lib/rest/trusthub/V1.ts rename to src/rest/trusthub/V1.ts diff --git a/lib/rest/trusthub/v1/customerProfiles.ts b/src/rest/trusthub/v1/customerProfiles.ts similarity index 100% rename from lib/rest/trusthub/v1/customerProfiles.ts rename to src/rest/trusthub/v1/customerProfiles.ts diff --git a/lib/rest/trusthub/v1/customerProfiles/customerProfilesChannelEndpointAssignment.ts b/src/rest/trusthub/v1/customerProfiles/customerProfilesChannelEndpointAssignment.ts similarity index 100% rename from lib/rest/trusthub/v1/customerProfiles/customerProfilesChannelEndpointAssignment.ts rename to src/rest/trusthub/v1/customerProfiles/customerProfilesChannelEndpointAssignment.ts diff --git a/lib/rest/trusthub/v1/customerProfiles/customerProfilesEntityAssignments.ts b/src/rest/trusthub/v1/customerProfiles/customerProfilesEntityAssignments.ts similarity index 100% rename from lib/rest/trusthub/v1/customerProfiles/customerProfilesEntityAssignments.ts rename to src/rest/trusthub/v1/customerProfiles/customerProfilesEntityAssignments.ts diff --git a/lib/rest/trusthub/v1/customerProfiles/customerProfilesEvaluations.ts b/src/rest/trusthub/v1/customerProfiles/customerProfilesEvaluations.ts similarity index 100% rename from lib/rest/trusthub/v1/customerProfiles/customerProfilesEvaluations.ts rename to src/rest/trusthub/v1/customerProfiles/customerProfilesEvaluations.ts diff --git a/lib/rest/trusthub/v1/endUser.ts b/src/rest/trusthub/v1/endUser.ts similarity index 100% rename from lib/rest/trusthub/v1/endUser.ts rename to src/rest/trusthub/v1/endUser.ts diff --git a/lib/rest/trusthub/v1/endUserType.ts b/src/rest/trusthub/v1/endUserType.ts similarity index 100% rename from lib/rest/trusthub/v1/endUserType.ts rename to src/rest/trusthub/v1/endUserType.ts diff --git a/lib/rest/trusthub/v1/policies.ts b/src/rest/trusthub/v1/policies.ts similarity index 100% rename from lib/rest/trusthub/v1/policies.ts rename to src/rest/trusthub/v1/policies.ts diff --git a/lib/rest/trusthub/v1/supportingDocument.ts b/src/rest/trusthub/v1/supportingDocument.ts similarity index 100% rename from lib/rest/trusthub/v1/supportingDocument.ts rename to src/rest/trusthub/v1/supportingDocument.ts diff --git a/lib/rest/trusthub/v1/supportingDocumentType.ts b/src/rest/trusthub/v1/supportingDocumentType.ts similarity index 100% rename from lib/rest/trusthub/v1/supportingDocumentType.ts rename to src/rest/trusthub/v1/supportingDocumentType.ts diff --git a/lib/rest/trusthub/v1/trustProducts.ts b/src/rest/trusthub/v1/trustProducts.ts similarity index 100% rename from lib/rest/trusthub/v1/trustProducts.ts rename to src/rest/trusthub/v1/trustProducts.ts diff --git a/lib/rest/trusthub/v1/trustProducts/trustProductsChannelEndpointAssignment.ts b/src/rest/trusthub/v1/trustProducts/trustProductsChannelEndpointAssignment.ts similarity index 100% rename from lib/rest/trusthub/v1/trustProducts/trustProductsChannelEndpointAssignment.ts rename to src/rest/trusthub/v1/trustProducts/trustProductsChannelEndpointAssignment.ts diff --git a/lib/rest/trusthub/v1/trustProducts/trustProductsEntityAssignments.ts b/src/rest/trusthub/v1/trustProducts/trustProductsEntityAssignments.ts similarity index 100% rename from lib/rest/trusthub/v1/trustProducts/trustProductsEntityAssignments.ts rename to src/rest/trusthub/v1/trustProducts/trustProductsEntityAssignments.ts diff --git a/lib/rest/trusthub/v1/trustProducts/trustProductsEvaluations.ts b/src/rest/trusthub/v1/trustProducts/trustProductsEvaluations.ts similarity index 100% rename from lib/rest/trusthub/v1/trustProducts/trustProductsEvaluations.ts rename to src/rest/trusthub/v1/trustProducts/trustProductsEvaluations.ts diff --git a/lib/rest/verify/V2.ts b/src/rest/verify/V2.ts similarity index 100% rename from lib/rest/verify/V2.ts rename to src/rest/verify/V2.ts diff --git a/lib/rest/verify/v2/form.ts b/src/rest/verify/v2/form.ts similarity index 100% rename from lib/rest/verify/v2/form.ts rename to src/rest/verify/v2/form.ts diff --git a/lib/rest/verify/v2/safelist.ts b/src/rest/verify/v2/safelist.ts similarity index 100% rename from lib/rest/verify/v2/safelist.ts rename to src/rest/verify/v2/safelist.ts diff --git a/lib/rest/verify/v2/service.ts b/src/rest/verify/v2/service.ts similarity index 100% rename from lib/rest/verify/v2/service.ts rename to src/rest/verify/v2/service.ts diff --git a/lib/rest/verify/v2/service/accessToken.ts b/src/rest/verify/v2/service/accessToken.ts similarity index 100% rename from lib/rest/verify/v2/service/accessToken.ts rename to src/rest/verify/v2/service/accessToken.ts diff --git a/lib/rest/verify/v2/service/entity.ts b/src/rest/verify/v2/service/entity.ts similarity index 100% rename from lib/rest/verify/v2/service/entity.ts rename to src/rest/verify/v2/service/entity.ts diff --git a/lib/rest/verify/v2/service/entity/challenge.ts b/src/rest/verify/v2/service/entity/challenge.ts similarity index 100% rename from lib/rest/verify/v2/service/entity/challenge.ts rename to src/rest/verify/v2/service/entity/challenge.ts diff --git a/lib/rest/verify/v2/service/entity/challenge/notification.ts b/src/rest/verify/v2/service/entity/challenge/notification.ts similarity index 100% rename from lib/rest/verify/v2/service/entity/challenge/notification.ts rename to src/rest/verify/v2/service/entity/challenge/notification.ts diff --git a/lib/rest/verify/v2/service/entity/factor.ts b/src/rest/verify/v2/service/entity/factor.ts similarity index 100% rename from lib/rest/verify/v2/service/entity/factor.ts rename to src/rest/verify/v2/service/entity/factor.ts diff --git a/lib/rest/verify/v2/service/entity/newFactor.ts b/src/rest/verify/v2/service/entity/newFactor.ts similarity index 100% rename from lib/rest/verify/v2/service/entity/newFactor.ts rename to src/rest/verify/v2/service/entity/newFactor.ts diff --git a/lib/rest/verify/v2/service/messagingConfiguration.ts b/src/rest/verify/v2/service/messagingConfiguration.ts similarity index 100% rename from lib/rest/verify/v2/service/messagingConfiguration.ts rename to src/rest/verify/v2/service/messagingConfiguration.ts diff --git a/lib/rest/verify/v2/service/rateLimit.ts b/src/rest/verify/v2/service/rateLimit.ts similarity index 100% rename from lib/rest/verify/v2/service/rateLimit.ts rename to src/rest/verify/v2/service/rateLimit.ts diff --git a/lib/rest/verify/v2/service/rateLimit/bucket.ts b/src/rest/verify/v2/service/rateLimit/bucket.ts similarity index 100% rename from lib/rest/verify/v2/service/rateLimit/bucket.ts rename to src/rest/verify/v2/service/rateLimit/bucket.ts diff --git a/lib/rest/verify/v2/service/verification.ts b/src/rest/verify/v2/service/verification.ts similarity index 100% rename from lib/rest/verify/v2/service/verification.ts rename to src/rest/verify/v2/service/verification.ts diff --git a/lib/rest/verify/v2/service/verificationCheck.ts b/src/rest/verify/v2/service/verificationCheck.ts similarity index 100% rename from lib/rest/verify/v2/service/verificationCheck.ts rename to src/rest/verify/v2/service/verificationCheck.ts diff --git a/lib/rest/verify/v2/service/webhook.ts b/src/rest/verify/v2/service/webhook.ts similarity index 100% rename from lib/rest/verify/v2/service/webhook.ts rename to src/rest/verify/v2/service/webhook.ts diff --git a/lib/rest/verify/v2/template.ts b/src/rest/verify/v2/template.ts similarity index 100% rename from lib/rest/verify/v2/template.ts rename to src/rest/verify/v2/template.ts diff --git a/lib/rest/verify/v2/verificationAttempt.ts b/src/rest/verify/v2/verificationAttempt.ts similarity index 100% rename from lib/rest/verify/v2/verificationAttempt.ts rename to src/rest/verify/v2/verificationAttempt.ts diff --git a/lib/rest/verify/v2/verificationAttemptsSummary.ts b/src/rest/verify/v2/verificationAttemptsSummary.ts similarity index 100% rename from lib/rest/verify/v2/verificationAttemptsSummary.ts rename to src/rest/verify/v2/verificationAttemptsSummary.ts diff --git a/lib/rest/video/V1.ts b/src/rest/video/V1.ts similarity index 100% rename from lib/rest/video/V1.ts rename to src/rest/video/V1.ts diff --git a/lib/rest/video/v1/composition.ts b/src/rest/video/v1/composition.ts similarity index 100% rename from lib/rest/video/v1/composition.ts rename to src/rest/video/v1/composition.ts diff --git a/lib/rest/video/v1/compositionHook.ts b/src/rest/video/v1/compositionHook.ts similarity index 100% rename from lib/rest/video/v1/compositionHook.ts rename to src/rest/video/v1/compositionHook.ts diff --git a/lib/rest/video/v1/compositionSettings.ts b/src/rest/video/v1/compositionSettings.ts similarity index 100% rename from lib/rest/video/v1/compositionSettings.ts rename to src/rest/video/v1/compositionSettings.ts diff --git a/lib/rest/video/v1/recording.ts b/src/rest/video/v1/recording.ts similarity index 100% rename from lib/rest/video/v1/recording.ts rename to src/rest/video/v1/recording.ts diff --git a/lib/rest/video/v1/recordingSettings.ts b/src/rest/video/v1/recordingSettings.ts similarity index 100% rename from lib/rest/video/v1/recordingSettings.ts rename to src/rest/video/v1/recordingSettings.ts diff --git a/lib/rest/video/v1/room.ts b/src/rest/video/v1/room.ts similarity index 100% rename from lib/rest/video/v1/room.ts rename to src/rest/video/v1/room.ts diff --git a/lib/rest/video/v1/room/participant.ts b/src/rest/video/v1/room/participant.ts similarity index 100% rename from lib/rest/video/v1/room/participant.ts rename to src/rest/video/v1/room/participant.ts diff --git a/lib/rest/video/v1/room/participant/anonymize.ts b/src/rest/video/v1/room/participant/anonymize.ts similarity index 100% rename from lib/rest/video/v1/room/participant/anonymize.ts rename to src/rest/video/v1/room/participant/anonymize.ts diff --git a/lib/rest/video/v1/room/participant/publishedTrack.ts b/src/rest/video/v1/room/participant/publishedTrack.ts similarity index 100% rename from lib/rest/video/v1/room/participant/publishedTrack.ts rename to src/rest/video/v1/room/participant/publishedTrack.ts diff --git a/lib/rest/video/v1/room/participant/subscribeRules.ts b/src/rest/video/v1/room/participant/subscribeRules.ts similarity index 100% rename from lib/rest/video/v1/room/participant/subscribeRules.ts rename to src/rest/video/v1/room/participant/subscribeRules.ts diff --git a/lib/rest/video/v1/room/participant/subscribedTrack.ts b/src/rest/video/v1/room/participant/subscribedTrack.ts similarity index 100% rename from lib/rest/video/v1/room/participant/subscribedTrack.ts rename to src/rest/video/v1/room/participant/subscribedTrack.ts diff --git a/lib/rest/video/v1/room/recordingRules.ts b/src/rest/video/v1/room/recordingRules.ts similarity index 100% rename from lib/rest/video/v1/room/recordingRules.ts rename to src/rest/video/v1/room/recordingRules.ts diff --git a/lib/rest/video/v1/room/roomRecording.ts b/src/rest/video/v1/room/roomRecording.ts similarity index 100% rename from lib/rest/video/v1/room/roomRecording.ts rename to src/rest/video/v1/room/roomRecording.ts diff --git a/lib/rest/voice/V1.ts b/src/rest/voice/V1.ts similarity index 100% rename from lib/rest/voice/V1.ts rename to src/rest/voice/V1.ts diff --git a/lib/rest/voice/v1/archivedCall.ts b/src/rest/voice/v1/archivedCall.ts similarity index 100% rename from lib/rest/voice/v1/archivedCall.ts rename to src/rest/voice/v1/archivedCall.ts diff --git a/lib/rest/voice/v1/byocTrunk.ts b/src/rest/voice/v1/byocTrunk.ts similarity index 100% rename from lib/rest/voice/v1/byocTrunk.ts rename to src/rest/voice/v1/byocTrunk.ts diff --git a/lib/rest/voice/v1/connectionPolicy.ts b/src/rest/voice/v1/connectionPolicy.ts similarity index 100% rename from lib/rest/voice/v1/connectionPolicy.ts rename to src/rest/voice/v1/connectionPolicy.ts diff --git a/lib/rest/voice/v1/connectionPolicy/connectionPolicyTarget.ts b/src/rest/voice/v1/connectionPolicy/connectionPolicyTarget.ts similarity index 100% rename from lib/rest/voice/v1/connectionPolicy/connectionPolicyTarget.ts rename to src/rest/voice/v1/connectionPolicy/connectionPolicyTarget.ts diff --git a/lib/rest/voice/v1/dialingPermissions.ts b/src/rest/voice/v1/dialingPermissions.ts similarity index 100% rename from lib/rest/voice/v1/dialingPermissions.ts rename to src/rest/voice/v1/dialingPermissions.ts diff --git a/lib/rest/voice/v1/dialingPermissions/bulkCountryUpdate.ts b/src/rest/voice/v1/dialingPermissions/bulkCountryUpdate.ts similarity index 100% rename from lib/rest/voice/v1/dialingPermissions/bulkCountryUpdate.ts rename to src/rest/voice/v1/dialingPermissions/bulkCountryUpdate.ts diff --git a/lib/rest/voice/v1/dialingPermissions/country.ts b/src/rest/voice/v1/dialingPermissions/country.ts similarity index 100% rename from lib/rest/voice/v1/dialingPermissions/country.ts rename to src/rest/voice/v1/dialingPermissions/country.ts diff --git a/lib/rest/voice/v1/dialingPermissions/country/highriskSpecialPrefix.ts b/src/rest/voice/v1/dialingPermissions/country/highriskSpecialPrefix.ts similarity index 100% rename from lib/rest/voice/v1/dialingPermissions/country/highriskSpecialPrefix.ts rename to src/rest/voice/v1/dialingPermissions/country/highriskSpecialPrefix.ts diff --git a/lib/rest/voice/v1/dialingPermissions/settings.ts b/src/rest/voice/v1/dialingPermissions/settings.ts similarity index 100% rename from lib/rest/voice/v1/dialingPermissions/settings.ts rename to src/rest/voice/v1/dialingPermissions/settings.ts diff --git a/lib/rest/voice/v1/ipRecord.ts b/src/rest/voice/v1/ipRecord.ts similarity index 100% rename from lib/rest/voice/v1/ipRecord.ts rename to src/rest/voice/v1/ipRecord.ts diff --git a/lib/rest/voice/v1/sourceIpMapping.ts b/src/rest/voice/v1/sourceIpMapping.ts similarity index 100% rename from lib/rest/voice/v1/sourceIpMapping.ts rename to src/rest/voice/v1/sourceIpMapping.ts diff --git a/lib/rest/wireless/V1.ts b/src/rest/wireless/V1.ts similarity index 100% rename from lib/rest/wireless/V1.ts rename to src/rest/wireless/V1.ts diff --git a/lib/rest/wireless/v1/command.ts b/src/rest/wireless/v1/command.ts similarity index 100% rename from lib/rest/wireless/v1/command.ts rename to src/rest/wireless/v1/command.ts diff --git a/lib/rest/wireless/v1/ratePlan.ts b/src/rest/wireless/v1/ratePlan.ts similarity index 100% rename from lib/rest/wireless/v1/ratePlan.ts rename to src/rest/wireless/v1/ratePlan.ts diff --git a/lib/rest/wireless/v1/sim.ts b/src/rest/wireless/v1/sim.ts similarity index 100% rename from lib/rest/wireless/v1/sim.ts rename to src/rest/wireless/v1/sim.ts diff --git a/lib/rest/wireless/v1/sim/dataSession.ts b/src/rest/wireless/v1/sim/dataSession.ts similarity index 100% rename from lib/rest/wireless/v1/sim/dataSession.ts rename to src/rest/wireless/v1/sim/dataSession.ts diff --git a/lib/rest/wireless/v1/sim/usageRecord.ts b/src/rest/wireless/v1/sim/usageRecord.ts similarity index 100% rename from lib/rest/wireless/v1/sim/usageRecord.ts rename to src/rest/wireless/v1/sim/usageRecord.ts diff --git a/lib/rest/wireless/v1/usageRecord.ts b/src/rest/wireless/v1/usageRecord.ts similarity index 100% rename from lib/rest/wireless/v1/usageRecord.ts rename to src/rest/wireless/v1/usageRecord.ts diff --git a/lib/twiml/FaxResponse.ts b/src/twiml/FaxResponse.ts similarity index 100% rename from lib/twiml/FaxResponse.ts rename to src/twiml/FaxResponse.ts diff --git a/lib/twiml/MessagingResponse.ts b/src/twiml/MessagingResponse.ts similarity index 100% rename from lib/twiml/MessagingResponse.ts rename to src/twiml/MessagingResponse.ts diff --git a/lib/twiml/TwiML.ts b/src/twiml/TwiML.ts similarity index 100% rename from lib/twiml/TwiML.ts rename to src/twiml/TwiML.ts diff --git a/lib/twiml/VoiceResponse.ts b/src/twiml/VoiceResponse.ts similarity index 100% rename from lib/twiml/VoiceResponse.ts rename to src/twiml/VoiceResponse.ts diff --git a/lib/webhooks/webhooks.ts b/src/webhooks/webhooks.ts similarity index 100% rename from lib/webhooks/webhooks.ts rename to src/webhooks/webhooks.ts diff --git a/tsconfig.json b/tsconfig.json index 0800fd0453..a99ed63d38 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -6,8 +6,9 @@ "esModuleInterop": true, "moduleResolution": "node", "allowJs": true, - "outDir": "dist", + "rootDir": "src", + "outDir": "lib", "strict": true }, - "include": ["lib", "index.*"], + "include": ["src"], }